]> git.proxmox.com Git - mirror_qemu.git/blob - monitor.c
monitor: Use address_space_read() to read memory
[mirror_qemu.git] / monitor.c
1 /*
2 * QEMU monitor
3 *
4 * Copyright (c) 2003-2004 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
25 #include "qemu/osdep.h"
26 #include "qemu/units.h"
27 #include <dirent.h>
28 #include "cpu.h"
29 #include "hw/hw.h"
30 #include "monitor/qdev.h"
31 #include "hw/usb.h"
32 #include "hw/pci/pci.h"
33 #include "sysemu/watchdog.h"
34 #include "hw/loader.h"
35 #include "exec/gdbstub.h"
36 #include "net/net.h"
37 #include "net/slirp.h"
38 #include "chardev/char-fe.h"
39 #include "chardev/char-io.h"
40 #include "chardev/char-mux.h"
41 #include "ui/qemu-spice.h"
42 #include "sysemu/numa.h"
43 #include "monitor/monitor.h"
44 #include "qemu/config-file.h"
45 #include "qemu/readline.h"
46 #include "ui/console.h"
47 #include "ui/input.h"
48 #include "sysemu/block-backend.h"
49 #include "audio/audio.h"
50 #include "disas/disas.h"
51 #include "sysemu/balloon.h"
52 #include "qemu/timer.h"
53 #include "sysemu/hw_accel.h"
54 #include "qemu/acl.h"
55 #include "sysemu/tpm.h"
56 #include "qapi/qmp/qdict.h"
57 #include "qapi/qmp/qerror.h"
58 #include "qapi/qmp/qnum.h"
59 #include "qapi/qmp/qstring.h"
60 #include "qapi/qmp/qjson.h"
61 #include "qapi/qmp/json-parser.h"
62 #include "qapi/qmp/qlist.h"
63 #include "qom/object_interfaces.h"
64 #include "trace-root.h"
65 #include "trace/control.h"
66 #include "monitor/hmp-target.h"
67 #ifdef CONFIG_TRACE_SIMPLE
68 #include "trace/simple.h"
69 #endif
70 #include "exec/memory.h"
71 #include "exec/exec-all.h"
72 #include "qemu/log.h"
73 #include "qemu/option.h"
74 #include "hmp.h"
75 #include "qemu/thread.h"
76 #include "block/qapi.h"
77 #include "qapi/qapi-commands.h"
78 #include "qapi/qapi-events.h"
79 #include "qapi/error.h"
80 #include "qapi/qmp-event.h"
81 #include "qapi/qapi-introspect.h"
82 #include "sysemu/qtest.h"
83 #include "sysemu/cpus.h"
84 #include "sysemu/iothread.h"
85 #include "qemu/cutils.h"
86 #include "tcg/tcg.h"
87
88 #if defined(TARGET_S390X)
89 #include "hw/s390x/storage-keys.h"
90 #include "hw/s390x/storage-attributes.h"
91 #endif
92
93 /*
94 * Supported types:
95 *
96 * 'F' filename
97 * 'B' block device name
98 * 's' string (accept optional quote)
99 * 'S' it just appends the rest of the string (accept optional quote)
100 * 'O' option string of the form NAME=VALUE,...
101 * parsed according to QemuOptsList given by its name
102 * Example: 'device:O' uses qemu_device_opts.
103 * Restriction: only lists with empty desc are supported
104 * TODO lift the restriction
105 * 'i' 32 bit integer
106 * 'l' target long (32 or 64 bit)
107 * 'M' Non-negative target long (32 or 64 bit), in user mode the
108 * value is multiplied by 2^20 (think Mebibyte)
109 * 'o' octets (aka bytes)
110 * user mode accepts an optional E, e, P, p, T, t, G, g, M, m,
111 * K, k suffix, which multiplies the value by 2^60 for suffixes E
112 * and e, 2^50 for suffixes P and p, 2^40 for suffixes T and t,
113 * 2^30 for suffixes G and g, 2^20 for M and m, 2^10 for K and k
114 * 'T' double
115 * user mode accepts an optional ms, us, ns suffix,
116 * which divides the value by 1e3, 1e6, 1e9, respectively
117 * '/' optional gdb-like print format (like "/10x")
118 *
119 * '?' optional type (for all types, except '/')
120 * '.' other form of optional type (for 'i' and 'l')
121 * 'b' boolean
122 * user mode accepts "on" or "off"
123 * '-' optional parameter (eg. '-f')
124 *
125 */
126
127 typedef struct mon_cmd_t {
128 const char *name;
129 const char *args_type;
130 const char *params;
131 const char *help;
132 const char *flags; /* p=preconfig */
133 void (*cmd)(Monitor *mon, const QDict *qdict);
134 /* @sub_table is a list of 2nd level of commands. If it does not exist,
135 * cmd should be used. If it exists, sub_table[?].cmd should be
136 * used, and cmd of 1st level plays the role of help function.
137 */
138 struct mon_cmd_t *sub_table;
139 void (*command_completion)(ReadLineState *rs, int nb_args, const char *str);
140 } mon_cmd_t;
141
142 /* file descriptors passed via SCM_RIGHTS */
143 typedef struct mon_fd_t mon_fd_t;
144 struct mon_fd_t {
145 char *name;
146 int fd;
147 QLIST_ENTRY(mon_fd_t) next;
148 };
149
150 /* file descriptor associated with a file descriptor set */
151 typedef struct MonFdsetFd MonFdsetFd;
152 struct MonFdsetFd {
153 int fd;
154 bool removed;
155 char *opaque;
156 QLIST_ENTRY(MonFdsetFd) next;
157 };
158
159 /* file descriptor set containing fds passed via SCM_RIGHTS */
160 typedef struct MonFdset MonFdset;
161 struct MonFdset {
162 int64_t id;
163 QLIST_HEAD(, MonFdsetFd) fds;
164 QLIST_HEAD(, MonFdsetFd) dup_fds;
165 QLIST_ENTRY(MonFdset) next;
166 };
167
168 typedef struct {
169 JSONMessageParser parser;
170 /*
171 * When a client connects, we're in capabilities negotiation mode.
172 * @commands is &qmp_cap_negotiation_commands then. When command
173 * qmp_capabilities succeeds, we go into command mode, and
174 * @command becomes &qmp_commands.
175 */
176 QmpCommandList *commands;
177 bool capab_offered[QMP_CAPABILITY__MAX]; /* capabilities offered */
178 bool capab[QMP_CAPABILITY__MAX]; /* offered and accepted */
179 /*
180 * Protects qmp request/response queue.
181 * Take monitor_lock first when you need both.
182 */
183 QemuMutex qmp_queue_lock;
184 /* Input queue that holds all the parsed QMP requests */
185 GQueue *qmp_requests;
186 } MonitorQMP;
187
188 /*
189 * To prevent flooding clients, events can be throttled. The
190 * throttling is calculated globally, rather than per-Monitor
191 * instance.
192 */
193 typedef struct MonitorQAPIEventState {
194 QAPIEvent event; /* Throttling state for this event type and... */
195 QDict *data; /* ... data, see qapi_event_throttle_equal() */
196 QEMUTimer *timer; /* Timer for handling delayed events */
197 QDict *qdict; /* Delayed event (if any) */
198 } MonitorQAPIEventState;
199
200 typedef struct {
201 int64_t rate; /* Minimum time (in ns) between two events */
202 } MonitorQAPIEventConf;
203
204 struct Monitor {
205 CharBackend chr;
206 int reset_seen;
207 int flags;
208 int suspend_cnt; /* Needs to be accessed atomically */
209 bool skip_flush;
210 bool use_io_thread;
211
212 /*
213 * State used only in the thread "owning" the monitor.
214 * If @use_io_thread, this is @mon_iothread.
215 * Else, it's the main thread.
216 * These members can be safely accessed without locks.
217 */
218 ReadLineState *rs;
219
220 MonitorQMP qmp;
221 gchar *mon_cpu_path;
222 BlockCompletionFunc *password_completion_cb;
223 void *password_opaque;
224 mon_cmd_t *cmd_table;
225 QTAILQ_ENTRY(Monitor) entry;
226
227 /*
228 * The per-monitor lock. We can't access guest memory when holding
229 * the lock.
230 */
231 QemuMutex mon_lock;
232
233 /*
234 * Members that are protected by the per-monitor lock
235 */
236 QLIST_HEAD(, mon_fd_t) fds;
237 QString *outbuf;
238 guint out_watch;
239 /* Read under either BQL or mon_lock, written with BQL+mon_lock. */
240 int mux_out;
241 };
242
243 /* Shared monitor I/O thread */
244 IOThread *mon_iothread;
245
246 /* Bottom half to dispatch the requests received from I/O thread */
247 QEMUBH *qmp_dispatcher_bh;
248
249 struct QMPRequest {
250 /* Owner of the request */
251 Monitor *mon;
252 /* "id" field of the request */
253 QObject *id;
254 /*
255 * Request object to be handled or Error to be reported
256 * (exactly one of them is non-null)
257 */
258 QObject *req;
259 Error *err;
260 };
261 typedef struct QMPRequest QMPRequest;
262
263 /* QMP checker flags */
264 #define QMP_ACCEPT_UNKNOWNS 1
265
266 /* Protects mon_list, monitor_qapi_event_state, monitor_destroyed. */
267 static QemuMutex monitor_lock;
268 static GHashTable *monitor_qapi_event_state;
269 static QTAILQ_HEAD(mon_list, Monitor) mon_list;
270 static bool monitor_destroyed;
271
272 /* Protects mon_fdsets */
273 static QemuMutex mon_fdsets_lock;
274 static QLIST_HEAD(mon_fdsets, MonFdset) mon_fdsets;
275
276 static int mon_refcount;
277
278 static mon_cmd_t mon_cmds[];
279 static mon_cmd_t info_cmds[];
280
281 QmpCommandList qmp_commands, qmp_cap_negotiation_commands;
282
283 __thread Monitor *cur_mon;
284
285 static void monitor_command_cb(void *opaque, const char *cmdline,
286 void *readline_opaque);
287
288 /**
289 * Is @mon a QMP monitor?
290 */
291 static inline bool monitor_is_qmp(const Monitor *mon)
292 {
293 return (mon->flags & MONITOR_USE_CONTROL);
294 }
295
296 /**
297 * Is @mon is using readline?
298 * Note: not all HMP monitors use readline, e.g., gdbserver has a
299 * non-interactive HMP monitor, so readline is not used there.
300 */
301 static inline bool monitor_uses_readline(const Monitor *mon)
302 {
303 return mon->flags & MONITOR_USE_READLINE;
304 }
305
306 static inline bool monitor_is_hmp_non_interactive(const Monitor *mon)
307 {
308 return !monitor_is_qmp(mon) && !monitor_uses_readline(mon);
309 }
310
311 /*
312 * Return the clock to use for recording an event's time.
313 * It's QEMU_CLOCK_REALTIME, except for qtests it's
314 * QEMU_CLOCK_VIRTUAL, to support testing rate limits.
315 * Beware: result is invalid before configure_accelerator().
316 */
317 static inline QEMUClockType monitor_get_event_clock(void)
318 {
319 return qtest_enabled() ? QEMU_CLOCK_VIRTUAL : QEMU_CLOCK_REALTIME;
320 }
321
322 /**
323 * Is the current monitor, if any, a QMP monitor?
324 */
325 bool monitor_cur_is_qmp(void)
326 {
327 return cur_mon && monitor_is_qmp(cur_mon);
328 }
329
330 void monitor_read_command(Monitor *mon, int show_prompt)
331 {
332 if (!mon->rs)
333 return;
334
335 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
336 if (show_prompt)
337 readline_show_prompt(mon->rs);
338 }
339
340 int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
341 void *opaque)
342 {
343 if (mon->rs) {
344 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
345 /* prompt is printed on return from the command handler */
346 return 0;
347 } else {
348 monitor_printf(mon, "terminal does not support password prompting\n");
349 return -ENOTTY;
350 }
351 }
352
353 static void qmp_request_free(QMPRequest *req)
354 {
355 qobject_unref(req->id);
356 qobject_unref(req->req);
357 error_free(req->err);
358 g_free(req);
359 }
360
361 /* Caller must hold mon->qmp.qmp_queue_lock */
362 static void monitor_qmp_cleanup_req_queue_locked(Monitor *mon)
363 {
364 while (!g_queue_is_empty(mon->qmp.qmp_requests)) {
365 qmp_request_free(g_queue_pop_head(mon->qmp.qmp_requests));
366 }
367 }
368
369 static void monitor_qmp_cleanup_queues(Monitor *mon)
370 {
371 qemu_mutex_lock(&mon->qmp.qmp_queue_lock);
372 monitor_qmp_cleanup_req_queue_locked(mon);
373 qemu_mutex_unlock(&mon->qmp.qmp_queue_lock);
374 }
375
376
377 static void monitor_flush_locked(Monitor *mon);
378
379 static gboolean monitor_unblocked(GIOChannel *chan, GIOCondition cond,
380 void *opaque)
381 {
382 Monitor *mon = opaque;
383
384 qemu_mutex_lock(&mon->mon_lock);
385 mon->out_watch = 0;
386 monitor_flush_locked(mon);
387 qemu_mutex_unlock(&mon->mon_lock);
388 return FALSE;
389 }
390
391 /* Caller must hold mon->mon_lock */
392 static void monitor_flush_locked(Monitor *mon)
393 {
394 int rc;
395 size_t len;
396 const char *buf;
397
398 if (mon->skip_flush) {
399 return;
400 }
401
402 buf = qstring_get_str(mon->outbuf);
403 len = qstring_get_length(mon->outbuf);
404
405 if (len && !mon->mux_out) {
406 rc = qemu_chr_fe_write(&mon->chr, (const uint8_t *) buf, len);
407 if ((rc < 0 && errno != EAGAIN) || (rc == len)) {
408 /* all flushed or error */
409 qobject_unref(mon->outbuf);
410 mon->outbuf = qstring_new();
411 return;
412 }
413 if (rc > 0) {
414 /* partial write */
415 QString *tmp = qstring_from_str(buf + rc);
416 qobject_unref(mon->outbuf);
417 mon->outbuf = tmp;
418 }
419 if (mon->out_watch == 0) {
420 mon->out_watch =
421 qemu_chr_fe_add_watch(&mon->chr, G_IO_OUT | G_IO_HUP,
422 monitor_unblocked, mon);
423 }
424 }
425 }
426
427 void monitor_flush(Monitor *mon)
428 {
429 qemu_mutex_lock(&mon->mon_lock);
430 monitor_flush_locked(mon);
431 qemu_mutex_unlock(&mon->mon_lock);
432 }
433
434 /* flush at every end of line */
435 static void monitor_puts(Monitor *mon, const char *str)
436 {
437 char c;
438
439 qemu_mutex_lock(&mon->mon_lock);
440 for(;;) {
441 c = *str++;
442 if (c == '\0')
443 break;
444 if (c == '\n') {
445 qstring_append_chr(mon->outbuf, '\r');
446 }
447 qstring_append_chr(mon->outbuf, c);
448 if (c == '\n') {
449 monitor_flush_locked(mon);
450 }
451 }
452 qemu_mutex_unlock(&mon->mon_lock);
453 }
454
455 void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
456 {
457 char *buf;
458
459 if (!mon)
460 return;
461
462 if (monitor_is_qmp(mon)) {
463 return;
464 }
465
466 buf = g_strdup_vprintf(fmt, ap);
467 monitor_puts(mon, buf);
468 g_free(buf);
469 }
470
471 void monitor_printf(Monitor *mon, const char *fmt, ...)
472 {
473 va_list ap;
474 va_start(ap, fmt);
475 monitor_vprintf(mon, fmt, ap);
476 va_end(ap);
477 }
478
479 int monitor_fprintf(FILE *stream, const char *fmt, ...)
480 {
481 va_list ap;
482 va_start(ap, fmt);
483 monitor_vprintf((Monitor *)stream, fmt, ap);
484 va_end(ap);
485 return 0;
486 }
487
488 static void qmp_send_response(Monitor *mon, const QDict *rsp)
489 {
490 const QObject *data = QOBJECT(rsp);
491 QString *json;
492
493 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
494 qobject_to_json(data);
495 assert(json != NULL);
496
497 qstring_append_chr(json, '\n');
498 monitor_puts(mon, qstring_get_str(json));
499
500 qobject_unref(json);
501 }
502
503 static MonitorQAPIEventConf monitor_qapi_event_conf[QAPI_EVENT__MAX] = {
504 /* Limit guest-triggerable events to 1 per second */
505 [QAPI_EVENT_RTC_CHANGE] = { 1000 * SCALE_MS },
506 [QAPI_EVENT_WATCHDOG] = { 1000 * SCALE_MS },
507 [QAPI_EVENT_BALLOON_CHANGE] = { 1000 * SCALE_MS },
508 [QAPI_EVENT_QUORUM_REPORT_BAD] = { 1000 * SCALE_MS },
509 [QAPI_EVENT_QUORUM_FAILURE] = { 1000 * SCALE_MS },
510 [QAPI_EVENT_VSERPORT_CHANGE] = { 1000 * SCALE_MS },
511 };
512
513 /*
514 * Broadcast an event to all monitors.
515 * @qdict is the event object. Its member "event" must match @event.
516 * Caller must hold monitor_lock.
517 */
518 static void monitor_qapi_event_emit(QAPIEvent event, QDict *qdict)
519 {
520 Monitor *mon;
521
522 trace_monitor_protocol_event_emit(event, qdict);
523 QTAILQ_FOREACH(mon, &mon_list, entry) {
524 if (monitor_is_qmp(mon)
525 && mon->qmp.commands != &qmp_cap_negotiation_commands) {
526 qmp_send_response(mon, qdict);
527 }
528 }
529 }
530
531 static void monitor_qapi_event_handler(void *opaque);
532
533 /*
534 * Queue a new event for emission to Monitor instances,
535 * applying any rate limiting if required.
536 */
537 static void
538 monitor_qapi_event_queue_no_reenter(QAPIEvent event, QDict *qdict)
539 {
540 MonitorQAPIEventConf *evconf;
541 MonitorQAPIEventState *evstate;
542
543 assert(event < QAPI_EVENT__MAX);
544 evconf = &monitor_qapi_event_conf[event];
545 trace_monitor_protocol_event_queue(event, qdict, evconf->rate);
546
547 qemu_mutex_lock(&monitor_lock);
548
549 if (!evconf->rate) {
550 /* Unthrottled event */
551 monitor_qapi_event_emit(event, qdict);
552 } else {
553 QDict *data = qobject_to(QDict, qdict_get(qdict, "data"));
554 MonitorQAPIEventState key = { .event = event, .data = data };
555
556 evstate = g_hash_table_lookup(monitor_qapi_event_state, &key);
557 assert(!evstate || timer_pending(evstate->timer));
558
559 if (evstate) {
560 /*
561 * Timer is pending for (at least) evconf->rate ns after
562 * last send. Store event for sending when timer fires,
563 * replacing a prior stored event if any.
564 */
565 qobject_unref(evstate->qdict);
566 evstate->qdict = qobject_ref(qdict);
567 } else {
568 /*
569 * Last send was (at least) evconf->rate ns ago.
570 * Send immediately, and arm the timer to call
571 * monitor_qapi_event_handler() in evconf->rate ns. Any
572 * events arriving before then will be delayed until then.
573 */
574 int64_t now = qemu_clock_get_ns(monitor_get_event_clock());
575
576 monitor_qapi_event_emit(event, qdict);
577
578 evstate = g_new(MonitorQAPIEventState, 1);
579 evstate->event = event;
580 evstate->data = qobject_ref(data);
581 evstate->qdict = NULL;
582 evstate->timer = timer_new_ns(monitor_get_event_clock(),
583 monitor_qapi_event_handler,
584 evstate);
585 g_hash_table_add(monitor_qapi_event_state, evstate);
586 timer_mod_ns(evstate->timer, now + evconf->rate);
587 }
588 }
589
590 qemu_mutex_unlock(&monitor_lock);
591 }
592
593 static void
594 monitor_qapi_event_queue(QAPIEvent event, QDict *qdict)
595 {
596 /*
597 * monitor_qapi_event_queue_no_reenter() is not reentrant: it
598 * would deadlock on monitor_lock. Work around by queueing
599 * events in thread-local storage.
600 * TODO: remove this, make it re-enter safe.
601 */
602 typedef struct MonitorQapiEvent {
603 QAPIEvent event;
604 QDict *qdict;
605 QSIMPLEQ_ENTRY(MonitorQapiEvent) entry;
606 } MonitorQapiEvent;
607 static __thread QSIMPLEQ_HEAD(, MonitorQapiEvent) event_queue;
608 static __thread bool reentered;
609 MonitorQapiEvent *ev;
610
611 if (!reentered) {
612 QSIMPLEQ_INIT(&event_queue);
613 }
614
615 ev = g_new(MonitorQapiEvent, 1);
616 ev->qdict = qobject_ref(qdict);
617 ev->event = event;
618 QSIMPLEQ_INSERT_TAIL(&event_queue, ev, entry);
619 if (reentered) {
620 return;
621 }
622
623 reentered = true;
624
625 while ((ev = QSIMPLEQ_FIRST(&event_queue)) != NULL) {
626 QSIMPLEQ_REMOVE_HEAD(&event_queue, entry);
627 monitor_qapi_event_queue_no_reenter(ev->event, ev->qdict);
628 qobject_unref(ev->qdict);
629 g_free(ev);
630 }
631
632 reentered = false;
633 }
634
635 /*
636 * This function runs evconf->rate ns after sending a throttled
637 * event.
638 * If another event has since been stored, send it.
639 */
640 static void monitor_qapi_event_handler(void *opaque)
641 {
642 MonitorQAPIEventState *evstate = opaque;
643 MonitorQAPIEventConf *evconf = &monitor_qapi_event_conf[evstate->event];
644
645 trace_monitor_protocol_event_handler(evstate->event, evstate->qdict);
646 qemu_mutex_lock(&monitor_lock);
647
648 if (evstate->qdict) {
649 int64_t now = qemu_clock_get_ns(monitor_get_event_clock());
650
651 monitor_qapi_event_emit(evstate->event, evstate->qdict);
652 qobject_unref(evstate->qdict);
653 evstate->qdict = NULL;
654 timer_mod_ns(evstate->timer, now + evconf->rate);
655 } else {
656 g_hash_table_remove(monitor_qapi_event_state, evstate);
657 qobject_unref(evstate->data);
658 timer_free(evstate->timer);
659 g_free(evstate);
660 }
661
662 qemu_mutex_unlock(&monitor_lock);
663 }
664
665 static unsigned int qapi_event_throttle_hash(const void *key)
666 {
667 const MonitorQAPIEventState *evstate = key;
668 unsigned int hash = evstate->event * 255;
669
670 if (evstate->event == QAPI_EVENT_VSERPORT_CHANGE) {
671 hash += g_str_hash(qdict_get_str(evstate->data, "id"));
672 }
673
674 if (evstate->event == QAPI_EVENT_QUORUM_REPORT_BAD) {
675 hash += g_str_hash(qdict_get_str(evstate->data, "node-name"));
676 }
677
678 return hash;
679 }
680
681 static gboolean qapi_event_throttle_equal(const void *a, const void *b)
682 {
683 const MonitorQAPIEventState *eva = a;
684 const MonitorQAPIEventState *evb = b;
685
686 if (eva->event != evb->event) {
687 return FALSE;
688 }
689
690 if (eva->event == QAPI_EVENT_VSERPORT_CHANGE) {
691 return !strcmp(qdict_get_str(eva->data, "id"),
692 qdict_get_str(evb->data, "id"));
693 }
694
695 if (eva->event == QAPI_EVENT_QUORUM_REPORT_BAD) {
696 return !strcmp(qdict_get_str(eva->data, "node-name"),
697 qdict_get_str(evb->data, "node-name"));
698 }
699
700 return TRUE;
701 }
702
703 static void monitor_qapi_event_init(void)
704 {
705 monitor_qapi_event_state = g_hash_table_new(qapi_event_throttle_hash,
706 qapi_event_throttle_equal);
707 qmp_event_set_func_emit(monitor_qapi_event_queue);
708 }
709
710 static void handle_hmp_command(Monitor *mon, const char *cmdline);
711
712 static void monitor_iothread_init(void);
713
714 static void monitor_data_init(Monitor *mon, bool skip_flush,
715 bool use_io_thread)
716 {
717 if (use_io_thread && !mon_iothread) {
718 monitor_iothread_init();
719 }
720 memset(mon, 0, sizeof(Monitor));
721 qemu_mutex_init(&mon->mon_lock);
722 qemu_mutex_init(&mon->qmp.qmp_queue_lock);
723 mon->outbuf = qstring_new();
724 /* Use *mon_cmds by default. */
725 mon->cmd_table = mon_cmds;
726 mon->skip_flush = skip_flush;
727 mon->use_io_thread = use_io_thread;
728 mon->qmp.qmp_requests = g_queue_new();
729 }
730
731 static void monitor_data_destroy(Monitor *mon)
732 {
733 g_free(mon->mon_cpu_path);
734 qemu_chr_fe_deinit(&mon->chr, false);
735 if (monitor_is_qmp(mon)) {
736 json_message_parser_destroy(&mon->qmp.parser);
737 }
738 readline_free(mon->rs);
739 qobject_unref(mon->outbuf);
740 qemu_mutex_destroy(&mon->mon_lock);
741 qemu_mutex_destroy(&mon->qmp.qmp_queue_lock);
742 monitor_qmp_cleanup_req_queue_locked(mon);
743 g_queue_free(mon->qmp.qmp_requests);
744 }
745
746 char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index,
747 int64_t cpu_index, Error **errp)
748 {
749 char *output = NULL;
750 Monitor *old_mon, hmp;
751
752 monitor_data_init(&hmp, true, false);
753
754 old_mon = cur_mon;
755 cur_mon = &hmp;
756
757 if (has_cpu_index) {
758 int ret = monitor_set_cpu(cpu_index);
759 if (ret < 0) {
760 cur_mon = old_mon;
761 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
762 "a CPU number");
763 goto out;
764 }
765 }
766
767 handle_hmp_command(&hmp, command_line);
768 cur_mon = old_mon;
769
770 qemu_mutex_lock(&hmp.mon_lock);
771 if (qstring_get_length(hmp.outbuf) > 0) {
772 output = g_strdup(qstring_get_str(hmp.outbuf));
773 } else {
774 output = g_strdup("");
775 }
776 qemu_mutex_unlock(&hmp.mon_lock);
777
778 out:
779 monitor_data_destroy(&hmp);
780 return output;
781 }
782
783 static int compare_cmd(const char *name, const char *list)
784 {
785 const char *p, *pstart;
786 int len;
787 len = strlen(name);
788 p = list;
789 for(;;) {
790 pstart = p;
791 p = qemu_strchrnul(p, '|');
792 if ((p - pstart) == len && !memcmp(pstart, name, len))
793 return 1;
794 if (*p == '\0')
795 break;
796 p++;
797 }
798 return 0;
799 }
800
801 static int get_str(char *buf, int buf_size, const char **pp)
802 {
803 const char *p;
804 char *q;
805 int c;
806
807 q = buf;
808 p = *pp;
809 while (qemu_isspace(*p)) {
810 p++;
811 }
812 if (*p == '\0') {
813 fail:
814 *q = '\0';
815 *pp = p;
816 return -1;
817 }
818 if (*p == '\"') {
819 p++;
820 while (*p != '\0' && *p != '\"') {
821 if (*p == '\\') {
822 p++;
823 c = *p++;
824 switch (c) {
825 case 'n':
826 c = '\n';
827 break;
828 case 'r':
829 c = '\r';
830 break;
831 case '\\':
832 case '\'':
833 case '\"':
834 break;
835 default:
836 printf("unsupported escape code: '\\%c'\n", c);
837 goto fail;
838 }
839 if ((q - buf) < buf_size - 1) {
840 *q++ = c;
841 }
842 } else {
843 if ((q - buf) < buf_size - 1) {
844 *q++ = *p;
845 }
846 p++;
847 }
848 }
849 if (*p != '\"') {
850 printf("unterminated string\n");
851 goto fail;
852 }
853 p++;
854 } else {
855 while (*p != '\0' && !qemu_isspace(*p)) {
856 if ((q - buf) < buf_size - 1) {
857 *q++ = *p;
858 }
859 p++;
860 }
861 }
862 *q = '\0';
863 *pp = p;
864 return 0;
865 }
866
867 #define MAX_ARGS 16
868
869 static void free_cmdline_args(char **args, int nb_args)
870 {
871 int i;
872
873 assert(nb_args <= MAX_ARGS);
874
875 for (i = 0; i < nb_args; i++) {
876 g_free(args[i]);
877 }
878
879 }
880
881 /*
882 * Parse the command line to get valid args.
883 * @cmdline: command line to be parsed.
884 * @pnb_args: location to store the number of args, must NOT be NULL.
885 * @args: location to store the args, which should be freed by caller, must
886 * NOT be NULL.
887 *
888 * Returns 0 on success, negative on failure.
889 *
890 * NOTE: this parser is an approximate form of the real command parser. Number
891 * of args have a limit of MAX_ARGS. If cmdline contains more, it will
892 * return with failure.
893 */
894 static int parse_cmdline(const char *cmdline,
895 int *pnb_args, char **args)
896 {
897 const char *p;
898 int nb_args, ret;
899 char buf[1024];
900
901 p = cmdline;
902 nb_args = 0;
903 for (;;) {
904 while (qemu_isspace(*p)) {
905 p++;
906 }
907 if (*p == '\0') {
908 break;
909 }
910 if (nb_args >= MAX_ARGS) {
911 goto fail;
912 }
913 ret = get_str(buf, sizeof(buf), &p);
914 if (ret < 0) {
915 goto fail;
916 }
917 args[nb_args] = g_strdup(buf);
918 nb_args++;
919 }
920 *pnb_args = nb_args;
921 return 0;
922
923 fail:
924 free_cmdline_args(args, nb_args);
925 return -1;
926 }
927
928 /*
929 * Can command @cmd be executed in preconfig state?
930 */
931 static bool cmd_can_preconfig(const mon_cmd_t *cmd)
932 {
933 if (!cmd->flags) {
934 return false;
935 }
936
937 return strchr(cmd->flags, 'p');
938 }
939
940 static void help_cmd_dump_one(Monitor *mon,
941 const mon_cmd_t *cmd,
942 char **prefix_args,
943 int prefix_args_nb)
944 {
945 int i;
946
947 if (runstate_check(RUN_STATE_PRECONFIG) && !cmd_can_preconfig(cmd)) {
948 return;
949 }
950
951 for (i = 0; i < prefix_args_nb; i++) {
952 monitor_printf(mon, "%s ", prefix_args[i]);
953 }
954 monitor_printf(mon, "%s %s -- %s\n", cmd->name, cmd->params, cmd->help);
955 }
956
957 /* @args[@arg_index] is the valid command need to find in @cmds */
958 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
959 char **args, int nb_args, int arg_index)
960 {
961 const mon_cmd_t *cmd;
962 size_t i;
963
964 /* No valid arg need to compare with, dump all in *cmds */
965 if (arg_index >= nb_args) {
966 for (cmd = cmds; cmd->name != NULL; cmd++) {
967 help_cmd_dump_one(mon, cmd, args, arg_index);
968 }
969 return;
970 }
971
972 /* Find one entry to dump */
973 for (cmd = cmds; cmd->name != NULL; cmd++) {
974 if (compare_cmd(args[arg_index], cmd->name) &&
975 ((!runstate_check(RUN_STATE_PRECONFIG) ||
976 cmd_can_preconfig(cmd)))) {
977 if (cmd->sub_table) {
978 /* continue with next arg */
979 help_cmd_dump(mon, cmd->sub_table,
980 args, nb_args, arg_index + 1);
981 } else {
982 help_cmd_dump_one(mon, cmd, args, arg_index);
983 }
984 return;
985 }
986 }
987
988 /* Command not found */
989 monitor_printf(mon, "unknown command: '");
990 for (i = 0; i <= arg_index; i++) {
991 monitor_printf(mon, "%s%s", args[i], i == arg_index ? "'\n" : " ");
992 }
993 }
994
995 static void help_cmd(Monitor *mon, const char *name)
996 {
997 char *args[MAX_ARGS];
998 int nb_args = 0;
999
1000 /* 1. parse user input */
1001 if (name) {
1002 /* special case for log, directly dump and return */
1003 if (!strcmp(name, "log")) {
1004 const QEMULogItem *item;
1005 monitor_printf(mon, "Log items (comma separated):\n");
1006 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
1007 for (item = qemu_log_items; item->mask != 0; item++) {
1008 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
1009 }
1010 return;
1011 }
1012
1013 if (parse_cmdline(name, &nb_args, args) < 0) {
1014 return;
1015 }
1016 }
1017
1018 /* 2. dump the contents according to parsed args */
1019 help_cmd_dump(mon, mon->cmd_table, args, nb_args, 0);
1020
1021 free_cmdline_args(args, nb_args);
1022 }
1023
1024 static void do_help_cmd(Monitor *mon, const QDict *qdict)
1025 {
1026 help_cmd(mon, qdict_get_try_str(qdict, "name"));
1027 }
1028
1029 static void hmp_trace_event(Monitor *mon, const QDict *qdict)
1030 {
1031 const char *tp_name = qdict_get_str(qdict, "name");
1032 bool new_state = qdict_get_bool(qdict, "option");
1033 bool has_vcpu = qdict_haskey(qdict, "vcpu");
1034 int vcpu = qdict_get_try_int(qdict, "vcpu", 0);
1035 Error *local_err = NULL;
1036
1037 if (vcpu < 0) {
1038 monitor_printf(mon, "argument vcpu must be positive");
1039 return;
1040 }
1041
1042 qmp_trace_event_set_state(tp_name, new_state, true, true, has_vcpu, vcpu, &local_err);
1043 if (local_err) {
1044 error_report_err(local_err);
1045 }
1046 }
1047
1048 #ifdef CONFIG_TRACE_SIMPLE
1049 static void hmp_trace_file(Monitor *mon, const QDict *qdict)
1050 {
1051 const char *op = qdict_get_try_str(qdict, "op");
1052 const char *arg = qdict_get_try_str(qdict, "arg");
1053
1054 if (!op) {
1055 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
1056 } else if (!strcmp(op, "on")) {
1057 st_set_trace_file_enabled(true);
1058 } else if (!strcmp(op, "off")) {
1059 st_set_trace_file_enabled(false);
1060 } else if (!strcmp(op, "flush")) {
1061 st_flush_trace_buffer();
1062 } else if (!strcmp(op, "set")) {
1063 if (arg) {
1064 st_set_trace_file(arg);
1065 }
1066 } else {
1067 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
1068 help_cmd(mon, "trace-file");
1069 }
1070 }
1071 #endif
1072
1073 static void hmp_info_help(Monitor *mon, const QDict *qdict)
1074 {
1075 help_cmd(mon, "info");
1076 }
1077
1078 static void query_commands_cb(QmpCommand *cmd, void *opaque)
1079 {
1080 CommandInfoList *info, **list = opaque;
1081
1082 if (!cmd->enabled) {
1083 return;
1084 }
1085
1086 info = g_malloc0(sizeof(*info));
1087 info->value = g_malloc0(sizeof(*info->value));
1088 info->value->name = g_strdup(cmd->name);
1089 info->next = *list;
1090 *list = info;
1091 }
1092
1093 CommandInfoList *qmp_query_commands(Error **errp)
1094 {
1095 CommandInfoList *list = NULL;
1096
1097 qmp_for_each_command(cur_mon->qmp.commands, query_commands_cb, &list);
1098
1099 return list;
1100 }
1101
1102 EventInfoList *qmp_query_events(Error **errp)
1103 {
1104 EventInfoList *info, *ev_list = NULL;
1105 QAPIEvent e;
1106
1107 for (e = 0 ; e < QAPI_EVENT__MAX ; e++) {
1108 const char *event_name = QAPIEvent_str(e);
1109 assert(event_name != NULL);
1110 info = g_malloc0(sizeof(*info));
1111 info->value = g_malloc0(sizeof(*info->value));
1112 info->value->name = g_strdup(event_name);
1113
1114 info->next = ev_list;
1115 ev_list = info;
1116 }
1117
1118 return ev_list;
1119 }
1120
1121 /*
1122 * Minor hack: generated marshalling suppressed for this command
1123 * ('gen': false in the schema) so we can parse the JSON string
1124 * directly into QObject instead of first parsing it with
1125 * visit_type_SchemaInfoList() into a SchemaInfoList, then marshal it
1126 * to QObject with generated output marshallers, every time. Instead,
1127 * we do it in test-qobject-input-visitor.c, just to make sure
1128 * qapi-gen.py's output actually conforms to the schema.
1129 */
1130 static void qmp_query_qmp_schema(QDict *qdict, QObject **ret_data,
1131 Error **errp)
1132 {
1133 *ret_data = qobject_from_qlit(&qmp_schema_qlit);
1134 }
1135
1136 /*
1137 * We used to define commands in qmp-commands.hx in addition to the
1138 * QAPI schema. This permitted defining some of them only in certain
1139 * configurations. query-commands has always reflected that (good,
1140 * because it lets QMP clients figure out what's actually available),
1141 * while query-qmp-schema never did (not so good). This function is a
1142 * hack to keep the configuration-specific commands defined exactly as
1143 * before, even though qmp-commands.hx is gone.
1144 *
1145 * FIXME Educate the QAPI schema on configuration-specific commands,
1146 * and drop this hack.
1147 */
1148 static void qmp_unregister_commands_hack(void)
1149 {
1150 #ifndef CONFIG_REPLICATION
1151 qmp_unregister_command(&qmp_commands, "xen-set-replication");
1152 qmp_unregister_command(&qmp_commands, "query-xen-replication-status");
1153 qmp_unregister_command(&qmp_commands, "xen-colo-do-checkpoint");
1154 #endif
1155 #ifndef TARGET_I386
1156 qmp_unregister_command(&qmp_commands, "rtc-reset-reinjection");
1157 qmp_unregister_command(&qmp_commands, "query-sev");
1158 qmp_unregister_command(&qmp_commands, "query-sev-launch-measure");
1159 qmp_unregister_command(&qmp_commands, "query-sev-capabilities");
1160 #endif
1161 #ifndef TARGET_S390X
1162 qmp_unregister_command(&qmp_commands, "dump-skeys");
1163 #endif
1164 #ifndef TARGET_ARM
1165 qmp_unregister_command(&qmp_commands, "query-gic-capabilities");
1166 #endif
1167 #if !defined(TARGET_S390X) && !defined(TARGET_I386)
1168 qmp_unregister_command(&qmp_commands, "query-cpu-model-expansion");
1169 #endif
1170 #if !defined(TARGET_S390X)
1171 qmp_unregister_command(&qmp_commands, "query-cpu-model-baseline");
1172 qmp_unregister_command(&qmp_commands, "query-cpu-model-comparison");
1173 #endif
1174 #if !defined(TARGET_PPC) && !defined(TARGET_ARM) && !defined(TARGET_I386) \
1175 && !defined(TARGET_S390X)
1176 qmp_unregister_command(&qmp_commands, "query-cpu-definitions");
1177 #endif
1178 }
1179
1180 static void monitor_init_qmp_commands(void)
1181 {
1182 /*
1183 * Two command lists:
1184 * - qmp_commands contains all QMP commands
1185 * - qmp_cap_negotiation_commands contains just
1186 * "qmp_capabilities", to enforce capability negotiation
1187 */
1188
1189 qmp_init_marshal(&qmp_commands);
1190
1191 qmp_register_command(&qmp_commands, "query-qmp-schema",
1192 qmp_query_qmp_schema, QCO_ALLOW_PRECONFIG);
1193 qmp_register_command(&qmp_commands, "device_add", qmp_device_add,
1194 QCO_NO_OPTIONS);
1195 qmp_register_command(&qmp_commands, "netdev_add", qmp_netdev_add,
1196 QCO_NO_OPTIONS);
1197
1198 qmp_unregister_commands_hack();
1199
1200 QTAILQ_INIT(&qmp_cap_negotiation_commands);
1201 qmp_register_command(&qmp_cap_negotiation_commands, "qmp_capabilities",
1202 qmp_marshal_qmp_capabilities, QCO_ALLOW_PRECONFIG);
1203 }
1204
1205 static bool qmp_oob_enabled(Monitor *mon)
1206 {
1207 return mon->qmp.capab[QMP_CAPABILITY_OOB];
1208 }
1209
1210 static void monitor_qmp_caps_reset(Monitor *mon)
1211 {
1212 memset(mon->qmp.capab_offered, 0, sizeof(mon->qmp.capab_offered));
1213 memset(mon->qmp.capab, 0, sizeof(mon->qmp.capab));
1214 mon->qmp.capab_offered[QMP_CAPABILITY_OOB] = mon->use_io_thread;
1215 }
1216
1217 /*
1218 * Accept QMP capabilities in @list for @mon.
1219 * On success, set mon->qmp.capab[], and return true.
1220 * On error, set @errp, and return false.
1221 */
1222 static bool qmp_caps_accept(Monitor *mon, QMPCapabilityList *list,
1223 Error **errp)
1224 {
1225 GString *unavailable = NULL;
1226 bool capab[QMP_CAPABILITY__MAX];
1227
1228 memset(capab, 0, sizeof(capab));
1229
1230 for (; list; list = list->next) {
1231 if (!mon->qmp.capab_offered[list->value]) {
1232 if (!unavailable) {
1233 unavailable = g_string_new(QMPCapability_str(list->value));
1234 } else {
1235 g_string_append_printf(unavailable, ", %s",
1236 QMPCapability_str(list->value));
1237 }
1238 }
1239 capab[list->value] = true;
1240 }
1241
1242 if (unavailable) {
1243 error_setg(errp, "Capability %s not available", unavailable->str);
1244 g_string_free(unavailable, true);
1245 return false;
1246 }
1247
1248 memcpy(mon->qmp.capab, capab, sizeof(capab));
1249 return true;
1250 }
1251
1252 void qmp_qmp_capabilities(bool has_enable, QMPCapabilityList *enable,
1253 Error **errp)
1254 {
1255 if (cur_mon->qmp.commands == &qmp_commands) {
1256 error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND,
1257 "Capabilities negotiation is already complete, command "
1258 "ignored");
1259 return;
1260 }
1261
1262 if (!qmp_caps_accept(cur_mon, enable, errp)) {
1263 return;
1264 }
1265
1266 cur_mon->qmp.commands = &qmp_commands;
1267 }
1268
1269 /* Set the current CPU defined by the user. Callers must hold BQL. */
1270 int monitor_set_cpu(int cpu_index)
1271 {
1272 CPUState *cpu;
1273
1274 cpu = qemu_get_cpu(cpu_index);
1275 if (cpu == NULL) {
1276 return -1;
1277 }
1278 g_free(cur_mon->mon_cpu_path);
1279 cur_mon->mon_cpu_path = object_get_canonical_path(OBJECT(cpu));
1280 return 0;
1281 }
1282
1283 /* Callers must hold BQL. */
1284 static CPUState *mon_get_cpu_sync(bool synchronize)
1285 {
1286 CPUState *cpu;
1287
1288 if (cur_mon->mon_cpu_path) {
1289 cpu = (CPUState *) object_resolve_path_type(cur_mon->mon_cpu_path,
1290 TYPE_CPU, NULL);
1291 if (!cpu) {
1292 g_free(cur_mon->mon_cpu_path);
1293 cur_mon->mon_cpu_path = NULL;
1294 }
1295 }
1296 if (!cur_mon->mon_cpu_path) {
1297 if (!first_cpu) {
1298 return NULL;
1299 }
1300 monitor_set_cpu(first_cpu->cpu_index);
1301 cpu = first_cpu;
1302 }
1303 if (synchronize) {
1304 cpu_synchronize_state(cpu);
1305 }
1306 return cpu;
1307 }
1308
1309 CPUState *mon_get_cpu(void)
1310 {
1311 return mon_get_cpu_sync(true);
1312 }
1313
1314 CPUArchState *mon_get_cpu_env(void)
1315 {
1316 CPUState *cs = mon_get_cpu();
1317
1318 return cs ? cs->env_ptr : NULL;
1319 }
1320
1321 int monitor_get_cpu_index(void)
1322 {
1323 CPUState *cs = mon_get_cpu_sync(false);
1324
1325 return cs ? cs->cpu_index : UNASSIGNED_CPU_INDEX;
1326 }
1327
1328 static void hmp_info_registers(Monitor *mon, const QDict *qdict)
1329 {
1330 bool all_cpus = qdict_get_try_bool(qdict, "cpustate_all", false);
1331 CPUState *cs;
1332
1333 if (all_cpus) {
1334 CPU_FOREACH(cs) {
1335 monitor_printf(mon, "\nCPU#%d\n", cs->cpu_index);
1336 cpu_dump_state(cs, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU);
1337 }
1338 } else {
1339 cs = mon_get_cpu();
1340
1341 if (!cs) {
1342 monitor_printf(mon, "No CPU available\n");
1343 return;
1344 }
1345
1346 cpu_dump_state(cs, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU);
1347 }
1348 }
1349
1350 #ifdef CONFIG_TCG
1351 static void hmp_info_jit(Monitor *mon, const QDict *qdict)
1352 {
1353 if (!tcg_enabled()) {
1354 error_report("JIT information is only available with accel=tcg");
1355 return;
1356 }
1357
1358 dump_exec_info((FILE *)mon, monitor_fprintf);
1359 dump_drift_info((FILE *)mon, monitor_fprintf);
1360 }
1361
1362 static void hmp_info_opcount(Monitor *mon, const QDict *qdict)
1363 {
1364 dump_opcount_info((FILE *)mon, monitor_fprintf);
1365 }
1366 #endif
1367
1368 static void hmp_info_sync_profile(Monitor *mon, const QDict *qdict)
1369 {
1370 int64_t max = qdict_get_try_int(qdict, "max", 10);
1371 bool mean = qdict_get_try_bool(qdict, "mean", false);
1372 bool coalesce = !qdict_get_try_bool(qdict, "no_coalesce", false);
1373 enum QSPSortBy sort_by;
1374
1375 sort_by = mean ? QSP_SORT_BY_AVG_WAIT_TIME : QSP_SORT_BY_TOTAL_WAIT_TIME;
1376 qsp_report((FILE *)mon, monitor_fprintf, max, sort_by, coalesce);
1377 }
1378
1379 static void hmp_info_history(Monitor *mon, const QDict *qdict)
1380 {
1381 int i;
1382 const char *str;
1383
1384 if (!mon->rs)
1385 return;
1386 i = 0;
1387 for(;;) {
1388 str = readline_get_history(mon->rs, i);
1389 if (!str)
1390 break;
1391 monitor_printf(mon, "%d: '%s'\n", i, str);
1392 i++;
1393 }
1394 }
1395
1396 static void hmp_info_cpustats(Monitor *mon, const QDict *qdict)
1397 {
1398 CPUState *cs = mon_get_cpu();
1399
1400 if (!cs) {
1401 monitor_printf(mon, "No CPU available\n");
1402 return;
1403 }
1404 cpu_dump_statistics(cs, (FILE *)mon, &monitor_fprintf, 0);
1405 }
1406
1407 static void hmp_info_trace_events(Monitor *mon, const QDict *qdict)
1408 {
1409 const char *name = qdict_get_try_str(qdict, "name");
1410 bool has_vcpu = qdict_haskey(qdict, "vcpu");
1411 int vcpu = qdict_get_try_int(qdict, "vcpu", 0);
1412 TraceEventInfoList *events;
1413 TraceEventInfoList *elem;
1414 Error *local_err = NULL;
1415
1416 if (name == NULL) {
1417 name = "*";
1418 }
1419 if (vcpu < 0) {
1420 monitor_printf(mon, "argument vcpu must be positive");
1421 return;
1422 }
1423
1424 events = qmp_trace_event_get_state(name, has_vcpu, vcpu, &local_err);
1425 if (local_err) {
1426 error_report_err(local_err);
1427 return;
1428 }
1429
1430 for (elem = events; elem != NULL; elem = elem->next) {
1431 monitor_printf(mon, "%s : state %u\n",
1432 elem->value->name,
1433 elem->value->state == TRACE_EVENT_STATE_ENABLED ? 1 : 0);
1434 }
1435 qapi_free_TraceEventInfoList(events);
1436 }
1437
1438 void qmp_client_migrate_info(const char *protocol, const char *hostname,
1439 bool has_port, int64_t port,
1440 bool has_tls_port, int64_t tls_port,
1441 bool has_cert_subject, const char *cert_subject,
1442 Error **errp)
1443 {
1444 if (strcmp(protocol, "spice") == 0) {
1445 if (!qemu_using_spice(errp)) {
1446 return;
1447 }
1448
1449 if (!has_port && !has_tls_port) {
1450 error_setg(errp, QERR_MISSING_PARAMETER, "port/tls-port");
1451 return;
1452 }
1453
1454 if (qemu_spice_migrate_info(hostname,
1455 has_port ? port : -1,
1456 has_tls_port ? tls_port : -1,
1457 cert_subject)) {
1458 error_setg(errp, QERR_UNDEFINED_ERROR);
1459 return;
1460 }
1461 return;
1462 }
1463
1464 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "protocol", "spice");
1465 }
1466
1467 static void hmp_logfile(Monitor *mon, const QDict *qdict)
1468 {
1469 Error *err = NULL;
1470
1471 qemu_set_log_filename(qdict_get_str(qdict, "filename"), &err);
1472 if (err) {
1473 error_report_err(err);
1474 }
1475 }
1476
1477 static void hmp_log(Monitor *mon, const QDict *qdict)
1478 {
1479 int mask;
1480 const char *items = qdict_get_str(qdict, "items");
1481
1482 if (!strcmp(items, "none")) {
1483 mask = 0;
1484 } else {
1485 mask = qemu_str_to_log_mask(items);
1486 if (!mask) {
1487 help_cmd(mon, "log");
1488 return;
1489 }
1490 }
1491 qemu_set_log(mask);
1492 }
1493
1494 static void hmp_singlestep(Monitor *mon, const QDict *qdict)
1495 {
1496 const char *option = qdict_get_try_str(qdict, "option");
1497 if (!option || !strcmp(option, "on")) {
1498 singlestep = 1;
1499 } else if (!strcmp(option, "off")) {
1500 singlestep = 0;
1501 } else {
1502 monitor_printf(mon, "unexpected option %s\n", option);
1503 }
1504 }
1505
1506 static void hmp_gdbserver(Monitor *mon, const QDict *qdict)
1507 {
1508 const char *device = qdict_get_try_str(qdict, "device");
1509 if (!device)
1510 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1511 if (gdbserver_start(device) < 0) {
1512 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1513 device);
1514 } else if (strcmp(device, "none") == 0) {
1515 monitor_printf(mon, "Disabled gdbserver\n");
1516 } else {
1517 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1518 device);
1519 }
1520 }
1521
1522 static void hmp_watchdog_action(Monitor *mon, const QDict *qdict)
1523 {
1524 const char *action = qdict_get_str(qdict, "action");
1525 if (select_watchdog_action(action) == -1) {
1526 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1527 }
1528 }
1529
1530 static void monitor_printc(Monitor *mon, int c)
1531 {
1532 monitor_printf(mon, "'");
1533 switch(c) {
1534 case '\'':
1535 monitor_printf(mon, "\\'");
1536 break;
1537 case '\\':
1538 monitor_printf(mon, "\\\\");
1539 break;
1540 case '\n':
1541 monitor_printf(mon, "\\n");
1542 break;
1543 case '\r':
1544 monitor_printf(mon, "\\r");
1545 break;
1546 default:
1547 if (c >= 32 && c <= 126) {
1548 monitor_printf(mon, "%c", c);
1549 } else {
1550 monitor_printf(mon, "\\x%02x", c);
1551 }
1552 break;
1553 }
1554 monitor_printf(mon, "'");
1555 }
1556
1557 static void memory_dump(Monitor *mon, int count, int format, int wsize,
1558 hwaddr addr, int is_physical)
1559 {
1560 int l, line_size, i, max_digits, len;
1561 uint8_t buf[16];
1562 uint64_t v;
1563 CPUState *cs = mon_get_cpu();
1564
1565 if (!cs && (format == 'i' || !is_physical)) {
1566 monitor_printf(mon, "Can not dump without CPU\n");
1567 return;
1568 }
1569
1570 if (format == 'i') {
1571 monitor_disas(mon, cs, addr, count, is_physical);
1572 return;
1573 }
1574
1575 len = wsize * count;
1576 if (wsize == 1)
1577 line_size = 8;
1578 else
1579 line_size = 16;
1580 max_digits = 0;
1581
1582 switch(format) {
1583 case 'o':
1584 max_digits = DIV_ROUND_UP(wsize * 8, 3);
1585 break;
1586 default:
1587 case 'x':
1588 max_digits = (wsize * 8) / 4;
1589 break;
1590 case 'u':
1591 case 'd':
1592 max_digits = DIV_ROUND_UP(wsize * 8 * 10, 33);
1593 break;
1594 case 'c':
1595 wsize = 1;
1596 break;
1597 }
1598
1599 while (len > 0) {
1600 if (is_physical)
1601 monitor_printf(mon, TARGET_FMT_plx ":", addr);
1602 else
1603 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
1604 l = len;
1605 if (l > line_size)
1606 l = line_size;
1607 if (is_physical) {
1608 AddressSpace *as = cs ? cs->as : &address_space_memory;
1609 MemTxResult r = address_space_read(as, addr,
1610 MEMTXATTRS_UNSPECIFIED, buf, l);
1611 if (r != MEMTX_OK) {
1612 monitor_printf(mon, " Cannot access memory\n");
1613 break;
1614 }
1615 } else {
1616 if (cpu_memory_rw_debug(cs, addr, buf, l, 0) < 0) {
1617 monitor_printf(mon, " Cannot access memory\n");
1618 break;
1619 }
1620 }
1621 i = 0;
1622 while (i < l) {
1623 switch(wsize) {
1624 default:
1625 case 1:
1626 v = ldub_p(buf + i);
1627 break;
1628 case 2:
1629 v = lduw_p(buf + i);
1630 break;
1631 case 4:
1632 v = (uint32_t)ldl_p(buf + i);
1633 break;
1634 case 8:
1635 v = ldq_p(buf + i);
1636 break;
1637 }
1638 monitor_printf(mon, " ");
1639 switch(format) {
1640 case 'o':
1641 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
1642 break;
1643 case 'x':
1644 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
1645 break;
1646 case 'u':
1647 monitor_printf(mon, "%*" PRIu64, max_digits, v);
1648 break;
1649 case 'd':
1650 monitor_printf(mon, "%*" PRId64, max_digits, v);
1651 break;
1652 case 'c':
1653 monitor_printc(mon, v);
1654 break;
1655 }
1656 i += wsize;
1657 }
1658 monitor_printf(mon, "\n");
1659 addr += l;
1660 len -= l;
1661 }
1662 }
1663
1664 static void hmp_memory_dump(Monitor *mon, const QDict *qdict)
1665 {
1666 int count = qdict_get_int(qdict, "count");
1667 int format = qdict_get_int(qdict, "format");
1668 int size = qdict_get_int(qdict, "size");
1669 target_long addr = qdict_get_int(qdict, "addr");
1670
1671 memory_dump(mon, count, format, size, addr, 0);
1672 }
1673
1674 static void hmp_physical_memory_dump(Monitor *mon, const QDict *qdict)
1675 {
1676 int count = qdict_get_int(qdict, "count");
1677 int format = qdict_get_int(qdict, "format");
1678 int size = qdict_get_int(qdict, "size");
1679 hwaddr addr = qdict_get_int(qdict, "addr");
1680
1681 memory_dump(mon, count, format, size, addr, 1);
1682 }
1683
1684 static void *gpa2hva(MemoryRegion **p_mr, hwaddr addr, Error **errp)
1685 {
1686 MemoryRegionSection mrs = memory_region_find(get_system_memory(),
1687 addr, 1);
1688
1689 if (!mrs.mr) {
1690 error_setg(errp, "No memory is mapped at address 0x%" HWADDR_PRIx, addr);
1691 return NULL;
1692 }
1693
1694 if (!memory_region_is_ram(mrs.mr) && !memory_region_is_romd(mrs.mr)) {
1695 error_setg(errp, "Memory at address 0x%" HWADDR_PRIx "is not RAM", addr);
1696 memory_region_unref(mrs.mr);
1697 return NULL;
1698 }
1699
1700 *p_mr = mrs.mr;
1701 return qemu_map_ram_ptr(mrs.mr->ram_block, mrs.offset_within_region);
1702 }
1703
1704 static void hmp_gpa2hva(Monitor *mon, const QDict *qdict)
1705 {
1706 hwaddr addr = qdict_get_int(qdict, "addr");
1707 Error *local_err = NULL;
1708 MemoryRegion *mr = NULL;
1709 void *ptr;
1710
1711 ptr = gpa2hva(&mr, addr, &local_err);
1712 if (local_err) {
1713 error_report_err(local_err);
1714 return;
1715 }
1716
1717 monitor_printf(mon, "Host virtual address for 0x%" HWADDR_PRIx
1718 " (%s) is %p\n",
1719 addr, mr->name, ptr);
1720
1721 memory_region_unref(mr);
1722 }
1723
1724 #ifdef CONFIG_LINUX
1725 static uint64_t vtop(void *ptr, Error **errp)
1726 {
1727 uint64_t pinfo;
1728 uint64_t ret = -1;
1729 uintptr_t addr = (uintptr_t) ptr;
1730 uintptr_t pagesize = getpagesize();
1731 off_t offset = addr / pagesize * sizeof(pinfo);
1732 int fd;
1733
1734 fd = open("/proc/self/pagemap", O_RDONLY);
1735 if (fd == -1) {
1736 error_setg_errno(errp, errno, "Cannot open /proc/self/pagemap");
1737 return -1;
1738 }
1739
1740 /* Force copy-on-write if necessary. */
1741 atomic_add((uint8_t *)ptr, 0);
1742
1743 if (pread(fd, &pinfo, sizeof(pinfo), offset) != sizeof(pinfo)) {
1744 error_setg_errno(errp, errno, "Cannot read pagemap");
1745 goto out;
1746 }
1747 if ((pinfo & (1ull << 63)) == 0) {
1748 error_setg(errp, "Page not present");
1749 goto out;
1750 }
1751 ret = ((pinfo & 0x007fffffffffffffull) * pagesize) | (addr & (pagesize - 1));
1752
1753 out:
1754 close(fd);
1755 return ret;
1756 }
1757
1758 static void hmp_gpa2hpa(Monitor *mon, const QDict *qdict)
1759 {
1760 hwaddr addr = qdict_get_int(qdict, "addr");
1761 Error *local_err = NULL;
1762 MemoryRegion *mr = NULL;
1763 void *ptr;
1764 uint64_t physaddr;
1765
1766 ptr = gpa2hva(&mr, addr, &local_err);
1767 if (local_err) {
1768 error_report_err(local_err);
1769 return;
1770 }
1771
1772 physaddr = vtop(ptr, &local_err);
1773 if (local_err) {
1774 error_report_err(local_err);
1775 } else {
1776 monitor_printf(mon, "Host physical address for 0x%" HWADDR_PRIx
1777 " (%s) is 0x%" PRIx64 "\n",
1778 addr, mr->name, (uint64_t) physaddr);
1779 }
1780
1781 memory_region_unref(mr);
1782 }
1783 #endif
1784
1785 static void do_print(Monitor *mon, const QDict *qdict)
1786 {
1787 int format = qdict_get_int(qdict, "format");
1788 hwaddr val = qdict_get_int(qdict, "val");
1789
1790 switch(format) {
1791 case 'o':
1792 monitor_printf(mon, "%#" HWADDR_PRIo, val);
1793 break;
1794 case 'x':
1795 monitor_printf(mon, "%#" HWADDR_PRIx, val);
1796 break;
1797 case 'u':
1798 monitor_printf(mon, "%" HWADDR_PRIu, val);
1799 break;
1800 default:
1801 case 'd':
1802 monitor_printf(mon, "%" HWADDR_PRId, val);
1803 break;
1804 case 'c':
1805 monitor_printc(mon, val);
1806 break;
1807 }
1808 monitor_printf(mon, "\n");
1809 }
1810
1811 static void hmp_sum(Monitor *mon, const QDict *qdict)
1812 {
1813 uint32_t addr;
1814 uint16_t sum;
1815 uint32_t start = qdict_get_int(qdict, "start");
1816 uint32_t size = qdict_get_int(qdict, "size");
1817
1818 sum = 0;
1819 for(addr = start; addr < (start + size); addr++) {
1820 uint8_t val = address_space_ldub(&address_space_memory, addr,
1821 MEMTXATTRS_UNSPECIFIED, NULL);
1822 /* BSD sum algorithm ('sum' Unix command) */
1823 sum = (sum >> 1) | (sum << 15);
1824 sum += val;
1825 }
1826 monitor_printf(mon, "%05d\n", sum);
1827 }
1828
1829 static int mouse_button_state;
1830
1831 static void hmp_mouse_move(Monitor *mon, const QDict *qdict)
1832 {
1833 int dx, dy, dz, button;
1834 const char *dx_str = qdict_get_str(qdict, "dx_str");
1835 const char *dy_str = qdict_get_str(qdict, "dy_str");
1836 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1837
1838 dx = strtol(dx_str, NULL, 0);
1839 dy = strtol(dy_str, NULL, 0);
1840 qemu_input_queue_rel(NULL, INPUT_AXIS_X, dx);
1841 qemu_input_queue_rel(NULL, INPUT_AXIS_Y, dy);
1842
1843 if (dz_str) {
1844 dz = strtol(dz_str, NULL, 0);
1845 if (dz != 0) {
1846 button = (dz > 0) ? INPUT_BUTTON_WHEEL_UP : INPUT_BUTTON_WHEEL_DOWN;
1847 qemu_input_queue_btn(NULL, button, true);
1848 qemu_input_event_sync();
1849 qemu_input_queue_btn(NULL, button, false);
1850 }
1851 }
1852 qemu_input_event_sync();
1853 }
1854
1855 static void hmp_mouse_button(Monitor *mon, const QDict *qdict)
1856 {
1857 static uint32_t bmap[INPUT_BUTTON__MAX] = {
1858 [INPUT_BUTTON_LEFT] = MOUSE_EVENT_LBUTTON,
1859 [INPUT_BUTTON_MIDDLE] = MOUSE_EVENT_MBUTTON,
1860 [INPUT_BUTTON_RIGHT] = MOUSE_EVENT_RBUTTON,
1861 };
1862 int button_state = qdict_get_int(qdict, "button_state");
1863
1864 if (mouse_button_state == button_state) {
1865 return;
1866 }
1867 qemu_input_update_buttons(NULL, bmap, mouse_button_state, button_state);
1868 qemu_input_event_sync();
1869 mouse_button_state = button_state;
1870 }
1871
1872 static void hmp_ioport_read(Monitor *mon, const QDict *qdict)
1873 {
1874 int size = qdict_get_int(qdict, "size");
1875 int addr = qdict_get_int(qdict, "addr");
1876 int has_index = qdict_haskey(qdict, "index");
1877 uint32_t val;
1878 int suffix;
1879
1880 if (has_index) {
1881 int index = qdict_get_int(qdict, "index");
1882 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
1883 addr++;
1884 }
1885 addr &= 0xffff;
1886
1887 switch(size) {
1888 default:
1889 case 1:
1890 val = cpu_inb(addr);
1891 suffix = 'b';
1892 break;
1893 case 2:
1894 val = cpu_inw(addr);
1895 suffix = 'w';
1896 break;
1897 case 4:
1898 val = cpu_inl(addr);
1899 suffix = 'l';
1900 break;
1901 }
1902 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1903 suffix, addr, size * 2, val);
1904 }
1905
1906 static void hmp_ioport_write(Monitor *mon, const QDict *qdict)
1907 {
1908 int size = qdict_get_int(qdict, "size");
1909 int addr = qdict_get_int(qdict, "addr");
1910 int val = qdict_get_int(qdict, "val");
1911
1912 addr &= IOPORTS_MASK;
1913
1914 switch (size) {
1915 default:
1916 case 1:
1917 cpu_outb(addr, val);
1918 break;
1919 case 2:
1920 cpu_outw(addr, val);
1921 break;
1922 case 4:
1923 cpu_outl(addr, val);
1924 break;
1925 }
1926 }
1927
1928 static void hmp_boot_set(Monitor *mon, const QDict *qdict)
1929 {
1930 Error *local_err = NULL;
1931 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1932
1933 qemu_boot_set(bootdevice, &local_err);
1934 if (local_err) {
1935 error_report_err(local_err);
1936 } else {
1937 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1938 }
1939 }
1940
1941 static void hmp_info_mtree(Monitor *mon, const QDict *qdict)
1942 {
1943 bool flatview = qdict_get_try_bool(qdict, "flatview", false);
1944 bool dispatch_tree = qdict_get_try_bool(qdict, "dispatch_tree", false);
1945 bool owner = qdict_get_try_bool(qdict, "owner", false);
1946
1947 mtree_info((fprintf_function)monitor_printf, mon, flatview, dispatch_tree,
1948 owner);
1949 }
1950
1951 static void hmp_info_numa(Monitor *mon, const QDict *qdict)
1952 {
1953 int i;
1954 NumaNodeMem *node_mem;
1955 CpuInfoList *cpu_list, *cpu;
1956
1957 cpu_list = qmp_query_cpus(&error_abort);
1958 node_mem = g_new0(NumaNodeMem, nb_numa_nodes);
1959
1960 query_numa_node_mem(node_mem);
1961 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1962 for (i = 0; i < nb_numa_nodes; i++) {
1963 monitor_printf(mon, "node %d cpus:", i);
1964 for (cpu = cpu_list; cpu; cpu = cpu->next) {
1965 if (cpu->value->has_props && cpu->value->props->has_node_id &&
1966 cpu->value->props->node_id == i) {
1967 monitor_printf(mon, " %" PRIi64, cpu->value->CPU);
1968 }
1969 }
1970 monitor_printf(mon, "\n");
1971 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1972 node_mem[i].node_mem >> 20);
1973 monitor_printf(mon, "node %d plugged: %" PRId64 " MB\n", i,
1974 node_mem[i].node_plugged_mem >> 20);
1975 }
1976 qapi_free_CpuInfoList(cpu_list);
1977 g_free(node_mem);
1978 }
1979
1980 #ifdef CONFIG_PROFILER
1981
1982 int64_t dev_time;
1983
1984 static void hmp_info_profile(Monitor *mon, const QDict *qdict)
1985 {
1986 static int64_t last_cpu_exec_time;
1987 int64_t cpu_exec_time;
1988 int64_t delta;
1989
1990 cpu_exec_time = tcg_cpu_exec_time();
1991 delta = cpu_exec_time - last_cpu_exec_time;
1992
1993 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
1994 dev_time, dev_time / (double)NANOSECONDS_PER_SECOND);
1995 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
1996 delta, delta / (double)NANOSECONDS_PER_SECOND);
1997 last_cpu_exec_time = cpu_exec_time;
1998 dev_time = 0;
1999 }
2000 #else
2001 static void hmp_info_profile(Monitor *mon, const QDict *qdict)
2002 {
2003 monitor_printf(mon, "Internal profiler not compiled\n");
2004 }
2005 #endif
2006
2007 /* Capture support */
2008 static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
2009
2010 static void hmp_info_capture(Monitor *mon, const QDict *qdict)
2011 {
2012 int i;
2013 CaptureState *s;
2014
2015 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2016 monitor_printf(mon, "[%d]: ", i);
2017 s->ops.info (s->opaque);
2018 }
2019 }
2020
2021 static void hmp_stopcapture(Monitor *mon, const QDict *qdict)
2022 {
2023 int i;
2024 int n = qdict_get_int(qdict, "n");
2025 CaptureState *s;
2026
2027 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2028 if (i == n) {
2029 s->ops.destroy (s->opaque);
2030 QLIST_REMOVE (s, entries);
2031 g_free (s);
2032 return;
2033 }
2034 }
2035 }
2036
2037 static void hmp_wavcapture(Monitor *mon, const QDict *qdict)
2038 {
2039 const char *path = qdict_get_str(qdict, "path");
2040 int has_freq = qdict_haskey(qdict, "freq");
2041 int freq = qdict_get_try_int(qdict, "freq", -1);
2042 int has_bits = qdict_haskey(qdict, "bits");
2043 int bits = qdict_get_try_int(qdict, "bits", -1);
2044 int has_channels = qdict_haskey(qdict, "nchannels");
2045 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
2046 CaptureState *s;
2047
2048 s = g_malloc0 (sizeof (*s));
2049
2050 freq = has_freq ? freq : 44100;
2051 bits = has_bits ? bits : 16;
2052 nchannels = has_channels ? nchannels : 2;
2053
2054 if (wav_start_capture (s, path, freq, bits, nchannels)) {
2055 monitor_printf(mon, "Failed to add wave capture\n");
2056 g_free (s);
2057 return;
2058 }
2059 QLIST_INSERT_HEAD (&capture_head, s, entries);
2060 }
2061
2062 static qemu_acl *find_acl(Monitor *mon, const char *name)
2063 {
2064 qemu_acl *acl = qemu_acl_find(name);
2065
2066 if (!acl) {
2067 monitor_printf(mon, "acl: unknown list '%s'\n", name);
2068 }
2069 return acl;
2070 }
2071
2072 static void hmp_acl_show(Monitor *mon, const QDict *qdict)
2073 {
2074 const char *aclname = qdict_get_str(qdict, "aclname");
2075 qemu_acl *acl = find_acl(mon, aclname);
2076 qemu_acl_entry *entry;
2077 int i = 0;
2078
2079 if (acl) {
2080 monitor_printf(mon, "policy: %s\n",
2081 acl->defaultDeny ? "deny" : "allow");
2082 QTAILQ_FOREACH(entry, &acl->entries, next) {
2083 i++;
2084 monitor_printf(mon, "%d: %s %s\n", i,
2085 entry->deny ? "deny" : "allow", entry->match);
2086 }
2087 }
2088 }
2089
2090 static void hmp_acl_reset(Monitor *mon, const QDict *qdict)
2091 {
2092 const char *aclname = qdict_get_str(qdict, "aclname");
2093 qemu_acl *acl = find_acl(mon, aclname);
2094
2095 if (acl) {
2096 qemu_acl_reset(acl);
2097 monitor_printf(mon, "acl: removed all rules\n");
2098 }
2099 }
2100
2101 static void hmp_acl_policy(Monitor *mon, const QDict *qdict)
2102 {
2103 const char *aclname = qdict_get_str(qdict, "aclname");
2104 const char *policy = qdict_get_str(qdict, "policy");
2105 qemu_acl *acl = find_acl(mon, aclname);
2106
2107 if (acl) {
2108 if (strcmp(policy, "allow") == 0) {
2109 acl->defaultDeny = 0;
2110 monitor_printf(mon, "acl: policy set to 'allow'\n");
2111 } else if (strcmp(policy, "deny") == 0) {
2112 acl->defaultDeny = 1;
2113 monitor_printf(mon, "acl: policy set to 'deny'\n");
2114 } else {
2115 monitor_printf(mon, "acl: unknown policy '%s', "
2116 "expected 'deny' or 'allow'\n", policy);
2117 }
2118 }
2119 }
2120
2121 static void hmp_acl_add(Monitor *mon, const QDict *qdict)
2122 {
2123 const char *aclname = qdict_get_str(qdict, "aclname");
2124 const char *match = qdict_get_str(qdict, "match");
2125 const char *policy = qdict_get_str(qdict, "policy");
2126 int has_index = qdict_haskey(qdict, "index");
2127 int index = qdict_get_try_int(qdict, "index", -1);
2128 qemu_acl *acl = find_acl(mon, aclname);
2129 int deny, ret;
2130
2131 if (acl) {
2132 if (strcmp(policy, "allow") == 0) {
2133 deny = 0;
2134 } else if (strcmp(policy, "deny") == 0) {
2135 deny = 1;
2136 } else {
2137 monitor_printf(mon, "acl: unknown policy '%s', "
2138 "expected 'deny' or 'allow'\n", policy);
2139 return;
2140 }
2141 if (has_index)
2142 ret = qemu_acl_insert(acl, deny, match, index);
2143 else
2144 ret = qemu_acl_append(acl, deny, match);
2145 if (ret < 0)
2146 monitor_printf(mon, "acl: unable to add acl entry\n");
2147 else
2148 monitor_printf(mon, "acl: added rule at position %d\n", ret);
2149 }
2150 }
2151
2152 static void hmp_acl_remove(Monitor *mon, const QDict *qdict)
2153 {
2154 const char *aclname = qdict_get_str(qdict, "aclname");
2155 const char *match = qdict_get_str(qdict, "match");
2156 qemu_acl *acl = find_acl(mon, aclname);
2157 int ret;
2158
2159 if (acl) {
2160 ret = qemu_acl_remove(acl, match);
2161 if (ret < 0)
2162 monitor_printf(mon, "acl: no matching acl entry\n");
2163 else
2164 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
2165 }
2166 }
2167
2168 void qmp_getfd(const char *fdname, Error **errp)
2169 {
2170 mon_fd_t *monfd;
2171 int fd, tmp_fd;
2172
2173 fd = qemu_chr_fe_get_msgfd(&cur_mon->chr);
2174 if (fd == -1) {
2175 error_setg(errp, QERR_FD_NOT_SUPPLIED);
2176 return;
2177 }
2178
2179 if (qemu_isdigit(fdname[0])) {
2180 close(fd);
2181 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdname",
2182 "a name not starting with a digit");
2183 return;
2184 }
2185
2186 qemu_mutex_lock(&cur_mon->mon_lock);
2187 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
2188 if (strcmp(monfd->name, fdname) != 0) {
2189 continue;
2190 }
2191
2192 tmp_fd = monfd->fd;
2193 monfd->fd = fd;
2194 qemu_mutex_unlock(&cur_mon->mon_lock);
2195 /* Make sure close() is outside critical section */
2196 close(tmp_fd);
2197 return;
2198 }
2199
2200 monfd = g_malloc0(sizeof(mon_fd_t));
2201 monfd->name = g_strdup(fdname);
2202 monfd->fd = fd;
2203
2204 QLIST_INSERT_HEAD(&cur_mon->fds, monfd, next);
2205 qemu_mutex_unlock(&cur_mon->mon_lock);
2206 }
2207
2208 void qmp_closefd(const char *fdname, Error **errp)
2209 {
2210 mon_fd_t *monfd;
2211 int tmp_fd;
2212
2213 qemu_mutex_lock(&cur_mon->mon_lock);
2214 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
2215 if (strcmp(monfd->name, fdname) != 0) {
2216 continue;
2217 }
2218
2219 QLIST_REMOVE(monfd, next);
2220 tmp_fd = monfd->fd;
2221 g_free(monfd->name);
2222 g_free(monfd);
2223 qemu_mutex_unlock(&cur_mon->mon_lock);
2224 /* Make sure close() is outside critical section */
2225 close(tmp_fd);
2226 return;
2227 }
2228
2229 qemu_mutex_unlock(&cur_mon->mon_lock);
2230 error_setg(errp, QERR_FD_NOT_FOUND, fdname);
2231 }
2232
2233 int monitor_get_fd(Monitor *mon, const char *fdname, Error **errp)
2234 {
2235 mon_fd_t *monfd;
2236
2237 qemu_mutex_lock(&mon->mon_lock);
2238 QLIST_FOREACH(monfd, &mon->fds, next) {
2239 int fd;
2240
2241 if (strcmp(monfd->name, fdname) != 0) {
2242 continue;
2243 }
2244
2245 fd = monfd->fd;
2246
2247 /* caller takes ownership of fd */
2248 QLIST_REMOVE(monfd, next);
2249 g_free(monfd->name);
2250 g_free(monfd);
2251 qemu_mutex_unlock(&mon->mon_lock);
2252
2253 return fd;
2254 }
2255
2256 qemu_mutex_unlock(&mon->mon_lock);
2257 error_setg(errp, "File descriptor named '%s' has not been found", fdname);
2258 return -1;
2259 }
2260
2261 static void monitor_fdset_cleanup(MonFdset *mon_fdset)
2262 {
2263 MonFdsetFd *mon_fdset_fd;
2264 MonFdsetFd *mon_fdset_fd_next;
2265
2266 QLIST_FOREACH_SAFE(mon_fdset_fd, &mon_fdset->fds, next, mon_fdset_fd_next) {
2267 if ((mon_fdset_fd->removed ||
2268 (QLIST_EMPTY(&mon_fdset->dup_fds) && mon_refcount == 0)) &&
2269 runstate_is_running()) {
2270 close(mon_fdset_fd->fd);
2271 g_free(mon_fdset_fd->opaque);
2272 QLIST_REMOVE(mon_fdset_fd, next);
2273 g_free(mon_fdset_fd);
2274 }
2275 }
2276
2277 if (QLIST_EMPTY(&mon_fdset->fds) && QLIST_EMPTY(&mon_fdset->dup_fds)) {
2278 QLIST_REMOVE(mon_fdset, next);
2279 g_free(mon_fdset);
2280 }
2281 }
2282
2283 static void monitor_fdsets_cleanup(void)
2284 {
2285 MonFdset *mon_fdset;
2286 MonFdset *mon_fdset_next;
2287
2288 qemu_mutex_lock(&mon_fdsets_lock);
2289 QLIST_FOREACH_SAFE(mon_fdset, &mon_fdsets, next, mon_fdset_next) {
2290 monitor_fdset_cleanup(mon_fdset);
2291 }
2292 qemu_mutex_unlock(&mon_fdsets_lock);
2293 }
2294
2295 AddfdInfo *qmp_add_fd(bool has_fdset_id, int64_t fdset_id, bool has_opaque,
2296 const char *opaque, Error **errp)
2297 {
2298 int fd;
2299 Monitor *mon = cur_mon;
2300 AddfdInfo *fdinfo;
2301
2302 fd = qemu_chr_fe_get_msgfd(&mon->chr);
2303 if (fd == -1) {
2304 error_setg(errp, QERR_FD_NOT_SUPPLIED);
2305 goto error;
2306 }
2307
2308 fdinfo = monitor_fdset_add_fd(fd, has_fdset_id, fdset_id,
2309 has_opaque, opaque, errp);
2310 if (fdinfo) {
2311 return fdinfo;
2312 }
2313
2314 error:
2315 if (fd != -1) {
2316 close(fd);
2317 }
2318 return NULL;
2319 }
2320
2321 void qmp_remove_fd(int64_t fdset_id, bool has_fd, int64_t fd, Error **errp)
2322 {
2323 MonFdset *mon_fdset;
2324 MonFdsetFd *mon_fdset_fd;
2325 char fd_str[60];
2326
2327 qemu_mutex_lock(&mon_fdsets_lock);
2328 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2329 if (mon_fdset->id != fdset_id) {
2330 continue;
2331 }
2332 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2333 if (has_fd) {
2334 if (mon_fdset_fd->fd != fd) {
2335 continue;
2336 }
2337 mon_fdset_fd->removed = true;
2338 break;
2339 } else {
2340 mon_fdset_fd->removed = true;
2341 }
2342 }
2343 if (has_fd && !mon_fdset_fd) {
2344 goto error;
2345 }
2346 monitor_fdset_cleanup(mon_fdset);
2347 qemu_mutex_unlock(&mon_fdsets_lock);
2348 return;
2349 }
2350
2351 error:
2352 qemu_mutex_unlock(&mon_fdsets_lock);
2353 if (has_fd) {
2354 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64 ", fd:%" PRId64,
2355 fdset_id, fd);
2356 } else {
2357 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64, fdset_id);
2358 }
2359 error_setg(errp, QERR_FD_NOT_FOUND, fd_str);
2360 }
2361
2362 FdsetInfoList *qmp_query_fdsets(Error **errp)
2363 {
2364 MonFdset *mon_fdset;
2365 MonFdsetFd *mon_fdset_fd;
2366 FdsetInfoList *fdset_list = NULL;
2367
2368 qemu_mutex_lock(&mon_fdsets_lock);
2369 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2370 FdsetInfoList *fdset_info = g_malloc0(sizeof(*fdset_info));
2371 FdsetFdInfoList *fdsetfd_list = NULL;
2372
2373 fdset_info->value = g_malloc0(sizeof(*fdset_info->value));
2374 fdset_info->value->fdset_id = mon_fdset->id;
2375
2376 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2377 FdsetFdInfoList *fdsetfd_info;
2378
2379 fdsetfd_info = g_malloc0(sizeof(*fdsetfd_info));
2380 fdsetfd_info->value = g_malloc0(sizeof(*fdsetfd_info->value));
2381 fdsetfd_info->value->fd = mon_fdset_fd->fd;
2382 if (mon_fdset_fd->opaque) {
2383 fdsetfd_info->value->has_opaque = true;
2384 fdsetfd_info->value->opaque = g_strdup(mon_fdset_fd->opaque);
2385 } else {
2386 fdsetfd_info->value->has_opaque = false;
2387 }
2388
2389 fdsetfd_info->next = fdsetfd_list;
2390 fdsetfd_list = fdsetfd_info;
2391 }
2392
2393 fdset_info->value->fds = fdsetfd_list;
2394
2395 fdset_info->next = fdset_list;
2396 fdset_list = fdset_info;
2397 }
2398 qemu_mutex_unlock(&mon_fdsets_lock);
2399
2400 return fdset_list;
2401 }
2402
2403 AddfdInfo *monitor_fdset_add_fd(int fd, bool has_fdset_id, int64_t fdset_id,
2404 bool has_opaque, const char *opaque,
2405 Error **errp)
2406 {
2407 MonFdset *mon_fdset = NULL;
2408 MonFdsetFd *mon_fdset_fd;
2409 AddfdInfo *fdinfo;
2410
2411 qemu_mutex_lock(&mon_fdsets_lock);
2412 if (has_fdset_id) {
2413 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2414 /* Break if match found or match impossible due to ordering by ID */
2415 if (fdset_id <= mon_fdset->id) {
2416 if (fdset_id < mon_fdset->id) {
2417 mon_fdset = NULL;
2418 }
2419 break;
2420 }
2421 }
2422 }
2423
2424 if (mon_fdset == NULL) {
2425 int64_t fdset_id_prev = -1;
2426 MonFdset *mon_fdset_cur = QLIST_FIRST(&mon_fdsets);
2427
2428 if (has_fdset_id) {
2429 if (fdset_id < 0) {
2430 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdset-id",
2431 "a non-negative value");
2432 qemu_mutex_unlock(&mon_fdsets_lock);
2433 return NULL;
2434 }
2435 /* Use specified fdset ID */
2436 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2437 mon_fdset_cur = mon_fdset;
2438 if (fdset_id < mon_fdset_cur->id) {
2439 break;
2440 }
2441 }
2442 } else {
2443 /* Use first available fdset ID */
2444 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2445 mon_fdset_cur = mon_fdset;
2446 if (fdset_id_prev == mon_fdset_cur->id - 1) {
2447 fdset_id_prev = mon_fdset_cur->id;
2448 continue;
2449 }
2450 break;
2451 }
2452 }
2453
2454 mon_fdset = g_malloc0(sizeof(*mon_fdset));
2455 if (has_fdset_id) {
2456 mon_fdset->id = fdset_id;
2457 } else {
2458 mon_fdset->id = fdset_id_prev + 1;
2459 }
2460
2461 /* The fdset list is ordered by fdset ID */
2462 if (!mon_fdset_cur) {
2463 QLIST_INSERT_HEAD(&mon_fdsets, mon_fdset, next);
2464 } else if (mon_fdset->id < mon_fdset_cur->id) {
2465 QLIST_INSERT_BEFORE(mon_fdset_cur, mon_fdset, next);
2466 } else {
2467 QLIST_INSERT_AFTER(mon_fdset_cur, mon_fdset, next);
2468 }
2469 }
2470
2471 mon_fdset_fd = g_malloc0(sizeof(*mon_fdset_fd));
2472 mon_fdset_fd->fd = fd;
2473 mon_fdset_fd->removed = false;
2474 if (has_opaque) {
2475 mon_fdset_fd->opaque = g_strdup(opaque);
2476 }
2477 QLIST_INSERT_HEAD(&mon_fdset->fds, mon_fdset_fd, next);
2478
2479 fdinfo = g_malloc0(sizeof(*fdinfo));
2480 fdinfo->fdset_id = mon_fdset->id;
2481 fdinfo->fd = mon_fdset_fd->fd;
2482
2483 qemu_mutex_unlock(&mon_fdsets_lock);
2484 return fdinfo;
2485 }
2486
2487 int monitor_fdset_get_fd(int64_t fdset_id, int flags)
2488 {
2489 #ifdef _WIN32
2490 return -ENOENT;
2491 #else
2492 MonFdset *mon_fdset;
2493 MonFdsetFd *mon_fdset_fd;
2494 int mon_fd_flags;
2495 int ret;
2496
2497 qemu_mutex_lock(&mon_fdsets_lock);
2498 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2499 if (mon_fdset->id != fdset_id) {
2500 continue;
2501 }
2502 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2503 mon_fd_flags = fcntl(mon_fdset_fd->fd, F_GETFL);
2504 if (mon_fd_flags == -1) {
2505 ret = -errno;
2506 goto out;
2507 }
2508
2509 if ((flags & O_ACCMODE) == (mon_fd_flags & O_ACCMODE)) {
2510 ret = mon_fdset_fd->fd;
2511 goto out;
2512 }
2513 }
2514 ret = -EACCES;
2515 goto out;
2516 }
2517 ret = -ENOENT;
2518
2519 out:
2520 qemu_mutex_unlock(&mon_fdsets_lock);
2521 return ret;
2522 #endif
2523 }
2524
2525 int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd)
2526 {
2527 MonFdset *mon_fdset;
2528 MonFdsetFd *mon_fdset_fd_dup;
2529
2530 qemu_mutex_lock(&mon_fdsets_lock);
2531 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2532 if (mon_fdset->id != fdset_id) {
2533 continue;
2534 }
2535 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2536 if (mon_fdset_fd_dup->fd == dup_fd) {
2537 goto err;
2538 }
2539 }
2540 mon_fdset_fd_dup = g_malloc0(sizeof(*mon_fdset_fd_dup));
2541 mon_fdset_fd_dup->fd = dup_fd;
2542 QLIST_INSERT_HEAD(&mon_fdset->dup_fds, mon_fdset_fd_dup, next);
2543 qemu_mutex_unlock(&mon_fdsets_lock);
2544 return 0;
2545 }
2546
2547 err:
2548 qemu_mutex_unlock(&mon_fdsets_lock);
2549 return -1;
2550 }
2551
2552 static int monitor_fdset_dup_fd_find_remove(int dup_fd, bool remove)
2553 {
2554 MonFdset *mon_fdset;
2555 MonFdsetFd *mon_fdset_fd_dup;
2556
2557 qemu_mutex_lock(&mon_fdsets_lock);
2558 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2559 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2560 if (mon_fdset_fd_dup->fd == dup_fd) {
2561 if (remove) {
2562 QLIST_REMOVE(mon_fdset_fd_dup, next);
2563 if (QLIST_EMPTY(&mon_fdset->dup_fds)) {
2564 monitor_fdset_cleanup(mon_fdset);
2565 }
2566 goto err;
2567 } else {
2568 qemu_mutex_unlock(&mon_fdsets_lock);
2569 return mon_fdset->id;
2570 }
2571 }
2572 }
2573 }
2574
2575 err:
2576 qemu_mutex_unlock(&mon_fdsets_lock);
2577 return -1;
2578 }
2579
2580 int monitor_fdset_dup_fd_find(int dup_fd)
2581 {
2582 return monitor_fdset_dup_fd_find_remove(dup_fd, false);
2583 }
2584
2585 void monitor_fdset_dup_fd_remove(int dup_fd)
2586 {
2587 monitor_fdset_dup_fd_find_remove(dup_fd, true);
2588 }
2589
2590 int monitor_fd_param(Monitor *mon, const char *fdname, Error **errp)
2591 {
2592 int fd;
2593 Error *local_err = NULL;
2594
2595 if (!qemu_isdigit(fdname[0]) && mon) {
2596 fd = monitor_get_fd(mon, fdname, &local_err);
2597 } else {
2598 fd = qemu_parse_fd(fdname);
2599 if (fd == -1) {
2600 error_setg(&local_err, "Invalid file descriptor number '%s'",
2601 fdname);
2602 }
2603 }
2604 if (local_err) {
2605 error_propagate(errp, local_err);
2606 assert(fd == -1);
2607 } else {
2608 assert(fd != -1);
2609 }
2610
2611 return fd;
2612 }
2613
2614 /* Please update hmp-commands.hx when adding or changing commands */
2615 static mon_cmd_t info_cmds[] = {
2616 #include "hmp-commands-info.h"
2617 { NULL, NULL, },
2618 };
2619
2620 /* mon_cmds and info_cmds would be sorted at runtime */
2621 static mon_cmd_t mon_cmds[] = {
2622 #include "hmp-commands.h"
2623 { NULL, NULL, },
2624 };
2625
2626 /*******************************************************************/
2627
2628 static const char *pch;
2629 static sigjmp_buf expr_env;
2630
2631
2632 static void GCC_FMT_ATTR(2, 3) QEMU_NORETURN
2633 expr_error(Monitor *mon, const char *fmt, ...)
2634 {
2635 va_list ap;
2636 va_start(ap, fmt);
2637 monitor_vprintf(mon, fmt, ap);
2638 monitor_printf(mon, "\n");
2639 va_end(ap);
2640 siglongjmp(expr_env, 1);
2641 }
2642
2643 /* return 0 if OK, -1 if not found */
2644 static int get_monitor_def(target_long *pval, const char *name)
2645 {
2646 const MonitorDef *md = target_monitor_defs();
2647 CPUState *cs = mon_get_cpu();
2648 void *ptr;
2649 uint64_t tmp = 0;
2650 int ret;
2651
2652 if (cs == NULL || md == NULL) {
2653 return -1;
2654 }
2655
2656 for(; md->name != NULL; md++) {
2657 if (compare_cmd(name, md->name)) {
2658 if (md->get_value) {
2659 *pval = md->get_value(md, md->offset);
2660 } else {
2661 CPUArchState *env = mon_get_cpu_env();
2662 ptr = (uint8_t *)env + md->offset;
2663 switch(md->type) {
2664 case MD_I32:
2665 *pval = *(int32_t *)ptr;
2666 break;
2667 case MD_TLONG:
2668 *pval = *(target_long *)ptr;
2669 break;
2670 default:
2671 *pval = 0;
2672 break;
2673 }
2674 }
2675 return 0;
2676 }
2677 }
2678
2679 ret = target_get_monitor_def(cs, name, &tmp);
2680 if (!ret) {
2681 *pval = (target_long) tmp;
2682 }
2683
2684 return ret;
2685 }
2686
2687 static void next(void)
2688 {
2689 if (*pch != '\0') {
2690 pch++;
2691 while (qemu_isspace(*pch))
2692 pch++;
2693 }
2694 }
2695
2696 static int64_t expr_sum(Monitor *mon);
2697
2698 static int64_t expr_unary(Monitor *mon)
2699 {
2700 int64_t n;
2701 char *p;
2702 int ret;
2703
2704 switch(*pch) {
2705 case '+':
2706 next();
2707 n = expr_unary(mon);
2708 break;
2709 case '-':
2710 next();
2711 n = -expr_unary(mon);
2712 break;
2713 case '~':
2714 next();
2715 n = ~expr_unary(mon);
2716 break;
2717 case '(':
2718 next();
2719 n = expr_sum(mon);
2720 if (*pch != ')') {
2721 expr_error(mon, "')' expected");
2722 }
2723 next();
2724 break;
2725 case '\'':
2726 pch++;
2727 if (*pch == '\0')
2728 expr_error(mon, "character constant expected");
2729 n = *pch;
2730 pch++;
2731 if (*pch != '\'')
2732 expr_error(mon, "missing terminating \' character");
2733 next();
2734 break;
2735 case '$':
2736 {
2737 char buf[128], *q;
2738 target_long reg=0;
2739
2740 pch++;
2741 q = buf;
2742 while ((*pch >= 'a' && *pch <= 'z') ||
2743 (*pch >= 'A' && *pch <= 'Z') ||
2744 (*pch >= '0' && *pch <= '9') ||
2745 *pch == '_' || *pch == '.') {
2746 if ((q - buf) < sizeof(buf) - 1)
2747 *q++ = *pch;
2748 pch++;
2749 }
2750 while (qemu_isspace(*pch))
2751 pch++;
2752 *q = 0;
2753 ret = get_monitor_def(&reg, buf);
2754 if (ret < 0)
2755 expr_error(mon, "unknown register");
2756 n = reg;
2757 }
2758 break;
2759 case '\0':
2760 expr_error(mon, "unexpected end of expression");
2761 n = 0;
2762 break;
2763 default:
2764 errno = 0;
2765 n = strtoull(pch, &p, 0);
2766 if (errno == ERANGE) {
2767 expr_error(mon, "number too large");
2768 }
2769 if (pch == p) {
2770 expr_error(mon, "invalid char '%c' in expression", *p);
2771 }
2772 pch = p;
2773 while (qemu_isspace(*pch))
2774 pch++;
2775 break;
2776 }
2777 return n;
2778 }
2779
2780
2781 static int64_t expr_prod(Monitor *mon)
2782 {
2783 int64_t val, val2;
2784 int op;
2785
2786 val = expr_unary(mon);
2787 for(;;) {
2788 op = *pch;
2789 if (op != '*' && op != '/' && op != '%')
2790 break;
2791 next();
2792 val2 = expr_unary(mon);
2793 switch(op) {
2794 default:
2795 case '*':
2796 val *= val2;
2797 break;
2798 case '/':
2799 case '%':
2800 if (val2 == 0)
2801 expr_error(mon, "division by zero");
2802 if (op == '/')
2803 val /= val2;
2804 else
2805 val %= val2;
2806 break;
2807 }
2808 }
2809 return val;
2810 }
2811
2812 static int64_t expr_logic(Monitor *mon)
2813 {
2814 int64_t val, val2;
2815 int op;
2816
2817 val = expr_prod(mon);
2818 for(;;) {
2819 op = *pch;
2820 if (op != '&' && op != '|' && op != '^')
2821 break;
2822 next();
2823 val2 = expr_prod(mon);
2824 switch(op) {
2825 default:
2826 case '&':
2827 val &= val2;
2828 break;
2829 case '|':
2830 val |= val2;
2831 break;
2832 case '^':
2833 val ^= val2;
2834 break;
2835 }
2836 }
2837 return val;
2838 }
2839
2840 static int64_t expr_sum(Monitor *mon)
2841 {
2842 int64_t val, val2;
2843 int op;
2844
2845 val = expr_logic(mon);
2846 for(;;) {
2847 op = *pch;
2848 if (op != '+' && op != '-')
2849 break;
2850 next();
2851 val2 = expr_logic(mon);
2852 if (op == '+')
2853 val += val2;
2854 else
2855 val -= val2;
2856 }
2857 return val;
2858 }
2859
2860 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
2861 {
2862 pch = *pp;
2863 if (sigsetjmp(expr_env, 0)) {
2864 *pp = pch;
2865 return -1;
2866 }
2867 while (qemu_isspace(*pch))
2868 pch++;
2869 *pval = expr_sum(mon);
2870 *pp = pch;
2871 return 0;
2872 }
2873
2874 static int get_double(Monitor *mon, double *pval, const char **pp)
2875 {
2876 const char *p = *pp;
2877 char *tailp;
2878 double d;
2879
2880 d = strtod(p, &tailp);
2881 if (tailp == p) {
2882 monitor_printf(mon, "Number expected\n");
2883 return -1;
2884 }
2885 if (d != d || d - d != 0) {
2886 /* NaN or infinity */
2887 monitor_printf(mon, "Bad number\n");
2888 return -1;
2889 }
2890 *pval = d;
2891 *pp = tailp;
2892 return 0;
2893 }
2894
2895 /*
2896 * Store the command-name in cmdname, and return a pointer to
2897 * the remaining of the command string.
2898 */
2899 static const char *get_command_name(const char *cmdline,
2900 char *cmdname, size_t nlen)
2901 {
2902 size_t len;
2903 const char *p, *pstart;
2904
2905 p = cmdline;
2906 while (qemu_isspace(*p))
2907 p++;
2908 if (*p == '\0')
2909 return NULL;
2910 pstart = p;
2911 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
2912 p++;
2913 len = p - pstart;
2914 if (len > nlen - 1)
2915 len = nlen - 1;
2916 memcpy(cmdname, pstart, len);
2917 cmdname[len] = '\0';
2918 return p;
2919 }
2920
2921 /**
2922 * Read key of 'type' into 'key' and return the current
2923 * 'type' pointer.
2924 */
2925 static char *key_get_info(const char *type, char **key)
2926 {
2927 size_t len;
2928 char *p, *str;
2929
2930 if (*type == ',')
2931 type++;
2932
2933 p = strchr(type, ':');
2934 if (!p) {
2935 *key = NULL;
2936 return NULL;
2937 }
2938 len = p - type;
2939
2940 str = g_malloc(len + 1);
2941 memcpy(str, type, len);
2942 str[len] = '\0';
2943
2944 *key = str;
2945 return ++p;
2946 }
2947
2948 static int default_fmt_format = 'x';
2949 static int default_fmt_size = 4;
2950
2951 static int is_valid_option(const char *c, const char *typestr)
2952 {
2953 char option[3];
2954
2955 option[0] = '-';
2956 option[1] = *c;
2957 option[2] = '\0';
2958
2959 typestr = strstr(typestr, option);
2960 return (typestr != NULL);
2961 }
2962
2963 static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
2964 const char *cmdname)
2965 {
2966 const mon_cmd_t *cmd;
2967
2968 for (cmd = disp_table; cmd->name != NULL; cmd++) {
2969 if (compare_cmd(cmdname, cmd->name)) {
2970 return cmd;
2971 }
2972 }
2973
2974 return NULL;
2975 }
2976
2977 /*
2978 * Parse command name from @cmdp according to command table @table.
2979 * If blank, return NULL.
2980 * Else, if no valid command can be found, report to @mon, and return
2981 * NULL.
2982 * Else, change @cmdp to point right behind the name, and return its
2983 * command table entry.
2984 * Do not assume the return value points into @table! It doesn't when
2985 * the command is found in a sub-command table.
2986 */
2987 static const mon_cmd_t *monitor_parse_command(Monitor *mon,
2988 const char *cmdp_start,
2989 const char **cmdp,
2990 mon_cmd_t *table)
2991 {
2992 const char *p;
2993 const mon_cmd_t *cmd;
2994 char cmdname[256];
2995
2996 /* extract the command name */
2997 p = get_command_name(*cmdp, cmdname, sizeof(cmdname));
2998 if (!p)
2999 return NULL;
3000
3001 cmd = search_dispatch_table(table, cmdname);
3002 if (!cmd) {
3003 monitor_printf(mon, "unknown command: '%.*s'\n",
3004 (int)(p - cmdp_start), cmdp_start);
3005 return NULL;
3006 }
3007 if (runstate_check(RUN_STATE_PRECONFIG) && !cmd_can_preconfig(cmd)) {
3008 monitor_printf(mon, "Command '%.*s' not available with -preconfig "
3009 "until after exit_preconfig.\n",
3010 (int)(p - cmdp_start), cmdp_start);
3011 return NULL;
3012 }
3013
3014 /* filter out following useless space */
3015 while (qemu_isspace(*p)) {
3016 p++;
3017 }
3018
3019 *cmdp = p;
3020 /* search sub command */
3021 if (cmd->sub_table != NULL && *p != '\0') {
3022 return monitor_parse_command(mon, cmdp_start, cmdp, cmd->sub_table);
3023 }
3024
3025 return cmd;
3026 }
3027
3028 /*
3029 * Parse arguments for @cmd.
3030 * If it can't be parsed, report to @mon, and return NULL.
3031 * Else, insert command arguments into a QDict, and return it.
3032 * Note: On success, caller has to free the QDict structure.
3033 */
3034
3035 static QDict *monitor_parse_arguments(Monitor *mon,
3036 const char **endp,
3037 const mon_cmd_t *cmd)
3038 {
3039 const char *typestr;
3040 char *key;
3041 int c;
3042 const char *p = *endp;
3043 char buf[1024];
3044 QDict *qdict = qdict_new();
3045
3046 /* parse the parameters */
3047 typestr = cmd->args_type;
3048 for(;;) {
3049 typestr = key_get_info(typestr, &key);
3050 if (!typestr)
3051 break;
3052 c = *typestr;
3053 typestr++;
3054 switch(c) {
3055 case 'F':
3056 case 'B':
3057 case 's':
3058 {
3059 int ret;
3060
3061 while (qemu_isspace(*p))
3062 p++;
3063 if (*typestr == '?') {
3064 typestr++;
3065 if (*p == '\0') {
3066 /* no optional string: NULL argument */
3067 break;
3068 }
3069 }
3070 ret = get_str(buf, sizeof(buf), &p);
3071 if (ret < 0) {
3072 switch(c) {
3073 case 'F':
3074 monitor_printf(mon, "%s: filename expected\n",
3075 cmd->name);
3076 break;
3077 case 'B':
3078 monitor_printf(mon, "%s: block device name expected\n",
3079 cmd->name);
3080 break;
3081 default:
3082 monitor_printf(mon, "%s: string expected\n", cmd->name);
3083 break;
3084 }
3085 goto fail;
3086 }
3087 qdict_put_str(qdict, key, buf);
3088 }
3089 break;
3090 case 'O':
3091 {
3092 QemuOptsList *opts_list;
3093 QemuOpts *opts;
3094
3095 opts_list = qemu_find_opts(key);
3096 if (!opts_list || opts_list->desc->name) {
3097 goto bad_type;
3098 }
3099 while (qemu_isspace(*p)) {
3100 p++;
3101 }
3102 if (!*p)
3103 break;
3104 if (get_str(buf, sizeof(buf), &p) < 0) {
3105 goto fail;
3106 }
3107 opts = qemu_opts_parse_noisily(opts_list, buf, true);
3108 if (!opts) {
3109 goto fail;
3110 }
3111 qemu_opts_to_qdict(opts, qdict);
3112 qemu_opts_del(opts);
3113 }
3114 break;
3115 case '/':
3116 {
3117 int count, format, size;
3118
3119 while (qemu_isspace(*p))
3120 p++;
3121 if (*p == '/') {
3122 /* format found */
3123 p++;
3124 count = 1;
3125 if (qemu_isdigit(*p)) {
3126 count = 0;
3127 while (qemu_isdigit(*p)) {
3128 count = count * 10 + (*p - '0');
3129 p++;
3130 }
3131 }
3132 size = -1;
3133 format = -1;
3134 for(;;) {
3135 switch(*p) {
3136 case 'o':
3137 case 'd':
3138 case 'u':
3139 case 'x':
3140 case 'i':
3141 case 'c':
3142 format = *p++;
3143 break;
3144 case 'b':
3145 size = 1;
3146 p++;
3147 break;
3148 case 'h':
3149 size = 2;
3150 p++;
3151 break;
3152 case 'w':
3153 size = 4;
3154 p++;
3155 break;
3156 case 'g':
3157 case 'L':
3158 size = 8;
3159 p++;
3160 break;
3161 default:
3162 goto next;
3163 }
3164 }
3165 next:
3166 if (*p != '\0' && !qemu_isspace(*p)) {
3167 monitor_printf(mon, "invalid char in format: '%c'\n",
3168 *p);
3169 goto fail;
3170 }
3171 if (format < 0)
3172 format = default_fmt_format;
3173 if (format != 'i') {
3174 /* for 'i', not specifying a size gives -1 as size */
3175 if (size < 0)
3176 size = default_fmt_size;
3177 default_fmt_size = size;
3178 }
3179 default_fmt_format = format;
3180 } else {
3181 count = 1;
3182 format = default_fmt_format;
3183 if (format != 'i') {
3184 size = default_fmt_size;
3185 } else {
3186 size = -1;
3187 }
3188 }
3189 qdict_put_int(qdict, "count", count);
3190 qdict_put_int(qdict, "format", format);
3191 qdict_put_int(qdict, "size", size);
3192 }
3193 break;
3194 case 'i':
3195 case 'l':
3196 case 'M':
3197 {
3198 int64_t val;
3199
3200 while (qemu_isspace(*p))
3201 p++;
3202 if (*typestr == '?' || *typestr == '.') {
3203 if (*typestr == '?') {
3204 if (*p == '\0') {
3205 typestr++;
3206 break;
3207 }
3208 } else {
3209 if (*p == '.') {
3210 p++;
3211 while (qemu_isspace(*p))
3212 p++;
3213 } else {
3214 typestr++;
3215 break;
3216 }
3217 }
3218 typestr++;
3219 }
3220 if (get_expr(mon, &val, &p))
3221 goto fail;
3222 /* Check if 'i' is greater than 32-bit */
3223 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3224 monitor_printf(mon, "\'%s\' has failed: ", cmd->name);
3225 monitor_printf(mon, "integer is for 32-bit values\n");
3226 goto fail;
3227 } else if (c == 'M') {
3228 if (val < 0) {
3229 monitor_printf(mon, "enter a positive value\n");
3230 goto fail;
3231 }
3232 val *= MiB;
3233 }
3234 qdict_put_int(qdict, key, val);
3235 }
3236 break;
3237 case 'o':
3238 {
3239 int ret;
3240 uint64_t val;
3241 char *end;
3242
3243 while (qemu_isspace(*p)) {
3244 p++;
3245 }
3246 if (*typestr == '?') {
3247 typestr++;
3248 if (*p == '\0') {
3249 break;
3250 }
3251 }
3252 ret = qemu_strtosz_MiB(p, &end, &val);
3253 if (ret < 0 || val > INT64_MAX) {
3254 monitor_printf(mon, "invalid size\n");
3255 goto fail;
3256 }
3257 qdict_put_int(qdict, key, val);
3258 p = end;
3259 }
3260 break;
3261 case 'T':
3262 {
3263 double val;
3264
3265 while (qemu_isspace(*p))
3266 p++;
3267 if (*typestr == '?') {
3268 typestr++;
3269 if (*p == '\0') {
3270 break;
3271 }
3272 }
3273 if (get_double(mon, &val, &p) < 0) {
3274 goto fail;
3275 }
3276 if (p[0] && p[1] == 's') {
3277 switch (*p) {
3278 case 'm':
3279 val /= 1e3; p += 2; break;
3280 case 'u':
3281 val /= 1e6; p += 2; break;
3282 case 'n':
3283 val /= 1e9; p += 2; break;
3284 }
3285 }
3286 if (*p && !qemu_isspace(*p)) {
3287 monitor_printf(mon, "Unknown unit suffix\n");
3288 goto fail;
3289 }
3290 qdict_put(qdict, key, qnum_from_double(val));
3291 }
3292 break;
3293 case 'b':
3294 {
3295 const char *beg;
3296 bool val;
3297
3298 while (qemu_isspace(*p)) {
3299 p++;
3300 }
3301 beg = p;
3302 while (qemu_isgraph(*p)) {
3303 p++;
3304 }
3305 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3306 val = true;
3307 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3308 val = false;
3309 } else {
3310 monitor_printf(mon, "Expected 'on' or 'off'\n");
3311 goto fail;
3312 }
3313 qdict_put_bool(qdict, key, val);
3314 }
3315 break;
3316 case '-':
3317 {
3318 const char *tmp = p;
3319 int skip_key = 0;
3320 /* option */
3321
3322 c = *typestr++;
3323 if (c == '\0')
3324 goto bad_type;
3325 while (qemu_isspace(*p))
3326 p++;
3327 if (*p == '-') {
3328 p++;
3329 if(c != *p) {
3330 if(!is_valid_option(p, typestr)) {
3331
3332 monitor_printf(mon, "%s: unsupported option -%c\n",
3333 cmd->name, *p);
3334 goto fail;
3335 } else {
3336 skip_key = 1;
3337 }
3338 }
3339 if(skip_key) {
3340 p = tmp;
3341 } else {
3342 /* has option */
3343 p++;
3344 qdict_put_bool(qdict, key, true);
3345 }
3346 }
3347 }
3348 break;
3349 case 'S':
3350 {
3351 /* package all remaining string */
3352 int len;
3353
3354 while (qemu_isspace(*p)) {
3355 p++;
3356 }
3357 if (*typestr == '?') {
3358 typestr++;
3359 if (*p == '\0') {
3360 /* no remaining string: NULL argument */
3361 break;
3362 }
3363 }
3364 len = strlen(p);
3365 if (len <= 0) {
3366 monitor_printf(mon, "%s: string expected\n",
3367 cmd->name);
3368 goto fail;
3369 }
3370 qdict_put_str(qdict, key, p);
3371 p += len;
3372 }
3373 break;
3374 default:
3375 bad_type:
3376 monitor_printf(mon, "%s: unknown type '%c'\n", cmd->name, c);
3377 goto fail;
3378 }
3379 g_free(key);
3380 key = NULL;
3381 }
3382 /* check that all arguments were parsed */
3383 while (qemu_isspace(*p))
3384 p++;
3385 if (*p != '\0') {
3386 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3387 cmd->name);
3388 goto fail;
3389 }
3390
3391 return qdict;
3392
3393 fail:
3394 qobject_unref(qdict);
3395 g_free(key);
3396 return NULL;
3397 }
3398
3399 static void handle_hmp_command(Monitor *mon, const char *cmdline)
3400 {
3401 QDict *qdict;
3402 const mon_cmd_t *cmd;
3403 const char *cmd_start = cmdline;
3404
3405 trace_handle_hmp_command(mon, cmdline);
3406
3407 cmd = monitor_parse_command(mon, cmdline, &cmdline, mon->cmd_table);
3408 if (!cmd) {
3409 return;
3410 }
3411
3412 qdict = monitor_parse_arguments(mon, &cmdline, cmd);
3413 if (!qdict) {
3414 while (cmdline > cmd_start && qemu_isspace(cmdline[-1])) {
3415 cmdline--;
3416 }
3417 monitor_printf(mon, "Try \"help %.*s\" for more information\n",
3418 (int)(cmdline - cmd_start), cmd_start);
3419 return;
3420 }
3421
3422 cmd->cmd(mon, qdict);
3423 qobject_unref(qdict);
3424 }
3425
3426 static void cmd_completion(Monitor *mon, const char *name, const char *list)
3427 {
3428 const char *p, *pstart;
3429 char cmd[128];
3430 int len;
3431
3432 p = list;
3433 for(;;) {
3434 pstart = p;
3435 p = qemu_strchrnul(p, '|');
3436 len = p - pstart;
3437 if (len > sizeof(cmd) - 2)
3438 len = sizeof(cmd) - 2;
3439 memcpy(cmd, pstart, len);
3440 cmd[len] = '\0';
3441 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
3442 readline_add_completion(mon->rs, cmd);
3443 }
3444 if (*p == '\0')
3445 break;
3446 p++;
3447 }
3448 }
3449
3450 static void file_completion(Monitor *mon, const char *input)
3451 {
3452 DIR *ffs;
3453 struct dirent *d;
3454 char path[1024];
3455 char file[1024], file_prefix[1024];
3456 int input_path_len;
3457 const char *p;
3458
3459 p = strrchr(input, '/');
3460 if (!p) {
3461 input_path_len = 0;
3462 pstrcpy(file_prefix, sizeof(file_prefix), input);
3463 pstrcpy(path, sizeof(path), ".");
3464 } else {
3465 input_path_len = p - input + 1;
3466 memcpy(path, input, input_path_len);
3467 if (input_path_len > sizeof(path) - 1)
3468 input_path_len = sizeof(path) - 1;
3469 path[input_path_len] = '\0';
3470 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3471 }
3472
3473 ffs = opendir(path);
3474 if (!ffs)
3475 return;
3476 for(;;) {
3477 struct stat sb;
3478 d = readdir(ffs);
3479 if (!d)
3480 break;
3481
3482 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
3483 continue;
3484 }
3485
3486 if (strstart(d->d_name, file_prefix, NULL)) {
3487 memcpy(file, input, input_path_len);
3488 if (input_path_len < sizeof(file))
3489 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3490 d->d_name);
3491 /* stat the file to find out if it's a directory.
3492 * In that case add a slash to speed up typing long paths
3493 */
3494 if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) {
3495 pstrcat(file, sizeof(file), "/");
3496 }
3497 readline_add_completion(mon->rs, file);
3498 }
3499 }
3500 closedir(ffs);
3501 }
3502
3503 static const char *next_arg_type(const char *typestr)
3504 {
3505 const char *p = strchr(typestr, ':');
3506 return (p != NULL ? ++p : typestr);
3507 }
3508
3509 static void add_completion_option(ReadLineState *rs, const char *str,
3510 const char *option)
3511 {
3512 if (!str || !option) {
3513 return;
3514 }
3515 if (!strncmp(option, str, strlen(str))) {
3516 readline_add_completion(rs, option);
3517 }
3518 }
3519
3520 void chardev_add_completion(ReadLineState *rs, int nb_args, const char *str)
3521 {
3522 size_t len;
3523 ChardevBackendInfoList *list, *start;
3524
3525 if (nb_args != 2) {
3526 return;
3527 }
3528 len = strlen(str);
3529 readline_set_completion_index(rs, len);
3530
3531 start = list = qmp_query_chardev_backends(NULL);
3532 while (list) {
3533 const char *chr_name = list->value->name;
3534
3535 if (!strncmp(chr_name, str, len)) {
3536 readline_add_completion(rs, chr_name);
3537 }
3538 list = list->next;
3539 }
3540 qapi_free_ChardevBackendInfoList(start);
3541 }
3542
3543 void netdev_add_completion(ReadLineState *rs, int nb_args, const char *str)
3544 {
3545 size_t len;
3546 int i;
3547
3548 if (nb_args != 2) {
3549 return;
3550 }
3551 len = strlen(str);
3552 readline_set_completion_index(rs, len);
3553 for (i = 0; i < NET_CLIENT_DRIVER__MAX; i++) {
3554 add_completion_option(rs, str, NetClientDriver_str(i));
3555 }
3556 }
3557
3558 void device_add_completion(ReadLineState *rs, int nb_args, const char *str)
3559 {
3560 GSList *list, *elt;
3561 size_t len;
3562
3563 if (nb_args != 2) {
3564 return;
3565 }
3566
3567 len = strlen(str);
3568 readline_set_completion_index(rs, len);
3569 list = elt = object_class_get_list(TYPE_DEVICE, false);
3570 while (elt) {
3571 const char *name;
3572 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
3573 TYPE_DEVICE);
3574 name = object_class_get_name(OBJECT_CLASS(dc));
3575
3576 if (dc->user_creatable
3577 && !strncmp(name, str, len)) {
3578 readline_add_completion(rs, name);
3579 }
3580 elt = elt->next;
3581 }
3582 g_slist_free(list);
3583 }
3584
3585 void object_add_completion(ReadLineState *rs, int nb_args, const char *str)
3586 {
3587 GSList *list, *elt;
3588 size_t len;
3589
3590 if (nb_args != 2) {
3591 return;
3592 }
3593
3594 len = strlen(str);
3595 readline_set_completion_index(rs, len);
3596 list = elt = object_class_get_list(TYPE_USER_CREATABLE, false);
3597 while (elt) {
3598 const char *name;
3599
3600 name = object_class_get_name(OBJECT_CLASS(elt->data));
3601 if (!strncmp(name, str, len) && strcmp(name, TYPE_USER_CREATABLE)) {
3602 readline_add_completion(rs, name);
3603 }
3604 elt = elt->next;
3605 }
3606 g_slist_free(list);
3607 }
3608
3609 static void peripheral_device_del_completion(ReadLineState *rs,
3610 const char *str, size_t len)
3611 {
3612 Object *peripheral = container_get(qdev_get_machine(), "/peripheral");
3613 GSList *list, *item;
3614
3615 list = qdev_build_hotpluggable_device_list(peripheral);
3616 if (!list) {
3617 return;
3618 }
3619
3620 for (item = list; item; item = g_slist_next(item)) {
3621 DeviceState *dev = item->data;
3622
3623 if (dev->id && !strncmp(str, dev->id, len)) {
3624 readline_add_completion(rs, dev->id);
3625 }
3626 }
3627
3628 g_slist_free(list);
3629 }
3630
3631 void chardev_remove_completion(ReadLineState *rs, int nb_args, const char *str)
3632 {
3633 size_t len;
3634 ChardevInfoList *list, *start;
3635
3636 if (nb_args != 2) {
3637 return;
3638 }
3639 len = strlen(str);
3640 readline_set_completion_index(rs, len);
3641
3642 start = list = qmp_query_chardev(NULL);
3643 while (list) {
3644 ChardevInfo *chr = list->value;
3645
3646 if (!strncmp(chr->label, str, len)) {
3647 readline_add_completion(rs, chr->label);
3648 }
3649 list = list->next;
3650 }
3651 qapi_free_ChardevInfoList(start);
3652 }
3653
3654 static void ringbuf_completion(ReadLineState *rs, const char *str)
3655 {
3656 size_t len;
3657 ChardevInfoList *list, *start;
3658
3659 len = strlen(str);
3660 readline_set_completion_index(rs, len);
3661
3662 start = list = qmp_query_chardev(NULL);
3663 while (list) {
3664 ChardevInfo *chr_info = list->value;
3665
3666 if (!strncmp(chr_info->label, str, len)) {
3667 Chardev *chr = qemu_chr_find(chr_info->label);
3668 if (chr && CHARDEV_IS_RINGBUF(chr)) {
3669 readline_add_completion(rs, chr_info->label);
3670 }
3671 }
3672 list = list->next;
3673 }
3674 qapi_free_ChardevInfoList(start);
3675 }
3676
3677 void ringbuf_write_completion(ReadLineState *rs, int nb_args, const char *str)
3678 {
3679 if (nb_args != 2) {
3680 return;
3681 }
3682 ringbuf_completion(rs, str);
3683 }
3684
3685 void device_del_completion(ReadLineState *rs, int nb_args, const char *str)
3686 {
3687 size_t len;
3688
3689 if (nb_args != 2) {
3690 return;
3691 }
3692
3693 len = strlen(str);
3694 readline_set_completion_index(rs, len);
3695 peripheral_device_del_completion(rs, str, len);
3696 }
3697
3698 void object_del_completion(ReadLineState *rs, int nb_args, const char *str)
3699 {
3700 ObjectPropertyInfoList *list, *start;
3701 size_t len;
3702
3703 if (nb_args != 2) {
3704 return;
3705 }
3706 len = strlen(str);
3707 readline_set_completion_index(rs, len);
3708
3709 start = list = qmp_qom_list("/objects", NULL);
3710 while (list) {
3711 ObjectPropertyInfo *info = list->value;
3712
3713 if (!strncmp(info->type, "child<", 5)
3714 && !strncmp(info->name, str, len)) {
3715 readline_add_completion(rs, info->name);
3716 }
3717 list = list->next;
3718 }
3719 qapi_free_ObjectPropertyInfoList(start);
3720 }
3721
3722 void sendkey_completion(ReadLineState *rs, int nb_args, const char *str)
3723 {
3724 int i;
3725 char *sep;
3726 size_t len;
3727
3728 if (nb_args != 2) {
3729 return;
3730 }
3731 sep = strrchr(str, '-');
3732 if (sep) {
3733 str = sep + 1;
3734 }
3735 len = strlen(str);
3736 readline_set_completion_index(rs, len);
3737 for (i = 0; i < Q_KEY_CODE__MAX; i++) {
3738 if (!strncmp(str, QKeyCode_str(i), len)) {
3739 readline_add_completion(rs, QKeyCode_str(i));
3740 }
3741 }
3742 }
3743
3744 void set_link_completion(ReadLineState *rs, int nb_args, const char *str)
3745 {
3746 size_t len;
3747
3748 len = strlen(str);
3749 readline_set_completion_index(rs, len);
3750 if (nb_args == 2) {
3751 NetClientState *ncs[MAX_QUEUE_NUM];
3752 int count, i;
3753 count = qemu_find_net_clients_except(NULL, ncs,
3754 NET_CLIENT_DRIVER_NONE,
3755 MAX_QUEUE_NUM);
3756 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
3757 const char *name = ncs[i]->name;
3758 if (!strncmp(str, name, len)) {
3759 readline_add_completion(rs, name);
3760 }
3761 }
3762 } else if (nb_args == 3) {
3763 add_completion_option(rs, str, "on");
3764 add_completion_option(rs, str, "off");
3765 }
3766 }
3767
3768 void netdev_del_completion(ReadLineState *rs, int nb_args, const char *str)
3769 {
3770 int len, count, i;
3771 NetClientState *ncs[MAX_QUEUE_NUM];
3772
3773 if (nb_args != 2) {
3774 return;
3775 }
3776
3777 len = strlen(str);
3778 readline_set_completion_index(rs, len);
3779 count = qemu_find_net_clients_except(NULL, ncs, NET_CLIENT_DRIVER_NIC,
3780 MAX_QUEUE_NUM);
3781 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
3782 QemuOpts *opts;
3783 const char *name = ncs[i]->name;
3784 if (strncmp(str, name, len)) {
3785 continue;
3786 }
3787 opts = qemu_opts_find(qemu_find_opts_err("netdev", NULL), name);
3788 if (opts) {
3789 readline_add_completion(rs, name);
3790 }
3791 }
3792 }
3793
3794 void info_trace_events_completion(ReadLineState *rs, int nb_args, const char *str)
3795 {
3796 size_t len;
3797
3798 len = strlen(str);
3799 readline_set_completion_index(rs, len);
3800 if (nb_args == 2) {
3801 TraceEventIter iter;
3802 TraceEvent *ev;
3803 char *pattern = g_strdup_printf("%s*", str);
3804 trace_event_iter_init(&iter, pattern);
3805 while ((ev = trace_event_iter_next(&iter)) != NULL) {
3806 readline_add_completion(rs, trace_event_get_name(ev));
3807 }
3808 g_free(pattern);
3809 }
3810 }
3811
3812 void trace_event_completion(ReadLineState *rs, int nb_args, const char *str)
3813 {
3814 size_t len;
3815
3816 len = strlen(str);
3817 readline_set_completion_index(rs, len);
3818 if (nb_args == 2) {
3819 TraceEventIter iter;
3820 TraceEvent *ev;
3821 char *pattern = g_strdup_printf("%s*", str);
3822 trace_event_iter_init(&iter, pattern);
3823 while ((ev = trace_event_iter_next(&iter)) != NULL) {
3824 readline_add_completion(rs, trace_event_get_name(ev));
3825 }
3826 g_free(pattern);
3827 } else if (nb_args == 3) {
3828 add_completion_option(rs, str, "on");
3829 add_completion_option(rs, str, "off");
3830 }
3831 }
3832
3833 void watchdog_action_completion(ReadLineState *rs, int nb_args, const char *str)
3834 {
3835 int i;
3836
3837 if (nb_args != 2) {
3838 return;
3839 }
3840 readline_set_completion_index(rs, strlen(str));
3841 for (i = 0; i < WATCHDOG_ACTION__MAX; i++) {
3842 add_completion_option(rs, str, WatchdogAction_str(i));
3843 }
3844 }
3845
3846 void migrate_set_capability_completion(ReadLineState *rs, int nb_args,
3847 const char *str)
3848 {
3849 size_t len;
3850
3851 len = strlen(str);
3852 readline_set_completion_index(rs, len);
3853 if (nb_args == 2) {
3854 int i;
3855 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
3856 const char *name = MigrationCapability_str(i);
3857 if (!strncmp(str, name, len)) {
3858 readline_add_completion(rs, name);
3859 }
3860 }
3861 } else if (nb_args == 3) {
3862 add_completion_option(rs, str, "on");
3863 add_completion_option(rs, str, "off");
3864 }
3865 }
3866
3867 void migrate_set_parameter_completion(ReadLineState *rs, int nb_args,
3868 const char *str)
3869 {
3870 size_t len;
3871
3872 len = strlen(str);
3873 readline_set_completion_index(rs, len);
3874 if (nb_args == 2) {
3875 int i;
3876 for (i = 0; i < MIGRATION_PARAMETER__MAX; i++) {
3877 const char *name = MigrationParameter_str(i);
3878 if (!strncmp(str, name, len)) {
3879 readline_add_completion(rs, name);
3880 }
3881 }
3882 }
3883 }
3884
3885 static void vm_completion(ReadLineState *rs, const char *str)
3886 {
3887 size_t len;
3888 BlockDriverState *bs;
3889 BdrvNextIterator it;
3890
3891 len = strlen(str);
3892 readline_set_completion_index(rs, len);
3893
3894 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3895 SnapshotInfoList *snapshots, *snapshot;
3896 AioContext *ctx = bdrv_get_aio_context(bs);
3897 bool ok = false;
3898
3899 aio_context_acquire(ctx);
3900 if (bdrv_can_snapshot(bs)) {
3901 ok = bdrv_query_snapshot_info_list(bs, &snapshots, NULL) == 0;
3902 }
3903 aio_context_release(ctx);
3904 if (!ok) {
3905 continue;
3906 }
3907
3908 snapshot = snapshots;
3909 while (snapshot) {
3910 char *completion = snapshot->value->name;
3911 if (!strncmp(str, completion, len)) {
3912 readline_add_completion(rs, completion);
3913 }
3914 completion = snapshot->value->id;
3915 if (!strncmp(str, completion, len)) {
3916 readline_add_completion(rs, completion);
3917 }
3918 snapshot = snapshot->next;
3919 }
3920 qapi_free_SnapshotInfoList(snapshots);
3921 }
3922
3923 }
3924
3925 void delvm_completion(ReadLineState *rs, int nb_args, const char *str)
3926 {
3927 if (nb_args == 2) {
3928 vm_completion(rs, str);
3929 }
3930 }
3931
3932 void loadvm_completion(ReadLineState *rs, int nb_args, const char *str)
3933 {
3934 if (nb_args == 2) {
3935 vm_completion(rs, str);
3936 }
3937 }
3938
3939 static void monitor_find_completion_by_table(Monitor *mon,
3940 const mon_cmd_t *cmd_table,
3941 char **args,
3942 int nb_args)
3943 {
3944 const char *cmdname;
3945 int i;
3946 const char *ptype, *old_ptype, *str, *name;
3947 const mon_cmd_t *cmd;
3948 BlockBackend *blk = NULL;
3949
3950 if (nb_args <= 1) {
3951 /* command completion */
3952 if (nb_args == 0)
3953 cmdname = "";
3954 else
3955 cmdname = args[0];
3956 readline_set_completion_index(mon->rs, strlen(cmdname));
3957 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
3958 if (!runstate_check(RUN_STATE_PRECONFIG) ||
3959 cmd_can_preconfig(cmd)) {
3960 cmd_completion(mon, cmdname, cmd->name);
3961 }
3962 }
3963 } else {
3964 /* find the command */
3965 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
3966 if (compare_cmd(args[0], cmd->name) &&
3967 (!runstate_check(RUN_STATE_PRECONFIG) ||
3968 cmd_can_preconfig(cmd))) {
3969 break;
3970 }
3971 }
3972 if (!cmd->name) {
3973 return;
3974 }
3975
3976 if (cmd->sub_table) {
3977 /* do the job again */
3978 monitor_find_completion_by_table(mon, cmd->sub_table,
3979 &args[1], nb_args - 1);
3980 return;
3981 }
3982 if (cmd->command_completion) {
3983 cmd->command_completion(mon->rs, nb_args, args[nb_args - 1]);
3984 return;
3985 }
3986
3987 ptype = next_arg_type(cmd->args_type);
3988 for(i = 0; i < nb_args - 2; i++) {
3989 if (*ptype != '\0') {
3990 ptype = next_arg_type(ptype);
3991 while (*ptype == '?')
3992 ptype = next_arg_type(ptype);
3993 }
3994 }
3995 str = args[nb_args - 1];
3996 old_ptype = NULL;
3997 while (*ptype == '-' && old_ptype != ptype) {
3998 old_ptype = ptype;
3999 ptype = next_arg_type(ptype);
4000 }
4001 switch(*ptype) {
4002 case 'F':
4003 /* file completion */
4004 readline_set_completion_index(mon->rs, strlen(str));
4005 file_completion(mon, str);
4006 break;
4007 case 'B':
4008 /* block device name completion */
4009 readline_set_completion_index(mon->rs, strlen(str));
4010 while ((blk = blk_next(blk)) != NULL) {
4011 name = blk_name(blk);
4012 if (str[0] == '\0' ||
4013 !strncmp(name, str, strlen(str))) {
4014 readline_add_completion(mon->rs, name);
4015 }
4016 }
4017 break;
4018 case 's':
4019 case 'S':
4020 if (!strcmp(cmd->name, "help|?")) {
4021 monitor_find_completion_by_table(mon, cmd_table,
4022 &args[1], nb_args - 1);
4023 }
4024 break;
4025 default:
4026 break;
4027 }
4028 }
4029 }
4030
4031 static void monitor_find_completion(void *opaque,
4032 const char *cmdline)
4033 {
4034 Monitor *mon = opaque;
4035 char *args[MAX_ARGS];
4036 int nb_args, len;
4037
4038 /* 1. parse the cmdline */
4039 if (parse_cmdline(cmdline, &nb_args, args) < 0) {
4040 return;
4041 }
4042
4043 /* if the line ends with a space, it means we want to complete the
4044 next arg */
4045 len = strlen(cmdline);
4046 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
4047 if (nb_args >= MAX_ARGS) {
4048 goto cleanup;
4049 }
4050 args[nb_args++] = g_strdup("");
4051 }
4052
4053 /* 2. auto complete according to args */
4054 monitor_find_completion_by_table(mon, mon->cmd_table, args, nb_args);
4055
4056 cleanup:
4057 free_cmdline_args(args, nb_args);
4058 }
4059
4060 static int monitor_can_read(void *opaque)
4061 {
4062 Monitor *mon = opaque;
4063
4064 return !atomic_mb_read(&mon->suspend_cnt);
4065 }
4066
4067 /*
4068 * Emit QMP response @rsp with ID @id to @mon.
4069 * Null @rsp can only happen for commands with QCO_NO_SUCCESS_RESP.
4070 * Nothing is emitted then.
4071 */
4072 static void monitor_qmp_respond(Monitor *mon, QDict *rsp, QObject *id)
4073 {
4074 if (rsp) {
4075 if (id) {
4076 qdict_put_obj(rsp, "id", qobject_ref(id));
4077 }
4078
4079 qmp_send_response(mon, rsp);
4080 }
4081 }
4082
4083 static void monitor_qmp_dispatch(Monitor *mon, QObject *req, QObject *id)
4084 {
4085 Monitor *old_mon;
4086 QDict *rsp;
4087 QDict *error;
4088
4089 old_mon = cur_mon;
4090 cur_mon = mon;
4091
4092 rsp = qmp_dispatch(mon->qmp.commands, req, qmp_oob_enabled(mon));
4093
4094 cur_mon = old_mon;
4095
4096 if (mon->qmp.commands == &qmp_cap_negotiation_commands) {
4097 error = qdict_get_qdict(rsp, "error");
4098 if (error
4099 && !g_strcmp0(qdict_get_try_str(error, "class"),
4100 QapiErrorClass_str(ERROR_CLASS_COMMAND_NOT_FOUND))) {
4101 /* Provide a more useful error message */
4102 qdict_del(error, "desc");
4103 qdict_put_str(error, "desc", "Expecting capabilities negotiation"
4104 " with 'qmp_capabilities'");
4105 }
4106 }
4107
4108 monitor_qmp_respond(mon, rsp, id);
4109 qobject_unref(rsp);
4110 }
4111
4112 /*
4113 * Pop a QMP request from a monitor request queue.
4114 * Return the request, or NULL all request queues are empty.
4115 * We are using round-robin fashion to pop the request, to avoid
4116 * processing commands only on a very busy monitor. To achieve that,
4117 * when we process one request on a specific monitor, we put that
4118 * monitor to the end of mon_list queue.
4119 *
4120 * Note: if the function returned with non-NULL, then the caller will
4121 * be with mon->qmp.qmp_queue_lock held, and the caller is responsible
4122 * to release it.
4123 */
4124 static QMPRequest *monitor_qmp_requests_pop_any_with_lock(void)
4125 {
4126 QMPRequest *req_obj = NULL;
4127 Monitor *mon;
4128
4129 qemu_mutex_lock(&monitor_lock);
4130
4131 QTAILQ_FOREACH(mon, &mon_list, entry) {
4132 qemu_mutex_lock(&mon->qmp.qmp_queue_lock);
4133 req_obj = g_queue_pop_head(mon->qmp.qmp_requests);
4134 if (req_obj) {
4135 /* With the lock of corresponding queue held */
4136 break;
4137 }
4138 qemu_mutex_unlock(&mon->qmp.qmp_queue_lock);
4139 }
4140
4141 if (req_obj) {
4142 /*
4143 * We found one request on the monitor. Degrade this monitor's
4144 * priority to lowest by re-inserting it to end of queue.
4145 */
4146 QTAILQ_REMOVE(&mon_list, mon, entry);
4147 QTAILQ_INSERT_TAIL(&mon_list, mon, entry);
4148 }
4149
4150 qemu_mutex_unlock(&monitor_lock);
4151
4152 return req_obj;
4153 }
4154
4155 static void monitor_qmp_bh_dispatcher(void *data)
4156 {
4157 QMPRequest *req_obj = monitor_qmp_requests_pop_any_with_lock();
4158 QDict *rsp;
4159 bool need_resume;
4160 Monitor *mon;
4161
4162 if (!req_obj) {
4163 return;
4164 }
4165
4166 mon = req_obj->mon;
4167 /* qmp_oob_enabled() might change after "qmp_capabilities" */
4168 need_resume = !qmp_oob_enabled(mon) ||
4169 mon->qmp.qmp_requests->length == QMP_REQ_QUEUE_LEN_MAX - 1;
4170 qemu_mutex_unlock(&mon->qmp.qmp_queue_lock);
4171 if (req_obj->req) {
4172 trace_monitor_qmp_cmd_in_band(qobject_get_try_str(req_obj->id) ?: "");
4173 monitor_qmp_dispatch(mon, req_obj->req, req_obj->id);
4174 } else {
4175 assert(req_obj->err);
4176 rsp = qmp_error_response(req_obj->err);
4177 req_obj->err = NULL;
4178 monitor_qmp_respond(mon, rsp, NULL);
4179 qobject_unref(rsp);
4180 }
4181
4182 if (need_resume) {
4183 /* Pairs with the monitor_suspend() in handle_qmp_command() */
4184 monitor_resume(mon);
4185 }
4186 qmp_request_free(req_obj);
4187
4188 /* Reschedule instead of looping so the main loop stays responsive */
4189 qemu_bh_schedule(qmp_dispatcher_bh);
4190 }
4191
4192 static void handle_qmp_command(void *opaque, QObject *req, Error *err)
4193 {
4194 Monitor *mon = opaque;
4195 QObject *id = NULL;
4196 QDict *qdict;
4197 QMPRequest *req_obj;
4198
4199 assert(!req != !err);
4200
4201 qdict = qobject_to(QDict, req);
4202 if (qdict) {
4203 id = qobject_ref(qdict_get(qdict, "id"));
4204 qdict_del(qdict, "id");
4205 } /* else will fail qmp_dispatch() */
4206
4207 if (req && trace_event_get_state_backends(TRACE_HANDLE_QMP_COMMAND)) {
4208 QString *req_json = qobject_to_json(req);
4209 trace_handle_qmp_command(mon, qstring_get_str(req_json));
4210 qobject_unref(req_json);
4211 }
4212
4213 if (qdict && qmp_is_oob(qdict)) {
4214 /* OOB commands are executed immediately */
4215 trace_monitor_qmp_cmd_out_of_band(qobject_get_try_str(id)
4216 ?: "");
4217 monitor_qmp_dispatch(mon, req, id);
4218 qobject_unref(req);
4219 qobject_unref(id);
4220 return;
4221 }
4222
4223 req_obj = g_new0(QMPRequest, 1);
4224 req_obj->mon = mon;
4225 req_obj->id = id;
4226 req_obj->req = req;
4227 req_obj->err = err;
4228
4229 /* Protect qmp_requests and fetching its length. */
4230 qemu_mutex_lock(&mon->qmp.qmp_queue_lock);
4231
4232 /*
4233 * Suspend the monitor when we can't queue more requests after
4234 * this one. Dequeuing in monitor_qmp_bh_dispatcher() will resume
4235 * it. Note that when OOB is disabled, we queue at most one
4236 * command, for backward compatibility.
4237 */
4238 if (!qmp_oob_enabled(mon) ||
4239 mon->qmp.qmp_requests->length == QMP_REQ_QUEUE_LEN_MAX - 1) {
4240 monitor_suspend(mon);
4241 }
4242
4243 /*
4244 * Put the request to the end of queue so that requests will be
4245 * handled in time order. Ownership for req_obj, req, id,
4246 * etc. will be delivered to the handler side.
4247 */
4248 assert(mon->qmp.qmp_requests->length < QMP_REQ_QUEUE_LEN_MAX);
4249 g_queue_push_tail(mon->qmp.qmp_requests, req_obj);
4250 qemu_mutex_unlock(&mon->qmp.qmp_queue_lock);
4251
4252 /* Kick the dispatcher routine */
4253 qemu_bh_schedule(qmp_dispatcher_bh);
4254 }
4255
4256 static void monitor_qmp_read(void *opaque, const uint8_t *buf, int size)
4257 {
4258 Monitor *mon = opaque;
4259
4260 json_message_parser_feed(&mon->qmp.parser, (const char *) buf, size);
4261 }
4262
4263 static void monitor_read(void *opaque, const uint8_t *buf, int size)
4264 {
4265 Monitor *old_mon = cur_mon;
4266 int i;
4267
4268 cur_mon = opaque;
4269
4270 if (cur_mon->rs) {
4271 for (i = 0; i < size; i++)
4272 readline_handle_byte(cur_mon->rs, buf[i]);
4273 } else {
4274 if (size == 0 || buf[size - 1] != 0)
4275 monitor_printf(cur_mon, "corrupted command\n");
4276 else
4277 handle_hmp_command(cur_mon, (char *)buf);
4278 }
4279
4280 cur_mon = old_mon;
4281 }
4282
4283 static void monitor_command_cb(void *opaque, const char *cmdline,
4284 void *readline_opaque)
4285 {
4286 Monitor *mon = opaque;
4287
4288 monitor_suspend(mon);
4289 handle_hmp_command(mon, cmdline);
4290 monitor_resume(mon);
4291 }
4292
4293 int monitor_suspend(Monitor *mon)
4294 {
4295 if (monitor_is_hmp_non_interactive(mon)) {
4296 return -ENOTTY;
4297 }
4298
4299 atomic_inc(&mon->suspend_cnt);
4300
4301 if (mon->use_io_thread) {
4302 /*
4303 * Kick I/O thread to make sure this takes effect. It'll be
4304 * evaluated again in prepare() of the watch object.
4305 */
4306 aio_notify(iothread_get_aio_context(mon_iothread));
4307 }
4308
4309 trace_monitor_suspend(mon, 1);
4310 return 0;
4311 }
4312
4313 static void monitor_accept_input(void *opaque)
4314 {
4315 Monitor *mon = opaque;
4316
4317 qemu_chr_fe_accept_input(&mon->chr);
4318 }
4319
4320 void monitor_resume(Monitor *mon)
4321 {
4322 if (monitor_is_hmp_non_interactive(mon)) {
4323 return;
4324 }
4325
4326 if (atomic_dec_fetch(&mon->suspend_cnt) == 0) {
4327 AioContext *ctx;
4328
4329 if (mon->use_io_thread) {
4330 ctx = iothread_get_aio_context(mon_iothread);
4331 } else {
4332 ctx = qemu_get_aio_context();
4333 }
4334
4335 if (!monitor_is_qmp(mon)) {
4336 assert(mon->rs);
4337 readline_show_prompt(mon->rs);
4338 }
4339
4340 aio_bh_schedule_oneshot(ctx, monitor_accept_input, mon);
4341 }
4342
4343 trace_monitor_suspend(mon, -1);
4344 }
4345
4346 static QDict *qmp_greeting(Monitor *mon)
4347 {
4348 QList *cap_list = qlist_new();
4349 QObject *ver = NULL;
4350 QMPCapability cap;
4351
4352 qmp_marshal_query_version(NULL, &ver, NULL);
4353
4354 for (cap = 0; cap < QMP_CAPABILITY__MAX; cap++) {
4355 if (mon->qmp.capab_offered[cap]) {
4356 qlist_append_str(cap_list, QMPCapability_str(cap));
4357 }
4358 }
4359
4360 return qdict_from_jsonf_nofail(
4361 "{'QMP': {'version': %p, 'capabilities': %p}}",
4362 ver, cap_list);
4363 }
4364
4365 static void monitor_qmp_event(void *opaque, int event)
4366 {
4367 QDict *data;
4368 Monitor *mon = opaque;
4369
4370 switch (event) {
4371 case CHR_EVENT_OPENED:
4372 mon->qmp.commands = &qmp_cap_negotiation_commands;
4373 monitor_qmp_caps_reset(mon);
4374 data = qmp_greeting(mon);
4375 qmp_send_response(mon, data);
4376 qobject_unref(data);
4377 mon_refcount++;
4378 break;
4379 case CHR_EVENT_CLOSED:
4380 /*
4381 * Note: this is only useful when the output of the chardev
4382 * backend is still open. For example, when the backend is
4383 * stdio, it's possible that stdout is still open when stdin
4384 * is closed.
4385 */
4386 monitor_qmp_cleanup_queues(mon);
4387 json_message_parser_destroy(&mon->qmp.parser);
4388 json_message_parser_init(&mon->qmp.parser, handle_qmp_command,
4389 mon, NULL);
4390 mon_refcount--;
4391 monitor_fdsets_cleanup();
4392 break;
4393 }
4394 }
4395
4396 static void monitor_event(void *opaque, int event)
4397 {
4398 Monitor *mon = opaque;
4399
4400 switch (event) {
4401 case CHR_EVENT_MUX_IN:
4402 qemu_mutex_lock(&mon->mon_lock);
4403 mon->mux_out = 0;
4404 qemu_mutex_unlock(&mon->mon_lock);
4405 if (mon->reset_seen) {
4406 readline_restart(mon->rs);
4407 monitor_resume(mon);
4408 monitor_flush(mon);
4409 } else {
4410 atomic_mb_set(&mon->suspend_cnt, 0);
4411 }
4412 break;
4413
4414 case CHR_EVENT_MUX_OUT:
4415 if (mon->reset_seen) {
4416 if (atomic_mb_read(&mon->suspend_cnt) == 0) {
4417 monitor_printf(mon, "\n");
4418 }
4419 monitor_flush(mon);
4420 monitor_suspend(mon);
4421 } else {
4422 atomic_inc(&mon->suspend_cnt);
4423 }
4424 qemu_mutex_lock(&mon->mon_lock);
4425 mon->mux_out = 1;
4426 qemu_mutex_unlock(&mon->mon_lock);
4427 break;
4428
4429 case CHR_EVENT_OPENED:
4430 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4431 "information\n", QEMU_VERSION);
4432 if (!mon->mux_out) {
4433 readline_restart(mon->rs);
4434 readline_show_prompt(mon->rs);
4435 }
4436 mon->reset_seen = 1;
4437 mon_refcount++;
4438 break;
4439
4440 case CHR_EVENT_CLOSED:
4441 mon_refcount--;
4442 monitor_fdsets_cleanup();
4443 break;
4444 }
4445 }
4446
4447 static int
4448 compare_mon_cmd(const void *a, const void *b)
4449 {
4450 return strcmp(((const mon_cmd_t *)a)->name,
4451 ((const mon_cmd_t *)b)->name);
4452 }
4453
4454 static void sortcmdlist(void)
4455 {
4456 int array_num;
4457 int elem_size = sizeof(mon_cmd_t);
4458
4459 array_num = sizeof(mon_cmds)/elem_size-1;
4460 qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd);
4461
4462 array_num = sizeof(info_cmds)/elem_size-1;
4463 qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd);
4464 }
4465
4466 static void monitor_iothread_init(void)
4467 {
4468 mon_iothread = iothread_create("mon_iothread", &error_abort);
4469 }
4470
4471 void monitor_init_globals(void)
4472 {
4473 monitor_init_qmp_commands();
4474 monitor_qapi_event_init();
4475 sortcmdlist();
4476 qemu_mutex_init(&monitor_lock);
4477 qemu_mutex_init(&mon_fdsets_lock);
4478
4479 /*
4480 * The dispatcher BH must run in the main loop thread, since we
4481 * have commands assuming that context. It would be nice to get
4482 * rid of those assumptions.
4483 */
4484 qmp_dispatcher_bh = aio_bh_new(iohandler_get_aio_context(),
4485 monitor_qmp_bh_dispatcher,
4486 NULL);
4487 }
4488
4489 /* These functions just adapt the readline interface in a typesafe way. We
4490 * could cast function pointers but that discards compiler checks.
4491 */
4492 static void GCC_FMT_ATTR(2, 3) monitor_readline_printf(void *opaque,
4493 const char *fmt, ...)
4494 {
4495 va_list ap;
4496 va_start(ap, fmt);
4497 monitor_vprintf(opaque, fmt, ap);
4498 va_end(ap);
4499 }
4500
4501 static void monitor_readline_flush(void *opaque)
4502 {
4503 monitor_flush(opaque);
4504 }
4505
4506 /*
4507 * Print to current monitor if we have one, else to stream.
4508 * TODO should return int, so callers can calculate width, but that
4509 * requires surgery to monitor_vprintf(). Left for another day.
4510 */
4511 void monitor_vfprintf(FILE *stream, const char *fmt, va_list ap)
4512 {
4513 if (cur_mon && !monitor_cur_is_qmp()) {
4514 monitor_vprintf(cur_mon, fmt, ap);
4515 } else {
4516 vfprintf(stream, fmt, ap);
4517 }
4518 }
4519
4520 /*
4521 * Print to current monitor if we have one, else to stderr.
4522 * TODO should return int, so callers can calculate width, but that
4523 * requires surgery to monitor_vprintf(). Left for another day.
4524 */
4525 void error_vprintf(const char *fmt, va_list ap)
4526 {
4527 monitor_vfprintf(stderr, fmt, ap);
4528 }
4529
4530 void error_vprintf_unless_qmp(const char *fmt, va_list ap)
4531 {
4532 if (cur_mon && !monitor_cur_is_qmp()) {
4533 monitor_vprintf(cur_mon, fmt, ap);
4534 } else if (!cur_mon) {
4535 vfprintf(stderr, fmt, ap);
4536 }
4537 }
4538
4539 static void monitor_list_append(Monitor *mon)
4540 {
4541 qemu_mutex_lock(&monitor_lock);
4542 /*
4543 * This prevents inserting new monitors during monitor_cleanup().
4544 * A cleaner solution would involve the main thread telling other
4545 * threads to terminate, waiting for their termination.
4546 */
4547 if (!monitor_destroyed) {
4548 QTAILQ_INSERT_HEAD(&mon_list, mon, entry);
4549 mon = NULL;
4550 }
4551 qemu_mutex_unlock(&monitor_lock);
4552
4553 if (mon) {
4554 monitor_data_destroy(mon);
4555 g_free(mon);
4556 }
4557 }
4558
4559 static void monitor_qmp_setup_handlers_bh(void *opaque)
4560 {
4561 Monitor *mon = opaque;
4562 GMainContext *context;
4563
4564 assert(mon->use_io_thread);
4565 context = iothread_get_g_main_context(mon_iothread);
4566 assert(context);
4567 qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read, monitor_qmp_read,
4568 monitor_qmp_event, NULL, mon, context, true);
4569 monitor_list_append(mon);
4570 }
4571
4572 void monitor_init(Chardev *chr, int flags)
4573 {
4574 Monitor *mon = g_malloc(sizeof(*mon));
4575 bool use_readline = flags & MONITOR_USE_READLINE;
4576
4577 /* Note: we run QMP monitor in I/O thread when @chr supports that */
4578 monitor_data_init(mon, false,
4579 (flags & MONITOR_USE_CONTROL)
4580 && qemu_chr_has_feature(chr,
4581 QEMU_CHAR_FEATURE_GCONTEXT));
4582
4583 qemu_chr_fe_init(&mon->chr, chr, &error_abort);
4584 mon->flags = flags;
4585 if (use_readline) {
4586 mon->rs = readline_init(monitor_readline_printf,
4587 monitor_readline_flush,
4588 mon,
4589 monitor_find_completion);
4590 monitor_read_command(mon, 0);
4591 }
4592
4593 if (monitor_is_qmp(mon)) {
4594 qemu_chr_fe_set_echo(&mon->chr, true);
4595 json_message_parser_init(&mon->qmp.parser, handle_qmp_command,
4596 mon, NULL);
4597 if (mon->use_io_thread) {
4598 /*
4599 * Make sure the old iowatch is gone. It's possible when
4600 * e.g. the chardev is in client mode, with wait=on.
4601 */
4602 remove_fd_in_watch(chr);
4603 /*
4604 * We can't call qemu_chr_fe_set_handlers() directly here
4605 * since chardev might be running in the monitor I/O
4606 * thread. Schedule a bottom half.
4607 */
4608 aio_bh_schedule_oneshot(iothread_get_aio_context(mon_iothread),
4609 monitor_qmp_setup_handlers_bh, mon);
4610 /* The bottom half will add @mon to @mon_list */
4611 return;
4612 } else {
4613 qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read,
4614 monitor_qmp_read, monitor_qmp_event,
4615 NULL, mon, NULL, true);
4616 }
4617 } else {
4618 qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read, monitor_read,
4619 monitor_event, NULL, mon, NULL, true);
4620 }
4621
4622 monitor_list_append(mon);
4623 }
4624
4625 void monitor_cleanup(void)
4626 {
4627 Monitor *mon, *next;
4628
4629 /*
4630 * We need to explicitly stop the I/O thread (but not destroy it),
4631 * clean up the monitor resources, then destroy the I/O thread since
4632 * we need to unregister from chardev below in
4633 * monitor_data_destroy(), and chardev is not thread-safe yet
4634 */
4635 if (mon_iothread) {
4636 iothread_stop(mon_iothread);
4637 }
4638
4639 /* Flush output buffers and destroy monitors */
4640 qemu_mutex_lock(&monitor_lock);
4641 monitor_destroyed = true;
4642 QTAILQ_FOREACH_SAFE(mon, &mon_list, entry, next) {
4643 QTAILQ_REMOVE(&mon_list, mon, entry);
4644 /* Permit QAPI event emission from character frontend release */
4645 qemu_mutex_unlock(&monitor_lock);
4646 monitor_flush(mon);
4647 monitor_data_destroy(mon);
4648 qemu_mutex_lock(&monitor_lock);
4649 g_free(mon);
4650 }
4651 qemu_mutex_unlock(&monitor_lock);
4652
4653 /* QEMUBHs needs to be deleted before destroying the I/O thread */
4654 qemu_bh_delete(qmp_dispatcher_bh);
4655 qmp_dispatcher_bh = NULL;
4656 if (mon_iothread) {
4657 iothread_destroy(mon_iothread);
4658 mon_iothread = NULL;
4659 }
4660 }
4661
4662 QemuOptsList qemu_mon_opts = {
4663 .name = "mon",
4664 .implied_opt_name = "chardev",
4665 .head = QTAILQ_HEAD_INITIALIZER(qemu_mon_opts.head),
4666 .desc = {
4667 {
4668 .name = "mode",
4669 .type = QEMU_OPT_STRING,
4670 },{
4671 .name = "chardev",
4672 .type = QEMU_OPT_STRING,
4673 },{
4674 .name = "pretty",
4675 .type = QEMU_OPT_BOOL,
4676 },
4677 { /* end of list */ }
4678 },
4679 };
4680
4681 #ifndef TARGET_I386
4682 void qmp_rtc_reset_reinjection(Error **errp)
4683 {
4684 error_setg(errp, QERR_FEATURE_DISABLED, "rtc-reset-reinjection");
4685 }
4686
4687 SevInfo *qmp_query_sev(Error **errp)
4688 {
4689 error_setg(errp, QERR_FEATURE_DISABLED, "query-sev");
4690 return NULL;
4691 }
4692
4693 SevLaunchMeasureInfo *qmp_query_sev_launch_measure(Error **errp)
4694 {
4695 error_setg(errp, QERR_FEATURE_DISABLED, "query-sev-launch-measure");
4696 return NULL;
4697 }
4698
4699 SevCapability *qmp_query_sev_capabilities(Error **errp)
4700 {
4701 error_setg(errp, QERR_FEATURE_DISABLED, "query-sev-capabilities");
4702 return NULL;
4703 }
4704 #endif
4705
4706 #ifndef TARGET_S390X
4707 void qmp_dump_skeys(const char *filename, Error **errp)
4708 {
4709 error_setg(errp, QERR_FEATURE_DISABLED, "dump-skeys");
4710 }
4711 #endif
4712
4713 #ifndef TARGET_ARM
4714 GICCapabilityList *qmp_query_gic_capabilities(Error **errp)
4715 {
4716 error_setg(errp, QERR_FEATURE_DISABLED, "query-gic-capabilities");
4717 return NULL;
4718 }
4719 #endif
4720
4721 HotpluggableCPUList *qmp_query_hotpluggable_cpus(Error **errp)
4722 {
4723 MachineState *ms = MACHINE(qdev_get_machine());
4724 MachineClass *mc = MACHINE_GET_CLASS(ms);
4725
4726 if (!mc->has_hotpluggable_cpus) {
4727 error_setg(errp, QERR_FEATURE_DISABLED, "query-hotpluggable-cpus");
4728 return NULL;
4729 }
4730
4731 return machine_query_hotpluggable_cpus(ms);
4732 }