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
25 #include "qemu/osdep.h"
26 #include "qemu/units.h"
30 #include "monitor/qdev.h"
32 #include "hw/pci/pci.h"
33 #include "sysemu/watchdog.h"
34 #include "hw/loader.h"
35 #include "exec/gdbstub.h"
37 #include "net/slirp.h"
38 #include "chardev/char-fe.h"
39 #include "chardev/char-io.h"
40 #include "chardev/char-mux.h"
41 #include "ui/qemu-spice.h"
42 #include "sysemu/numa.h"
43 #include "monitor/monitor.h"
44 #include "qemu/config-file.h"
45 #include "qemu/readline.h"
46 #include "ui/console.h"
48 #include "sysemu/block-backend.h"
49 #include "audio/audio.h"
50 #include "disas/disas.h"
51 #include "sysemu/balloon.h"
52 #include "qemu/timer.h"
53 #include "sysemu/hw_accel.h"
54 #include "authz/list.h"
55 #include "qapi/util.h"
56 #include "sysemu/tpm.h"
57 #include "qapi/qmp/qdict.h"
58 #include "qapi/qmp/qerror.h"
59 #include "qapi/qmp/qnum.h"
60 #include "qapi/qmp/qstring.h"
61 #include "qapi/qmp/qjson.h"
62 #include "qapi/qmp/json-parser.h"
63 #include "qapi/qmp/qlist.h"
64 #include "qom/object_interfaces.h"
65 #include "trace-root.h"
66 #include "trace/control.h"
67 #include "monitor/hmp-target.h"
68 #ifdef CONFIG_TRACE_SIMPLE
69 #include "trace/simple.h"
71 #include "exec/memory.h"
72 #include "exec/exec-all.h"
74 #include "qemu/option.h"
76 #include "qemu/thread.h"
77 #include "block/qapi.h"
78 #include "qapi/qapi-commands.h"
79 #include "qapi/qapi-emit-events.h"
80 #include "qapi/error.h"
81 #include "qapi/qmp-event.h"
82 #include "qapi/qapi-introspect.h"
83 #include "sysemu/qtest.h"
84 #include "sysemu/cpus.h"
85 #include "sysemu/iothread.h"
86 #include "qemu/cutils.h"
89 #if defined(TARGET_S390X)
90 #include "hw/s390x/storage-keys.h"
91 #include "hw/s390x/storage-attributes.h"
98 * 'B' block device name
99 * 's' string (accept optional quote)
100 * 'S' it just appends the rest of the string (accept optional quote)
101 * 'O' option string of the form NAME=VALUE,...
102 * parsed according to QemuOptsList given by its name
103 * Example: 'device:O' uses qemu_device_opts.
104 * Restriction: only lists with empty desc are supported
105 * TODO lift the restriction
107 * 'l' target long (32 or 64 bit)
108 * 'M' Non-negative target long (32 or 64 bit), in user mode the
109 * value is multiplied by 2^20 (think Mebibyte)
110 * 'o' octets (aka bytes)
111 * user mode accepts an optional E, e, P, p, T, t, G, g, M, m,
112 * K, k suffix, which multiplies the value by 2^60 for suffixes E
113 * and e, 2^50 for suffixes P and p, 2^40 for suffixes T and t,
114 * 2^30 for suffixes G and g, 2^20 for M and m, 2^10 for K and k
116 * user mode accepts an optional ms, us, ns suffix,
117 * which divides the value by 1e3, 1e6, 1e9, respectively
118 * '/' optional gdb-like print format (like "/10x")
120 * '?' optional type (for all types, except '/')
121 * '.' other form of optional type (for 'i' and 'l')
123 * user mode accepts "on" or "off"
124 * '-' optional parameter (eg. '-f')
128 typedef struct mon_cmd_t
{
130 const char *args_type
;
133 const char *flags
; /* p=preconfig */
134 void (*cmd
)(Monitor
*mon
, const QDict
*qdict
);
135 /* @sub_table is a list of 2nd level of commands. If it does not exist,
136 * cmd should be used. If it exists, sub_table[?].cmd should be
137 * used, and cmd of 1st level plays the role of help function.
139 struct mon_cmd_t
*sub_table
;
140 void (*command_completion
)(ReadLineState
*rs
, int nb_args
, const char *str
);
143 /* file descriptors passed via SCM_RIGHTS */
144 typedef struct mon_fd_t mon_fd_t
;
148 QLIST_ENTRY(mon_fd_t
) next
;
151 /* file descriptor associated with a file descriptor set */
152 typedef struct MonFdsetFd MonFdsetFd
;
157 QLIST_ENTRY(MonFdsetFd
) next
;
160 /* file descriptor set containing fds passed via SCM_RIGHTS */
161 typedef struct MonFdset MonFdset
;
164 QLIST_HEAD(, MonFdsetFd
) fds
;
165 QLIST_HEAD(, MonFdsetFd
) dup_fds
;
166 QLIST_ENTRY(MonFdset
) next
;
170 JSONMessageParser parser
;
172 * When a client connects, we're in capabilities negotiation mode.
173 * @commands is &qmp_cap_negotiation_commands then. When command
174 * qmp_capabilities succeeds, we go into command mode, and
175 * @command becomes &qmp_commands.
177 QmpCommandList
*commands
;
178 bool capab_offered
[QMP_CAPABILITY__MAX
]; /* capabilities offered */
179 bool capab
[QMP_CAPABILITY__MAX
]; /* offered and accepted */
181 * Protects qmp request/response queue.
182 * Take monitor_lock first when you need both.
184 QemuMutex qmp_queue_lock
;
185 /* Input queue that holds all the parsed QMP requests */
186 GQueue
*qmp_requests
;
190 * To prevent flooding clients, events can be throttled. The
191 * throttling is calculated globally, rather than per-Monitor
194 typedef struct MonitorQAPIEventState
{
195 QAPIEvent event
; /* Throttling state for this event type and... */
196 QDict
*data
; /* ... data, see qapi_event_throttle_equal() */
197 QEMUTimer
*timer
; /* Timer for handling delayed events */
198 QDict
*qdict
; /* Delayed event (if any) */
199 } MonitorQAPIEventState
;
202 int64_t rate
; /* Minimum time (in ns) between two events */
203 } MonitorQAPIEventConf
;
209 int suspend_cnt
; /* Needs to be accessed atomically */
214 * State used only in the thread "owning" the monitor.
215 * If @use_io_thread, this is @mon_iothread.
216 * Else, it's the main thread.
217 * These members can be safely accessed without locks.
223 BlockCompletionFunc
*password_completion_cb
;
224 void *password_opaque
;
225 mon_cmd_t
*cmd_table
;
226 QTAILQ_ENTRY(Monitor
) entry
;
229 * The per-monitor lock. We can't access guest memory when holding
235 * Members that are protected by the per-monitor lock
237 QLIST_HEAD(, mon_fd_t
) fds
;
240 /* Read under either BQL or mon_lock, written with BQL+mon_lock. */
244 /* Shared monitor I/O thread */
245 IOThread
*mon_iothread
;
247 /* Bottom half to dispatch the requests received from I/O thread */
248 QEMUBH
*qmp_dispatcher_bh
;
251 /* Owner of the request */
254 * Request object to be handled or Error to be reported
255 * (exactly one of them is non-null)
260 typedef struct QMPRequest QMPRequest
;
262 /* QMP checker flags */
263 #define QMP_ACCEPT_UNKNOWNS 1
265 /* Protects mon_list, monitor_qapi_event_state, monitor_destroyed. */
266 static QemuMutex monitor_lock
;
267 static GHashTable
*monitor_qapi_event_state
;
268 static QTAILQ_HEAD(, Monitor
) mon_list
;
269 static bool monitor_destroyed
;
271 /* Protects mon_fdsets */
272 static QemuMutex mon_fdsets_lock
;
273 static QLIST_HEAD(, MonFdset
) mon_fdsets
;
275 static int mon_refcount
;
277 static mon_cmd_t mon_cmds
[];
278 static mon_cmd_t info_cmds
[];
280 QmpCommandList qmp_commands
, qmp_cap_negotiation_commands
;
282 __thread Monitor
*cur_mon
;
284 static void monitor_command_cb(void *opaque
, const char *cmdline
,
285 void *readline_opaque
);
288 * Is @mon a QMP monitor?
290 static inline bool monitor_is_qmp(const Monitor
*mon
)
292 return (mon
->flags
& MONITOR_USE_CONTROL
);
296 * Is @mon is using readline?
297 * Note: not all HMP monitors use readline, e.g., gdbserver has a
298 * non-interactive HMP monitor, so readline is not used there.
300 static inline bool monitor_uses_readline(const Monitor
*mon
)
302 return mon
->flags
& MONITOR_USE_READLINE
;
305 static inline bool monitor_is_hmp_non_interactive(const Monitor
*mon
)
307 return !monitor_is_qmp(mon
) && !monitor_uses_readline(mon
);
311 * Return the clock to use for recording an event's time.
312 * It's QEMU_CLOCK_REALTIME, except for qtests it's
313 * QEMU_CLOCK_VIRTUAL, to support testing rate limits.
314 * Beware: result is invalid before configure_accelerator().
316 static inline QEMUClockType
monitor_get_event_clock(void)
318 return qtest_enabled() ? QEMU_CLOCK_VIRTUAL
: QEMU_CLOCK_REALTIME
;
322 * Is the current monitor, if any, a QMP monitor?
324 bool monitor_cur_is_qmp(void)
326 return cur_mon
&& monitor_is_qmp(cur_mon
);
329 void monitor_read_command(Monitor
*mon
, int show_prompt
)
334 readline_start(mon
->rs
, "(qemu) ", 0, monitor_command_cb
, NULL
);
336 readline_show_prompt(mon
->rs
);
339 int monitor_read_password(Monitor
*mon
, ReadLineFunc
*readline_func
,
343 readline_start(mon
->rs
, "Password: ", 1, readline_func
, opaque
);
344 /* prompt is printed on return from the command handler */
347 monitor_printf(mon
, "terminal does not support password prompting\n");
352 static void qmp_request_free(QMPRequest
*req
)
354 qobject_unref(req
->req
);
355 error_free(req
->err
);
359 /* Caller must hold mon->qmp.qmp_queue_lock */
360 static void monitor_qmp_cleanup_req_queue_locked(Monitor
*mon
)
362 while (!g_queue_is_empty(mon
->qmp
.qmp_requests
)) {
363 qmp_request_free(g_queue_pop_head(mon
->qmp
.qmp_requests
));
367 static void monitor_qmp_cleanup_queues(Monitor
*mon
)
369 qemu_mutex_lock(&mon
->qmp
.qmp_queue_lock
);
370 monitor_qmp_cleanup_req_queue_locked(mon
);
371 qemu_mutex_unlock(&mon
->qmp
.qmp_queue_lock
);
375 static void monitor_flush_locked(Monitor
*mon
);
377 static gboolean
monitor_unblocked(GIOChannel
*chan
, GIOCondition cond
,
380 Monitor
*mon
= opaque
;
382 qemu_mutex_lock(&mon
->mon_lock
);
384 monitor_flush_locked(mon
);
385 qemu_mutex_unlock(&mon
->mon_lock
);
389 /* Caller must hold mon->mon_lock */
390 static void monitor_flush_locked(Monitor
*mon
)
396 if (mon
->skip_flush
) {
400 buf
= qstring_get_str(mon
->outbuf
);
401 len
= qstring_get_length(mon
->outbuf
);
403 if (len
&& !mon
->mux_out
) {
404 rc
= qemu_chr_fe_write(&mon
->chr
, (const uint8_t *) buf
, len
);
405 if ((rc
< 0 && errno
!= EAGAIN
) || (rc
== len
)) {
406 /* all flushed or error */
407 qobject_unref(mon
->outbuf
);
408 mon
->outbuf
= qstring_new();
413 QString
*tmp
= qstring_from_str(buf
+ rc
);
414 qobject_unref(mon
->outbuf
);
417 if (mon
->out_watch
== 0) {
419 qemu_chr_fe_add_watch(&mon
->chr
, G_IO_OUT
| G_IO_HUP
,
420 monitor_unblocked
, mon
);
425 void monitor_flush(Monitor
*mon
)
427 qemu_mutex_lock(&mon
->mon_lock
);
428 monitor_flush_locked(mon
);
429 qemu_mutex_unlock(&mon
->mon_lock
);
432 /* flush at every end of line */
433 static int monitor_puts(Monitor
*mon
, const char *str
)
438 qemu_mutex_lock(&mon
->mon_lock
);
439 for (i
= 0; str
[i
]; i
++) {
442 qstring_append_chr(mon
->outbuf
, '\r');
444 qstring_append_chr(mon
->outbuf
, c
);
446 monitor_flush_locked(mon
);
449 qemu_mutex_unlock(&mon
->mon_lock
);
454 int monitor_vprintf(Monitor
*mon
, const char *fmt
, va_list ap
)
462 if (monitor_is_qmp(mon
)) {
466 buf
= g_strdup_vprintf(fmt
, ap
);
467 n
= monitor_puts(mon
, buf
);
472 int monitor_printf(Monitor
*mon
, const char *fmt
, ...)
478 ret
= monitor_vprintf(mon
, fmt
, ap
);
483 int monitor_fprintf(FILE *stream
, const char *fmt
, ...)
489 ret
= monitor_vprintf((Monitor
*)stream
, fmt
, ap
);
494 static void qmp_send_response(Monitor
*mon
, const QDict
*rsp
)
496 const QObject
*data
= QOBJECT(rsp
);
499 json
= mon
->flags
& MONITOR_USE_PRETTY
? qobject_to_json_pretty(data
) :
500 qobject_to_json(data
);
501 assert(json
!= NULL
);
503 qstring_append_chr(json
, '\n');
504 monitor_puts(mon
, qstring_get_str(json
));
509 static MonitorQAPIEventConf monitor_qapi_event_conf
[QAPI_EVENT__MAX
] = {
510 /* Limit guest-triggerable events to 1 per second */
511 [QAPI_EVENT_RTC_CHANGE
] = { 1000 * SCALE_MS
},
512 [QAPI_EVENT_WATCHDOG
] = { 1000 * SCALE_MS
},
513 [QAPI_EVENT_BALLOON_CHANGE
] = { 1000 * SCALE_MS
},
514 [QAPI_EVENT_QUORUM_REPORT_BAD
] = { 1000 * SCALE_MS
},
515 [QAPI_EVENT_QUORUM_FAILURE
] = { 1000 * SCALE_MS
},
516 [QAPI_EVENT_VSERPORT_CHANGE
] = { 1000 * SCALE_MS
},
520 * Broadcast an event to all monitors.
521 * @qdict is the event object. Its member "event" must match @event.
522 * Caller must hold monitor_lock.
524 static void monitor_qapi_event_emit(QAPIEvent event
, QDict
*qdict
)
528 trace_monitor_protocol_event_emit(event
, qdict
);
529 QTAILQ_FOREACH(mon
, &mon_list
, entry
) {
530 if (monitor_is_qmp(mon
)
531 && mon
->qmp
.commands
!= &qmp_cap_negotiation_commands
) {
532 qmp_send_response(mon
, qdict
);
537 static void monitor_qapi_event_handler(void *opaque
);
540 * Queue a new event for emission to Monitor instances,
541 * applying any rate limiting if required.
544 monitor_qapi_event_queue_no_reenter(QAPIEvent event
, QDict
*qdict
)
546 MonitorQAPIEventConf
*evconf
;
547 MonitorQAPIEventState
*evstate
;
549 assert(event
< QAPI_EVENT__MAX
);
550 evconf
= &monitor_qapi_event_conf
[event
];
551 trace_monitor_protocol_event_queue(event
, qdict
, evconf
->rate
);
553 qemu_mutex_lock(&monitor_lock
);
556 /* Unthrottled event */
557 monitor_qapi_event_emit(event
, qdict
);
559 QDict
*data
= qobject_to(QDict
, qdict_get(qdict
, "data"));
560 MonitorQAPIEventState key
= { .event
= event
, .data
= data
};
562 evstate
= g_hash_table_lookup(monitor_qapi_event_state
, &key
);
563 assert(!evstate
|| timer_pending(evstate
->timer
));
567 * Timer is pending for (at least) evconf->rate ns after
568 * last send. Store event for sending when timer fires,
569 * replacing a prior stored event if any.
571 qobject_unref(evstate
->qdict
);
572 evstate
->qdict
= qobject_ref(qdict
);
575 * Last send was (at least) evconf->rate ns ago.
576 * Send immediately, and arm the timer to call
577 * monitor_qapi_event_handler() in evconf->rate ns. Any
578 * events arriving before then will be delayed until then.
580 int64_t now
= qemu_clock_get_ns(monitor_get_event_clock());
582 monitor_qapi_event_emit(event
, qdict
);
584 evstate
= g_new(MonitorQAPIEventState
, 1);
585 evstate
->event
= event
;
586 evstate
->data
= qobject_ref(data
);
587 evstate
->qdict
= NULL
;
588 evstate
->timer
= timer_new_ns(monitor_get_event_clock(),
589 monitor_qapi_event_handler
,
591 g_hash_table_add(monitor_qapi_event_state
, evstate
);
592 timer_mod_ns(evstate
->timer
, now
+ evconf
->rate
);
596 qemu_mutex_unlock(&monitor_lock
);
599 void qapi_event_emit(QAPIEvent event
, QDict
*qdict
)
602 * monitor_qapi_event_queue_no_reenter() is not reentrant: it
603 * would deadlock on monitor_lock. Work around by queueing
604 * events in thread-local storage.
605 * TODO: remove this, make it re-enter safe.
607 typedef struct MonitorQapiEvent
{
610 QSIMPLEQ_ENTRY(MonitorQapiEvent
) entry
;
612 static __thread
QSIMPLEQ_HEAD(, MonitorQapiEvent
) event_queue
;
613 static __thread
bool reentered
;
614 MonitorQapiEvent
*ev
;
617 QSIMPLEQ_INIT(&event_queue
);
620 ev
= g_new(MonitorQapiEvent
, 1);
621 ev
->qdict
= qobject_ref(qdict
);
623 QSIMPLEQ_INSERT_TAIL(&event_queue
, ev
, entry
);
630 while ((ev
= QSIMPLEQ_FIRST(&event_queue
)) != NULL
) {
631 QSIMPLEQ_REMOVE_HEAD(&event_queue
, entry
);
632 monitor_qapi_event_queue_no_reenter(ev
->event
, ev
->qdict
);
633 qobject_unref(ev
->qdict
);
641 * This function runs evconf->rate ns after sending a throttled
643 * If another event has since been stored, send it.
645 static void monitor_qapi_event_handler(void *opaque
)
647 MonitorQAPIEventState
*evstate
= opaque
;
648 MonitorQAPIEventConf
*evconf
= &monitor_qapi_event_conf
[evstate
->event
];
650 trace_monitor_protocol_event_handler(evstate
->event
, evstate
->qdict
);
651 qemu_mutex_lock(&monitor_lock
);
653 if (evstate
->qdict
) {
654 int64_t now
= qemu_clock_get_ns(monitor_get_event_clock());
656 monitor_qapi_event_emit(evstate
->event
, evstate
->qdict
);
657 qobject_unref(evstate
->qdict
);
658 evstate
->qdict
= NULL
;
659 timer_mod_ns(evstate
->timer
, now
+ evconf
->rate
);
661 g_hash_table_remove(monitor_qapi_event_state
, evstate
);
662 qobject_unref(evstate
->data
);
663 timer_free(evstate
->timer
);
667 qemu_mutex_unlock(&monitor_lock
);
670 static unsigned int qapi_event_throttle_hash(const void *key
)
672 const MonitorQAPIEventState
*evstate
= key
;
673 unsigned int hash
= evstate
->event
* 255;
675 if (evstate
->event
== QAPI_EVENT_VSERPORT_CHANGE
) {
676 hash
+= g_str_hash(qdict_get_str(evstate
->data
, "id"));
679 if (evstate
->event
== QAPI_EVENT_QUORUM_REPORT_BAD
) {
680 hash
+= g_str_hash(qdict_get_str(evstate
->data
, "node-name"));
686 static gboolean
qapi_event_throttle_equal(const void *a
, const void *b
)
688 const MonitorQAPIEventState
*eva
= a
;
689 const MonitorQAPIEventState
*evb
= b
;
691 if (eva
->event
!= evb
->event
) {
695 if (eva
->event
== QAPI_EVENT_VSERPORT_CHANGE
) {
696 return !strcmp(qdict_get_str(eva
->data
, "id"),
697 qdict_get_str(evb
->data
, "id"));
700 if (eva
->event
== QAPI_EVENT_QUORUM_REPORT_BAD
) {
701 return !strcmp(qdict_get_str(eva
->data
, "node-name"),
702 qdict_get_str(evb
->data
, "node-name"));
708 static void monitor_qapi_event_init(void)
710 monitor_qapi_event_state
= g_hash_table_new(qapi_event_throttle_hash
,
711 qapi_event_throttle_equal
);
714 static void handle_hmp_command(Monitor
*mon
, const char *cmdline
);
716 static void monitor_iothread_init(void);
718 static void monitor_data_init(Monitor
*mon
, bool skip_flush
,
721 if (use_io_thread
&& !mon_iothread
) {
722 monitor_iothread_init();
724 memset(mon
, 0, sizeof(Monitor
));
725 qemu_mutex_init(&mon
->mon_lock
);
726 qemu_mutex_init(&mon
->qmp
.qmp_queue_lock
);
727 mon
->outbuf
= qstring_new();
728 /* Use *mon_cmds by default. */
729 mon
->cmd_table
= mon_cmds
;
730 mon
->skip_flush
= skip_flush
;
731 mon
->use_io_thread
= use_io_thread
;
732 mon
->qmp
.qmp_requests
= g_queue_new();
735 static void monitor_data_destroy(Monitor
*mon
)
737 g_free(mon
->mon_cpu_path
);
738 qemu_chr_fe_deinit(&mon
->chr
, false);
739 if (monitor_is_qmp(mon
)) {
740 json_message_parser_destroy(&mon
->qmp
.parser
);
742 readline_free(mon
->rs
);
743 qobject_unref(mon
->outbuf
);
744 qemu_mutex_destroy(&mon
->mon_lock
);
745 qemu_mutex_destroy(&mon
->qmp
.qmp_queue_lock
);
746 monitor_qmp_cleanup_req_queue_locked(mon
);
747 g_queue_free(mon
->qmp
.qmp_requests
);
750 char *qmp_human_monitor_command(const char *command_line
, bool has_cpu_index
,
751 int64_t cpu_index
, Error
**errp
)
754 Monitor
*old_mon
, hmp
;
756 monitor_data_init(&hmp
, true, false);
762 int ret
= monitor_set_cpu(cpu_index
);
765 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "cpu-index",
771 handle_hmp_command(&hmp
, command_line
);
774 qemu_mutex_lock(&hmp
.mon_lock
);
775 if (qstring_get_length(hmp
.outbuf
) > 0) {
776 output
= g_strdup(qstring_get_str(hmp
.outbuf
));
778 output
= g_strdup("");
780 qemu_mutex_unlock(&hmp
.mon_lock
);
783 monitor_data_destroy(&hmp
);
787 static int compare_cmd(const char *name
, const char *list
)
789 const char *p
, *pstart
;
795 p
= qemu_strchrnul(p
, '|');
796 if ((p
- pstart
) == len
&& !memcmp(pstart
, name
, len
))
805 static int get_str(char *buf
, int buf_size
, const char **pp
)
813 while (qemu_isspace(*p
)) {
824 while (*p
!= '\0' && *p
!= '\"') {
840 printf("unsupported escape code: '\\%c'\n", c
);
843 if ((q
- buf
) < buf_size
- 1) {
847 if ((q
- buf
) < buf_size
- 1) {
854 printf("unterminated string\n");
859 while (*p
!= '\0' && !qemu_isspace(*p
)) {
860 if ((q
- buf
) < buf_size
- 1) {
873 static void free_cmdline_args(char **args
, int nb_args
)
877 assert(nb_args
<= MAX_ARGS
);
879 for (i
= 0; i
< nb_args
; i
++) {
886 * Parse the command line to get valid args.
887 * @cmdline: command line to be parsed.
888 * @pnb_args: location to store the number of args, must NOT be NULL.
889 * @args: location to store the args, which should be freed by caller, must
892 * Returns 0 on success, negative on failure.
894 * NOTE: this parser is an approximate form of the real command parser. Number
895 * of args have a limit of MAX_ARGS. If cmdline contains more, it will
896 * return with failure.
898 static int parse_cmdline(const char *cmdline
,
899 int *pnb_args
, char **args
)
908 while (qemu_isspace(*p
)) {
914 if (nb_args
>= MAX_ARGS
) {
917 ret
= get_str(buf
, sizeof(buf
), &p
);
921 args
[nb_args
] = g_strdup(buf
);
928 free_cmdline_args(args
, nb_args
);
933 * Can command @cmd be executed in preconfig state?
935 static bool cmd_can_preconfig(const mon_cmd_t
*cmd
)
941 return strchr(cmd
->flags
, 'p');
944 static void help_cmd_dump_one(Monitor
*mon
,
945 const mon_cmd_t
*cmd
,
951 if (runstate_check(RUN_STATE_PRECONFIG
) && !cmd_can_preconfig(cmd
)) {
955 for (i
= 0; i
< prefix_args_nb
; i
++) {
956 monitor_printf(mon
, "%s ", prefix_args
[i
]);
958 monitor_printf(mon
, "%s %s -- %s\n", cmd
->name
, cmd
->params
, cmd
->help
);
961 /* @args[@arg_index] is the valid command need to find in @cmds */
962 static void help_cmd_dump(Monitor
*mon
, const mon_cmd_t
*cmds
,
963 char **args
, int nb_args
, int arg_index
)
965 const mon_cmd_t
*cmd
;
968 /* No valid arg need to compare with, dump all in *cmds */
969 if (arg_index
>= nb_args
) {
970 for (cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
971 help_cmd_dump_one(mon
, cmd
, args
, arg_index
);
976 /* Find one entry to dump */
977 for (cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
978 if (compare_cmd(args
[arg_index
], cmd
->name
) &&
979 ((!runstate_check(RUN_STATE_PRECONFIG
) ||
980 cmd_can_preconfig(cmd
)))) {
981 if (cmd
->sub_table
) {
982 /* continue with next arg */
983 help_cmd_dump(mon
, cmd
->sub_table
,
984 args
, nb_args
, arg_index
+ 1);
986 help_cmd_dump_one(mon
, cmd
, args
, arg_index
);
992 /* Command not found */
993 monitor_printf(mon
, "unknown command: '");
994 for (i
= 0; i
<= arg_index
; i
++) {
995 monitor_printf(mon
, "%s%s", args
[i
], i
== arg_index
? "'\n" : " ");
999 static void help_cmd(Monitor
*mon
, const char *name
)
1001 char *args
[MAX_ARGS
];
1004 /* 1. parse user input */
1006 /* special case for log, directly dump and return */
1007 if (!strcmp(name
, "log")) {
1008 const QEMULogItem
*item
;
1009 monitor_printf(mon
, "Log items (comma separated):\n");
1010 monitor_printf(mon
, "%-10s %s\n", "none", "remove all logs");
1011 for (item
= qemu_log_items
; item
->mask
!= 0; item
++) {
1012 monitor_printf(mon
, "%-10s %s\n", item
->name
, item
->help
);
1017 if (parse_cmdline(name
, &nb_args
, args
) < 0) {
1022 /* 2. dump the contents according to parsed args */
1023 help_cmd_dump(mon
, mon
->cmd_table
, args
, nb_args
, 0);
1025 free_cmdline_args(args
, nb_args
);
1028 static void do_help_cmd(Monitor
*mon
, const QDict
*qdict
)
1030 help_cmd(mon
, qdict_get_try_str(qdict
, "name"));
1033 static void hmp_trace_event(Monitor
*mon
, const QDict
*qdict
)
1035 const char *tp_name
= qdict_get_str(qdict
, "name");
1036 bool new_state
= qdict_get_bool(qdict
, "option");
1037 bool has_vcpu
= qdict_haskey(qdict
, "vcpu");
1038 int vcpu
= qdict_get_try_int(qdict
, "vcpu", 0);
1039 Error
*local_err
= NULL
;
1042 monitor_printf(mon
, "argument vcpu must be positive");
1046 qmp_trace_event_set_state(tp_name
, new_state
, true, true, has_vcpu
, vcpu
, &local_err
);
1048 error_report_err(local_err
);
1052 #ifdef CONFIG_TRACE_SIMPLE
1053 static void hmp_trace_file(Monitor
*mon
, const QDict
*qdict
)
1055 const char *op
= qdict_get_try_str(qdict
, "op");
1056 const char *arg
= qdict_get_try_str(qdict
, "arg");
1059 st_print_trace_file_status();
1060 } else if (!strcmp(op
, "on")) {
1061 st_set_trace_file_enabled(true);
1062 } else if (!strcmp(op
, "off")) {
1063 st_set_trace_file_enabled(false);
1064 } else if (!strcmp(op
, "flush")) {
1065 st_flush_trace_buffer();
1066 } else if (!strcmp(op
, "set")) {
1068 st_set_trace_file(arg
);
1071 monitor_printf(mon
, "unexpected argument \"%s\"\n", op
);
1072 help_cmd(mon
, "trace-file");
1077 static void hmp_info_help(Monitor
*mon
, const QDict
*qdict
)
1079 help_cmd(mon
, "info");
1082 static void query_commands_cb(QmpCommand
*cmd
, void *opaque
)
1084 CommandInfoList
*info
, **list
= opaque
;
1086 if (!cmd
->enabled
) {
1090 info
= g_malloc0(sizeof(*info
));
1091 info
->value
= g_malloc0(sizeof(*info
->value
));
1092 info
->value
->name
= g_strdup(cmd
->name
);
1097 CommandInfoList
*qmp_query_commands(Error
**errp
)
1099 CommandInfoList
*list
= NULL
;
1101 qmp_for_each_command(cur_mon
->qmp
.commands
, query_commands_cb
, &list
);
1106 EventInfoList
*qmp_query_events(Error
**errp
)
1109 * TODO This deprecated command is the only user of
1110 * QAPIEvent_str() and QAPIEvent_lookup[]. When the command goes,
1111 * they should go, too.
1113 EventInfoList
*info
, *ev_list
= NULL
;
1116 for (e
= 0 ; e
< QAPI_EVENT__MAX
; e
++) {
1117 const char *event_name
= QAPIEvent_str(e
);
1118 assert(event_name
!= NULL
);
1119 info
= g_malloc0(sizeof(*info
));
1120 info
->value
= g_malloc0(sizeof(*info
->value
));
1121 info
->value
->name
= g_strdup(event_name
);
1123 info
->next
= ev_list
;
1131 * Minor hack: generated marshalling suppressed for this command
1132 * ('gen': false in the schema) so we can parse the JSON string
1133 * directly into QObject instead of first parsing it with
1134 * visit_type_SchemaInfoList() into a SchemaInfoList, then marshal it
1135 * to QObject with generated output marshallers, every time. Instead,
1136 * we do it in test-qobject-input-visitor.c, just to make sure
1137 * qapi-gen.py's output actually conforms to the schema.
1139 static void qmp_query_qmp_schema(QDict
*qdict
, QObject
**ret_data
,
1142 *ret_data
= qobject_from_qlit(&qmp_schema_qlit
);
1145 static void monitor_init_qmp_commands(void)
1148 * Two command lists:
1149 * - qmp_commands contains all QMP commands
1150 * - qmp_cap_negotiation_commands contains just
1151 * "qmp_capabilities", to enforce capability negotiation
1154 qmp_init_marshal(&qmp_commands
);
1156 qmp_register_command(&qmp_commands
, "query-qmp-schema",
1157 qmp_query_qmp_schema
, QCO_ALLOW_PRECONFIG
);
1158 qmp_register_command(&qmp_commands
, "device_add", qmp_device_add
,
1160 qmp_register_command(&qmp_commands
, "netdev_add", qmp_netdev_add
,
1163 QTAILQ_INIT(&qmp_cap_negotiation_commands
);
1164 qmp_register_command(&qmp_cap_negotiation_commands
, "qmp_capabilities",
1165 qmp_marshal_qmp_capabilities
, QCO_ALLOW_PRECONFIG
);
1168 static bool qmp_oob_enabled(Monitor
*mon
)
1170 return mon
->qmp
.capab
[QMP_CAPABILITY_OOB
];
1173 static void monitor_qmp_caps_reset(Monitor
*mon
)
1175 memset(mon
->qmp
.capab_offered
, 0, sizeof(mon
->qmp
.capab_offered
));
1176 memset(mon
->qmp
.capab
, 0, sizeof(mon
->qmp
.capab
));
1177 mon
->qmp
.capab_offered
[QMP_CAPABILITY_OOB
] = mon
->use_io_thread
;
1181 * Accept QMP capabilities in @list for @mon.
1182 * On success, set mon->qmp.capab[], and return true.
1183 * On error, set @errp, and return false.
1185 static bool qmp_caps_accept(Monitor
*mon
, QMPCapabilityList
*list
,
1188 GString
*unavailable
= NULL
;
1189 bool capab
[QMP_CAPABILITY__MAX
];
1191 memset(capab
, 0, sizeof(capab
));
1193 for (; list
; list
= list
->next
) {
1194 if (!mon
->qmp
.capab_offered
[list
->value
]) {
1196 unavailable
= g_string_new(QMPCapability_str(list
->value
));
1198 g_string_append_printf(unavailable
, ", %s",
1199 QMPCapability_str(list
->value
));
1202 capab
[list
->value
] = true;
1206 error_setg(errp
, "Capability %s not available", unavailable
->str
);
1207 g_string_free(unavailable
, true);
1211 memcpy(mon
->qmp
.capab
, capab
, sizeof(capab
));
1215 void qmp_qmp_capabilities(bool has_enable
, QMPCapabilityList
*enable
,
1218 if (cur_mon
->qmp
.commands
== &qmp_commands
) {
1219 error_set(errp
, ERROR_CLASS_COMMAND_NOT_FOUND
,
1220 "Capabilities negotiation is already complete, command "
1225 if (!qmp_caps_accept(cur_mon
, enable
, errp
)) {
1229 cur_mon
->qmp
.commands
= &qmp_commands
;
1232 /* Set the current CPU defined by the user. Callers must hold BQL. */
1233 int monitor_set_cpu(int cpu_index
)
1237 cpu
= qemu_get_cpu(cpu_index
);
1241 g_free(cur_mon
->mon_cpu_path
);
1242 cur_mon
->mon_cpu_path
= object_get_canonical_path(OBJECT(cpu
));
1246 /* Callers must hold BQL. */
1247 static CPUState
*mon_get_cpu_sync(bool synchronize
)
1251 if (cur_mon
->mon_cpu_path
) {
1252 cpu
= (CPUState
*) object_resolve_path_type(cur_mon
->mon_cpu_path
,
1255 g_free(cur_mon
->mon_cpu_path
);
1256 cur_mon
->mon_cpu_path
= NULL
;
1259 if (!cur_mon
->mon_cpu_path
) {
1263 monitor_set_cpu(first_cpu
->cpu_index
);
1267 cpu_synchronize_state(cpu
);
1272 CPUState
*mon_get_cpu(void)
1274 return mon_get_cpu_sync(true);
1277 CPUArchState
*mon_get_cpu_env(void)
1279 CPUState
*cs
= mon_get_cpu();
1281 return cs
? cs
->env_ptr
: NULL
;
1284 int monitor_get_cpu_index(void)
1286 CPUState
*cs
= mon_get_cpu_sync(false);
1288 return cs
? cs
->cpu_index
: UNASSIGNED_CPU_INDEX
;
1291 static void hmp_info_registers(Monitor
*mon
, const QDict
*qdict
)
1293 bool all_cpus
= qdict_get_try_bool(qdict
, "cpustate_all", false);
1298 monitor_printf(mon
, "\nCPU#%d\n", cs
->cpu_index
);
1299 cpu_dump_state(cs
, (FILE *)mon
, monitor_fprintf
, CPU_DUMP_FPU
);
1305 monitor_printf(mon
, "No CPU available\n");
1309 cpu_dump_state(cs
, (FILE *)mon
, monitor_fprintf
, CPU_DUMP_FPU
);
1314 static void hmp_info_jit(Monitor
*mon
, const QDict
*qdict
)
1316 if (!tcg_enabled()) {
1317 error_report("JIT information is only available with accel=tcg");
1325 static void hmp_info_opcount(Monitor
*mon
, const QDict
*qdict
)
1327 dump_opcount_info();
1331 static void hmp_info_sync_profile(Monitor
*mon
, const QDict
*qdict
)
1333 int64_t max
= qdict_get_try_int(qdict
, "max", 10);
1334 bool mean
= qdict_get_try_bool(qdict
, "mean", false);
1335 bool coalesce
= !qdict_get_try_bool(qdict
, "no_coalesce", false);
1336 enum QSPSortBy sort_by
;
1338 sort_by
= mean
? QSP_SORT_BY_AVG_WAIT_TIME
: QSP_SORT_BY_TOTAL_WAIT_TIME
;
1339 qsp_report((FILE *)mon
, monitor_fprintf
, max
, sort_by
, coalesce
);
1342 static void hmp_info_history(Monitor
*mon
, const QDict
*qdict
)
1351 str
= readline_get_history(mon
->rs
, i
);
1354 monitor_printf(mon
, "%d: '%s'\n", i
, str
);
1359 static void hmp_info_cpustats(Monitor
*mon
, const QDict
*qdict
)
1361 CPUState
*cs
= mon_get_cpu();
1364 monitor_printf(mon
, "No CPU available\n");
1367 cpu_dump_statistics(cs
, (FILE *)mon
, &monitor_fprintf
, 0);
1370 static void hmp_info_trace_events(Monitor
*mon
, const QDict
*qdict
)
1372 const char *name
= qdict_get_try_str(qdict
, "name");
1373 bool has_vcpu
= qdict_haskey(qdict
, "vcpu");
1374 int vcpu
= qdict_get_try_int(qdict
, "vcpu", 0);
1375 TraceEventInfoList
*events
;
1376 TraceEventInfoList
*elem
;
1377 Error
*local_err
= NULL
;
1383 monitor_printf(mon
, "argument vcpu must be positive");
1387 events
= qmp_trace_event_get_state(name
, has_vcpu
, vcpu
, &local_err
);
1389 error_report_err(local_err
);
1393 for (elem
= events
; elem
!= NULL
; elem
= elem
->next
) {
1394 monitor_printf(mon
, "%s : state %u\n",
1396 elem
->value
->state
== TRACE_EVENT_STATE_ENABLED
? 1 : 0);
1398 qapi_free_TraceEventInfoList(events
);
1401 void qmp_client_migrate_info(const char *protocol
, const char *hostname
,
1402 bool has_port
, int64_t port
,
1403 bool has_tls_port
, int64_t tls_port
,
1404 bool has_cert_subject
, const char *cert_subject
,
1407 if (strcmp(protocol
, "spice") == 0) {
1408 if (!qemu_using_spice(errp
)) {
1412 if (!has_port
&& !has_tls_port
) {
1413 error_setg(errp
, QERR_MISSING_PARAMETER
, "port/tls-port");
1417 if (qemu_spice_migrate_info(hostname
,
1418 has_port
? port
: -1,
1419 has_tls_port
? tls_port
: -1,
1421 error_setg(errp
, QERR_UNDEFINED_ERROR
);
1427 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "protocol", "spice");
1430 static void hmp_logfile(Monitor
*mon
, const QDict
*qdict
)
1434 qemu_set_log_filename(qdict_get_str(qdict
, "filename"), &err
);
1436 error_report_err(err
);
1440 static void hmp_log(Monitor
*mon
, const QDict
*qdict
)
1443 const char *items
= qdict_get_str(qdict
, "items");
1445 if (!strcmp(items
, "none")) {
1448 mask
= qemu_str_to_log_mask(items
);
1450 help_cmd(mon
, "log");
1457 static void hmp_singlestep(Monitor
*mon
, const QDict
*qdict
)
1459 const char *option
= qdict_get_try_str(qdict
, "option");
1460 if (!option
|| !strcmp(option
, "on")) {
1462 } else if (!strcmp(option
, "off")) {
1465 monitor_printf(mon
, "unexpected option %s\n", option
);
1469 static void hmp_gdbserver(Monitor
*mon
, const QDict
*qdict
)
1471 const char *device
= qdict_get_try_str(qdict
, "device");
1473 device
= "tcp::" DEFAULT_GDBSTUB_PORT
;
1474 if (gdbserver_start(device
) < 0) {
1475 monitor_printf(mon
, "Could not open gdbserver on device '%s'\n",
1477 } else if (strcmp(device
, "none") == 0) {
1478 monitor_printf(mon
, "Disabled gdbserver\n");
1480 monitor_printf(mon
, "Waiting for gdb connection on device '%s'\n",
1485 static void hmp_watchdog_action(Monitor
*mon
, const QDict
*qdict
)
1487 const char *action
= qdict_get_str(qdict
, "action");
1488 if (select_watchdog_action(action
) == -1) {
1489 monitor_printf(mon
, "Unknown watchdog action '%s'\n", action
);
1493 static void monitor_printc(Monitor
*mon
, int c
)
1495 monitor_printf(mon
, "'");
1498 monitor_printf(mon
, "\\'");
1501 monitor_printf(mon
, "\\\\");
1504 monitor_printf(mon
, "\\n");
1507 monitor_printf(mon
, "\\r");
1510 if (c
>= 32 && c
<= 126) {
1511 monitor_printf(mon
, "%c", c
);
1513 monitor_printf(mon
, "\\x%02x", c
);
1517 monitor_printf(mon
, "'");
1520 static void memory_dump(Monitor
*mon
, int count
, int format
, int wsize
,
1521 hwaddr addr
, int is_physical
)
1523 int l
, line_size
, i
, max_digits
, len
;
1526 CPUState
*cs
= mon_get_cpu();
1528 if (!cs
&& (format
== 'i' || !is_physical
)) {
1529 monitor_printf(mon
, "Can not dump without CPU\n");
1533 if (format
== 'i') {
1534 monitor_disas(mon
, cs
, addr
, count
, is_physical
);
1538 len
= wsize
* count
;
1547 max_digits
= DIV_ROUND_UP(wsize
* 8, 3);
1551 max_digits
= (wsize
* 8) / 4;
1555 max_digits
= DIV_ROUND_UP(wsize
* 8 * 10, 33);
1564 monitor_printf(mon
, TARGET_FMT_plx
":", addr
);
1566 monitor_printf(mon
, TARGET_FMT_lx
":", (target_ulong
)addr
);
1571 AddressSpace
*as
= cs
? cs
->as
: &address_space_memory
;
1572 MemTxResult r
= address_space_read(as
, addr
,
1573 MEMTXATTRS_UNSPECIFIED
, buf
, l
);
1574 if (r
!= MEMTX_OK
) {
1575 monitor_printf(mon
, " Cannot access memory\n");
1579 if (cpu_memory_rw_debug(cs
, addr
, buf
, l
, 0) < 0) {
1580 monitor_printf(mon
, " Cannot access memory\n");
1589 v
= ldub_p(buf
+ i
);
1592 v
= lduw_p(buf
+ i
);
1595 v
= (uint32_t)ldl_p(buf
+ i
);
1601 monitor_printf(mon
, " ");
1604 monitor_printf(mon
, "%#*" PRIo64
, max_digits
, v
);
1607 monitor_printf(mon
, "0x%0*" PRIx64
, max_digits
, v
);
1610 monitor_printf(mon
, "%*" PRIu64
, max_digits
, v
);
1613 monitor_printf(mon
, "%*" PRId64
, max_digits
, v
);
1616 monitor_printc(mon
, v
);
1621 monitor_printf(mon
, "\n");
1627 static void hmp_memory_dump(Monitor
*mon
, const QDict
*qdict
)
1629 int count
= qdict_get_int(qdict
, "count");
1630 int format
= qdict_get_int(qdict
, "format");
1631 int size
= qdict_get_int(qdict
, "size");
1632 target_long addr
= qdict_get_int(qdict
, "addr");
1634 memory_dump(mon
, count
, format
, size
, addr
, 0);
1637 static void hmp_physical_memory_dump(Monitor
*mon
, const QDict
*qdict
)
1639 int count
= qdict_get_int(qdict
, "count");
1640 int format
= qdict_get_int(qdict
, "format");
1641 int size
= qdict_get_int(qdict
, "size");
1642 hwaddr addr
= qdict_get_int(qdict
, "addr");
1644 memory_dump(mon
, count
, format
, size
, addr
, 1);
1647 static void *gpa2hva(MemoryRegion
**p_mr
, hwaddr addr
, Error
**errp
)
1649 MemoryRegionSection mrs
= memory_region_find(get_system_memory(),
1653 error_setg(errp
, "No memory is mapped at address 0x%" HWADDR_PRIx
, addr
);
1657 if (!memory_region_is_ram(mrs
.mr
) && !memory_region_is_romd(mrs
.mr
)) {
1658 error_setg(errp
, "Memory at address 0x%" HWADDR_PRIx
"is not RAM", addr
);
1659 memory_region_unref(mrs
.mr
);
1664 return qemu_map_ram_ptr(mrs
.mr
->ram_block
, mrs
.offset_within_region
);
1667 static void hmp_gpa2hva(Monitor
*mon
, const QDict
*qdict
)
1669 hwaddr addr
= qdict_get_int(qdict
, "addr");
1670 Error
*local_err
= NULL
;
1671 MemoryRegion
*mr
= NULL
;
1674 ptr
= gpa2hva(&mr
, addr
, &local_err
);
1676 error_report_err(local_err
);
1680 monitor_printf(mon
, "Host virtual address for 0x%" HWADDR_PRIx
1682 addr
, mr
->name
, ptr
);
1684 memory_region_unref(mr
);
1688 static uint64_t vtop(void *ptr
, Error
**errp
)
1692 uintptr_t addr
= (uintptr_t) ptr
;
1693 uintptr_t pagesize
= getpagesize();
1694 off_t offset
= addr
/ pagesize
* sizeof(pinfo
);
1697 fd
= open("/proc/self/pagemap", O_RDONLY
);
1699 error_setg_errno(errp
, errno
, "Cannot open /proc/self/pagemap");
1703 /* Force copy-on-write if necessary. */
1704 atomic_add((uint8_t *)ptr
, 0);
1706 if (pread(fd
, &pinfo
, sizeof(pinfo
), offset
) != sizeof(pinfo
)) {
1707 error_setg_errno(errp
, errno
, "Cannot read pagemap");
1710 if ((pinfo
& (1ull << 63)) == 0) {
1711 error_setg(errp
, "Page not present");
1714 ret
= ((pinfo
& 0x007fffffffffffffull
) * pagesize
) | (addr
& (pagesize
- 1));
1721 static void hmp_gpa2hpa(Monitor
*mon
, const QDict
*qdict
)
1723 hwaddr addr
= qdict_get_int(qdict
, "addr");
1724 Error
*local_err
= NULL
;
1725 MemoryRegion
*mr
= NULL
;
1729 ptr
= gpa2hva(&mr
, addr
, &local_err
);
1731 error_report_err(local_err
);
1735 physaddr
= vtop(ptr
, &local_err
);
1737 error_report_err(local_err
);
1739 monitor_printf(mon
, "Host physical address for 0x%" HWADDR_PRIx
1740 " (%s) is 0x%" PRIx64
"\n",
1741 addr
, mr
->name
, (uint64_t) physaddr
);
1744 memory_region_unref(mr
);
1748 static void do_print(Monitor
*mon
, const QDict
*qdict
)
1750 int format
= qdict_get_int(qdict
, "format");
1751 hwaddr val
= qdict_get_int(qdict
, "val");
1755 monitor_printf(mon
, "%#" HWADDR_PRIo
, val
);
1758 monitor_printf(mon
, "%#" HWADDR_PRIx
, val
);
1761 monitor_printf(mon
, "%" HWADDR_PRIu
, val
);
1765 monitor_printf(mon
, "%" HWADDR_PRId
, val
);
1768 monitor_printc(mon
, val
);
1771 monitor_printf(mon
, "\n");
1774 static void hmp_sum(Monitor
*mon
, const QDict
*qdict
)
1778 uint32_t start
= qdict_get_int(qdict
, "start");
1779 uint32_t size
= qdict_get_int(qdict
, "size");
1782 for(addr
= start
; addr
< (start
+ size
); addr
++) {
1783 uint8_t val
= address_space_ldub(&address_space_memory
, addr
,
1784 MEMTXATTRS_UNSPECIFIED
, NULL
);
1785 /* BSD sum algorithm ('sum' Unix command) */
1786 sum
= (sum
>> 1) | (sum
<< 15);
1789 monitor_printf(mon
, "%05d\n", sum
);
1792 static int mouse_button_state
;
1794 static void hmp_mouse_move(Monitor
*mon
, const QDict
*qdict
)
1796 int dx
, dy
, dz
, button
;
1797 const char *dx_str
= qdict_get_str(qdict
, "dx_str");
1798 const char *dy_str
= qdict_get_str(qdict
, "dy_str");
1799 const char *dz_str
= qdict_get_try_str(qdict
, "dz_str");
1801 dx
= strtol(dx_str
, NULL
, 0);
1802 dy
= strtol(dy_str
, NULL
, 0);
1803 qemu_input_queue_rel(NULL
, INPUT_AXIS_X
, dx
);
1804 qemu_input_queue_rel(NULL
, INPUT_AXIS_Y
, dy
);
1807 dz
= strtol(dz_str
, NULL
, 0);
1809 button
= (dz
> 0) ? INPUT_BUTTON_WHEEL_UP
: INPUT_BUTTON_WHEEL_DOWN
;
1810 qemu_input_queue_btn(NULL
, button
, true);
1811 qemu_input_event_sync();
1812 qemu_input_queue_btn(NULL
, button
, false);
1815 qemu_input_event_sync();
1818 static void hmp_mouse_button(Monitor
*mon
, const QDict
*qdict
)
1820 static uint32_t bmap
[INPUT_BUTTON__MAX
] = {
1821 [INPUT_BUTTON_LEFT
] = MOUSE_EVENT_LBUTTON
,
1822 [INPUT_BUTTON_MIDDLE
] = MOUSE_EVENT_MBUTTON
,
1823 [INPUT_BUTTON_RIGHT
] = MOUSE_EVENT_RBUTTON
,
1825 int button_state
= qdict_get_int(qdict
, "button_state");
1827 if (mouse_button_state
== button_state
) {
1830 qemu_input_update_buttons(NULL
, bmap
, mouse_button_state
, button_state
);
1831 qemu_input_event_sync();
1832 mouse_button_state
= button_state
;
1835 static void hmp_ioport_read(Monitor
*mon
, const QDict
*qdict
)
1837 int size
= qdict_get_int(qdict
, "size");
1838 int addr
= qdict_get_int(qdict
, "addr");
1839 int has_index
= qdict_haskey(qdict
, "index");
1844 int index
= qdict_get_int(qdict
, "index");
1845 cpu_outb(addr
& IOPORTS_MASK
, index
& 0xff);
1853 val
= cpu_inb(addr
);
1857 val
= cpu_inw(addr
);
1861 val
= cpu_inl(addr
);
1865 monitor_printf(mon
, "port%c[0x%04x] = %#0*x\n",
1866 suffix
, addr
, size
* 2, val
);
1869 static void hmp_ioport_write(Monitor
*mon
, const QDict
*qdict
)
1871 int size
= qdict_get_int(qdict
, "size");
1872 int addr
= qdict_get_int(qdict
, "addr");
1873 int val
= qdict_get_int(qdict
, "val");
1875 addr
&= IOPORTS_MASK
;
1880 cpu_outb(addr
, val
);
1883 cpu_outw(addr
, val
);
1886 cpu_outl(addr
, val
);
1891 static void hmp_boot_set(Monitor
*mon
, const QDict
*qdict
)
1893 Error
*local_err
= NULL
;
1894 const char *bootdevice
= qdict_get_str(qdict
, "bootdevice");
1896 qemu_boot_set(bootdevice
, &local_err
);
1898 error_report_err(local_err
);
1900 monitor_printf(mon
, "boot device list now set to %s\n", bootdevice
);
1904 static void hmp_info_mtree(Monitor
*mon
, const QDict
*qdict
)
1906 bool flatview
= qdict_get_try_bool(qdict
, "flatview", false);
1907 bool dispatch_tree
= qdict_get_try_bool(qdict
, "dispatch_tree", false);
1908 bool owner
= qdict_get_try_bool(qdict
, "owner", false);
1910 mtree_info((fprintf_function
)monitor_printf
, mon
, flatview
, dispatch_tree
,
1914 static void hmp_info_numa(Monitor
*mon
, const QDict
*qdict
)
1917 NumaNodeMem
*node_mem
;
1918 CpuInfoList
*cpu_list
, *cpu
;
1920 cpu_list
= qmp_query_cpus(&error_abort
);
1921 node_mem
= g_new0(NumaNodeMem
, nb_numa_nodes
);
1923 query_numa_node_mem(node_mem
);
1924 monitor_printf(mon
, "%d nodes\n", nb_numa_nodes
);
1925 for (i
= 0; i
< nb_numa_nodes
; i
++) {
1926 monitor_printf(mon
, "node %d cpus:", i
);
1927 for (cpu
= cpu_list
; cpu
; cpu
= cpu
->next
) {
1928 if (cpu
->value
->has_props
&& cpu
->value
->props
->has_node_id
&&
1929 cpu
->value
->props
->node_id
== i
) {
1930 monitor_printf(mon
, " %" PRIi64
, cpu
->value
->CPU
);
1933 monitor_printf(mon
, "\n");
1934 monitor_printf(mon
, "node %d size: %" PRId64
" MB\n", i
,
1935 node_mem
[i
].node_mem
>> 20);
1936 monitor_printf(mon
, "node %d plugged: %" PRId64
" MB\n", i
,
1937 node_mem
[i
].node_plugged_mem
>> 20);
1939 qapi_free_CpuInfoList(cpu_list
);
1943 #ifdef CONFIG_PROFILER
1947 static void hmp_info_profile(Monitor
*mon
, const QDict
*qdict
)
1949 static int64_t last_cpu_exec_time
;
1950 int64_t cpu_exec_time
;
1953 cpu_exec_time
= tcg_cpu_exec_time();
1954 delta
= cpu_exec_time
- last_cpu_exec_time
;
1956 monitor_printf(mon
, "async time %" PRId64
" (%0.3f)\n",
1957 dev_time
, dev_time
/ (double)NANOSECONDS_PER_SECOND
);
1958 monitor_printf(mon
, "qemu time %" PRId64
" (%0.3f)\n",
1959 delta
, delta
/ (double)NANOSECONDS_PER_SECOND
);
1960 last_cpu_exec_time
= cpu_exec_time
;
1964 static void hmp_info_profile(Monitor
*mon
, const QDict
*qdict
)
1966 monitor_printf(mon
, "Internal profiler not compiled\n");
1970 /* Capture support */
1971 static QLIST_HEAD (capture_list_head
, CaptureState
) capture_head
;
1973 static void hmp_info_capture(Monitor
*mon
, const QDict
*qdict
)
1978 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1979 monitor_printf(mon
, "[%d]: ", i
);
1980 s
->ops
.info (s
->opaque
);
1984 static void hmp_stopcapture(Monitor
*mon
, const QDict
*qdict
)
1987 int n
= qdict_get_int(qdict
, "n");
1990 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1992 s
->ops
.destroy (s
->opaque
);
1993 QLIST_REMOVE (s
, entries
);
2000 static void hmp_wavcapture(Monitor
*mon
, const QDict
*qdict
)
2002 const char *path
= qdict_get_str(qdict
, "path");
2003 int has_freq
= qdict_haskey(qdict
, "freq");
2004 int freq
= qdict_get_try_int(qdict
, "freq", -1);
2005 int has_bits
= qdict_haskey(qdict
, "bits");
2006 int bits
= qdict_get_try_int(qdict
, "bits", -1);
2007 int has_channels
= qdict_haskey(qdict
, "nchannels");
2008 int nchannels
= qdict_get_try_int(qdict
, "nchannels", -1);
2011 s
= g_malloc0 (sizeof (*s
));
2013 freq
= has_freq
? freq
: 44100;
2014 bits
= has_bits
? bits
: 16;
2015 nchannels
= has_channels
? nchannels
: 2;
2017 if (wav_start_capture (s
, path
, freq
, bits
, nchannels
)) {
2018 monitor_printf(mon
, "Failed to add wave capture\n");
2022 QLIST_INSERT_HEAD (&capture_head
, s
, entries
);
2025 static QAuthZList
*find_auth(Monitor
*mon
, const char *name
)
2030 container
= object_get_objects_root();
2031 obj
= object_resolve_path_component(container
, name
);
2033 monitor_printf(mon
, "acl: unknown list '%s'\n", name
);
2037 return QAUTHZ_LIST(obj
);
2040 static bool warn_acl
;
2041 static void hmp_warn_acl(void)
2046 error_report("The acl_show, acl_reset, acl_policy, acl_add, acl_remove "
2047 "commands are deprecated with no replacement. Authorization "
2048 "for VNC should be performed using the pluggable QAuthZ "
2053 static void hmp_acl_show(Monitor
*mon
, const QDict
*qdict
)
2055 const char *aclname
= qdict_get_str(qdict
, "aclname");
2056 QAuthZList
*auth
= find_auth(mon
, aclname
);
2057 QAuthZListRuleList
*rules
;
2066 monitor_printf(mon
, "policy: %s\n",
2067 QAuthZListPolicy_str(auth
->policy
));
2069 rules
= auth
->rules
;
2071 QAuthZListRule
*rule
= rules
->value
;
2073 monitor_printf(mon
, "%zu: %s %s\n", i
,
2074 QAuthZListPolicy_str(rule
->policy
),
2076 rules
= rules
->next
;
2080 static void hmp_acl_reset(Monitor
*mon
, const QDict
*qdict
)
2082 const char *aclname
= qdict_get_str(qdict
, "aclname");
2083 QAuthZList
*auth
= find_auth(mon
, aclname
);
2091 auth
->policy
= QAUTHZ_LIST_POLICY_DENY
;
2092 qapi_free_QAuthZListRuleList(auth
->rules
);
2094 monitor_printf(mon
, "acl: removed all rules\n");
2097 static void hmp_acl_policy(Monitor
*mon
, const QDict
*qdict
)
2099 const char *aclname
= qdict_get_str(qdict
, "aclname");
2100 const char *policy
= qdict_get_str(qdict
, "policy");
2101 QAuthZList
*auth
= find_auth(mon
, aclname
);
2111 val
= qapi_enum_parse(&QAuthZListPolicy_lookup
,
2113 QAUTHZ_LIST_POLICY_DENY
,
2117 monitor_printf(mon
, "acl: unknown policy '%s', "
2118 "expected 'deny' or 'allow'\n", policy
);
2121 if (auth
->policy
== QAUTHZ_LIST_POLICY_ALLOW
) {
2122 monitor_printf(mon
, "acl: policy set to 'allow'\n");
2124 monitor_printf(mon
, "acl: policy set to 'deny'\n");
2129 static QAuthZListFormat
hmp_acl_get_format(const char *match
)
2131 if (strchr(match
, '*')) {
2132 return QAUTHZ_LIST_FORMAT_GLOB
;
2134 return QAUTHZ_LIST_FORMAT_EXACT
;
2138 static void hmp_acl_add(Monitor
*mon
, const QDict
*qdict
)
2140 const char *aclname
= qdict_get_str(qdict
, "aclname");
2141 const char *match
= qdict_get_str(qdict
, "match");
2142 const char *policystr
= qdict_get_str(qdict
, "policy");
2143 int has_index
= qdict_haskey(qdict
, "index");
2144 int index
= qdict_get_try_int(qdict
, "index", -1);
2145 QAuthZList
*auth
= find_auth(mon
, aclname
);
2147 QAuthZListPolicy policy
;
2148 QAuthZListFormat format
;
2157 policy
= qapi_enum_parse(&QAuthZListPolicy_lookup
,
2159 QAUTHZ_LIST_POLICY_DENY
,
2163 monitor_printf(mon
, "acl: unknown policy '%s', "
2164 "expected 'deny' or 'allow'\n", policystr
);
2168 format
= hmp_acl_get_format(match
);
2170 if (has_index
&& index
== 0) {
2171 monitor_printf(mon
, "acl: unable to add acl entry\n");
2176 i
= qauthz_list_insert_rule(auth
, match
, policy
,
2177 format
, index
- 1, &err
);
2179 i
= qauthz_list_append_rule(auth
, match
, policy
,
2183 monitor_printf(mon
, "acl: unable to add rule: %s",
2184 error_get_pretty(err
));
2187 monitor_printf(mon
, "acl: added rule at position %zu\n", i
+ 1);
2191 static void hmp_acl_remove(Monitor
*mon
, const QDict
*qdict
)
2193 const char *aclname
= qdict_get_str(qdict
, "aclname");
2194 const char *match
= qdict_get_str(qdict
, "match");
2195 QAuthZList
*auth
= find_auth(mon
, aclname
);
2204 i
= qauthz_list_delete_rule(auth
, match
);
2206 monitor_printf(mon
, "acl: removed rule at position %zu\n", i
+ 1);
2208 monitor_printf(mon
, "acl: no matching acl entry\n");
2212 void qmp_getfd(const char *fdname
, Error
**errp
)
2217 fd
= qemu_chr_fe_get_msgfd(&cur_mon
->chr
);
2219 error_setg(errp
, QERR_FD_NOT_SUPPLIED
);
2223 if (qemu_isdigit(fdname
[0])) {
2225 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "fdname",
2226 "a name not starting with a digit");
2230 qemu_mutex_lock(&cur_mon
->mon_lock
);
2231 QLIST_FOREACH(monfd
, &cur_mon
->fds
, next
) {
2232 if (strcmp(monfd
->name
, fdname
) != 0) {
2238 qemu_mutex_unlock(&cur_mon
->mon_lock
);
2239 /* Make sure close() is outside critical section */
2244 monfd
= g_malloc0(sizeof(mon_fd_t
));
2245 monfd
->name
= g_strdup(fdname
);
2248 QLIST_INSERT_HEAD(&cur_mon
->fds
, monfd
, next
);
2249 qemu_mutex_unlock(&cur_mon
->mon_lock
);
2252 void qmp_closefd(const char *fdname
, Error
**errp
)
2257 qemu_mutex_lock(&cur_mon
->mon_lock
);
2258 QLIST_FOREACH(monfd
, &cur_mon
->fds
, next
) {
2259 if (strcmp(monfd
->name
, fdname
) != 0) {
2263 QLIST_REMOVE(monfd
, next
);
2265 g_free(monfd
->name
);
2267 qemu_mutex_unlock(&cur_mon
->mon_lock
);
2268 /* Make sure close() is outside critical section */
2273 qemu_mutex_unlock(&cur_mon
->mon_lock
);
2274 error_setg(errp
, QERR_FD_NOT_FOUND
, fdname
);
2277 int monitor_get_fd(Monitor
*mon
, const char *fdname
, Error
**errp
)
2281 qemu_mutex_lock(&mon
->mon_lock
);
2282 QLIST_FOREACH(monfd
, &mon
->fds
, next
) {
2285 if (strcmp(monfd
->name
, fdname
) != 0) {
2291 /* caller takes ownership of fd */
2292 QLIST_REMOVE(monfd
, next
);
2293 g_free(monfd
->name
);
2295 qemu_mutex_unlock(&mon
->mon_lock
);
2300 qemu_mutex_unlock(&mon
->mon_lock
);
2301 error_setg(errp
, "File descriptor named '%s' has not been found", fdname
);
2305 static void monitor_fdset_cleanup(MonFdset
*mon_fdset
)
2307 MonFdsetFd
*mon_fdset_fd
;
2308 MonFdsetFd
*mon_fdset_fd_next
;
2310 QLIST_FOREACH_SAFE(mon_fdset_fd
, &mon_fdset
->fds
, next
, mon_fdset_fd_next
) {
2311 if ((mon_fdset_fd
->removed
||
2312 (QLIST_EMPTY(&mon_fdset
->dup_fds
) && mon_refcount
== 0)) &&
2313 runstate_is_running()) {
2314 close(mon_fdset_fd
->fd
);
2315 g_free(mon_fdset_fd
->opaque
);
2316 QLIST_REMOVE(mon_fdset_fd
, next
);
2317 g_free(mon_fdset_fd
);
2321 if (QLIST_EMPTY(&mon_fdset
->fds
) && QLIST_EMPTY(&mon_fdset
->dup_fds
)) {
2322 QLIST_REMOVE(mon_fdset
, next
);
2327 static void monitor_fdsets_cleanup(void)
2329 MonFdset
*mon_fdset
;
2330 MonFdset
*mon_fdset_next
;
2332 qemu_mutex_lock(&mon_fdsets_lock
);
2333 QLIST_FOREACH_SAFE(mon_fdset
, &mon_fdsets
, next
, mon_fdset_next
) {
2334 monitor_fdset_cleanup(mon_fdset
);
2336 qemu_mutex_unlock(&mon_fdsets_lock
);
2339 AddfdInfo
*qmp_add_fd(bool has_fdset_id
, int64_t fdset_id
, bool has_opaque
,
2340 const char *opaque
, Error
**errp
)
2343 Monitor
*mon
= cur_mon
;
2346 fd
= qemu_chr_fe_get_msgfd(&mon
->chr
);
2348 error_setg(errp
, QERR_FD_NOT_SUPPLIED
);
2352 fdinfo
= monitor_fdset_add_fd(fd
, has_fdset_id
, fdset_id
,
2353 has_opaque
, opaque
, errp
);
2365 void qmp_remove_fd(int64_t fdset_id
, bool has_fd
, int64_t fd
, Error
**errp
)
2367 MonFdset
*mon_fdset
;
2368 MonFdsetFd
*mon_fdset_fd
;
2371 qemu_mutex_lock(&mon_fdsets_lock
);
2372 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2373 if (mon_fdset
->id
!= fdset_id
) {
2376 QLIST_FOREACH(mon_fdset_fd
, &mon_fdset
->fds
, next
) {
2378 if (mon_fdset_fd
->fd
!= fd
) {
2381 mon_fdset_fd
->removed
= true;
2384 mon_fdset_fd
->removed
= true;
2387 if (has_fd
&& !mon_fdset_fd
) {
2390 monitor_fdset_cleanup(mon_fdset
);
2391 qemu_mutex_unlock(&mon_fdsets_lock
);
2396 qemu_mutex_unlock(&mon_fdsets_lock
);
2398 snprintf(fd_str
, sizeof(fd_str
), "fdset-id:%" PRId64
", fd:%" PRId64
,
2401 snprintf(fd_str
, sizeof(fd_str
), "fdset-id:%" PRId64
, fdset_id
);
2403 error_setg(errp
, QERR_FD_NOT_FOUND
, fd_str
);
2406 FdsetInfoList
*qmp_query_fdsets(Error
**errp
)
2408 MonFdset
*mon_fdset
;
2409 MonFdsetFd
*mon_fdset_fd
;
2410 FdsetInfoList
*fdset_list
= NULL
;
2412 qemu_mutex_lock(&mon_fdsets_lock
);
2413 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2414 FdsetInfoList
*fdset_info
= g_malloc0(sizeof(*fdset_info
));
2415 FdsetFdInfoList
*fdsetfd_list
= NULL
;
2417 fdset_info
->value
= g_malloc0(sizeof(*fdset_info
->value
));
2418 fdset_info
->value
->fdset_id
= mon_fdset
->id
;
2420 QLIST_FOREACH(mon_fdset_fd
, &mon_fdset
->fds
, next
) {
2421 FdsetFdInfoList
*fdsetfd_info
;
2423 fdsetfd_info
= g_malloc0(sizeof(*fdsetfd_info
));
2424 fdsetfd_info
->value
= g_malloc0(sizeof(*fdsetfd_info
->value
));
2425 fdsetfd_info
->value
->fd
= mon_fdset_fd
->fd
;
2426 if (mon_fdset_fd
->opaque
) {
2427 fdsetfd_info
->value
->has_opaque
= true;
2428 fdsetfd_info
->value
->opaque
= g_strdup(mon_fdset_fd
->opaque
);
2430 fdsetfd_info
->value
->has_opaque
= false;
2433 fdsetfd_info
->next
= fdsetfd_list
;
2434 fdsetfd_list
= fdsetfd_info
;
2437 fdset_info
->value
->fds
= fdsetfd_list
;
2439 fdset_info
->next
= fdset_list
;
2440 fdset_list
= fdset_info
;
2442 qemu_mutex_unlock(&mon_fdsets_lock
);
2447 AddfdInfo
*monitor_fdset_add_fd(int fd
, bool has_fdset_id
, int64_t fdset_id
,
2448 bool has_opaque
, const char *opaque
,
2451 MonFdset
*mon_fdset
= NULL
;
2452 MonFdsetFd
*mon_fdset_fd
;
2455 qemu_mutex_lock(&mon_fdsets_lock
);
2457 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2458 /* Break if match found or match impossible due to ordering by ID */
2459 if (fdset_id
<= mon_fdset
->id
) {
2460 if (fdset_id
< mon_fdset
->id
) {
2468 if (mon_fdset
== NULL
) {
2469 int64_t fdset_id_prev
= -1;
2470 MonFdset
*mon_fdset_cur
= QLIST_FIRST(&mon_fdsets
);
2474 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "fdset-id",
2475 "a non-negative value");
2476 qemu_mutex_unlock(&mon_fdsets_lock
);
2479 /* Use specified fdset ID */
2480 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2481 mon_fdset_cur
= mon_fdset
;
2482 if (fdset_id
< mon_fdset_cur
->id
) {
2487 /* Use first available fdset ID */
2488 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2489 mon_fdset_cur
= mon_fdset
;
2490 if (fdset_id_prev
== mon_fdset_cur
->id
- 1) {
2491 fdset_id_prev
= mon_fdset_cur
->id
;
2498 mon_fdset
= g_malloc0(sizeof(*mon_fdset
));
2500 mon_fdset
->id
= fdset_id
;
2502 mon_fdset
->id
= fdset_id_prev
+ 1;
2505 /* The fdset list is ordered by fdset ID */
2506 if (!mon_fdset_cur
) {
2507 QLIST_INSERT_HEAD(&mon_fdsets
, mon_fdset
, next
);
2508 } else if (mon_fdset
->id
< mon_fdset_cur
->id
) {
2509 QLIST_INSERT_BEFORE(mon_fdset_cur
, mon_fdset
, next
);
2511 QLIST_INSERT_AFTER(mon_fdset_cur
, mon_fdset
, next
);
2515 mon_fdset_fd
= g_malloc0(sizeof(*mon_fdset_fd
));
2516 mon_fdset_fd
->fd
= fd
;
2517 mon_fdset_fd
->removed
= false;
2519 mon_fdset_fd
->opaque
= g_strdup(opaque
);
2521 QLIST_INSERT_HEAD(&mon_fdset
->fds
, mon_fdset_fd
, next
);
2523 fdinfo
= g_malloc0(sizeof(*fdinfo
));
2524 fdinfo
->fdset_id
= mon_fdset
->id
;
2525 fdinfo
->fd
= mon_fdset_fd
->fd
;
2527 qemu_mutex_unlock(&mon_fdsets_lock
);
2531 int monitor_fdset_get_fd(int64_t fdset_id
, int flags
)
2536 MonFdset
*mon_fdset
;
2537 MonFdsetFd
*mon_fdset_fd
;
2541 qemu_mutex_lock(&mon_fdsets_lock
);
2542 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2543 if (mon_fdset
->id
!= fdset_id
) {
2546 QLIST_FOREACH(mon_fdset_fd
, &mon_fdset
->fds
, next
) {
2547 mon_fd_flags
= fcntl(mon_fdset_fd
->fd
, F_GETFL
);
2548 if (mon_fd_flags
== -1) {
2553 if ((flags
& O_ACCMODE
) == (mon_fd_flags
& O_ACCMODE
)) {
2554 ret
= mon_fdset_fd
->fd
;
2564 qemu_mutex_unlock(&mon_fdsets_lock
);
2569 int monitor_fdset_dup_fd_add(int64_t fdset_id
, int dup_fd
)
2571 MonFdset
*mon_fdset
;
2572 MonFdsetFd
*mon_fdset_fd_dup
;
2574 qemu_mutex_lock(&mon_fdsets_lock
);
2575 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2576 if (mon_fdset
->id
!= fdset_id
) {
2579 QLIST_FOREACH(mon_fdset_fd_dup
, &mon_fdset
->dup_fds
, next
) {
2580 if (mon_fdset_fd_dup
->fd
== dup_fd
) {
2584 mon_fdset_fd_dup
= g_malloc0(sizeof(*mon_fdset_fd_dup
));
2585 mon_fdset_fd_dup
->fd
= dup_fd
;
2586 QLIST_INSERT_HEAD(&mon_fdset
->dup_fds
, mon_fdset_fd_dup
, next
);
2587 qemu_mutex_unlock(&mon_fdsets_lock
);
2592 qemu_mutex_unlock(&mon_fdsets_lock
);
2596 static int monitor_fdset_dup_fd_find_remove(int dup_fd
, bool remove
)
2598 MonFdset
*mon_fdset
;
2599 MonFdsetFd
*mon_fdset_fd_dup
;
2601 qemu_mutex_lock(&mon_fdsets_lock
);
2602 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2603 QLIST_FOREACH(mon_fdset_fd_dup
, &mon_fdset
->dup_fds
, next
) {
2604 if (mon_fdset_fd_dup
->fd
== dup_fd
) {
2606 QLIST_REMOVE(mon_fdset_fd_dup
, next
);
2607 if (QLIST_EMPTY(&mon_fdset
->dup_fds
)) {
2608 monitor_fdset_cleanup(mon_fdset
);
2612 qemu_mutex_unlock(&mon_fdsets_lock
);
2613 return mon_fdset
->id
;
2620 qemu_mutex_unlock(&mon_fdsets_lock
);
2624 int monitor_fdset_dup_fd_find(int dup_fd
)
2626 return monitor_fdset_dup_fd_find_remove(dup_fd
, false);
2629 void monitor_fdset_dup_fd_remove(int dup_fd
)
2631 monitor_fdset_dup_fd_find_remove(dup_fd
, true);
2634 int monitor_fd_param(Monitor
*mon
, const char *fdname
, Error
**errp
)
2637 Error
*local_err
= NULL
;
2639 if (!qemu_isdigit(fdname
[0]) && mon
) {
2640 fd
= monitor_get_fd(mon
, fdname
, &local_err
);
2642 fd
= qemu_parse_fd(fdname
);
2644 error_setg(&local_err
, "Invalid file descriptor number '%s'",
2649 error_propagate(errp
, local_err
);
2658 /* Please update hmp-commands.hx when adding or changing commands */
2659 static mon_cmd_t info_cmds
[] = {
2660 #include "hmp-commands-info.h"
2664 /* mon_cmds and info_cmds would be sorted at runtime */
2665 static mon_cmd_t mon_cmds
[] = {
2666 #include "hmp-commands.h"
2670 /*******************************************************************/
2672 static const char *pch
;
2673 static sigjmp_buf expr_env
;
2676 static void GCC_FMT_ATTR(2, 3) QEMU_NORETURN
2677 expr_error(Monitor
*mon
, const char *fmt
, ...)
2681 monitor_vprintf(mon
, fmt
, ap
);
2682 monitor_printf(mon
, "\n");
2684 siglongjmp(expr_env
, 1);
2687 /* return 0 if OK, -1 if not found */
2688 static int get_monitor_def(target_long
*pval
, const char *name
)
2690 const MonitorDef
*md
= target_monitor_defs();
2691 CPUState
*cs
= mon_get_cpu();
2696 if (cs
== NULL
|| md
== NULL
) {
2700 for(; md
->name
!= NULL
; md
++) {
2701 if (compare_cmd(name
, md
->name
)) {
2702 if (md
->get_value
) {
2703 *pval
= md
->get_value(md
, md
->offset
);
2705 CPUArchState
*env
= mon_get_cpu_env();
2706 ptr
= (uint8_t *)env
+ md
->offset
;
2709 *pval
= *(int32_t *)ptr
;
2712 *pval
= *(target_long
*)ptr
;
2723 ret
= target_get_monitor_def(cs
, name
, &tmp
);
2725 *pval
= (target_long
) tmp
;
2731 static void next(void)
2735 while (qemu_isspace(*pch
))
2740 static int64_t expr_sum(Monitor
*mon
);
2742 static int64_t expr_unary(Monitor
*mon
)
2751 n
= expr_unary(mon
);
2755 n
= -expr_unary(mon
);
2759 n
= ~expr_unary(mon
);
2765 expr_error(mon
, "')' expected");
2772 expr_error(mon
, "character constant expected");
2776 expr_error(mon
, "missing terminating \' character");
2786 while ((*pch
>= 'a' && *pch
<= 'z') ||
2787 (*pch
>= 'A' && *pch
<= 'Z') ||
2788 (*pch
>= '0' && *pch
<= '9') ||
2789 *pch
== '_' || *pch
== '.') {
2790 if ((q
- buf
) < sizeof(buf
) - 1)
2794 while (qemu_isspace(*pch
))
2797 ret
= get_monitor_def(®
, buf
);
2799 expr_error(mon
, "unknown register");
2804 expr_error(mon
, "unexpected end of expression");
2809 n
= strtoull(pch
, &p
, 0);
2810 if (errno
== ERANGE
) {
2811 expr_error(mon
, "number too large");
2814 expr_error(mon
, "invalid char '%c' in expression", *p
);
2817 while (qemu_isspace(*pch
))
2825 static int64_t expr_prod(Monitor
*mon
)
2830 val
= expr_unary(mon
);
2833 if (op
!= '*' && op
!= '/' && op
!= '%')
2836 val2
= expr_unary(mon
);
2845 expr_error(mon
, "division by zero");
2856 static int64_t expr_logic(Monitor
*mon
)
2861 val
= expr_prod(mon
);
2864 if (op
!= '&' && op
!= '|' && op
!= '^')
2867 val2
= expr_prod(mon
);
2884 static int64_t expr_sum(Monitor
*mon
)
2889 val
= expr_logic(mon
);
2892 if (op
!= '+' && op
!= '-')
2895 val2
= expr_logic(mon
);
2904 static int get_expr(Monitor
*mon
, int64_t *pval
, const char **pp
)
2907 if (sigsetjmp(expr_env
, 0)) {
2911 while (qemu_isspace(*pch
))
2913 *pval
= expr_sum(mon
);
2918 static int get_double(Monitor
*mon
, double *pval
, const char **pp
)
2920 const char *p
= *pp
;
2924 d
= strtod(p
, &tailp
);
2926 monitor_printf(mon
, "Number expected\n");
2929 if (d
!= d
|| d
- d
!= 0) {
2930 /* NaN or infinity */
2931 monitor_printf(mon
, "Bad number\n");
2940 * Store the command-name in cmdname, and return a pointer to
2941 * the remaining of the command string.
2943 static const char *get_command_name(const char *cmdline
,
2944 char *cmdname
, size_t nlen
)
2947 const char *p
, *pstart
;
2950 while (qemu_isspace(*p
))
2955 while (*p
!= '\0' && *p
!= '/' && !qemu_isspace(*p
))
2960 memcpy(cmdname
, pstart
, len
);
2961 cmdname
[len
] = '\0';
2966 * Read key of 'type' into 'key' and return the current
2969 static char *key_get_info(const char *type
, char **key
)
2977 p
= strchr(type
, ':');
2984 str
= g_malloc(len
+ 1);
2985 memcpy(str
, type
, len
);
2992 static int default_fmt_format
= 'x';
2993 static int default_fmt_size
= 4;
2995 static int is_valid_option(const char *c
, const char *typestr
)
3003 typestr
= strstr(typestr
, option
);
3004 return (typestr
!= NULL
);
3007 static const mon_cmd_t
*search_dispatch_table(const mon_cmd_t
*disp_table
,
3008 const char *cmdname
)
3010 const mon_cmd_t
*cmd
;
3012 for (cmd
= disp_table
; cmd
->name
!= NULL
; cmd
++) {
3013 if (compare_cmd(cmdname
, cmd
->name
)) {
3022 * Parse command name from @cmdp according to command table @table.
3023 * If blank, return NULL.
3024 * Else, if no valid command can be found, report to @mon, and return
3026 * Else, change @cmdp to point right behind the name, and return its
3027 * command table entry.
3028 * Do not assume the return value points into @table! It doesn't when
3029 * the command is found in a sub-command table.
3031 static const mon_cmd_t
*monitor_parse_command(Monitor
*mon
,
3032 const char *cmdp_start
,
3037 const mon_cmd_t
*cmd
;
3040 /* extract the command name */
3041 p
= get_command_name(*cmdp
, cmdname
, sizeof(cmdname
));
3045 cmd
= search_dispatch_table(table
, cmdname
);
3047 monitor_printf(mon
, "unknown command: '%.*s'\n",
3048 (int)(p
- cmdp_start
), cmdp_start
);
3051 if (runstate_check(RUN_STATE_PRECONFIG
) && !cmd_can_preconfig(cmd
)) {
3052 monitor_printf(mon
, "Command '%.*s' not available with -preconfig "
3053 "until after exit_preconfig.\n",
3054 (int)(p
- cmdp_start
), cmdp_start
);
3058 /* filter out following useless space */
3059 while (qemu_isspace(*p
)) {
3064 /* search sub command */
3065 if (cmd
->sub_table
!= NULL
&& *p
!= '\0') {
3066 return monitor_parse_command(mon
, cmdp_start
, cmdp
, cmd
->sub_table
);
3073 * Parse arguments for @cmd.
3074 * If it can't be parsed, report to @mon, and return NULL.
3075 * Else, insert command arguments into a QDict, and return it.
3076 * Note: On success, caller has to free the QDict structure.
3079 static QDict
*monitor_parse_arguments(Monitor
*mon
,
3081 const mon_cmd_t
*cmd
)
3083 const char *typestr
;
3086 const char *p
= *endp
;
3088 QDict
*qdict
= qdict_new();
3090 /* parse the parameters */
3091 typestr
= cmd
->args_type
;
3093 typestr
= key_get_info(typestr
, &key
);
3105 while (qemu_isspace(*p
))
3107 if (*typestr
== '?') {
3110 /* no optional string: NULL argument */
3114 ret
= get_str(buf
, sizeof(buf
), &p
);
3118 monitor_printf(mon
, "%s: filename expected\n",
3122 monitor_printf(mon
, "%s: block device name expected\n",
3126 monitor_printf(mon
, "%s: string expected\n", cmd
->name
);
3131 qdict_put_str(qdict
, key
, buf
);
3136 QemuOptsList
*opts_list
;
3139 opts_list
= qemu_find_opts(key
);
3140 if (!opts_list
|| opts_list
->desc
->name
) {
3143 while (qemu_isspace(*p
)) {
3148 if (get_str(buf
, sizeof(buf
), &p
) < 0) {
3151 opts
= qemu_opts_parse_noisily(opts_list
, buf
, true);
3155 qemu_opts_to_qdict(opts
, qdict
);
3156 qemu_opts_del(opts
);
3161 int count
, format
, size
;
3163 while (qemu_isspace(*p
))
3169 if (qemu_isdigit(*p
)) {
3171 while (qemu_isdigit(*p
)) {
3172 count
= count
* 10 + (*p
- '0');
3210 if (*p
!= '\0' && !qemu_isspace(*p
)) {
3211 monitor_printf(mon
, "invalid char in format: '%c'\n",
3216 format
= default_fmt_format
;
3217 if (format
!= 'i') {
3218 /* for 'i', not specifying a size gives -1 as size */
3220 size
= default_fmt_size
;
3221 default_fmt_size
= size
;
3223 default_fmt_format
= format
;
3226 format
= default_fmt_format
;
3227 if (format
!= 'i') {
3228 size
= default_fmt_size
;
3233 qdict_put_int(qdict
, "count", count
);
3234 qdict_put_int(qdict
, "format", format
);
3235 qdict_put_int(qdict
, "size", size
);
3244 while (qemu_isspace(*p
))
3246 if (*typestr
== '?' || *typestr
== '.') {
3247 if (*typestr
== '?') {
3255 while (qemu_isspace(*p
))
3264 if (get_expr(mon
, &val
, &p
))
3266 /* Check if 'i' is greater than 32-bit */
3267 if ((c
== 'i') && ((val
>> 32) & 0xffffffff)) {
3268 monitor_printf(mon
, "\'%s\' has failed: ", cmd
->name
);
3269 monitor_printf(mon
, "integer is for 32-bit values\n");
3271 } else if (c
== 'M') {
3273 monitor_printf(mon
, "enter a positive value\n");
3278 qdict_put_int(qdict
, key
, val
);
3287 while (qemu_isspace(*p
)) {
3290 if (*typestr
== '?') {
3296 ret
= qemu_strtosz_MiB(p
, &end
, &val
);
3297 if (ret
< 0 || val
> INT64_MAX
) {
3298 monitor_printf(mon
, "invalid size\n");
3301 qdict_put_int(qdict
, key
, val
);
3309 while (qemu_isspace(*p
))
3311 if (*typestr
== '?') {
3317 if (get_double(mon
, &val
, &p
) < 0) {
3320 if (p
[0] && p
[1] == 's') {
3323 val
/= 1e3
; p
+= 2; break;
3325 val
/= 1e6
; p
+= 2; break;
3327 val
/= 1e9
; p
+= 2; break;
3330 if (*p
&& !qemu_isspace(*p
)) {
3331 monitor_printf(mon
, "Unknown unit suffix\n");
3334 qdict_put(qdict
, key
, qnum_from_double(val
));
3342 while (qemu_isspace(*p
)) {
3346 while (qemu_isgraph(*p
)) {
3349 if (p
- beg
== 2 && !memcmp(beg
, "on", p
- beg
)) {
3351 } else if (p
- beg
== 3 && !memcmp(beg
, "off", p
- beg
)) {
3354 monitor_printf(mon
, "Expected 'on' or 'off'\n");
3357 qdict_put_bool(qdict
, key
, val
);
3362 const char *tmp
= p
;
3369 while (qemu_isspace(*p
))
3374 if(!is_valid_option(p
, typestr
)) {
3376 monitor_printf(mon
, "%s: unsupported option -%c\n",
3388 qdict_put_bool(qdict
, key
, true);
3395 /* package all remaining string */
3398 while (qemu_isspace(*p
)) {
3401 if (*typestr
== '?') {
3404 /* no remaining string: NULL argument */
3410 monitor_printf(mon
, "%s: string expected\n",
3414 qdict_put_str(qdict
, key
, p
);
3420 monitor_printf(mon
, "%s: unknown type '%c'\n", cmd
->name
, c
);
3426 /* check that all arguments were parsed */
3427 while (qemu_isspace(*p
))
3430 monitor_printf(mon
, "%s: extraneous characters at the end of line\n",
3438 qobject_unref(qdict
);
3443 static void handle_hmp_command(Monitor
*mon
, const char *cmdline
)
3446 const mon_cmd_t
*cmd
;
3447 const char *cmd_start
= cmdline
;
3449 trace_handle_hmp_command(mon
, cmdline
);
3451 cmd
= monitor_parse_command(mon
, cmdline
, &cmdline
, mon
->cmd_table
);
3456 qdict
= monitor_parse_arguments(mon
, &cmdline
, cmd
);
3458 while (cmdline
> cmd_start
&& qemu_isspace(cmdline
[-1])) {
3461 monitor_printf(mon
, "Try \"help %.*s\" for more information\n",
3462 (int)(cmdline
- cmd_start
), cmd_start
);
3466 cmd
->cmd(mon
, qdict
);
3467 qobject_unref(qdict
);
3470 static void cmd_completion(Monitor
*mon
, const char *name
, const char *list
)
3472 const char *p
, *pstart
;
3479 p
= qemu_strchrnul(p
, '|');
3481 if (len
> sizeof(cmd
) - 2)
3482 len
= sizeof(cmd
) - 2;
3483 memcpy(cmd
, pstart
, len
);
3485 if (name
[0] == '\0' || !strncmp(name
, cmd
, strlen(name
))) {
3486 readline_add_completion(mon
->rs
, cmd
);
3494 static void file_completion(Monitor
*mon
, const char *input
)
3499 char file
[1024], file_prefix
[1024];
3503 p
= strrchr(input
, '/');
3506 pstrcpy(file_prefix
, sizeof(file_prefix
), input
);
3507 pstrcpy(path
, sizeof(path
), ".");
3509 input_path_len
= p
- input
+ 1;
3510 memcpy(path
, input
, input_path_len
);
3511 if (input_path_len
> sizeof(path
) - 1)
3512 input_path_len
= sizeof(path
) - 1;
3513 path
[input_path_len
] = '\0';
3514 pstrcpy(file_prefix
, sizeof(file_prefix
), p
+ 1);
3517 ffs
= opendir(path
);
3526 if (strcmp(d
->d_name
, ".") == 0 || strcmp(d
->d_name
, "..") == 0) {
3530 if (strstart(d
->d_name
, file_prefix
, NULL
)) {
3531 memcpy(file
, input
, input_path_len
);
3532 if (input_path_len
< sizeof(file
))
3533 pstrcpy(file
+ input_path_len
, sizeof(file
) - input_path_len
,
3535 /* stat the file to find out if it's a directory.
3536 * In that case add a slash to speed up typing long paths
3538 if (stat(file
, &sb
) == 0 && S_ISDIR(sb
.st_mode
)) {
3539 pstrcat(file
, sizeof(file
), "/");
3541 readline_add_completion(mon
->rs
, file
);
3547 static const char *next_arg_type(const char *typestr
)
3549 const char *p
= strchr(typestr
, ':');
3550 return (p
!= NULL
? ++p
: typestr
);
3553 static void add_completion_option(ReadLineState
*rs
, const char *str
,
3556 if (!str
|| !option
) {
3559 if (!strncmp(option
, str
, strlen(str
))) {
3560 readline_add_completion(rs
, option
);
3564 void chardev_add_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3567 ChardevBackendInfoList
*list
, *start
;
3573 readline_set_completion_index(rs
, len
);
3575 start
= list
= qmp_query_chardev_backends(NULL
);
3577 const char *chr_name
= list
->value
->name
;
3579 if (!strncmp(chr_name
, str
, len
)) {
3580 readline_add_completion(rs
, chr_name
);
3584 qapi_free_ChardevBackendInfoList(start
);
3587 void netdev_add_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3596 readline_set_completion_index(rs
, len
);
3597 for (i
= 0; i
< NET_CLIENT_DRIVER__MAX
; i
++) {
3598 add_completion_option(rs
, str
, NetClientDriver_str(i
));
3602 void device_add_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3612 readline_set_completion_index(rs
, len
);
3613 list
= elt
= object_class_get_list(TYPE_DEVICE
, false);
3616 DeviceClass
*dc
= OBJECT_CLASS_CHECK(DeviceClass
, elt
->data
,
3618 name
= object_class_get_name(OBJECT_CLASS(dc
));
3620 if (dc
->user_creatable
3621 && !strncmp(name
, str
, len
)) {
3622 readline_add_completion(rs
, name
);
3629 void object_add_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3639 readline_set_completion_index(rs
, len
);
3640 list
= elt
= object_class_get_list(TYPE_USER_CREATABLE
, false);
3644 name
= object_class_get_name(OBJECT_CLASS(elt
->data
));
3645 if (!strncmp(name
, str
, len
) && strcmp(name
, TYPE_USER_CREATABLE
)) {
3646 readline_add_completion(rs
, name
);
3653 static void peripheral_device_del_completion(ReadLineState
*rs
,
3654 const char *str
, size_t len
)
3656 Object
*peripheral
= container_get(qdev_get_machine(), "/peripheral");
3657 GSList
*list
, *item
;
3659 list
= qdev_build_hotpluggable_device_list(peripheral
);
3664 for (item
= list
; item
; item
= g_slist_next(item
)) {
3665 DeviceState
*dev
= item
->data
;
3667 if (dev
->id
&& !strncmp(str
, dev
->id
, len
)) {
3668 readline_add_completion(rs
, dev
->id
);
3675 void chardev_remove_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3678 ChardevInfoList
*list
, *start
;
3684 readline_set_completion_index(rs
, len
);
3686 start
= list
= qmp_query_chardev(NULL
);
3688 ChardevInfo
*chr
= list
->value
;
3690 if (!strncmp(chr
->label
, str
, len
)) {
3691 readline_add_completion(rs
, chr
->label
);
3695 qapi_free_ChardevInfoList(start
);
3698 static void ringbuf_completion(ReadLineState
*rs
, const char *str
)
3701 ChardevInfoList
*list
, *start
;
3704 readline_set_completion_index(rs
, len
);
3706 start
= list
= qmp_query_chardev(NULL
);
3708 ChardevInfo
*chr_info
= list
->value
;
3710 if (!strncmp(chr_info
->label
, str
, len
)) {
3711 Chardev
*chr
= qemu_chr_find(chr_info
->label
);
3712 if (chr
&& CHARDEV_IS_RINGBUF(chr
)) {
3713 readline_add_completion(rs
, chr_info
->label
);
3718 qapi_free_ChardevInfoList(start
);
3721 void ringbuf_write_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3726 ringbuf_completion(rs
, str
);
3729 void device_del_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3738 readline_set_completion_index(rs
, len
);
3739 peripheral_device_del_completion(rs
, str
, len
);
3742 void object_del_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3744 ObjectPropertyInfoList
*list
, *start
;
3751 readline_set_completion_index(rs
, len
);
3753 start
= list
= qmp_qom_list("/objects", NULL
);
3755 ObjectPropertyInfo
*info
= list
->value
;
3757 if (!strncmp(info
->type
, "child<", 5)
3758 && !strncmp(info
->name
, str
, len
)) {
3759 readline_add_completion(rs
, info
->name
);
3763 qapi_free_ObjectPropertyInfoList(start
);
3766 void sendkey_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3775 sep
= strrchr(str
, '-');
3780 readline_set_completion_index(rs
, len
);
3781 for (i
= 0; i
< Q_KEY_CODE__MAX
; i
++) {
3782 if (!strncmp(str
, QKeyCode_str(i
), len
)) {
3783 readline_add_completion(rs
, QKeyCode_str(i
));
3788 void set_link_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3793 readline_set_completion_index(rs
, len
);
3795 NetClientState
*ncs
[MAX_QUEUE_NUM
];
3797 count
= qemu_find_net_clients_except(NULL
, ncs
,
3798 NET_CLIENT_DRIVER_NONE
,
3800 for (i
= 0; i
< MIN(count
, MAX_QUEUE_NUM
); i
++) {
3801 const char *name
= ncs
[i
]->name
;
3802 if (!strncmp(str
, name
, len
)) {
3803 readline_add_completion(rs
, name
);
3806 } else if (nb_args
== 3) {
3807 add_completion_option(rs
, str
, "on");
3808 add_completion_option(rs
, str
, "off");
3812 void netdev_del_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3815 NetClientState
*ncs
[MAX_QUEUE_NUM
];
3822 readline_set_completion_index(rs
, len
);
3823 count
= qemu_find_net_clients_except(NULL
, ncs
, NET_CLIENT_DRIVER_NIC
,
3825 for (i
= 0; i
< MIN(count
, MAX_QUEUE_NUM
); i
++) {
3827 const char *name
= ncs
[i
]->name
;
3828 if (strncmp(str
, name
, len
)) {
3831 opts
= qemu_opts_find(qemu_find_opts_err("netdev", NULL
), name
);
3833 readline_add_completion(rs
, name
);
3838 void info_trace_events_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3843 readline_set_completion_index(rs
, len
);
3845 TraceEventIter iter
;
3847 char *pattern
= g_strdup_printf("%s*", str
);
3848 trace_event_iter_init(&iter
, pattern
);
3849 while ((ev
= trace_event_iter_next(&iter
)) != NULL
) {
3850 readline_add_completion(rs
, trace_event_get_name(ev
));
3856 void trace_event_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3861 readline_set_completion_index(rs
, len
);
3863 TraceEventIter iter
;
3865 char *pattern
= g_strdup_printf("%s*", str
);
3866 trace_event_iter_init(&iter
, pattern
);
3867 while ((ev
= trace_event_iter_next(&iter
)) != NULL
) {
3868 readline_add_completion(rs
, trace_event_get_name(ev
));
3871 } else if (nb_args
== 3) {
3872 add_completion_option(rs
, str
, "on");
3873 add_completion_option(rs
, str
, "off");
3877 void watchdog_action_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3884 readline_set_completion_index(rs
, strlen(str
));
3885 for (i
= 0; i
< WATCHDOG_ACTION__MAX
; i
++) {
3886 add_completion_option(rs
, str
, WatchdogAction_str(i
));
3890 void migrate_set_capability_completion(ReadLineState
*rs
, int nb_args
,
3896 readline_set_completion_index(rs
, len
);
3899 for (i
= 0; i
< MIGRATION_CAPABILITY__MAX
; i
++) {
3900 const char *name
= MigrationCapability_str(i
);
3901 if (!strncmp(str
, name
, len
)) {
3902 readline_add_completion(rs
, name
);
3905 } else if (nb_args
== 3) {
3906 add_completion_option(rs
, str
, "on");
3907 add_completion_option(rs
, str
, "off");
3911 void migrate_set_parameter_completion(ReadLineState
*rs
, int nb_args
,
3917 readline_set_completion_index(rs
, len
);
3920 for (i
= 0; i
< MIGRATION_PARAMETER__MAX
; i
++) {
3921 const char *name
= MigrationParameter_str(i
);
3922 if (!strncmp(str
, name
, len
)) {
3923 readline_add_completion(rs
, name
);
3929 static void vm_completion(ReadLineState
*rs
, const char *str
)
3932 BlockDriverState
*bs
;
3933 BdrvNextIterator it
;
3936 readline_set_completion_index(rs
, len
);
3938 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
3939 SnapshotInfoList
*snapshots
, *snapshot
;
3940 AioContext
*ctx
= bdrv_get_aio_context(bs
);
3943 aio_context_acquire(ctx
);
3944 if (bdrv_can_snapshot(bs
)) {
3945 ok
= bdrv_query_snapshot_info_list(bs
, &snapshots
, NULL
) == 0;
3947 aio_context_release(ctx
);
3952 snapshot
= snapshots
;
3954 char *completion
= snapshot
->value
->name
;
3955 if (!strncmp(str
, completion
, len
)) {
3956 readline_add_completion(rs
, completion
);
3958 completion
= snapshot
->value
->id
;
3959 if (!strncmp(str
, completion
, len
)) {
3960 readline_add_completion(rs
, completion
);
3962 snapshot
= snapshot
->next
;
3964 qapi_free_SnapshotInfoList(snapshots
);
3969 void delvm_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3972 vm_completion(rs
, str
);
3976 void loadvm_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3979 vm_completion(rs
, str
);
3983 static void monitor_find_completion_by_table(Monitor
*mon
,
3984 const mon_cmd_t
*cmd_table
,
3988 const char *cmdname
;
3990 const char *ptype
, *old_ptype
, *str
, *name
;
3991 const mon_cmd_t
*cmd
;
3992 BlockBackend
*blk
= NULL
;
3995 /* command completion */
4000 readline_set_completion_index(mon
->rs
, strlen(cmdname
));
4001 for (cmd
= cmd_table
; cmd
->name
!= NULL
; cmd
++) {
4002 if (!runstate_check(RUN_STATE_PRECONFIG
) ||
4003 cmd_can_preconfig(cmd
)) {
4004 cmd_completion(mon
, cmdname
, cmd
->name
);
4008 /* find the command */
4009 for (cmd
= cmd_table
; cmd
->name
!= NULL
; cmd
++) {
4010 if (compare_cmd(args
[0], cmd
->name
) &&
4011 (!runstate_check(RUN_STATE_PRECONFIG
) ||
4012 cmd_can_preconfig(cmd
))) {
4020 if (cmd
->sub_table
) {
4021 /* do the job again */
4022 monitor_find_completion_by_table(mon
, cmd
->sub_table
,
4023 &args
[1], nb_args
- 1);
4026 if (cmd
->command_completion
) {
4027 cmd
->command_completion(mon
->rs
, nb_args
, args
[nb_args
- 1]);
4031 ptype
= next_arg_type(cmd
->args_type
);
4032 for(i
= 0; i
< nb_args
- 2; i
++) {
4033 if (*ptype
!= '\0') {
4034 ptype
= next_arg_type(ptype
);
4035 while (*ptype
== '?')
4036 ptype
= next_arg_type(ptype
);
4039 str
= args
[nb_args
- 1];
4041 while (*ptype
== '-' && old_ptype
!= ptype
) {
4043 ptype
= next_arg_type(ptype
);
4047 /* file completion */
4048 readline_set_completion_index(mon
->rs
, strlen(str
));
4049 file_completion(mon
, str
);
4052 /* block device name completion */
4053 readline_set_completion_index(mon
->rs
, strlen(str
));
4054 while ((blk
= blk_next(blk
)) != NULL
) {
4055 name
= blk_name(blk
);
4056 if (str
[0] == '\0' ||
4057 !strncmp(name
, str
, strlen(str
))) {
4058 readline_add_completion(mon
->rs
, name
);
4064 if (!strcmp(cmd
->name
, "help|?")) {
4065 monitor_find_completion_by_table(mon
, cmd_table
,
4066 &args
[1], nb_args
- 1);
4075 static void monitor_find_completion(void *opaque
,
4076 const char *cmdline
)
4078 Monitor
*mon
= opaque
;
4079 char *args
[MAX_ARGS
];
4082 /* 1. parse the cmdline */
4083 if (parse_cmdline(cmdline
, &nb_args
, args
) < 0) {
4087 /* if the line ends with a space, it means we want to complete the
4089 len
= strlen(cmdline
);
4090 if (len
> 0 && qemu_isspace(cmdline
[len
- 1])) {
4091 if (nb_args
>= MAX_ARGS
) {
4094 args
[nb_args
++] = g_strdup("");
4097 /* 2. auto complete according to args */
4098 monitor_find_completion_by_table(mon
, mon
->cmd_table
, args
, nb_args
);
4101 free_cmdline_args(args
, nb_args
);
4104 static int monitor_can_read(void *opaque
)
4106 Monitor
*mon
= opaque
;
4108 return !atomic_mb_read(&mon
->suspend_cnt
);
4112 * Emit QMP response @rsp with ID @id to @mon.
4113 * Null @rsp can only happen for commands with QCO_NO_SUCCESS_RESP.
4114 * Nothing is emitted then.
4116 static void monitor_qmp_respond(Monitor
*mon
, QDict
*rsp
)
4119 qmp_send_response(mon
, rsp
);
4123 static void monitor_qmp_dispatch(Monitor
*mon
, QObject
*req
)
4132 rsp
= qmp_dispatch(mon
->qmp
.commands
, req
, qmp_oob_enabled(mon
));
4136 if (mon
->qmp
.commands
== &qmp_cap_negotiation_commands
) {
4137 error
= qdict_get_qdict(rsp
, "error");
4139 && !g_strcmp0(qdict_get_try_str(error
, "class"),
4140 QapiErrorClass_str(ERROR_CLASS_COMMAND_NOT_FOUND
))) {
4141 /* Provide a more useful error message */
4142 qdict_del(error
, "desc");
4143 qdict_put_str(error
, "desc", "Expecting capabilities negotiation"
4144 " with 'qmp_capabilities'");
4148 monitor_qmp_respond(mon
, rsp
);
4153 * Pop a QMP request from a monitor request queue.
4154 * Return the request, or NULL all request queues are empty.
4155 * We are using round-robin fashion to pop the request, to avoid
4156 * processing commands only on a very busy monitor. To achieve that,
4157 * when we process one request on a specific monitor, we put that
4158 * monitor to the end of mon_list queue.
4160 * Note: if the function returned with non-NULL, then the caller will
4161 * be with mon->qmp.qmp_queue_lock held, and the caller is responsible
4164 static QMPRequest
*monitor_qmp_requests_pop_any_with_lock(void)
4166 QMPRequest
*req_obj
= NULL
;
4169 qemu_mutex_lock(&monitor_lock
);
4171 QTAILQ_FOREACH(mon
, &mon_list
, entry
) {
4172 qemu_mutex_lock(&mon
->qmp
.qmp_queue_lock
);
4173 req_obj
= g_queue_pop_head(mon
->qmp
.qmp_requests
);
4175 /* With the lock of corresponding queue held */
4178 qemu_mutex_unlock(&mon
->qmp
.qmp_queue_lock
);
4183 * We found one request on the monitor. Degrade this monitor's
4184 * priority to lowest by re-inserting it to end of queue.
4186 QTAILQ_REMOVE(&mon_list
, mon
, entry
);
4187 QTAILQ_INSERT_TAIL(&mon_list
, mon
, entry
);
4190 qemu_mutex_unlock(&monitor_lock
);
4195 static void monitor_qmp_bh_dispatcher(void *data
)
4197 QMPRequest
*req_obj
= monitor_qmp_requests_pop_any_with_lock();
4207 /* qmp_oob_enabled() might change after "qmp_capabilities" */
4208 need_resume
= !qmp_oob_enabled(mon
) ||
4209 mon
->qmp
.qmp_requests
->length
== QMP_REQ_QUEUE_LEN_MAX
- 1;
4210 qemu_mutex_unlock(&mon
->qmp
.qmp_queue_lock
);
4212 QDict
*qdict
= qobject_to(QDict
, req_obj
->req
);
4213 QObject
*id
= qdict
? qdict_get(qdict
, "id") : NULL
;
4214 trace_monitor_qmp_cmd_in_band(qobject_get_try_str(id
) ?: "");
4215 monitor_qmp_dispatch(mon
, req_obj
->req
);
4217 assert(req_obj
->err
);
4218 rsp
= qmp_error_response(req_obj
->err
);
4219 req_obj
->err
= NULL
;
4220 monitor_qmp_respond(mon
, rsp
);
4225 /* Pairs with the monitor_suspend() in handle_qmp_command() */
4226 monitor_resume(mon
);
4228 qmp_request_free(req_obj
);
4230 /* Reschedule instead of looping so the main loop stays responsive */
4231 qemu_bh_schedule(qmp_dispatcher_bh
);
4234 static void handle_qmp_command(void *opaque
, QObject
*req
, Error
*err
)
4236 Monitor
*mon
= opaque
;
4239 QMPRequest
*req_obj
;
4241 assert(!req
!= !err
);
4243 qdict
= qobject_to(QDict
, req
);
4245 id
= qdict_get(qdict
, "id");
4246 } /* else will fail qmp_dispatch() */
4248 if (req
&& trace_event_get_state_backends(TRACE_HANDLE_QMP_COMMAND
)) {
4249 QString
*req_json
= qobject_to_json(req
);
4250 trace_handle_qmp_command(mon
, qstring_get_str(req_json
));
4251 qobject_unref(req_json
);
4254 if (qdict
&& qmp_is_oob(qdict
)) {
4255 /* OOB commands are executed immediately */
4256 trace_monitor_qmp_cmd_out_of_band(qobject_get_try_str(id
) ?: "");
4257 monitor_qmp_dispatch(mon
, req
);
4262 req_obj
= g_new0(QMPRequest
, 1);
4267 /* Protect qmp_requests and fetching its length. */
4268 qemu_mutex_lock(&mon
->qmp
.qmp_queue_lock
);
4271 * Suspend the monitor when we can't queue more requests after
4272 * this one. Dequeuing in monitor_qmp_bh_dispatcher() will resume
4273 * it. Note that when OOB is disabled, we queue at most one
4274 * command, for backward compatibility.
4276 if (!qmp_oob_enabled(mon
) ||
4277 mon
->qmp
.qmp_requests
->length
== QMP_REQ_QUEUE_LEN_MAX
- 1) {
4278 monitor_suspend(mon
);
4282 * Put the request to the end of queue so that requests will be
4283 * handled in time order. Ownership for req_obj, req,
4284 * etc. will be delivered to the handler side.
4286 assert(mon
->qmp
.qmp_requests
->length
< QMP_REQ_QUEUE_LEN_MAX
);
4287 g_queue_push_tail(mon
->qmp
.qmp_requests
, req_obj
);
4288 qemu_mutex_unlock(&mon
->qmp
.qmp_queue_lock
);
4290 /* Kick the dispatcher routine */
4291 qemu_bh_schedule(qmp_dispatcher_bh
);
4294 static void monitor_qmp_read(void *opaque
, const uint8_t *buf
, int size
)
4296 Monitor
*mon
= opaque
;
4298 json_message_parser_feed(&mon
->qmp
.parser
, (const char *) buf
, size
);
4301 static void monitor_read(void *opaque
, const uint8_t *buf
, int size
)
4303 Monitor
*old_mon
= cur_mon
;
4309 for (i
= 0; i
< size
; i
++)
4310 readline_handle_byte(cur_mon
->rs
, buf
[i
]);
4312 if (size
== 0 || buf
[size
- 1] != 0)
4313 monitor_printf(cur_mon
, "corrupted command\n");
4315 handle_hmp_command(cur_mon
, (char *)buf
);
4321 static void monitor_command_cb(void *opaque
, const char *cmdline
,
4322 void *readline_opaque
)
4324 Monitor
*mon
= opaque
;
4326 monitor_suspend(mon
);
4327 handle_hmp_command(mon
, cmdline
);
4328 monitor_resume(mon
);
4331 int monitor_suspend(Monitor
*mon
)
4333 if (monitor_is_hmp_non_interactive(mon
)) {
4337 atomic_inc(&mon
->suspend_cnt
);
4339 if (mon
->use_io_thread
) {
4341 * Kick I/O thread to make sure this takes effect. It'll be
4342 * evaluated again in prepare() of the watch object.
4344 aio_notify(iothread_get_aio_context(mon_iothread
));
4347 trace_monitor_suspend(mon
, 1);
4351 static void monitor_accept_input(void *opaque
)
4353 Monitor
*mon
= opaque
;
4355 qemu_chr_fe_accept_input(&mon
->chr
);
4358 void monitor_resume(Monitor
*mon
)
4360 if (monitor_is_hmp_non_interactive(mon
)) {
4364 if (atomic_dec_fetch(&mon
->suspend_cnt
) == 0) {
4367 if (mon
->use_io_thread
) {
4368 ctx
= iothread_get_aio_context(mon_iothread
);
4370 ctx
= qemu_get_aio_context();
4373 if (!monitor_is_qmp(mon
)) {
4375 readline_show_prompt(mon
->rs
);
4378 aio_bh_schedule_oneshot(ctx
, monitor_accept_input
, mon
);
4381 trace_monitor_suspend(mon
, -1);
4384 static QDict
*qmp_greeting(Monitor
*mon
)
4386 QList
*cap_list
= qlist_new();
4387 QObject
*ver
= NULL
;
4390 qmp_marshal_query_version(NULL
, &ver
, NULL
);
4392 for (cap
= 0; cap
< QMP_CAPABILITY__MAX
; cap
++) {
4393 if (mon
->qmp
.capab_offered
[cap
]) {
4394 qlist_append_str(cap_list
, QMPCapability_str(cap
));
4398 return qdict_from_jsonf_nofail(
4399 "{'QMP': {'version': %p, 'capabilities': %p}}",
4403 static void monitor_qmp_event(void *opaque
, int event
)
4406 Monitor
*mon
= opaque
;
4409 case CHR_EVENT_OPENED
:
4410 mon
->qmp
.commands
= &qmp_cap_negotiation_commands
;
4411 monitor_qmp_caps_reset(mon
);
4412 data
= qmp_greeting(mon
);
4413 qmp_send_response(mon
, data
);
4414 qobject_unref(data
);
4417 case CHR_EVENT_CLOSED
:
4419 * Note: this is only useful when the output of the chardev
4420 * backend is still open. For example, when the backend is
4421 * stdio, it's possible that stdout is still open when stdin
4424 monitor_qmp_cleanup_queues(mon
);
4425 json_message_parser_destroy(&mon
->qmp
.parser
);
4426 json_message_parser_init(&mon
->qmp
.parser
, handle_qmp_command
,
4429 monitor_fdsets_cleanup();
4434 static void monitor_event(void *opaque
, int event
)
4436 Monitor
*mon
= opaque
;
4439 case CHR_EVENT_MUX_IN
:
4440 qemu_mutex_lock(&mon
->mon_lock
);
4442 qemu_mutex_unlock(&mon
->mon_lock
);
4443 if (mon
->reset_seen
) {
4444 readline_restart(mon
->rs
);
4445 monitor_resume(mon
);
4448 atomic_mb_set(&mon
->suspend_cnt
, 0);
4452 case CHR_EVENT_MUX_OUT
:
4453 if (mon
->reset_seen
) {
4454 if (atomic_mb_read(&mon
->suspend_cnt
) == 0) {
4455 monitor_printf(mon
, "\n");
4458 monitor_suspend(mon
);
4460 atomic_inc(&mon
->suspend_cnt
);
4462 qemu_mutex_lock(&mon
->mon_lock
);
4464 qemu_mutex_unlock(&mon
->mon_lock
);
4467 case CHR_EVENT_OPENED
:
4468 monitor_printf(mon
, "QEMU %s monitor - type 'help' for more "
4469 "information\n", QEMU_VERSION
);
4470 if (!mon
->mux_out
) {
4471 readline_restart(mon
->rs
);
4472 readline_show_prompt(mon
->rs
);
4474 mon
->reset_seen
= 1;
4478 case CHR_EVENT_CLOSED
:
4480 monitor_fdsets_cleanup();
4486 compare_mon_cmd(const void *a
, const void *b
)
4488 return strcmp(((const mon_cmd_t
*)a
)->name
,
4489 ((const mon_cmd_t
*)b
)->name
);
4492 static void sortcmdlist(void)
4495 int elem_size
= sizeof(mon_cmd_t
);
4497 array_num
= sizeof(mon_cmds
)/elem_size
-1;
4498 qsort((void *)mon_cmds
, array_num
, elem_size
, compare_mon_cmd
);
4500 array_num
= sizeof(info_cmds
)/elem_size
-1;
4501 qsort((void *)info_cmds
, array_num
, elem_size
, compare_mon_cmd
);
4504 static void monitor_iothread_init(void)
4506 mon_iothread
= iothread_create("mon_iothread", &error_abort
);
4509 void monitor_init_globals(void)
4511 monitor_init_qmp_commands();
4512 monitor_qapi_event_init();
4514 qemu_mutex_init(&monitor_lock
);
4515 qemu_mutex_init(&mon_fdsets_lock
);
4518 * The dispatcher BH must run in the main loop thread, since we
4519 * have commands assuming that context. It would be nice to get
4520 * rid of those assumptions.
4522 qmp_dispatcher_bh
= aio_bh_new(iohandler_get_aio_context(),
4523 monitor_qmp_bh_dispatcher
,
4527 /* These functions just adapt the readline interface in a typesafe way. We
4528 * could cast function pointers but that discards compiler checks.
4530 static void GCC_FMT_ATTR(2, 3) monitor_readline_printf(void *opaque
,
4531 const char *fmt
, ...)
4535 monitor_vprintf(opaque
, fmt
, ap
);
4539 static void monitor_readline_flush(void *opaque
)
4541 monitor_flush(opaque
);
4545 * Print to current monitor if we have one, else to stderr.
4547 int error_vprintf(const char *fmt
, va_list ap
)
4549 if (cur_mon
&& !monitor_cur_is_qmp()) {
4550 return monitor_vprintf(cur_mon
, fmt
, ap
);
4552 return vfprintf(stderr
, fmt
, ap
);
4555 int error_vprintf_unless_qmp(const char *fmt
, va_list ap
)
4558 return vfprintf(stderr
, fmt
, ap
);
4560 if (!monitor_cur_is_qmp()) {
4561 return monitor_vprintf(cur_mon
, fmt
, ap
);
4566 static void monitor_list_append(Monitor
*mon
)
4568 qemu_mutex_lock(&monitor_lock
);
4570 * This prevents inserting new monitors during monitor_cleanup().
4571 * A cleaner solution would involve the main thread telling other
4572 * threads to terminate, waiting for their termination.
4574 if (!monitor_destroyed
) {
4575 QTAILQ_INSERT_HEAD(&mon_list
, mon
, entry
);
4578 qemu_mutex_unlock(&monitor_lock
);
4581 monitor_data_destroy(mon
);
4586 static void monitor_qmp_setup_handlers_bh(void *opaque
)
4588 Monitor
*mon
= opaque
;
4589 GMainContext
*context
;
4591 assert(mon
->use_io_thread
);
4592 context
= iothread_get_g_main_context(mon_iothread
);
4594 qemu_chr_fe_set_handlers(&mon
->chr
, monitor_can_read
, monitor_qmp_read
,
4595 monitor_qmp_event
, NULL
, mon
, context
, true);
4596 monitor_list_append(mon
);
4599 void monitor_init(Chardev
*chr
, int flags
)
4601 Monitor
*mon
= g_malloc(sizeof(*mon
));
4602 bool use_readline
= flags
& MONITOR_USE_READLINE
;
4604 /* Note: we run QMP monitor in I/O thread when @chr supports that */
4605 monitor_data_init(mon
, false,
4606 (flags
& MONITOR_USE_CONTROL
)
4607 && qemu_chr_has_feature(chr
,
4608 QEMU_CHAR_FEATURE_GCONTEXT
));
4610 qemu_chr_fe_init(&mon
->chr
, chr
, &error_abort
);
4613 mon
->rs
= readline_init(monitor_readline_printf
,
4614 monitor_readline_flush
,
4616 monitor_find_completion
);
4617 monitor_read_command(mon
, 0);
4620 if (monitor_is_qmp(mon
)) {
4621 qemu_chr_fe_set_echo(&mon
->chr
, true);
4622 json_message_parser_init(&mon
->qmp
.parser
, handle_qmp_command
,
4624 if (mon
->use_io_thread
) {
4626 * Make sure the old iowatch is gone. It's possible when
4627 * e.g. the chardev is in client mode, with wait=on.
4629 remove_fd_in_watch(chr
);
4631 * We can't call qemu_chr_fe_set_handlers() directly here
4632 * since chardev might be running in the monitor I/O
4633 * thread. Schedule a bottom half.
4635 aio_bh_schedule_oneshot(iothread_get_aio_context(mon_iothread
),
4636 monitor_qmp_setup_handlers_bh
, mon
);
4637 /* The bottom half will add @mon to @mon_list */
4640 qemu_chr_fe_set_handlers(&mon
->chr
, monitor_can_read
,
4641 monitor_qmp_read
, monitor_qmp_event
,
4642 NULL
, mon
, NULL
, true);
4645 qemu_chr_fe_set_handlers(&mon
->chr
, monitor_can_read
, monitor_read
,
4646 monitor_event
, NULL
, mon
, NULL
, true);
4649 monitor_list_append(mon
);
4652 void monitor_cleanup(void)
4655 * We need to explicitly stop the I/O thread (but not destroy it),
4656 * clean up the monitor resources, then destroy the I/O thread since
4657 * we need to unregister from chardev below in
4658 * monitor_data_destroy(), and chardev is not thread-safe yet
4661 iothread_stop(mon_iothread
);
4664 /* Flush output buffers and destroy monitors */
4665 qemu_mutex_lock(&monitor_lock
);
4666 monitor_destroyed
= true;
4667 while (!QTAILQ_EMPTY(&mon_list
)) {
4668 Monitor
*mon
= QTAILQ_FIRST(&mon_list
);
4669 QTAILQ_REMOVE(&mon_list
, mon
, entry
);
4670 /* Permit QAPI event emission from character frontend release */
4671 qemu_mutex_unlock(&monitor_lock
);
4673 monitor_data_destroy(mon
);
4674 qemu_mutex_lock(&monitor_lock
);
4677 qemu_mutex_unlock(&monitor_lock
);
4679 /* QEMUBHs needs to be deleted before destroying the I/O thread */
4680 qemu_bh_delete(qmp_dispatcher_bh
);
4681 qmp_dispatcher_bh
= NULL
;
4683 iothread_destroy(mon_iothread
);
4684 mon_iothread
= NULL
;
4688 QemuOptsList qemu_mon_opts
= {
4690 .implied_opt_name
= "chardev",
4691 .head
= QTAILQ_HEAD_INITIALIZER(qemu_mon_opts
.head
),
4695 .type
= QEMU_OPT_STRING
,
4698 .type
= QEMU_OPT_STRING
,
4701 .type
= QEMU_OPT_BOOL
,
4703 { /* end of list */ }
4707 HotpluggableCPUList
*qmp_query_hotpluggable_cpus(Error
**errp
)
4709 MachineState
*ms
= MACHINE(qdev_get_machine());
4710 MachineClass
*mc
= MACHINE_GET_CLASS(ms
);
4712 if (!mc
->has_hotpluggable_cpus
) {
4713 error_setg(errp
, QERR_FEATURE_DISABLED
, "query-hotpluggable-cpus");
4717 return machine_query_hotpluggable_cpus(ms
);