blob: 12703a204559c54eb7f0bc67e31f0922ae98b5a8 [file] [log] [blame]
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02001/*
2 * Test Server
3 *
4 * Copyright IBM, Corp. 2011
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
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
Peter Maydelld38ea872016-01-29 17:50:05 +000014#include "qemu/osdep.h"
Markus Armbrusterda34e652016-03-14 09:01:28 +010015#include "qapi/error.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010016#include "sysemu/qtest.h"
Markus Armbruster54d31232019-08-12 07:23:59 +020017#include "sysemu/runstate.h"
Marc-André Lureau4d43a602017-01-26 18:26:44 +040018#include "chardev/char-fe.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010019#include "exec/ioport.h"
20#include "exec/memory.h"
Thomas Huth09637ed2023-04-11 20:34:18 +020021#include "exec/tswap.h"
Philippe Mathieu-Daudé496bde82022-02-07 09:27:51 +010022#include "hw/qdev-core.h"
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +020023#include "hw/irq.h"
Philippe Mathieu-Daudé65eac5b2023-12-12 12:30:15 +010024#include "hw/core/cpu.h"
Claudio Fontana940e43a2021-02-04 17:39:24 +010025#include "qemu/accel.h"
Claudio Fontana740b1752020-08-19 13:17:19 +020026#include "sysemu/cpu-timers.h"
Sebastian Tanase1ad95802014-07-25 11:56:28 +020027#include "qemu/config-file.h"
28#include "qemu/option.h"
29#include "qemu/error-report.h"
Markus Armbruster0b8fa322019-05-23 16:35:07 +020030#include "qemu/module.h"
Laurent Vivieraa15f492016-09-13 14:52:43 +020031#include "qemu/cutils.h"
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -050032#include "qom/object_interfaces.h"
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +020033
34#define MAX_IRQ 256
35
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -050036#define TYPE_QTEST "qtest"
37
38OBJECT_DECLARE_SIMPLE_TYPE(QTest, QTEST)
39
40struct QTest {
41 Object parent;
42
43 bool has_machine_link;
44 char *chr_name;
45 Chardev *chr;
46 CharBackend qtest_chr;
47 char *log;
48};
49
liguangd5286af2013-01-24 13:03:27 +080050bool qtest_allowed;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +020051
Paolo Bonzini20288342012-03-28 15:42:03 +020052static DeviceState *irq_intercept_dev;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +020053static FILE *qtest_log_fp;
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -050054static QTest *qtest;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +020055static GString *inbuf;
56static int irq_levels[MAX_IRQ];
Marc-André Lureau20e4ae12022-03-07 11:03:58 +040057static GTimer *timer;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +020058static bool qtest_opened;
Alexander Bulekove731d082020-02-19 23:11:01 -050059static void (*qtest_server_send)(void*, const char*);
60static void *qtest_server_send_opaque;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +020061
Marc-André Lureau20e4ae12022-03-07 11:03:58 +040062#define FMT_timeval "%.06f"
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +020063
64/**
Eduardo Habkostf59c6de2020-10-05 16:52:27 -040065 * DOC: QTest Protocol
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +020066 *
67 * Line based protocol, request/response based. Server can send async messages
68 * so clients should always handle many async messages before the response
69 * comes in.
70 *
71 * Valid requests
Eduardo Habkostf59c6de2020-10-05 16:52:27 -040072 * ^^^^^^^^^^^^^^
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +020073 *
Paolo Bonzini8156be52012-03-28 15:42:04 +020074 * Clock management:
Eduardo Habkostf59c6de2020-10-05 16:52:27 -040075 * """""""""""""""""
Paolo Bonzini8156be52012-03-28 15:42:04 +020076 *
Alex Blighbc72ad62013-08-21 16:03:08 +010077 * The qtest client is completely in charge of the QEMU_CLOCK_VIRTUAL. qtest commands
Paolo Bonzini8156be52012-03-28 15:42:04 +020078 * let you adjust the value of the clock (monotonically). All the commands
79 * return the current value of the clock in nanoseconds.
80 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -040081 * .. code-block:: none
82 *
Paolo Bonzini8156be52012-03-28 15:42:04 +020083 * > clock_step
84 * < OK VALUE
85 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -040086 * Advance the clock to the next deadline. Useful when waiting for
87 * asynchronous events.
88 *
89 * .. code-block:: none
Paolo Bonzini8156be52012-03-28 15:42:04 +020090 *
91 * > clock_step NS
92 * < OK VALUE
93 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -040094 * Advance the clock by NS nanoseconds.
95 *
96 * .. code-block:: none
Paolo Bonzini8156be52012-03-28 15:42:04 +020097 *
98 * > clock_set NS
99 * < OK VALUE
100 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400101 * Advance the clock to NS nanoseconds (do nothing if it's already past).
Paolo Bonzini8156be52012-03-28 15:42:04 +0200102 *
103 * PIO and memory access:
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400104 * """"""""""""""""""""""
105 *
106 * .. code-block:: none
Paolo Bonzini8156be52012-03-28 15:42:04 +0200107 *
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200108 * > outb ADDR VALUE
109 * < OK
110 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400111 * .. code-block:: none
112 *
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200113 * > outw ADDR VALUE
114 * < OK
115 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400116 * .. code-block:: none
117 *
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200118 * > outl ADDR VALUE
119 * < OK
120 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400121 * .. code-block:: none
122 *
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200123 * > inb ADDR
124 * < OK VALUE
125 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400126 * .. code-block:: none
127 *
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200128 * > inw ADDR
129 * < OK VALUE
130 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400131 * .. code-block:: none
132 *
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200133 * > inl ADDR
134 * < OK VALUE
135 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400136 * .. code-block:: none
137 *
Andreas Färber872536b2013-02-16 22:44:03 +0100138 * > writeb ADDR VALUE
139 * < OK
140 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400141 * .. code-block:: none
142 *
Andreas Färber872536b2013-02-16 22:44:03 +0100143 * > writew ADDR VALUE
144 * < OK
145 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400146 * .. code-block:: none
147 *
Andreas Färber872536b2013-02-16 22:44:03 +0100148 * > writel ADDR VALUE
149 * < OK
150 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400151 * .. code-block:: none
152 *
Andreas Färber872536b2013-02-16 22:44:03 +0100153 * > writeq ADDR VALUE
154 * < OK
155 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400156 * .. code-block:: none
157 *
Andreas Färber872536b2013-02-16 22:44:03 +0100158 * > readb ADDR
159 * < OK VALUE
160 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400161 * .. code-block:: none
162 *
Andreas Färber872536b2013-02-16 22:44:03 +0100163 * > readw ADDR
164 * < OK VALUE
165 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400166 * .. code-block:: none
167 *
Andreas Färber872536b2013-02-16 22:44:03 +0100168 * > readl ADDR
169 * < OK VALUE
170 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400171 * .. code-block:: none
172 *
Andreas Färber872536b2013-02-16 22:44:03 +0100173 * > readq ADDR
174 * < OK VALUE
175 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400176 * .. code-block:: none
177 *
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200178 * > read ADDR SIZE
179 * < OK DATA
180 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400181 * .. code-block:: none
182 *
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200183 * > write ADDR SIZE DATA
184 * < OK
185 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400186 * .. code-block:: none
187 *
John Snow7a6a7402015-05-22 14:13:44 -0400188 * > b64read ADDR SIZE
189 * < OK B64_DATA
190 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400191 * .. code-block:: none
192 *
John Snow7a6a7402015-05-22 14:13:44 -0400193 * > b64write ADDR SIZE B64_DATA
194 * < OK
195 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400196 * .. code-block:: none
197 *
John Snow4d007962015-05-22 14:13:44 -0400198 * > memset ADDR SIZE VALUE
199 * < OK
200 *
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200201 * ADDR, SIZE, VALUE are all integers parsed with strtoul() with a base of 0.
Peter Maydell5f31bbf2016-08-05 11:43:20 +0100202 * For 'memset' a zero size is permitted and does nothing.
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200203 *
204 * DATA is an arbitrarily long hex number prefixed with '0x'. If it's smaller
205 * than the expected size, the value will be zero filled at the end of the data
206 * sequence.
207 *
John Snow7a6a7402015-05-22 14:13:44 -0400208 * B64_DATA is an arbitrarily long base64 encoded string.
209 * If the sizes do not match, the data will be truncated.
210 *
Paolo Bonzini20288342012-03-28 15:42:03 +0200211 * IRQ management:
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400212 * """""""""""""""
213 *
214 * .. code-block:: none
Paolo Bonzini20288342012-03-28 15:42:03 +0200215 *
216 * > irq_intercept_in QOM-PATH
217 * < OK
218 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400219 * .. code-block:: none
220 *
Paolo Bonzini20288342012-03-28 15:42:03 +0200221 * > irq_intercept_out QOM-PATH
222 * < OK
223 *
224 * Attach to the gpio-in (resp. gpio-out) pins exported by the device at
225 * QOM-PATH. When the pin is triggered, one of the following async messages
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400226 * will be printed to the qtest stream::
Paolo Bonzini20288342012-03-28 15:42:03 +0200227 *
228 * IRQ raise NUM
229 * IRQ lower NUM
230 *
231 * where NUM is an IRQ number. For the PC, interrupts can be intercepted
232 * simply with "irq_intercept_in ioapic" (note that IRQ0 comes out with
233 * NUM=0 even though it is remapped to GSI 2).
Steffen Görtz9813dc62019-01-07 15:23:47 +0000234 *
235 * Setting interrupt level:
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400236 * """"""""""""""""""""""""
237 *
238 * .. code-block:: none
Steffen Görtz9813dc62019-01-07 15:23:47 +0000239 *
240 * > set_irq_in QOM-PATH NAME NUM LEVEL
241 * < OK
242 *
Eduardo Habkostf59c6de2020-10-05 16:52:27 -0400243 * where NAME is the name of the irq/gpio list, NUM is an IRQ number and
244 * LEVEL is an signed integer IRQ level.
Steffen Görtz9813dc62019-01-07 15:23:47 +0000245 *
246 * Forcibly set the given interrupt pin to the given level.
247 *
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200248 */
249
250static int hex2nib(char ch)
251{
252 if (ch >= '0' && ch <= '9') {
253 return ch - '0';
254 } else if (ch >= 'a' && ch <= 'f') {
255 return 10 + (ch - 'a');
256 } else if (ch >= 'A' && ch <= 'F') {
Sergey Fedorov2a802aa2014-05-27 16:15:20 +0400257 return 10 + (ch - 'A');
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200258 } else {
259 return -1;
260 }
261}
262
Thomas Huthc7a6bf52023-04-11 20:34:16 +0200263void qtest_send_prefix(CharBackend *chr)
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200264{
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200265 if (!qtest_log_fp || !qtest_opened) {
266 return;
267 }
268
Marc-André Lureau20e4ae12022-03-07 11:03:58 +0400269 fprintf(qtest_log_fp, "[S +" FMT_timeval "] ", g_timer_elapsed(timer, NULL));
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200270}
271
Marc-André Lureau9edc6312022-02-20 20:39:25 +0400272static void G_GNUC_PRINTF(1, 2) qtest_log_send(const char *fmt, ...)
John Snow7a6a7402015-05-22 14:13:44 -0400273{
274 va_list ap;
275
276 if (!qtest_log_fp || !qtest_opened) {
277 return;
278 }
279
280 qtest_send_prefix(NULL);
281
282 va_start(ap, fmt);
283 vfprintf(qtest_log_fp, fmt, ap);
284 va_end(ap);
285}
286
Alexander Bulekove731d082020-02-19 23:11:01 -0500287static void qtest_server_char_be_send(void *opaque, const char *str)
John Snow332cc7e2015-05-22 14:13:43 -0400288{
Alexander Bulekove731d082020-02-19 23:11:01 -0500289 size_t len = strlen(str);
290 CharBackend* chr = (CharBackend *)opaque;
John Snow332cc7e2015-05-22 14:13:43 -0400291 qemu_chr_fe_write_all(chr, (uint8_t *)str, len);
292 if (qtest_log_fp && qtest_opened) {
293 fprintf(qtest_log_fp, "%s", str);
294 }
295}
296
Marc-André Lureau5345fdb2016-10-22 12:52:55 +0300297static void qtest_send(CharBackend *chr, const char *str)
John Snow332cc7e2015-05-22 14:13:43 -0400298{
Alexander Bulekove731d082020-02-19 23:11:01 -0500299 qtest_server_send(qtest_server_send_opaque, str);
John Snow332cc7e2015-05-22 14:13:43 -0400300}
301
Thomas Huthc7a6bf52023-04-11 20:34:16 +0200302void qtest_sendf(CharBackend *chr, const char *fmt, ...)
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200303{
304 va_list ap;
John Snow332cc7e2015-05-22 14:13:43 -0400305 gchar *buffer;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200306
307 va_start(ap, fmt);
John Snow332cc7e2015-05-22 14:13:43 -0400308 buffer = g_strdup_vprintf(fmt, ap);
309 qtest_send(chr, buffer);
Marc-André Lureaufc340592016-11-10 12:25:00 +0400310 g_free(buffer);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200311 va_end(ap);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200312}
313
Paolo Bonzini20288342012-03-28 15:42:03 +0200314static void qtest_irq_handler(void *opaque, int n, int level)
315{
Peter Crosthwaite60a79012014-09-25 22:21:31 -0700316 qemu_irq old_irq = *(qemu_irq *)opaque;
317 qemu_set_irq(old_irq, level);
Paolo Bonzini20288342012-03-28 15:42:03 +0200318
319 if (irq_levels[n] != level) {
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -0500320 CharBackend *chr = &qtest->qtest_chr;
Paolo Bonzini20288342012-03-28 15:42:03 +0200321 irq_levels[n] = level;
322 qtest_send_prefix(chr);
John Snow332cc7e2015-05-22 14:13:43 -0400323 qtest_sendf(chr, "IRQ %s %d\n",
324 level ? "raise" : "lower", n);
Paolo Bonzini20288342012-03-28 15:42:03 +0200325 }
326}
327
Thomas Huthc7a6bf52023-04-11 20:34:16 +0200328static bool (*process_command_cb)(CharBackend *chr, gchar **words);
329
330void qtest_set_command_cb(bool (*pc_cb)(CharBackend *chr, gchar **words))
331{
332 assert(!process_command_cb); /* Switch to a list if we need more than one */
333
334 process_command_cb = pc_cb;
335}
336
Chris Laplante7458dcf2023-08-22 17:31:00 +0100337static void qtest_install_gpio_out_intercept(DeviceState *dev, const char *name, int n)
338{
339 qemu_irq *disconnected = g_new0(qemu_irq, 1);
340 qemu_irq icpt = qemu_allocate_irq(qtest_irq_handler,
341 disconnected, n);
342
343 *disconnected = qdev_intercept_gpio_out(dev, icpt, name, n);
344}
345
Marc-André Lureau5345fdb2016-10-22 12:52:55 +0300346static void qtest_process_command(CharBackend *chr, gchar **words)
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200347{
348 const gchar *command;
349
350 g_assert(words);
351
352 command = words[0];
353
354 if (qtest_log_fp) {
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200355 int i;
356
Marc-André Lureau20e4ae12022-03-07 11:03:58 +0400357 fprintf(qtest_log_fp, "[R +" FMT_timeval "]", g_timer_elapsed(timer, NULL));
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200358 for (i = 0; words[i]; i++) {
359 fprintf(qtest_log_fp, " %s", words[i]);
360 }
361 fprintf(qtest_log_fp, "\n");
362 }
363
364 g_assert(command);
Paolo Bonzini20288342012-03-28 15:42:03 +0200365 if (strcmp(words[0], "irq_intercept_out") == 0
366 || strcmp(words[0], "irq_intercept_in") == 0) {
Peter Crosthwaitea5f54292014-05-19 23:30:58 -0700367 DeviceState *dev;
368 NamedGPIOList *ngl;
Chris Laplantefe692f72023-08-22 17:31:01 +0100369 bool is_named;
Chris Laplantea8610f82023-08-22 17:31:00 +0100370 bool is_outbound;
Chris Laplantec7bb6fa2023-08-22 17:31:01 +0100371 bool interception_succeeded = false;
Paolo Bonzini20288342012-03-28 15:42:03 +0200372
373 g_assert(words[1]);
Chris Laplantefe692f72023-08-22 17:31:01 +0100374 is_named = words[2] != NULL;
Chris Laplantea8610f82023-08-22 17:31:00 +0100375 is_outbound = words[0][14] == 'o';
Paolo Bonzini20288342012-03-28 15:42:03 +0200376 dev = DEVICE(object_resolve_path(words[1], NULL));
377 if (!dev) {
378 qtest_send_prefix(chr);
379 qtest_send(chr, "FAIL Unknown device\n");
Paolo Bonzini7d374352018-12-13 23:37:37 +0100380 return;
Paolo Bonzini20288342012-03-28 15:42:03 +0200381 }
382
Chris Laplantefe692f72023-08-22 17:31:01 +0100383 if (is_named && !is_outbound) {
384 qtest_send_prefix(chr);
385 qtest_send(chr, "FAIL Interception of named in-GPIOs not yet supported\n");
386 return;
387 }
388
Paolo Bonzini20288342012-03-28 15:42:03 +0200389 if (irq_intercept_dev) {
390 qtest_send_prefix(chr);
391 if (irq_intercept_dev != dev) {
392 qtest_send(chr, "FAIL IRQ intercept already enabled\n");
393 } else {
394 qtest_send(chr, "OK\n");
395 }
Paolo Bonzini7d374352018-12-13 23:37:37 +0100396 return;
Paolo Bonzini20288342012-03-28 15:42:03 +0200397 }
398
Peter Crosthwaitea5f54292014-05-19 23:30:58 -0700399 QLIST_FOREACH(ngl, &dev->gpios, node) {
Chris Laplantea8610f82023-08-22 17:31:00 +0100400 /* We don't support inbound interception of named GPIOs yet */
401 if (is_outbound) {
402 /* NULL is valid and matchable, for "unnamed GPIO" */
403 if (g_strcmp0(ngl->name, words[2]) == 0) {
404 int i;
405 for (i = 0; i < ngl->num_out; ++i) {
406 qtest_install_gpio_out_intercept(dev, ngl->name, i);
407 }
Chris Laplantec7bb6fa2023-08-22 17:31:01 +0100408 interception_succeeded = true;
Peter Crosthwaite60a79012014-09-25 22:21:31 -0700409 }
Peter Crosthwaitea5f54292014-05-19 23:30:58 -0700410 } else {
411 qemu_irq_intercept_in(ngl->in, qtest_irq_handler,
412 ngl->num_in);
Chris Laplantec7bb6fa2023-08-22 17:31:01 +0100413 interception_succeeded = true;
Peter Crosthwaitea5f54292014-05-19 23:30:58 -0700414 }
Paolo Bonzini20288342012-03-28 15:42:03 +0200415 }
Chris Laplantec7bb6fa2023-08-22 17:31:01 +0100416
Paolo Bonzini20288342012-03-28 15:42:03 +0200417 qtest_send_prefix(chr);
Chris Laplantec7bb6fa2023-08-22 17:31:01 +0100418 if (interception_succeeded) {
419 irq_intercept_dev = dev;
420 qtest_send(chr, "OK\n");
421 } else {
422 qtest_send(chr, "FAIL No intercepts installed\n");
423 }
Steffen Görtz9813dc62019-01-07 15:23:47 +0000424 } else if (strcmp(words[0], "set_irq_in") == 0) {
425 DeviceState *dev;
426 qemu_irq irq;
427 char *name;
428 int ret;
429 int num;
430 int level;
Paolo Bonzini20288342012-03-28 15:42:03 +0200431
Steffen Görtz9813dc62019-01-07 15:23:47 +0000432 g_assert(words[1] && words[2] && words[3] && words[4]);
433
434 dev = DEVICE(object_resolve_path(words[1], NULL));
435 if (!dev) {
436 qtest_send_prefix(chr);
437 qtest_send(chr, "FAIL Unknown device\n");
438 return;
439 }
440
441 if (strcmp(words[2], "unnamed-gpio-in") == 0) {
442 name = NULL;
443 } else {
444 name = words[2];
445 }
446
447 ret = qemu_strtoi(words[3], NULL, 0, &num);
448 g_assert(!ret);
449 ret = qemu_strtoi(words[4], NULL, 0, &level);
450 g_assert(!ret);
451
452 irq = qdev_get_gpio_in_named(dev, name, num);
453
454 qemu_set_irq(irq, level);
455 qtest_send_prefix(chr);
456 qtest_send(chr, "OK\n");
Paolo Bonzini20288342012-03-28 15:42:03 +0200457 } else if (strcmp(words[0], "outb") == 0 ||
458 strcmp(words[0], "outw") == 0 ||
459 strcmp(words[0], "outl") == 0) {
Laurent Vivieraa15f492016-09-13 14:52:43 +0200460 unsigned long addr;
461 unsigned long value;
Eric Blake14773122017-09-11 12:19:46 -0500462 int ret;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200463
464 g_assert(words[1] && words[2]);
Eric Blake14773122017-09-11 12:19:46 -0500465 ret = qemu_strtoul(words[1], NULL, 0, &addr);
466 g_assert(ret == 0);
467 ret = qemu_strtoul(words[2], NULL, 0, &value);
468 g_assert(ret == 0);
Laurent Vivieraa15f492016-09-13 14:52:43 +0200469 g_assert(addr <= 0xffff);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200470
471 if (words[0][3] == 'b') {
472 cpu_outb(addr, value);
473 } else if (words[0][3] == 'w') {
474 cpu_outw(addr, value);
475 } else if (words[0][3] == 'l') {
476 cpu_outl(addr, value);
477 }
478 qtest_send_prefix(chr);
479 qtest_send(chr, "OK\n");
480 } else if (strcmp(words[0], "inb") == 0 ||
481 strcmp(words[0], "inw") == 0 ||
482 strcmp(words[0], "inl") == 0) {
Laurent Vivieraa15f492016-09-13 14:52:43 +0200483 unsigned long addr;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200484 uint32_t value = -1U;
Eric Blake14773122017-09-11 12:19:46 -0500485 int ret;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200486
487 g_assert(words[1]);
Eric Blake14773122017-09-11 12:19:46 -0500488 ret = qemu_strtoul(words[1], NULL, 0, &addr);
489 g_assert(ret == 0);
Laurent Vivieraa15f492016-09-13 14:52:43 +0200490 g_assert(addr <= 0xffff);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200491
492 if (words[0][2] == 'b') {
493 value = cpu_inb(addr);
494 } else if (words[0][2] == 'w') {
495 value = cpu_inw(addr);
496 } else if (words[0][2] == 'l') {
497 value = cpu_inl(addr);
498 }
499 qtest_send_prefix(chr);
John Snow332cc7e2015-05-22 14:13:43 -0400500 qtest_sendf(chr, "OK 0x%04x\n", value);
Andreas Färber872536b2013-02-16 22:44:03 +0100501 } else if (strcmp(words[0], "writeb") == 0 ||
502 strcmp(words[0], "writew") == 0 ||
503 strcmp(words[0], "writel") == 0 ||
504 strcmp(words[0], "writeq") == 0) {
505 uint64_t addr;
506 uint64_t value;
Eric Blake14773122017-09-11 12:19:46 -0500507 int ret;
Andreas Färber872536b2013-02-16 22:44:03 +0100508
509 g_assert(words[1] && words[2]);
Eric Blake14773122017-09-11 12:19:46 -0500510 ret = qemu_strtou64(words[1], NULL, 0, &addr);
511 g_assert(ret == 0);
512 ret = qemu_strtou64(words[2], NULL, 0, &value);
513 g_assert(ret == 0);
Andreas Färber872536b2013-02-16 22:44:03 +0100514
515 if (words[0][5] == 'b') {
516 uint8_t data = value;
Peter Maydell19f70342020-02-18 11:24:57 +0000517 address_space_write(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED,
518 &data, 1);
Andreas Färber872536b2013-02-16 22:44:03 +0100519 } else if (words[0][5] == 'w') {
520 uint16_t data = value;
521 tswap16s(&data);
Peter Maydell19f70342020-02-18 11:24:57 +0000522 address_space_write(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED,
523 &data, 2);
Andreas Färber872536b2013-02-16 22:44:03 +0100524 } else if (words[0][5] == 'l') {
525 uint32_t data = value;
526 tswap32s(&data);
Peter Maydell19f70342020-02-18 11:24:57 +0000527 address_space_write(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED,
528 &data, 4);
Andreas Färber872536b2013-02-16 22:44:03 +0100529 } else if (words[0][5] == 'q') {
530 uint64_t data = value;
531 tswap64s(&data);
Peter Maydell19f70342020-02-18 11:24:57 +0000532 address_space_write(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED,
533 &data, 8);
Andreas Färber872536b2013-02-16 22:44:03 +0100534 }
535 qtest_send_prefix(chr);
536 qtest_send(chr, "OK\n");
537 } else if (strcmp(words[0], "readb") == 0 ||
538 strcmp(words[0], "readw") == 0 ||
539 strcmp(words[0], "readl") == 0 ||
540 strcmp(words[0], "readq") == 0) {
541 uint64_t addr;
542 uint64_t value = UINT64_C(-1);
Eric Blake14773122017-09-11 12:19:46 -0500543 int ret;
Andreas Färber872536b2013-02-16 22:44:03 +0100544
545 g_assert(words[1]);
Eric Blake14773122017-09-11 12:19:46 -0500546 ret = qemu_strtou64(words[1], NULL, 0, &addr);
547 g_assert(ret == 0);
Andreas Färber872536b2013-02-16 22:44:03 +0100548
549 if (words[0][4] == 'b') {
550 uint8_t data;
Peter Maydell19f70342020-02-18 11:24:57 +0000551 address_space_read(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED,
552 &data, 1);
Andreas Färber872536b2013-02-16 22:44:03 +0100553 value = data;
554 } else if (words[0][4] == 'w') {
555 uint16_t data;
Peter Maydell19f70342020-02-18 11:24:57 +0000556 address_space_read(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED,
557 &data, 2);
Andreas Färber872536b2013-02-16 22:44:03 +0100558 value = tswap16(data);
559 } else if (words[0][4] == 'l') {
560 uint32_t data;
Peter Maydell19f70342020-02-18 11:24:57 +0000561 address_space_read(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED,
562 &data, 4);
Andreas Färber872536b2013-02-16 22:44:03 +0100563 value = tswap32(data);
564 } else if (words[0][4] == 'q') {
Peter Maydell19f70342020-02-18 11:24:57 +0000565 address_space_read(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED,
566 &value, 8);
Andreas Färber872536b2013-02-16 22:44:03 +0100567 tswap64s(&value);
568 }
569 qtest_send_prefix(chr);
John Snow332cc7e2015-05-22 14:13:43 -0400570 qtest_sendf(chr, "OK 0x%016" PRIx64 "\n", value);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200571 } else if (strcmp(words[0], "read") == 0) {
Philippe Mathieu-Daudé4b692102024-04-12 00:33:26 -0700572 g_autoptr(GString) enc = NULL;
573 uint64_t addr, len;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200574 uint8_t *data;
Eric Blake14773122017-09-11 12:19:46 -0500575 int ret;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200576
577 g_assert(words[1] && words[2]);
Eric Blake14773122017-09-11 12:19:46 -0500578 ret = qemu_strtou64(words[1], NULL, 0, &addr);
579 g_assert(ret == 0);
580 ret = qemu_strtou64(words[2], NULL, 0, &len);
581 g_assert(ret == 0);
Greg Kurz204febd2017-01-11 09:49:32 +0100582 /* We'd send garbage to libqtest if len is 0 */
583 g_assert(len);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200584
585 data = g_malloc(len);
Peter Maydell19f70342020-02-18 11:24:57 +0000586 address_space_read(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, data,
587 len);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200588
Philippe Mathieu-Daudé4b692102024-04-12 00:33:26 -0700589 enc = qemu_hexdump_line(NULL, data, len, 0, 0);
John Snow5560b852015-05-22 14:13:44 -0400590
591 qtest_send_prefix(chr);
Philippe Mathieu-Daudé4b692102024-04-12 00:33:26 -0700592 qtest_sendf(chr, "OK 0x%s\n", enc->str);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200593
594 g_free(data);
John Snow7a6a7402015-05-22 14:13:44 -0400595 } else if (strcmp(words[0], "b64read") == 0) {
596 uint64_t addr, len;
597 uint8_t *data;
598 gchar *b64_data;
Eric Blake14773122017-09-11 12:19:46 -0500599 int ret;
John Snow7a6a7402015-05-22 14:13:44 -0400600
601 g_assert(words[1] && words[2]);
Eric Blake14773122017-09-11 12:19:46 -0500602 ret = qemu_strtou64(words[1], NULL, 0, &addr);
603 g_assert(ret == 0);
604 ret = qemu_strtou64(words[2], NULL, 0, &len);
605 g_assert(ret == 0);
John Snow7a6a7402015-05-22 14:13:44 -0400606
607 data = g_malloc(len);
Peter Maydell19f70342020-02-18 11:24:57 +0000608 address_space_read(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, data,
609 len);
John Snow7a6a7402015-05-22 14:13:44 -0400610 b64_data = g_base64_encode(data, len);
611 qtest_send_prefix(chr);
612 qtest_sendf(chr, "OK %s\n", b64_data);
613
614 g_free(data);
615 g_free(b64_data);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200616 } else if (strcmp(words[0], "write") == 0) {
617 uint64_t addr, len, i;
618 uint8_t *data;
619 size_t data_len;
Eric Blake14773122017-09-11 12:19:46 -0500620 int ret;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200621
622 g_assert(words[1] && words[2] && words[3]);
Eric Blake14773122017-09-11 12:19:46 -0500623 ret = qemu_strtou64(words[1], NULL, 0, &addr);
624 g_assert(ret == 0);
625 ret = qemu_strtou64(words[2], NULL, 0, &len);
626 g_assert(ret == 0);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200627
628 data_len = strlen(words[3]);
629 if (data_len < 3) {
630 qtest_send(chr, "ERR invalid argument size\n");
631 return;
632 }
633
634 data = g_malloc(len);
635 for (i = 0; i < len; i++) {
636 if ((i * 2 + 4) <= data_len) {
637 data[i] = hex2nib(words[3][i * 2 + 2]) << 4;
638 data[i] |= hex2nib(words[3][i * 2 + 3]);
639 } else {
640 data[i] = 0;
641 }
642 }
Peter Maydell19f70342020-02-18 11:24:57 +0000643 address_space_write(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, data,
644 len);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200645 g_free(data);
646
647 qtest_send_prefix(chr);
648 qtest_send(chr, "OK\n");
John Snow4d007962015-05-22 14:13:44 -0400649 } else if (strcmp(words[0], "memset") == 0) {
650 uint64_t addr, len;
651 uint8_t *data;
Laurent Vivieraa15f492016-09-13 14:52:43 +0200652 unsigned long pattern;
Eric Blake14773122017-09-11 12:19:46 -0500653 int ret;
John Snow4d007962015-05-22 14:13:44 -0400654
655 g_assert(words[1] && words[2] && words[3]);
Eric Blake14773122017-09-11 12:19:46 -0500656 ret = qemu_strtou64(words[1], NULL, 0, &addr);
657 g_assert(ret == 0);
658 ret = qemu_strtou64(words[2], NULL, 0, &len);
659 g_assert(ret == 0);
660 ret = qemu_strtoul(words[3], NULL, 0, &pattern);
661 g_assert(ret == 0);
John Snow4d007962015-05-22 14:13:44 -0400662
Peter Maydell5f31bbf2016-08-05 11:43:20 +0100663 if (len) {
664 data = g_malloc(len);
665 memset(data, pattern, len);
Peter Maydell19f70342020-02-18 11:24:57 +0000666 address_space_write(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED,
667 data, len);
Peter Maydell5f31bbf2016-08-05 11:43:20 +0100668 g_free(data);
669 }
John Snow4d007962015-05-22 14:13:44 -0400670
671 qtest_send_prefix(chr);
672 qtest_send(chr, "OK\n");
John Snow7a6a7402015-05-22 14:13:44 -0400673 } else if (strcmp(words[0], "b64write") == 0) {
674 uint64_t addr, len;
675 uint8_t *data;
676 size_t data_len;
677 gsize out_len;
Eric Blake14773122017-09-11 12:19:46 -0500678 int ret;
John Snow7a6a7402015-05-22 14:13:44 -0400679
680 g_assert(words[1] && words[2] && words[3]);
Eric Blake14773122017-09-11 12:19:46 -0500681 ret = qemu_strtou64(words[1], NULL, 0, &addr);
682 g_assert(ret == 0);
683 ret = qemu_strtou64(words[2], NULL, 0, &len);
684 g_assert(ret == 0);
John Snow7a6a7402015-05-22 14:13:44 -0400685
686 data_len = strlen(words[3]);
687 if (data_len < 3) {
688 qtest_send(chr, "ERR invalid argument size\n");
689 return;
690 }
691
692 data = g_base64_decode_inplace(words[3], &out_len);
693 if (out_len != len) {
694 qtest_log_send("b64write: data length mismatch (told %"PRIu64", "
695 "found %zu)\n",
696 len, out_len);
697 out_len = MIN(out_len, len);
698 }
699
Peter Maydell19f70342020-02-18 11:24:57 +0000700 address_space_write(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, data,
701 len);
John Snow7a6a7402015-05-22 14:13:44 -0400702
703 qtest_send_prefix(chr);
704 qtest_send(chr, "OK\n");
Laurent Vivier54ce6f22016-10-07 12:14:27 +0200705 } else if (strcmp(words[0], "endianness") == 0) {
706 qtest_send_prefix(chr);
Thomas Huth09637ed2023-04-11 20:34:18 +0200707 if (target_words_bigendian()) {
708 qtest_sendf(chr, "OK big\n");
709 } else {
710 qtest_sendf(chr, "OK little\n");
711 }
Paolo Bonzinid4fce242013-10-18 13:51:11 +0200712 } else if (qtest_enabled() && strcmp(words[0], "clock_step") == 0) {
Paolo Bonzini8156be52012-03-28 15:42:04 +0200713 int64_t ns;
714
715 if (words[1]) {
Eric Blake14773122017-09-11 12:19:46 -0500716 int ret = qemu_strtoi64(words[1], NULL, 0, &ns);
717 g_assert(ret == 0);
Paolo Bonzini8156be52012-03-28 15:42:04 +0200718 } else {
Pavel Dovgalyukdcb15782019-07-25 11:44:26 +0300719 ns = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL,
720 QEMU_TIMER_ATTR_ALL);
Paolo Bonzini8156be52012-03-28 15:42:04 +0200721 }
Alex Bennéeffbc3942024-06-20 16:22:14 +0100722 qemu_clock_advance_virtual_time(
723 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + ns);
Paolo Bonzini8156be52012-03-28 15:42:04 +0200724 qtest_send_prefix(chr);
John Snow332cc7e2015-05-22 14:13:43 -0400725 qtest_sendf(chr, "OK %"PRIi64"\n",
726 (int64_t)qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL));
Marc-André Lureaueb062cf2019-07-22 22:51:40 +0400727 } else if (strcmp(words[0], "module_load") == 0) {
Claudio Fontanac551fb02022-09-29 11:30:33 +0200728 Error *local_err = NULL;
729 int rv;
Marc-André Lureaueb062cf2019-07-22 22:51:40 +0400730 g_assert(words[1] && words[2]);
731
732 qtest_send_prefix(chr);
Claudio Fontanac551fb02022-09-29 11:30:33 +0200733 rv = module_load(words[1], words[2], &local_err);
734 if (rv > 0) {
Marc-André Lureaueb062cf2019-07-22 22:51:40 +0400735 qtest_sendf(chr, "OK\n");
736 } else {
Claudio Fontanac551fb02022-09-29 11:30:33 +0200737 if (rv < 0) {
738 error_report_err(local_err);
739 }
Marc-André Lureaueb062cf2019-07-22 22:51:40 +0400740 qtest_sendf(chr, "FAIL\n");
741 }
Paolo Bonzinid4fce242013-10-18 13:51:11 +0200742 } else if (qtest_enabled() && strcmp(words[0], "clock_set") == 0) {
Paolo Bonzini8156be52012-03-28 15:42:04 +0200743 int64_t ns;
Eric Blake14773122017-09-11 12:19:46 -0500744 int ret;
Paolo Bonzini8156be52012-03-28 15:42:04 +0200745
746 g_assert(words[1]);
Eric Blake14773122017-09-11 12:19:46 -0500747 ret = qemu_strtoi64(words[1], NULL, 0, &ns);
748 g_assert(ret == 0);
Alex Bennéeffbc3942024-06-20 16:22:14 +0100749 qemu_clock_advance_virtual_time(ns);
Paolo Bonzini8156be52012-03-28 15:42:04 +0200750 qtest_send_prefix(chr);
John Snow332cc7e2015-05-22 14:13:43 -0400751 qtest_sendf(chr, "OK %"PRIi64"\n",
752 (int64_t)qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL));
Thomas Huthc7a6bf52023-04-11 20:34:16 +0200753 } else if (process_command_cb && process_command_cb(chr, words)) {
754 /* Command got consumed by the callback handler */
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200755 } else {
756 qtest_send_prefix(chr);
John Snow332cc7e2015-05-22 14:13:43 -0400757 qtest_sendf(chr, "FAIL Unknown command '%s'\n", words[0]);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200758 }
759}
760
Marc-André Lureau5345fdb2016-10-22 12:52:55 +0300761static void qtest_process_inbuf(CharBackend *chr, GString *inbuf)
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200762{
763 char *end;
764
765 while ((end = strchr(inbuf->str, '\n')) != NULL) {
766 size_t offset;
767 GString *cmd;
768 gchar **words;
769
770 offset = end - inbuf->str;
771
772 cmd = g_string_new_len(inbuf->str, offset);
773 g_string_erase(inbuf, 0, offset + 1);
774
775 words = g_strsplit(cmd->str, " ", 0);
776 qtest_process_command(chr, words);
777 g_strfreev(words);
778
779 g_string_free(cmd, TRUE);
780 }
781}
782
783static void qtest_read(void *opaque, const uint8_t *buf, int size)
784{
Marc-André Lureau5345fdb2016-10-22 12:52:55 +0300785 CharBackend *chr = opaque;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200786
787 g_string_append_len(inbuf, (const gchar *)buf, size);
788 qtest_process_inbuf(chr, inbuf);
789}
790
791static int qtest_can_read(void *opaque)
792{
793 return 1024;
794}
795
Philippe Mathieu-Daudé083b2662019-12-18 18:20:09 +0100796static void qtest_event(void *opaque, QEMUChrEvent event)
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200797{
798 int i;
799
800 switch (event) {
801 case CHR_EVENT_OPENED:
Markus Armbrusterba646ff2013-06-26 15:52:12 +0200802 /*
803 * We used to call qemu_system_reset() here, hoping we could
804 * use the same process for multiple tests that way. Never
805 * used. Injects an extra reset even when it's not used, and
806 * that can mess up tests, e.g. -boot once.
807 */
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200808 for (i = 0; i < ARRAY_SIZE(irq_levels); i++) {
809 irq_levels[i] = 0;
810 }
Marc-André Lureau20e4ae12022-03-07 11:03:58 +0400811
812 g_clear_pointer(&timer, g_timer_destroy);
813 timer = g_timer_new();
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200814 qtest_opened = true;
815 if (qtest_log_fp) {
Marc-André Lureau20e4ae12022-03-07 11:03:58 +0400816 fprintf(qtest_log_fp, "[I " FMT_timeval "] OPENED\n", g_timer_elapsed(timer, NULL));
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200817 }
818 break;
819 case CHR_EVENT_CLOSED:
820 qtest_opened = false;
821 if (qtest_log_fp) {
Marc-André Lureau20e4ae12022-03-07 11:03:58 +0400822 fprintf(qtest_log_fp, "[I +" FMT_timeval "] CLOSED\n", g_timer_elapsed(timer, NULL));
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200823 }
Marc-André Lureau20e4ae12022-03-07 11:03:58 +0400824 g_clear_pointer(&timer, g_timer_destroy);
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200825 break;
826 default:
827 break;
828 }
829}
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -0500830
Oleinik, Alexander2b8985f2019-08-05 03:13:01 +0000831void qtest_server_init(const char *qtest_chrdev, const char *qtest_log, Error **errp)
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200832{
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -0500833 ERRP_GUARD();
Marc-André Lureau0ec7b3e2016-12-07 16:20:22 +0300834 Chardev *chr;
Philippe Mathieu-Daudé63ba5e12023-10-09 12:02:42 +0200835 Object *qobj;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200836
Paolo Bonzini4ad6f6c2019-02-13 14:18:13 +0100837 chr = qemu_chr_new("qtest", qtest_chrdev, NULL);
Fam Zheng23802b42014-02-10 09:28:02 +0800838 if (chr == NULL) {
839 error_setg(errp, "Failed to initialize device for qtest: \"%s\"",
840 qtest_chrdev);
841 return;
842 }
843
Philippe Mathieu-Daudé63ba5e12023-10-09 12:02:42 +0200844 qobj = object_new(TYPE_QTEST);
845 object_property_set_str(qobj, "chardev", chr->label, &error_abort);
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -0500846 if (qtest_log) {
Philippe Mathieu-Daudé63ba5e12023-10-09 12:02:42 +0200847 object_property_set_str(qobj, "log", qtest_log, &error_abort);
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -0500848 }
Philippe Mathieu-Daudé63ba5e12023-10-09 12:02:42 +0200849 object_property_add_child(qdev_get_machine(), "qtest", qobj);
850 user_creatable_complete(USER_CREATABLE(qobj), errp);
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -0500851 if (*errp) {
Philippe Mathieu-Daudé63ba5e12023-10-09 12:02:42 +0200852 object_unparent(qobj);
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -0500853 }
854 object_unref(OBJECT(chr));
Philippe Mathieu-Daudé63ba5e12023-10-09 12:02:42 +0200855 object_unref(qobj);
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -0500856}
857
858static bool qtest_server_start(QTest *q, Error **errp)
859{
860 Chardev *chr = q->chr;
861 const char *qtest_log = q->log;
862
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200863 if (qtest_log) {
864 if (strcmp(qtest_log, "none") != 0) {
865 qtest_log_fp = fopen(qtest_log, "w+");
866 }
867 } else {
868 qtest_log_fp = stderr;
869 }
870
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -0500871 if (!qemu_chr_fe_init(&q->qtest_chr, chr, errp)) {
872 return false;
873 }
874 qemu_chr_fe_set_handlers(&q->qtest_chr, qtest_can_read, qtest_read,
875 qtest_event, NULL, &q->qtest_chr, NULL, true);
876 qemu_chr_fe_set_echo(&q->qtest_chr, true);
Li Liu107684c2014-10-22 10:26:47 +0800877
878 inbuf = g_string_new("");
Alexander Bulekove731d082020-02-19 23:11:01 -0500879
880 if (!qtest_server_send) {
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -0500881 qtest_server_set_send_handler(qtest_server_char_be_send, &q->qtest_chr);
Alexander Bulekove731d082020-02-19 23:11:01 -0500882 }
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -0500883 qtest = q;
884 return true;
Alexander Bulekove731d082020-02-19 23:11:01 -0500885}
886
Alexander Bulekov3fc92f82020-02-26 22:14:39 -0500887void qtest_server_set_send_handler(void (*send)(void*, const char*),
888 void *opaque)
Alexander Bulekove731d082020-02-19 23:11:01 -0500889{
890 qtest_server_send = send;
891 qtest_server_send_opaque = opaque;
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200892}
Michael S. Tsirkinb3be57c2014-02-04 20:06:47 +0200893
894bool qtest_driver(void)
895{
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -0500896 return qtest && qtest->qtest_chr.chr != NULL;
Michael S. Tsirkinb3be57c2014-02-04 20:06:47 +0200897}
Alexander Bulekov0bd9aef2020-02-19 23:11:04 -0500898
899void qtest_server_inproc_recv(void *dummy, const char *buf)
900{
901 static GString *gstr;
902 if (!gstr) {
903 gstr = g_string_new(NULL);
904 }
905 g_string_append(gstr, buf);
906 if (gstr->str[gstr->len - 1] == '\n') {
907 qtest_process_inbuf(NULL, gstr);
908 g_string_truncate(gstr, 0);
909 }
910}
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -0500911
912static void qtest_complete(UserCreatable *uc, Error **errp)
913{
914 QTest *q = QTEST(uc);
915 if (qtest) {
916 error_setg(errp, "Only one instance of qtest can be created");
917 return;
918 }
919 if (!q->chr_name) {
920 error_setg(errp, "No backend specified");
921 return;
922 }
923
924 if (OBJECT(uc)->parent != qdev_get_machine()) {
925 q->has_machine_link = true;
926 object_property_add_const_link(qdev_get_machine(), "qtest", OBJECT(uc));
927 } else {
928 /* -qtest was used. */
929 }
930
931 qtest_server_start(q, errp);
932}
933
934static void qtest_unparent(Object *obj)
935{
936 QTest *q = QTEST(obj);
937
938 if (qtest == q) {
939 qemu_chr_fe_disconnect(&q->qtest_chr);
940 assert(!qtest_opened);
941 qemu_chr_fe_deinit(&q->qtest_chr, false);
942 if (qtest_log_fp) {
943 fclose(qtest_log_fp);
944 qtest_log_fp = NULL;
945 }
946 qtest = NULL;
947 }
948
949 if (q->has_machine_link) {
950 object_property_del(qdev_get_machine(), "qtest");
951 q->has_machine_link = false;
952 }
953}
954
955static void qtest_set_log(Object *obj, const char *value, Error **errp)
956{
957 QTest *q = QTEST(obj);
958
959 if (qtest == q) {
Markus Armbruster8d095932022-10-12 17:38:00 +0200960 error_setg(errp, "Property 'log' can not be set now");
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -0500961 } else {
962 g_free(q->log);
963 q->log = g_strdup(value);
964 }
965}
966
967static char *qtest_get_log(Object *obj, Error **errp)
968{
969 QTest *q = QTEST(obj);
970
971 return g_strdup(q->log);
972}
973
974static void qtest_set_chardev(Object *obj, const char *value, Error **errp)
975{
976 QTest *q = QTEST(obj);
977 Chardev *chr;
978
979 if (qtest == q) {
Markus Armbruster8d095932022-10-12 17:38:00 +0200980 error_setg(errp, "Property 'chardev' can not be set now");
Paolo Bonzini6ba7ada2020-11-09 10:13:30 -0500981 return;
982 }
983
984 chr = qemu_chr_find(value);
985 if (!chr) {
986 error_setg(errp, "Cannot find character device '%s'", value);
987 return;
988 }
989
990 g_free(q->chr_name);
991 q->chr_name = g_strdup(value);
992
993 if (q->chr) {
994 object_unref(q->chr);
995 }
996 q->chr = chr;
997 object_ref(chr);
998}
999
1000static char *qtest_get_chardev(Object *obj, Error **errp)
1001{
1002 QTest *q = QTEST(obj);
1003
1004 return g_strdup(q->chr_name);
1005}
1006
1007static void qtest_class_init(ObjectClass *oc, void *data)
1008{
1009 UserCreatableClass *ucc = USER_CREATABLE_CLASS(oc);
1010
1011 oc->unparent = qtest_unparent;
1012 ucc->complete = qtest_complete;
1013
1014 object_class_property_add_str(oc, "chardev",
1015 qtest_get_chardev, qtest_set_chardev);
1016 object_class_property_add_str(oc, "log",
1017 qtest_get_log, qtest_set_log);
1018}
1019
1020static const TypeInfo qtest_info = {
1021 .name = TYPE_QTEST,
1022 .parent = TYPE_OBJECT,
1023 .class_init = qtest_class_init,
1024 .instance_size = sizeof(QTest),
1025 .interfaces = (InterfaceInfo[]) {
1026 { TYPE_USER_CREATABLE },
1027 { }
1028 }
1029};
1030
1031static void register_types(void)
1032{
1033 type_register_static(&qtest_info);
1034}
1035
1036type_init(register_types);