]>
Commit | Line | Data |
---|---|---|
c7f0f3b1 AL |
1 | /* |
2 | * Test Server | |
3 | * | |
4 | * Copyright IBM, Corp. 2011 | |
5 | * | |
6 | * Authors: | |
7 | * Anthony Liguori <[email protected]> | |
8 | * | |
9 | * This work is licensed under the terms of the GNU GPL, version 2 or later. | |
10 | * See the COPYING file in the top-level directory. | |
11 | * | |
12 | */ | |
13 | ||
d38ea87a | 14 | #include "qemu/osdep.h" |
da34e65c | 15 | #include "qapi/error.h" |
33c11879 PB |
16 | #include "qemu-common.h" |
17 | #include "cpu.h" | |
9c17d615 | 18 | #include "sysemu/qtest.h" |
20288345 | 19 | #include "hw/qdev.h" |
4d43a603 | 20 | #include "chardev/char-fe.h" |
022c62cb PB |
21 | #include "exec/ioport.h" |
22 | #include "exec/memory.h" | |
c7f0f3b1 | 23 | #include "hw/irq.h" |
3a6ce514 | 24 | #include "sysemu/accel.h" |
9c17d615 PB |
25 | #include "sysemu/sysemu.h" |
26 | #include "sysemu/cpus.h" | |
1ad9580b ST |
27 | #include "qemu/config-file.h" |
28 | #include "qemu/option.h" | |
29 | #include "qemu/error-report.h" | |
aa15f497 | 30 | #include "qemu/cutils.h" |
eeddd59f LV |
31 | #ifdef TARGET_PPC64 |
32 | #include "hw/ppc/spapr_rtas.h" | |
33 | #endif | |
c7f0f3b1 AL |
34 | |
35 | #define MAX_IRQ 256 | |
36 | ||
d5286af5 | 37 | bool qtest_allowed; |
c7f0f3b1 | 38 | |
20288345 | 39 | static DeviceState *irq_intercept_dev; |
c7f0f3b1 | 40 | static FILE *qtest_log_fp; |
32a6ebec | 41 | static CharBackend qtest_chr; |
c7f0f3b1 AL |
42 | static GString *inbuf; |
43 | static int irq_levels[MAX_IRQ]; | |
6e92466a | 44 | static qemu_timeval start_time; |
c7f0f3b1 AL |
45 | static bool qtest_opened; |
46 | ||
6b7cff76 | 47 | #define FMT_timeval "%ld.%06ld" |
c7f0f3b1 AL |
48 | |
49 | /** | |
50 | * QTest Protocol | |
51 | * | |
52 | * Line based protocol, request/response based. Server can send async messages | |
53 | * so clients should always handle many async messages before the response | |
54 | * comes in. | |
55 | * | |
56 | * Valid requests | |
57 | * | |
8156be56 PB |
58 | * Clock management: |
59 | * | |
bc72ad67 | 60 | * The qtest client is completely in charge of the QEMU_CLOCK_VIRTUAL. qtest commands |
8156be56 PB |
61 | * let you adjust the value of the clock (monotonically). All the commands |
62 | * return the current value of the clock in nanoseconds. | |
63 | * | |
64 | * > clock_step | |
65 | * < OK VALUE | |
66 | * | |
67 | * Advance the clock to the next deadline. Useful when waiting for | |
68 | * asynchronous events. | |
69 | * | |
70 | * > clock_step NS | |
71 | * < OK VALUE | |
72 | * | |
73 | * Advance the clock by NS nanoseconds. | |
74 | * | |
75 | * > clock_set NS | |
76 | * < OK VALUE | |
77 | * | |
78 | * Advance the clock to NS nanoseconds (do nothing if it's already past). | |
79 | * | |
80 | * PIO and memory access: | |
81 | * | |
c7f0f3b1 AL |
82 | * > outb ADDR VALUE |
83 | * < OK | |
84 | * | |
85 | * > outw ADDR VALUE | |
86 | * < OK | |
87 | * | |
88 | * > outl ADDR VALUE | |
89 | * < OK | |
90 | * | |
91 | * > inb ADDR | |
92 | * < OK VALUE | |
93 | * | |
94 | * > inw ADDR | |
95 | * < OK VALUE | |
96 | * | |
97 | * > inl ADDR | |
98 | * < OK VALUE | |
99 | * | |
872536bf AF |
100 | * > writeb ADDR VALUE |
101 | * < OK | |
102 | * | |
103 | * > writew ADDR VALUE | |
104 | * < OK | |
105 | * | |
106 | * > writel ADDR VALUE | |
107 | * < OK | |
108 | * | |
109 | * > writeq ADDR VALUE | |
110 | * < OK | |
111 | * | |
112 | * > readb ADDR | |
113 | * < OK VALUE | |
114 | * | |
115 | * > readw ADDR | |
116 | * < OK VALUE | |
117 | * | |
118 | * > readl ADDR | |
119 | * < OK VALUE | |
120 | * | |
121 | * > readq ADDR | |
122 | * < OK VALUE | |
123 | * | |
c7f0f3b1 AL |
124 | * > read ADDR SIZE |
125 | * < OK DATA | |
126 | * | |
127 | * > write ADDR SIZE DATA | |
128 | * < OK | |
129 | * | |
7a6a740d JS |
130 | * > b64read ADDR SIZE |
131 | * < OK B64_DATA | |
132 | * | |
133 | * > b64write ADDR SIZE B64_DATA | |
134 | * < OK | |
135 | * | |
4d007963 JS |
136 | * > memset ADDR SIZE VALUE |
137 | * < OK | |
138 | * | |
c7f0f3b1 | 139 | * ADDR, SIZE, VALUE are all integers parsed with strtoul() with a base of 0. |
5f31bbf1 | 140 | * For 'memset' a zero size is permitted and does nothing. |
c7f0f3b1 AL |
141 | * |
142 | * DATA is an arbitrarily long hex number prefixed with '0x'. If it's smaller | |
143 | * than the expected size, the value will be zero filled at the end of the data | |
144 | * sequence. | |
145 | * | |
7a6a740d JS |
146 | * B64_DATA is an arbitrarily long base64 encoded string. |
147 | * If the sizes do not match, the data will be truncated. | |
148 | * | |
20288345 PB |
149 | * IRQ management: |
150 | * | |
151 | * > irq_intercept_in QOM-PATH | |
152 | * < OK | |
153 | * | |
154 | * > irq_intercept_out QOM-PATH | |
155 | * < OK | |
156 | * | |
157 | * Attach to the gpio-in (resp. gpio-out) pins exported by the device at | |
158 | * QOM-PATH. When the pin is triggered, one of the following async messages | |
159 | * will be printed to the qtest stream: | |
160 | * | |
161 | * IRQ raise NUM | |
162 | * IRQ lower NUM | |
163 | * | |
164 | * where NUM is an IRQ number. For the PC, interrupts can be intercepted | |
165 | * simply with "irq_intercept_in ioapic" (note that IRQ0 comes out with | |
166 | * NUM=0 even though it is remapped to GSI 2). | |
c7f0f3b1 AL |
167 | */ |
168 | ||
169 | static int hex2nib(char ch) | |
170 | { | |
171 | if (ch >= '0' && ch <= '9') { | |
172 | return ch - '0'; | |
173 | } else if (ch >= 'a' && ch <= 'f') { | |
174 | return 10 + (ch - 'a'); | |
175 | } else if (ch >= 'A' && ch <= 'F') { | |
2a802aaf | 176 | return 10 + (ch - 'A'); |
c7f0f3b1 AL |
177 | } else { |
178 | return -1; | |
179 | } | |
180 | } | |
181 | ||
6e92466a | 182 | static void qtest_get_time(qemu_timeval *tv) |
c7f0f3b1 | 183 | { |
6e92466a | 184 | qemu_gettimeofday(tv); |
c7f0f3b1 AL |
185 | tv->tv_sec -= start_time.tv_sec; |
186 | tv->tv_usec -= start_time.tv_usec; | |
187 | if (tv->tv_usec < 0) { | |
188 | tv->tv_usec += 1000000; | |
189 | tv->tv_sec -= 1; | |
190 | } | |
191 | } | |
192 | ||
5345fdb4 | 193 | static void qtest_send_prefix(CharBackend *chr) |
c7f0f3b1 | 194 | { |
6e92466a | 195 | qemu_timeval tv; |
c7f0f3b1 AL |
196 | |
197 | if (!qtest_log_fp || !qtest_opened) { | |
198 | return; | |
199 | } | |
200 | ||
201 | qtest_get_time(&tv); | |
202 | fprintf(qtest_log_fp, "[S +" FMT_timeval "] ", | |
35aa3fb3 | 203 | (long) tv.tv_sec, (long) tv.tv_usec); |
c7f0f3b1 AL |
204 | } |
205 | ||
7a6a740d JS |
206 | static void GCC_FMT_ATTR(1, 2) qtest_log_send(const char *fmt, ...) |
207 | { | |
208 | va_list ap; | |
209 | ||
210 | if (!qtest_log_fp || !qtest_opened) { | |
211 | return; | |
212 | } | |
213 | ||
214 | qtest_send_prefix(NULL); | |
215 | ||
216 | va_start(ap, fmt); | |
217 | vfprintf(qtest_log_fp, fmt, ap); | |
218 | va_end(ap); | |
219 | } | |
220 | ||
5345fdb4 | 221 | static void do_qtest_send(CharBackend *chr, const char *str, size_t len) |
332cc7e9 JS |
222 | { |
223 | qemu_chr_fe_write_all(chr, (uint8_t *)str, len); | |
224 | if (qtest_log_fp && qtest_opened) { | |
225 | fprintf(qtest_log_fp, "%s", str); | |
226 | } | |
227 | } | |
228 | ||
5345fdb4 | 229 | static void qtest_send(CharBackend *chr, const char *str) |
332cc7e9 JS |
230 | { |
231 | do_qtest_send(chr, str, strlen(str)); | |
232 | } | |
233 | ||
5345fdb4 | 234 | static void GCC_FMT_ATTR(2, 3) qtest_sendf(CharBackend *chr, |
332cc7e9 | 235 | const char *fmt, ...) |
c7f0f3b1 AL |
236 | { |
237 | va_list ap; | |
332cc7e9 | 238 | gchar *buffer; |
c7f0f3b1 AL |
239 | |
240 | va_start(ap, fmt); | |
332cc7e9 JS |
241 | buffer = g_strdup_vprintf(fmt, ap); |
242 | qtest_send(chr, buffer); | |
fc34059f | 243 | g_free(buffer); |
c7f0f3b1 | 244 | va_end(ap); |
c7f0f3b1 AL |
245 | } |
246 | ||
20288345 PB |
247 | static void qtest_irq_handler(void *opaque, int n, int level) |
248 | { | |
60a79016 PC |
249 | qemu_irq old_irq = *(qemu_irq *)opaque; |
250 | qemu_set_irq(old_irq, level); | |
20288345 PB |
251 | |
252 | if (irq_levels[n] != level) { | |
5345fdb4 | 253 | CharBackend *chr = &qtest_chr; |
20288345 PB |
254 | irq_levels[n] = level; |
255 | qtest_send_prefix(chr); | |
332cc7e9 JS |
256 | qtest_sendf(chr, "IRQ %s %d\n", |
257 | level ? "raise" : "lower", n); | |
20288345 PB |
258 | } |
259 | } | |
260 | ||
5345fdb4 | 261 | static void qtest_process_command(CharBackend *chr, gchar **words) |
c7f0f3b1 AL |
262 | { |
263 | const gchar *command; | |
264 | ||
265 | g_assert(words); | |
266 | ||
267 | command = words[0]; | |
268 | ||
269 | if (qtest_log_fp) { | |
6e92466a | 270 | qemu_timeval tv; |
c7f0f3b1 AL |
271 | int i; |
272 | ||
273 | qtest_get_time(&tv); | |
274 | fprintf(qtest_log_fp, "[R +" FMT_timeval "]", | |
35aa3fb3 | 275 | (long) tv.tv_sec, (long) tv.tv_usec); |
c7f0f3b1 AL |
276 | for (i = 0; words[i]; i++) { |
277 | fprintf(qtest_log_fp, " %s", words[i]); | |
278 | } | |
279 | fprintf(qtest_log_fp, "\n"); | |
280 | } | |
281 | ||
282 | g_assert(command); | |
20288345 PB |
283 | if (strcmp(words[0], "irq_intercept_out") == 0 |
284 | || strcmp(words[0], "irq_intercept_in") == 0) { | |
a5f54290 PC |
285 | DeviceState *dev; |
286 | NamedGPIOList *ngl; | |
20288345 PB |
287 | |
288 | g_assert(words[1]); | |
289 | dev = DEVICE(object_resolve_path(words[1], NULL)); | |
290 | if (!dev) { | |
291 | qtest_send_prefix(chr); | |
292 | qtest_send(chr, "FAIL Unknown device\n"); | |
293 | return; | |
294 | } | |
295 | ||
296 | if (irq_intercept_dev) { | |
297 | qtest_send_prefix(chr); | |
298 | if (irq_intercept_dev != dev) { | |
299 | qtest_send(chr, "FAIL IRQ intercept already enabled\n"); | |
300 | } else { | |
301 | qtest_send(chr, "OK\n"); | |
302 | } | |
303 | return; | |
304 | } | |
305 | ||
a5f54290 PC |
306 | QLIST_FOREACH(ngl, &dev->gpios, node) { |
307 | /* We don't support intercept of named GPIOs yet */ | |
308 | if (ngl->name) { | |
309 | continue; | |
310 | } | |
311 | if (words[0][14] == 'o') { | |
60a79016 PC |
312 | int i; |
313 | for (i = 0; i < ngl->num_out; ++i) { | |
314 | qemu_irq *disconnected = g_new0(qemu_irq, 1); | |
315 | qemu_irq icpt = qemu_allocate_irq(qtest_irq_handler, | |
316 | disconnected, i); | |
317 | ||
318 | *disconnected = qdev_intercept_gpio_out(dev, icpt, | |
319 | ngl->name, i); | |
320 | } | |
a5f54290 PC |
321 | } else { |
322 | qemu_irq_intercept_in(ngl->in, qtest_irq_handler, | |
323 | ngl->num_in); | |
324 | } | |
20288345 PB |
325 | } |
326 | irq_intercept_dev = dev; | |
327 | qtest_send_prefix(chr); | |
328 | qtest_send(chr, "OK\n"); | |
329 | ||
330 | } else if (strcmp(words[0], "outb") == 0 || | |
331 | strcmp(words[0], "outw") == 0 || | |
332 | strcmp(words[0], "outl") == 0) { | |
aa15f497 LV |
333 | unsigned long addr; |
334 | unsigned long value; | |
14773125 | 335 | int ret; |
c7f0f3b1 AL |
336 | |
337 | g_assert(words[1] && words[2]); | |
14773125 EB |
338 | ret = qemu_strtoul(words[1], NULL, 0, &addr); |
339 | g_assert(ret == 0); | |
340 | ret = qemu_strtoul(words[2], NULL, 0, &value); | |
341 | g_assert(ret == 0); | |
aa15f497 | 342 | g_assert(addr <= 0xffff); |
c7f0f3b1 AL |
343 | |
344 | if (words[0][3] == 'b') { | |
345 | cpu_outb(addr, value); | |
346 | } else if (words[0][3] == 'w') { | |
347 | cpu_outw(addr, value); | |
348 | } else if (words[0][3] == 'l') { | |
349 | cpu_outl(addr, value); | |
350 | } | |
351 | qtest_send_prefix(chr); | |
352 | qtest_send(chr, "OK\n"); | |
353 | } else if (strcmp(words[0], "inb") == 0 || | |
354 | strcmp(words[0], "inw") == 0 || | |
355 | strcmp(words[0], "inl") == 0) { | |
aa15f497 | 356 | unsigned long addr; |
c7f0f3b1 | 357 | uint32_t value = -1U; |
14773125 | 358 | int ret; |
c7f0f3b1 AL |
359 | |
360 | g_assert(words[1]); | |
14773125 EB |
361 | ret = qemu_strtoul(words[1], NULL, 0, &addr); |
362 | g_assert(ret == 0); | |
aa15f497 | 363 | g_assert(addr <= 0xffff); |
c7f0f3b1 AL |
364 | |
365 | if (words[0][2] == 'b') { | |
366 | value = cpu_inb(addr); | |
367 | } else if (words[0][2] == 'w') { | |
368 | value = cpu_inw(addr); | |
369 | } else if (words[0][2] == 'l') { | |
370 | value = cpu_inl(addr); | |
371 | } | |
372 | qtest_send_prefix(chr); | |
332cc7e9 | 373 | qtest_sendf(chr, "OK 0x%04x\n", value); |
872536bf AF |
374 | } else if (strcmp(words[0], "writeb") == 0 || |
375 | strcmp(words[0], "writew") == 0 || | |
376 | strcmp(words[0], "writel") == 0 || | |
377 | strcmp(words[0], "writeq") == 0) { | |
378 | uint64_t addr; | |
379 | uint64_t value; | |
14773125 | 380 | int ret; |
872536bf AF |
381 | |
382 | g_assert(words[1] && words[2]); | |
14773125 EB |
383 | ret = qemu_strtou64(words[1], NULL, 0, &addr); |
384 | g_assert(ret == 0); | |
385 | ret = qemu_strtou64(words[2], NULL, 0, &value); | |
386 | g_assert(ret == 0); | |
872536bf AF |
387 | |
388 | if (words[0][5] == 'b') { | |
389 | uint8_t data = value; | |
70da3048 JS |
390 | address_space_rw(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, |
391 | &data, 1, true); | |
872536bf AF |
392 | } else if (words[0][5] == 'w') { |
393 | uint16_t data = value; | |
394 | tswap16s(&data); | |
70da3048 JS |
395 | address_space_rw(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, |
396 | (uint8_t *) &data, 2, true); | |
872536bf AF |
397 | } else if (words[0][5] == 'l') { |
398 | uint32_t data = value; | |
399 | tswap32s(&data); | |
70da3048 JS |
400 | address_space_rw(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, |
401 | (uint8_t *) &data, 4, true); | |
872536bf AF |
402 | } else if (words[0][5] == 'q') { |
403 | uint64_t data = value; | |
404 | tswap64s(&data); | |
70da3048 JS |
405 | address_space_rw(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, |
406 | (uint8_t *) &data, 8, true); | |
872536bf AF |
407 | } |
408 | qtest_send_prefix(chr); | |
409 | qtest_send(chr, "OK\n"); | |
410 | } else if (strcmp(words[0], "readb") == 0 || | |
411 | strcmp(words[0], "readw") == 0 || | |
412 | strcmp(words[0], "readl") == 0 || | |
413 | strcmp(words[0], "readq") == 0) { | |
414 | uint64_t addr; | |
415 | uint64_t value = UINT64_C(-1); | |
14773125 | 416 | int ret; |
872536bf AF |
417 | |
418 | g_assert(words[1]); | |
14773125 EB |
419 | ret = qemu_strtou64(words[1], NULL, 0, &addr); |
420 | g_assert(ret == 0); | |
872536bf AF |
421 | |
422 | if (words[0][4] == 'b') { | |
423 | uint8_t data; | |
70da3048 JS |
424 | address_space_rw(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, |
425 | &data, 1, false); | |
872536bf AF |
426 | value = data; |
427 | } else if (words[0][4] == 'w') { | |
428 | uint16_t data; | |
70da3048 JS |
429 | address_space_rw(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, |
430 | (uint8_t *) &data, 2, false); | |
872536bf AF |
431 | value = tswap16(data); |
432 | } else if (words[0][4] == 'l') { | |
433 | uint32_t data; | |
70da3048 JS |
434 | address_space_rw(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, |
435 | (uint8_t *) &data, 4, false); | |
872536bf AF |
436 | value = tswap32(data); |
437 | } else if (words[0][4] == 'q') { | |
70da3048 JS |
438 | address_space_rw(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, |
439 | (uint8_t *) &value, 8, false); | |
872536bf AF |
440 | tswap64s(&value); |
441 | } | |
442 | qtest_send_prefix(chr); | |
332cc7e9 | 443 | qtest_sendf(chr, "OK 0x%016" PRIx64 "\n", value); |
c7f0f3b1 AL |
444 | } else if (strcmp(words[0], "read") == 0) { |
445 | uint64_t addr, len, i; | |
446 | uint8_t *data; | |
5560b85a | 447 | char *enc; |
14773125 | 448 | int ret; |
c7f0f3b1 AL |
449 | |
450 | g_assert(words[1] && words[2]); | |
14773125 EB |
451 | ret = qemu_strtou64(words[1], NULL, 0, &addr); |
452 | g_assert(ret == 0); | |
453 | ret = qemu_strtou64(words[2], NULL, 0, &len); | |
454 | g_assert(ret == 0); | |
204febd1 GK |
455 | /* We'd send garbage to libqtest if len is 0 */ |
456 | g_assert(len); | |
c7f0f3b1 AL |
457 | |
458 | data = g_malloc(len); | |
70da3048 JS |
459 | address_space_rw(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, |
460 | data, len, false); | |
c7f0f3b1 | 461 | |
5560b85a | 462 | enc = g_malloc(2 * len + 1); |
c7f0f3b1 | 463 | for (i = 0; i < len; i++) { |
5560b85a | 464 | sprintf(&enc[i * 2], "%02x", data[i]); |
c7f0f3b1 | 465 | } |
5560b85a JS |
466 | |
467 | qtest_send_prefix(chr); | |
468 | qtest_sendf(chr, "OK 0x%s\n", enc); | |
c7f0f3b1 AL |
469 | |
470 | g_free(data); | |
5560b85a | 471 | g_free(enc); |
7a6a740d JS |
472 | } else if (strcmp(words[0], "b64read") == 0) { |
473 | uint64_t addr, len; | |
474 | uint8_t *data; | |
475 | gchar *b64_data; | |
14773125 | 476 | int ret; |
7a6a740d JS |
477 | |
478 | g_assert(words[1] && words[2]); | |
14773125 EB |
479 | ret = qemu_strtou64(words[1], NULL, 0, &addr); |
480 | g_assert(ret == 0); | |
481 | ret = qemu_strtou64(words[2], NULL, 0, &len); | |
482 | g_assert(ret == 0); | |
7a6a740d JS |
483 | |
484 | data = g_malloc(len); | |
70da3048 JS |
485 | address_space_rw(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, |
486 | data, len, false); | |
7a6a740d JS |
487 | b64_data = g_base64_encode(data, len); |
488 | qtest_send_prefix(chr); | |
489 | qtest_sendf(chr, "OK %s\n", b64_data); | |
490 | ||
491 | g_free(data); | |
492 | g_free(b64_data); | |
c7f0f3b1 AL |
493 | } else if (strcmp(words[0], "write") == 0) { |
494 | uint64_t addr, len, i; | |
495 | uint8_t *data; | |
496 | size_t data_len; | |
14773125 | 497 | int ret; |
c7f0f3b1 AL |
498 | |
499 | g_assert(words[1] && words[2] && words[3]); | |
14773125 EB |
500 | ret = qemu_strtou64(words[1], NULL, 0, &addr); |
501 | g_assert(ret == 0); | |
502 | ret = qemu_strtou64(words[2], NULL, 0, &len); | |
503 | g_assert(ret == 0); | |
c7f0f3b1 AL |
504 | |
505 | data_len = strlen(words[3]); | |
506 | if (data_len < 3) { | |
507 | qtest_send(chr, "ERR invalid argument size\n"); | |
508 | return; | |
509 | } | |
510 | ||
511 | data = g_malloc(len); | |
512 | for (i = 0; i < len; i++) { | |
513 | if ((i * 2 + 4) <= data_len) { | |
514 | data[i] = hex2nib(words[3][i * 2 + 2]) << 4; | |
515 | data[i] |= hex2nib(words[3][i * 2 + 3]); | |
516 | } else { | |
517 | data[i] = 0; | |
518 | } | |
519 | } | |
70da3048 JS |
520 | address_space_rw(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, |
521 | data, len, true); | |
c7f0f3b1 AL |
522 | g_free(data); |
523 | ||
4d007963 JS |
524 | qtest_send_prefix(chr); |
525 | qtest_send(chr, "OK\n"); | |
526 | } else if (strcmp(words[0], "memset") == 0) { | |
527 | uint64_t addr, len; | |
528 | uint8_t *data; | |
aa15f497 | 529 | unsigned long pattern; |
14773125 | 530 | int ret; |
4d007963 JS |
531 | |
532 | g_assert(words[1] && words[2] && words[3]); | |
14773125 EB |
533 | ret = qemu_strtou64(words[1], NULL, 0, &addr); |
534 | g_assert(ret == 0); | |
535 | ret = qemu_strtou64(words[2], NULL, 0, &len); | |
536 | g_assert(ret == 0); | |
537 | ret = qemu_strtoul(words[3], NULL, 0, &pattern); | |
538 | g_assert(ret == 0); | |
4d007963 | 539 | |
5f31bbf1 PM |
540 | if (len) { |
541 | data = g_malloc(len); | |
542 | memset(data, pattern, len); | |
70da3048 JS |
543 | address_space_rw(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, |
544 | data, len, true); | |
5f31bbf1 PM |
545 | g_free(data); |
546 | } | |
4d007963 | 547 | |
7a6a740d JS |
548 | qtest_send_prefix(chr); |
549 | qtest_send(chr, "OK\n"); | |
550 | } else if (strcmp(words[0], "b64write") == 0) { | |
551 | uint64_t addr, len; | |
552 | uint8_t *data; | |
553 | size_t data_len; | |
554 | gsize out_len; | |
14773125 | 555 | int ret; |
7a6a740d JS |
556 | |
557 | g_assert(words[1] && words[2] && words[3]); | |
14773125 EB |
558 | ret = qemu_strtou64(words[1], NULL, 0, &addr); |
559 | g_assert(ret == 0); | |
560 | ret = qemu_strtou64(words[2], NULL, 0, &len); | |
561 | g_assert(ret == 0); | |
7a6a740d JS |
562 | |
563 | data_len = strlen(words[3]); | |
564 | if (data_len < 3) { | |
565 | qtest_send(chr, "ERR invalid argument size\n"); | |
566 | return; | |
567 | } | |
568 | ||
569 | data = g_base64_decode_inplace(words[3], &out_len); | |
570 | if (out_len != len) { | |
571 | qtest_log_send("b64write: data length mismatch (told %"PRIu64", " | |
572 | "found %zu)\n", | |
573 | len, out_len); | |
574 | out_len = MIN(out_len, len); | |
575 | } | |
576 | ||
70da3048 JS |
577 | address_space_rw(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, |
578 | data, len, true); | |
7a6a740d | 579 | |
c7f0f3b1 AL |
580 | qtest_send_prefix(chr); |
581 | qtest_send(chr, "OK\n"); | |
54ce6f22 LV |
582 | } else if (strcmp(words[0], "endianness") == 0) { |
583 | qtest_send_prefix(chr); | |
584 | #if defined(TARGET_WORDS_BIGENDIAN) | |
585 | qtest_sendf(chr, "OK big\n"); | |
586 | #else | |
587 | qtest_sendf(chr, "OK little\n"); | |
588 | #endif | |
eeddd59f LV |
589 | #ifdef TARGET_PPC64 |
590 | } else if (strcmp(words[0], "rtas") == 0) { | |
591 | uint64_t res, args, ret; | |
592 | unsigned long nargs, nret; | |
14773125 EB |
593 | int rc; |
594 | ||
595 | rc = qemu_strtoul(words[2], NULL, 0, &nargs); | |
596 | g_assert(rc == 0); | |
597 | rc = qemu_strtou64(words[3], NULL, 0, &args); | |
598 | g_assert(rc == 0); | |
599 | rc = qemu_strtoul(words[4], NULL, 0, &nret); | |
600 | g_assert(rc == 0); | |
601 | rc = qemu_strtou64(words[5], NULL, 0, &ret); | |
602 | g_assert(rc == 0); | |
eeddd59f LV |
603 | res = qtest_rtas_call(words[1], nargs, args, nret, ret); |
604 | ||
605 | qtest_send_prefix(chr); | |
606 | qtest_sendf(chr, "OK %"PRIu64"\n", res); | |
607 | #endif | |
d4fce24f | 608 | } else if (qtest_enabled() && strcmp(words[0], "clock_step") == 0) { |
8156be56 PB |
609 | int64_t ns; |
610 | ||
611 | if (words[1]) { | |
14773125 EB |
612 | int ret = qemu_strtoi64(words[1], NULL, 0, &ns); |
613 | g_assert(ret == 0); | |
8156be56 | 614 | } else { |
40daca54 | 615 | ns = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL); |
8156be56 | 616 | } |
bc72ad67 | 617 | qtest_clock_warp(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + ns); |
8156be56 | 618 | qtest_send_prefix(chr); |
332cc7e9 JS |
619 | qtest_sendf(chr, "OK %"PRIi64"\n", |
620 | (int64_t)qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL)); | |
d4fce24f | 621 | } else if (qtest_enabled() && strcmp(words[0], "clock_set") == 0) { |
8156be56 | 622 | int64_t ns; |
14773125 | 623 | int ret; |
8156be56 PB |
624 | |
625 | g_assert(words[1]); | |
14773125 EB |
626 | ret = qemu_strtoi64(words[1], NULL, 0, &ns); |
627 | g_assert(ret == 0); | |
8156be56 PB |
628 | qtest_clock_warp(ns); |
629 | qtest_send_prefix(chr); | |
332cc7e9 JS |
630 | qtest_sendf(chr, "OK %"PRIi64"\n", |
631 | (int64_t)qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL)); | |
c7f0f3b1 AL |
632 | } else { |
633 | qtest_send_prefix(chr); | |
332cc7e9 | 634 | qtest_sendf(chr, "FAIL Unknown command '%s'\n", words[0]); |
c7f0f3b1 AL |
635 | } |
636 | } | |
637 | ||
5345fdb4 | 638 | static void qtest_process_inbuf(CharBackend *chr, GString *inbuf) |
c7f0f3b1 AL |
639 | { |
640 | char *end; | |
641 | ||
642 | while ((end = strchr(inbuf->str, '\n')) != NULL) { | |
643 | size_t offset; | |
644 | GString *cmd; | |
645 | gchar **words; | |
646 | ||
647 | offset = end - inbuf->str; | |
648 | ||
649 | cmd = g_string_new_len(inbuf->str, offset); | |
650 | g_string_erase(inbuf, 0, offset + 1); | |
651 | ||
652 | words = g_strsplit(cmd->str, " ", 0); | |
653 | qtest_process_command(chr, words); | |
654 | g_strfreev(words); | |
655 | ||
656 | g_string_free(cmd, TRUE); | |
657 | } | |
658 | } | |
659 | ||
660 | static void qtest_read(void *opaque, const uint8_t *buf, int size) | |
661 | { | |
5345fdb4 | 662 | CharBackend *chr = opaque; |
c7f0f3b1 AL |
663 | |
664 | g_string_append_len(inbuf, (const gchar *)buf, size); | |
665 | qtest_process_inbuf(chr, inbuf); | |
666 | } | |
667 | ||
668 | static int qtest_can_read(void *opaque) | |
669 | { | |
670 | return 1024; | |
671 | } | |
672 | ||
673 | static void qtest_event(void *opaque, int event) | |
674 | { | |
675 | int i; | |
676 | ||
677 | switch (event) { | |
678 | case CHR_EVENT_OPENED: | |
ba646ff6 MA |
679 | /* |
680 | * We used to call qemu_system_reset() here, hoping we could | |
681 | * use the same process for multiple tests that way. Never | |
682 | * used. Injects an extra reset even when it's not used, and | |
683 | * that can mess up tests, e.g. -boot once. | |
684 | */ | |
c7f0f3b1 AL |
685 | for (i = 0; i < ARRAY_SIZE(irq_levels); i++) { |
686 | irq_levels[i] = 0; | |
687 | } | |
6e92466a | 688 | qemu_gettimeofday(&start_time); |
c7f0f3b1 AL |
689 | qtest_opened = true; |
690 | if (qtest_log_fp) { | |
691 | fprintf(qtest_log_fp, "[I " FMT_timeval "] OPENED\n", | |
35aa3fb3 | 692 | (long) start_time.tv_sec, (long) start_time.tv_usec); |
c7f0f3b1 AL |
693 | } |
694 | break; | |
695 | case CHR_EVENT_CLOSED: | |
696 | qtest_opened = false; | |
697 | if (qtest_log_fp) { | |
6e92466a | 698 | qemu_timeval tv; |
c7f0f3b1 AL |
699 | qtest_get_time(&tv); |
700 | fprintf(qtest_log_fp, "[I +" FMT_timeval "] CLOSED\n", | |
35aa3fb3 | 701 | (long) tv.tv_sec, (long) tv.tv_usec); |
c7f0f3b1 AL |
702 | } |
703 | break; | |
704 | default: | |
705 | break; | |
706 | } | |
707 | } | |
708 | ||
b3adf5ac | 709 | static int qtest_init_accel(MachineState *ms) |
c7f0f3b1 | 710 | { |
b3adf5ac MA |
711 | QemuOpts *opts = qemu_opts_create(qemu_find_opts("icount"), NULL, 0, |
712 | &error_abort); | |
713 | qemu_opt_set(opts, "shift", "0", &error_abort); | |
1ad9580b ST |
714 | configure_icount(opts, &error_abort); |
715 | qemu_opts_del(opts); | |
d4fce24f PB |
716 | return 0; |
717 | } | |
718 | ||
23802b4f | 719 | void qtest_init(const char *qtest_chrdev, const char *qtest_log, Error **errp) |
d4fce24f | 720 | { |
0ec7b3e7 | 721 | Chardev *chr; |
c7f0f3b1 | 722 | |
b4948be9 | 723 | chr = qemu_chr_new("qtest", qtest_chrdev); |
c7f0f3b1 | 724 | |
23802b4f FZ |
725 | if (chr == NULL) { |
726 | error_setg(errp, "Failed to initialize device for qtest: \"%s\"", | |
727 | qtest_chrdev); | |
728 | return; | |
729 | } | |
730 | ||
c7f0f3b1 AL |
731 | if (qtest_log) { |
732 | if (strcmp(qtest_log, "none") != 0) { | |
733 | qtest_log_fp = fopen(qtest_log, "w+"); | |
734 | } | |
735 | } else { | |
736 | qtest_log_fp = stderr; | |
737 | } | |
738 | ||
5345fdb4 MAL |
739 | qemu_chr_fe_init(&qtest_chr, chr, errp); |
740 | qemu_chr_fe_set_handlers(&qtest_chr, qtest_can_read, qtest_read, | |
81517ba3 | 741 | qtest_event, NULL, &qtest_chr, NULL, true); |
5345fdb4 | 742 | qemu_chr_fe_set_echo(&qtest_chr, true); |
107684c0 LL |
743 | |
744 | inbuf = g_string_new(""); | |
c7f0f3b1 | 745 | } |
b3be57c3 MT |
746 | |
747 | bool qtest_driver(void) | |
748 | { | |
32a6ebec | 749 | return qtest_chr.chr != NULL; |
b3be57c3 | 750 | } |
3a6ce514 EH |
751 | |
752 | static void qtest_accel_class_init(ObjectClass *oc, void *data) | |
753 | { | |
754 | AccelClass *ac = ACCEL_CLASS(oc); | |
755 | ac->name = "QTest"; | |
756 | ac->available = qtest_available; | |
0d15da8e | 757 | ac->init_machine = qtest_init_accel; |
3a6ce514 EH |
758 | ac->allowed = &qtest_allowed; |
759 | } | |
760 | ||
761 | #define TYPE_QTEST_ACCEL ACCEL_CLASS_NAME("qtest") | |
762 | ||
763 | static const TypeInfo qtest_accel_type = { | |
764 | .name = TYPE_QTEST_ACCEL, | |
765 | .parent = TYPE_ACCEL, | |
766 | .class_init = qtest_accel_class_init, | |
767 | }; | |
768 | ||
769 | static void qtest_type_init(void) | |
770 | { | |
771 | type_register_static(&qtest_accel_type); | |
772 | } | |
773 | ||
774 | type_init(qtest_type_init); |