sev/i386: qmp: add query-sev-launch-measure command
[qemu/ar7.git] / monitor.c
blob36ed0879e43566f8d6f4f008d1ac569f1415fec7
1 /*
2 * QEMU monitor
4 * Copyright (c) 2003-2004 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
25 #include "qemu/osdep.h"
26 #include <dirent.h>
27 #include "cpu.h"
28 #include "hw/hw.h"
29 #include "monitor/qdev.h"
30 #include "hw/usb.h"
31 #include "hw/pci/pci.h"
32 #include "sysemu/watchdog.h"
33 #include "hw/loader.h"
34 #include "exec/gdbstub.h"
35 #include "net/net.h"
36 #include "net/slirp.h"
37 #include "chardev/char-fe.h"
38 #include "ui/qemu-spice.h"
39 #include "sysemu/numa.h"
40 #include "monitor/monitor.h"
41 #include "qemu/config-file.h"
42 #include "qemu/readline.h"
43 #include "ui/console.h"
44 #include "ui/input.h"
45 #include "sysemu/blockdev.h"
46 #include "sysemu/block-backend.h"
47 #include "audio/audio.h"
48 #include "disas/disas.h"
49 #include "sysemu/balloon.h"
50 #include "qemu/timer.h"
51 #include "sysemu/hw_accel.h"
52 #include "qemu/acl.h"
53 #include "sysemu/tpm.h"
54 #include "qapi/qmp/qdict.h"
55 #include "qapi/qmp/qerror.h"
56 #include "qapi/qmp/qnum.h"
57 #include "qapi/qmp/qstring.h"
58 #include "qapi/qmp/qjson.h"
59 #include "qapi/qmp/json-streamer.h"
60 #include "qapi/qmp/json-parser.h"
61 #include "qom/object_interfaces.h"
62 #include "trace-root.h"
63 #include "trace/control.h"
64 #include "monitor/hmp-target.h"
65 #ifdef CONFIG_TRACE_SIMPLE
66 #include "trace/simple.h"
67 #endif
68 #include "exec/memory.h"
69 #include "exec/exec-all.h"
70 #include "qemu/log.h"
71 #include "qemu/option.h"
72 #include "hmp.h"
73 #include "qemu/thread.h"
74 #include "block/qapi.h"
75 #include "qapi/qapi-commands.h"
76 #include "qapi/qapi-events.h"
77 #include "qapi/error.h"
78 #include "qapi/qmp-event.h"
79 #include "qapi/qapi-introspect.h"
80 #include "sysemu/qtest.h"
81 #include "sysemu/cpus.h"
82 #include "qemu/cutils.h"
84 #if defined(TARGET_S390X)
85 #include "hw/s390x/storage-keys.h"
86 #include "hw/s390x/storage-attributes.h"
87 #endif
90 * Supported types:
92 * 'F' filename
93 * 'B' block device name
94 * 's' string (accept optional quote)
95 * 'S' it just appends the rest of the string (accept optional quote)
96 * 'O' option string of the form NAME=VALUE,...
97 * parsed according to QemuOptsList given by its name
98 * Example: 'device:O' uses qemu_device_opts.
99 * Restriction: only lists with empty desc are supported
100 * TODO lift the restriction
101 * 'i' 32 bit integer
102 * 'l' target long (32 or 64 bit)
103 * 'M' Non-negative target long (32 or 64 bit), in user mode the
104 * value is multiplied by 2^20 (think Mebibyte)
105 * 'o' octets (aka bytes)
106 * user mode accepts an optional E, e, P, p, T, t, G, g, M, m,
107 * K, k suffix, which multiplies the value by 2^60 for suffixes E
108 * and e, 2^50 for suffixes P and p, 2^40 for suffixes T and t,
109 * 2^30 for suffixes G and g, 2^20 for M and m, 2^10 for K and k
110 * 'T' double
111 * user mode accepts an optional ms, us, ns suffix,
112 * which divides the value by 1e3, 1e6, 1e9, respectively
113 * '/' optional gdb-like print format (like "/10x")
115 * '?' optional type (for all types, except '/')
116 * '.' other form of optional type (for 'i' and 'l')
117 * 'b' boolean
118 * user mode accepts "on" or "off"
119 * '-' optional parameter (eg. '-f')
123 typedef struct mon_cmd_t {
124 const char *name;
125 const char *args_type;
126 const char *params;
127 const char *help;
128 void (*cmd)(Monitor *mon, const QDict *qdict);
129 /* @sub_table is a list of 2nd level of commands. If it does not exist,
130 * cmd should be used. If it exists, sub_table[?].cmd should be
131 * used, and cmd of 1st level plays the role of help function.
133 struct mon_cmd_t *sub_table;
134 void (*command_completion)(ReadLineState *rs, int nb_args, const char *str);
135 } mon_cmd_t;
137 /* file descriptors passed via SCM_RIGHTS */
138 typedef struct mon_fd_t mon_fd_t;
139 struct mon_fd_t {
140 char *name;
141 int fd;
142 QLIST_ENTRY(mon_fd_t) next;
145 /* file descriptor associated with a file descriptor set */
146 typedef struct MonFdsetFd MonFdsetFd;
147 struct MonFdsetFd {
148 int fd;
149 bool removed;
150 char *opaque;
151 QLIST_ENTRY(MonFdsetFd) next;
154 /* file descriptor set containing fds passed via SCM_RIGHTS */
155 typedef struct MonFdset MonFdset;
156 struct MonFdset {
157 int64_t id;
158 QLIST_HEAD(, MonFdsetFd) fds;
159 QLIST_HEAD(, MonFdsetFd) dup_fds;
160 QLIST_ENTRY(MonFdset) next;
163 typedef struct {
164 JSONMessageParser parser;
166 * When a client connects, we're in capabilities negotiation mode.
167 * When command qmp_capabilities succeeds, we go into command
168 * mode.
170 QmpCommandList *commands;
171 } MonitorQMP;
174 * To prevent flooding clients, events can be throttled. The
175 * throttling is calculated globally, rather than per-Monitor
176 * instance.
178 typedef struct MonitorQAPIEventState {
179 QAPIEvent event; /* Throttling state for this event type and... */
180 QDict *data; /* ... data, see qapi_event_throttle_equal() */
181 QEMUTimer *timer; /* Timer for handling delayed events */
182 QDict *qdict; /* Delayed event (if any) */
183 } MonitorQAPIEventState;
185 typedef struct {
186 int64_t rate; /* Minimum time (in ns) between two events */
187 } MonitorQAPIEventConf;
189 struct Monitor {
190 CharBackend chr;
191 int reset_seen;
192 int flags;
193 int suspend_cnt;
194 bool skip_flush;
196 QemuMutex out_lock;
197 QString *outbuf;
198 guint out_watch;
200 /* Read under either BQL or out_lock, written with BQL+out_lock. */
201 int mux_out;
203 ReadLineState *rs;
204 MonitorQMP qmp;
205 gchar *mon_cpu_path;
206 BlockCompletionFunc *password_completion_cb;
207 void *password_opaque;
208 mon_cmd_t *cmd_table;
209 QLIST_HEAD(,mon_fd_t) fds;
210 QLIST_ENTRY(Monitor) entry;
213 /* QMP checker flags */
214 #define QMP_ACCEPT_UNKNOWNS 1
216 /* Protects mon_list, monitor_event_state. */
217 static QemuMutex monitor_lock;
219 static QLIST_HEAD(mon_list, Monitor) mon_list;
220 static QLIST_HEAD(mon_fdsets, MonFdset) mon_fdsets;
221 static int mon_refcount;
223 static mon_cmd_t mon_cmds[];
224 static mon_cmd_t info_cmds[];
226 QmpCommandList qmp_commands, qmp_cap_negotiation_commands;
228 Monitor *cur_mon;
230 static QEMUClockType event_clock_type = QEMU_CLOCK_REALTIME;
232 static void monitor_command_cb(void *opaque, const char *cmdline,
233 void *readline_opaque);
236 * Is @mon a QMP monitor?
238 static inline bool monitor_is_qmp(const Monitor *mon)
240 return (mon->flags & MONITOR_USE_CONTROL);
244 * Is the current monitor, if any, a QMP monitor?
246 bool monitor_cur_is_qmp(void)
248 return cur_mon && monitor_is_qmp(cur_mon);
251 void monitor_read_command(Monitor *mon, int show_prompt)
253 if (!mon->rs)
254 return;
256 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
257 if (show_prompt)
258 readline_show_prompt(mon->rs);
261 int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
262 void *opaque)
264 if (mon->rs) {
265 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
266 /* prompt is printed on return from the command handler */
267 return 0;
268 } else {
269 monitor_printf(mon, "terminal does not support password prompting\n");
270 return -ENOTTY;
274 static void monitor_flush_locked(Monitor *mon);
276 static gboolean monitor_unblocked(GIOChannel *chan, GIOCondition cond,
277 void *opaque)
279 Monitor *mon = opaque;
281 qemu_mutex_lock(&mon->out_lock);
282 mon->out_watch = 0;
283 monitor_flush_locked(mon);
284 qemu_mutex_unlock(&mon->out_lock);
285 return FALSE;
288 /* Called with mon->out_lock held. */
289 static void monitor_flush_locked(Monitor *mon)
291 int rc;
292 size_t len;
293 const char *buf;
295 if (mon->skip_flush) {
296 return;
299 buf = qstring_get_str(mon->outbuf);
300 len = qstring_get_length(mon->outbuf);
302 if (len && !mon->mux_out) {
303 rc = qemu_chr_fe_write(&mon->chr, (const uint8_t *) buf, len);
304 if ((rc < 0 && errno != EAGAIN) || (rc == len)) {
305 /* all flushed or error */
306 QDECREF(mon->outbuf);
307 mon->outbuf = qstring_new();
308 return;
310 if (rc > 0) {
311 /* partial write */
312 QString *tmp = qstring_from_str(buf + rc);
313 QDECREF(mon->outbuf);
314 mon->outbuf = tmp;
316 if (mon->out_watch == 0) {
317 mon->out_watch =
318 qemu_chr_fe_add_watch(&mon->chr, G_IO_OUT | G_IO_HUP,
319 monitor_unblocked, mon);
324 void monitor_flush(Monitor *mon)
326 qemu_mutex_lock(&mon->out_lock);
327 monitor_flush_locked(mon);
328 qemu_mutex_unlock(&mon->out_lock);
331 /* flush at every end of line */
332 static void monitor_puts(Monitor *mon, const char *str)
334 char c;
336 qemu_mutex_lock(&mon->out_lock);
337 for(;;) {
338 c = *str++;
339 if (c == '\0')
340 break;
341 if (c == '\n') {
342 qstring_append_chr(mon->outbuf, '\r');
344 qstring_append_chr(mon->outbuf, c);
345 if (c == '\n') {
346 monitor_flush_locked(mon);
349 qemu_mutex_unlock(&mon->out_lock);
352 void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
354 char *buf;
356 if (!mon)
357 return;
359 if (monitor_is_qmp(mon)) {
360 return;
363 buf = g_strdup_vprintf(fmt, ap);
364 monitor_puts(mon, buf);
365 g_free(buf);
368 void monitor_printf(Monitor *mon, const char *fmt, ...)
370 va_list ap;
371 va_start(ap, fmt);
372 monitor_vprintf(mon, fmt, ap);
373 va_end(ap);
376 int monitor_fprintf(FILE *stream, const char *fmt, ...)
378 va_list ap;
379 va_start(ap, fmt);
380 monitor_vprintf((Monitor *)stream, fmt, ap);
381 va_end(ap);
382 return 0;
385 static void monitor_json_emitter(Monitor *mon, const QObject *data)
387 QString *json;
389 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
390 qobject_to_json(data);
391 assert(json != NULL);
393 qstring_append_chr(json, '\n');
394 monitor_puts(mon, qstring_get_str(json));
396 QDECREF(json);
399 static MonitorQAPIEventConf monitor_qapi_event_conf[QAPI_EVENT__MAX] = {
400 /* Limit guest-triggerable events to 1 per second */
401 [QAPI_EVENT_RTC_CHANGE] = { 1000 * SCALE_MS },
402 [QAPI_EVENT_WATCHDOG] = { 1000 * SCALE_MS },
403 [QAPI_EVENT_BALLOON_CHANGE] = { 1000 * SCALE_MS },
404 [QAPI_EVENT_QUORUM_REPORT_BAD] = { 1000 * SCALE_MS },
405 [QAPI_EVENT_QUORUM_FAILURE] = { 1000 * SCALE_MS },
406 [QAPI_EVENT_VSERPORT_CHANGE] = { 1000 * SCALE_MS },
409 GHashTable *monitor_qapi_event_state;
412 * Emits the event to every monitor instance, @event is only used for trace
413 * Called with monitor_lock held.
415 static void monitor_qapi_event_emit(QAPIEvent event, QDict *qdict)
417 Monitor *mon;
419 trace_monitor_protocol_event_emit(event, qdict);
420 QLIST_FOREACH(mon, &mon_list, entry) {
421 if (monitor_is_qmp(mon)
422 && mon->qmp.commands != &qmp_cap_negotiation_commands) {
423 monitor_json_emitter(mon, QOBJECT(qdict));
428 static void monitor_qapi_event_handler(void *opaque);
431 * Queue a new event for emission to Monitor instances,
432 * applying any rate limiting if required.
434 static void
435 monitor_qapi_event_queue(QAPIEvent event, QDict *qdict, Error **errp)
437 MonitorQAPIEventConf *evconf;
438 MonitorQAPIEventState *evstate;
440 assert(event < QAPI_EVENT__MAX);
441 evconf = &monitor_qapi_event_conf[event];
442 trace_monitor_protocol_event_queue(event, qdict, evconf->rate);
444 qemu_mutex_lock(&monitor_lock);
446 if (!evconf->rate) {
447 /* Unthrottled event */
448 monitor_qapi_event_emit(event, qdict);
449 } else {
450 QDict *data = qobject_to_qdict(qdict_get(qdict, "data"));
451 MonitorQAPIEventState key = { .event = event, .data = data };
453 evstate = g_hash_table_lookup(monitor_qapi_event_state, &key);
454 assert(!evstate || timer_pending(evstate->timer));
456 if (evstate) {
458 * Timer is pending for (at least) evconf->rate ns after
459 * last send. Store event for sending when timer fires,
460 * replacing a prior stored event if any.
462 QDECREF(evstate->qdict);
463 evstate->qdict = qdict;
464 QINCREF(evstate->qdict);
465 } else {
467 * Last send was (at least) evconf->rate ns ago.
468 * Send immediately, and arm the timer to call
469 * monitor_qapi_event_handler() in evconf->rate ns. Any
470 * events arriving before then will be delayed until then.
472 int64_t now = qemu_clock_get_ns(event_clock_type);
474 monitor_qapi_event_emit(event, qdict);
476 evstate = g_new(MonitorQAPIEventState, 1);
477 evstate->event = event;
478 evstate->data = data;
479 QINCREF(evstate->data);
480 evstate->qdict = NULL;
481 evstate->timer = timer_new_ns(event_clock_type,
482 monitor_qapi_event_handler,
483 evstate);
484 g_hash_table_add(monitor_qapi_event_state, evstate);
485 timer_mod_ns(evstate->timer, now + evconf->rate);
489 qemu_mutex_unlock(&monitor_lock);
493 * This function runs evconf->rate ns after sending a throttled
494 * event.
495 * If another event has since been stored, send it.
497 static void monitor_qapi_event_handler(void *opaque)
499 MonitorQAPIEventState *evstate = opaque;
500 MonitorQAPIEventConf *evconf = &monitor_qapi_event_conf[evstate->event];
502 trace_monitor_protocol_event_handler(evstate->event, evstate->qdict);
503 qemu_mutex_lock(&monitor_lock);
505 if (evstate->qdict) {
506 int64_t now = qemu_clock_get_ns(event_clock_type);
508 monitor_qapi_event_emit(evstate->event, evstate->qdict);
509 QDECREF(evstate->qdict);
510 evstate->qdict = NULL;
511 timer_mod_ns(evstate->timer, now + evconf->rate);
512 } else {
513 g_hash_table_remove(monitor_qapi_event_state, evstate);
514 QDECREF(evstate->data);
515 timer_free(evstate->timer);
516 g_free(evstate);
519 qemu_mutex_unlock(&monitor_lock);
522 static unsigned int qapi_event_throttle_hash(const void *key)
524 const MonitorQAPIEventState *evstate = key;
525 unsigned int hash = evstate->event * 255;
527 if (evstate->event == QAPI_EVENT_VSERPORT_CHANGE) {
528 hash += g_str_hash(qdict_get_str(evstate->data, "id"));
531 if (evstate->event == QAPI_EVENT_QUORUM_REPORT_BAD) {
532 hash += g_str_hash(qdict_get_str(evstate->data, "node-name"));
535 return hash;
538 static gboolean qapi_event_throttle_equal(const void *a, const void *b)
540 const MonitorQAPIEventState *eva = a;
541 const MonitorQAPIEventState *evb = b;
543 if (eva->event != evb->event) {
544 return FALSE;
547 if (eva->event == QAPI_EVENT_VSERPORT_CHANGE) {
548 return !strcmp(qdict_get_str(eva->data, "id"),
549 qdict_get_str(evb->data, "id"));
552 if (eva->event == QAPI_EVENT_QUORUM_REPORT_BAD) {
553 return !strcmp(qdict_get_str(eva->data, "node-name"),
554 qdict_get_str(evb->data, "node-name"));
557 return TRUE;
560 static void monitor_qapi_event_init(void)
562 if (qtest_enabled()) {
563 event_clock_type = QEMU_CLOCK_VIRTUAL;
566 monitor_qapi_event_state = g_hash_table_new(qapi_event_throttle_hash,
567 qapi_event_throttle_equal);
568 qmp_event_set_func_emit(monitor_qapi_event_queue);
571 static void handle_hmp_command(Monitor *mon, const char *cmdline);
573 static void monitor_data_init(Monitor *mon)
575 memset(mon, 0, sizeof(Monitor));
576 qemu_mutex_init(&mon->out_lock);
577 mon->outbuf = qstring_new();
578 /* Use *mon_cmds by default. */
579 mon->cmd_table = mon_cmds;
582 static void monitor_data_destroy(Monitor *mon)
584 g_free(mon->mon_cpu_path);
585 qemu_chr_fe_deinit(&mon->chr, false);
586 if (monitor_is_qmp(mon)) {
587 json_message_parser_destroy(&mon->qmp.parser);
589 readline_free(mon->rs);
590 QDECREF(mon->outbuf);
591 qemu_mutex_destroy(&mon->out_lock);
594 char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index,
595 int64_t cpu_index, Error **errp)
597 char *output = NULL;
598 Monitor *old_mon, hmp;
600 monitor_data_init(&hmp);
601 hmp.skip_flush = true;
603 old_mon = cur_mon;
604 cur_mon = &hmp;
606 if (has_cpu_index) {
607 int ret = monitor_set_cpu(cpu_index);
608 if (ret < 0) {
609 cur_mon = old_mon;
610 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
611 "a CPU number");
612 goto out;
616 handle_hmp_command(&hmp, command_line);
617 cur_mon = old_mon;
619 qemu_mutex_lock(&hmp.out_lock);
620 if (qstring_get_length(hmp.outbuf) > 0) {
621 output = g_strdup(qstring_get_str(hmp.outbuf));
622 } else {
623 output = g_strdup("");
625 qemu_mutex_unlock(&hmp.out_lock);
627 out:
628 monitor_data_destroy(&hmp);
629 return output;
632 static int compare_cmd(const char *name, const char *list)
634 const char *p, *pstart;
635 int len;
636 len = strlen(name);
637 p = list;
638 for(;;) {
639 pstart = p;
640 p = strchr(p, '|');
641 if (!p)
642 p = pstart + strlen(pstart);
643 if ((p - pstart) == len && !memcmp(pstart, name, len))
644 return 1;
645 if (*p == '\0')
646 break;
647 p++;
649 return 0;
652 static int get_str(char *buf, int buf_size, const char **pp)
654 const char *p;
655 char *q;
656 int c;
658 q = buf;
659 p = *pp;
660 while (qemu_isspace(*p)) {
661 p++;
663 if (*p == '\0') {
664 fail:
665 *q = '\0';
666 *pp = p;
667 return -1;
669 if (*p == '\"') {
670 p++;
671 while (*p != '\0' && *p != '\"') {
672 if (*p == '\\') {
673 p++;
674 c = *p++;
675 switch (c) {
676 case 'n':
677 c = '\n';
678 break;
679 case 'r':
680 c = '\r';
681 break;
682 case '\\':
683 case '\'':
684 case '\"':
685 break;
686 default:
687 printf("unsupported escape code: '\\%c'\n", c);
688 goto fail;
690 if ((q - buf) < buf_size - 1) {
691 *q++ = c;
693 } else {
694 if ((q - buf) < buf_size - 1) {
695 *q++ = *p;
697 p++;
700 if (*p != '\"') {
701 printf("unterminated string\n");
702 goto fail;
704 p++;
705 } else {
706 while (*p != '\0' && !qemu_isspace(*p)) {
707 if ((q - buf) < buf_size - 1) {
708 *q++ = *p;
710 p++;
713 *q = '\0';
714 *pp = p;
715 return 0;
718 #define MAX_ARGS 16
720 static void free_cmdline_args(char **args, int nb_args)
722 int i;
724 assert(nb_args <= MAX_ARGS);
726 for (i = 0; i < nb_args; i++) {
727 g_free(args[i]);
733 * Parse the command line to get valid args.
734 * @cmdline: command line to be parsed.
735 * @pnb_args: location to store the number of args, must NOT be NULL.
736 * @args: location to store the args, which should be freed by caller, must
737 * NOT be NULL.
739 * Returns 0 on success, negative on failure.
741 * NOTE: this parser is an approximate form of the real command parser. Number
742 * of args have a limit of MAX_ARGS. If cmdline contains more, it will
743 * return with failure.
745 static int parse_cmdline(const char *cmdline,
746 int *pnb_args, char **args)
748 const char *p;
749 int nb_args, ret;
750 char buf[1024];
752 p = cmdline;
753 nb_args = 0;
754 for (;;) {
755 while (qemu_isspace(*p)) {
756 p++;
758 if (*p == '\0') {
759 break;
761 if (nb_args >= MAX_ARGS) {
762 goto fail;
764 ret = get_str(buf, sizeof(buf), &p);
765 if (ret < 0) {
766 goto fail;
768 args[nb_args] = g_strdup(buf);
769 nb_args++;
771 *pnb_args = nb_args;
772 return 0;
774 fail:
775 free_cmdline_args(args, nb_args);
776 return -1;
779 static void help_cmd_dump_one(Monitor *mon,
780 const mon_cmd_t *cmd,
781 char **prefix_args,
782 int prefix_args_nb)
784 int i;
786 for (i = 0; i < prefix_args_nb; i++) {
787 monitor_printf(mon, "%s ", prefix_args[i]);
789 monitor_printf(mon, "%s %s -- %s\n", cmd->name, cmd->params, cmd->help);
792 /* @args[@arg_index] is the valid command need to find in @cmds */
793 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
794 char **args, int nb_args, int arg_index)
796 const mon_cmd_t *cmd;
798 /* No valid arg need to compare with, dump all in *cmds */
799 if (arg_index >= nb_args) {
800 for (cmd = cmds; cmd->name != NULL; cmd++) {
801 help_cmd_dump_one(mon, cmd, args, arg_index);
803 return;
806 /* Find one entry to dump */
807 for (cmd = cmds; cmd->name != NULL; cmd++) {
808 if (compare_cmd(args[arg_index], cmd->name)) {
809 if (cmd->sub_table) {
810 /* continue with next arg */
811 help_cmd_dump(mon, cmd->sub_table,
812 args, nb_args, arg_index + 1);
813 } else {
814 help_cmd_dump_one(mon, cmd, args, arg_index);
816 break;
821 static void help_cmd(Monitor *mon, const char *name)
823 char *args[MAX_ARGS];
824 int nb_args = 0;
826 /* 1. parse user input */
827 if (name) {
828 /* special case for log, directly dump and return */
829 if (!strcmp(name, "log")) {
830 const QEMULogItem *item;
831 monitor_printf(mon, "Log items (comma separated):\n");
832 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
833 for (item = qemu_log_items; item->mask != 0; item++) {
834 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
836 return;
839 if (parse_cmdline(name, &nb_args, args) < 0) {
840 return;
844 /* 2. dump the contents according to parsed args */
845 help_cmd_dump(mon, mon->cmd_table, args, nb_args, 0);
847 free_cmdline_args(args, nb_args);
850 static void do_help_cmd(Monitor *mon, const QDict *qdict)
852 help_cmd(mon, qdict_get_try_str(qdict, "name"));
855 static void hmp_trace_event(Monitor *mon, const QDict *qdict)
857 const char *tp_name = qdict_get_str(qdict, "name");
858 bool new_state = qdict_get_bool(qdict, "option");
859 bool has_vcpu = qdict_haskey(qdict, "vcpu");
860 int vcpu = qdict_get_try_int(qdict, "vcpu", 0);
861 Error *local_err = NULL;
863 if (vcpu < 0) {
864 monitor_printf(mon, "argument vcpu must be positive");
865 return;
868 qmp_trace_event_set_state(tp_name, new_state, true, true, has_vcpu, vcpu, &local_err);
869 if (local_err) {
870 error_report_err(local_err);
874 #ifdef CONFIG_TRACE_SIMPLE
875 static void hmp_trace_file(Monitor *mon, const QDict *qdict)
877 const char *op = qdict_get_try_str(qdict, "op");
878 const char *arg = qdict_get_try_str(qdict, "arg");
880 if (!op) {
881 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
882 } else if (!strcmp(op, "on")) {
883 st_set_trace_file_enabled(true);
884 } else if (!strcmp(op, "off")) {
885 st_set_trace_file_enabled(false);
886 } else if (!strcmp(op, "flush")) {
887 st_flush_trace_buffer();
888 } else if (!strcmp(op, "set")) {
889 if (arg) {
890 st_set_trace_file(arg);
892 } else {
893 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
894 help_cmd(mon, "trace-file");
897 #endif
899 static void hmp_info_help(Monitor *mon, const QDict *qdict)
901 help_cmd(mon, "info");
904 static void query_commands_cb(QmpCommand *cmd, void *opaque)
906 CommandInfoList *info, **list = opaque;
908 if (!cmd->enabled) {
909 return;
912 info = g_malloc0(sizeof(*info));
913 info->value = g_malloc0(sizeof(*info->value));
914 info->value->name = g_strdup(cmd->name);
915 info->next = *list;
916 *list = info;
919 CommandInfoList *qmp_query_commands(Error **errp)
921 CommandInfoList *list = NULL;
923 qmp_for_each_command(cur_mon->qmp.commands, query_commands_cb, &list);
925 return list;
928 EventInfoList *qmp_query_events(Error **errp)
930 EventInfoList *info, *ev_list = NULL;
931 QAPIEvent e;
933 for (e = 0 ; e < QAPI_EVENT__MAX ; e++) {
934 const char *event_name = QAPIEvent_str(e);
935 assert(event_name != NULL);
936 info = g_malloc0(sizeof(*info));
937 info->value = g_malloc0(sizeof(*info->value));
938 info->value->name = g_strdup(event_name);
940 info->next = ev_list;
941 ev_list = info;
944 return ev_list;
948 * Minor hack: generated marshalling suppressed for this command
949 * ('gen': false in the schema) so we can parse the JSON string
950 * directly into QObject instead of first parsing it with
951 * visit_type_SchemaInfoList() into a SchemaInfoList, then marshal it
952 * to QObject with generated output marshallers, every time. Instead,
953 * we do it in test-qobject-input-visitor.c, just to make sure
954 * qapi-gen.py's output actually conforms to the schema.
956 static void qmp_query_qmp_schema(QDict *qdict, QObject **ret_data,
957 Error **errp)
959 *ret_data = qobject_from_json(qmp_schema_json, &error_abort);
963 * We used to define commands in qmp-commands.hx in addition to the
964 * QAPI schema. This permitted defining some of them only in certain
965 * configurations. query-commands has always reflected that (good,
966 * because it lets QMP clients figure out what's actually available),
967 * while query-qmp-schema never did (not so good). This function is a
968 * hack to keep the configuration-specific commands defined exactly as
969 * before, even though qmp-commands.hx is gone.
971 * FIXME Educate the QAPI schema on configuration-specific commands,
972 * and drop this hack.
974 static void qmp_unregister_commands_hack(void)
976 #ifndef CONFIG_SPICE
977 qmp_unregister_command(&qmp_commands, "query-spice");
978 #endif
979 #ifndef CONFIG_REPLICATION
980 qmp_unregister_command(&qmp_commands, "xen-set-replication");
981 qmp_unregister_command(&qmp_commands, "query-xen-replication-status");
982 qmp_unregister_command(&qmp_commands, "xen-colo-do-checkpoint");
983 #endif
984 #ifndef TARGET_I386
985 qmp_unregister_command(&qmp_commands, "rtc-reset-reinjection");
986 qmp_unregister_command(&qmp_commands, "query-sev");
987 qmp_unregister_command(&qmp_commands, "query-sev-launch-measure");
988 #endif
989 #ifndef TARGET_S390X
990 qmp_unregister_command(&qmp_commands, "dump-skeys");
991 #endif
992 #ifndef TARGET_ARM
993 qmp_unregister_command(&qmp_commands, "query-gic-capabilities");
994 #endif
995 #if !defined(TARGET_S390X) && !defined(TARGET_I386)
996 qmp_unregister_command(&qmp_commands, "query-cpu-model-expansion");
997 #endif
998 #if !defined(TARGET_S390X)
999 qmp_unregister_command(&qmp_commands, "query-cpu-model-baseline");
1000 qmp_unregister_command(&qmp_commands, "query-cpu-model-comparison");
1001 #endif
1002 #if !defined(TARGET_PPC) && !defined(TARGET_ARM) && !defined(TARGET_I386) \
1003 && !defined(TARGET_S390X)
1004 qmp_unregister_command(&qmp_commands, "query-cpu-definitions");
1005 #endif
1008 void monitor_init_qmp_commands(void)
1011 * Two command lists:
1012 * - qmp_commands contains all QMP commands
1013 * - qmp_cap_negotiation_commands contains just
1014 * "qmp_capabilities", to enforce capability negotiation
1017 qmp_init_marshal(&qmp_commands);
1019 qmp_register_command(&qmp_commands, "query-qmp-schema",
1020 qmp_query_qmp_schema,
1021 QCO_NO_OPTIONS);
1022 qmp_register_command(&qmp_commands, "device_add", qmp_device_add,
1023 QCO_NO_OPTIONS);
1024 qmp_register_command(&qmp_commands, "netdev_add", qmp_netdev_add,
1025 QCO_NO_OPTIONS);
1027 qmp_unregister_commands_hack();
1029 QTAILQ_INIT(&qmp_cap_negotiation_commands);
1030 qmp_register_command(&qmp_cap_negotiation_commands, "qmp_capabilities",
1031 qmp_marshal_qmp_capabilities, QCO_NO_OPTIONS);
1034 void qmp_qmp_capabilities(Error **errp)
1036 if (cur_mon->qmp.commands == &qmp_commands) {
1037 error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND,
1038 "Capabilities negotiation is already complete, command "
1039 "ignored");
1040 return;
1043 cur_mon->qmp.commands = &qmp_commands;
1046 /* set the current CPU defined by the user */
1047 int monitor_set_cpu(int cpu_index)
1049 CPUState *cpu;
1051 cpu = qemu_get_cpu(cpu_index);
1052 if (cpu == NULL) {
1053 return -1;
1055 g_free(cur_mon->mon_cpu_path);
1056 cur_mon->mon_cpu_path = object_get_canonical_path(OBJECT(cpu));
1057 return 0;
1060 static CPUState *mon_get_cpu_sync(bool synchronize)
1062 CPUState *cpu;
1064 if (cur_mon->mon_cpu_path) {
1065 cpu = (CPUState *) object_resolve_path_type(cur_mon->mon_cpu_path,
1066 TYPE_CPU, NULL);
1067 if (!cpu) {
1068 g_free(cur_mon->mon_cpu_path);
1069 cur_mon->mon_cpu_path = NULL;
1072 if (!cur_mon->mon_cpu_path) {
1073 if (!first_cpu) {
1074 return NULL;
1076 monitor_set_cpu(first_cpu->cpu_index);
1077 cpu = first_cpu;
1079 if (synchronize) {
1080 cpu_synchronize_state(cpu);
1082 return cpu;
1085 CPUState *mon_get_cpu(void)
1087 return mon_get_cpu_sync(true);
1090 CPUArchState *mon_get_cpu_env(void)
1092 CPUState *cs = mon_get_cpu();
1094 return cs ? cs->env_ptr : NULL;
1097 int monitor_get_cpu_index(void)
1099 CPUState *cs = mon_get_cpu_sync(false);
1101 return cs ? cs->cpu_index : UNASSIGNED_CPU_INDEX;
1104 static void hmp_info_registers(Monitor *mon, const QDict *qdict)
1106 bool all_cpus = qdict_get_try_bool(qdict, "cpustate_all", false);
1107 CPUState *cs;
1109 if (all_cpus) {
1110 CPU_FOREACH(cs) {
1111 monitor_printf(mon, "\nCPU#%d\n", cs->cpu_index);
1112 cpu_dump_state(cs, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU);
1114 } else {
1115 cs = mon_get_cpu();
1117 if (!cs) {
1118 monitor_printf(mon, "No CPU available\n");
1119 return;
1122 cpu_dump_state(cs, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU);
1126 #ifdef CONFIG_TCG
1127 static void hmp_info_jit(Monitor *mon, const QDict *qdict)
1129 if (!tcg_enabled()) {
1130 error_report("JIT information is only available with accel=tcg");
1131 return;
1134 dump_exec_info((FILE *)mon, monitor_fprintf);
1135 dump_drift_info((FILE *)mon, monitor_fprintf);
1138 static void hmp_info_opcount(Monitor *mon, const QDict *qdict)
1140 dump_opcount_info((FILE *)mon, monitor_fprintf);
1142 #endif
1144 static void hmp_info_history(Monitor *mon, const QDict *qdict)
1146 int i;
1147 const char *str;
1149 if (!mon->rs)
1150 return;
1151 i = 0;
1152 for(;;) {
1153 str = readline_get_history(mon->rs, i);
1154 if (!str)
1155 break;
1156 monitor_printf(mon, "%d: '%s'\n", i, str);
1157 i++;
1161 static void hmp_info_cpustats(Monitor *mon, const QDict *qdict)
1163 CPUState *cs = mon_get_cpu();
1165 if (!cs) {
1166 monitor_printf(mon, "No CPU available\n");
1167 return;
1169 cpu_dump_statistics(cs, (FILE *)mon, &monitor_fprintf, 0);
1172 static void hmp_info_trace_events(Monitor *mon, const QDict *qdict)
1174 const char *name = qdict_get_try_str(qdict, "name");
1175 bool has_vcpu = qdict_haskey(qdict, "vcpu");
1176 int vcpu = qdict_get_try_int(qdict, "vcpu", 0);
1177 TraceEventInfoList *events;
1178 TraceEventInfoList *elem;
1179 Error *local_err = NULL;
1181 if (name == NULL) {
1182 name = "*";
1184 if (vcpu < 0) {
1185 monitor_printf(mon, "argument vcpu must be positive");
1186 return;
1189 events = qmp_trace_event_get_state(name, has_vcpu, vcpu, &local_err);
1190 if (local_err) {
1191 error_report_err(local_err);
1192 return;
1195 for (elem = events; elem != NULL; elem = elem->next) {
1196 monitor_printf(mon, "%s : state %u\n",
1197 elem->value->name,
1198 elem->value->state == TRACE_EVENT_STATE_ENABLED ? 1 : 0);
1200 qapi_free_TraceEventInfoList(events);
1203 void qmp_client_migrate_info(const char *protocol, const char *hostname,
1204 bool has_port, int64_t port,
1205 bool has_tls_port, int64_t tls_port,
1206 bool has_cert_subject, const char *cert_subject,
1207 Error **errp)
1209 if (strcmp(protocol, "spice") == 0) {
1210 if (!qemu_using_spice(errp)) {
1211 return;
1214 if (!has_port && !has_tls_port) {
1215 error_setg(errp, QERR_MISSING_PARAMETER, "port/tls-port");
1216 return;
1219 if (qemu_spice_migrate_info(hostname,
1220 has_port ? port : -1,
1221 has_tls_port ? tls_port : -1,
1222 cert_subject)) {
1223 error_setg(errp, QERR_UNDEFINED_ERROR);
1224 return;
1226 return;
1229 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "protocol", "spice");
1232 static void hmp_logfile(Monitor *mon, const QDict *qdict)
1234 Error *err = NULL;
1236 qemu_set_log_filename(qdict_get_str(qdict, "filename"), &err);
1237 if (err) {
1238 error_report_err(err);
1242 static void hmp_log(Monitor *mon, const QDict *qdict)
1244 int mask;
1245 const char *items = qdict_get_str(qdict, "items");
1247 if (!strcmp(items, "none")) {
1248 mask = 0;
1249 } else {
1250 mask = qemu_str_to_log_mask(items);
1251 if (!mask) {
1252 help_cmd(mon, "log");
1253 return;
1256 qemu_set_log(mask);
1259 static void hmp_singlestep(Monitor *mon, const QDict *qdict)
1261 const char *option = qdict_get_try_str(qdict, "option");
1262 if (!option || !strcmp(option, "on")) {
1263 singlestep = 1;
1264 } else if (!strcmp(option, "off")) {
1265 singlestep = 0;
1266 } else {
1267 monitor_printf(mon, "unexpected option %s\n", option);
1271 static void hmp_gdbserver(Monitor *mon, const QDict *qdict)
1273 const char *device = qdict_get_try_str(qdict, "device");
1274 if (!device)
1275 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1276 if (gdbserver_start(device) < 0) {
1277 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1278 device);
1279 } else if (strcmp(device, "none") == 0) {
1280 monitor_printf(mon, "Disabled gdbserver\n");
1281 } else {
1282 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1283 device);
1287 static void hmp_watchdog_action(Monitor *mon, const QDict *qdict)
1289 const char *action = qdict_get_str(qdict, "action");
1290 if (select_watchdog_action(action) == -1) {
1291 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1295 static void monitor_printc(Monitor *mon, int c)
1297 monitor_printf(mon, "'");
1298 switch(c) {
1299 case '\'':
1300 monitor_printf(mon, "\\'");
1301 break;
1302 case '\\':
1303 monitor_printf(mon, "\\\\");
1304 break;
1305 case '\n':
1306 monitor_printf(mon, "\\n");
1307 break;
1308 case '\r':
1309 monitor_printf(mon, "\\r");
1310 break;
1311 default:
1312 if (c >= 32 && c <= 126) {
1313 monitor_printf(mon, "%c", c);
1314 } else {
1315 monitor_printf(mon, "\\x%02x", c);
1317 break;
1319 monitor_printf(mon, "'");
1322 static void memory_dump(Monitor *mon, int count, int format, int wsize,
1323 hwaddr addr, int is_physical)
1325 int l, line_size, i, max_digits, len;
1326 uint8_t buf[16];
1327 uint64_t v;
1328 CPUState *cs = mon_get_cpu();
1330 if (!cs && (format == 'i' || !is_physical)) {
1331 monitor_printf(mon, "Can not dump without CPU\n");
1332 return;
1335 if (format == 'i') {
1336 monitor_disas(mon, cs, addr, count, is_physical);
1337 return;
1340 len = wsize * count;
1341 if (wsize == 1)
1342 line_size = 8;
1343 else
1344 line_size = 16;
1345 max_digits = 0;
1347 switch(format) {
1348 case 'o':
1349 max_digits = DIV_ROUND_UP(wsize * 8, 3);
1350 break;
1351 default:
1352 case 'x':
1353 max_digits = (wsize * 8) / 4;
1354 break;
1355 case 'u':
1356 case 'd':
1357 max_digits = DIV_ROUND_UP(wsize * 8 * 10, 33);
1358 break;
1359 case 'c':
1360 wsize = 1;
1361 break;
1364 while (len > 0) {
1365 if (is_physical)
1366 monitor_printf(mon, TARGET_FMT_plx ":", addr);
1367 else
1368 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
1369 l = len;
1370 if (l > line_size)
1371 l = line_size;
1372 if (is_physical) {
1373 cpu_physical_memory_read(addr, buf, l);
1374 } else {
1375 if (cpu_memory_rw_debug(cs, addr, buf, l, 0) < 0) {
1376 monitor_printf(mon, " Cannot access memory\n");
1377 break;
1380 i = 0;
1381 while (i < l) {
1382 switch(wsize) {
1383 default:
1384 case 1:
1385 v = ldub_p(buf + i);
1386 break;
1387 case 2:
1388 v = lduw_p(buf + i);
1389 break;
1390 case 4:
1391 v = (uint32_t)ldl_p(buf + i);
1392 break;
1393 case 8:
1394 v = ldq_p(buf + i);
1395 break;
1397 monitor_printf(mon, " ");
1398 switch(format) {
1399 case 'o':
1400 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
1401 break;
1402 case 'x':
1403 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
1404 break;
1405 case 'u':
1406 monitor_printf(mon, "%*" PRIu64, max_digits, v);
1407 break;
1408 case 'd':
1409 monitor_printf(mon, "%*" PRId64, max_digits, v);
1410 break;
1411 case 'c':
1412 monitor_printc(mon, v);
1413 break;
1415 i += wsize;
1417 monitor_printf(mon, "\n");
1418 addr += l;
1419 len -= l;
1423 static void hmp_memory_dump(Monitor *mon, const QDict *qdict)
1425 int count = qdict_get_int(qdict, "count");
1426 int format = qdict_get_int(qdict, "format");
1427 int size = qdict_get_int(qdict, "size");
1428 target_long addr = qdict_get_int(qdict, "addr");
1430 memory_dump(mon, count, format, size, addr, 0);
1433 static void hmp_physical_memory_dump(Monitor *mon, const QDict *qdict)
1435 int count = qdict_get_int(qdict, "count");
1436 int format = qdict_get_int(qdict, "format");
1437 int size = qdict_get_int(qdict, "size");
1438 hwaddr addr = qdict_get_int(qdict, "addr");
1440 memory_dump(mon, count, format, size, addr, 1);
1443 static void *gpa2hva(MemoryRegion **p_mr, hwaddr addr, Error **errp)
1445 MemoryRegionSection mrs = memory_region_find(get_system_memory(),
1446 addr, 1);
1448 if (!mrs.mr) {
1449 error_setg(errp, "No memory is mapped at address 0x%" HWADDR_PRIx, addr);
1450 return NULL;
1453 if (!memory_region_is_ram(mrs.mr) && !memory_region_is_romd(mrs.mr)) {
1454 error_setg(errp, "Memory at address 0x%" HWADDR_PRIx "is not RAM", addr);
1455 memory_region_unref(mrs.mr);
1456 return NULL;
1459 *p_mr = mrs.mr;
1460 return qemu_map_ram_ptr(mrs.mr->ram_block, mrs.offset_within_region);
1463 static void hmp_gpa2hva(Monitor *mon, const QDict *qdict)
1465 hwaddr addr = qdict_get_int(qdict, "addr");
1466 Error *local_err = NULL;
1467 MemoryRegion *mr = NULL;
1468 void *ptr;
1470 ptr = gpa2hva(&mr, addr, &local_err);
1471 if (local_err) {
1472 error_report_err(local_err);
1473 return;
1476 monitor_printf(mon, "Host virtual address for 0x%" HWADDR_PRIx
1477 " (%s) is %p\n",
1478 addr, mr->name, ptr);
1480 memory_region_unref(mr);
1483 #ifdef CONFIG_LINUX
1484 static uint64_t vtop(void *ptr, Error **errp)
1486 uint64_t pinfo;
1487 uint64_t ret = -1;
1488 uintptr_t addr = (uintptr_t) ptr;
1489 uintptr_t pagesize = getpagesize();
1490 off_t offset = addr / pagesize * sizeof(pinfo);
1491 int fd;
1493 fd = open("/proc/self/pagemap", O_RDONLY);
1494 if (fd == -1) {
1495 error_setg_errno(errp, errno, "Cannot open /proc/self/pagemap");
1496 return -1;
1499 /* Force copy-on-write if necessary. */
1500 atomic_add((uint8_t *)ptr, 0);
1502 if (pread(fd, &pinfo, sizeof(pinfo), offset) != sizeof(pinfo)) {
1503 error_setg_errno(errp, errno, "Cannot read pagemap");
1504 goto out;
1506 if ((pinfo & (1ull << 63)) == 0) {
1507 error_setg(errp, "Page not present");
1508 goto out;
1510 ret = ((pinfo & 0x007fffffffffffffull) * pagesize) | (addr & (pagesize - 1));
1512 out:
1513 close(fd);
1514 return ret;
1517 static void hmp_gpa2hpa(Monitor *mon, const QDict *qdict)
1519 hwaddr addr = qdict_get_int(qdict, "addr");
1520 Error *local_err = NULL;
1521 MemoryRegion *mr = NULL;
1522 void *ptr;
1523 uint64_t physaddr;
1525 ptr = gpa2hva(&mr, addr, &local_err);
1526 if (local_err) {
1527 error_report_err(local_err);
1528 return;
1531 physaddr = vtop(ptr, &local_err);
1532 if (local_err) {
1533 error_report_err(local_err);
1534 } else {
1535 monitor_printf(mon, "Host physical address for 0x%" HWADDR_PRIx
1536 " (%s) is 0x%" PRIx64 "\n",
1537 addr, mr->name, (uint64_t) physaddr);
1540 memory_region_unref(mr);
1542 #endif
1544 static void do_print(Monitor *mon, const QDict *qdict)
1546 int format = qdict_get_int(qdict, "format");
1547 hwaddr val = qdict_get_int(qdict, "val");
1549 switch(format) {
1550 case 'o':
1551 monitor_printf(mon, "%#" HWADDR_PRIo, val);
1552 break;
1553 case 'x':
1554 monitor_printf(mon, "%#" HWADDR_PRIx, val);
1555 break;
1556 case 'u':
1557 monitor_printf(mon, "%" HWADDR_PRIu, val);
1558 break;
1559 default:
1560 case 'd':
1561 monitor_printf(mon, "%" HWADDR_PRId, val);
1562 break;
1563 case 'c':
1564 monitor_printc(mon, val);
1565 break;
1567 monitor_printf(mon, "\n");
1570 static void hmp_sum(Monitor *mon, const QDict *qdict)
1572 uint32_t addr;
1573 uint16_t sum;
1574 uint32_t start = qdict_get_int(qdict, "start");
1575 uint32_t size = qdict_get_int(qdict, "size");
1577 sum = 0;
1578 for(addr = start; addr < (start + size); addr++) {
1579 uint8_t val = address_space_ldub(&address_space_memory, addr,
1580 MEMTXATTRS_UNSPECIFIED, NULL);
1581 /* BSD sum algorithm ('sum' Unix command) */
1582 sum = (sum >> 1) | (sum << 15);
1583 sum += val;
1585 monitor_printf(mon, "%05d\n", sum);
1588 static int mouse_button_state;
1590 static void hmp_mouse_move(Monitor *mon, const QDict *qdict)
1592 int dx, dy, dz, button;
1593 const char *dx_str = qdict_get_str(qdict, "dx_str");
1594 const char *dy_str = qdict_get_str(qdict, "dy_str");
1595 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1597 dx = strtol(dx_str, NULL, 0);
1598 dy = strtol(dy_str, NULL, 0);
1599 qemu_input_queue_rel(NULL, INPUT_AXIS_X, dx);
1600 qemu_input_queue_rel(NULL, INPUT_AXIS_Y, dy);
1602 if (dz_str) {
1603 dz = strtol(dz_str, NULL, 0);
1604 if (dz != 0) {
1605 button = (dz > 0) ? INPUT_BUTTON_WHEEL_UP : INPUT_BUTTON_WHEEL_DOWN;
1606 qemu_input_queue_btn(NULL, button, true);
1607 qemu_input_event_sync();
1608 qemu_input_queue_btn(NULL, button, false);
1611 qemu_input_event_sync();
1614 static void hmp_mouse_button(Monitor *mon, const QDict *qdict)
1616 static uint32_t bmap[INPUT_BUTTON__MAX] = {
1617 [INPUT_BUTTON_LEFT] = MOUSE_EVENT_LBUTTON,
1618 [INPUT_BUTTON_MIDDLE] = MOUSE_EVENT_MBUTTON,
1619 [INPUT_BUTTON_RIGHT] = MOUSE_EVENT_RBUTTON,
1621 int button_state = qdict_get_int(qdict, "button_state");
1623 if (mouse_button_state == button_state) {
1624 return;
1626 qemu_input_update_buttons(NULL, bmap, mouse_button_state, button_state);
1627 qemu_input_event_sync();
1628 mouse_button_state = button_state;
1631 static void hmp_ioport_read(Monitor *mon, const QDict *qdict)
1633 int size = qdict_get_int(qdict, "size");
1634 int addr = qdict_get_int(qdict, "addr");
1635 int has_index = qdict_haskey(qdict, "index");
1636 uint32_t val;
1637 int suffix;
1639 if (has_index) {
1640 int index = qdict_get_int(qdict, "index");
1641 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
1642 addr++;
1644 addr &= 0xffff;
1646 switch(size) {
1647 default:
1648 case 1:
1649 val = cpu_inb(addr);
1650 suffix = 'b';
1651 break;
1652 case 2:
1653 val = cpu_inw(addr);
1654 suffix = 'w';
1655 break;
1656 case 4:
1657 val = cpu_inl(addr);
1658 suffix = 'l';
1659 break;
1661 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1662 suffix, addr, size * 2, val);
1665 static void hmp_ioport_write(Monitor *mon, const QDict *qdict)
1667 int size = qdict_get_int(qdict, "size");
1668 int addr = qdict_get_int(qdict, "addr");
1669 int val = qdict_get_int(qdict, "val");
1671 addr &= IOPORTS_MASK;
1673 switch (size) {
1674 default:
1675 case 1:
1676 cpu_outb(addr, val);
1677 break;
1678 case 2:
1679 cpu_outw(addr, val);
1680 break;
1681 case 4:
1682 cpu_outl(addr, val);
1683 break;
1687 static void hmp_boot_set(Monitor *mon, const QDict *qdict)
1689 Error *local_err = NULL;
1690 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1692 qemu_boot_set(bootdevice, &local_err);
1693 if (local_err) {
1694 error_report_err(local_err);
1695 } else {
1696 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1700 static void hmp_info_mtree(Monitor *mon, const QDict *qdict)
1702 bool flatview = qdict_get_try_bool(qdict, "flatview", false);
1703 bool dispatch_tree = qdict_get_try_bool(qdict, "dispatch_tree", false);
1705 mtree_info((fprintf_function)monitor_printf, mon, flatview, dispatch_tree);
1708 static void hmp_info_numa(Monitor *mon, const QDict *qdict)
1710 int i;
1711 NumaNodeMem *node_mem;
1712 CpuInfoList *cpu_list, *cpu;
1714 cpu_list = qmp_query_cpus(&error_abort);
1715 node_mem = g_new0(NumaNodeMem, nb_numa_nodes);
1717 query_numa_node_mem(node_mem);
1718 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1719 for (i = 0; i < nb_numa_nodes; i++) {
1720 monitor_printf(mon, "node %d cpus:", i);
1721 for (cpu = cpu_list; cpu; cpu = cpu->next) {
1722 if (cpu->value->has_props && cpu->value->props->has_node_id &&
1723 cpu->value->props->node_id == i) {
1724 monitor_printf(mon, " %" PRIi64, cpu->value->CPU);
1727 monitor_printf(mon, "\n");
1728 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1729 node_mem[i].node_mem >> 20);
1730 monitor_printf(mon, "node %d plugged: %" PRId64 " MB\n", i,
1731 node_mem[i].node_plugged_mem >> 20);
1733 qapi_free_CpuInfoList(cpu_list);
1734 g_free(node_mem);
1737 #ifdef CONFIG_PROFILER
1739 int64_t tcg_time;
1740 int64_t dev_time;
1742 static void hmp_info_profile(Monitor *mon, const QDict *qdict)
1744 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
1745 dev_time, dev_time / (double)NANOSECONDS_PER_SECOND);
1746 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
1747 tcg_time, tcg_time / (double)NANOSECONDS_PER_SECOND);
1748 tcg_time = 0;
1749 dev_time = 0;
1751 #else
1752 static void hmp_info_profile(Monitor *mon, const QDict *qdict)
1754 monitor_printf(mon, "Internal profiler not compiled\n");
1756 #endif
1758 /* Capture support */
1759 static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
1761 static void hmp_info_capture(Monitor *mon, const QDict *qdict)
1763 int i;
1764 CaptureState *s;
1766 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1767 monitor_printf(mon, "[%d]: ", i);
1768 s->ops.info (s->opaque);
1772 static void hmp_stopcapture(Monitor *mon, const QDict *qdict)
1774 int i;
1775 int n = qdict_get_int(qdict, "n");
1776 CaptureState *s;
1778 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1779 if (i == n) {
1780 s->ops.destroy (s->opaque);
1781 QLIST_REMOVE (s, entries);
1782 g_free (s);
1783 return;
1788 static void hmp_wavcapture(Monitor *mon, const QDict *qdict)
1790 const char *path = qdict_get_str(qdict, "path");
1791 int has_freq = qdict_haskey(qdict, "freq");
1792 int freq = qdict_get_try_int(qdict, "freq", -1);
1793 int has_bits = qdict_haskey(qdict, "bits");
1794 int bits = qdict_get_try_int(qdict, "bits", -1);
1795 int has_channels = qdict_haskey(qdict, "nchannels");
1796 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
1797 CaptureState *s;
1799 s = g_malloc0 (sizeof (*s));
1801 freq = has_freq ? freq : 44100;
1802 bits = has_bits ? bits : 16;
1803 nchannels = has_channels ? nchannels : 2;
1805 if (wav_start_capture (s, path, freq, bits, nchannels)) {
1806 monitor_printf(mon, "Failed to add wave capture\n");
1807 g_free (s);
1808 return;
1810 QLIST_INSERT_HEAD (&capture_head, s, entries);
1813 static qemu_acl *find_acl(Monitor *mon, const char *name)
1815 qemu_acl *acl = qemu_acl_find(name);
1817 if (!acl) {
1818 monitor_printf(mon, "acl: unknown list '%s'\n", name);
1820 return acl;
1823 static void hmp_acl_show(Monitor *mon, const QDict *qdict)
1825 const char *aclname = qdict_get_str(qdict, "aclname");
1826 qemu_acl *acl = find_acl(mon, aclname);
1827 qemu_acl_entry *entry;
1828 int i = 0;
1830 if (acl) {
1831 monitor_printf(mon, "policy: %s\n",
1832 acl->defaultDeny ? "deny" : "allow");
1833 QTAILQ_FOREACH(entry, &acl->entries, next) {
1834 i++;
1835 monitor_printf(mon, "%d: %s %s\n", i,
1836 entry->deny ? "deny" : "allow", entry->match);
1841 static void hmp_acl_reset(Monitor *mon, const QDict *qdict)
1843 const char *aclname = qdict_get_str(qdict, "aclname");
1844 qemu_acl *acl = find_acl(mon, aclname);
1846 if (acl) {
1847 qemu_acl_reset(acl);
1848 monitor_printf(mon, "acl: removed all rules\n");
1852 static void hmp_acl_policy(Monitor *mon, const QDict *qdict)
1854 const char *aclname = qdict_get_str(qdict, "aclname");
1855 const char *policy = qdict_get_str(qdict, "policy");
1856 qemu_acl *acl = find_acl(mon, aclname);
1858 if (acl) {
1859 if (strcmp(policy, "allow") == 0) {
1860 acl->defaultDeny = 0;
1861 monitor_printf(mon, "acl: policy set to 'allow'\n");
1862 } else if (strcmp(policy, "deny") == 0) {
1863 acl->defaultDeny = 1;
1864 monitor_printf(mon, "acl: policy set to 'deny'\n");
1865 } else {
1866 monitor_printf(mon, "acl: unknown policy '%s', "
1867 "expected 'deny' or 'allow'\n", policy);
1872 static void hmp_acl_add(Monitor *mon, const QDict *qdict)
1874 const char *aclname = qdict_get_str(qdict, "aclname");
1875 const char *match = qdict_get_str(qdict, "match");
1876 const char *policy = qdict_get_str(qdict, "policy");
1877 int has_index = qdict_haskey(qdict, "index");
1878 int index = qdict_get_try_int(qdict, "index", -1);
1879 qemu_acl *acl = find_acl(mon, aclname);
1880 int deny, ret;
1882 if (acl) {
1883 if (strcmp(policy, "allow") == 0) {
1884 deny = 0;
1885 } else if (strcmp(policy, "deny") == 0) {
1886 deny = 1;
1887 } else {
1888 monitor_printf(mon, "acl: unknown policy '%s', "
1889 "expected 'deny' or 'allow'\n", policy);
1890 return;
1892 if (has_index)
1893 ret = qemu_acl_insert(acl, deny, match, index);
1894 else
1895 ret = qemu_acl_append(acl, deny, match);
1896 if (ret < 0)
1897 monitor_printf(mon, "acl: unable to add acl entry\n");
1898 else
1899 monitor_printf(mon, "acl: added rule at position %d\n", ret);
1903 static void hmp_acl_remove(Monitor *mon, const QDict *qdict)
1905 const char *aclname = qdict_get_str(qdict, "aclname");
1906 const char *match = qdict_get_str(qdict, "match");
1907 qemu_acl *acl = find_acl(mon, aclname);
1908 int ret;
1910 if (acl) {
1911 ret = qemu_acl_remove(acl, match);
1912 if (ret < 0)
1913 monitor_printf(mon, "acl: no matching acl entry\n");
1914 else
1915 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
1919 void qmp_getfd(const char *fdname, Error **errp)
1921 mon_fd_t *monfd;
1922 int fd;
1924 fd = qemu_chr_fe_get_msgfd(&cur_mon->chr);
1925 if (fd == -1) {
1926 error_setg(errp, QERR_FD_NOT_SUPPLIED);
1927 return;
1930 if (qemu_isdigit(fdname[0])) {
1931 close(fd);
1932 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdname",
1933 "a name not starting with a digit");
1934 return;
1937 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
1938 if (strcmp(monfd->name, fdname) != 0) {
1939 continue;
1942 close(monfd->fd);
1943 monfd->fd = fd;
1944 return;
1947 monfd = g_malloc0(sizeof(mon_fd_t));
1948 monfd->name = g_strdup(fdname);
1949 monfd->fd = fd;
1951 QLIST_INSERT_HEAD(&cur_mon->fds, monfd, next);
1954 void qmp_closefd(const char *fdname, Error **errp)
1956 mon_fd_t *monfd;
1958 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
1959 if (strcmp(monfd->name, fdname) != 0) {
1960 continue;
1963 QLIST_REMOVE(monfd, next);
1964 close(monfd->fd);
1965 g_free(monfd->name);
1966 g_free(monfd);
1967 return;
1970 error_setg(errp, QERR_FD_NOT_FOUND, fdname);
1973 int monitor_get_fd(Monitor *mon, const char *fdname, Error **errp)
1975 mon_fd_t *monfd;
1977 QLIST_FOREACH(monfd, &mon->fds, next) {
1978 int fd;
1980 if (strcmp(monfd->name, fdname) != 0) {
1981 continue;
1984 fd = monfd->fd;
1986 /* caller takes ownership of fd */
1987 QLIST_REMOVE(monfd, next);
1988 g_free(monfd->name);
1989 g_free(monfd);
1991 return fd;
1994 error_setg(errp, "File descriptor named '%s' has not been found", fdname);
1995 return -1;
1998 static void monitor_fdset_cleanup(MonFdset *mon_fdset)
2000 MonFdsetFd *mon_fdset_fd;
2001 MonFdsetFd *mon_fdset_fd_next;
2003 QLIST_FOREACH_SAFE(mon_fdset_fd, &mon_fdset->fds, next, mon_fdset_fd_next) {
2004 if ((mon_fdset_fd->removed ||
2005 (QLIST_EMPTY(&mon_fdset->dup_fds) && mon_refcount == 0)) &&
2006 runstate_is_running()) {
2007 close(mon_fdset_fd->fd);
2008 g_free(mon_fdset_fd->opaque);
2009 QLIST_REMOVE(mon_fdset_fd, next);
2010 g_free(mon_fdset_fd);
2014 if (QLIST_EMPTY(&mon_fdset->fds) && QLIST_EMPTY(&mon_fdset->dup_fds)) {
2015 QLIST_REMOVE(mon_fdset, next);
2016 g_free(mon_fdset);
2020 static void monitor_fdsets_cleanup(void)
2022 MonFdset *mon_fdset;
2023 MonFdset *mon_fdset_next;
2025 QLIST_FOREACH_SAFE(mon_fdset, &mon_fdsets, next, mon_fdset_next) {
2026 monitor_fdset_cleanup(mon_fdset);
2030 AddfdInfo *qmp_add_fd(bool has_fdset_id, int64_t fdset_id, bool has_opaque,
2031 const char *opaque, Error **errp)
2033 int fd;
2034 Monitor *mon = cur_mon;
2035 AddfdInfo *fdinfo;
2037 fd = qemu_chr_fe_get_msgfd(&mon->chr);
2038 if (fd == -1) {
2039 error_setg(errp, QERR_FD_NOT_SUPPLIED);
2040 goto error;
2043 fdinfo = monitor_fdset_add_fd(fd, has_fdset_id, fdset_id,
2044 has_opaque, opaque, errp);
2045 if (fdinfo) {
2046 return fdinfo;
2049 error:
2050 if (fd != -1) {
2051 close(fd);
2053 return NULL;
2056 void qmp_remove_fd(int64_t fdset_id, bool has_fd, int64_t fd, Error **errp)
2058 MonFdset *mon_fdset;
2059 MonFdsetFd *mon_fdset_fd;
2060 char fd_str[60];
2062 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2063 if (mon_fdset->id != fdset_id) {
2064 continue;
2066 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2067 if (has_fd) {
2068 if (mon_fdset_fd->fd != fd) {
2069 continue;
2071 mon_fdset_fd->removed = true;
2072 break;
2073 } else {
2074 mon_fdset_fd->removed = true;
2077 if (has_fd && !mon_fdset_fd) {
2078 goto error;
2080 monitor_fdset_cleanup(mon_fdset);
2081 return;
2084 error:
2085 if (has_fd) {
2086 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64 ", fd:%" PRId64,
2087 fdset_id, fd);
2088 } else {
2089 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64, fdset_id);
2091 error_setg(errp, QERR_FD_NOT_FOUND, fd_str);
2094 FdsetInfoList *qmp_query_fdsets(Error **errp)
2096 MonFdset *mon_fdset;
2097 MonFdsetFd *mon_fdset_fd;
2098 FdsetInfoList *fdset_list = NULL;
2100 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2101 FdsetInfoList *fdset_info = g_malloc0(sizeof(*fdset_info));
2102 FdsetFdInfoList *fdsetfd_list = NULL;
2104 fdset_info->value = g_malloc0(sizeof(*fdset_info->value));
2105 fdset_info->value->fdset_id = mon_fdset->id;
2107 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2108 FdsetFdInfoList *fdsetfd_info;
2110 fdsetfd_info = g_malloc0(sizeof(*fdsetfd_info));
2111 fdsetfd_info->value = g_malloc0(sizeof(*fdsetfd_info->value));
2112 fdsetfd_info->value->fd = mon_fdset_fd->fd;
2113 if (mon_fdset_fd->opaque) {
2114 fdsetfd_info->value->has_opaque = true;
2115 fdsetfd_info->value->opaque = g_strdup(mon_fdset_fd->opaque);
2116 } else {
2117 fdsetfd_info->value->has_opaque = false;
2120 fdsetfd_info->next = fdsetfd_list;
2121 fdsetfd_list = fdsetfd_info;
2124 fdset_info->value->fds = fdsetfd_list;
2126 fdset_info->next = fdset_list;
2127 fdset_list = fdset_info;
2130 return fdset_list;
2133 AddfdInfo *monitor_fdset_add_fd(int fd, bool has_fdset_id, int64_t fdset_id,
2134 bool has_opaque, const char *opaque,
2135 Error **errp)
2137 MonFdset *mon_fdset = NULL;
2138 MonFdsetFd *mon_fdset_fd;
2139 AddfdInfo *fdinfo;
2141 if (has_fdset_id) {
2142 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2143 /* Break if match found or match impossible due to ordering by ID */
2144 if (fdset_id <= mon_fdset->id) {
2145 if (fdset_id < mon_fdset->id) {
2146 mon_fdset = NULL;
2148 break;
2153 if (mon_fdset == NULL) {
2154 int64_t fdset_id_prev = -1;
2155 MonFdset *mon_fdset_cur = QLIST_FIRST(&mon_fdsets);
2157 if (has_fdset_id) {
2158 if (fdset_id < 0) {
2159 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdset-id",
2160 "a non-negative value");
2161 return NULL;
2163 /* Use specified fdset ID */
2164 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2165 mon_fdset_cur = mon_fdset;
2166 if (fdset_id < mon_fdset_cur->id) {
2167 break;
2170 } else {
2171 /* Use first available fdset ID */
2172 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2173 mon_fdset_cur = mon_fdset;
2174 if (fdset_id_prev == mon_fdset_cur->id - 1) {
2175 fdset_id_prev = mon_fdset_cur->id;
2176 continue;
2178 break;
2182 mon_fdset = g_malloc0(sizeof(*mon_fdset));
2183 if (has_fdset_id) {
2184 mon_fdset->id = fdset_id;
2185 } else {
2186 mon_fdset->id = fdset_id_prev + 1;
2189 /* The fdset list is ordered by fdset ID */
2190 if (!mon_fdset_cur) {
2191 QLIST_INSERT_HEAD(&mon_fdsets, mon_fdset, next);
2192 } else if (mon_fdset->id < mon_fdset_cur->id) {
2193 QLIST_INSERT_BEFORE(mon_fdset_cur, mon_fdset, next);
2194 } else {
2195 QLIST_INSERT_AFTER(mon_fdset_cur, mon_fdset, next);
2199 mon_fdset_fd = g_malloc0(sizeof(*mon_fdset_fd));
2200 mon_fdset_fd->fd = fd;
2201 mon_fdset_fd->removed = false;
2202 if (has_opaque) {
2203 mon_fdset_fd->opaque = g_strdup(opaque);
2205 QLIST_INSERT_HEAD(&mon_fdset->fds, mon_fdset_fd, next);
2207 fdinfo = g_malloc0(sizeof(*fdinfo));
2208 fdinfo->fdset_id = mon_fdset->id;
2209 fdinfo->fd = mon_fdset_fd->fd;
2211 return fdinfo;
2214 int monitor_fdset_get_fd(int64_t fdset_id, int flags)
2216 #ifndef _WIN32
2217 MonFdset *mon_fdset;
2218 MonFdsetFd *mon_fdset_fd;
2219 int mon_fd_flags;
2221 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2222 if (mon_fdset->id != fdset_id) {
2223 continue;
2225 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2226 mon_fd_flags = fcntl(mon_fdset_fd->fd, F_GETFL);
2227 if (mon_fd_flags == -1) {
2228 return -1;
2231 if ((flags & O_ACCMODE) == (mon_fd_flags & O_ACCMODE)) {
2232 return mon_fdset_fd->fd;
2235 errno = EACCES;
2236 return -1;
2238 #endif
2240 errno = ENOENT;
2241 return -1;
2244 int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd)
2246 MonFdset *mon_fdset;
2247 MonFdsetFd *mon_fdset_fd_dup;
2249 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2250 if (mon_fdset->id != fdset_id) {
2251 continue;
2253 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2254 if (mon_fdset_fd_dup->fd == dup_fd) {
2255 return -1;
2258 mon_fdset_fd_dup = g_malloc0(sizeof(*mon_fdset_fd_dup));
2259 mon_fdset_fd_dup->fd = dup_fd;
2260 QLIST_INSERT_HEAD(&mon_fdset->dup_fds, mon_fdset_fd_dup, next);
2261 return 0;
2263 return -1;
2266 static int monitor_fdset_dup_fd_find_remove(int dup_fd, bool remove)
2268 MonFdset *mon_fdset;
2269 MonFdsetFd *mon_fdset_fd_dup;
2271 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2272 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2273 if (mon_fdset_fd_dup->fd == dup_fd) {
2274 if (remove) {
2275 QLIST_REMOVE(mon_fdset_fd_dup, next);
2276 if (QLIST_EMPTY(&mon_fdset->dup_fds)) {
2277 monitor_fdset_cleanup(mon_fdset);
2279 return -1;
2280 } else {
2281 return mon_fdset->id;
2286 return -1;
2289 int monitor_fdset_dup_fd_find(int dup_fd)
2291 return monitor_fdset_dup_fd_find_remove(dup_fd, false);
2294 void monitor_fdset_dup_fd_remove(int dup_fd)
2296 monitor_fdset_dup_fd_find_remove(dup_fd, true);
2299 int monitor_fd_param(Monitor *mon, const char *fdname, Error **errp)
2301 int fd;
2302 Error *local_err = NULL;
2304 if (!qemu_isdigit(fdname[0]) && mon) {
2305 fd = monitor_get_fd(mon, fdname, &local_err);
2306 } else {
2307 fd = qemu_parse_fd(fdname);
2308 if (fd == -1) {
2309 error_setg(&local_err, "Invalid file descriptor number '%s'",
2310 fdname);
2313 if (local_err) {
2314 error_propagate(errp, local_err);
2315 assert(fd == -1);
2316 } else {
2317 assert(fd != -1);
2320 return fd;
2323 /* Please update hmp-commands.hx when adding or changing commands */
2324 static mon_cmd_t info_cmds[] = {
2325 #include "hmp-commands-info.h"
2326 { NULL, NULL, },
2329 /* mon_cmds and info_cmds would be sorted at runtime */
2330 static mon_cmd_t mon_cmds[] = {
2331 #include "hmp-commands.h"
2332 { NULL, NULL, },
2335 /*******************************************************************/
2337 static const char *pch;
2338 static sigjmp_buf expr_env;
2341 static void GCC_FMT_ATTR(2, 3) QEMU_NORETURN
2342 expr_error(Monitor *mon, const char *fmt, ...)
2344 va_list ap;
2345 va_start(ap, fmt);
2346 monitor_vprintf(mon, fmt, ap);
2347 monitor_printf(mon, "\n");
2348 va_end(ap);
2349 siglongjmp(expr_env, 1);
2352 /* return 0 if OK, -1 if not found */
2353 static int get_monitor_def(target_long *pval, const char *name)
2355 const MonitorDef *md = target_monitor_defs();
2356 CPUState *cs = mon_get_cpu();
2357 void *ptr;
2358 uint64_t tmp = 0;
2359 int ret;
2361 if (cs == NULL || md == NULL) {
2362 return -1;
2365 for(; md->name != NULL; md++) {
2366 if (compare_cmd(name, md->name)) {
2367 if (md->get_value) {
2368 *pval = md->get_value(md, md->offset);
2369 } else {
2370 CPUArchState *env = mon_get_cpu_env();
2371 ptr = (uint8_t *)env + md->offset;
2372 switch(md->type) {
2373 case MD_I32:
2374 *pval = *(int32_t *)ptr;
2375 break;
2376 case MD_TLONG:
2377 *pval = *(target_long *)ptr;
2378 break;
2379 default:
2380 *pval = 0;
2381 break;
2384 return 0;
2388 ret = target_get_monitor_def(cs, name, &tmp);
2389 if (!ret) {
2390 *pval = (target_long) tmp;
2393 return ret;
2396 static void next(void)
2398 if (*pch != '\0') {
2399 pch++;
2400 while (qemu_isspace(*pch))
2401 pch++;
2405 static int64_t expr_sum(Monitor *mon);
2407 static int64_t expr_unary(Monitor *mon)
2409 int64_t n;
2410 char *p;
2411 int ret;
2413 switch(*pch) {
2414 case '+':
2415 next();
2416 n = expr_unary(mon);
2417 break;
2418 case '-':
2419 next();
2420 n = -expr_unary(mon);
2421 break;
2422 case '~':
2423 next();
2424 n = ~expr_unary(mon);
2425 break;
2426 case '(':
2427 next();
2428 n = expr_sum(mon);
2429 if (*pch != ')') {
2430 expr_error(mon, "')' expected");
2432 next();
2433 break;
2434 case '\'':
2435 pch++;
2436 if (*pch == '\0')
2437 expr_error(mon, "character constant expected");
2438 n = *pch;
2439 pch++;
2440 if (*pch != '\'')
2441 expr_error(mon, "missing terminating \' character");
2442 next();
2443 break;
2444 case '$':
2446 char buf[128], *q;
2447 target_long reg=0;
2449 pch++;
2450 q = buf;
2451 while ((*pch >= 'a' && *pch <= 'z') ||
2452 (*pch >= 'A' && *pch <= 'Z') ||
2453 (*pch >= '0' && *pch <= '9') ||
2454 *pch == '_' || *pch == '.') {
2455 if ((q - buf) < sizeof(buf) - 1)
2456 *q++ = *pch;
2457 pch++;
2459 while (qemu_isspace(*pch))
2460 pch++;
2461 *q = 0;
2462 ret = get_monitor_def(&reg, buf);
2463 if (ret < 0)
2464 expr_error(mon, "unknown register");
2465 n = reg;
2467 break;
2468 case '\0':
2469 expr_error(mon, "unexpected end of expression");
2470 n = 0;
2471 break;
2472 default:
2473 errno = 0;
2474 n = strtoull(pch, &p, 0);
2475 if (errno == ERANGE) {
2476 expr_error(mon, "number too large");
2478 if (pch == p) {
2479 expr_error(mon, "invalid char '%c' in expression", *p);
2481 pch = p;
2482 while (qemu_isspace(*pch))
2483 pch++;
2484 break;
2486 return n;
2490 static int64_t expr_prod(Monitor *mon)
2492 int64_t val, val2;
2493 int op;
2495 val = expr_unary(mon);
2496 for(;;) {
2497 op = *pch;
2498 if (op != '*' && op != '/' && op != '%')
2499 break;
2500 next();
2501 val2 = expr_unary(mon);
2502 switch(op) {
2503 default:
2504 case '*':
2505 val *= val2;
2506 break;
2507 case '/':
2508 case '%':
2509 if (val2 == 0)
2510 expr_error(mon, "division by zero");
2511 if (op == '/')
2512 val /= val2;
2513 else
2514 val %= val2;
2515 break;
2518 return val;
2521 static int64_t expr_logic(Monitor *mon)
2523 int64_t val, val2;
2524 int op;
2526 val = expr_prod(mon);
2527 for(;;) {
2528 op = *pch;
2529 if (op != '&' && op != '|' && op != '^')
2530 break;
2531 next();
2532 val2 = expr_prod(mon);
2533 switch(op) {
2534 default:
2535 case '&':
2536 val &= val2;
2537 break;
2538 case '|':
2539 val |= val2;
2540 break;
2541 case '^':
2542 val ^= val2;
2543 break;
2546 return val;
2549 static int64_t expr_sum(Monitor *mon)
2551 int64_t val, val2;
2552 int op;
2554 val = expr_logic(mon);
2555 for(;;) {
2556 op = *pch;
2557 if (op != '+' && op != '-')
2558 break;
2559 next();
2560 val2 = expr_logic(mon);
2561 if (op == '+')
2562 val += val2;
2563 else
2564 val -= val2;
2566 return val;
2569 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
2571 pch = *pp;
2572 if (sigsetjmp(expr_env, 0)) {
2573 *pp = pch;
2574 return -1;
2576 while (qemu_isspace(*pch))
2577 pch++;
2578 *pval = expr_sum(mon);
2579 *pp = pch;
2580 return 0;
2583 static int get_double(Monitor *mon, double *pval, const char **pp)
2585 const char *p = *pp;
2586 char *tailp;
2587 double d;
2589 d = strtod(p, &tailp);
2590 if (tailp == p) {
2591 monitor_printf(mon, "Number expected\n");
2592 return -1;
2594 if (d != d || d - d != 0) {
2595 /* NaN or infinity */
2596 monitor_printf(mon, "Bad number\n");
2597 return -1;
2599 *pval = d;
2600 *pp = tailp;
2601 return 0;
2605 * Store the command-name in cmdname, and return a pointer to
2606 * the remaining of the command string.
2608 static const char *get_command_name(const char *cmdline,
2609 char *cmdname, size_t nlen)
2611 size_t len;
2612 const char *p, *pstart;
2614 p = cmdline;
2615 while (qemu_isspace(*p))
2616 p++;
2617 if (*p == '\0')
2618 return NULL;
2619 pstart = p;
2620 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
2621 p++;
2622 len = p - pstart;
2623 if (len > nlen - 1)
2624 len = nlen - 1;
2625 memcpy(cmdname, pstart, len);
2626 cmdname[len] = '\0';
2627 return p;
2631 * Read key of 'type' into 'key' and return the current
2632 * 'type' pointer.
2634 static char *key_get_info(const char *type, char **key)
2636 size_t len;
2637 char *p, *str;
2639 if (*type == ',')
2640 type++;
2642 p = strchr(type, ':');
2643 if (!p) {
2644 *key = NULL;
2645 return NULL;
2647 len = p - type;
2649 str = g_malloc(len + 1);
2650 memcpy(str, type, len);
2651 str[len] = '\0';
2653 *key = str;
2654 return ++p;
2657 static int default_fmt_format = 'x';
2658 static int default_fmt_size = 4;
2660 static int is_valid_option(const char *c, const char *typestr)
2662 char option[3];
2664 option[0] = '-';
2665 option[1] = *c;
2666 option[2] = '\0';
2668 typestr = strstr(typestr, option);
2669 return (typestr != NULL);
2672 static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
2673 const char *cmdname)
2675 const mon_cmd_t *cmd;
2677 for (cmd = disp_table; cmd->name != NULL; cmd++) {
2678 if (compare_cmd(cmdname, cmd->name)) {
2679 return cmd;
2683 return NULL;
2687 * Parse command name from @cmdp according to command table @table.
2688 * If blank, return NULL.
2689 * Else, if no valid command can be found, report to @mon, and return
2690 * NULL.
2691 * Else, change @cmdp to point right behind the name, and return its
2692 * command table entry.
2693 * Do not assume the return value points into @table! It doesn't when
2694 * the command is found in a sub-command table.
2696 static const mon_cmd_t *monitor_parse_command(Monitor *mon,
2697 const char *cmdp_start,
2698 const char **cmdp,
2699 mon_cmd_t *table)
2701 const char *p;
2702 const mon_cmd_t *cmd;
2703 char cmdname[256];
2705 /* extract the command name */
2706 p = get_command_name(*cmdp, cmdname, sizeof(cmdname));
2707 if (!p)
2708 return NULL;
2710 cmd = search_dispatch_table(table, cmdname);
2711 if (!cmd) {
2712 monitor_printf(mon, "unknown command: '%.*s'\n",
2713 (int)(p - cmdp_start), cmdp_start);
2714 return NULL;
2717 /* filter out following useless space */
2718 while (qemu_isspace(*p)) {
2719 p++;
2722 *cmdp = p;
2723 /* search sub command */
2724 if (cmd->sub_table != NULL && *p != '\0') {
2725 return monitor_parse_command(mon, cmdp_start, cmdp, cmd->sub_table);
2728 return cmd;
2732 * Parse arguments for @cmd.
2733 * If it can't be parsed, report to @mon, and return NULL.
2734 * Else, insert command arguments into a QDict, and return it.
2735 * Note: On success, caller has to free the QDict structure.
2738 static QDict *monitor_parse_arguments(Monitor *mon,
2739 const char **endp,
2740 const mon_cmd_t *cmd)
2742 const char *typestr;
2743 char *key;
2744 int c;
2745 const char *p = *endp;
2746 char buf[1024];
2747 QDict *qdict = qdict_new();
2749 /* parse the parameters */
2750 typestr = cmd->args_type;
2751 for(;;) {
2752 typestr = key_get_info(typestr, &key);
2753 if (!typestr)
2754 break;
2755 c = *typestr;
2756 typestr++;
2757 switch(c) {
2758 case 'F':
2759 case 'B':
2760 case 's':
2762 int ret;
2764 while (qemu_isspace(*p))
2765 p++;
2766 if (*typestr == '?') {
2767 typestr++;
2768 if (*p == '\0') {
2769 /* no optional string: NULL argument */
2770 break;
2773 ret = get_str(buf, sizeof(buf), &p);
2774 if (ret < 0) {
2775 switch(c) {
2776 case 'F':
2777 monitor_printf(mon, "%s: filename expected\n",
2778 cmd->name);
2779 break;
2780 case 'B':
2781 monitor_printf(mon, "%s: block device name expected\n",
2782 cmd->name);
2783 break;
2784 default:
2785 monitor_printf(mon, "%s: string expected\n", cmd->name);
2786 break;
2788 goto fail;
2790 qdict_put_str(qdict, key, buf);
2792 break;
2793 case 'O':
2795 QemuOptsList *opts_list;
2796 QemuOpts *opts;
2798 opts_list = qemu_find_opts(key);
2799 if (!opts_list || opts_list->desc->name) {
2800 goto bad_type;
2802 while (qemu_isspace(*p)) {
2803 p++;
2805 if (!*p)
2806 break;
2807 if (get_str(buf, sizeof(buf), &p) < 0) {
2808 goto fail;
2810 opts = qemu_opts_parse_noisily(opts_list, buf, true);
2811 if (!opts) {
2812 goto fail;
2814 qemu_opts_to_qdict(opts, qdict);
2815 qemu_opts_del(opts);
2817 break;
2818 case '/':
2820 int count, format, size;
2822 while (qemu_isspace(*p))
2823 p++;
2824 if (*p == '/') {
2825 /* format found */
2826 p++;
2827 count = 1;
2828 if (qemu_isdigit(*p)) {
2829 count = 0;
2830 while (qemu_isdigit(*p)) {
2831 count = count * 10 + (*p - '0');
2832 p++;
2835 size = -1;
2836 format = -1;
2837 for(;;) {
2838 switch(*p) {
2839 case 'o':
2840 case 'd':
2841 case 'u':
2842 case 'x':
2843 case 'i':
2844 case 'c':
2845 format = *p++;
2846 break;
2847 case 'b':
2848 size = 1;
2849 p++;
2850 break;
2851 case 'h':
2852 size = 2;
2853 p++;
2854 break;
2855 case 'w':
2856 size = 4;
2857 p++;
2858 break;
2859 case 'g':
2860 case 'L':
2861 size = 8;
2862 p++;
2863 break;
2864 default:
2865 goto next;
2868 next:
2869 if (*p != '\0' && !qemu_isspace(*p)) {
2870 monitor_printf(mon, "invalid char in format: '%c'\n",
2871 *p);
2872 goto fail;
2874 if (format < 0)
2875 format = default_fmt_format;
2876 if (format != 'i') {
2877 /* for 'i', not specifying a size gives -1 as size */
2878 if (size < 0)
2879 size = default_fmt_size;
2880 default_fmt_size = size;
2882 default_fmt_format = format;
2883 } else {
2884 count = 1;
2885 format = default_fmt_format;
2886 if (format != 'i') {
2887 size = default_fmt_size;
2888 } else {
2889 size = -1;
2892 qdict_put_int(qdict, "count", count);
2893 qdict_put_int(qdict, "format", format);
2894 qdict_put_int(qdict, "size", size);
2896 break;
2897 case 'i':
2898 case 'l':
2899 case 'M':
2901 int64_t val;
2903 while (qemu_isspace(*p))
2904 p++;
2905 if (*typestr == '?' || *typestr == '.') {
2906 if (*typestr == '?') {
2907 if (*p == '\0') {
2908 typestr++;
2909 break;
2911 } else {
2912 if (*p == '.') {
2913 p++;
2914 while (qemu_isspace(*p))
2915 p++;
2916 } else {
2917 typestr++;
2918 break;
2921 typestr++;
2923 if (get_expr(mon, &val, &p))
2924 goto fail;
2925 /* Check if 'i' is greater than 32-bit */
2926 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
2927 monitor_printf(mon, "\'%s\' has failed: ", cmd->name);
2928 monitor_printf(mon, "integer is for 32-bit values\n");
2929 goto fail;
2930 } else if (c == 'M') {
2931 if (val < 0) {
2932 monitor_printf(mon, "enter a positive value\n");
2933 goto fail;
2935 val <<= 20;
2937 qdict_put_int(qdict, key, val);
2939 break;
2940 case 'o':
2942 int ret;
2943 uint64_t val;
2944 char *end;
2946 while (qemu_isspace(*p)) {
2947 p++;
2949 if (*typestr == '?') {
2950 typestr++;
2951 if (*p == '\0') {
2952 break;
2955 ret = qemu_strtosz_MiB(p, &end, &val);
2956 if (ret < 0 || val > INT64_MAX) {
2957 monitor_printf(mon, "invalid size\n");
2958 goto fail;
2960 qdict_put_int(qdict, key, val);
2961 p = end;
2963 break;
2964 case 'T':
2966 double val;
2968 while (qemu_isspace(*p))
2969 p++;
2970 if (*typestr == '?') {
2971 typestr++;
2972 if (*p == '\0') {
2973 break;
2976 if (get_double(mon, &val, &p) < 0) {
2977 goto fail;
2979 if (p[0] && p[1] == 's') {
2980 switch (*p) {
2981 case 'm':
2982 val /= 1e3; p += 2; break;
2983 case 'u':
2984 val /= 1e6; p += 2; break;
2985 case 'n':
2986 val /= 1e9; p += 2; break;
2989 if (*p && !qemu_isspace(*p)) {
2990 monitor_printf(mon, "Unknown unit suffix\n");
2991 goto fail;
2993 qdict_put(qdict, key, qnum_from_double(val));
2995 break;
2996 case 'b':
2998 const char *beg;
2999 bool val;
3001 while (qemu_isspace(*p)) {
3002 p++;
3004 beg = p;
3005 while (qemu_isgraph(*p)) {
3006 p++;
3008 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3009 val = true;
3010 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3011 val = false;
3012 } else {
3013 monitor_printf(mon, "Expected 'on' or 'off'\n");
3014 goto fail;
3016 qdict_put_bool(qdict, key, val);
3018 break;
3019 case '-':
3021 const char *tmp = p;
3022 int skip_key = 0;
3023 /* option */
3025 c = *typestr++;
3026 if (c == '\0')
3027 goto bad_type;
3028 while (qemu_isspace(*p))
3029 p++;
3030 if (*p == '-') {
3031 p++;
3032 if(c != *p) {
3033 if(!is_valid_option(p, typestr)) {
3035 monitor_printf(mon, "%s: unsupported option -%c\n",
3036 cmd->name, *p);
3037 goto fail;
3038 } else {
3039 skip_key = 1;
3042 if(skip_key) {
3043 p = tmp;
3044 } else {
3045 /* has option */
3046 p++;
3047 qdict_put_bool(qdict, key, true);
3051 break;
3052 case 'S':
3054 /* package all remaining string */
3055 int len;
3057 while (qemu_isspace(*p)) {
3058 p++;
3060 if (*typestr == '?') {
3061 typestr++;
3062 if (*p == '\0') {
3063 /* no remaining string: NULL argument */
3064 break;
3067 len = strlen(p);
3068 if (len <= 0) {
3069 monitor_printf(mon, "%s: string expected\n",
3070 cmd->name);
3071 goto fail;
3073 qdict_put_str(qdict, key, p);
3074 p += len;
3076 break;
3077 default:
3078 bad_type:
3079 monitor_printf(mon, "%s: unknown type '%c'\n", cmd->name, c);
3080 goto fail;
3082 g_free(key);
3083 key = NULL;
3085 /* check that all arguments were parsed */
3086 while (qemu_isspace(*p))
3087 p++;
3088 if (*p != '\0') {
3089 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3090 cmd->name);
3091 goto fail;
3094 return qdict;
3096 fail:
3097 QDECREF(qdict);
3098 g_free(key);
3099 return NULL;
3102 static void handle_hmp_command(Monitor *mon, const char *cmdline)
3104 QDict *qdict;
3105 const mon_cmd_t *cmd;
3107 trace_handle_hmp_command(mon, cmdline);
3109 cmd = monitor_parse_command(mon, cmdline, &cmdline, mon->cmd_table);
3110 if (!cmd) {
3111 return;
3114 qdict = monitor_parse_arguments(mon, &cmdline, cmd);
3115 if (!qdict) {
3116 monitor_printf(mon, "Try \"help %s\" for more information\n",
3117 cmd->name);
3118 return;
3121 cmd->cmd(mon, qdict);
3122 QDECREF(qdict);
3125 static void cmd_completion(Monitor *mon, const char *name, const char *list)
3127 const char *p, *pstart;
3128 char cmd[128];
3129 int len;
3131 p = list;
3132 for(;;) {
3133 pstart = p;
3134 p = strchr(p, '|');
3135 if (!p)
3136 p = pstart + strlen(pstart);
3137 len = p - pstart;
3138 if (len > sizeof(cmd) - 2)
3139 len = sizeof(cmd) - 2;
3140 memcpy(cmd, pstart, len);
3141 cmd[len] = '\0';
3142 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
3143 readline_add_completion(mon->rs, cmd);
3145 if (*p == '\0')
3146 break;
3147 p++;
3151 static void file_completion(Monitor *mon, const char *input)
3153 DIR *ffs;
3154 struct dirent *d;
3155 char path[1024];
3156 char file[1024], file_prefix[1024];
3157 int input_path_len;
3158 const char *p;
3160 p = strrchr(input, '/');
3161 if (!p) {
3162 input_path_len = 0;
3163 pstrcpy(file_prefix, sizeof(file_prefix), input);
3164 pstrcpy(path, sizeof(path), ".");
3165 } else {
3166 input_path_len = p - input + 1;
3167 memcpy(path, input, input_path_len);
3168 if (input_path_len > sizeof(path) - 1)
3169 input_path_len = sizeof(path) - 1;
3170 path[input_path_len] = '\0';
3171 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3174 ffs = opendir(path);
3175 if (!ffs)
3176 return;
3177 for(;;) {
3178 struct stat sb;
3179 d = readdir(ffs);
3180 if (!d)
3181 break;
3183 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
3184 continue;
3187 if (strstart(d->d_name, file_prefix, NULL)) {
3188 memcpy(file, input, input_path_len);
3189 if (input_path_len < sizeof(file))
3190 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3191 d->d_name);
3192 /* stat the file to find out if it's a directory.
3193 * In that case add a slash to speed up typing long paths
3195 if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) {
3196 pstrcat(file, sizeof(file), "/");
3198 readline_add_completion(mon->rs, file);
3201 closedir(ffs);
3204 static const char *next_arg_type(const char *typestr)
3206 const char *p = strchr(typestr, ':');
3207 return (p != NULL ? ++p : typestr);
3210 static void add_completion_option(ReadLineState *rs, const char *str,
3211 const char *option)
3213 if (!str || !option) {
3214 return;
3216 if (!strncmp(option, str, strlen(str))) {
3217 readline_add_completion(rs, option);
3221 void chardev_add_completion(ReadLineState *rs, int nb_args, const char *str)
3223 size_t len;
3224 ChardevBackendInfoList *list, *start;
3226 if (nb_args != 2) {
3227 return;
3229 len = strlen(str);
3230 readline_set_completion_index(rs, len);
3232 start = list = qmp_query_chardev_backends(NULL);
3233 while (list) {
3234 const char *chr_name = list->value->name;
3236 if (!strncmp(chr_name, str, len)) {
3237 readline_add_completion(rs, chr_name);
3239 list = list->next;
3241 qapi_free_ChardevBackendInfoList(start);
3244 void netdev_add_completion(ReadLineState *rs, int nb_args, const char *str)
3246 size_t len;
3247 int i;
3249 if (nb_args != 2) {
3250 return;
3252 len = strlen(str);
3253 readline_set_completion_index(rs, len);
3254 for (i = 0; i < NET_CLIENT_DRIVER__MAX; i++) {
3255 add_completion_option(rs, str, NetClientDriver_str(i));
3259 void device_add_completion(ReadLineState *rs, int nb_args, const char *str)
3261 GSList *list, *elt;
3262 size_t len;
3264 if (nb_args != 2) {
3265 return;
3268 len = strlen(str);
3269 readline_set_completion_index(rs, len);
3270 list = elt = object_class_get_list(TYPE_DEVICE, false);
3271 while (elt) {
3272 const char *name;
3273 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
3274 TYPE_DEVICE);
3275 name = object_class_get_name(OBJECT_CLASS(dc));
3277 if (dc->user_creatable
3278 && !strncmp(name, str, len)) {
3279 readline_add_completion(rs, name);
3281 elt = elt->next;
3283 g_slist_free(list);
3286 void object_add_completion(ReadLineState *rs, int nb_args, const char *str)
3288 GSList *list, *elt;
3289 size_t len;
3291 if (nb_args != 2) {
3292 return;
3295 len = strlen(str);
3296 readline_set_completion_index(rs, len);
3297 list = elt = object_class_get_list(TYPE_USER_CREATABLE, false);
3298 while (elt) {
3299 const char *name;
3301 name = object_class_get_name(OBJECT_CLASS(elt->data));
3302 if (!strncmp(name, str, len) && strcmp(name, TYPE_USER_CREATABLE)) {
3303 readline_add_completion(rs, name);
3305 elt = elt->next;
3307 g_slist_free(list);
3310 static void peripheral_device_del_completion(ReadLineState *rs,
3311 const char *str, size_t len)
3313 Object *peripheral = container_get(qdev_get_machine(), "/peripheral");
3314 GSList *list, *item;
3316 list = qdev_build_hotpluggable_device_list(peripheral);
3317 if (!list) {
3318 return;
3321 for (item = list; item; item = g_slist_next(item)) {
3322 DeviceState *dev = item->data;
3324 if (dev->id && !strncmp(str, dev->id, len)) {
3325 readline_add_completion(rs, dev->id);
3329 g_slist_free(list);
3332 void chardev_remove_completion(ReadLineState *rs, int nb_args, const char *str)
3334 size_t len;
3335 ChardevInfoList *list, *start;
3337 if (nb_args != 2) {
3338 return;
3340 len = strlen(str);
3341 readline_set_completion_index(rs, len);
3343 start = list = qmp_query_chardev(NULL);
3344 while (list) {
3345 ChardevInfo *chr = list->value;
3347 if (!strncmp(chr->label, str, len)) {
3348 readline_add_completion(rs, chr->label);
3350 list = list->next;
3352 qapi_free_ChardevInfoList(start);
3355 static void ringbuf_completion(ReadLineState *rs, const char *str)
3357 size_t len;
3358 ChardevInfoList *list, *start;
3360 len = strlen(str);
3361 readline_set_completion_index(rs, len);
3363 start = list = qmp_query_chardev(NULL);
3364 while (list) {
3365 ChardevInfo *chr_info = list->value;
3367 if (!strncmp(chr_info->label, str, len)) {
3368 Chardev *chr = qemu_chr_find(chr_info->label);
3369 if (chr && CHARDEV_IS_RINGBUF(chr)) {
3370 readline_add_completion(rs, chr_info->label);
3373 list = list->next;
3375 qapi_free_ChardevInfoList(start);
3378 void ringbuf_write_completion(ReadLineState *rs, int nb_args, const char *str)
3380 if (nb_args != 2) {
3381 return;
3383 ringbuf_completion(rs, str);
3386 void device_del_completion(ReadLineState *rs, int nb_args, const char *str)
3388 size_t len;
3390 if (nb_args != 2) {
3391 return;
3394 len = strlen(str);
3395 readline_set_completion_index(rs, len);
3396 peripheral_device_del_completion(rs, str, len);
3399 void object_del_completion(ReadLineState *rs, int nb_args, const char *str)
3401 ObjectPropertyInfoList *list, *start;
3402 size_t len;
3404 if (nb_args != 2) {
3405 return;
3407 len = strlen(str);
3408 readline_set_completion_index(rs, len);
3410 start = list = qmp_qom_list("/objects", NULL);
3411 while (list) {
3412 ObjectPropertyInfo *info = list->value;
3414 if (!strncmp(info->type, "child<", 5)
3415 && !strncmp(info->name, str, len)) {
3416 readline_add_completion(rs, info->name);
3418 list = list->next;
3420 qapi_free_ObjectPropertyInfoList(start);
3423 void sendkey_completion(ReadLineState *rs, int nb_args, const char *str)
3425 int i;
3426 char *sep;
3427 size_t len;
3429 if (nb_args != 2) {
3430 return;
3432 sep = strrchr(str, '-');
3433 if (sep) {
3434 str = sep + 1;
3436 len = strlen(str);
3437 readline_set_completion_index(rs, len);
3438 for (i = 0; i < Q_KEY_CODE__MAX; i++) {
3439 if (!strncmp(str, QKeyCode_str(i), len)) {
3440 readline_add_completion(rs, QKeyCode_str(i));
3445 void set_link_completion(ReadLineState *rs, int nb_args, const char *str)
3447 size_t len;
3449 len = strlen(str);
3450 readline_set_completion_index(rs, len);
3451 if (nb_args == 2) {
3452 NetClientState *ncs[MAX_QUEUE_NUM];
3453 int count, i;
3454 count = qemu_find_net_clients_except(NULL, ncs,
3455 NET_CLIENT_DRIVER_NONE,
3456 MAX_QUEUE_NUM);
3457 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
3458 const char *name = ncs[i]->name;
3459 if (!strncmp(str, name, len)) {
3460 readline_add_completion(rs, name);
3463 } else if (nb_args == 3) {
3464 add_completion_option(rs, str, "on");
3465 add_completion_option(rs, str, "off");
3469 void netdev_del_completion(ReadLineState *rs, int nb_args, const char *str)
3471 int len, count, i;
3472 NetClientState *ncs[MAX_QUEUE_NUM];
3474 if (nb_args != 2) {
3475 return;
3478 len = strlen(str);
3479 readline_set_completion_index(rs, len);
3480 count = qemu_find_net_clients_except(NULL, ncs, NET_CLIENT_DRIVER_NIC,
3481 MAX_QUEUE_NUM);
3482 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
3483 QemuOpts *opts;
3484 const char *name = ncs[i]->name;
3485 if (strncmp(str, name, len)) {
3486 continue;
3488 opts = qemu_opts_find(qemu_find_opts_err("netdev", NULL), name);
3489 if (opts) {
3490 readline_add_completion(rs, name);
3495 void info_trace_events_completion(ReadLineState *rs, int nb_args, const char *str)
3497 size_t len;
3499 len = strlen(str);
3500 readline_set_completion_index(rs, len);
3501 if (nb_args == 2) {
3502 TraceEventIter iter;
3503 TraceEvent *ev;
3504 char *pattern = g_strdup_printf("%s*", str);
3505 trace_event_iter_init(&iter, pattern);
3506 while ((ev = trace_event_iter_next(&iter)) != NULL) {
3507 readline_add_completion(rs, trace_event_get_name(ev));
3509 g_free(pattern);
3513 void trace_event_completion(ReadLineState *rs, int nb_args, const char *str)
3515 size_t len;
3517 len = strlen(str);
3518 readline_set_completion_index(rs, len);
3519 if (nb_args == 2) {
3520 TraceEventIter iter;
3521 TraceEvent *ev;
3522 char *pattern = g_strdup_printf("%s*", str);
3523 trace_event_iter_init(&iter, pattern);
3524 while ((ev = trace_event_iter_next(&iter)) != NULL) {
3525 readline_add_completion(rs, trace_event_get_name(ev));
3527 g_free(pattern);
3528 } else if (nb_args == 3) {
3529 add_completion_option(rs, str, "on");
3530 add_completion_option(rs, str, "off");
3534 void watchdog_action_completion(ReadLineState *rs, int nb_args, const char *str)
3536 int i;
3538 if (nb_args != 2) {
3539 return;
3541 readline_set_completion_index(rs, strlen(str));
3542 for (i = 0; i < WATCHDOG_ACTION__MAX; i++) {
3543 add_completion_option(rs, str, WatchdogAction_str(i));
3547 void migrate_set_capability_completion(ReadLineState *rs, int nb_args,
3548 const char *str)
3550 size_t len;
3552 len = strlen(str);
3553 readline_set_completion_index(rs, len);
3554 if (nb_args == 2) {
3555 int i;
3556 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
3557 const char *name = MigrationCapability_str(i);
3558 if (!strncmp(str, name, len)) {
3559 readline_add_completion(rs, name);
3562 } else if (nb_args == 3) {
3563 add_completion_option(rs, str, "on");
3564 add_completion_option(rs, str, "off");
3568 void migrate_set_parameter_completion(ReadLineState *rs, int nb_args,
3569 const char *str)
3571 size_t len;
3573 len = strlen(str);
3574 readline_set_completion_index(rs, len);
3575 if (nb_args == 2) {
3576 int i;
3577 for (i = 0; i < MIGRATION_PARAMETER__MAX; i++) {
3578 const char *name = MigrationParameter_str(i);
3579 if (!strncmp(str, name, len)) {
3580 readline_add_completion(rs, name);
3586 static void vm_completion(ReadLineState *rs, const char *str)
3588 size_t len;
3589 BlockDriverState *bs;
3590 BdrvNextIterator it;
3592 len = strlen(str);
3593 readline_set_completion_index(rs, len);
3595 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3596 SnapshotInfoList *snapshots, *snapshot;
3597 AioContext *ctx = bdrv_get_aio_context(bs);
3598 bool ok = false;
3600 aio_context_acquire(ctx);
3601 if (bdrv_can_snapshot(bs)) {
3602 ok = bdrv_query_snapshot_info_list(bs, &snapshots, NULL) == 0;
3604 aio_context_release(ctx);
3605 if (!ok) {
3606 continue;
3609 snapshot = snapshots;
3610 while (snapshot) {
3611 char *completion = snapshot->value->name;
3612 if (!strncmp(str, completion, len)) {
3613 readline_add_completion(rs, completion);
3615 completion = snapshot->value->id;
3616 if (!strncmp(str, completion, len)) {
3617 readline_add_completion(rs, completion);
3619 snapshot = snapshot->next;
3621 qapi_free_SnapshotInfoList(snapshots);
3626 void delvm_completion(ReadLineState *rs, int nb_args, const char *str)
3628 if (nb_args == 2) {
3629 vm_completion(rs, str);
3633 void loadvm_completion(ReadLineState *rs, int nb_args, const char *str)
3635 if (nb_args == 2) {
3636 vm_completion(rs, str);
3640 static void monitor_find_completion_by_table(Monitor *mon,
3641 const mon_cmd_t *cmd_table,
3642 char **args,
3643 int nb_args)
3645 const char *cmdname;
3646 int i;
3647 const char *ptype, *old_ptype, *str, *name;
3648 const mon_cmd_t *cmd;
3649 BlockBackend *blk = NULL;
3651 if (nb_args <= 1) {
3652 /* command completion */
3653 if (nb_args == 0)
3654 cmdname = "";
3655 else
3656 cmdname = args[0];
3657 readline_set_completion_index(mon->rs, strlen(cmdname));
3658 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
3659 cmd_completion(mon, cmdname, cmd->name);
3661 } else {
3662 /* find the command */
3663 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
3664 if (compare_cmd(args[0], cmd->name)) {
3665 break;
3668 if (!cmd->name) {
3669 return;
3672 if (cmd->sub_table) {
3673 /* do the job again */
3674 monitor_find_completion_by_table(mon, cmd->sub_table,
3675 &args[1], nb_args - 1);
3676 return;
3678 if (cmd->command_completion) {
3679 cmd->command_completion(mon->rs, nb_args, args[nb_args - 1]);
3680 return;
3683 ptype = next_arg_type(cmd->args_type);
3684 for(i = 0; i < nb_args - 2; i++) {
3685 if (*ptype != '\0') {
3686 ptype = next_arg_type(ptype);
3687 while (*ptype == '?')
3688 ptype = next_arg_type(ptype);
3691 str = args[nb_args - 1];
3692 old_ptype = NULL;
3693 while (*ptype == '-' && old_ptype != ptype) {
3694 old_ptype = ptype;
3695 ptype = next_arg_type(ptype);
3697 switch(*ptype) {
3698 case 'F':
3699 /* file completion */
3700 readline_set_completion_index(mon->rs, strlen(str));
3701 file_completion(mon, str);
3702 break;
3703 case 'B':
3704 /* block device name completion */
3705 readline_set_completion_index(mon->rs, strlen(str));
3706 while ((blk = blk_next(blk)) != NULL) {
3707 name = blk_name(blk);
3708 if (str[0] == '\0' ||
3709 !strncmp(name, str, strlen(str))) {
3710 readline_add_completion(mon->rs, name);
3713 break;
3714 case 's':
3715 case 'S':
3716 if (!strcmp(cmd->name, "help|?")) {
3717 monitor_find_completion_by_table(mon, cmd_table,
3718 &args[1], nb_args - 1);
3720 break;
3721 default:
3722 break;
3727 static void monitor_find_completion(void *opaque,
3728 const char *cmdline)
3730 Monitor *mon = opaque;
3731 char *args[MAX_ARGS];
3732 int nb_args, len;
3734 /* 1. parse the cmdline */
3735 if (parse_cmdline(cmdline, &nb_args, args) < 0) {
3736 return;
3739 /* if the line ends with a space, it means we want to complete the
3740 next arg */
3741 len = strlen(cmdline);
3742 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
3743 if (nb_args >= MAX_ARGS) {
3744 goto cleanup;
3746 args[nb_args++] = g_strdup("");
3749 /* 2. auto complete according to args */
3750 monitor_find_completion_by_table(mon, mon->cmd_table, args, nb_args);
3752 cleanup:
3753 free_cmdline_args(args, nb_args);
3756 static int monitor_can_read(void *opaque)
3758 Monitor *mon = opaque;
3760 return (mon->suspend_cnt == 0) ? 1 : 0;
3763 static void handle_qmp_command(JSONMessageParser *parser, GQueue *tokens)
3765 QObject *req, *rsp = NULL, *id = NULL;
3766 QDict *qdict = NULL;
3767 Monitor *mon = cur_mon;
3768 Error *err = NULL;
3770 req = json_parser_parse_err(tokens, NULL, &err);
3771 if (!req && !err) {
3772 /* json_parser_parse_err() sucks: can fail without setting @err */
3773 error_setg(&err, QERR_JSON_PARSING);
3775 if (err) {
3776 goto err_out;
3779 qdict = qobject_to_qdict(req);
3780 if (qdict) {
3781 id = qdict_get(qdict, "id");
3782 qobject_incref(id);
3783 qdict_del(qdict, "id");
3784 } /* else will fail qmp_dispatch() */
3786 if (trace_event_get_state_backends(TRACE_HANDLE_QMP_COMMAND)) {
3787 QString *req_json = qobject_to_json(req);
3788 trace_handle_qmp_command(mon, qstring_get_str(req_json));
3789 QDECREF(req_json);
3792 rsp = qmp_dispatch(cur_mon->qmp.commands, req);
3794 if (mon->qmp.commands == &qmp_cap_negotiation_commands) {
3795 qdict = qdict_get_qdict(qobject_to_qdict(rsp), "error");
3796 if (qdict
3797 && !g_strcmp0(qdict_get_try_str(qdict, "class"),
3798 QapiErrorClass_str(ERROR_CLASS_COMMAND_NOT_FOUND))) {
3799 /* Provide a more useful error message */
3800 qdict_del(qdict, "desc");
3801 qdict_put_str(qdict, "desc", "Expecting capabilities negotiation"
3802 " with 'qmp_capabilities'");
3806 err_out:
3807 if (err) {
3808 qdict = qdict_new();
3809 qdict_put_obj(qdict, "error", qmp_build_error_object(err));
3810 error_free(err);
3811 rsp = QOBJECT(qdict);
3814 if (rsp) {
3815 if (id) {
3816 qdict_put_obj(qobject_to_qdict(rsp), "id", id);
3817 id = NULL;
3820 monitor_json_emitter(mon, rsp);
3823 qobject_decref(id);
3824 qobject_decref(rsp);
3825 qobject_decref(req);
3828 static void monitor_qmp_read(void *opaque, const uint8_t *buf, int size)
3830 Monitor *old_mon = cur_mon;
3832 cur_mon = opaque;
3834 json_message_parser_feed(&cur_mon->qmp.parser, (const char *) buf, size);
3836 cur_mon = old_mon;
3839 static void monitor_read(void *opaque, const uint8_t *buf, int size)
3841 Monitor *old_mon = cur_mon;
3842 int i;
3844 cur_mon = opaque;
3846 if (cur_mon->rs) {
3847 for (i = 0; i < size; i++)
3848 readline_handle_byte(cur_mon->rs, buf[i]);
3849 } else {
3850 if (size == 0 || buf[size - 1] != 0)
3851 monitor_printf(cur_mon, "corrupted command\n");
3852 else
3853 handle_hmp_command(cur_mon, (char *)buf);
3856 cur_mon = old_mon;
3859 static void monitor_command_cb(void *opaque, const char *cmdline,
3860 void *readline_opaque)
3862 Monitor *mon = opaque;
3864 monitor_suspend(mon);
3865 handle_hmp_command(mon, cmdline);
3866 monitor_resume(mon);
3869 int monitor_suspend(Monitor *mon)
3871 if (!mon->rs)
3872 return -ENOTTY;
3873 mon->suspend_cnt++;
3874 return 0;
3877 void monitor_resume(Monitor *mon)
3879 if (!mon->rs)
3880 return;
3881 if (--mon->suspend_cnt == 0)
3882 readline_show_prompt(mon->rs);
3885 static QObject *get_qmp_greeting(void)
3887 QObject *ver = NULL;
3889 qmp_marshal_query_version(NULL, &ver, NULL);
3891 return qobject_from_jsonf("{'QMP': {'version': %p, 'capabilities': []}}",
3892 ver);
3895 static void monitor_qmp_event(void *opaque, int event)
3897 QObject *data;
3898 Monitor *mon = opaque;
3900 switch (event) {
3901 case CHR_EVENT_OPENED:
3902 mon->qmp.commands = &qmp_cap_negotiation_commands;
3903 data = get_qmp_greeting();
3904 monitor_json_emitter(mon, data);
3905 qobject_decref(data);
3906 mon_refcount++;
3907 break;
3908 case CHR_EVENT_CLOSED:
3909 json_message_parser_destroy(&mon->qmp.parser);
3910 json_message_parser_init(&mon->qmp.parser, handle_qmp_command);
3911 mon_refcount--;
3912 monitor_fdsets_cleanup();
3913 break;
3917 static void monitor_event(void *opaque, int event)
3919 Monitor *mon = opaque;
3921 switch (event) {
3922 case CHR_EVENT_MUX_IN:
3923 qemu_mutex_lock(&mon->out_lock);
3924 mon->mux_out = 0;
3925 qemu_mutex_unlock(&mon->out_lock);
3926 if (mon->reset_seen) {
3927 readline_restart(mon->rs);
3928 monitor_resume(mon);
3929 monitor_flush(mon);
3930 } else {
3931 mon->suspend_cnt = 0;
3933 break;
3935 case CHR_EVENT_MUX_OUT:
3936 if (mon->reset_seen) {
3937 if (mon->suspend_cnt == 0) {
3938 monitor_printf(mon, "\n");
3940 monitor_flush(mon);
3941 monitor_suspend(mon);
3942 } else {
3943 mon->suspend_cnt++;
3945 qemu_mutex_lock(&mon->out_lock);
3946 mon->mux_out = 1;
3947 qemu_mutex_unlock(&mon->out_lock);
3948 break;
3950 case CHR_EVENT_OPENED:
3951 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
3952 "information\n", QEMU_VERSION);
3953 if (!mon->mux_out) {
3954 readline_restart(mon->rs);
3955 readline_show_prompt(mon->rs);
3957 mon->reset_seen = 1;
3958 mon_refcount++;
3959 break;
3961 case CHR_EVENT_CLOSED:
3962 mon_refcount--;
3963 monitor_fdsets_cleanup();
3964 break;
3968 static int
3969 compare_mon_cmd(const void *a, const void *b)
3971 return strcmp(((const mon_cmd_t *)a)->name,
3972 ((const mon_cmd_t *)b)->name);
3975 static void sortcmdlist(void)
3977 int array_num;
3978 int elem_size = sizeof(mon_cmd_t);
3980 array_num = sizeof(mon_cmds)/elem_size-1;
3981 qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd);
3983 array_num = sizeof(info_cmds)/elem_size-1;
3984 qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd);
3987 /* These functions just adapt the readline interface in a typesafe way. We
3988 * could cast function pointers but that discards compiler checks.
3990 static void GCC_FMT_ATTR(2, 3) monitor_readline_printf(void *opaque,
3991 const char *fmt, ...)
3993 va_list ap;
3994 va_start(ap, fmt);
3995 monitor_vprintf(opaque, fmt, ap);
3996 va_end(ap);
3999 static void monitor_readline_flush(void *opaque)
4001 monitor_flush(opaque);
4005 * Print to current monitor if we have one, else to stderr.
4006 * TODO should return int, so callers can calculate width, but that
4007 * requires surgery to monitor_vprintf(). Left for another day.
4009 void error_vprintf(const char *fmt, va_list ap)
4011 if (cur_mon && !monitor_cur_is_qmp()) {
4012 monitor_vprintf(cur_mon, fmt, ap);
4013 } else {
4014 vfprintf(stderr, fmt, ap);
4018 void error_vprintf_unless_qmp(const char *fmt, va_list ap)
4020 if (cur_mon && !monitor_cur_is_qmp()) {
4021 monitor_vprintf(cur_mon, fmt, ap);
4022 } else if (!cur_mon) {
4023 vfprintf(stderr, fmt, ap);
4027 static void __attribute__((constructor)) monitor_lock_init(void)
4029 qemu_mutex_init(&monitor_lock);
4032 void monitor_init(Chardev *chr, int flags)
4034 static int is_first_init = 1;
4035 Monitor *mon;
4037 if (is_first_init) {
4038 monitor_qapi_event_init();
4039 sortcmdlist();
4040 is_first_init = 0;
4043 mon = g_malloc(sizeof(*mon));
4044 monitor_data_init(mon);
4046 qemu_chr_fe_init(&mon->chr, chr, &error_abort);
4047 mon->flags = flags;
4048 if (flags & MONITOR_USE_READLINE) {
4049 mon->rs = readline_init(monitor_readline_printf,
4050 monitor_readline_flush,
4051 mon,
4052 monitor_find_completion);
4053 monitor_read_command(mon, 0);
4056 if (monitor_is_qmp(mon)) {
4057 qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read, monitor_qmp_read,
4058 monitor_qmp_event, NULL, mon, NULL, true);
4059 qemu_chr_fe_set_echo(&mon->chr, true);
4060 json_message_parser_init(&mon->qmp.parser, handle_qmp_command);
4061 } else {
4062 qemu_chr_fe_set_handlers(&mon->chr, monitor_can_read, monitor_read,
4063 monitor_event, NULL, mon, NULL, true);
4066 qemu_mutex_lock(&monitor_lock);
4067 QLIST_INSERT_HEAD(&mon_list, mon, entry);
4068 qemu_mutex_unlock(&monitor_lock);
4071 void monitor_cleanup(void)
4073 Monitor *mon, *next;
4075 qemu_mutex_lock(&monitor_lock);
4076 QLIST_FOREACH_SAFE(mon, &mon_list, entry, next) {
4077 QLIST_REMOVE(mon, entry);
4078 monitor_data_destroy(mon);
4079 g_free(mon);
4081 qemu_mutex_unlock(&monitor_lock);
4084 QemuOptsList qemu_mon_opts = {
4085 .name = "mon",
4086 .implied_opt_name = "chardev",
4087 .head = QTAILQ_HEAD_INITIALIZER(qemu_mon_opts.head),
4088 .desc = {
4090 .name = "mode",
4091 .type = QEMU_OPT_STRING,
4093 .name = "chardev",
4094 .type = QEMU_OPT_STRING,
4096 .name = "pretty",
4097 .type = QEMU_OPT_BOOL,
4099 { /* end of list */ }
4103 #ifndef TARGET_I386
4104 void qmp_rtc_reset_reinjection(Error **errp)
4106 error_setg(errp, QERR_FEATURE_DISABLED, "rtc-reset-reinjection");
4109 SevInfo *qmp_query_sev(Error **errp)
4111 error_setg(errp, QERR_FEATURE_DISABLED, "query-sev");
4112 return NULL;
4115 SevLaunchMeasureInfo *qmp_query_sev_launch_measure(Error **errp)
4117 error_setg(errp, QERR_FEATURE_DISABLED, "query-sev-launch-measure");
4118 return NULL;
4120 #endif
4122 #ifndef TARGET_S390X
4123 void qmp_dump_skeys(const char *filename, Error **errp)
4125 error_setg(errp, QERR_FEATURE_DISABLED, "dump-skeys");
4127 #endif
4129 #ifndef TARGET_ARM
4130 GICCapabilityList *qmp_query_gic_capabilities(Error **errp)
4132 error_setg(errp, QERR_FEATURE_DISABLED, "query-gic-capabilities");
4133 return NULL;
4135 #endif
4137 HotpluggableCPUList *qmp_query_hotpluggable_cpus(Error **errp)
4139 MachineState *ms = MACHINE(qdev_get_machine());
4140 MachineClass *mc = MACHINE_GET_CLASS(ms);
4142 if (!mc->has_hotpluggable_cpus) {
4143 error_setg(errp, QERR_FEATURE_DISABLED, "query-hotpluggable-cpus");
4144 return NULL;
4147 return machine_query_hotpluggable_cpus(ms);