]> git.proxmox.com Git - mirror_qemu.git/blob - monitor.c
Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2018-12-13-v2' into staging
[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 TARGET_I386
1151 qmp_unregister_command(&qmp_commands, "rtc-reset-reinjection");
1152 qmp_unregister_command(&qmp_commands, "query-sev");
1153 qmp_unregister_command(&qmp_commands, "query-sev-launch-measure");
1154 qmp_unregister_command(&qmp_commands, "query-sev-capabilities");
1155 #endif
1156 #ifndef TARGET_S390X
1157 qmp_unregister_command(&qmp_commands, "dump-skeys");
1158 #endif
1159 #ifndef TARGET_ARM
1160 qmp_unregister_command(&qmp_commands, "query-gic-capabilities");
1161 #endif
1162 #if !defined(TARGET_S390X) && !defined(TARGET_I386)
1163 qmp_unregister_command(&qmp_commands, "query-cpu-model-expansion");
1164 #endif
1165 #if !defined(TARGET_S390X)
1166 qmp_unregister_command(&qmp_commands, "query-cpu-model-baseline");
1167 qmp_unregister_command(&qmp_commands, "query-cpu-model-comparison");
1168 #endif
1169 #if !defined(TARGET_PPC) && !defined(TARGET_ARM) && !defined(TARGET_I386) \
1170 && !defined(TARGET_S390X)
1171 qmp_unregister_command(&qmp_commands, "query-cpu-definitions");
1172 #endif
1173 }
1174
1175 static void monitor_init_qmp_commands(void)
1176 {
1177 /*
1178 * Two command lists:
1179 * - qmp_commands contains all QMP commands
1180 * - qmp_cap_negotiation_commands contains just
1181 * "qmp_capabilities", to enforce capability negotiation
1182 */
1183
1184 qmp_init_marshal(&qmp_commands);
1185
1186 qmp_register_command(&qmp_commands, "query-qmp-schema",
1187 qmp_query_qmp_schema, QCO_ALLOW_PRECONFIG);
1188 qmp_register_command(&qmp_commands, "device_add", qmp_device_add,
1189 QCO_NO_OPTIONS);
1190 qmp_register_command(&qmp_commands, "netdev_add", qmp_netdev_add,
1191 QCO_NO_OPTIONS);
1192
1193 qmp_unregister_commands_hack();
1194
1195 QTAILQ_INIT(&qmp_cap_negotiation_commands);
1196 qmp_register_command(&qmp_cap_negotiation_commands, "qmp_capabilities",
1197 qmp_marshal_qmp_capabilities, QCO_ALLOW_PRECONFIG);
1198 }
1199
1200 static bool qmp_oob_enabled(Monitor *mon)
1201 {
1202 return mon->qmp.capab[QMP_CAPABILITY_OOB];
1203 }
1204
1205 static void monitor_qmp_caps_reset(Monitor *mon)
1206 {
1207 memset(mon->qmp.capab_offered, 0, sizeof(mon->qmp.capab_offered));
1208 memset(mon->qmp.capab, 0, sizeof(mon->qmp.capab));
1209 mon->qmp.capab_offered[QMP_CAPABILITY_OOB] = mon->use_io_thread;
1210 }
1211
1212 /*
1213 * Accept QMP capabilities in @list for @mon.
1214 * On success, set mon->qmp.capab[], and return true.
1215 * On error, set @errp, and return false.
1216 */
1217 static bool qmp_caps_accept(Monitor *mon, QMPCapabilityList *list,
1218 Error **errp)
1219 {
1220 GString *unavailable = NULL;
1221 bool capab[QMP_CAPABILITY__MAX];
1222
1223 memset(capab, 0, sizeof(capab));
1224
1225 for (; list; list = list->next) {
1226 if (!mon->qmp.capab_offered[list->value]) {
1227 if (!unavailable) {
1228 unavailable = g_string_new(QMPCapability_str(list->value));
1229 } else {
1230 g_string_append_printf(unavailable, ", %s",
1231 QMPCapability_str(list->value));
1232 }
1233 }
1234 capab[list->value] = true;
1235 }
1236
1237 if (unavailable) {
1238 error_setg(errp, "Capability %s not available", unavailable->str);
1239 g_string_free(unavailable, true);
1240 return false;
1241 }
1242
1243 memcpy(mon->qmp.capab, capab, sizeof(capab));
1244 return true;
1245 }
1246
1247 void qmp_qmp_capabilities(bool has_enable, QMPCapabilityList *enable,
1248 Error **errp)
1249 {
1250 if (cur_mon->qmp.commands == &qmp_commands) {
1251 error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND,
1252 "Capabilities negotiation is already complete, command "
1253 "ignored");
1254 return;
1255 }
1256
1257 if (!qmp_caps_accept(cur_mon, enable, errp)) {
1258 return;
1259 }
1260
1261 cur_mon->qmp.commands = &qmp_commands;
1262 }
1263
1264 /* Set the current CPU defined by the user. Callers must hold BQL. */
1265 int monitor_set_cpu(int cpu_index)
1266 {
1267 CPUState *cpu;
1268
1269 cpu = qemu_get_cpu(cpu_index);
1270 if (cpu == NULL) {
1271 return -1;
1272 }
1273 g_free(cur_mon->mon_cpu_path);
1274 cur_mon->mon_cpu_path = object_get_canonical_path(OBJECT(cpu));
1275 return 0;
1276 }
1277
1278 /* Callers must hold BQL. */
1279 static CPUState *mon_get_cpu_sync(bool synchronize)
1280 {
1281 CPUState *cpu;
1282
1283 if (cur_mon->mon_cpu_path) {
1284 cpu = (CPUState *) object_resolve_path_type(cur_mon->mon_cpu_path,
1285 TYPE_CPU, NULL);
1286 if (!cpu) {
1287 g_free(cur_mon->mon_cpu_path);
1288 cur_mon->mon_cpu_path = NULL;
1289 }
1290 }
1291 if (!cur_mon->mon_cpu_path) {
1292 if (!first_cpu) {
1293 return NULL;
1294 }
1295 monitor_set_cpu(first_cpu->cpu_index);
1296 cpu = first_cpu;
1297 }
1298 if (synchronize) {
1299 cpu_synchronize_state(cpu);
1300 }
1301 return cpu;
1302 }
1303
1304 CPUState *mon_get_cpu(void)
1305 {
1306 return mon_get_cpu_sync(true);
1307 }
1308
1309 CPUArchState *mon_get_cpu_env(void)
1310 {
1311 CPUState *cs = mon_get_cpu();
1312
1313 return cs ? cs->env_ptr : NULL;
1314 }
1315
1316 int monitor_get_cpu_index(void)
1317 {
1318 CPUState *cs = mon_get_cpu_sync(false);
1319
1320 return cs ? cs->cpu_index : UNASSIGNED_CPU_INDEX;
1321 }
1322
1323 static void hmp_info_registers(Monitor *mon, const QDict *qdict)
1324 {
1325 bool all_cpus = qdict_get_try_bool(qdict, "cpustate_all", false);
1326 CPUState *cs;
1327
1328 if (all_cpus) {
1329 CPU_FOREACH(cs) {
1330 monitor_printf(mon, "\nCPU#%d\n", cs->cpu_index);
1331 cpu_dump_state(cs, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU);
1332 }
1333 } else {
1334 cs = mon_get_cpu();
1335
1336 if (!cs) {
1337 monitor_printf(mon, "No CPU available\n");
1338 return;
1339 }
1340
1341 cpu_dump_state(cs, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU);
1342 }
1343 }
1344
1345 #ifdef CONFIG_TCG
1346 static void hmp_info_jit(Monitor *mon, const QDict *qdict)
1347 {
1348 if (!tcg_enabled()) {
1349 error_report("JIT information is only available with accel=tcg");
1350 return;
1351 }
1352
1353 dump_exec_info((FILE *)mon, monitor_fprintf);
1354 dump_drift_info((FILE *)mon, monitor_fprintf);
1355 }
1356
1357 static void hmp_info_opcount(Monitor *mon, const QDict *qdict)
1358 {
1359 dump_opcount_info((FILE *)mon, monitor_fprintf);
1360 }
1361 #endif
1362
1363 static void hmp_info_sync_profile(Monitor *mon, const QDict *qdict)
1364 {
1365 int64_t max = qdict_get_try_int(qdict, "max", 10);
1366 bool mean = qdict_get_try_bool(qdict, "mean", false);
1367 bool coalesce = !qdict_get_try_bool(qdict, "no_coalesce", false);
1368 enum QSPSortBy sort_by;
1369
1370 sort_by = mean ? QSP_SORT_BY_AVG_WAIT_TIME : QSP_SORT_BY_TOTAL_WAIT_TIME;
1371 qsp_report((FILE *)mon, monitor_fprintf, max, sort_by, coalesce);
1372 }
1373
1374 static void hmp_info_history(Monitor *mon, const QDict *qdict)
1375 {
1376 int i;
1377 const char *str;
1378
1379 if (!mon->rs)
1380 return;
1381 i = 0;
1382 for(;;) {
1383 str = readline_get_history(mon->rs, i);
1384 if (!str)
1385 break;
1386 monitor_printf(mon, "%d: '%s'\n", i, str);
1387 i++;
1388 }
1389 }
1390
1391 static void hmp_info_cpustats(Monitor *mon, const QDict *qdict)
1392 {
1393 CPUState *cs = mon_get_cpu();
1394
1395 if (!cs) {
1396 monitor_printf(mon, "No CPU available\n");
1397 return;
1398 }
1399 cpu_dump_statistics(cs, (FILE *)mon, &monitor_fprintf, 0);
1400 }
1401
1402 static void hmp_info_trace_events(Monitor *mon, const QDict *qdict)
1403 {
1404 const char *name = qdict_get_try_str(qdict, "name");
1405 bool has_vcpu = qdict_haskey(qdict, "vcpu");
1406 int vcpu = qdict_get_try_int(qdict, "vcpu", 0);
1407 TraceEventInfoList *events;
1408 TraceEventInfoList *elem;
1409 Error *local_err = NULL;
1410
1411 if (name == NULL) {
1412 name = "*";
1413 }
1414 if (vcpu < 0) {
1415 monitor_printf(mon, "argument vcpu must be positive");
1416 return;
1417 }
1418
1419 events = qmp_trace_event_get_state(name, has_vcpu, vcpu, &local_err);
1420 if (local_err) {
1421 error_report_err(local_err);
1422 return;
1423 }
1424
1425 for (elem = events; elem != NULL; elem = elem->next) {
1426 monitor_printf(mon, "%s : state %u\n",
1427 elem->value->name,
1428 elem->value->state == TRACE_EVENT_STATE_ENABLED ? 1 : 0);
1429 }
1430 qapi_free_TraceEventInfoList(events);
1431 }
1432
1433 void qmp_client_migrate_info(const char *protocol, const char *hostname,
1434 bool has_port, int64_t port,
1435 bool has_tls_port, int64_t tls_port,
1436 bool has_cert_subject, const char *cert_subject,
1437 Error **errp)
1438 {
1439 if (strcmp(protocol, "spice") == 0) {
1440 if (!qemu_using_spice(errp)) {
1441 return;
1442 }
1443
1444 if (!has_port && !has_tls_port) {
1445 error_setg(errp, QERR_MISSING_PARAMETER, "port/tls-port");
1446 return;
1447 }
1448
1449 if (qemu_spice_migrate_info(hostname,
1450 has_port ? port : -1,
1451 has_tls_port ? tls_port : -1,
1452 cert_subject)) {
1453 error_setg(errp, QERR_UNDEFINED_ERROR);
1454 return;
1455 }
1456 return;
1457 }
1458
1459 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "protocol", "spice");
1460 }
1461
1462 static void hmp_logfile(Monitor *mon, const QDict *qdict)
1463 {
1464 Error *err = NULL;
1465
1466 qemu_set_log_filename(qdict_get_str(qdict, "filename"), &err);
1467 if (err) {
1468 error_report_err(err);
1469 }
1470 }
1471
1472 static void hmp_log(Monitor *mon, const QDict *qdict)
1473 {
1474 int mask;
1475 const char *items = qdict_get_str(qdict, "items");
1476
1477 if (!strcmp(items, "none")) {
1478 mask = 0;
1479 } else {
1480 mask = qemu_str_to_log_mask(items);
1481 if (!mask) {
1482 help_cmd(mon, "log");
1483 return;
1484 }
1485 }
1486 qemu_set_log(mask);
1487 }
1488
1489 static void hmp_singlestep(Monitor *mon, const QDict *qdict)
1490 {
1491 const char *option = qdict_get_try_str(qdict, "option");
1492 if (!option || !strcmp(option, "on")) {
1493 singlestep = 1;
1494 } else if (!strcmp(option, "off")) {
1495 singlestep = 0;
1496 } else {
1497 monitor_printf(mon, "unexpected option %s\n", option);
1498 }
1499 }
1500
1501 static void hmp_gdbserver(Monitor *mon, const QDict *qdict)
1502 {
1503 const char *device = qdict_get_try_str(qdict, "device");
1504 if (!device)
1505 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1506 if (gdbserver_start(device) < 0) {
1507 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1508 device);
1509 } else if (strcmp(device, "none") == 0) {
1510 monitor_printf(mon, "Disabled gdbserver\n");
1511 } else {
1512 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1513 device);
1514 }
1515 }
1516
1517 static void hmp_watchdog_action(Monitor *mon, const QDict *qdict)
1518 {
1519 const char *action = qdict_get_str(qdict, "action");
1520 if (select_watchdog_action(action) == -1) {
1521 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1522 }
1523 }
1524
1525 static void monitor_printc(Monitor *mon, int c)
1526 {
1527 monitor_printf(mon, "'");
1528 switch(c) {
1529 case '\'':
1530 monitor_printf(mon, "\\'");
1531 break;
1532 case '\\':
1533 monitor_printf(mon, "\\\\");
1534 break;
1535 case '\n':
1536 monitor_printf(mon, "\\n");
1537 break;
1538 case '\r':
1539 monitor_printf(mon, "\\r");
1540 break;
1541 default:
1542 if (c >= 32 && c <= 126) {
1543 monitor_printf(mon, "%c", c);
1544 } else {
1545 monitor_printf(mon, "\\x%02x", c);
1546 }
1547 break;
1548 }
1549 monitor_printf(mon, "'");
1550 }
1551
1552 static void memory_dump(Monitor *mon, int count, int format, int wsize,
1553 hwaddr addr, int is_physical)
1554 {
1555 int l, line_size, i, max_digits, len;
1556 uint8_t buf[16];
1557 uint64_t v;
1558 CPUState *cs = mon_get_cpu();
1559
1560 if (!cs && (format == 'i' || !is_physical)) {
1561 monitor_printf(mon, "Can not dump without CPU\n");
1562 return;
1563 }
1564
1565 if (format == 'i') {
1566 monitor_disas(mon, cs, addr, count, is_physical);
1567 return;
1568 }
1569
1570 len = wsize * count;
1571 if (wsize == 1)
1572 line_size = 8;
1573 else
1574 line_size = 16;
1575 max_digits = 0;
1576
1577 switch(format) {
1578 case 'o':
1579 max_digits = DIV_ROUND_UP(wsize * 8, 3);
1580 break;
1581 default:
1582 case 'x':
1583 max_digits = (wsize * 8) / 4;
1584 break;
1585 case 'u':
1586 case 'd':
1587 max_digits = DIV_ROUND_UP(wsize * 8 * 10, 33);
1588 break;
1589 case 'c':
1590 wsize = 1;
1591 break;
1592 }
1593
1594 while (len > 0) {
1595 if (is_physical)
1596 monitor_printf(mon, TARGET_FMT_plx ":", addr);
1597 else
1598 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
1599 l = len;
1600 if (l > line_size)
1601 l = line_size;
1602 if (is_physical) {
1603 cpu_physical_memory_read(addr, buf, l);
1604 } else {
1605 if (cpu_memory_rw_debug(cs, addr, buf, l, 0) < 0) {
1606 monitor_printf(mon, " Cannot access memory\n");
1607 break;
1608 }
1609 }
1610 i = 0;
1611 while (i < l) {
1612 switch(wsize) {
1613 default:
1614 case 1:
1615 v = ldub_p(buf + i);
1616 break;
1617 case 2:
1618 v = lduw_p(buf + i);
1619 break;
1620 case 4:
1621 v = (uint32_t)ldl_p(buf + i);
1622 break;
1623 case 8:
1624 v = ldq_p(buf + i);
1625 break;
1626 }
1627 monitor_printf(mon, " ");
1628 switch(format) {
1629 case 'o':
1630 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
1631 break;
1632 case 'x':
1633 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
1634 break;
1635 case 'u':
1636 monitor_printf(mon, "%*" PRIu64, max_digits, v);
1637 break;
1638 case 'd':
1639 monitor_printf(mon, "%*" PRId64, max_digits, v);
1640 break;
1641 case 'c':
1642 monitor_printc(mon, v);
1643 break;
1644 }
1645 i += wsize;
1646 }
1647 monitor_printf(mon, "\n");
1648 addr += l;
1649 len -= l;
1650 }
1651 }
1652
1653 static void hmp_memory_dump(Monitor *mon, const QDict *qdict)
1654 {
1655 int count = qdict_get_int(qdict, "count");
1656 int format = qdict_get_int(qdict, "format");
1657 int size = qdict_get_int(qdict, "size");
1658 target_long addr = qdict_get_int(qdict, "addr");
1659
1660 memory_dump(mon, count, format, size, addr, 0);
1661 }
1662
1663 static void hmp_physical_memory_dump(Monitor *mon, const QDict *qdict)
1664 {
1665 int count = qdict_get_int(qdict, "count");
1666 int format = qdict_get_int(qdict, "format");
1667 int size = qdict_get_int(qdict, "size");
1668 hwaddr addr = qdict_get_int(qdict, "addr");
1669
1670 memory_dump(mon, count, format, size, addr, 1);
1671 }
1672
1673 static void *gpa2hva(MemoryRegion **p_mr, hwaddr addr, Error **errp)
1674 {
1675 MemoryRegionSection mrs = memory_region_find(get_system_memory(),
1676 addr, 1);
1677
1678 if (!mrs.mr) {
1679 error_setg(errp, "No memory is mapped at address 0x%" HWADDR_PRIx, addr);
1680 return NULL;
1681 }
1682
1683 if (!memory_region_is_ram(mrs.mr) && !memory_region_is_romd(mrs.mr)) {
1684 error_setg(errp, "Memory at address 0x%" HWADDR_PRIx "is not RAM", addr);
1685 memory_region_unref(mrs.mr);
1686 return NULL;
1687 }
1688
1689 *p_mr = mrs.mr;
1690 return qemu_map_ram_ptr(mrs.mr->ram_block, mrs.offset_within_region);
1691 }
1692
1693 static void hmp_gpa2hva(Monitor *mon, const QDict *qdict)
1694 {
1695 hwaddr addr = qdict_get_int(qdict, "addr");
1696 Error *local_err = NULL;
1697 MemoryRegion *mr = NULL;
1698 void *ptr;
1699
1700 ptr = gpa2hva(&mr, addr, &local_err);
1701 if (local_err) {
1702 error_report_err(local_err);
1703 return;
1704 }
1705
1706 monitor_printf(mon, "Host virtual address for 0x%" HWADDR_PRIx
1707 " (%s) is %p\n",
1708 addr, mr->name, ptr);
1709
1710 memory_region_unref(mr);
1711 }
1712
1713 #ifdef CONFIG_LINUX
1714 static uint64_t vtop(void *ptr, Error **errp)
1715 {
1716 uint64_t pinfo;
1717 uint64_t ret = -1;
1718 uintptr_t addr = (uintptr_t) ptr;
1719 uintptr_t pagesize = getpagesize();
1720 off_t offset = addr / pagesize * sizeof(pinfo);
1721 int fd;
1722
1723 fd = open("/proc/self/pagemap", O_RDONLY);
1724 if (fd == -1) {
1725 error_setg_errno(errp, errno, "Cannot open /proc/self/pagemap");
1726 return -1;
1727 }
1728
1729 /* Force copy-on-write if necessary. */
1730 atomic_add((uint8_t *)ptr, 0);
1731
1732 if (pread(fd, &pinfo, sizeof(pinfo), offset) != sizeof(pinfo)) {
1733 error_setg_errno(errp, errno, "Cannot read pagemap");
1734 goto out;
1735 }
1736 if ((pinfo & (1ull << 63)) == 0) {
1737 error_setg(errp, "Page not present");
1738 goto out;
1739 }
1740 ret = ((pinfo & 0x007fffffffffffffull) * pagesize) | (addr & (pagesize - 1));
1741
1742 out:
1743 close(fd);
1744 return ret;
1745 }
1746
1747 static void hmp_gpa2hpa(Monitor *mon, const QDict *qdict)
1748 {
1749 hwaddr addr = qdict_get_int(qdict, "addr");
1750 Error *local_err = NULL;
1751 MemoryRegion *mr = NULL;
1752 void *ptr;
1753 uint64_t physaddr;
1754
1755 ptr = gpa2hva(&mr, addr, &local_err);
1756 if (local_err) {
1757 error_report_err(local_err);
1758 return;
1759 }
1760
1761 physaddr = vtop(ptr, &local_err);
1762 if (local_err) {
1763 error_report_err(local_err);
1764 } else {
1765 monitor_printf(mon, "Host physical address for 0x%" HWADDR_PRIx
1766 " (%s) is 0x%" PRIx64 "\n",
1767 addr, mr->name, (uint64_t) physaddr);
1768 }
1769
1770 memory_region_unref(mr);
1771 }
1772 #endif
1773
1774 static void do_print(Monitor *mon, const QDict *qdict)
1775 {
1776 int format = qdict_get_int(qdict, "format");
1777 hwaddr val = qdict_get_int(qdict, "val");
1778
1779 switch(format) {
1780 case 'o':
1781 monitor_printf(mon, "%#" HWADDR_PRIo, val);
1782 break;
1783 case 'x':
1784 monitor_printf(mon, "%#" HWADDR_PRIx, val);
1785 break;
1786 case 'u':
1787 monitor_printf(mon, "%" HWADDR_PRIu, val);
1788 break;
1789 default:
1790 case 'd':
1791 monitor_printf(mon, "%" HWADDR_PRId, val);
1792 break;
1793 case 'c':
1794 monitor_printc(mon, val);
1795 break;
1796 }
1797 monitor_printf(mon, "\n");
1798 }
1799
1800 static void hmp_sum(Monitor *mon, const QDict *qdict)
1801 {
1802 uint32_t addr;
1803 uint16_t sum;
1804 uint32_t start = qdict_get_int(qdict, "start");
1805 uint32_t size = qdict_get_int(qdict, "size");
1806
1807 sum = 0;
1808 for(addr = start; addr < (start + size); addr++) {
1809 uint8_t val = address_space_ldub(&address_space_memory, addr,
1810 MEMTXATTRS_UNSPECIFIED, NULL);
1811 /* BSD sum algorithm ('sum' Unix command) */
1812 sum = (sum >> 1) | (sum << 15);
1813 sum += val;
1814 }
1815 monitor_printf(mon, "%05d\n", sum);
1816 }
1817
1818 static int mouse_button_state;
1819
1820 static void hmp_mouse_move(Monitor *mon, const QDict *qdict)
1821 {
1822 int dx, dy, dz, button;
1823 const char *dx_str = qdict_get_str(qdict, "dx_str");
1824 const char *dy_str = qdict_get_str(qdict, "dy_str");
1825 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1826
1827 dx = strtol(dx_str, NULL, 0);
1828 dy = strtol(dy_str, NULL, 0);
1829 qemu_input_queue_rel(NULL, INPUT_AXIS_X, dx);
1830 qemu_input_queue_rel(NULL, INPUT_AXIS_Y, dy);
1831
1832 if (dz_str) {
1833 dz = strtol(dz_str, NULL, 0);
1834 if (dz != 0) {
1835 button = (dz > 0) ? INPUT_BUTTON_WHEEL_UP : INPUT_BUTTON_WHEEL_DOWN;
1836 qemu_input_queue_btn(NULL, button, true);
1837 qemu_input_event_sync();
1838 qemu_input_queue_btn(NULL, button, false);
1839 }
1840 }
1841 qemu_input_event_sync();
1842 }
1843
1844 static void hmp_mouse_button(Monitor *mon, const QDict *qdict)
1845 {
1846 static uint32_t bmap[INPUT_BUTTON__MAX] = {
1847 [INPUT_BUTTON_LEFT] = MOUSE_EVENT_LBUTTON,
1848 [INPUT_BUTTON_MIDDLE] = MOUSE_EVENT_MBUTTON,
1849 [INPUT_BUTTON_RIGHT] = MOUSE_EVENT_RBUTTON,
1850 };
1851 int button_state = qdict_get_int(qdict, "button_state");
1852
1853 if (mouse_button_state == button_state) {
1854 return;
1855 }
1856 qemu_input_update_buttons(NULL, bmap, mouse_button_state, button_state);
1857 qemu_input_event_sync();
1858 mouse_button_state = button_state;
1859 }
1860
1861 static void hmp_ioport_read(Monitor *mon, const QDict *qdict)
1862 {
1863 int size = qdict_get_int(qdict, "size");
1864 int addr = qdict_get_int(qdict, "addr");
1865 int has_index = qdict_haskey(qdict, "index");
1866 uint32_t val;
1867 int suffix;
1868
1869 if (has_index) {
1870 int index = qdict_get_int(qdict, "index");
1871 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
1872 addr++;
1873 }
1874 addr &= 0xffff;
1875
1876 switch(size) {
1877 default:
1878 case 1:
1879 val = cpu_inb(addr);
1880 suffix = 'b';
1881 break;
1882 case 2:
1883 val = cpu_inw(addr);
1884 suffix = 'w';
1885 break;
1886 case 4:
1887 val = cpu_inl(addr);
1888 suffix = 'l';
1889 break;
1890 }
1891 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1892 suffix, addr, size * 2, val);
1893 }
1894
1895 static void hmp_ioport_write(Monitor *mon, const QDict *qdict)
1896 {
1897 int size = qdict_get_int(qdict, "size");
1898 int addr = qdict_get_int(qdict, "addr");
1899 int val = qdict_get_int(qdict, "val");
1900
1901 addr &= IOPORTS_MASK;
1902
1903 switch (size) {
1904 default:
1905 case 1:
1906 cpu_outb(addr, val);
1907 break;
1908 case 2:
1909 cpu_outw(addr, val);
1910 break;
1911 case 4:
1912 cpu_outl(addr, val);
1913 break;
1914 }
1915 }
1916
1917 static void hmp_boot_set(Monitor *mon, const QDict *qdict)
1918 {
1919 Error *local_err = NULL;
1920 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1921
1922 qemu_boot_set(bootdevice, &local_err);
1923 if (local_err) {
1924 error_report_err(local_err);
1925 } else {
1926 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1927 }
1928 }
1929
1930 static void hmp_info_mtree(Monitor *mon, const QDict *qdict)
1931 {
1932 bool flatview = qdict_get_try_bool(qdict, "flatview", false);
1933 bool dispatch_tree = qdict_get_try_bool(qdict, "dispatch_tree", false);
1934 bool owner = qdict_get_try_bool(qdict, "owner", false);
1935
1936 mtree_info((fprintf_function)monitor_printf, mon, flatview, dispatch_tree,
1937 owner);
1938 }
1939
1940 static void hmp_info_numa(Monitor *mon, const QDict *qdict)
1941 {
1942 int i;
1943 NumaNodeMem *node_mem;
1944 CpuInfoList *cpu_list, *cpu;
1945
1946 cpu_list = qmp_query_cpus(&error_abort);
1947 node_mem = g_new0(NumaNodeMem, nb_numa_nodes);
1948
1949 query_numa_node_mem(node_mem);
1950 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1951 for (i = 0; i < nb_numa_nodes; i++) {
1952 monitor_printf(mon, "node %d cpus:", i);
1953 for (cpu = cpu_list; cpu; cpu = cpu->next) {
1954 if (cpu->value->has_props && cpu->value->props->has_node_id &&
1955 cpu->value->props->node_id == i) {
1956 monitor_printf(mon, " %" PRIi64, cpu->value->CPU);
1957 }
1958 }
1959 monitor_printf(mon, "\n");
1960 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1961 node_mem[i].node_mem >> 20);
1962 monitor_printf(mon, "node %d plugged: %" PRId64 " MB\n", i,
1963 node_mem[i].node_plugged_mem >> 20);
1964 }
1965 qapi_free_CpuInfoList(cpu_list);
1966 g_free(node_mem);
1967 }
1968
1969 #ifdef CONFIG_PROFILER
1970
1971 int64_t dev_time;
1972
1973 static void hmp_info_profile(Monitor *mon, const QDict *qdict)
1974 {
1975 static int64_t last_cpu_exec_time;
1976 int64_t cpu_exec_time;
1977 int64_t delta;
1978
1979 cpu_exec_time = tcg_cpu_exec_time();
1980 delta = cpu_exec_time - last_cpu_exec_time;
1981
1982 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
1983 dev_time, dev_time / (double)NANOSECONDS_PER_SECOND);
1984 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
1985 delta, delta / (double)NANOSECONDS_PER_SECOND);
1986 last_cpu_exec_time = cpu_exec_time;
1987 dev_time = 0;
1988 }
1989 #else
1990 static void hmp_info_profile(Monitor *mon, const QDict *qdict)
1991 {
1992 monitor_printf(mon, "Internal profiler not compiled\n");
1993 }
1994 #endif
1995
1996 /* Capture support */
1997 static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
1998
1999 static void hmp_info_capture(Monitor *mon, const QDict *qdict)
2000 {
2001 int i;
2002 CaptureState *s;
2003
2004 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2005 monitor_printf(mon, "[%d]: ", i);
2006 s->ops.info (s->opaque);
2007 }
2008 }
2009
2010 static void hmp_stopcapture(Monitor *mon, const QDict *qdict)
2011 {
2012 int i;
2013 int n = qdict_get_int(qdict, "n");
2014 CaptureState *s;
2015
2016 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2017 if (i == n) {
2018 s->ops.destroy (s->opaque);
2019 QLIST_REMOVE (s, entries);
2020 g_free (s);
2021 return;
2022 }
2023 }
2024 }
2025
2026 static void hmp_wavcapture(Monitor *mon, const QDict *qdict)
2027 {
2028 const char *path = qdict_get_str(qdict, "path");
2029 int has_freq = qdict_haskey(qdict, "freq");
2030 int freq = qdict_get_try_int(qdict, "freq", -1);
2031 int has_bits = qdict_haskey(qdict, "bits");
2032 int bits = qdict_get_try_int(qdict, "bits", -1);
2033 int has_channels = qdict_haskey(qdict, "nchannels");
2034 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
2035 CaptureState *s;
2036
2037 s = g_malloc0 (sizeof (*s));
2038
2039 freq = has_freq ? freq : 44100;
2040 bits = has_bits ? bits : 16;
2041 nchannels = has_channels ? nchannels : 2;
2042
2043 if (wav_start_capture (s, path, freq, bits, nchannels)) {
2044 monitor_printf(mon, "Failed to add wave capture\n");
2045 g_free (s);
2046 return;
2047 }
2048 QLIST_INSERT_HEAD (&capture_head, s, entries);
2049 }
2050
2051 static qemu_acl *find_acl(Monitor *mon, const char *name)
2052 {
2053 qemu_acl *acl = qemu_acl_find(name);
2054
2055 if (!acl) {
2056 monitor_printf(mon, "acl: unknown list '%s'\n", name);
2057 }
2058 return acl;
2059 }
2060
2061 static void hmp_acl_show(Monitor *mon, const QDict *qdict)
2062 {
2063 const char *aclname = qdict_get_str(qdict, "aclname");
2064 qemu_acl *acl = find_acl(mon, aclname);
2065 qemu_acl_entry *entry;
2066 int i = 0;
2067
2068 if (acl) {
2069 monitor_printf(mon, "policy: %s\n",
2070 acl->defaultDeny ? "deny" : "allow");
2071 QTAILQ_FOREACH(entry, &acl->entries, next) {
2072 i++;
2073 monitor_printf(mon, "%d: %s %s\n", i,
2074 entry->deny ? "deny" : "allow", entry->match);
2075 }
2076 }
2077 }
2078
2079 static void hmp_acl_reset(Monitor *mon, const QDict *qdict)
2080 {
2081 const char *aclname = qdict_get_str(qdict, "aclname");
2082 qemu_acl *acl = find_acl(mon, aclname);
2083
2084 if (acl) {
2085 qemu_acl_reset(acl);
2086 monitor_printf(mon, "acl: removed all rules\n");
2087 }
2088 }
2089
2090 static void hmp_acl_policy(Monitor *mon, const QDict *qdict)
2091 {
2092 const char *aclname = qdict_get_str(qdict, "aclname");
2093 const char *policy = qdict_get_str(qdict, "policy");
2094 qemu_acl *acl = find_acl(mon, aclname);
2095
2096 if (acl) {
2097 if (strcmp(policy, "allow") == 0) {
2098 acl->defaultDeny = 0;
2099 monitor_printf(mon, "acl: policy set to 'allow'\n");
2100 } else if (strcmp(policy, "deny") == 0) {
2101 acl->defaultDeny = 1;
2102 monitor_printf(mon, "acl: policy set to 'deny'\n");
2103 } else {
2104 monitor_printf(mon, "acl: unknown policy '%s', "
2105 "expected 'deny' or 'allow'\n", policy);
2106 }
2107 }
2108 }
2109
2110 static void hmp_acl_add(Monitor *mon, const QDict *qdict)
2111 {
2112 const char *aclname = qdict_get_str(qdict, "aclname");
2113 const char *match = qdict_get_str(qdict, "match");
2114 const char *policy = qdict_get_str(qdict, "policy");
2115 int has_index = qdict_haskey(qdict, "index");
2116 int index = qdict_get_try_int(qdict, "index", -1);
2117 qemu_acl *acl = find_acl(mon, aclname);
2118 int deny, ret;
2119
2120 if (acl) {
2121 if (strcmp(policy, "allow") == 0) {
2122 deny = 0;
2123 } else if (strcmp(policy, "deny") == 0) {
2124 deny = 1;
2125 } else {
2126 monitor_printf(mon, "acl: unknown policy '%s', "
2127 "expected 'deny' or 'allow'\n", policy);
2128 return;
2129 }
2130 if (has_index)
2131 ret = qemu_acl_insert(acl, deny, match, index);
2132 else
2133 ret = qemu_acl_append(acl, deny, match);
2134 if (ret < 0)
2135 monitor_printf(mon, "acl: unable to add acl entry\n");
2136 else
2137 monitor_printf(mon, "acl: added rule at position %d\n", ret);
2138 }
2139 }
2140
2141 static void hmp_acl_remove(Monitor *mon, const QDict *qdict)
2142 {
2143 const char *aclname = qdict_get_str(qdict, "aclname");
2144 const char *match = qdict_get_str(qdict, "match");
2145 qemu_acl *acl = find_acl(mon, aclname);
2146 int ret;
2147
2148 if (acl) {
2149 ret = qemu_acl_remove(acl, match);
2150 if (ret < 0)
2151 monitor_printf(mon, "acl: no matching acl entry\n");
2152 else
2153 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
2154 }
2155 }
2156
2157 void qmp_getfd(const char *fdname, Error **errp)
2158 {
2159 mon_fd_t *monfd;
2160 int fd, tmp_fd;
2161
2162 fd = qemu_chr_fe_get_msgfd(&cur_mon->chr);
2163 if (fd == -1) {
2164 error_setg(errp, QERR_FD_NOT_SUPPLIED);
2165 return;
2166 }
2167
2168 if (qemu_isdigit(fdname[0])) {
2169 close(fd);
2170 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdname",
2171 "a name not starting with a digit");
2172 return;
2173 }
2174
2175 qemu_mutex_lock(&cur_mon->mon_lock);
2176 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
2177 if (strcmp(monfd->name, fdname) != 0) {
2178 continue;
2179 }
2180
2181 tmp_fd = monfd->fd;
2182 monfd->fd = fd;
2183 qemu_mutex_unlock(&cur_mon->mon_lock);
2184 /* Make sure close() is outside critical section */
2185 close(tmp_fd);
2186 return;
2187 }
2188
2189 monfd = g_malloc0(sizeof(mon_fd_t));
2190 monfd->name = g_strdup(fdname);
2191 monfd->fd = fd;
2192
2193 QLIST_INSERT_HEAD(&cur_mon->fds, monfd, next);
2194 qemu_mutex_unlock(&cur_mon->mon_lock);
2195 }
2196
2197 void qmp_closefd(const char *fdname, Error **errp)
2198 {
2199 mon_fd_t *monfd;
2200 int tmp_fd;
2201
2202 qemu_mutex_lock(&cur_mon->mon_lock);
2203 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
2204 if (strcmp(monfd->name, fdname) != 0) {
2205 continue;
2206 }
2207
2208 QLIST_REMOVE(monfd, next);
2209 tmp_fd = monfd->fd;
2210 g_free(monfd->name);
2211 g_free(monfd);
2212 qemu_mutex_unlock(&cur_mon->mon_lock);
2213 /* Make sure close() is outside critical section */
2214 close(tmp_fd);
2215 return;
2216 }
2217
2218 qemu_mutex_unlock(&cur_mon->mon_lock);
2219 error_setg(errp, QERR_FD_NOT_FOUND, fdname);
2220 }
2221
2222 int monitor_get_fd(Monitor *mon, const char *fdname, Error **errp)
2223 {
2224 mon_fd_t *monfd;
2225
2226 qemu_mutex_lock(&mon->mon_lock);
2227 QLIST_FOREACH(monfd, &mon->fds, next) {
2228 int fd;
2229
2230 if (strcmp(monfd->name, fdname) != 0) {
2231 continue;
2232 }
2233
2234 fd = monfd->fd;
2235
2236 /* caller takes ownership of fd */
2237 QLIST_REMOVE(monfd, next);
2238 g_free(monfd->name);
2239 g_free(monfd);
2240 qemu_mutex_unlock(&mon->mon_lock);
2241
2242 return fd;
2243 }
2244
2245 qemu_mutex_unlock(&mon->mon_lock);
2246 error_setg(errp, "File descriptor named '%s' has not been found", fdname);
2247 return -1;
2248 }
2249
2250 static void monitor_fdset_cleanup(MonFdset *mon_fdset)
2251 {
2252 MonFdsetFd *mon_fdset_fd;
2253 MonFdsetFd *mon_fdset_fd_next;
2254
2255 QLIST_FOREACH_SAFE(mon_fdset_fd, &mon_fdset->fds, next, mon_fdset_fd_next) {
2256 if ((mon_fdset_fd->removed ||
2257 (QLIST_EMPTY(&mon_fdset->dup_fds) && mon_refcount == 0)) &&
2258 runstate_is_running()) {
2259 close(mon_fdset_fd->fd);
2260 g_free(mon_fdset_fd->opaque);
2261 QLIST_REMOVE(mon_fdset_fd, next);
2262 g_free(mon_fdset_fd);
2263 }
2264 }
2265
2266 if (QLIST_EMPTY(&mon_fdset->fds) && QLIST_EMPTY(&mon_fdset->dup_fds)) {
2267 QLIST_REMOVE(mon_fdset, next);
2268 g_free(mon_fdset);
2269 }
2270 }
2271
2272 static void monitor_fdsets_cleanup(void)
2273 {
2274 MonFdset *mon_fdset;
2275 MonFdset *mon_fdset_next;
2276
2277 qemu_mutex_lock(&mon_fdsets_lock);
2278 QLIST_FOREACH_SAFE(mon_fdset, &mon_fdsets, next, mon_fdset_next) {
2279 monitor_fdset_cleanup(mon_fdset);
2280 }
2281 qemu_mutex_unlock(&mon_fdsets_lock);
2282 }
2283
2284 AddfdInfo *qmp_add_fd(bool has_fdset_id, int64_t fdset_id, bool has_opaque,
2285 const char *opaque, Error **errp)
2286 {
2287 int fd;
2288 Monitor *mon = cur_mon;
2289 AddfdInfo *fdinfo;
2290
2291 fd = qemu_chr_fe_get_msgfd(&mon->chr);
2292 if (fd == -1) {
2293 error_setg(errp, QERR_FD_NOT_SUPPLIED);
2294 goto error;
2295 }
2296
2297 fdinfo = monitor_fdset_add_fd(fd, has_fdset_id, fdset_id,
2298 has_opaque, opaque, errp);
2299 if (fdinfo) {
2300 return fdinfo;
2301 }
2302
2303 error:
2304 if (fd != -1) {
2305 close(fd);
2306 }
2307 return NULL;
2308 }
2309
2310 void qmp_remove_fd(int64_t fdset_id, bool has_fd, int64_t fd, Error **errp)
2311 {
2312 MonFdset *mon_fdset;
2313 MonFdsetFd *mon_fdset_fd;
2314 char fd_str[60];
2315
2316 qemu_mutex_lock(&mon_fdsets_lock);
2317 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2318 if (mon_fdset->id != fdset_id) {
2319 continue;
2320 }
2321 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2322 if (has_fd) {
2323 if (mon_fdset_fd->fd != fd) {
2324 continue;
2325 }
2326 mon_fdset_fd->removed = true;
2327 break;
2328 } else {
2329 mon_fdset_fd->removed = true;
2330 }
2331 }
2332 if (has_fd && !mon_fdset_fd) {
2333 goto error;
2334 }
2335 monitor_fdset_cleanup(mon_fdset);
2336 qemu_mutex_unlock(&mon_fdsets_lock);
2337 return;
2338 }
2339
2340 error:
2341 qemu_mutex_unlock(&mon_fdsets_lock);
2342 if (has_fd) {
2343 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64 ", fd:%" PRId64,
2344 fdset_id, fd);
2345 } else {
2346 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64, fdset_id);
2347 }
2348 error_setg(errp, QERR_FD_NOT_FOUND, fd_str);
2349 }
2350
2351 FdsetInfoList *qmp_query_fdsets(Error **errp)
2352 {
2353 MonFdset *mon_fdset;
2354 MonFdsetFd *mon_fdset_fd;
2355 FdsetInfoList *fdset_list = NULL;
2356
2357 qemu_mutex_lock(&mon_fdsets_lock);
2358 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2359 FdsetInfoList *fdset_info = g_malloc0(sizeof(*fdset_info));
2360 FdsetFdInfoList *fdsetfd_list = NULL;
2361
2362 fdset_info->value = g_malloc0(sizeof(*fdset_info->value));
2363 fdset_info->value->fdset_id = mon_fdset->id;
2364
2365 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2366 FdsetFdInfoList *fdsetfd_info;
2367
2368 fdsetfd_info = g_malloc0(sizeof(*fdsetfd_info));
2369 fdsetfd_info->value = g_malloc0(sizeof(*fdsetfd_info->value));
2370 fdsetfd_info->value->fd = mon_fdset_fd->fd;
2371 if (mon_fdset_fd->opaque) {
2372 fdsetfd_info->value->has_opaque = true;
2373 fdsetfd_info->value->opaque = g_strdup(mon_fdset_fd->opaque);
2374 } else {
2375 fdsetfd_info->value->has_opaque = false;
2376 }
2377
2378 fdsetfd_info->next = fdsetfd_list;
2379 fdsetfd_list = fdsetfd_info;
2380 }
2381
2382 fdset_info->value->fds = fdsetfd_list;
2383
2384 fdset_info->next = fdset_list;
2385 fdset_list = fdset_info;
2386 }
2387 qemu_mutex_unlock(&mon_fdsets_lock);
2388
2389 return fdset_list;
2390 }
2391
2392 AddfdInfo *monitor_fdset_add_fd(int fd, bool has_fdset_id, int64_t fdset_id,
2393 bool has_opaque, const char *opaque,
2394 Error **errp)
2395 {
2396 MonFdset *mon_fdset = NULL;
2397 MonFdsetFd *mon_fdset_fd;
2398 AddfdInfo *fdinfo;
2399
2400 qemu_mutex_lock(&mon_fdsets_lock);
2401 if (has_fdset_id) {
2402 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2403 /* Break if match found or match impossible due to ordering by ID */
2404 if (fdset_id <= mon_fdset->id) {
2405 if (fdset_id < mon_fdset->id) {
2406 mon_fdset = NULL;
2407 }
2408 break;
2409 }
2410 }
2411 }
2412
2413 if (mon_fdset == NULL) {
2414 int64_t fdset_id_prev = -1;
2415 MonFdset *mon_fdset_cur = QLIST_FIRST(&mon_fdsets);
2416
2417 if (has_fdset_id) {
2418 if (fdset_id < 0) {
2419 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdset-id",
2420 "a non-negative value");
2421 qemu_mutex_unlock(&mon_fdsets_lock);
2422 return NULL;
2423 }
2424 /* Use specified fdset ID */
2425 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2426 mon_fdset_cur = mon_fdset;
2427 if (fdset_id < mon_fdset_cur->id) {
2428 break;
2429 }
2430 }
2431 } else {
2432 /* Use first available fdset ID */
2433 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2434 mon_fdset_cur = mon_fdset;
2435 if (fdset_id_prev == mon_fdset_cur->id - 1) {
2436 fdset_id_prev = mon_fdset_cur->id;
2437 continue;
2438 }
2439 break;
2440 }
2441 }
2442
2443 mon_fdset = g_malloc0(sizeof(*mon_fdset));
2444 if (has_fdset_id) {
2445 mon_fdset->id = fdset_id;
2446 } else {
2447 mon_fdset->id = fdset_id_prev + 1;
2448 }
2449
2450 /* The fdset list is ordered by fdset ID */
2451 if (!mon_fdset_cur) {
2452 QLIST_INSERT_HEAD(&mon_fdsets, mon_fdset, next);
2453 } else if (mon_fdset->id < mon_fdset_cur->id) {
2454 QLIST_INSERT_BEFORE(mon_fdset_cur, mon_fdset, next);
2455 } else {
2456 QLIST_INSERT_AFTER(mon_fdset_cur, mon_fdset, next);
2457 }
2458 }
2459
2460 mon_fdset_fd = g_malloc0(sizeof(*mon_fdset_fd));
2461 mon_fdset_fd->fd = fd;
2462 mon_fdset_fd->removed = false;
2463 if (has_opaque) {
2464 mon_fdset_fd->opaque = g_strdup(opaque);
2465 }
2466 QLIST_INSERT_HEAD(&mon_fdset->fds, mon_fdset_fd, next);
2467
2468 fdinfo = g_malloc0(sizeof(*fdinfo));
2469 fdinfo->fdset_id = mon_fdset->id;
2470 fdinfo->fd = mon_fdset_fd->fd;
2471
2472 qemu_mutex_unlock(&mon_fdsets_lock);
2473 return fdinfo;
2474 }
2475
2476 int monitor_fdset_get_fd(int64_t fdset_id, int flags)
2477 {
2478 #ifdef _WIN32
2479 return -ENOENT;
2480 #else
2481 MonFdset *mon_fdset;
2482 MonFdsetFd *mon_fdset_fd;
2483 int mon_fd_flags;
2484 int ret;
2485
2486 qemu_mutex_lock(&mon_fdsets_lock);
2487 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2488 if (mon_fdset->id != fdset_id) {
2489 continue;
2490 }
2491 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2492 mon_fd_flags = fcntl(mon_fdset_fd->fd, F_GETFL);
2493 if (mon_fd_flags == -1) {
2494 ret = -errno;
2495 goto out;
2496 }
2497
2498 if ((flags & O_ACCMODE) == (mon_fd_flags & O_ACCMODE)) {
2499 ret = mon_fdset_fd->fd;
2500 goto out;
2501 }
2502 }
2503 ret = -EACCES;
2504 goto out;
2505 }
2506 ret = -ENOENT;
2507
2508 out:
2509 qemu_mutex_unlock(&mon_fdsets_lock);
2510 return ret;
2511 #endif
2512 }
2513
2514 int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd)
2515 {
2516 MonFdset *mon_fdset;
2517 MonFdsetFd *mon_fdset_fd_dup;
2518
2519 qemu_mutex_lock(&mon_fdsets_lock);
2520 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2521 if (mon_fdset->id != fdset_id) {
2522 continue;
2523 }
2524 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2525 if (mon_fdset_fd_dup->fd == dup_fd) {
2526 goto err;
2527 }
2528 }
2529 mon_fdset_fd_dup = g_malloc0(sizeof(*mon_fdset_fd_dup));
2530 mon_fdset_fd_dup->fd = dup_fd;
2531 QLIST_INSERT_HEAD(&mon_fdset->dup_fds, mon_fdset_fd_dup, next);
2532 qemu_mutex_unlock(&mon_fdsets_lock);
2533 return 0;
2534 }
2535
2536 err:
2537 qemu_mutex_unlock(&mon_fdsets_lock);
2538 return -1;
2539 }
2540
2541 static int monitor_fdset_dup_fd_find_remove(int dup_fd, bool remove)
2542 {
2543 MonFdset *mon_fdset;
2544 MonFdsetFd *mon_fdset_fd_dup;
2545
2546 qemu_mutex_lock(&mon_fdsets_lock);
2547 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2548 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2549 if (mon_fdset_fd_dup->fd == dup_fd) {
2550 if (remove) {
2551 QLIST_REMOVE(mon_fdset_fd_dup, next);
2552 if (QLIST_EMPTY(&mon_fdset->dup_fds)) {
2553 monitor_fdset_cleanup(mon_fdset);
2554 }
2555 goto err;
2556 } else {
2557 qemu_mutex_unlock(&mon_fdsets_lock);
2558 return mon_fdset->id;
2559 }
2560 }
2561 }
2562 }
2563
2564 err:
2565 qemu_mutex_unlock(&mon_fdsets_lock);
2566 return -1;
2567 }
2568
2569 int monitor_fdset_dup_fd_find(int dup_fd)
2570 {
2571 return monitor_fdset_dup_fd_find_remove(dup_fd, false);
2572 }
2573
2574 void monitor_fdset_dup_fd_remove(int dup_fd)
2575 {
2576 monitor_fdset_dup_fd_find_remove(dup_fd, true);
2577 }
2578
2579 int monitor_fd_param(Monitor *mon, const char *fdname, Error **errp)
2580 {
2581 int fd;
2582 Error *local_err = NULL;
2583
2584 if (!qemu_isdigit(fdname[0]) && mon) {
2585 fd = monitor_get_fd(mon, fdname, &local_err);
2586 } else {
2587 fd = qemu_parse_fd(fdname);
2588 if (fd == -1) {
2589 error_setg(&local_err, "Invalid file descriptor number '%s'",
2590 fdname);
2591 }
2592 }
2593 if (local_err) {
2594 error_propagate(errp, local_err);
2595 assert(fd == -1);
2596 } else {
2597 assert(fd != -1);
2598 }
2599
2600 return fd;
2601 }
2602
2603 /* Please update hmp-commands.hx when adding or changing commands */
2604 static mon_cmd_t info_cmds[] = {
2605 #include "hmp-commands-info.h"
2606 { NULL, NULL, },
2607 };
2608
2609 /* mon_cmds and info_cmds would be sorted at runtime */
2610 static mon_cmd_t mon_cmds[] = {
2611 #include "hmp-commands.h"
2612 { NULL, NULL, },
2613 };
2614
2615 /*******************************************************************/
2616
2617 static const char *pch;
2618 static sigjmp_buf expr_env;
2619
2620
2621 static void GCC_FMT_ATTR(2, 3) QEMU_NORETURN
2622 expr_error(Monitor *mon, const char *fmt, ...)
2623 {
2624 va_list ap;
2625 va_start(ap, fmt);
2626 monitor_vprintf(mon, fmt, ap);
2627 monitor_printf(mon, "\n");
2628 va_end(ap);
2629 siglongjmp(expr_env, 1);
2630 }
2631
2632 /* return 0 if OK, -1 if not found */
2633 static int get_monitor_def(target_long *pval, const char *name)
2634 {
2635 const MonitorDef *md = target_monitor_defs();
2636 CPUState *cs = mon_get_cpu();
2637 void *ptr;
2638 uint64_t tmp = 0;
2639 int ret;
2640
2641 if (cs == NULL || md == NULL) {
2642 return -1;
2643 }
2644
2645 for(; md->name != NULL; md++) {
2646 if (compare_cmd(name, md->name)) {
2647 if (md->get_value) {
2648 *pval = md->get_value(md, md->offset);
2649 } else {
2650 CPUArchState *env = mon_get_cpu_env();
2651 ptr = (uint8_t *)env + md->offset;
2652 switch(md->type) {
2653 case MD_I32:
2654 *pval = *(int32_t *)ptr;
2655 break;
2656 case MD_TLONG:
2657 *pval = *(target_long *)ptr;
2658 break;
2659 default:
2660 *pval = 0;
2661 break;
2662 }
2663 }
2664 return 0;
2665 }
2666 }
2667
2668 ret = target_get_monitor_def(cs, name, &tmp);
2669 if (!ret) {
2670 *pval = (target_long) tmp;
2671 }
2672
2673 return ret;
2674 }
2675
2676 static void next(void)
2677 {
2678 if (*pch != '\0') {
2679 pch++;
2680 while (qemu_isspace(*pch))
2681 pch++;
2682 }
2683 }
2684
2685 static int64_t expr_sum(Monitor *mon);
2686
2687 static int64_t expr_unary(Monitor *mon)
2688 {
2689 int64_t n;
2690 char *p;
2691 int ret;
2692
2693 switch(*pch) {
2694 case '+':
2695 next();
2696 n = expr_unary(mon);
2697 break;
2698 case '-':
2699 next();
2700 n = -expr_unary(mon);
2701 break;
2702 case '~':
2703 next();
2704 n = ~expr_unary(mon);
2705 break;
2706 case '(':
2707 next();
2708 n = expr_sum(mon);
2709 if (*pch != ')') {
2710 expr_error(mon, "')' expected");
2711 }
2712 next();
2713 break;
2714 case '\'':
2715 pch++;
2716 if (*pch == '\0')
2717 expr_error(mon, "character constant expected");
2718 n = *pch;
2719 pch++;
2720 if (*pch != '\'')
2721 expr_error(mon, "missing terminating \' character");
2722 next();
2723 break;
2724 case '$':
2725 {
2726 char buf[128], *q;
2727 target_long reg=0;
2728
2729 pch++;
2730 q = buf;
2731 while ((*pch >= 'a' && *pch <= 'z') ||
2732 (*pch >= 'A' && *pch <= 'Z') ||
2733 (*pch >= '0' && *pch <= '9') ||
2734 *pch == '_' || *pch == '.') {
2735 if ((q - buf) < sizeof(buf) - 1)
2736 *q++ = *pch;
2737 pch++;
2738 }
2739 while (qemu_isspace(*pch))
2740 pch++;
2741 *q = 0;
2742 ret = get_monitor_def(&reg, buf);
2743 if (ret < 0)
2744 expr_error(mon, "unknown register");
2745 n = reg;
2746 }
2747 break;
2748 case '\0':
2749 expr_error(mon, "unexpected end of expression");
2750 n = 0;
2751 break;
2752 default:
2753 errno = 0;
2754 n = strtoull(pch, &p, 0);
2755 if (errno == ERANGE) {
2756 expr_error(mon, "number too large");
2757 }
2758 if (pch == p) {
2759 expr_error(mon, "invalid char '%c' in expression", *p);
2760 }
2761 pch = p;
2762 while (qemu_isspace(*pch))
2763 pch++;
2764 break;
2765 }
2766 return n;
2767 }
2768
2769
2770 static int64_t expr_prod(Monitor *mon)
2771 {
2772 int64_t val, val2;
2773 int op;
2774
2775 val = expr_unary(mon);
2776 for(;;) {
2777 op = *pch;
2778 if (op != '*' && op != '/' && op != '%')
2779 break;
2780 next();
2781 val2 = expr_unary(mon);
2782 switch(op) {
2783 default:
2784 case '*':
2785 val *= val2;
2786 break;
2787 case '/':
2788 case '%':
2789 if (val2 == 0)
2790 expr_error(mon, "division by zero");
2791 if (op == '/')
2792 val /= val2;
2793 else
2794 val %= val2;
2795 break;
2796 }
2797 }
2798 return val;
2799 }
2800
2801 static int64_t expr_logic(Monitor *mon)
2802 {
2803 int64_t val, val2;
2804 int op;
2805
2806 val = expr_prod(mon);
2807 for(;;) {
2808 op = *pch;
2809 if (op != '&' && op != '|' && op != '^')
2810 break;
2811 next();
2812 val2 = expr_prod(mon);
2813 switch(op) {
2814 default:
2815 case '&':
2816 val &= val2;
2817 break;
2818 case '|':
2819 val |= val2;
2820 break;
2821 case '^':
2822 val ^= val2;
2823 break;
2824 }
2825 }
2826 return val;
2827 }
2828
2829 static int64_t expr_sum(Monitor *mon)
2830 {
2831 int64_t val, val2;
2832 int op;
2833
2834 val = expr_logic(mon);
2835 for(;;) {
2836 op = *pch;
2837 if (op != '+' && op != '-')
2838 break;
2839 next();
2840 val2 = expr_logic(mon);
2841 if (op == '+')
2842 val += val2;
2843 else
2844 val -= val2;
2845 }
2846 return val;
2847 }
2848
2849 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
2850 {
2851 pch = *pp;
2852 if (sigsetjmp(expr_env, 0)) {
2853 *pp = pch;
2854 return -1;
2855 }
2856 while (qemu_isspace(*pch))
2857 pch++;
2858 *pval = expr_sum(mon);
2859 *pp = pch;
2860 return 0;
2861 }
2862
2863 static int get_double(Monitor *mon, double *pval, const char **pp)
2864 {
2865 const char *p = *pp;
2866 char *tailp;
2867 double d;
2868
2869 d = strtod(p, &tailp);
2870 if (tailp == p) {
2871 monitor_printf(mon, "Number expected\n");
2872 return -1;
2873 }
2874 if (d != d || d - d != 0) {
2875 /* NaN or infinity */
2876 monitor_printf(mon, "Bad number\n");
2877 return -1;
2878 }
2879 *pval = d;
2880 *pp = tailp;
2881 return 0;
2882 }
2883
2884 /*
2885 * Store the command-name in cmdname, and return a pointer to
2886 * the remaining of the command string.
2887 */
2888 static const char *get_command_name(const char *cmdline,
2889 char *cmdname, size_t nlen)
2890 {
2891 size_t len;
2892 const char *p, *pstart;
2893
2894 p = cmdline;
2895 while (qemu_isspace(*p))
2896 p++;
2897 if (*p == '\0')
2898 return NULL;
2899 pstart = p;
2900 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
2901 p++;
2902 len = p - pstart;
2903 if (len > nlen - 1)
2904 len = nlen - 1;
2905 memcpy(cmdname, pstart, len);
2906 cmdname[len] = '\0';
2907 return p;
2908 }
2909
2910 /**
2911 * Read key of 'type' into 'key' and return the current
2912 * 'type' pointer.
2913 */
2914 static char *key_get_info(const char *type, char **key)
2915 {
2916 size_t len;
2917 char *p, *str;
2918
2919 if (*type == ',')
2920 type++;
2921
2922 p = strchr(type, ':');
2923 if (!p) {
2924 *key = NULL;
2925 return NULL;
2926 }
2927 len = p - type;
2928
2929 str = g_malloc(len + 1);
2930 memcpy(str, type, len);
2931 str[len] = '\0';
2932
2933 *key = str;
2934 return ++p;
2935 }
2936
2937 static int default_fmt_format = 'x';
2938 static int default_fmt_size = 4;
2939
2940 static int is_valid_option(const char *c, const char *typestr)
2941 {
2942 char option[3];
2943
2944 option[0] = '-';
2945 option[1] = *c;
2946 option[2] = '\0';
2947
2948 typestr = strstr(typestr, option);
2949 return (typestr != NULL);
2950 }
2951
2952 static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
2953 const char *cmdname)
2954 {
2955 const mon_cmd_t *cmd;
2956
2957 for (cmd = disp_table; cmd->name != NULL; cmd++) {
2958 if (compare_cmd(cmdname, cmd->name)) {
2959 return cmd;
2960 }
2961 }
2962
2963 return NULL;
2964 }
2965
2966 /*
2967 * Parse command name from @cmdp according to command table @table.
2968 * If blank, return NULL.
2969 * Else, if no valid command can be found, report to @mon, and return
2970 * NULL.
2971 * Else, change @cmdp to point right behind the name, and return its
2972 * command table entry.
2973 * Do not assume the return value points into @table! It doesn't when
2974 * the command is found in a sub-command table.
2975 */
2976 static const mon_cmd_t *monitor_parse_command(Monitor *mon,
2977 const char *cmdp_start,
2978 const char **cmdp,
2979 mon_cmd_t *table)
2980 {
2981 const char *p;
2982 const mon_cmd_t *cmd;
2983 char cmdname[256];
2984
2985 /* extract the command name */
2986 p = get_command_name(*cmdp, cmdname, sizeof(cmdname));
2987 if (!p)
2988 return NULL;
2989
2990 cmd = search_dispatch_table(table, cmdname);
2991 if (!cmd) {
2992 monitor_printf(mon, "unknown command: '%.*s'\n",
2993 (int)(p - cmdp_start), cmdp_start);
2994 return NULL;
2995 }
2996 if (runstate_check(RUN_STATE_PRECONFIG) && !cmd_can_preconfig(cmd)) {
2997 monitor_printf(mon, "Command '%.*s' not available with -preconfig "
2998 "until after exit_preconfig.\n",
2999 (int)(p - cmdp_start), cmdp_start);
3000 return NULL;
3001 }
3002
3003 /* filter out following useless space */
3004 while (qemu_isspace(*p)) {
3005 p++;
3006 }
3007
3008 *cmdp = p;
3009 /* search sub command */
3010 if (cmd->sub_table != NULL && *p != '\0') {
3011 return monitor_parse_command(mon, cmdp_start, cmdp, cmd->sub_table);
3012 }
3013
3014 return cmd;
3015 }
3016
3017 /*
3018 * Parse arguments for @cmd.
3019 * If it can't be parsed, report to @mon, and return NULL.
3020 * Else, insert command arguments into a QDict, and return it.
3021 * Note: On success, caller has to free the QDict structure.
3022 */
3023
3024 static QDict *monitor_parse_arguments(Monitor *mon,
3025 const char **endp,
3026 const mon_cmd_t *cmd)
3027 {
3028 const char *typestr;
3029 char *key;
3030 int c;
3031 const char *p = *endp;
3032 char buf[1024];
3033 QDict *qdict = qdict_new();
3034
3035 /* parse the parameters */
3036 typestr = cmd->args_type;
3037 for(;;) {
3038 typestr = key_get_info(typestr, &key);
3039 if (!typestr)
3040 break;
3041 c = *typestr;
3042 typestr++;
3043 switch(c) {
3044 case 'F':
3045 case 'B':
3046 case 's':
3047 {
3048 int ret;
3049
3050 while (qemu_isspace(*p))
3051 p++;
3052 if (*typestr == '?') {
3053 typestr++;
3054 if (*p == '\0') {
3055 /* no optional string: NULL argument */
3056 break;
3057 }
3058 }
3059 ret = get_str(buf, sizeof(buf), &p);
3060 if (ret < 0) {
3061 switch(c) {
3062 case 'F':
3063 monitor_printf(mon, "%s: filename expected\n",
3064 cmd->name);
3065 break;
3066 case 'B':
3067 monitor_printf(mon, "%s: block device name expected\n",
3068 cmd->name);
3069 break;
3070 default:
3071 monitor_printf(mon, "%s: string expected\n", cmd->name);
3072 break;
3073 }
3074 goto fail;
3075 }
3076 qdict_put_str(qdict, key, buf);
3077 }
3078 break;
3079 case 'O':
3080 {
3081 QemuOptsList *opts_list;
3082 QemuOpts *opts;
3083
3084 opts_list = qemu_find_opts(key);
3085 if (!opts_list || opts_list->desc->name) {
3086 goto bad_type;
3087 }
3088 while (qemu_isspace(*p)) {
3089 p++;
3090 }
3091 if (!*p)
3092 break;
3093 if (get_str(buf, sizeof(buf), &p) < 0) {
3094 goto fail;
3095 }
3096 opts = qemu_opts_parse_noisily(opts_list, buf, true);
3097 if (!opts) {
3098 goto fail;
3099 }
3100 qemu_opts_to_qdict(opts, qdict);
3101 qemu_opts_del(opts);
3102 }
3103 break;
3104 case '/':
3105 {
3106 int count, format, size;
3107
3108 while (qemu_isspace(*p))
3109 p++;
3110 if (*p == '/') {
3111 /* format found */
3112 p++;
3113 count = 1;
3114 if (qemu_isdigit(*p)) {
3115 count = 0;
3116 while (qemu_isdigit(*p)) {
3117 count = count * 10 + (*p - '0');
3118 p++;
3119 }
3120 }
3121 size = -1;
3122 format = -1;
3123 for(;;) {
3124 switch(*p) {
3125 case 'o':
3126 case 'd':
3127 case 'u':
3128 case 'x':
3129 case 'i':
3130 case 'c':
3131 format = *p++;
3132 break;
3133 case 'b':
3134 size = 1;
3135 p++;
3136 break;
3137 case 'h':
3138 size = 2;
3139 p++;
3140 break;
3141 case 'w':
3142 size = 4;
3143 p++;
3144 break;
3145 case 'g':
3146 case 'L':
3147 size = 8;
3148 p++;
3149 break;
3150 default:
3151 goto next;
3152 }
3153 }
3154 next:
3155 if (*p != '\0' && !qemu_isspace(*p)) {
3156 monitor_printf(mon, "invalid char in format: '%c'\n",
3157 *p);
3158 goto fail;
3159 }
3160 if (format < 0)
3161 format = default_fmt_format;
3162 if (format != 'i') {
3163 /* for 'i', not specifying a size gives -1 as size */
3164 if (size < 0)
3165 size = default_fmt_size;
3166 default_fmt_size = size;
3167 }
3168 default_fmt_format = format;
3169 } else {
3170 count = 1;
3171 format = default_fmt_format;
3172 if (format != 'i') {
3173 size = default_fmt_size;
3174 } else {
3175 size = -1;
3176 }
3177 }
3178 qdict_put_int(qdict, "count", count);
3179 qdict_put_int(qdict, "format", format);
3180 qdict_put_int(qdict, "size", size);
3181 }
3182 break;
3183 case 'i':
3184 case 'l':
3185 case 'M':
3186 {
3187 int64_t val;
3188
3189 while (qemu_isspace(*p))
3190 p++;
3191 if (*typestr == '?' || *typestr == '.') {
3192 if (*typestr == '?') {
3193 if (*p == '\0') {
3194 typestr++;
3195 break;
3196 }
3197 } else {
3198 if (*p == '.') {
3199 p++;
3200 while (qemu_isspace(*p))
3201 p++;
3202 } else {
3203 typestr++;
3204 break;
3205 }
3206 }
3207 typestr++;
3208 }
3209 if (get_expr(mon, &val, &p))
3210 goto fail;
3211 /* Check if 'i' is greater than 32-bit */
3212 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3213 monitor_printf(mon, "\'%s\' has failed: ", cmd->name);
3214 monitor_printf(mon, "integer is for 32-bit values\n");
3215 goto fail;
3216 } else if (c == 'M') {
3217 if (val < 0) {
3218 monitor_printf(mon, "enter a positive value\n");
3219 goto fail;
3220 }
3221 val *= MiB;
3222 }
3223 qdict_put_int(qdict, key, val);
3224 }
3225 break;
3226 case 'o':
3227 {
3228 int ret;
3229 uint64_t val;
3230 const char *end;
3231
3232 while (qemu_isspace(*p)) {
3233 p++;
3234 }
3235 if (*typestr == '?') {
3236 typestr++;
3237 if (*p == '\0') {
3238 break;
3239 }
3240 }
3241 ret = qemu_strtosz_MiB(p, &end, &val);
3242 if (ret < 0 || val > INT64_MAX) {
3243 monitor_printf(mon, "invalid size\n");
3244 goto fail;
3245 }
3246 qdict_put_int(qdict, key, val);
3247 p = end;
3248 }
3249 break;
3250 case 'T':
3251 {
3252 double val;
3253
3254 while (qemu_isspace(*p))
3255 p++;
3256 if (*typestr == '?') {
3257 typestr++;
3258 if (*p == '\0') {
3259 break;
3260 }
3261 }
3262 if (get_double(mon, &val, &p) < 0) {
3263 goto fail;
3264 }
3265 if (p[0] && p[1] == 's') {
3266 switch (*p) {
3267 case 'm':
3268 val /= 1e3; p += 2; break;
3269 case 'u':
3270 val /= 1e6; p += 2; break;
3271 case 'n':
3272 val /= 1e9; p += 2; break;
3273 }
3274 }
3275 if (*p && !qemu_isspace(*p)) {
3276 monitor_printf(mon, "Unknown unit suffix\n");
3277 goto fail;
3278 }
3279 qdict_put(qdict, key, qnum_from_double(val));
3280 }
3281 break;
3282 case 'b':
3283 {
3284 const char *beg;
3285 bool val;
3286
3287 while (qemu_isspace(*p)) {
3288 p++;
3289 }
3290 beg = p;
3291 while (qemu_isgraph(*p)) {
3292 p++;
3293 }
3294 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3295 val = true;
3296 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3297 val = false;
3298 } else {
3299 monitor_printf(mon, "Expected 'on' or 'off'\n");
3300 goto fail;
3301 }
3302 qdict_put_bool(qdict, key, val);
3303 }
3304 break;
3305 case '-':
3306 {
3307 const char *tmp = p;
3308 int skip_key = 0;
3309 /* option */
3310
3311 c = *typestr++;
3312 if (c == '\0')
3313 goto bad_type;
3314 while (qemu_isspace(*p))
3315 p++;
3316 if (*p == '-') {
3317 p++;
3318 if(c != *p) {
3319 if(!is_valid_option(p, typestr)) {
3320
3321 monitor_printf(mon, "%s: unsupported option -%c\n",
3322 cmd->name, *p);
3323 goto fail;
3324 } else {
3325 skip_key = 1;
3326 }
3327 }
3328 if(skip_key) {
3329 p = tmp;
3330 } else {
3331 /* has option */
3332 p++;
3333 qdict_put_bool(qdict, key, true);
3334 }
3335 }
3336 }
3337 break;
3338 case 'S':
3339 {
3340 /* package all remaining string */
3341 int len;
3342
3343 while (qemu_isspace(*p)) {
3344 p++;
3345 }
3346 if (*typestr == '?') {
3347 typestr++;
3348 if (*p == '\0') {
3349 /* no remaining string: NULL argument */
3350 break;
3351 }
3352 }
3353 len = strlen(p);
3354 if (len <= 0) {
3355 monitor_printf(mon, "%s: string expected\n",
3356 cmd->name);
3357 goto fail;
3358 }
3359 qdict_put_str(qdict, key, p);
3360 p += len;
3361 }
3362 break;
3363 default:
3364 bad_type:
3365 monitor_printf(mon, "%s: unknown type '%c'\n", cmd->name, c);
3366 goto fail;
3367 }
3368 g_free(key);
3369 key = NULL;
3370 }
3371 /* check that all arguments were parsed */
3372 while (qemu_isspace(*p))
3373 p++;
3374 if (*p != '\0') {
3375 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3376 cmd->name);
3377 goto fail;
3378 }
3379
3380 return qdict;
3381
3382 fail:
3383 qobject_unref(qdict);
3384 g_free(key);
3385 return NULL;
3386 }
3387
3388 static void handle_hmp_command(Monitor *mon, const char *cmdline)
3389 {
3390 QDict *qdict;
3391 const mon_cmd_t *cmd;
3392 const char *cmd_start = cmdline;
3393
3394 trace_handle_hmp_command(mon, cmdline);
3395
3396 cmd = monitor_parse_command(mon, cmdline, &cmdline, mon->cmd_table);
3397 if (!cmd) {
3398 return;
3399 }
3400
3401 qdict = monitor_parse_arguments(mon, &cmdline, cmd);
3402 if (!qdict) {
3403 while (cmdline > cmd_start && qemu_isspace(cmdline[-1])) {
3404 cmdline--;
3405 }
3406 monitor_printf(mon, "Try \"help %.*s\" for more information\n",
3407 (int)(cmdline - cmd_start), cmd_start);
3408 return;
3409 }
3410
3411 cmd->cmd(mon, qdict);
3412 qobject_unref(qdict);
3413 }
3414
3415 static void cmd_completion(Monitor *mon, const char *name, const char *list)
3416 {
3417 const char *p, *pstart;
3418 char cmd[128];
3419 int len;
3420
3421 p = list;
3422 for(;;) {
3423 pstart = p;
3424 p = qemu_strchrnul(p, '|');
3425 len = p - pstart;
3426 if (len > sizeof(cmd) - 2)
3427 len = sizeof(cmd) - 2;
3428 memcpy(cmd, pstart, len);
3429 cmd[len] = '\0';
3430 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
3431 readline_add_completion(mon->rs, cmd);
3432 }
3433 if (*p == '\0')
3434 break;
3435 p++;
3436 }
3437 }
3438
3439 static void file_completion(Monitor *mon, const char *input)
3440 {
3441 DIR *ffs;
3442 struct dirent *d;
3443 char path[1024];
3444 char file[1024], file_prefix[1024];
3445 int input_path_len;
3446 const char *p;
3447
3448 p = strrchr(input, '/');
3449 if (!p) {
3450 input_path_len = 0;
3451 pstrcpy(file_prefix, sizeof(file_prefix), input);
3452 pstrcpy(path, sizeof(path), ".");
3453 } else {
3454 input_path_len = p - input + 1;
3455 memcpy(path, input, input_path_len);
3456 if (input_path_len > sizeof(path) - 1)
3457 input_path_len = sizeof(path) - 1;
3458 path[input_path_len] = '\0';
3459 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3460 }
3461
3462 ffs = opendir(path);
3463 if (!ffs)
3464 return;
3465 for(;;) {
3466 struct stat sb;
3467 d = readdir(ffs);
3468 if (!d)
3469 break;
3470
3471 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
3472 continue;
3473 }
3474
3475 if (strstart(d->d_name, file_prefix, NULL)) {
3476 memcpy(file, input, input_path_len);
3477 if (input_path_len < sizeof(file))
3478 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3479 d->d_name);
3480 /* stat the file to find out if it's a directory.
3481 * In that case add a slash to speed up typing long paths
3482 */
3483 if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) {
3484 pstrcat(file, sizeof(file), "/");
3485 }
3486 readline_add_completion(mon->rs, file);
3487 }
3488 }
3489 closedir(ffs);
3490 }
3491
3492 static const char *next_arg_type(const char *typestr)
3493 {
3494 const char *p = strchr(typestr, ':');
3495 return (p != NULL ? ++p : typestr);
3496 }
3497
3498 static void add_completion_option(ReadLineState *rs, const char *str,
3499 const char *option)
3500 {
3501 if (!str || !option) {
3502 return;
3503 }
3504 if (!strncmp(option, str, strlen(str))) {
3505 readline_add_completion(rs, option);
3506 }
3507 }
3508
3509 void chardev_add_completion(ReadLineState *rs, int nb_args, const char *str)
3510 {
3511 size_t len;
3512 ChardevBackendInfoList *list, *start;
3513
3514 if (nb_args != 2) {
3515 return;
3516 }
3517 len = strlen(str);
3518 readline_set_completion_index(rs, len);
3519
3520 start = list = qmp_query_chardev_backends(NULL);
3521 while (list) {
3522 const char *chr_name = list->value->name;
3523
3524 if (!strncmp(chr_name, str, len)) {
3525 readline_add_completion(rs, chr_name);
3526 }
3527 list = list->next;
3528 }
3529 qapi_free_ChardevBackendInfoList(start);
3530 }
3531
3532 void netdev_add_completion(ReadLineState *rs, int nb_args, const char *str)
3533 {
3534 size_t len;
3535 int i;
3536
3537 if (nb_args != 2) {
3538 return;
3539 }
3540 len = strlen(str);
3541 readline_set_completion_index(rs, len);
3542 for (i = 0; i < NET_CLIENT_DRIVER__MAX; i++) {
3543 add_completion_option(rs, str, NetClientDriver_str(i));
3544 }
3545 }
3546
3547 void device_add_completion(ReadLineState *rs, int nb_args, const char *str)
3548 {
3549 GSList *list, *elt;
3550 size_t len;
3551
3552 if (nb_args != 2) {
3553 return;
3554 }
3555
3556 len = strlen(str);
3557 readline_set_completion_index(rs, len);
3558 list = elt = object_class_get_list(TYPE_DEVICE, false);
3559 while (elt) {
3560 const char *name;
3561 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
3562 TYPE_DEVICE);
3563 name = object_class_get_name(OBJECT_CLASS(dc));
3564
3565 if (dc->user_creatable
3566 && !strncmp(name, str, len)) {
3567 readline_add_completion(rs, name);
3568 }
3569 elt = elt->next;
3570 }
3571 g_slist_free(list);
3572 }
3573
3574 void object_add_completion(ReadLineState *rs, int nb_args, const char *str)
3575 {
3576 GSList *list, *elt;
3577 size_t len;
3578
3579 if (nb_args != 2) {
3580 return;
3581 }
3582
3583 len = strlen(str);
3584 readline_set_completion_index(rs, len);
3585 list = elt = object_class_get_list(TYPE_USER_CREATABLE, false);
3586 while (elt) {
3587 const char *name;
3588
3589 name = object_class_get_name(OBJECT_CLASS(elt->data));
3590 if (!strncmp(name, str, len) && strcmp(name, TYPE_USER_CREATABLE)) {
3591 readline_add_completion(rs, name);
3592 }
3593 elt = elt->next;
3594 }
3595 g_slist_free(list);
3596 }
3597
3598 static void peripheral_device_del_completion(ReadLineState *rs,
3599 const char *str, size_t len)
3600 {
3601 Object *peripheral = container_get(qdev_get_machine(), "/peripheral");
3602 GSList *list, *item;
3603
3604 list = qdev_build_hotpluggable_device_list(peripheral);
3605 if (!list) {
3606 return;
3607 }
3608
3609 for (item = list; item; item = g_slist_next(item)) {
3610 DeviceState *dev = item->data;
3611
3612 if (dev->id && !strncmp(str, dev->id, len)) {
3613 readline_add_completion(rs, dev->id);
3614 }
3615 }
3616
3617 g_slist_free(list);
3618 }
3619
3620 void chardev_remove_completion(ReadLineState *rs, int nb_args, const char *str)
3621 {
3622 size_t len;
3623 ChardevInfoList *list, *start;
3624
3625 if (nb_args != 2) {
3626 return;
3627 }
3628 len = strlen(str);
3629 readline_set_completion_index(rs, len);
3630
3631 start = list = qmp_query_chardev(NULL);
3632 while (list) {
3633 ChardevInfo *chr = list->value;
3634
3635 if (!strncmp(chr->label, str, len)) {
3636 readline_add_completion(rs, chr->label);
3637 }
3638 list = list->next;
3639 }
3640 qapi_free_ChardevInfoList(start);
3641 }
3642
3643 static void ringbuf_completion(ReadLineState *rs, const char *str)
3644 {
3645 size_t len;
3646 ChardevInfoList *list, *start;
3647
3648 len = strlen(str);
3649 readline_set_completion_index(rs, len);
3650
3651 start = list = qmp_query_chardev(NULL);
3652 while (list) {
3653 ChardevInfo *chr_info = list->value;
3654
3655 if (!strncmp(chr_info->label, str, len)) {
3656 Chardev *chr = qemu_chr_find(chr_info->label);
3657 if (chr && CHARDEV_IS_RINGBUF(chr)) {
3658 readline_add_completion(rs, chr_info->label);
3659 }
3660 }
3661 list = list->next;
3662 }
3663 qapi_free_ChardevInfoList(start);
3664 }
3665
3666 void ringbuf_write_completion(ReadLineState *rs, int nb_args, const char *str)
3667 {
3668 if (nb_args != 2) {
3669 return;
3670 }
3671 ringbuf_completion(rs, str);
3672 }
3673
3674 void device_del_completion(ReadLineState *rs, int nb_args, const char *str)
3675 {
3676 size_t len;
3677
3678 if (nb_args != 2) {
3679 return;
3680 }
3681
3682 len = strlen(str);
3683 readline_set_completion_index(rs, len);
3684 peripheral_device_del_completion(rs, str, len);
3685 }
3686
3687 void object_del_completion(ReadLineState *rs, int nb_args, const char *str)
3688 {
3689 ObjectPropertyInfoList *list, *start;
3690 size_t len;
3691
3692 if (nb_args != 2) {
3693 return;
3694 }
3695 len = strlen(str);
3696 readline_set_completion_index(rs, len);
3697
3698 start = list = qmp_qom_list("/objects", NULL);
3699 while (list) {
3700 ObjectPropertyInfo *info = list->value;
3701
3702 if (!strncmp(info->type, "child<", 5)
3703 && !strncmp(info->name, str, len)) {
3704 readline_add_completion(rs, info->name);
3705 }
3706 list = list->next;
3707 }
3708 qapi_free_ObjectPropertyInfoList(start);
3709 }
3710
3711 void sendkey_completion(ReadLineState *rs, int nb_args, const char *str)
3712 {
3713 int i;
3714 char *sep;
3715 size_t len;
3716
3717 if (nb_args != 2) {
3718 return;
3719 }
3720 sep = strrchr(str, '-');
3721 if (sep) {
3722 str = sep + 1;
3723 }
3724 len = strlen(str);
3725 readline_set_completion_index(rs, len);
3726 for (i = 0; i < Q_KEY_CODE__MAX; i++) {
3727 if (!strncmp(str, QKeyCode_str(i), len)) {
3728 readline_add_completion(rs, QKeyCode_str(i));
3729 }
3730 }
3731 }
3732
3733 void set_link_completion(ReadLineState *rs, int nb_args, const char *str)
3734 {
3735 size_t len;
3736
3737 len = strlen(str);
3738 readline_set_completion_index(rs, len);
3739 if (nb_args == 2) {
3740 NetClientState *ncs[MAX_QUEUE_NUM];
3741 int count, i;
3742 count = qemu_find_net_clients_except(NULL, ncs,
3743 NET_CLIENT_DRIVER_NONE,
3744 MAX_QUEUE_NUM);
3745 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
3746 const char *name = ncs[i]->name;
3747 if (!strncmp(str, name, len)) {
3748 readline_add_completion(rs, name);
3749 }
3750 }
3751 } else if (nb_args == 3) {
3752 add_completion_option(rs, str, "on");
3753 add_completion_option(rs, str, "off");
3754 }
3755 }
3756
3757 void netdev_del_completion(ReadLineState *rs, int nb_args, const char *str)
3758 {
3759 int len, count, i;
3760 NetClientState *ncs[MAX_QUEUE_NUM];
3761
3762 if (nb_args != 2) {
3763 return;
3764 }
3765
3766 len = strlen(str);
3767 readline_set_completion_index(rs, len);
3768 count = qemu_find_net_clients_except(NULL, ncs, NET_CLIENT_DRIVER_NIC,
3769 MAX_QUEUE_NUM);
3770 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
3771 QemuOpts *opts;
3772 const char *name = ncs[i]->name;
3773 if (strncmp(str, name, len)) {
3774 continue;
3775 }
3776 opts = qemu_opts_find(qemu_find_opts_err("netdev", NULL), name);
3777 if (opts) {
3778 readline_add_completion(rs, name);
3779 }
3780 }
3781 }
3782
3783 void info_trace_events_completion(ReadLineState *rs, int nb_args, const char *str)
3784 {
3785 size_t len;
3786
3787 len = strlen(str);
3788 readline_set_completion_index(rs, len);
3789 if (nb_args == 2) {
3790 TraceEventIter iter;
3791 TraceEvent *ev;
3792 char *pattern = g_strdup_printf("%s*", str);
3793 trace_event_iter_init(&iter, pattern);
3794 while ((ev = trace_event_iter_next(&iter)) != NULL) {
3795 readline_add_completion(rs, trace_event_get_name(ev));
3796 }
3797 g_free(pattern);
3798 }
3799 }
3800
3801 void trace_event_completion(ReadLineState *rs, int nb_args, const char *str)
3802 {
3803 size_t len;
3804
3805 len = strlen(str);
3806 readline_set_completion_index(rs, len);
3807 if (nb_args == 2) {
3808 TraceEventIter iter;
3809 TraceEvent *ev;
3810 char *pattern = g_strdup_printf("%s*", str);
3811 trace_event_iter_init(&iter, pattern);
3812 while ((ev = trace_event_iter_next(&iter)) != NULL) {
3813 readline_add_completion(rs, trace_event_get_name(ev));
3814 }
3815 g_free(pattern);
3816 } else if (nb_args == 3) {
3817 add_completion_option(rs, str, "on");
3818 add_completion_option(rs, str, "off");
3819 }
3820 }
3821
3822 void watchdog_action_completion(ReadLineState *rs, int nb_args, const char *str)
3823 {
3824 int i;
3825
3826 if (nb_args != 2) {
3827 return;
3828 }
3829 readline_set_completion_index(rs, strlen(str));
3830 for (i = 0; i < WATCHDOG_ACTION__MAX; i++) {
3831 add_completion_option(rs, str, WatchdogAction_str(i));
3832 }
3833 }
3834
3835 void migrate_set_capability_completion(ReadLineState *rs, int nb_args,
3836 const char *str)
3837 {
3838 size_t len;
3839
3840 len = strlen(str);
3841 readline_set_completion_index(rs, len);
3842 if (nb_args == 2) {
3843 int i;
3844 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
3845 const char *name = MigrationCapability_str(i);
3846 if (!strncmp(str, name, len)) {
3847 readline_add_completion(rs, name);
3848 }
3849 }
3850 } else if (nb_args == 3) {
3851 add_completion_option(rs, str, "on");
3852 add_completion_option(rs, str, "off");
3853 }
3854 }
3855
3856 void migrate_set_parameter_completion(ReadLineState *rs, int nb_args,
3857 const char *str)
3858 {
3859 size_t len;
3860
3861 len = strlen(str);
3862 readline_set_completion_index(rs, len);
3863 if (nb_args == 2) {
3864 int i;
3865 for (i = 0; i < MIGRATION_PARAMETER__MAX; i++) {
3866 const char *name = MigrationParameter_str(i);
3867 if (!strncmp(str, name, len)) {
3868 readline_add_completion(rs, name);
3869 }
3870 }
3871 }
3872 }
3873
3874 static void vm_completion(ReadLineState *rs, const char *str)
3875 {
3876 size_t len;
3877 BlockDriverState *bs;
3878 BdrvNextIterator it;
3879
3880 len = strlen(str);
3881 readline_set_completion_index(rs, len);
3882
3883 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3884 SnapshotInfoList *snapshots, *snapshot;
3885 AioContext *ctx = bdrv_get_aio_context(bs);
3886 bool ok = false;
3887
3888 aio_context_acquire(ctx);
3889 if (bdrv_can_snapshot(bs)) {
3890 ok = bdrv_query_snapshot_info_list(bs, &snapshots, NULL) == 0;
3891 }
3892 aio_context_release(ctx);
3893 if (!ok) {
3894 continue;
3895 }
3896
3897 snapshot = snapshots;
3898 while (snapshot) {
3899 char *completion = snapshot->value->name;
3900 if (!strncmp(str, completion, len)) {
3901 readline_add_completion(rs, completion);
3902 }
3903 completion = snapshot->value->id;
3904 if (!strncmp(str, completion, len)) {
3905 readline_add_completion(rs, completion);
3906 }
3907 snapshot = snapshot->next;
3908 }
3909 qapi_free_SnapshotInfoList(snapshots);
3910 }
3911
3912 }
3913
3914 void delvm_completion(ReadLineState *rs, int nb_args, const char *str)
3915 {
3916 if (nb_args == 2) {
3917 vm_completion(rs, str);
3918 }
3919 }
3920
3921 void loadvm_completion(ReadLineState *rs, int nb_args, const char *str)
3922 {
3923 if (nb_args == 2) {
3924 vm_completion(rs, str);
3925 }
3926 }
3927
3928 static void monitor_find_completion_by_table(Monitor *mon,
3929 const mon_cmd_t *cmd_table,
3930 char **args,
3931 int nb_args)
3932 {
3933 const char *cmdname;
3934 int i;
3935 const char *ptype, *old_ptype, *str, *name;
3936 const mon_cmd_t *cmd;
3937 BlockBackend *blk = NULL;
3938
3939 if (nb_args <= 1) {
3940 /* command completion */
3941 if (nb_args == 0)
3942 cmdname = "";
3943 else
3944 cmdname = args[0];
3945 readline_set_completion_index(mon->rs, strlen(cmdname));
3946 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
3947 if (!runstate_check(RUN_STATE_PRECONFIG) ||
3948 cmd_can_preconfig(cmd)) {
3949 cmd_completion(mon, cmdname, cmd->name);
3950 }
3951 }
3952 } else {
3953 /* find the command */
3954 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
3955 if (compare_cmd(args[0], cmd->name) &&
3956 (!runstate_check(RUN_STATE_PRECONFIG) ||
3957 cmd_can_preconfig(cmd))) {
3958 break;
3959 }
3960 }
3961 if (!cmd->name) {
3962 return;
3963 }
3964
3965 if (cmd->sub_table) {
3966 /* do the job again */
3967 monitor_find_completion_by_table(mon, cmd->sub_table,
3968 &args[1], nb_args - 1);
3969 return;
3970 }
3971 if (cmd->command_completion) {
3972 cmd->command_completion(mon->rs, nb_args, args[nb_args - 1]);
3973 return;
3974 }
3975
3976 ptype = next_arg_type(cmd->args_type);
3977 for(i = 0; i < nb_args - 2; i++) {
3978 if (*ptype != '\0') {
3979 ptype = next_arg_type(ptype);
3980 while (*ptype == '?')
3981 ptype = next_arg_type(ptype);
3982 }
3983 }
3984 str = args[nb_args - 1];
3985 old_ptype = NULL;
3986 while (*ptype == '-' && old_ptype != ptype) {
3987 old_ptype = ptype;
3988 ptype = next_arg_type(ptype);
3989 }
3990 switch(*ptype) {
3991 case 'F':
3992 /* file completion */
3993 readline_set_completion_index(mon->rs, strlen(str));
3994 file_completion(mon, str);
3995 break;
3996 case 'B':
3997 /* block device name completion */
3998 readline_set_completion_index(mon->rs, strlen(str));
3999 while ((blk = blk_next(blk)) != NULL) {
4000 name = blk_name(blk);
4001 if (str[0] == '\0' ||
4002 !strncmp(name, str, strlen(str))) {
4003 readline_add_completion(mon->rs, name);
4004 }
4005 }
4006 break;
4007 case 's':
4008 case 'S':
4009 if (!strcmp(cmd->name, "help|?")) {
4010 monitor_find_completion_by_table(mon, cmd_table,
4011 &args[1], nb_args - 1);
4012 }
4013 break;
4014 default:
4015 break;
4016 }
4017 }
4018 }
4019
4020 static void monitor_find_completion(void *opaque,
4021 const char *cmdline)
4022 {
4023 Monitor *mon = opaque;
4024 char *args[MAX_ARGS];
4025 int nb_args, len;
4026
4027 /* 1. parse the cmdline */
4028 if (parse_cmdline(cmdline, &nb_args, args) < 0) {
4029 return;
4030 }
4031
4032 /* if the line ends with a space, it means we want to complete the
4033 next arg */
4034 len = strlen(cmdline);
4035 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
4036 if (nb_args >= MAX_ARGS) {
4037 goto cleanup;
4038 }
4039 args[nb_args++] = g_strdup("");
4040 }
4041
4042 /* 2. auto complete according to args */
4043 monitor_find_completion_by_table(mon, mon->cmd_table, args, nb_args);
4044
4045 cleanup:
4046 free_cmdline_args(args, nb_args);
4047 }
4048
4049 static int monitor_can_read(void *opaque)
4050 {
4051 Monitor *mon = opaque;
4052
4053 return !atomic_mb_read(&mon->suspend_cnt);
4054 }
4055
4056 /*
4057 * Emit QMP response @rsp with ID @id to @mon.
4058 * Null @rsp can only happen for commands with QCO_NO_SUCCESS_RESP.
4059 * Nothing is emitted then.
4060 */
4061 static void monitor_qmp_respond(Monitor *mon, QDict *rsp, QObject *id)
4062 {
4063 if (rsp) {
4064 if (id) {
4065 qdict_put_obj(rsp, "id", qobject_ref(id));
4066 }
4067
4068 qmp_send_response(mon, rsp);
4069 }
4070 }
4071
4072 static void monitor_qmp_dispatch(Monitor *mon, QObject *req, QObject *id)
4073 {
4074 Monitor *old_mon;
4075 QDict *rsp;
4076 QDict *error;
4077
4078 old_mon = cur_mon;
4079 cur_mon = mon;
4080
4081 rsp = qmp_dispatch(mon->qmp.commands, req, qmp_oob_enabled(mon));
4082
4083 cur_mon = old_mon;
4084
4085 if (mon->qmp.commands == &qmp_cap_negotiation_commands) {
4086 error = qdict_get_qdict(rsp, "error");
4087 if (error
4088 && !g_strcmp0(qdict_get_try_str(error, "class"),
4089 QapiErrorClass_str(ERROR_CLASS_COMMAND_NOT_FOUND))) {
4090 /* Provide a more useful error message */
4091 qdict_del(error, "desc");
4092 qdict_put_str(error, "desc", "Expecting capabilities negotiation"
4093 " with 'qmp_capabilities'");
4094 }
4095 }
4096
4097 monitor_qmp_respond(mon, rsp, id);
4098 qobject_unref(rsp);
4099 }
4100
4101 /*
4102 * Pop a QMP request from a monitor request queue.
4103 * Return the request, or NULL all request queues are empty.
4104 * We are using round-robin fashion to pop the request, to avoid
4105 * processing commands only on a very busy monitor. To achieve that,
4106 * when we process one request on a specific monitor, we put that
4107 * monitor to the end of mon_list queue.
4108 *
4109 * Note: if the function returned with non-NULL, then the caller will
4110 * be with mon->qmp.qmp_queue_lock held, and the caller is responsible
4111 * to release it.
4112 */
4113 static QMPRequest *monitor_qmp_requests_pop_any_with_lock(void)
4114 {
4115 QMPRequest *req_obj = NULL;
4116 Monitor *mon;
4117
4118 qemu_mutex_lock(&monitor_lock);
4119
4120 QTAILQ_FOREACH(mon, &mon_list, entry) {
4121 qemu_mutex_lock(&mon->qmp.qmp_queue_lock);
4122 req_obj = g_queue_pop_head(mon->qmp.qmp_requests);
4123 if (req_obj) {
4124 /* With the lock of corresponding queue held */
4125 break;
4126 }
4127 qemu_mutex_unlock(&mon->qmp.qmp_queue_lock);
4128 }
4129
4130 if (req_obj) {
4131 /*
4132 * We found one request on the monitor. Degrade this monitor's
4133 * priority to lowest by re-inserting it to end of queue.
4134 */
4135 QTAILQ_REMOVE(&mon_list, mon, entry);
4136 QTAILQ_INSERT_TAIL(&mon_list, mon, entry);
4137 }
4138
4139 qemu_mutex_unlock(&monitor_lock);
4140
4141 return req_obj;
4142 }
4143
4144 static void monitor_qmp_bh_dispatcher(void *data)
4145 {
4146 QMPRequest *req_obj = monitor_qmp_requests_pop_any_with_lock();
4147 QDict *rsp;
4148 bool need_resume;
4149 Monitor *mon;
4150
4151 if (!req_obj) {
4152 return;
4153 }
4154
4155 mon = req_obj->mon;
4156 /* qmp_oob_enabled() might change after "qmp_capabilities" */
4157 need_resume = !qmp_oob_enabled(mon) ||
4158 mon->qmp.qmp_requests->length == QMP_REQ_QUEUE_LEN_MAX - 1;
4159 qemu_mutex_unlock(&mon->qmp.qmp_queue_lock);
4160 if (req_obj->req) {
4161 trace_monitor_qmp_cmd_in_band(qobject_get_try_str(req_obj->id) ?: "");
4162 monitor_qmp_dispatch(mon, req_obj->req, req_obj->id);
4163 } else {
4164 assert(req_obj->err);
4165 rsp = qmp_error_response(req_obj->err);
4166 req_obj->err = NULL;
4167 monitor_qmp_respond(mon, rsp, NULL);
4168 qobject_unref(rsp);
4169 }
4170
4171 if (need_resume) {
4172 /* Pairs with the monitor_suspend() in handle_qmp_command() */
4173 monitor_resume(mon);
4174 }
4175 qmp_request_free(req_obj);
4176
4177 /* Reschedule instead of looping so the main loop stays responsive */
4178 qemu_bh_schedule(qmp_dispatcher_bh);
4179 }
4180
4181 static void handle_qmp_command(void *opaque, QObject *req, Error *err)
4182 {
4183 Monitor *mon = opaque;
4184 QObject *id = NULL;
4185 QDict *qdict;
4186 QMPRequest *req_obj;
4187
4188 assert(!req != !err);
4189
4190 qdict = qobject_to(QDict, req);
4191 if (qdict) {
4192 id = qobject_ref(qdict_get(qdict, "id"));
4193 qdict_del(qdict, "id");
4194 } /* else will fail qmp_dispatch() */
4195
4196 if (req && trace_event_get_state_backends(TRACE_HANDLE_QMP_COMMAND)) {
4197 QString *req_json = qobject_to_json(req);
4198 trace_handle_qmp_command(mon, qstring_get_str(req_json));
4199 qobject_unref(req_json);
4200 }
4201
4202 if (qdict && qmp_is_oob(qdict)) {
4203 /* OOB commands are executed immediately */
4204 trace_monitor_qmp_cmd_out_of_band(qobject_get_try_str(id)
4205 ?: "");
4206 monitor_qmp_dispatch(mon, req, id);
4207 qobject_unref(req);
4208 qobject_unref(id);
4209 return;
4210 }
4211
4212 req_obj = g_new0(QMPRequest, 1);
4213 req_obj->mon = mon;
4214 req_obj->id = id;
4215 req_obj->req = req;
4216 req_obj->err = err;
4217
4218 /* Protect qmp_requests and fetching its length. */
4219 qemu_mutex_lock(&mon->qmp.qmp_queue_lock);
4220
4221 /*
4222 * Suspend the monitor when we can't queue more requests after
4223 * this one. Dequeuing in monitor_qmp_bh_dispatcher() will resume
4224 * it. Note that when OOB is disabled, we queue at most one
4225 * command, for backward compatibility.
4226 */
4227 if (!qmp_oob_enabled(mon) ||
4228 mon->qmp.qmp_requests->length == QMP_REQ_QUEUE_LEN_MAX - 1) {
4229 monitor_suspend(mon);
4230 }
4231
4232 /*
4233 * Put the request to the end of queue so that requests will be
4234 * handled in time order. Ownership for req_obj, req, id,
4235 * etc. will be delivered to the handler side.
4236 */
4237 assert(mon->qmp.qmp_requests->length < QMP_REQ_QUEUE_LEN_MAX);
4238 g_queue_push_tail(mon->qmp.qmp_requests, req_obj);
4239 qemu_mutex_unlock(&mon->qmp.qmp_queue_lock);
4240
4241 /* Kick the dispatcher routine */
4242 qemu_bh_schedule(qmp_dispatcher_bh);
4243 }
4244
4245 static void monitor_qmp_read(void *opaque, const uint8_t *buf, int size)
4246 {
4247 Monitor *mon = opaque;
4248
4249 json_message_parser_feed(&mon->qmp.parser, (const char *) buf, size);
4250 }
4251
4252 static void monitor_read(void *opaque, const uint8_t *buf, int size)
4253 {
4254 Monitor *old_mon = cur_mon;
4255 int i;
4256
4257 cur_mon = opaque;
4258
4259 if (cur_mon->rs) {
4260 for (i = 0; i < size; i++)
4261 readline_handle_byte(cur_mon->rs, buf[i]);
4262 } else {
4263 if (size == 0 || buf[size - 1] != 0)
4264 monitor_printf(cur_mon, "corrupted command\n");
4265 else
4266 handle_hmp_command(cur_mon, (char *)buf);
4267 }
4268
4269 cur_mon = old_mon;
4270 }
4271
4272 static void monitor_command_cb(void *opaque, const char *cmdline,
4273 void *readline_opaque)
4274 {
4275 Monitor *mon = opaque;
4276
4277 monitor_suspend(mon);
4278 handle_hmp_command(mon, cmdline);
4279 monitor_resume(mon);
4280 }
4281
4282 int monitor_suspend(Monitor *mon)
4283 {
4284 if (monitor_is_hmp_non_interactive(mon)) {
4285 return -ENOTTY;
4286 }
4287
4288 atomic_inc(&mon->suspend_cnt);
4289
4290 if (mon->use_io_thread) {
4291 /*
4292 * Kick I/O thread to make sure this takes effect. It'll be
4293 * evaluated again in prepare() of the watch object.
4294 */
4295 aio_notify(iothread_get_aio_context(mon_iothread));
4296 }
4297
4298 trace_monitor_suspend(mon, 1);
4299 return 0;
4300 }
4301
4302 static void monitor_accept_input(void *opaque)
4303 {
4304 Monitor *mon = opaque;
4305
4306 qemu_chr_fe_accept_input(&mon->chr);
4307 }
4308
4309 void monitor_resume(Monitor *mon)
4310 {
4311 if (monitor_is_hmp_non_interactive(mon)) {
4312 return;
4313 }
4314
4315 if (atomic_dec_fetch(&mon->suspend_cnt) == 0) {
4316 AioContext *ctx;
4317
4318 if (mon->use_io_thread) {
4319 ctx = iothread_get_aio_context(mon_iothread);
4320 } else {
4321 ctx = qemu_get_aio_context();
4322 }
4323
4324 if (!monitor_is_qmp(mon)) {
4325 assert(mon->rs);
4326 readline_show_prompt(mon->rs);
4327 }
4328
4329 aio_bh_schedule_oneshot(ctx, monitor_accept_input, mon);
4330 }
4331
4332 trace_monitor_suspend(mon, -1);
4333 }
4334
4335 static QDict *qmp_greeting(Monitor *mon)
4336 {
4337 QList *cap_list = qlist_new();
4338 QObject *ver = NULL;
4339 QMPCapability cap;
4340
4341 qmp_marshal_query_version(NULL, &ver, NULL);
4342
4343 for (cap = 0; cap < QMP_CAPABILITY__MAX; cap++) {
4344 if (mon->qmp.capab_offered[cap]) {
4345 qlist_append_str(cap_list, QMPCapability_str(cap));
4346 }
4347 }
4348
4349 return qdict_from_jsonf_nofail(
4350 "{'QMP': {'version': %p, 'capabilities': %p}}",
4351 ver, cap_list);
4352 }
4353
4354 static void monitor_qmp_event(void *opaque, int event)
4355 {
4356 QDict *data;
4357 Monitor *mon = opaque;
4358
4359 switch (event) {
4360 case CHR_EVENT_OPENED:
4361 mon->qmp.commands = &qmp_cap_negotiation_commands;
4362 monitor_qmp_caps_reset(mon);
4363 data = qmp_greeting(mon);
4364 qmp_send_response(mon, data);
4365 qobject_unref(data);
4366 mon_refcount++;
4367 break;
4368 case CHR_EVENT_CLOSED:
4369 /*
4370 * Note: this is only useful when the output of the chardev
4371 * backend is still open. For example, when the backend is
4372 * stdio, it's possible that stdout is still open when stdin
4373 * is closed.
4374 */
4375 monitor_qmp_cleanup_queues(mon);
4376 json_message_parser_destroy(&mon->qmp.parser);
4377 json_message_parser_init(&mon->qmp.parser, handle_qmp_command,
4378 mon, NULL);
4379 mon_refcount--;
4380 monitor_fdsets_cleanup();
4381 break;
4382 }
4383 }
4384
4385 static void monitor_event(void *opaque, int event)
4386 {
4387 Monitor *mon = opaque;
4388
4389 switch (event) {
4390 case CHR_EVENT_MUX_IN:
4391 qemu_mutex_lock(&mon->mon_lock);
4392 mon->mux_out = 0;
4393 qemu_mutex_unlock(&mon->mon_lock);
4394 if (mon->reset_seen) {
4395 readline_restart(mon->rs);
4396 monitor_resume(mon);
4397 monitor_flush(mon);
4398 } else {
4399 atomic_mb_set(&mon->suspend_cnt, 0);
4400 }
4401 break;
4402
4403 case CHR_EVENT_MUX_OUT:
4404 if (mon->reset_seen) {
4405 if (atomic_mb_read(&mon->suspend_cnt) == 0) {
4406 monitor_printf(mon, "\n");
4407 }
4408 monitor_flush(mon);
4409 monitor_suspend(mon);
4410 } else {
4411 atomic_inc(&mon->suspend_cnt);
4412 }
4413 qemu_mutex_lock(&mon->mon_lock);
4414 mon->mux_out = 1;
4415 qemu_mutex_unlock(&mon->mon_lock);
4416 break;
4417
4418 case CHR_EVENT_OPENED:
4419 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4420 "information\n", QEMU_VERSION);
4421 if (!mon->mux_out) {
4422 readline_restart(mon->rs);
4423 readline_show_prompt(mon->rs);
4424 }
4425 mon->reset_seen = 1;
4426 mon_refcount++;
4427 break;
4428
4429 case CHR_EVENT_CLOSED:
4430 mon_refcount--;
4431 monitor_fdsets_cleanup();
4432 break;
4433 }
4434 }
4435
4436 static int
4437 compare_mon_cmd(const void *a, const void *b)
4438 {
4439 return strcmp(((const mon_cmd_t *)a)->name,
4440 ((const mon_cmd_t *)b)->name);
4441 }
4442
4443 static void sortcmdlist(void)
4444 {
4445 int array_num;
4446 int elem_size = sizeof(mon_cmd_t);
4447
4448 array_num = sizeof(mon_cmds)/elem_size-1;
4449 qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd);
4450
4451 array_num = sizeof(info_cmds)/elem_size-1;
4452 qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd);
4453 }
4454
4455 static void monitor_iothread_init(void)
4456 {
4457 mon_iothread = iothread_create("mon_iothread", &error_abort);
4458 }
4459
4460 void monitor_init_globals(void)
4461 {
4462 monitor_init_qmp_commands();
4463 monitor_qapi_event_init();
4464 sortcmdlist();
4465 qemu_mutex_init(&monitor_lock);
4466 qemu_mutex_init(&mon_fdsets_lock);
4467
4468 /*
4469 * The dispatcher BH must run in the main loop thread, since we
4470 * have commands assuming that context. It would be nice to get
4471 * rid of those assumptions.
4472 */
4473 qmp_dispatcher_bh = aio_bh_new(iohandler_get_aio_context(),
4474 monitor_qmp_bh_dispatcher,
4475 NULL);
4476 }
4477
4478 /* These functions just adapt the readline interface in a typesafe way. We
4479 * could cast function pointers but that discards compiler checks.
4480 */
4481 static void GCC_FMT_ATTR(2, 3) monitor_readline_printf(void *opaque,
4482 const char *fmt, ...)
4483 {
4484 va_list ap;
4485 va_start(ap, fmt);
4486 monitor_vprintf(opaque, fmt, ap);
4487 va_end(ap);
4488 }
4489
4490 static void monitor_readline_flush(void *opaque)
4491 {
4492 monitor_flush(opaque);
4493 }
4494
4495 /*
4496 * Print to current monitor if we have one, else to stream.
4497 * TODO should return int, so callers can calculate width, but that
4498 * requires surgery to monitor_vprintf(). Left for another day.
4499 */
4500 void monitor_vfprintf(FILE *stream, const char *fmt, va_list ap)
4501 {
4502 if (cur_mon && !monitor_cur_is_qmp()) {
4503 monitor_vprintf(cur_mon, fmt, ap);
4504 } else {
4505 vfprintf(stream, fmt, ap);
4506 }
4507 }
4508
4509 /*
4510 * Print to current monitor if we have one, else to stderr.
4511 * TODO should return int, so callers can calculate width, but that
4512 * requires surgery to monitor_vprintf(). Left for another day.
4513 */
4514 void error_vprintf(const char *fmt, va_list ap)
4515 {
4516 monitor_vfprintf(stderr, fmt, ap);
4517 }
4518
4519 void error_vprintf_unless_qmp(const char *fmt, va_list ap)
4520 {
4521 if (cur_mon && !monitor_cur_is_qmp()) {
4522 monitor_vprintf(cur_mon, fmt, ap);
4523 } else if (!cur_mon) {
4524 vfprintf(stderr, fmt, ap);
4525 }
4526 }
4527
4528 static void monitor_list_append(Monitor *mon)
4529 {
4530 qemu_mutex_lock(&monitor_lock);
4531 /*
4532 * This prevents inserting new monitors during monitor_cleanup().
4533 * A cleaner solution would involve the main thread telling other
4534 * threads to terminate, waiting for their termination.
4535 */
4536 if (!monitor_destroyed) {
4537 QTAILQ_INSERT_HEAD(&mon_list, mon, entry);
4538 mon = NULL;
4539 }
4540 qemu_mutex_unlock(&monitor_lock);
4541
4542 if (mon) {
4543 monitor_data_destroy(mon);
4544 g_free(mon);
4545 }
4546 }
4547
4548 static void monitor_qmp_setup_handlers_bh(void *opaque)
4549 {
4550 Monitor *mon = opaque;
4551 GMainContext *context;
4552
4553 assert(mon->use_io_thread);
4554 context = iothread_get_g_main_context(mon_iothread);
4555 assert(context);
4556 qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read, monitor_qmp_read,
4557 monitor_qmp_event, NULL, mon, context, true);
4558 monitor_list_append(mon);
4559 }
4560
4561 void monitor_init(Chardev *chr, int flags)
4562 {
4563 Monitor *mon = g_malloc(sizeof(*mon));
4564 bool use_readline = flags & MONITOR_USE_READLINE;
4565
4566 /* Note: we run QMP monitor in I/O thread when @chr supports that */
4567 monitor_data_init(mon, false,
4568 (flags & MONITOR_USE_CONTROL)
4569 && qemu_chr_has_feature(chr,
4570 QEMU_CHAR_FEATURE_GCONTEXT));
4571
4572 qemu_chr_fe_init(&mon->chr, chr, &error_abort);
4573 mon->flags = flags;
4574 if (use_readline) {
4575 mon->rs = readline_init(monitor_readline_printf,
4576 monitor_readline_flush,
4577 mon,
4578 monitor_find_completion);
4579 monitor_read_command(mon, 0);
4580 }
4581
4582 if (monitor_is_qmp(mon)) {
4583 qemu_chr_fe_set_echo(&mon->chr, true);
4584 json_message_parser_init(&mon->qmp.parser, handle_qmp_command,
4585 mon, NULL);
4586 if (mon->use_io_thread) {
4587 /*
4588 * Make sure the old iowatch is gone. It's possible when
4589 * e.g. the chardev is in client mode, with wait=on.
4590 */
4591 remove_fd_in_watch(chr);
4592 /*
4593 * We can't call qemu_chr_fe_set_handlers() directly here
4594 * since chardev might be running in the monitor I/O
4595 * thread. Schedule a bottom half.
4596 */
4597 aio_bh_schedule_oneshot(iothread_get_aio_context(mon_iothread),
4598 monitor_qmp_setup_handlers_bh, mon);
4599 /* The bottom half will add @mon to @mon_list */
4600 return;
4601 } else {
4602 qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read,
4603 monitor_qmp_read, monitor_qmp_event,
4604 NULL, mon, NULL, true);
4605 }
4606 } else {
4607 qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read, monitor_read,
4608 monitor_event, NULL, mon, NULL, true);
4609 }
4610
4611 monitor_list_append(mon);
4612 }
4613
4614 void monitor_cleanup(void)
4615 {
4616 Monitor *mon, *next;
4617
4618 /*
4619 * We need to explicitly stop the I/O thread (but not destroy it),
4620 * clean up the monitor resources, then destroy the I/O thread since
4621 * we need to unregister from chardev below in
4622 * monitor_data_destroy(), and chardev is not thread-safe yet
4623 */
4624 if (mon_iothread) {
4625 iothread_stop(mon_iothread);
4626 }
4627
4628 /* Flush output buffers and destroy monitors */
4629 qemu_mutex_lock(&monitor_lock);
4630 monitor_destroyed = true;
4631 QTAILQ_FOREACH_SAFE(mon, &mon_list, entry, next) {
4632 QTAILQ_REMOVE(&mon_list, mon, entry);
4633 /* Permit QAPI event emission from character frontend release */
4634 qemu_mutex_unlock(&monitor_lock);
4635 monitor_flush(mon);
4636 monitor_data_destroy(mon);
4637 qemu_mutex_lock(&monitor_lock);
4638 g_free(mon);
4639 }
4640 qemu_mutex_unlock(&monitor_lock);
4641
4642 /* QEMUBHs needs to be deleted before destroying the I/O thread */
4643 qemu_bh_delete(qmp_dispatcher_bh);
4644 qmp_dispatcher_bh = NULL;
4645 if (mon_iothread) {
4646 iothread_destroy(mon_iothread);
4647 mon_iothread = NULL;
4648 }
4649 }
4650
4651 QemuOptsList qemu_mon_opts = {
4652 .name = "mon",
4653 .implied_opt_name = "chardev",
4654 .head = QTAILQ_HEAD_INITIALIZER(qemu_mon_opts.head),
4655 .desc = {
4656 {
4657 .name = "mode",
4658 .type = QEMU_OPT_STRING,
4659 },{
4660 .name = "chardev",
4661 .type = QEMU_OPT_STRING,
4662 },{
4663 .name = "pretty",
4664 .type = QEMU_OPT_BOOL,
4665 },
4666 { /* end of list */ }
4667 },
4668 };
4669
4670 #ifndef TARGET_I386
4671 void qmp_rtc_reset_reinjection(Error **errp)
4672 {
4673 error_setg(errp, QERR_FEATURE_DISABLED, "rtc-reset-reinjection");
4674 }
4675
4676 SevInfo *qmp_query_sev(Error **errp)
4677 {
4678 error_setg(errp, QERR_FEATURE_DISABLED, "query-sev");
4679 return NULL;
4680 }
4681
4682 SevLaunchMeasureInfo *qmp_query_sev_launch_measure(Error **errp)
4683 {
4684 error_setg(errp, QERR_FEATURE_DISABLED, "query-sev-launch-measure");
4685 return NULL;
4686 }
4687
4688 SevCapability *qmp_query_sev_capabilities(Error **errp)
4689 {
4690 error_setg(errp, QERR_FEATURE_DISABLED, "query-sev-capabilities");
4691 return NULL;
4692 }
4693 #endif
4694
4695 #ifndef TARGET_S390X
4696 void qmp_dump_skeys(const char *filename, Error **errp)
4697 {
4698 error_setg(errp, QERR_FEATURE_DISABLED, "dump-skeys");
4699 }
4700 #endif
4701
4702 #ifndef TARGET_ARM
4703 GICCapabilityList *qmp_query_gic_capabilities(Error **errp)
4704 {
4705 error_setg(errp, QERR_FEATURE_DISABLED, "query-gic-capabilities");
4706 return NULL;
4707 }
4708 #endif
4709
4710 HotpluggableCPUList *qmp_query_hotpluggable_cpus(Error **errp)
4711 {
4712 MachineState *ms = MACHINE(qdev_get_machine());
4713 MachineClass *mc = MACHINE_GET_CLASS(ms);
4714
4715 if (!mc->has_hotpluggable_cpus) {
4716 error_setg(errp, QERR_FEATURE_DISABLED, "query-hotpluggable-cpus");
4717 return NULL;
4718 }
4719
4720 return machine_query_hotpluggable_cpus(ms);
4721 }