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