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/ctype.h"
46 #include "qemu/readline.h"
47 #include "ui/console.h"
49 #include "sysemu/block-backend.h"
50 #include "audio/audio.h"
51 #include "disas/disas.h"
52 #include "sysemu/balloon.h"
53 #include "qemu/timer.h"
54 #include "sysemu/hw_accel.h"
55 #include "authz/list.h"
56 #include "qapi/util.h"
57 #include "sysemu/tcg.h"
58 #include "sysemu/tpm.h"
59 #include "qapi/qmp/qdict.h"
60 #include "qapi/qmp/qerror.h"
61 #include "qapi/qmp/qnum.h"
62 #include "qapi/qmp/qstring.h"
63 #include "qapi/qmp/qjson.h"
64 #include "qapi/qmp/json-parser.h"
65 #include "qapi/qmp/qlist.h"
66 #include "qom/object_interfaces.h"
67 #include "trace-root.h"
68 #include "trace/control.h"
69 #include "monitor/hmp-target.h"
70 #ifdef CONFIG_TRACE_SIMPLE
71 #include "trace/simple.h"
73 #include "exec/memory.h"
74 #include "exec/exec-all.h"
76 #include "qemu/option.h"
78 #include "qemu/thread.h"
79 #include "block/qapi.h"
80 #include "qapi/qapi-commands.h"
81 #include "qapi/qapi-emit-events.h"
82 #include "qapi/error.h"
83 #include "qapi/qmp-event.h"
84 #include "qapi/qapi-introspect.h"
85 #include "sysemu/qtest.h"
86 #include "sysemu/cpus.h"
87 #include "sysemu/iothread.h"
88 #include "qemu/cutils.h"
91 #if defined(TARGET_S390X)
92 #include "hw/s390x/storage-keys.h"
93 #include "hw/s390x/storage-attributes.h"
100 * 'B' block device name
101 * 's' string (accept optional quote)
102 * 'S' it just appends the rest of the string (accept optional quote)
103 * 'O' option string of the form NAME=VALUE,...
104 * parsed according to QemuOptsList given by its name
105 * Example: 'device:O' uses qemu_device_opts.
106 * Restriction: only lists with empty desc are supported
107 * TODO lift the restriction
109 * 'l' target long (32 or 64 bit)
110 * 'M' Non-negative target long (32 or 64 bit), in user mode the
111 * value is multiplied by 2^20 (think Mebibyte)
112 * 'o' octets (aka bytes)
113 * user mode accepts an optional E, e, P, p, T, t, G, g, M, m,
114 * K, k suffix, which multiplies the value by 2^60 for suffixes E
115 * and e, 2^50 for suffixes P and p, 2^40 for suffixes T and t,
116 * 2^30 for suffixes G and g, 2^20 for M and m, 2^10 for K and k
118 * user mode accepts an optional ms, us, ns suffix,
119 * which divides the value by 1e3, 1e6, 1e9, respectively
120 * '/' optional gdb-like print format (like "/10x")
122 * '?' optional type (for all types, except '/')
123 * '.' other form of optional type (for 'i' and 'l')
125 * user mode accepts "on" or "off"
126 * '-' optional parameter (eg. '-f')
130 typedef struct mon_cmd_t
{
132 const char *args_type
;
135 const char *flags
; /* p=preconfig */
136 void (*cmd
)(Monitor
*mon
, const QDict
*qdict
);
137 /* @sub_table is a list of 2nd level of commands. If it does not exist,
138 * cmd should be used. If it exists, sub_table[?].cmd should be
139 * used, and cmd of 1st level plays the role of help function.
141 struct mon_cmd_t
*sub_table
;
142 void (*command_completion
)(ReadLineState
*rs
, int nb_args
, const char *str
);
145 /* file descriptors passed via SCM_RIGHTS */
146 typedef struct mon_fd_t mon_fd_t
;
150 QLIST_ENTRY(mon_fd_t
) next
;
153 /* file descriptor associated with a file descriptor set */
154 typedef struct MonFdsetFd MonFdsetFd
;
159 QLIST_ENTRY(MonFdsetFd
) next
;
162 /* file descriptor set containing fds passed via SCM_RIGHTS */
163 typedef struct MonFdset MonFdset
;
166 QLIST_HEAD(, MonFdsetFd
) fds
;
167 QLIST_HEAD(, MonFdsetFd
) dup_fds
;
168 QLIST_ENTRY(MonFdset
) next
;
172 JSONMessageParser parser
;
174 * When a client connects, we're in capabilities negotiation mode.
175 * @commands is &qmp_cap_negotiation_commands then. When command
176 * qmp_capabilities succeeds, we go into command mode, and
177 * @command becomes &qmp_commands.
179 QmpCommandList
*commands
;
180 bool capab_offered
[QMP_CAPABILITY__MAX
]; /* capabilities offered */
181 bool capab
[QMP_CAPABILITY__MAX
]; /* offered and accepted */
183 * Protects qmp request/response queue.
184 * Take monitor_lock first when you need both.
186 QemuMutex qmp_queue_lock
;
187 /* Input queue that holds all the parsed QMP requests */
188 GQueue
*qmp_requests
;
192 * To prevent flooding clients, events can be throttled. The
193 * throttling is calculated globally, rather than per-Monitor
196 typedef struct MonitorQAPIEventState
{
197 QAPIEvent event
; /* Throttling state for this event type and... */
198 QDict
*data
; /* ... data, see qapi_event_throttle_equal() */
199 QEMUTimer
*timer
; /* Timer for handling delayed events */
200 QDict
*qdict
; /* Delayed event (if any) */
201 } MonitorQAPIEventState
;
204 int64_t rate
; /* Minimum time (in ns) between two events */
205 } MonitorQAPIEventConf
;
211 int suspend_cnt
; /* Needs to be accessed atomically */
216 * State used only in the thread "owning" the monitor.
217 * If @use_io_thread, this is @mon_iothread.
218 * Else, it's the main thread.
219 * These members can be safely accessed without locks.
225 BlockCompletionFunc
*password_completion_cb
;
226 void *password_opaque
;
227 mon_cmd_t
*cmd_table
;
228 QTAILQ_ENTRY(Monitor
) entry
;
231 * The per-monitor lock. We can't access guest memory when holding
237 * Members that are protected by the per-monitor lock
239 QLIST_HEAD(, mon_fd_t
) fds
;
242 /* Read under either BQL or mon_lock, written with BQL+mon_lock. */
246 /* Shared monitor I/O thread */
247 IOThread
*mon_iothread
;
249 /* Bottom half to dispatch the requests received from I/O thread */
250 QEMUBH
*qmp_dispatcher_bh
;
253 /* Owner of the request */
256 * Request object to be handled or Error to be reported
257 * (exactly one of them is non-null)
262 typedef struct QMPRequest QMPRequest
;
264 /* QMP checker flags */
265 #define QMP_ACCEPT_UNKNOWNS 1
267 /* Protects mon_list, monitor_qapi_event_state, monitor_destroyed. */
268 static QemuMutex monitor_lock
;
269 static GHashTable
*monitor_qapi_event_state
;
270 static QTAILQ_HEAD(, Monitor
) mon_list
;
271 static bool monitor_destroyed
;
273 /* Protects mon_fdsets */
274 static QemuMutex mon_fdsets_lock
;
275 static QLIST_HEAD(, MonFdset
) mon_fdsets
;
277 static int mon_refcount
;
279 static mon_cmd_t mon_cmds
[];
280 static mon_cmd_t info_cmds
[];
282 QmpCommandList qmp_commands
, qmp_cap_negotiation_commands
;
284 __thread Monitor
*cur_mon
;
286 static void monitor_command_cb(void *opaque
, const char *cmdline
,
287 void *readline_opaque
);
290 * Is @mon a QMP monitor?
292 static inline bool monitor_is_qmp(const Monitor
*mon
)
294 return (mon
->flags
& MONITOR_USE_CONTROL
);
298 * Is @mon is using readline?
299 * Note: not all HMP monitors use readline, e.g., gdbserver has a
300 * non-interactive HMP monitor, so readline is not used there.
302 static inline bool monitor_uses_readline(const Monitor
*mon
)
304 return mon
->flags
& MONITOR_USE_READLINE
;
307 static inline bool monitor_is_hmp_non_interactive(const Monitor
*mon
)
309 return !monitor_is_qmp(mon
) && !monitor_uses_readline(mon
);
313 * Return the clock to use for recording an event's time.
314 * It's QEMU_CLOCK_REALTIME, except for qtests it's
315 * QEMU_CLOCK_VIRTUAL, to support testing rate limits.
316 * Beware: result is invalid before configure_accelerator().
318 static inline QEMUClockType
monitor_get_event_clock(void)
320 return qtest_enabled() ? QEMU_CLOCK_VIRTUAL
: QEMU_CLOCK_REALTIME
;
324 * Is the current monitor, if any, a QMP monitor?
326 bool monitor_cur_is_qmp(void)
328 return cur_mon
&& monitor_is_qmp(cur_mon
);
331 void monitor_read_command(Monitor
*mon
, int show_prompt
)
336 readline_start(mon
->rs
, "(qemu) ", 0, monitor_command_cb
, NULL
);
338 readline_show_prompt(mon
->rs
);
341 int monitor_read_password(Monitor
*mon
, ReadLineFunc
*readline_func
,
345 readline_start(mon
->rs
, "Password: ", 1, readline_func
, opaque
);
346 /* prompt is printed on return from the command handler */
349 monitor_printf(mon
, "terminal does not support password prompting\n");
354 static void qmp_request_free(QMPRequest
*req
)
356 qobject_unref(req
->req
);
357 error_free(req
->err
);
361 /* Caller must hold mon->qmp.qmp_queue_lock */
362 static void monitor_qmp_cleanup_req_queue_locked(Monitor
*mon
)
364 while (!g_queue_is_empty(mon
->qmp
.qmp_requests
)) {
365 qmp_request_free(g_queue_pop_head(mon
->qmp
.qmp_requests
));
369 static void monitor_qmp_cleanup_queues(Monitor
*mon
)
371 qemu_mutex_lock(&mon
->qmp
.qmp_queue_lock
);
372 monitor_qmp_cleanup_req_queue_locked(mon
);
373 qemu_mutex_unlock(&mon
->qmp
.qmp_queue_lock
);
377 static void monitor_flush_locked(Monitor
*mon
);
379 static gboolean
monitor_unblocked(GIOChannel
*chan
, GIOCondition cond
,
382 Monitor
*mon
= opaque
;
384 qemu_mutex_lock(&mon
->mon_lock
);
386 monitor_flush_locked(mon
);
387 qemu_mutex_unlock(&mon
->mon_lock
);
391 /* Caller must hold mon->mon_lock */
392 static void monitor_flush_locked(Monitor
*mon
)
398 if (mon
->skip_flush
) {
402 buf
= qstring_get_str(mon
->outbuf
);
403 len
= qstring_get_length(mon
->outbuf
);
405 if (len
&& !mon
->mux_out
) {
406 rc
= qemu_chr_fe_write(&mon
->chr
, (const uint8_t *) buf
, len
);
407 if ((rc
< 0 && errno
!= EAGAIN
) || (rc
== len
)) {
408 /* all flushed or error */
409 qobject_unref(mon
->outbuf
);
410 mon
->outbuf
= qstring_new();
415 QString
*tmp
= qstring_from_str(buf
+ rc
);
416 qobject_unref(mon
->outbuf
);
419 if (mon
->out_watch
== 0) {
421 qemu_chr_fe_add_watch(&mon
->chr
, G_IO_OUT
| G_IO_HUP
,
422 monitor_unblocked
, mon
);
427 void monitor_flush(Monitor
*mon
)
429 qemu_mutex_lock(&mon
->mon_lock
);
430 monitor_flush_locked(mon
);
431 qemu_mutex_unlock(&mon
->mon_lock
);
434 /* flush at every end of line */
435 static int monitor_puts(Monitor
*mon
, const char *str
)
440 qemu_mutex_lock(&mon
->mon_lock
);
441 for (i
= 0; str
[i
]; i
++) {
444 qstring_append_chr(mon
->outbuf
, '\r');
446 qstring_append_chr(mon
->outbuf
, c
);
448 monitor_flush_locked(mon
);
451 qemu_mutex_unlock(&mon
->mon_lock
);
456 int monitor_vprintf(Monitor
*mon
, const char *fmt
, va_list ap
)
464 if (monitor_is_qmp(mon
)) {
468 buf
= g_strdup_vprintf(fmt
, ap
);
469 n
= monitor_puts(mon
, buf
);
474 int monitor_printf(Monitor
*mon
, const char *fmt
, ...)
480 ret
= monitor_vprintf(mon
, fmt
, ap
);
485 static void qmp_send_response(Monitor
*mon
, const QDict
*rsp
)
487 const QObject
*data
= QOBJECT(rsp
);
490 json
= mon
->flags
& MONITOR_USE_PRETTY
? qobject_to_json_pretty(data
) :
491 qobject_to_json(data
);
492 assert(json
!= NULL
);
494 qstring_append_chr(json
, '\n');
495 monitor_puts(mon
, qstring_get_str(json
));
500 static MonitorQAPIEventConf monitor_qapi_event_conf
[QAPI_EVENT__MAX
] = {
501 /* Limit guest-triggerable events to 1 per second */
502 [QAPI_EVENT_RTC_CHANGE
] = { 1000 * SCALE_MS
},
503 [QAPI_EVENT_WATCHDOG
] = { 1000 * SCALE_MS
},
504 [QAPI_EVENT_BALLOON_CHANGE
] = { 1000 * SCALE_MS
},
505 [QAPI_EVENT_QUORUM_REPORT_BAD
] = { 1000 * SCALE_MS
},
506 [QAPI_EVENT_QUORUM_FAILURE
] = { 1000 * SCALE_MS
},
507 [QAPI_EVENT_VSERPORT_CHANGE
] = { 1000 * SCALE_MS
},
511 * Broadcast an event to all monitors.
512 * @qdict is the event object. Its member "event" must match @event.
513 * Caller must hold monitor_lock.
515 static void monitor_qapi_event_emit(QAPIEvent event
, QDict
*qdict
)
519 trace_monitor_protocol_event_emit(event
, qdict
);
520 QTAILQ_FOREACH(mon
, &mon_list
, entry
) {
521 if (monitor_is_qmp(mon
)
522 && mon
->qmp
.commands
!= &qmp_cap_negotiation_commands
) {
523 qmp_send_response(mon
, qdict
);
528 static void monitor_qapi_event_handler(void *opaque
);
531 * Queue a new event for emission to Monitor instances,
532 * applying any rate limiting if required.
535 monitor_qapi_event_queue_no_reenter(QAPIEvent event
, QDict
*qdict
)
537 MonitorQAPIEventConf
*evconf
;
538 MonitorQAPIEventState
*evstate
;
540 assert(event
< QAPI_EVENT__MAX
);
541 evconf
= &monitor_qapi_event_conf
[event
];
542 trace_monitor_protocol_event_queue(event
, qdict
, evconf
->rate
);
544 qemu_mutex_lock(&monitor_lock
);
547 /* Unthrottled event */
548 monitor_qapi_event_emit(event
, qdict
);
550 QDict
*data
= qobject_to(QDict
, qdict_get(qdict
, "data"));
551 MonitorQAPIEventState key
= { .event
= event
, .data
= data
};
553 evstate
= g_hash_table_lookup(monitor_qapi_event_state
, &key
);
554 assert(!evstate
|| timer_pending(evstate
->timer
));
558 * Timer is pending for (at least) evconf->rate ns after
559 * last send. Store event for sending when timer fires,
560 * replacing a prior stored event if any.
562 qobject_unref(evstate
->qdict
);
563 evstate
->qdict
= qobject_ref(qdict
);
566 * Last send was (at least) evconf->rate ns ago.
567 * Send immediately, and arm the timer to call
568 * monitor_qapi_event_handler() in evconf->rate ns. Any
569 * events arriving before then will be delayed until then.
571 int64_t now
= qemu_clock_get_ns(monitor_get_event_clock());
573 monitor_qapi_event_emit(event
, qdict
);
575 evstate
= g_new(MonitorQAPIEventState
, 1);
576 evstate
->event
= event
;
577 evstate
->data
= qobject_ref(data
);
578 evstate
->qdict
= NULL
;
579 evstate
->timer
= timer_new_ns(monitor_get_event_clock(),
580 monitor_qapi_event_handler
,
582 g_hash_table_add(monitor_qapi_event_state
, evstate
);
583 timer_mod_ns(evstate
->timer
, now
+ evconf
->rate
);
587 qemu_mutex_unlock(&monitor_lock
);
590 void qapi_event_emit(QAPIEvent event
, QDict
*qdict
)
593 * monitor_qapi_event_queue_no_reenter() is not reentrant: it
594 * would deadlock on monitor_lock. Work around by queueing
595 * events in thread-local storage.
596 * TODO: remove this, make it re-enter safe.
598 typedef struct MonitorQapiEvent
{
601 QSIMPLEQ_ENTRY(MonitorQapiEvent
) entry
;
603 static __thread
QSIMPLEQ_HEAD(, MonitorQapiEvent
) event_queue
;
604 static __thread
bool reentered
;
605 MonitorQapiEvent
*ev
;
608 QSIMPLEQ_INIT(&event_queue
);
611 ev
= g_new(MonitorQapiEvent
, 1);
612 ev
->qdict
= qobject_ref(qdict
);
614 QSIMPLEQ_INSERT_TAIL(&event_queue
, ev
, entry
);
621 while ((ev
= QSIMPLEQ_FIRST(&event_queue
)) != NULL
) {
622 QSIMPLEQ_REMOVE_HEAD(&event_queue
, entry
);
623 monitor_qapi_event_queue_no_reenter(ev
->event
, ev
->qdict
);
624 qobject_unref(ev
->qdict
);
632 * This function runs evconf->rate ns after sending a throttled
634 * If another event has since been stored, send it.
636 static void monitor_qapi_event_handler(void *opaque
)
638 MonitorQAPIEventState
*evstate
= opaque
;
639 MonitorQAPIEventConf
*evconf
= &monitor_qapi_event_conf
[evstate
->event
];
641 trace_monitor_protocol_event_handler(evstate
->event
, evstate
->qdict
);
642 qemu_mutex_lock(&monitor_lock
);
644 if (evstate
->qdict
) {
645 int64_t now
= qemu_clock_get_ns(monitor_get_event_clock());
647 monitor_qapi_event_emit(evstate
->event
, evstate
->qdict
);
648 qobject_unref(evstate
->qdict
);
649 evstate
->qdict
= NULL
;
650 timer_mod_ns(evstate
->timer
, now
+ evconf
->rate
);
652 g_hash_table_remove(monitor_qapi_event_state
, evstate
);
653 qobject_unref(evstate
->data
);
654 timer_free(evstate
->timer
);
658 qemu_mutex_unlock(&monitor_lock
);
661 static unsigned int qapi_event_throttle_hash(const void *key
)
663 const MonitorQAPIEventState
*evstate
= key
;
664 unsigned int hash
= evstate
->event
* 255;
666 if (evstate
->event
== QAPI_EVENT_VSERPORT_CHANGE
) {
667 hash
+= g_str_hash(qdict_get_str(evstate
->data
, "id"));
670 if (evstate
->event
== QAPI_EVENT_QUORUM_REPORT_BAD
) {
671 hash
+= g_str_hash(qdict_get_str(evstate
->data
, "node-name"));
677 static gboolean
qapi_event_throttle_equal(const void *a
, const void *b
)
679 const MonitorQAPIEventState
*eva
= a
;
680 const MonitorQAPIEventState
*evb
= b
;
682 if (eva
->event
!= evb
->event
) {
686 if (eva
->event
== QAPI_EVENT_VSERPORT_CHANGE
) {
687 return !strcmp(qdict_get_str(eva
->data
, "id"),
688 qdict_get_str(evb
->data
, "id"));
691 if (eva
->event
== QAPI_EVENT_QUORUM_REPORT_BAD
) {
692 return !strcmp(qdict_get_str(eva
->data
, "node-name"),
693 qdict_get_str(evb
->data
, "node-name"));
699 static void monitor_qapi_event_init(void)
701 monitor_qapi_event_state
= g_hash_table_new(qapi_event_throttle_hash
,
702 qapi_event_throttle_equal
);
705 static void handle_hmp_command(Monitor
*mon
, const char *cmdline
);
707 static void monitor_iothread_init(void);
709 static void monitor_data_init(Monitor
*mon
, bool skip_flush
,
712 if (use_io_thread
&& !mon_iothread
) {
713 monitor_iothread_init();
715 memset(mon
, 0, sizeof(Monitor
));
716 qemu_mutex_init(&mon
->mon_lock
);
717 qemu_mutex_init(&mon
->qmp
.qmp_queue_lock
);
718 mon
->outbuf
= qstring_new();
719 /* Use *mon_cmds by default. */
720 mon
->cmd_table
= mon_cmds
;
721 mon
->skip_flush
= skip_flush
;
722 mon
->use_io_thread
= use_io_thread
;
723 mon
->qmp
.qmp_requests
= g_queue_new();
726 static void monitor_data_destroy(Monitor
*mon
)
728 g_free(mon
->mon_cpu_path
);
729 qemu_chr_fe_deinit(&mon
->chr
, false);
730 if (monitor_is_qmp(mon
)) {
731 json_message_parser_destroy(&mon
->qmp
.parser
);
733 readline_free(mon
->rs
);
734 qobject_unref(mon
->outbuf
);
735 qemu_mutex_destroy(&mon
->mon_lock
);
736 qemu_mutex_destroy(&mon
->qmp
.qmp_queue_lock
);
737 monitor_qmp_cleanup_req_queue_locked(mon
);
738 g_queue_free(mon
->qmp
.qmp_requests
);
741 char *qmp_human_monitor_command(const char *command_line
, bool has_cpu_index
,
742 int64_t cpu_index
, Error
**errp
)
745 Monitor
*old_mon
, hmp
;
747 monitor_data_init(&hmp
, true, false);
753 int ret
= monitor_set_cpu(cpu_index
);
756 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "cpu-index",
762 handle_hmp_command(&hmp
, command_line
);
765 qemu_mutex_lock(&hmp
.mon_lock
);
766 if (qstring_get_length(hmp
.outbuf
) > 0) {
767 output
= g_strdup(qstring_get_str(hmp
.outbuf
));
769 output
= g_strdup("");
771 qemu_mutex_unlock(&hmp
.mon_lock
);
774 monitor_data_destroy(&hmp
);
778 static int compare_cmd(const char *name
, const char *list
)
780 const char *p
, *pstart
;
786 p
= qemu_strchrnul(p
, '|');
787 if ((p
- pstart
) == len
&& !memcmp(pstart
, name
, len
))
796 static int get_str(char *buf
, int buf_size
, const char **pp
)
804 while (qemu_isspace(*p
)) {
815 while (*p
!= '\0' && *p
!= '\"') {
831 printf("unsupported escape code: '\\%c'\n", c
);
834 if ((q
- buf
) < buf_size
- 1) {
838 if ((q
- buf
) < buf_size
- 1) {
845 printf("unterminated string\n");
850 while (*p
!= '\0' && !qemu_isspace(*p
)) {
851 if ((q
- buf
) < buf_size
- 1) {
864 static void free_cmdline_args(char **args
, int nb_args
)
868 assert(nb_args
<= MAX_ARGS
);
870 for (i
= 0; i
< nb_args
; i
++) {
877 * Parse the command line to get valid args.
878 * @cmdline: command line to be parsed.
879 * @pnb_args: location to store the number of args, must NOT be NULL.
880 * @args: location to store the args, which should be freed by caller, must
883 * Returns 0 on success, negative on failure.
885 * NOTE: this parser is an approximate form of the real command parser. Number
886 * of args have a limit of MAX_ARGS. If cmdline contains more, it will
887 * return with failure.
889 static int parse_cmdline(const char *cmdline
,
890 int *pnb_args
, char **args
)
899 while (qemu_isspace(*p
)) {
905 if (nb_args
>= MAX_ARGS
) {
908 ret
= get_str(buf
, sizeof(buf
), &p
);
912 args
[nb_args
] = g_strdup(buf
);
919 free_cmdline_args(args
, nb_args
);
924 * Can command @cmd be executed in preconfig state?
926 static bool cmd_can_preconfig(const mon_cmd_t
*cmd
)
932 return strchr(cmd
->flags
, 'p');
935 static void help_cmd_dump_one(Monitor
*mon
,
936 const mon_cmd_t
*cmd
,
942 if (runstate_check(RUN_STATE_PRECONFIG
) && !cmd_can_preconfig(cmd
)) {
946 for (i
= 0; i
< prefix_args_nb
; i
++) {
947 monitor_printf(mon
, "%s ", prefix_args
[i
]);
949 monitor_printf(mon
, "%s %s -- %s\n", cmd
->name
, cmd
->params
, cmd
->help
);
952 /* @args[@arg_index] is the valid command need to find in @cmds */
953 static void help_cmd_dump(Monitor
*mon
, const mon_cmd_t
*cmds
,
954 char **args
, int nb_args
, int arg_index
)
956 const mon_cmd_t
*cmd
;
959 /* No valid arg need to compare with, dump all in *cmds */
960 if (arg_index
>= nb_args
) {
961 for (cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
962 help_cmd_dump_one(mon
, cmd
, args
, arg_index
);
967 /* Find one entry to dump */
968 for (cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
969 if (compare_cmd(args
[arg_index
], cmd
->name
) &&
970 ((!runstate_check(RUN_STATE_PRECONFIG
) ||
971 cmd_can_preconfig(cmd
)))) {
972 if (cmd
->sub_table
) {
973 /* continue with next arg */
974 help_cmd_dump(mon
, cmd
->sub_table
,
975 args
, nb_args
, arg_index
+ 1);
977 help_cmd_dump_one(mon
, cmd
, args
, arg_index
);
983 /* Command not found */
984 monitor_printf(mon
, "unknown command: '");
985 for (i
= 0; i
<= arg_index
; i
++) {
986 monitor_printf(mon
, "%s%s", args
[i
], i
== arg_index
? "'\n" : " ");
990 static void help_cmd(Monitor
*mon
, const char *name
)
992 char *args
[MAX_ARGS
];
995 /* 1. parse user input */
997 /* special case for log, directly dump and return */
998 if (!strcmp(name
, "log")) {
999 const QEMULogItem
*item
;
1000 monitor_printf(mon
, "Log items (comma separated):\n");
1001 monitor_printf(mon
, "%-10s %s\n", "none", "remove all logs");
1002 for (item
= qemu_log_items
; item
->mask
!= 0; item
++) {
1003 monitor_printf(mon
, "%-10s %s\n", item
->name
, item
->help
);
1008 if (parse_cmdline(name
, &nb_args
, args
) < 0) {
1013 /* 2. dump the contents according to parsed args */
1014 help_cmd_dump(mon
, mon
->cmd_table
, args
, nb_args
, 0);
1016 free_cmdline_args(args
, nb_args
);
1019 static void do_help_cmd(Monitor
*mon
, const QDict
*qdict
)
1021 help_cmd(mon
, qdict_get_try_str(qdict
, "name"));
1024 static void hmp_trace_event(Monitor
*mon
, const QDict
*qdict
)
1026 const char *tp_name
= qdict_get_str(qdict
, "name");
1027 bool new_state
= qdict_get_bool(qdict
, "option");
1028 bool has_vcpu
= qdict_haskey(qdict
, "vcpu");
1029 int vcpu
= qdict_get_try_int(qdict
, "vcpu", 0);
1030 Error
*local_err
= NULL
;
1033 monitor_printf(mon
, "argument vcpu must be positive");
1037 qmp_trace_event_set_state(tp_name
, new_state
, true, true, has_vcpu
, vcpu
, &local_err
);
1039 error_report_err(local_err
);
1043 #ifdef CONFIG_TRACE_SIMPLE
1044 static void hmp_trace_file(Monitor
*mon
, const QDict
*qdict
)
1046 const char *op
= qdict_get_try_str(qdict
, "op");
1047 const char *arg
= qdict_get_try_str(qdict
, "arg");
1050 st_print_trace_file_status();
1051 } else if (!strcmp(op
, "on")) {
1052 st_set_trace_file_enabled(true);
1053 } else if (!strcmp(op
, "off")) {
1054 st_set_trace_file_enabled(false);
1055 } else if (!strcmp(op
, "flush")) {
1056 st_flush_trace_buffer();
1057 } else if (!strcmp(op
, "set")) {
1059 st_set_trace_file(arg
);
1062 monitor_printf(mon
, "unexpected argument \"%s\"\n", op
);
1063 help_cmd(mon
, "trace-file");
1068 static void hmp_info_help(Monitor
*mon
, const QDict
*qdict
)
1070 help_cmd(mon
, "info");
1073 static void query_commands_cb(QmpCommand
*cmd
, void *opaque
)
1075 CommandInfoList
*info
, **list
= opaque
;
1077 if (!cmd
->enabled
) {
1081 info
= g_malloc0(sizeof(*info
));
1082 info
->value
= g_malloc0(sizeof(*info
->value
));
1083 info
->value
->name
= g_strdup(cmd
->name
);
1088 CommandInfoList
*qmp_query_commands(Error
**errp
)
1090 CommandInfoList
*list
= NULL
;
1092 qmp_for_each_command(cur_mon
->qmp
.commands
, query_commands_cb
, &list
);
1097 EventInfoList
*qmp_query_events(Error
**errp
)
1100 * TODO This deprecated command is the only user of
1101 * QAPIEvent_str() and QAPIEvent_lookup[]. When the command goes,
1102 * they should go, too.
1104 EventInfoList
*info
, *ev_list
= NULL
;
1107 for (e
= 0 ; e
< QAPI_EVENT__MAX
; e
++) {
1108 const char *event_name
= QAPIEvent_str(e
);
1109 assert(event_name
!= NULL
);
1110 info
= g_malloc0(sizeof(*info
));
1111 info
->value
= g_malloc0(sizeof(*info
->value
));
1112 info
->value
->name
= g_strdup(event_name
);
1114 info
->next
= ev_list
;
1122 * Minor hack: generated marshalling suppressed for this command
1123 * ('gen': false in the schema) so we can parse the JSON string
1124 * directly into QObject instead of first parsing it with
1125 * visit_type_SchemaInfoList() into a SchemaInfoList, then marshal it
1126 * to QObject with generated output marshallers, every time. Instead,
1127 * we do it in test-qobject-input-visitor.c, just to make sure
1128 * qapi-gen.py's output actually conforms to the schema.
1130 static void qmp_query_qmp_schema(QDict
*qdict
, QObject
**ret_data
,
1133 *ret_data
= qobject_from_qlit(&qmp_schema_qlit
);
1136 static void monitor_init_qmp_commands(void)
1139 * Two command lists:
1140 * - qmp_commands contains all QMP commands
1141 * - qmp_cap_negotiation_commands contains just
1142 * "qmp_capabilities", to enforce capability negotiation
1145 qmp_init_marshal(&qmp_commands
);
1147 qmp_register_command(&qmp_commands
, "query-qmp-schema",
1148 qmp_query_qmp_schema
, QCO_ALLOW_PRECONFIG
);
1149 qmp_register_command(&qmp_commands
, "device_add", qmp_device_add
,
1151 qmp_register_command(&qmp_commands
, "netdev_add", qmp_netdev_add
,
1154 QTAILQ_INIT(&qmp_cap_negotiation_commands
);
1155 qmp_register_command(&qmp_cap_negotiation_commands
, "qmp_capabilities",
1156 qmp_marshal_qmp_capabilities
, QCO_ALLOW_PRECONFIG
);
1159 static bool qmp_oob_enabled(Monitor
*mon
)
1161 return mon
->qmp
.capab
[QMP_CAPABILITY_OOB
];
1164 static void monitor_qmp_caps_reset(Monitor
*mon
)
1166 memset(mon
->qmp
.capab_offered
, 0, sizeof(mon
->qmp
.capab_offered
));
1167 memset(mon
->qmp
.capab
, 0, sizeof(mon
->qmp
.capab
));
1168 mon
->qmp
.capab_offered
[QMP_CAPABILITY_OOB
] = mon
->use_io_thread
;
1172 * Accept QMP capabilities in @list for @mon.
1173 * On success, set mon->qmp.capab[], and return true.
1174 * On error, set @errp, and return false.
1176 static bool qmp_caps_accept(Monitor
*mon
, QMPCapabilityList
*list
,
1179 GString
*unavailable
= NULL
;
1180 bool capab
[QMP_CAPABILITY__MAX
];
1182 memset(capab
, 0, sizeof(capab
));
1184 for (; list
; list
= list
->next
) {
1185 if (!mon
->qmp
.capab_offered
[list
->value
]) {
1187 unavailable
= g_string_new(QMPCapability_str(list
->value
));
1189 g_string_append_printf(unavailable
, ", %s",
1190 QMPCapability_str(list
->value
));
1193 capab
[list
->value
] = true;
1197 error_setg(errp
, "Capability %s not available", unavailable
->str
);
1198 g_string_free(unavailable
, true);
1202 memcpy(mon
->qmp
.capab
, capab
, sizeof(capab
));
1206 void qmp_qmp_capabilities(bool has_enable
, QMPCapabilityList
*enable
,
1209 if (cur_mon
->qmp
.commands
== &qmp_commands
) {
1210 error_set(errp
, ERROR_CLASS_COMMAND_NOT_FOUND
,
1211 "Capabilities negotiation is already complete, command "
1216 if (!qmp_caps_accept(cur_mon
, enable
, errp
)) {
1220 cur_mon
->qmp
.commands
= &qmp_commands
;
1223 /* Set the current CPU defined by the user. Callers must hold BQL. */
1224 int monitor_set_cpu(int cpu_index
)
1228 cpu
= qemu_get_cpu(cpu_index
);
1232 g_free(cur_mon
->mon_cpu_path
);
1233 cur_mon
->mon_cpu_path
= object_get_canonical_path(OBJECT(cpu
));
1237 /* Callers must hold BQL. */
1238 static CPUState
*mon_get_cpu_sync(bool synchronize
)
1242 if (cur_mon
->mon_cpu_path
) {
1243 cpu
= (CPUState
*) object_resolve_path_type(cur_mon
->mon_cpu_path
,
1246 g_free(cur_mon
->mon_cpu_path
);
1247 cur_mon
->mon_cpu_path
= NULL
;
1250 if (!cur_mon
->mon_cpu_path
) {
1254 monitor_set_cpu(first_cpu
->cpu_index
);
1258 cpu_synchronize_state(cpu
);
1263 CPUState
*mon_get_cpu(void)
1265 return mon_get_cpu_sync(true);
1268 CPUArchState
*mon_get_cpu_env(void)
1270 CPUState
*cs
= mon_get_cpu();
1272 return cs
? cs
->env_ptr
: NULL
;
1275 int monitor_get_cpu_index(void)
1277 CPUState
*cs
= mon_get_cpu_sync(false);
1279 return cs
? cs
->cpu_index
: UNASSIGNED_CPU_INDEX
;
1282 static void hmp_info_registers(Monitor
*mon
, const QDict
*qdict
)
1284 bool all_cpus
= qdict_get_try_bool(qdict
, "cpustate_all", false);
1289 monitor_printf(mon
, "\nCPU#%d\n", cs
->cpu_index
);
1290 cpu_dump_state(cs
, NULL
, CPU_DUMP_FPU
);
1296 monitor_printf(mon
, "No CPU available\n");
1300 cpu_dump_state(cs
, NULL
, CPU_DUMP_FPU
);
1305 static void hmp_info_jit(Monitor
*mon
, const QDict
*qdict
)
1307 if (!tcg_enabled()) {
1308 error_report("JIT information is only available with accel=tcg");
1316 static void hmp_info_opcount(Monitor
*mon
, const QDict
*qdict
)
1318 dump_opcount_info();
1322 static void hmp_info_sync_profile(Monitor
*mon
, const QDict
*qdict
)
1324 int64_t max
= qdict_get_try_int(qdict
, "max", 10);
1325 bool mean
= qdict_get_try_bool(qdict
, "mean", false);
1326 bool coalesce
= !qdict_get_try_bool(qdict
, "no_coalesce", false);
1327 enum QSPSortBy sort_by
;
1329 sort_by
= mean
? QSP_SORT_BY_AVG_WAIT_TIME
: QSP_SORT_BY_TOTAL_WAIT_TIME
;
1330 qsp_report(max
, sort_by
, coalesce
);
1333 static void hmp_info_history(Monitor
*mon
, const QDict
*qdict
)
1342 str
= readline_get_history(mon
->rs
, i
);
1345 monitor_printf(mon
, "%d: '%s'\n", i
, str
);
1350 static void hmp_info_cpustats(Monitor
*mon
, const QDict
*qdict
)
1352 CPUState
*cs
= mon_get_cpu();
1355 monitor_printf(mon
, "No CPU available\n");
1358 cpu_dump_statistics(cs
, 0);
1361 static void hmp_info_trace_events(Monitor
*mon
, const QDict
*qdict
)
1363 const char *name
= qdict_get_try_str(qdict
, "name");
1364 bool has_vcpu
= qdict_haskey(qdict
, "vcpu");
1365 int vcpu
= qdict_get_try_int(qdict
, "vcpu", 0);
1366 TraceEventInfoList
*events
;
1367 TraceEventInfoList
*elem
;
1368 Error
*local_err
= NULL
;
1374 monitor_printf(mon
, "argument vcpu must be positive");
1378 events
= qmp_trace_event_get_state(name
, has_vcpu
, vcpu
, &local_err
);
1380 error_report_err(local_err
);
1384 for (elem
= events
; elem
!= NULL
; elem
= elem
->next
) {
1385 monitor_printf(mon
, "%s : state %u\n",
1387 elem
->value
->state
== TRACE_EVENT_STATE_ENABLED
? 1 : 0);
1389 qapi_free_TraceEventInfoList(events
);
1392 void qmp_client_migrate_info(const char *protocol
, const char *hostname
,
1393 bool has_port
, int64_t port
,
1394 bool has_tls_port
, int64_t tls_port
,
1395 bool has_cert_subject
, const char *cert_subject
,
1398 if (strcmp(protocol
, "spice") == 0) {
1399 if (!qemu_using_spice(errp
)) {
1403 if (!has_port
&& !has_tls_port
) {
1404 error_setg(errp
, QERR_MISSING_PARAMETER
, "port/tls-port");
1408 if (qemu_spice_migrate_info(hostname
,
1409 has_port
? port
: -1,
1410 has_tls_port
? tls_port
: -1,
1412 error_setg(errp
, QERR_UNDEFINED_ERROR
);
1418 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "protocol", "spice");
1421 static void hmp_logfile(Monitor
*mon
, const QDict
*qdict
)
1425 qemu_set_log_filename(qdict_get_str(qdict
, "filename"), &err
);
1427 error_report_err(err
);
1431 static void hmp_log(Monitor
*mon
, const QDict
*qdict
)
1434 const char *items
= qdict_get_str(qdict
, "items");
1436 if (!strcmp(items
, "none")) {
1439 mask
= qemu_str_to_log_mask(items
);
1441 help_cmd(mon
, "log");
1448 static void hmp_singlestep(Monitor
*mon
, const QDict
*qdict
)
1450 const char *option
= qdict_get_try_str(qdict
, "option");
1451 if (!option
|| !strcmp(option
, "on")) {
1453 } else if (!strcmp(option
, "off")) {
1456 monitor_printf(mon
, "unexpected option %s\n", option
);
1460 static void hmp_gdbserver(Monitor
*mon
, const QDict
*qdict
)
1462 const char *device
= qdict_get_try_str(qdict
, "device");
1464 device
= "tcp::" DEFAULT_GDBSTUB_PORT
;
1465 if (gdbserver_start(device
) < 0) {
1466 monitor_printf(mon
, "Could not open gdbserver on device '%s'\n",
1468 } else if (strcmp(device
, "none") == 0) {
1469 monitor_printf(mon
, "Disabled gdbserver\n");
1471 monitor_printf(mon
, "Waiting for gdb connection on device '%s'\n",
1476 static void hmp_watchdog_action(Monitor
*mon
, const QDict
*qdict
)
1478 const char *action
= qdict_get_str(qdict
, "action");
1479 if (select_watchdog_action(action
) == -1) {
1480 monitor_printf(mon
, "Unknown watchdog action '%s'\n", action
);
1484 static void monitor_printc(Monitor
*mon
, int c
)
1486 monitor_printf(mon
, "'");
1489 monitor_printf(mon
, "\\'");
1492 monitor_printf(mon
, "\\\\");
1495 monitor_printf(mon
, "\\n");
1498 monitor_printf(mon
, "\\r");
1501 if (c
>= 32 && c
<= 126) {
1502 monitor_printf(mon
, "%c", c
);
1504 monitor_printf(mon
, "\\x%02x", c
);
1508 monitor_printf(mon
, "'");
1511 static void memory_dump(Monitor
*mon
, int count
, int format
, int wsize
,
1512 hwaddr addr
, int is_physical
)
1514 int l
, line_size
, i
, max_digits
, len
;
1517 CPUState
*cs
= mon_get_cpu();
1519 if (!cs
&& (format
== 'i' || !is_physical
)) {
1520 monitor_printf(mon
, "Can not dump without CPU\n");
1524 if (format
== 'i') {
1525 monitor_disas(mon
, cs
, addr
, count
, is_physical
);
1529 len
= wsize
* count
;
1538 max_digits
= DIV_ROUND_UP(wsize
* 8, 3);
1542 max_digits
= (wsize
* 8) / 4;
1546 max_digits
= DIV_ROUND_UP(wsize
* 8 * 10, 33);
1555 monitor_printf(mon
, TARGET_FMT_plx
":", addr
);
1557 monitor_printf(mon
, TARGET_FMT_lx
":", (target_ulong
)addr
);
1562 AddressSpace
*as
= cs
? cs
->as
: &address_space_memory
;
1563 MemTxResult r
= address_space_read(as
, addr
,
1564 MEMTXATTRS_UNSPECIFIED
, buf
, l
);
1565 if (r
!= MEMTX_OK
) {
1566 monitor_printf(mon
, " Cannot access memory\n");
1570 if (cpu_memory_rw_debug(cs
, addr
, buf
, l
, 0) < 0) {
1571 monitor_printf(mon
, " Cannot access memory\n");
1580 v
= ldub_p(buf
+ i
);
1583 v
= lduw_p(buf
+ i
);
1586 v
= (uint32_t)ldl_p(buf
+ i
);
1592 monitor_printf(mon
, " ");
1595 monitor_printf(mon
, "%#*" PRIo64
, max_digits
, v
);
1598 monitor_printf(mon
, "0x%0*" PRIx64
, max_digits
, v
);
1601 monitor_printf(mon
, "%*" PRIu64
, max_digits
, v
);
1604 monitor_printf(mon
, "%*" PRId64
, max_digits
, v
);
1607 monitor_printc(mon
, v
);
1612 monitor_printf(mon
, "\n");
1618 static void hmp_memory_dump(Monitor
*mon
, const QDict
*qdict
)
1620 int count
= qdict_get_int(qdict
, "count");
1621 int format
= qdict_get_int(qdict
, "format");
1622 int size
= qdict_get_int(qdict
, "size");
1623 target_long addr
= qdict_get_int(qdict
, "addr");
1625 memory_dump(mon
, count
, format
, size
, addr
, 0);
1628 static void hmp_physical_memory_dump(Monitor
*mon
, const QDict
*qdict
)
1630 int count
= qdict_get_int(qdict
, "count");
1631 int format
= qdict_get_int(qdict
, "format");
1632 int size
= qdict_get_int(qdict
, "size");
1633 hwaddr addr
= qdict_get_int(qdict
, "addr");
1635 memory_dump(mon
, count
, format
, size
, addr
, 1);
1638 static void *gpa2hva(MemoryRegion
**p_mr
, hwaddr addr
, Error
**errp
)
1640 MemoryRegionSection mrs
= memory_region_find(get_system_memory(),
1644 error_setg(errp
, "No memory is mapped at address 0x%" HWADDR_PRIx
, addr
);
1648 if (!memory_region_is_ram(mrs
.mr
) && !memory_region_is_romd(mrs
.mr
)) {
1649 error_setg(errp
, "Memory at address 0x%" HWADDR_PRIx
"is not RAM", addr
);
1650 memory_region_unref(mrs
.mr
);
1655 return qemu_map_ram_ptr(mrs
.mr
->ram_block
, mrs
.offset_within_region
);
1658 static void hmp_gpa2hva(Monitor
*mon
, const QDict
*qdict
)
1660 hwaddr addr
= qdict_get_int(qdict
, "addr");
1661 Error
*local_err
= NULL
;
1662 MemoryRegion
*mr
= NULL
;
1665 ptr
= gpa2hva(&mr
, addr
, &local_err
);
1667 error_report_err(local_err
);
1671 monitor_printf(mon
, "Host virtual address for 0x%" HWADDR_PRIx
1673 addr
, mr
->name
, ptr
);
1675 memory_region_unref(mr
);
1678 static void hmp_gva2gpa(Monitor
*mon
, const QDict
*qdict
)
1680 target_ulong addr
= qdict_get_int(qdict
, "addr");
1682 CPUState
*cs
= mon_get_cpu();
1686 monitor_printf(mon
, "No cpu\n");
1690 gpa
= cpu_get_phys_page_attrs_debug(cs
, addr
& TARGET_PAGE_MASK
, &attrs
);
1692 monitor_printf(mon
, "Unmapped\n");
1694 monitor_printf(mon
, "gpa: %#" HWADDR_PRIx
"\n",
1695 gpa
+ (addr
& ~TARGET_PAGE_MASK
));
1700 static uint64_t vtop(void *ptr
, Error
**errp
)
1704 uintptr_t addr
= (uintptr_t) ptr
;
1705 uintptr_t pagesize
= getpagesize();
1706 off_t offset
= addr
/ pagesize
* sizeof(pinfo
);
1709 fd
= open("/proc/self/pagemap", O_RDONLY
);
1711 error_setg_errno(errp
, errno
, "Cannot open /proc/self/pagemap");
1715 /* Force copy-on-write if necessary. */
1716 atomic_add((uint8_t *)ptr
, 0);
1718 if (pread(fd
, &pinfo
, sizeof(pinfo
), offset
) != sizeof(pinfo
)) {
1719 error_setg_errno(errp
, errno
, "Cannot read pagemap");
1722 if ((pinfo
& (1ull << 63)) == 0) {
1723 error_setg(errp
, "Page not present");
1726 ret
= ((pinfo
& 0x007fffffffffffffull
) * pagesize
) | (addr
& (pagesize
- 1));
1733 static void hmp_gpa2hpa(Monitor
*mon
, const QDict
*qdict
)
1735 hwaddr addr
= qdict_get_int(qdict
, "addr");
1736 Error
*local_err
= NULL
;
1737 MemoryRegion
*mr
= NULL
;
1741 ptr
= gpa2hva(&mr
, addr
, &local_err
);
1743 error_report_err(local_err
);
1747 physaddr
= vtop(ptr
, &local_err
);
1749 error_report_err(local_err
);
1751 monitor_printf(mon
, "Host physical address for 0x%" HWADDR_PRIx
1752 " (%s) is 0x%" PRIx64
"\n",
1753 addr
, mr
->name
, (uint64_t) physaddr
);
1756 memory_region_unref(mr
);
1760 static void do_print(Monitor
*mon
, const QDict
*qdict
)
1762 int format
= qdict_get_int(qdict
, "format");
1763 hwaddr val
= qdict_get_int(qdict
, "val");
1767 monitor_printf(mon
, "%#" HWADDR_PRIo
, val
);
1770 monitor_printf(mon
, "%#" HWADDR_PRIx
, val
);
1773 monitor_printf(mon
, "%" HWADDR_PRIu
, val
);
1777 monitor_printf(mon
, "%" HWADDR_PRId
, val
);
1780 monitor_printc(mon
, val
);
1783 monitor_printf(mon
, "\n");
1786 static void hmp_sum(Monitor
*mon
, const QDict
*qdict
)
1790 uint32_t start
= qdict_get_int(qdict
, "start");
1791 uint32_t size
= qdict_get_int(qdict
, "size");
1794 for(addr
= start
; addr
< (start
+ size
); addr
++) {
1795 uint8_t val
= address_space_ldub(&address_space_memory
, addr
,
1796 MEMTXATTRS_UNSPECIFIED
, NULL
);
1797 /* BSD sum algorithm ('sum' Unix command) */
1798 sum
= (sum
>> 1) | (sum
<< 15);
1801 monitor_printf(mon
, "%05d\n", sum
);
1804 static int mouse_button_state
;
1806 static void hmp_mouse_move(Monitor
*mon
, const QDict
*qdict
)
1808 int dx
, dy
, dz
, button
;
1809 const char *dx_str
= qdict_get_str(qdict
, "dx_str");
1810 const char *dy_str
= qdict_get_str(qdict
, "dy_str");
1811 const char *dz_str
= qdict_get_try_str(qdict
, "dz_str");
1813 dx
= strtol(dx_str
, NULL
, 0);
1814 dy
= strtol(dy_str
, NULL
, 0);
1815 qemu_input_queue_rel(NULL
, INPUT_AXIS_X
, dx
);
1816 qemu_input_queue_rel(NULL
, INPUT_AXIS_Y
, dy
);
1819 dz
= strtol(dz_str
, NULL
, 0);
1821 button
= (dz
> 0) ? INPUT_BUTTON_WHEEL_UP
: INPUT_BUTTON_WHEEL_DOWN
;
1822 qemu_input_queue_btn(NULL
, button
, true);
1823 qemu_input_event_sync();
1824 qemu_input_queue_btn(NULL
, button
, false);
1827 qemu_input_event_sync();
1830 static void hmp_mouse_button(Monitor
*mon
, const QDict
*qdict
)
1832 static uint32_t bmap
[INPUT_BUTTON__MAX
] = {
1833 [INPUT_BUTTON_LEFT
] = MOUSE_EVENT_LBUTTON
,
1834 [INPUT_BUTTON_MIDDLE
] = MOUSE_EVENT_MBUTTON
,
1835 [INPUT_BUTTON_RIGHT
] = MOUSE_EVENT_RBUTTON
,
1837 int button_state
= qdict_get_int(qdict
, "button_state");
1839 if (mouse_button_state
== button_state
) {
1842 qemu_input_update_buttons(NULL
, bmap
, mouse_button_state
, button_state
);
1843 qemu_input_event_sync();
1844 mouse_button_state
= button_state
;
1847 static void hmp_ioport_read(Monitor
*mon
, const QDict
*qdict
)
1849 int size
= qdict_get_int(qdict
, "size");
1850 int addr
= qdict_get_int(qdict
, "addr");
1851 int has_index
= qdict_haskey(qdict
, "index");
1856 int index
= qdict_get_int(qdict
, "index");
1857 cpu_outb(addr
& IOPORTS_MASK
, index
& 0xff);
1865 val
= cpu_inb(addr
);
1869 val
= cpu_inw(addr
);
1873 val
= cpu_inl(addr
);
1877 monitor_printf(mon
, "port%c[0x%04x] = %#0*x\n",
1878 suffix
, addr
, size
* 2, val
);
1881 static void hmp_ioport_write(Monitor
*mon
, const QDict
*qdict
)
1883 int size
= qdict_get_int(qdict
, "size");
1884 int addr
= qdict_get_int(qdict
, "addr");
1885 int val
= qdict_get_int(qdict
, "val");
1887 addr
&= IOPORTS_MASK
;
1892 cpu_outb(addr
, val
);
1895 cpu_outw(addr
, val
);
1898 cpu_outl(addr
, val
);
1903 static void hmp_boot_set(Monitor
*mon
, const QDict
*qdict
)
1905 Error
*local_err
= NULL
;
1906 const char *bootdevice
= qdict_get_str(qdict
, "bootdevice");
1908 qemu_boot_set(bootdevice
, &local_err
);
1910 error_report_err(local_err
);
1912 monitor_printf(mon
, "boot device list now set to %s\n", bootdevice
);
1916 static void hmp_info_mtree(Monitor
*mon
, const QDict
*qdict
)
1918 bool flatview
= qdict_get_try_bool(qdict
, "flatview", false);
1919 bool dispatch_tree
= qdict_get_try_bool(qdict
, "dispatch_tree", false);
1920 bool owner
= qdict_get_try_bool(qdict
, "owner", false);
1922 mtree_info(flatview
, dispatch_tree
, owner
);
1925 static void hmp_info_numa(Monitor
*mon
, const QDict
*qdict
)
1928 NumaNodeMem
*node_mem
;
1929 CpuInfoList
*cpu_list
, *cpu
;
1931 cpu_list
= qmp_query_cpus(&error_abort
);
1932 node_mem
= g_new0(NumaNodeMem
, nb_numa_nodes
);
1934 query_numa_node_mem(node_mem
);
1935 monitor_printf(mon
, "%d nodes\n", nb_numa_nodes
);
1936 for (i
= 0; i
< nb_numa_nodes
; i
++) {
1937 monitor_printf(mon
, "node %d cpus:", i
);
1938 for (cpu
= cpu_list
; cpu
; cpu
= cpu
->next
) {
1939 if (cpu
->value
->has_props
&& cpu
->value
->props
->has_node_id
&&
1940 cpu
->value
->props
->node_id
== i
) {
1941 monitor_printf(mon
, " %" PRIi64
, cpu
->value
->CPU
);
1944 monitor_printf(mon
, "\n");
1945 monitor_printf(mon
, "node %d size: %" PRId64
" MB\n", i
,
1946 node_mem
[i
].node_mem
>> 20);
1947 monitor_printf(mon
, "node %d plugged: %" PRId64
" MB\n", i
,
1948 node_mem
[i
].node_plugged_mem
>> 20);
1950 qapi_free_CpuInfoList(cpu_list
);
1954 #ifdef CONFIG_PROFILER
1958 static void hmp_info_profile(Monitor
*mon
, const QDict
*qdict
)
1960 static int64_t last_cpu_exec_time
;
1961 int64_t cpu_exec_time
;
1964 cpu_exec_time
= tcg_cpu_exec_time();
1965 delta
= cpu_exec_time
- last_cpu_exec_time
;
1967 monitor_printf(mon
, "async time %" PRId64
" (%0.3f)\n",
1968 dev_time
, dev_time
/ (double)NANOSECONDS_PER_SECOND
);
1969 monitor_printf(mon
, "qemu time %" PRId64
" (%0.3f)\n",
1970 delta
, delta
/ (double)NANOSECONDS_PER_SECOND
);
1971 last_cpu_exec_time
= cpu_exec_time
;
1975 static void hmp_info_profile(Monitor
*mon
, const QDict
*qdict
)
1977 monitor_printf(mon
, "Internal profiler not compiled\n");
1981 /* Capture support */
1982 static QLIST_HEAD (capture_list_head
, CaptureState
) capture_head
;
1984 static void hmp_info_capture(Monitor
*mon
, const QDict
*qdict
)
1989 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1990 monitor_printf(mon
, "[%d]: ", i
);
1991 s
->ops
.info (s
->opaque
);
1995 static void hmp_stopcapture(Monitor
*mon
, const QDict
*qdict
)
1998 int n
= qdict_get_int(qdict
, "n");
2001 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
2003 s
->ops
.destroy (s
->opaque
);
2004 QLIST_REMOVE (s
, entries
);
2011 static void hmp_wavcapture(Monitor
*mon
, const QDict
*qdict
)
2013 const char *path
= qdict_get_str(qdict
, "path");
2014 int has_freq
= qdict_haskey(qdict
, "freq");
2015 int freq
= qdict_get_try_int(qdict
, "freq", -1);
2016 int has_bits
= qdict_haskey(qdict
, "bits");
2017 int bits
= qdict_get_try_int(qdict
, "bits", -1);
2018 int has_channels
= qdict_haskey(qdict
, "nchannels");
2019 int nchannels
= qdict_get_try_int(qdict
, "nchannels", -1);
2022 s
= g_malloc0 (sizeof (*s
));
2024 freq
= has_freq
? freq
: 44100;
2025 bits
= has_bits
? bits
: 16;
2026 nchannels
= has_channels
? nchannels
: 2;
2028 if (wav_start_capture (s
, path
, freq
, bits
, nchannels
)) {
2029 monitor_printf(mon
, "Failed to add wave capture\n");
2033 QLIST_INSERT_HEAD (&capture_head
, s
, entries
);
2036 static QAuthZList
*find_auth(Monitor
*mon
, const char *name
)
2041 container
= object_get_objects_root();
2042 obj
= object_resolve_path_component(container
, name
);
2044 monitor_printf(mon
, "acl: unknown list '%s'\n", name
);
2048 return QAUTHZ_LIST(obj
);
2051 static bool warn_acl
;
2052 static void hmp_warn_acl(void)
2057 error_report("The acl_show, acl_reset, acl_policy, acl_add, acl_remove "
2058 "commands are deprecated with no replacement. Authorization "
2059 "for VNC should be performed using the pluggable QAuthZ "
2064 static void hmp_acl_show(Monitor
*mon
, const QDict
*qdict
)
2066 const char *aclname
= qdict_get_str(qdict
, "aclname");
2067 QAuthZList
*auth
= find_auth(mon
, aclname
);
2068 QAuthZListRuleList
*rules
;
2077 monitor_printf(mon
, "policy: %s\n",
2078 QAuthZListPolicy_str(auth
->policy
));
2080 rules
= auth
->rules
;
2082 QAuthZListRule
*rule
= rules
->value
;
2084 monitor_printf(mon
, "%zu: %s %s\n", i
,
2085 QAuthZListPolicy_str(rule
->policy
),
2087 rules
= rules
->next
;
2091 static void hmp_acl_reset(Monitor
*mon
, const QDict
*qdict
)
2093 const char *aclname
= qdict_get_str(qdict
, "aclname");
2094 QAuthZList
*auth
= find_auth(mon
, aclname
);
2102 auth
->policy
= QAUTHZ_LIST_POLICY_DENY
;
2103 qapi_free_QAuthZListRuleList(auth
->rules
);
2105 monitor_printf(mon
, "acl: removed all rules\n");
2108 static void hmp_acl_policy(Monitor
*mon
, const QDict
*qdict
)
2110 const char *aclname
= qdict_get_str(qdict
, "aclname");
2111 const char *policy
= qdict_get_str(qdict
, "policy");
2112 QAuthZList
*auth
= find_auth(mon
, aclname
);
2122 val
= qapi_enum_parse(&QAuthZListPolicy_lookup
,
2124 QAUTHZ_LIST_POLICY_DENY
,
2128 monitor_printf(mon
, "acl: unknown policy '%s', "
2129 "expected 'deny' or 'allow'\n", policy
);
2132 if (auth
->policy
== QAUTHZ_LIST_POLICY_ALLOW
) {
2133 monitor_printf(mon
, "acl: policy set to 'allow'\n");
2135 monitor_printf(mon
, "acl: policy set to 'deny'\n");
2140 static QAuthZListFormat
hmp_acl_get_format(const char *match
)
2142 if (strchr(match
, '*')) {
2143 return QAUTHZ_LIST_FORMAT_GLOB
;
2145 return QAUTHZ_LIST_FORMAT_EXACT
;
2149 static void hmp_acl_add(Monitor
*mon
, const QDict
*qdict
)
2151 const char *aclname
= qdict_get_str(qdict
, "aclname");
2152 const char *match
= qdict_get_str(qdict
, "match");
2153 const char *policystr
= qdict_get_str(qdict
, "policy");
2154 int has_index
= qdict_haskey(qdict
, "index");
2155 int index
= qdict_get_try_int(qdict
, "index", -1);
2156 QAuthZList
*auth
= find_auth(mon
, aclname
);
2158 QAuthZListPolicy policy
;
2159 QAuthZListFormat format
;
2168 policy
= qapi_enum_parse(&QAuthZListPolicy_lookup
,
2170 QAUTHZ_LIST_POLICY_DENY
,
2174 monitor_printf(mon
, "acl: unknown policy '%s', "
2175 "expected 'deny' or 'allow'\n", policystr
);
2179 format
= hmp_acl_get_format(match
);
2181 if (has_index
&& index
== 0) {
2182 monitor_printf(mon
, "acl: unable to add acl entry\n");
2187 i
= qauthz_list_insert_rule(auth
, match
, policy
,
2188 format
, index
- 1, &err
);
2190 i
= qauthz_list_append_rule(auth
, match
, policy
,
2194 monitor_printf(mon
, "acl: unable to add rule: %s",
2195 error_get_pretty(err
));
2198 monitor_printf(mon
, "acl: added rule at position %zu\n", i
+ 1);
2202 static void hmp_acl_remove(Monitor
*mon
, const QDict
*qdict
)
2204 const char *aclname
= qdict_get_str(qdict
, "aclname");
2205 const char *match
= qdict_get_str(qdict
, "match");
2206 QAuthZList
*auth
= find_auth(mon
, aclname
);
2215 i
= qauthz_list_delete_rule(auth
, match
);
2217 monitor_printf(mon
, "acl: removed rule at position %zu\n", i
+ 1);
2219 monitor_printf(mon
, "acl: no matching acl entry\n");
2223 void qmp_getfd(const char *fdname
, Error
**errp
)
2228 fd
= qemu_chr_fe_get_msgfd(&cur_mon
->chr
);
2230 error_setg(errp
, QERR_FD_NOT_SUPPLIED
);
2234 if (qemu_isdigit(fdname
[0])) {
2236 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "fdname",
2237 "a name not starting with a digit");
2241 qemu_mutex_lock(&cur_mon
->mon_lock
);
2242 QLIST_FOREACH(monfd
, &cur_mon
->fds
, next
) {
2243 if (strcmp(monfd
->name
, fdname
) != 0) {
2249 qemu_mutex_unlock(&cur_mon
->mon_lock
);
2250 /* Make sure close() is outside critical section */
2255 monfd
= g_malloc0(sizeof(mon_fd_t
));
2256 monfd
->name
= g_strdup(fdname
);
2259 QLIST_INSERT_HEAD(&cur_mon
->fds
, monfd
, next
);
2260 qemu_mutex_unlock(&cur_mon
->mon_lock
);
2263 void qmp_closefd(const char *fdname
, Error
**errp
)
2268 qemu_mutex_lock(&cur_mon
->mon_lock
);
2269 QLIST_FOREACH(monfd
, &cur_mon
->fds
, next
) {
2270 if (strcmp(monfd
->name
, fdname
) != 0) {
2274 QLIST_REMOVE(monfd
, next
);
2276 g_free(monfd
->name
);
2278 qemu_mutex_unlock(&cur_mon
->mon_lock
);
2279 /* Make sure close() is outside critical section */
2284 qemu_mutex_unlock(&cur_mon
->mon_lock
);
2285 error_setg(errp
, QERR_FD_NOT_FOUND
, fdname
);
2288 int monitor_get_fd(Monitor
*mon
, const char *fdname
, Error
**errp
)
2292 qemu_mutex_lock(&mon
->mon_lock
);
2293 QLIST_FOREACH(monfd
, &mon
->fds
, next
) {
2296 if (strcmp(monfd
->name
, fdname
) != 0) {
2302 /* caller takes ownership of fd */
2303 QLIST_REMOVE(monfd
, next
);
2304 g_free(monfd
->name
);
2306 qemu_mutex_unlock(&mon
->mon_lock
);
2311 qemu_mutex_unlock(&mon
->mon_lock
);
2312 error_setg(errp
, "File descriptor named '%s' has not been found", fdname
);
2316 static void monitor_fdset_cleanup(MonFdset
*mon_fdset
)
2318 MonFdsetFd
*mon_fdset_fd
;
2319 MonFdsetFd
*mon_fdset_fd_next
;
2321 QLIST_FOREACH_SAFE(mon_fdset_fd
, &mon_fdset
->fds
, next
, mon_fdset_fd_next
) {
2322 if ((mon_fdset_fd
->removed
||
2323 (QLIST_EMPTY(&mon_fdset
->dup_fds
) && mon_refcount
== 0)) &&
2324 runstate_is_running()) {
2325 close(mon_fdset_fd
->fd
);
2326 g_free(mon_fdset_fd
->opaque
);
2327 QLIST_REMOVE(mon_fdset_fd
, next
);
2328 g_free(mon_fdset_fd
);
2332 if (QLIST_EMPTY(&mon_fdset
->fds
) && QLIST_EMPTY(&mon_fdset
->dup_fds
)) {
2333 QLIST_REMOVE(mon_fdset
, next
);
2338 static void monitor_fdsets_cleanup(void)
2340 MonFdset
*mon_fdset
;
2341 MonFdset
*mon_fdset_next
;
2343 qemu_mutex_lock(&mon_fdsets_lock
);
2344 QLIST_FOREACH_SAFE(mon_fdset
, &mon_fdsets
, next
, mon_fdset_next
) {
2345 monitor_fdset_cleanup(mon_fdset
);
2347 qemu_mutex_unlock(&mon_fdsets_lock
);
2350 AddfdInfo
*qmp_add_fd(bool has_fdset_id
, int64_t fdset_id
, bool has_opaque
,
2351 const char *opaque
, Error
**errp
)
2354 Monitor
*mon
= cur_mon
;
2357 fd
= qemu_chr_fe_get_msgfd(&mon
->chr
);
2359 error_setg(errp
, QERR_FD_NOT_SUPPLIED
);
2363 fdinfo
= monitor_fdset_add_fd(fd
, has_fdset_id
, fdset_id
,
2364 has_opaque
, opaque
, errp
);
2376 void qmp_remove_fd(int64_t fdset_id
, bool has_fd
, int64_t fd
, Error
**errp
)
2378 MonFdset
*mon_fdset
;
2379 MonFdsetFd
*mon_fdset_fd
;
2382 qemu_mutex_lock(&mon_fdsets_lock
);
2383 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2384 if (mon_fdset
->id
!= fdset_id
) {
2387 QLIST_FOREACH(mon_fdset_fd
, &mon_fdset
->fds
, next
) {
2389 if (mon_fdset_fd
->fd
!= fd
) {
2392 mon_fdset_fd
->removed
= true;
2395 mon_fdset_fd
->removed
= true;
2398 if (has_fd
&& !mon_fdset_fd
) {
2401 monitor_fdset_cleanup(mon_fdset
);
2402 qemu_mutex_unlock(&mon_fdsets_lock
);
2407 qemu_mutex_unlock(&mon_fdsets_lock
);
2409 snprintf(fd_str
, sizeof(fd_str
), "fdset-id:%" PRId64
", fd:%" PRId64
,
2412 snprintf(fd_str
, sizeof(fd_str
), "fdset-id:%" PRId64
, fdset_id
);
2414 error_setg(errp
, QERR_FD_NOT_FOUND
, fd_str
);
2417 FdsetInfoList
*qmp_query_fdsets(Error
**errp
)
2419 MonFdset
*mon_fdset
;
2420 MonFdsetFd
*mon_fdset_fd
;
2421 FdsetInfoList
*fdset_list
= NULL
;
2423 qemu_mutex_lock(&mon_fdsets_lock
);
2424 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2425 FdsetInfoList
*fdset_info
= g_malloc0(sizeof(*fdset_info
));
2426 FdsetFdInfoList
*fdsetfd_list
= NULL
;
2428 fdset_info
->value
= g_malloc0(sizeof(*fdset_info
->value
));
2429 fdset_info
->value
->fdset_id
= mon_fdset
->id
;
2431 QLIST_FOREACH(mon_fdset_fd
, &mon_fdset
->fds
, next
) {
2432 FdsetFdInfoList
*fdsetfd_info
;
2434 fdsetfd_info
= g_malloc0(sizeof(*fdsetfd_info
));
2435 fdsetfd_info
->value
= g_malloc0(sizeof(*fdsetfd_info
->value
));
2436 fdsetfd_info
->value
->fd
= mon_fdset_fd
->fd
;
2437 if (mon_fdset_fd
->opaque
) {
2438 fdsetfd_info
->value
->has_opaque
= true;
2439 fdsetfd_info
->value
->opaque
= g_strdup(mon_fdset_fd
->opaque
);
2441 fdsetfd_info
->value
->has_opaque
= false;
2444 fdsetfd_info
->next
= fdsetfd_list
;
2445 fdsetfd_list
= fdsetfd_info
;
2448 fdset_info
->value
->fds
= fdsetfd_list
;
2450 fdset_info
->next
= fdset_list
;
2451 fdset_list
= fdset_info
;
2453 qemu_mutex_unlock(&mon_fdsets_lock
);
2458 AddfdInfo
*monitor_fdset_add_fd(int fd
, bool has_fdset_id
, int64_t fdset_id
,
2459 bool has_opaque
, const char *opaque
,
2462 MonFdset
*mon_fdset
= NULL
;
2463 MonFdsetFd
*mon_fdset_fd
;
2466 qemu_mutex_lock(&mon_fdsets_lock
);
2468 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2469 /* Break if match found or match impossible due to ordering by ID */
2470 if (fdset_id
<= mon_fdset
->id
) {
2471 if (fdset_id
< mon_fdset
->id
) {
2479 if (mon_fdset
== NULL
) {
2480 int64_t fdset_id_prev
= -1;
2481 MonFdset
*mon_fdset_cur
= QLIST_FIRST(&mon_fdsets
);
2485 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "fdset-id",
2486 "a non-negative value");
2487 qemu_mutex_unlock(&mon_fdsets_lock
);
2490 /* Use specified fdset ID */
2491 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2492 mon_fdset_cur
= mon_fdset
;
2493 if (fdset_id
< mon_fdset_cur
->id
) {
2498 /* Use first available fdset ID */
2499 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2500 mon_fdset_cur
= mon_fdset
;
2501 if (fdset_id_prev
== mon_fdset_cur
->id
- 1) {
2502 fdset_id_prev
= mon_fdset_cur
->id
;
2509 mon_fdset
= g_malloc0(sizeof(*mon_fdset
));
2511 mon_fdset
->id
= fdset_id
;
2513 mon_fdset
->id
= fdset_id_prev
+ 1;
2516 /* The fdset list is ordered by fdset ID */
2517 if (!mon_fdset_cur
) {
2518 QLIST_INSERT_HEAD(&mon_fdsets
, mon_fdset
, next
);
2519 } else if (mon_fdset
->id
< mon_fdset_cur
->id
) {
2520 QLIST_INSERT_BEFORE(mon_fdset_cur
, mon_fdset
, next
);
2522 QLIST_INSERT_AFTER(mon_fdset_cur
, mon_fdset
, next
);
2526 mon_fdset_fd
= g_malloc0(sizeof(*mon_fdset_fd
));
2527 mon_fdset_fd
->fd
= fd
;
2528 mon_fdset_fd
->removed
= false;
2530 mon_fdset_fd
->opaque
= g_strdup(opaque
);
2532 QLIST_INSERT_HEAD(&mon_fdset
->fds
, mon_fdset_fd
, next
);
2534 fdinfo
= g_malloc0(sizeof(*fdinfo
));
2535 fdinfo
->fdset_id
= mon_fdset
->id
;
2536 fdinfo
->fd
= mon_fdset_fd
->fd
;
2538 qemu_mutex_unlock(&mon_fdsets_lock
);
2542 int monitor_fdset_get_fd(int64_t fdset_id
, int flags
)
2547 MonFdset
*mon_fdset
;
2548 MonFdsetFd
*mon_fdset_fd
;
2552 qemu_mutex_lock(&mon_fdsets_lock
);
2553 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2554 if (mon_fdset
->id
!= fdset_id
) {
2557 QLIST_FOREACH(mon_fdset_fd
, &mon_fdset
->fds
, next
) {
2558 mon_fd_flags
= fcntl(mon_fdset_fd
->fd
, F_GETFL
);
2559 if (mon_fd_flags
== -1) {
2564 if ((flags
& O_ACCMODE
) == (mon_fd_flags
& O_ACCMODE
)) {
2565 ret
= mon_fdset_fd
->fd
;
2575 qemu_mutex_unlock(&mon_fdsets_lock
);
2580 int monitor_fdset_dup_fd_add(int64_t fdset_id
, int dup_fd
)
2582 MonFdset
*mon_fdset
;
2583 MonFdsetFd
*mon_fdset_fd_dup
;
2585 qemu_mutex_lock(&mon_fdsets_lock
);
2586 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2587 if (mon_fdset
->id
!= fdset_id
) {
2590 QLIST_FOREACH(mon_fdset_fd_dup
, &mon_fdset
->dup_fds
, next
) {
2591 if (mon_fdset_fd_dup
->fd
== dup_fd
) {
2595 mon_fdset_fd_dup
= g_malloc0(sizeof(*mon_fdset_fd_dup
));
2596 mon_fdset_fd_dup
->fd
= dup_fd
;
2597 QLIST_INSERT_HEAD(&mon_fdset
->dup_fds
, mon_fdset_fd_dup
, next
);
2598 qemu_mutex_unlock(&mon_fdsets_lock
);
2603 qemu_mutex_unlock(&mon_fdsets_lock
);
2607 static int monitor_fdset_dup_fd_find_remove(int dup_fd
, bool remove
)
2609 MonFdset
*mon_fdset
;
2610 MonFdsetFd
*mon_fdset_fd_dup
;
2612 qemu_mutex_lock(&mon_fdsets_lock
);
2613 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2614 QLIST_FOREACH(mon_fdset_fd_dup
, &mon_fdset
->dup_fds
, next
) {
2615 if (mon_fdset_fd_dup
->fd
== dup_fd
) {
2617 QLIST_REMOVE(mon_fdset_fd_dup
, next
);
2618 if (QLIST_EMPTY(&mon_fdset
->dup_fds
)) {
2619 monitor_fdset_cleanup(mon_fdset
);
2623 qemu_mutex_unlock(&mon_fdsets_lock
);
2624 return mon_fdset
->id
;
2631 qemu_mutex_unlock(&mon_fdsets_lock
);
2635 int monitor_fdset_dup_fd_find(int dup_fd
)
2637 return monitor_fdset_dup_fd_find_remove(dup_fd
, false);
2640 void monitor_fdset_dup_fd_remove(int dup_fd
)
2642 monitor_fdset_dup_fd_find_remove(dup_fd
, true);
2645 int monitor_fd_param(Monitor
*mon
, const char *fdname
, Error
**errp
)
2648 Error
*local_err
= NULL
;
2650 if (!qemu_isdigit(fdname
[0]) && mon
) {
2651 fd
= monitor_get_fd(mon
, fdname
, &local_err
);
2653 fd
= qemu_parse_fd(fdname
);
2655 error_setg(&local_err
, "Invalid file descriptor number '%s'",
2660 error_propagate(errp
, local_err
);
2669 /* Please update hmp-commands.hx when adding or changing commands */
2670 static mon_cmd_t info_cmds
[] = {
2671 #include "hmp-commands-info.h"
2675 /* mon_cmds and info_cmds would be sorted at runtime */
2676 static mon_cmd_t mon_cmds
[] = {
2677 #include "hmp-commands.h"
2681 /*******************************************************************/
2683 static const char *pch
;
2684 static sigjmp_buf expr_env
;
2687 static void GCC_FMT_ATTR(2, 3) QEMU_NORETURN
2688 expr_error(Monitor
*mon
, const char *fmt
, ...)
2692 monitor_vprintf(mon
, fmt
, ap
);
2693 monitor_printf(mon
, "\n");
2695 siglongjmp(expr_env
, 1);
2698 /* return 0 if OK, -1 if not found */
2699 static int get_monitor_def(target_long
*pval
, const char *name
)
2701 const MonitorDef
*md
= target_monitor_defs();
2702 CPUState
*cs
= mon_get_cpu();
2707 if (cs
== NULL
|| md
== NULL
) {
2711 for(; md
->name
!= NULL
; md
++) {
2712 if (compare_cmd(name
, md
->name
)) {
2713 if (md
->get_value
) {
2714 *pval
= md
->get_value(md
, md
->offset
);
2716 CPUArchState
*env
= mon_get_cpu_env();
2717 ptr
= (uint8_t *)env
+ md
->offset
;
2720 *pval
= *(int32_t *)ptr
;
2723 *pval
= *(target_long
*)ptr
;
2734 ret
= target_get_monitor_def(cs
, name
, &tmp
);
2736 *pval
= (target_long
) tmp
;
2742 static void next(void)
2746 while (qemu_isspace(*pch
))
2751 static int64_t expr_sum(Monitor
*mon
);
2753 static int64_t expr_unary(Monitor
*mon
)
2762 n
= expr_unary(mon
);
2766 n
= -expr_unary(mon
);
2770 n
= ~expr_unary(mon
);
2776 expr_error(mon
, "')' expected");
2783 expr_error(mon
, "character constant expected");
2787 expr_error(mon
, "missing terminating \' character");
2797 while ((*pch
>= 'a' && *pch
<= 'z') ||
2798 (*pch
>= 'A' && *pch
<= 'Z') ||
2799 (*pch
>= '0' && *pch
<= '9') ||
2800 *pch
== '_' || *pch
== '.') {
2801 if ((q
- buf
) < sizeof(buf
) - 1)
2805 while (qemu_isspace(*pch
))
2808 ret
= get_monitor_def(®
, buf
);
2810 expr_error(mon
, "unknown register");
2815 expr_error(mon
, "unexpected end of expression");
2820 n
= strtoull(pch
, &p
, 0);
2821 if (errno
== ERANGE
) {
2822 expr_error(mon
, "number too large");
2825 expr_error(mon
, "invalid char '%c' in expression", *p
);
2828 while (qemu_isspace(*pch
))
2836 static int64_t expr_prod(Monitor
*mon
)
2841 val
= expr_unary(mon
);
2844 if (op
!= '*' && op
!= '/' && op
!= '%')
2847 val2
= expr_unary(mon
);
2856 expr_error(mon
, "division by zero");
2867 static int64_t expr_logic(Monitor
*mon
)
2872 val
= expr_prod(mon
);
2875 if (op
!= '&' && op
!= '|' && op
!= '^')
2878 val2
= expr_prod(mon
);
2895 static int64_t expr_sum(Monitor
*mon
)
2900 val
= expr_logic(mon
);
2903 if (op
!= '+' && op
!= '-')
2906 val2
= expr_logic(mon
);
2915 static int get_expr(Monitor
*mon
, int64_t *pval
, const char **pp
)
2918 if (sigsetjmp(expr_env
, 0)) {
2922 while (qemu_isspace(*pch
))
2924 *pval
= expr_sum(mon
);
2929 static int get_double(Monitor
*mon
, double *pval
, const char **pp
)
2931 const char *p
= *pp
;
2935 d
= strtod(p
, &tailp
);
2937 monitor_printf(mon
, "Number expected\n");
2940 if (d
!= d
|| d
- d
!= 0) {
2941 /* NaN or infinity */
2942 monitor_printf(mon
, "Bad number\n");
2951 * Store the command-name in cmdname, and return a pointer to
2952 * the remaining of the command string.
2954 static const char *get_command_name(const char *cmdline
,
2955 char *cmdname
, size_t nlen
)
2958 const char *p
, *pstart
;
2961 while (qemu_isspace(*p
))
2966 while (*p
!= '\0' && *p
!= '/' && !qemu_isspace(*p
))
2971 memcpy(cmdname
, pstart
, len
);
2972 cmdname
[len
] = '\0';
2977 * Read key of 'type' into 'key' and return the current
2980 static char *key_get_info(const char *type
, char **key
)
2988 p
= strchr(type
, ':');
2995 str
= g_malloc(len
+ 1);
2996 memcpy(str
, type
, len
);
3003 static int default_fmt_format
= 'x';
3004 static int default_fmt_size
= 4;
3006 static int is_valid_option(const char *c
, const char *typestr
)
3014 typestr
= strstr(typestr
, option
);
3015 return (typestr
!= NULL
);
3018 static const mon_cmd_t
*search_dispatch_table(const mon_cmd_t
*disp_table
,
3019 const char *cmdname
)
3021 const mon_cmd_t
*cmd
;
3023 for (cmd
= disp_table
; cmd
->name
!= NULL
; cmd
++) {
3024 if (compare_cmd(cmdname
, cmd
->name
)) {
3033 * Parse command name from @cmdp according to command table @table.
3034 * If blank, return NULL.
3035 * Else, if no valid command can be found, report to @mon, and return
3037 * Else, change @cmdp to point right behind the name, and return its
3038 * command table entry.
3039 * Do not assume the return value points into @table! It doesn't when
3040 * the command is found in a sub-command table.
3042 static const mon_cmd_t
*monitor_parse_command(Monitor
*mon
,
3043 const char *cmdp_start
,
3048 const mon_cmd_t
*cmd
;
3051 /* extract the command name */
3052 p
= get_command_name(*cmdp
, cmdname
, sizeof(cmdname
));
3056 cmd
= search_dispatch_table(table
, cmdname
);
3058 monitor_printf(mon
, "unknown command: '%.*s'\n",
3059 (int)(p
- cmdp_start
), cmdp_start
);
3062 if (runstate_check(RUN_STATE_PRECONFIG
) && !cmd_can_preconfig(cmd
)) {
3063 monitor_printf(mon
, "Command '%.*s' not available with -preconfig "
3064 "until after exit_preconfig.\n",
3065 (int)(p
- cmdp_start
), cmdp_start
);
3069 /* filter out following useless space */
3070 while (qemu_isspace(*p
)) {
3075 /* search sub command */
3076 if (cmd
->sub_table
!= NULL
&& *p
!= '\0') {
3077 return monitor_parse_command(mon
, cmdp_start
, cmdp
, cmd
->sub_table
);
3084 * Parse arguments for @cmd.
3085 * If it can't be parsed, report to @mon, and return NULL.
3086 * Else, insert command arguments into a QDict, and return it.
3087 * Note: On success, caller has to free the QDict structure.
3090 static QDict
*monitor_parse_arguments(Monitor
*mon
,
3092 const mon_cmd_t
*cmd
)
3094 const char *typestr
;
3097 const char *p
= *endp
;
3099 QDict
*qdict
= qdict_new();
3101 /* parse the parameters */
3102 typestr
= cmd
->args_type
;
3104 typestr
= key_get_info(typestr
, &key
);
3116 while (qemu_isspace(*p
))
3118 if (*typestr
== '?') {
3121 /* no optional string: NULL argument */
3125 ret
= get_str(buf
, sizeof(buf
), &p
);
3129 monitor_printf(mon
, "%s: filename expected\n",
3133 monitor_printf(mon
, "%s: block device name expected\n",
3137 monitor_printf(mon
, "%s: string expected\n", cmd
->name
);
3142 qdict_put_str(qdict
, key
, buf
);
3147 QemuOptsList
*opts_list
;
3150 opts_list
= qemu_find_opts(key
);
3151 if (!opts_list
|| opts_list
->desc
->name
) {
3154 while (qemu_isspace(*p
)) {
3159 if (get_str(buf
, sizeof(buf
), &p
) < 0) {
3162 opts
= qemu_opts_parse_noisily(opts_list
, buf
, true);
3166 qemu_opts_to_qdict(opts
, qdict
);
3167 qemu_opts_del(opts
);
3172 int count
, format
, size
;
3174 while (qemu_isspace(*p
))
3180 if (qemu_isdigit(*p
)) {
3182 while (qemu_isdigit(*p
)) {
3183 count
= count
* 10 + (*p
- '0');
3221 if (*p
!= '\0' && !qemu_isspace(*p
)) {
3222 monitor_printf(mon
, "invalid char in format: '%c'\n",
3227 format
= default_fmt_format
;
3228 if (format
!= 'i') {
3229 /* for 'i', not specifying a size gives -1 as size */
3231 size
= default_fmt_size
;
3232 default_fmt_size
= size
;
3234 default_fmt_format
= format
;
3237 format
= default_fmt_format
;
3238 if (format
!= 'i') {
3239 size
= default_fmt_size
;
3244 qdict_put_int(qdict
, "count", count
);
3245 qdict_put_int(qdict
, "format", format
);
3246 qdict_put_int(qdict
, "size", size
);
3255 while (qemu_isspace(*p
))
3257 if (*typestr
== '?' || *typestr
== '.') {
3258 if (*typestr
== '?') {
3266 while (qemu_isspace(*p
))
3275 if (get_expr(mon
, &val
, &p
))
3277 /* Check if 'i' is greater than 32-bit */
3278 if ((c
== 'i') && ((val
>> 32) & 0xffffffff)) {
3279 monitor_printf(mon
, "\'%s\' has failed: ", cmd
->name
);
3280 monitor_printf(mon
, "integer is for 32-bit values\n");
3282 } else if (c
== 'M') {
3284 monitor_printf(mon
, "enter a positive value\n");
3289 qdict_put_int(qdict
, key
, val
);
3298 while (qemu_isspace(*p
)) {
3301 if (*typestr
== '?') {
3307 ret
= qemu_strtosz_MiB(p
, &end
, &val
);
3308 if (ret
< 0 || val
> INT64_MAX
) {
3309 monitor_printf(mon
, "invalid size\n");
3312 qdict_put_int(qdict
, key
, val
);
3320 while (qemu_isspace(*p
))
3322 if (*typestr
== '?') {
3328 if (get_double(mon
, &val
, &p
) < 0) {
3331 if (p
[0] && p
[1] == 's') {
3334 val
/= 1e3
; p
+= 2; break;
3336 val
/= 1e6
; p
+= 2; break;
3338 val
/= 1e9
; p
+= 2; break;
3341 if (*p
&& !qemu_isspace(*p
)) {
3342 monitor_printf(mon
, "Unknown unit suffix\n");
3345 qdict_put(qdict
, key
, qnum_from_double(val
));
3353 while (qemu_isspace(*p
)) {
3357 while (qemu_isgraph(*p
)) {
3360 if (p
- beg
== 2 && !memcmp(beg
, "on", p
- beg
)) {
3362 } else if (p
- beg
== 3 && !memcmp(beg
, "off", p
- beg
)) {
3365 monitor_printf(mon
, "Expected 'on' or 'off'\n");
3368 qdict_put_bool(qdict
, key
, val
);
3373 const char *tmp
= p
;
3380 while (qemu_isspace(*p
))
3385 if(!is_valid_option(p
, typestr
)) {
3387 monitor_printf(mon
, "%s: unsupported option -%c\n",
3399 qdict_put_bool(qdict
, key
, true);
3406 /* package all remaining string */
3409 while (qemu_isspace(*p
)) {
3412 if (*typestr
== '?') {
3415 /* no remaining string: NULL argument */
3421 monitor_printf(mon
, "%s: string expected\n",
3425 qdict_put_str(qdict
, key
, p
);
3431 monitor_printf(mon
, "%s: unknown type '%c'\n", cmd
->name
, c
);
3437 /* check that all arguments were parsed */
3438 while (qemu_isspace(*p
))
3441 monitor_printf(mon
, "%s: extraneous characters at the end of line\n",
3449 qobject_unref(qdict
);
3454 static void handle_hmp_command(Monitor
*mon
, const char *cmdline
)
3457 const mon_cmd_t
*cmd
;
3458 const char *cmd_start
= cmdline
;
3460 trace_handle_hmp_command(mon
, cmdline
);
3462 cmd
= monitor_parse_command(mon
, cmdline
, &cmdline
, mon
->cmd_table
);
3467 qdict
= monitor_parse_arguments(mon
, &cmdline
, cmd
);
3469 while (cmdline
> cmd_start
&& qemu_isspace(cmdline
[-1])) {
3472 monitor_printf(mon
, "Try \"help %.*s\" for more information\n",
3473 (int)(cmdline
- cmd_start
), cmd_start
);
3477 cmd
->cmd(mon
, qdict
);
3478 qobject_unref(qdict
);
3481 static void cmd_completion(Monitor
*mon
, const char *name
, const char *list
)
3483 const char *p
, *pstart
;
3490 p
= qemu_strchrnul(p
, '|');
3492 if (len
> sizeof(cmd
) - 2)
3493 len
= sizeof(cmd
) - 2;
3494 memcpy(cmd
, pstart
, len
);
3496 if (name
[0] == '\0' || !strncmp(name
, cmd
, strlen(name
))) {
3497 readline_add_completion(mon
->rs
, cmd
);
3505 static void file_completion(Monitor
*mon
, const char *input
)
3510 char file
[1024], file_prefix
[1024];
3514 p
= strrchr(input
, '/');
3517 pstrcpy(file_prefix
, sizeof(file_prefix
), input
);
3518 pstrcpy(path
, sizeof(path
), ".");
3520 input_path_len
= p
- input
+ 1;
3521 memcpy(path
, input
, input_path_len
);
3522 if (input_path_len
> sizeof(path
) - 1)
3523 input_path_len
= sizeof(path
) - 1;
3524 path
[input_path_len
] = '\0';
3525 pstrcpy(file_prefix
, sizeof(file_prefix
), p
+ 1);
3528 ffs
= opendir(path
);
3537 if (strcmp(d
->d_name
, ".") == 0 || strcmp(d
->d_name
, "..") == 0) {
3541 if (strstart(d
->d_name
, file_prefix
, NULL
)) {
3542 memcpy(file
, input
, input_path_len
);
3543 if (input_path_len
< sizeof(file
))
3544 pstrcpy(file
+ input_path_len
, sizeof(file
) - input_path_len
,
3546 /* stat the file to find out if it's a directory.
3547 * In that case add a slash to speed up typing long paths
3549 if (stat(file
, &sb
) == 0 && S_ISDIR(sb
.st_mode
)) {
3550 pstrcat(file
, sizeof(file
), "/");
3552 readline_add_completion(mon
->rs
, file
);
3558 static const char *next_arg_type(const char *typestr
)
3560 const char *p
= strchr(typestr
, ':');
3561 return (p
!= NULL
? ++p
: typestr
);
3564 static void add_completion_option(ReadLineState
*rs
, const char *str
,
3567 if (!str
|| !option
) {
3570 if (!strncmp(option
, str
, strlen(str
))) {
3571 readline_add_completion(rs
, option
);
3575 void chardev_add_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3578 ChardevBackendInfoList
*list
, *start
;
3584 readline_set_completion_index(rs
, len
);
3586 start
= list
= qmp_query_chardev_backends(NULL
);
3588 const char *chr_name
= list
->value
->name
;
3590 if (!strncmp(chr_name
, str
, len
)) {
3591 readline_add_completion(rs
, chr_name
);
3595 qapi_free_ChardevBackendInfoList(start
);
3598 void netdev_add_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3607 readline_set_completion_index(rs
, len
);
3608 for (i
= 0; i
< NET_CLIENT_DRIVER__MAX
; i
++) {
3609 add_completion_option(rs
, str
, NetClientDriver_str(i
));
3613 void device_add_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3623 readline_set_completion_index(rs
, len
);
3624 list
= elt
= object_class_get_list(TYPE_DEVICE
, false);
3627 DeviceClass
*dc
= OBJECT_CLASS_CHECK(DeviceClass
, elt
->data
,
3629 name
= object_class_get_name(OBJECT_CLASS(dc
));
3631 if (dc
->user_creatable
3632 && !strncmp(name
, str
, len
)) {
3633 readline_add_completion(rs
, name
);
3640 void object_add_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3650 readline_set_completion_index(rs
, len
);
3651 list
= elt
= object_class_get_list(TYPE_USER_CREATABLE
, false);
3655 name
= object_class_get_name(OBJECT_CLASS(elt
->data
));
3656 if (!strncmp(name
, str
, len
) && strcmp(name
, TYPE_USER_CREATABLE
)) {
3657 readline_add_completion(rs
, name
);
3664 static void peripheral_device_del_completion(ReadLineState
*rs
,
3665 const char *str
, size_t len
)
3667 Object
*peripheral
= container_get(qdev_get_machine(), "/peripheral");
3668 GSList
*list
, *item
;
3670 list
= qdev_build_hotpluggable_device_list(peripheral
);
3675 for (item
= list
; item
; item
= g_slist_next(item
)) {
3676 DeviceState
*dev
= item
->data
;
3678 if (dev
->id
&& !strncmp(str
, dev
->id
, len
)) {
3679 readline_add_completion(rs
, dev
->id
);
3686 void chardev_remove_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3689 ChardevInfoList
*list
, *start
;
3695 readline_set_completion_index(rs
, len
);
3697 start
= list
= qmp_query_chardev(NULL
);
3699 ChardevInfo
*chr
= list
->value
;
3701 if (!strncmp(chr
->label
, str
, len
)) {
3702 readline_add_completion(rs
, chr
->label
);
3706 qapi_free_ChardevInfoList(start
);
3709 static void ringbuf_completion(ReadLineState
*rs
, const char *str
)
3712 ChardevInfoList
*list
, *start
;
3715 readline_set_completion_index(rs
, len
);
3717 start
= list
= qmp_query_chardev(NULL
);
3719 ChardevInfo
*chr_info
= list
->value
;
3721 if (!strncmp(chr_info
->label
, str
, len
)) {
3722 Chardev
*chr
= qemu_chr_find(chr_info
->label
);
3723 if (chr
&& CHARDEV_IS_RINGBUF(chr
)) {
3724 readline_add_completion(rs
, chr_info
->label
);
3729 qapi_free_ChardevInfoList(start
);
3732 void ringbuf_write_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3737 ringbuf_completion(rs
, str
);
3740 void device_del_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3749 readline_set_completion_index(rs
, len
);
3750 peripheral_device_del_completion(rs
, str
, len
);
3753 void object_del_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3755 ObjectPropertyInfoList
*list
, *start
;
3762 readline_set_completion_index(rs
, len
);
3764 start
= list
= qmp_qom_list("/objects", NULL
);
3766 ObjectPropertyInfo
*info
= list
->value
;
3768 if (!strncmp(info
->type
, "child<", 5)
3769 && !strncmp(info
->name
, str
, len
)) {
3770 readline_add_completion(rs
, info
->name
);
3774 qapi_free_ObjectPropertyInfoList(start
);
3777 void sendkey_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3786 sep
= strrchr(str
, '-');
3791 readline_set_completion_index(rs
, len
);
3792 for (i
= 0; i
< Q_KEY_CODE__MAX
; i
++) {
3793 if (!strncmp(str
, QKeyCode_str(i
), len
)) {
3794 readline_add_completion(rs
, QKeyCode_str(i
));
3799 void set_link_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3804 readline_set_completion_index(rs
, len
);
3806 NetClientState
*ncs
[MAX_QUEUE_NUM
];
3808 count
= qemu_find_net_clients_except(NULL
, ncs
,
3809 NET_CLIENT_DRIVER_NONE
,
3811 for (i
= 0; i
< MIN(count
, MAX_QUEUE_NUM
); i
++) {
3812 const char *name
= ncs
[i
]->name
;
3813 if (!strncmp(str
, name
, len
)) {
3814 readline_add_completion(rs
, name
);
3817 } else if (nb_args
== 3) {
3818 add_completion_option(rs
, str
, "on");
3819 add_completion_option(rs
, str
, "off");
3823 void netdev_del_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3826 NetClientState
*ncs
[MAX_QUEUE_NUM
];
3833 readline_set_completion_index(rs
, len
);
3834 count
= qemu_find_net_clients_except(NULL
, ncs
, NET_CLIENT_DRIVER_NIC
,
3836 for (i
= 0; i
< MIN(count
, MAX_QUEUE_NUM
); i
++) {
3838 const char *name
= ncs
[i
]->name
;
3839 if (strncmp(str
, name
, len
)) {
3842 opts
= qemu_opts_find(qemu_find_opts_err("netdev", NULL
), name
);
3844 readline_add_completion(rs
, name
);
3849 void info_trace_events_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3854 readline_set_completion_index(rs
, len
);
3856 TraceEventIter iter
;
3858 char *pattern
= g_strdup_printf("%s*", str
);
3859 trace_event_iter_init(&iter
, pattern
);
3860 while ((ev
= trace_event_iter_next(&iter
)) != NULL
) {
3861 readline_add_completion(rs
, trace_event_get_name(ev
));
3867 void trace_event_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3872 readline_set_completion_index(rs
, len
);
3874 TraceEventIter iter
;
3876 char *pattern
= g_strdup_printf("%s*", str
);
3877 trace_event_iter_init(&iter
, pattern
);
3878 while ((ev
= trace_event_iter_next(&iter
)) != NULL
) {
3879 readline_add_completion(rs
, trace_event_get_name(ev
));
3882 } else if (nb_args
== 3) {
3883 add_completion_option(rs
, str
, "on");
3884 add_completion_option(rs
, str
, "off");
3888 void watchdog_action_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3895 readline_set_completion_index(rs
, strlen(str
));
3896 for (i
= 0; i
< WATCHDOG_ACTION__MAX
; i
++) {
3897 add_completion_option(rs
, str
, WatchdogAction_str(i
));
3901 void migrate_set_capability_completion(ReadLineState
*rs
, int nb_args
,
3907 readline_set_completion_index(rs
, len
);
3910 for (i
= 0; i
< MIGRATION_CAPABILITY__MAX
; i
++) {
3911 const char *name
= MigrationCapability_str(i
);
3912 if (!strncmp(str
, name
, len
)) {
3913 readline_add_completion(rs
, name
);
3916 } else if (nb_args
== 3) {
3917 add_completion_option(rs
, str
, "on");
3918 add_completion_option(rs
, str
, "off");
3922 void migrate_set_parameter_completion(ReadLineState
*rs
, int nb_args
,
3928 readline_set_completion_index(rs
, len
);
3931 for (i
= 0; i
< MIGRATION_PARAMETER__MAX
; i
++) {
3932 const char *name
= MigrationParameter_str(i
);
3933 if (!strncmp(str
, name
, len
)) {
3934 readline_add_completion(rs
, name
);
3940 static void vm_completion(ReadLineState
*rs
, const char *str
)
3943 BlockDriverState
*bs
;
3944 BdrvNextIterator it
;
3947 readline_set_completion_index(rs
, len
);
3949 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
3950 SnapshotInfoList
*snapshots
, *snapshot
;
3951 AioContext
*ctx
= bdrv_get_aio_context(bs
);
3954 aio_context_acquire(ctx
);
3955 if (bdrv_can_snapshot(bs
)) {
3956 ok
= bdrv_query_snapshot_info_list(bs
, &snapshots
, NULL
) == 0;
3958 aio_context_release(ctx
);
3963 snapshot
= snapshots
;
3965 char *completion
= snapshot
->value
->name
;
3966 if (!strncmp(str
, completion
, len
)) {
3967 readline_add_completion(rs
, completion
);
3969 completion
= snapshot
->value
->id
;
3970 if (!strncmp(str
, completion
, len
)) {
3971 readline_add_completion(rs
, completion
);
3973 snapshot
= snapshot
->next
;
3975 qapi_free_SnapshotInfoList(snapshots
);
3980 void delvm_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3983 vm_completion(rs
, str
);
3987 void loadvm_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3990 vm_completion(rs
, str
);
3994 static void monitor_find_completion_by_table(Monitor
*mon
,
3995 const mon_cmd_t
*cmd_table
,
3999 const char *cmdname
;
4001 const char *ptype
, *old_ptype
, *str
, *name
;
4002 const mon_cmd_t
*cmd
;
4003 BlockBackend
*blk
= NULL
;
4006 /* command completion */
4011 readline_set_completion_index(mon
->rs
, strlen(cmdname
));
4012 for (cmd
= cmd_table
; cmd
->name
!= NULL
; cmd
++) {
4013 if (!runstate_check(RUN_STATE_PRECONFIG
) ||
4014 cmd_can_preconfig(cmd
)) {
4015 cmd_completion(mon
, cmdname
, cmd
->name
);
4019 /* find the command */
4020 for (cmd
= cmd_table
; cmd
->name
!= NULL
; cmd
++) {
4021 if (compare_cmd(args
[0], cmd
->name
) &&
4022 (!runstate_check(RUN_STATE_PRECONFIG
) ||
4023 cmd_can_preconfig(cmd
))) {
4031 if (cmd
->sub_table
) {
4032 /* do the job again */
4033 monitor_find_completion_by_table(mon
, cmd
->sub_table
,
4034 &args
[1], nb_args
- 1);
4037 if (cmd
->command_completion
) {
4038 cmd
->command_completion(mon
->rs
, nb_args
, args
[nb_args
- 1]);
4042 ptype
= next_arg_type(cmd
->args_type
);
4043 for(i
= 0; i
< nb_args
- 2; i
++) {
4044 if (*ptype
!= '\0') {
4045 ptype
= next_arg_type(ptype
);
4046 while (*ptype
== '?')
4047 ptype
= next_arg_type(ptype
);
4050 str
= args
[nb_args
- 1];
4052 while (*ptype
== '-' && old_ptype
!= ptype
) {
4054 ptype
= next_arg_type(ptype
);
4058 /* file completion */
4059 readline_set_completion_index(mon
->rs
, strlen(str
));
4060 file_completion(mon
, str
);
4063 /* block device name completion */
4064 readline_set_completion_index(mon
->rs
, strlen(str
));
4065 while ((blk
= blk_next(blk
)) != NULL
) {
4066 name
= blk_name(blk
);
4067 if (str
[0] == '\0' ||
4068 !strncmp(name
, str
, strlen(str
))) {
4069 readline_add_completion(mon
->rs
, name
);
4075 if (!strcmp(cmd
->name
, "help|?")) {
4076 monitor_find_completion_by_table(mon
, cmd_table
,
4077 &args
[1], nb_args
- 1);
4086 static void monitor_find_completion(void *opaque
,
4087 const char *cmdline
)
4089 Monitor
*mon
= opaque
;
4090 char *args
[MAX_ARGS
];
4093 /* 1. parse the cmdline */
4094 if (parse_cmdline(cmdline
, &nb_args
, args
) < 0) {
4098 /* if the line ends with a space, it means we want to complete the
4100 len
= strlen(cmdline
);
4101 if (len
> 0 && qemu_isspace(cmdline
[len
- 1])) {
4102 if (nb_args
>= MAX_ARGS
) {
4105 args
[nb_args
++] = g_strdup("");
4108 /* 2. auto complete according to args */
4109 monitor_find_completion_by_table(mon
, mon
->cmd_table
, args
, nb_args
);
4112 free_cmdline_args(args
, nb_args
);
4115 static int monitor_can_read(void *opaque
)
4117 Monitor
*mon
= opaque
;
4119 return !atomic_mb_read(&mon
->suspend_cnt
);
4123 * Emit QMP response @rsp with ID @id to @mon.
4124 * Null @rsp can only happen for commands with QCO_NO_SUCCESS_RESP.
4125 * Nothing is emitted then.
4127 static void monitor_qmp_respond(Monitor
*mon
, QDict
*rsp
)
4130 qmp_send_response(mon
, rsp
);
4134 static void monitor_qmp_dispatch(Monitor
*mon
, QObject
*req
)
4143 rsp
= qmp_dispatch(mon
->qmp
.commands
, req
, qmp_oob_enabled(mon
));
4147 if (mon
->qmp
.commands
== &qmp_cap_negotiation_commands
) {
4148 error
= qdict_get_qdict(rsp
, "error");
4150 && !g_strcmp0(qdict_get_try_str(error
, "class"),
4151 QapiErrorClass_str(ERROR_CLASS_COMMAND_NOT_FOUND
))) {
4152 /* Provide a more useful error message */
4153 qdict_del(error
, "desc");
4154 qdict_put_str(error
, "desc", "Expecting capabilities negotiation"
4155 " with 'qmp_capabilities'");
4159 monitor_qmp_respond(mon
, rsp
);
4164 * Pop a QMP request from a monitor request queue.
4165 * Return the request, or NULL all request queues are empty.
4166 * We are using round-robin fashion to pop the request, to avoid
4167 * processing commands only on a very busy monitor. To achieve that,
4168 * when we process one request on a specific monitor, we put that
4169 * monitor to the end of mon_list queue.
4171 * Note: if the function returned with non-NULL, then the caller will
4172 * be with mon->qmp.qmp_queue_lock held, and the caller is responsible
4175 static QMPRequest
*monitor_qmp_requests_pop_any_with_lock(void)
4177 QMPRequest
*req_obj
= NULL
;
4180 qemu_mutex_lock(&monitor_lock
);
4182 QTAILQ_FOREACH(mon
, &mon_list
, entry
) {
4183 qemu_mutex_lock(&mon
->qmp
.qmp_queue_lock
);
4184 req_obj
= g_queue_pop_head(mon
->qmp
.qmp_requests
);
4186 /* With the lock of corresponding queue held */
4189 qemu_mutex_unlock(&mon
->qmp
.qmp_queue_lock
);
4194 * We found one request on the monitor. Degrade this monitor's
4195 * priority to lowest by re-inserting it to end of queue.
4197 QTAILQ_REMOVE(&mon_list
, mon
, entry
);
4198 QTAILQ_INSERT_TAIL(&mon_list
, mon
, entry
);
4201 qemu_mutex_unlock(&monitor_lock
);
4206 static void monitor_qmp_bh_dispatcher(void *data
)
4208 QMPRequest
*req_obj
= monitor_qmp_requests_pop_any_with_lock();
4218 /* qmp_oob_enabled() might change after "qmp_capabilities" */
4219 need_resume
= !qmp_oob_enabled(mon
) ||
4220 mon
->qmp
.qmp_requests
->length
== QMP_REQ_QUEUE_LEN_MAX
- 1;
4221 qemu_mutex_unlock(&mon
->qmp
.qmp_queue_lock
);
4223 QDict
*qdict
= qobject_to(QDict
, req_obj
->req
);
4224 QObject
*id
= qdict
? qdict_get(qdict
, "id") : NULL
;
4225 trace_monitor_qmp_cmd_in_band(qobject_get_try_str(id
) ?: "");
4226 monitor_qmp_dispatch(mon
, req_obj
->req
);
4228 assert(req_obj
->err
);
4229 rsp
= qmp_error_response(req_obj
->err
);
4230 req_obj
->err
= NULL
;
4231 monitor_qmp_respond(mon
, rsp
);
4236 /* Pairs with the monitor_suspend() in handle_qmp_command() */
4237 monitor_resume(mon
);
4239 qmp_request_free(req_obj
);
4241 /* Reschedule instead of looping so the main loop stays responsive */
4242 qemu_bh_schedule(qmp_dispatcher_bh
);
4245 static void handle_qmp_command(void *opaque
, QObject
*req
, Error
*err
)
4247 Monitor
*mon
= opaque
;
4250 QMPRequest
*req_obj
;
4252 assert(!req
!= !err
);
4254 qdict
= qobject_to(QDict
, req
);
4256 id
= qdict_get(qdict
, "id");
4257 } /* else will fail qmp_dispatch() */
4259 if (req
&& trace_event_get_state_backends(TRACE_HANDLE_QMP_COMMAND
)) {
4260 QString
*req_json
= qobject_to_json(req
);
4261 trace_handle_qmp_command(mon
, qstring_get_str(req_json
));
4262 qobject_unref(req_json
);
4265 if (qdict
&& qmp_is_oob(qdict
)) {
4266 /* OOB commands are executed immediately */
4267 trace_monitor_qmp_cmd_out_of_band(qobject_get_try_str(id
) ?: "");
4268 monitor_qmp_dispatch(mon
, req
);
4273 req_obj
= g_new0(QMPRequest
, 1);
4278 /* Protect qmp_requests and fetching its length. */
4279 qemu_mutex_lock(&mon
->qmp
.qmp_queue_lock
);
4282 * Suspend the monitor when we can't queue more requests after
4283 * this one. Dequeuing in monitor_qmp_bh_dispatcher() will resume
4284 * it. Note that when OOB is disabled, we queue at most one
4285 * command, for backward compatibility.
4287 if (!qmp_oob_enabled(mon
) ||
4288 mon
->qmp
.qmp_requests
->length
== QMP_REQ_QUEUE_LEN_MAX
- 1) {
4289 monitor_suspend(mon
);
4293 * Put the request to the end of queue so that requests will be
4294 * handled in time order. Ownership for req_obj, req,
4295 * etc. will be delivered to the handler side.
4297 assert(mon
->qmp
.qmp_requests
->length
< QMP_REQ_QUEUE_LEN_MAX
);
4298 g_queue_push_tail(mon
->qmp
.qmp_requests
, req_obj
);
4299 qemu_mutex_unlock(&mon
->qmp
.qmp_queue_lock
);
4301 /* Kick the dispatcher routine */
4302 qemu_bh_schedule(qmp_dispatcher_bh
);
4305 static void monitor_qmp_read(void *opaque
, const uint8_t *buf
, int size
)
4307 Monitor
*mon
= opaque
;
4309 json_message_parser_feed(&mon
->qmp
.parser
, (const char *) buf
, size
);
4312 static void monitor_read(void *opaque
, const uint8_t *buf
, int size
)
4314 Monitor
*old_mon
= cur_mon
;
4320 for (i
= 0; i
< size
; i
++)
4321 readline_handle_byte(cur_mon
->rs
, buf
[i
]);
4323 if (size
== 0 || buf
[size
- 1] != 0)
4324 monitor_printf(cur_mon
, "corrupted command\n");
4326 handle_hmp_command(cur_mon
, (char *)buf
);
4332 static void monitor_command_cb(void *opaque
, const char *cmdline
,
4333 void *readline_opaque
)
4335 Monitor
*mon
= opaque
;
4337 monitor_suspend(mon
);
4338 handle_hmp_command(mon
, cmdline
);
4339 monitor_resume(mon
);
4342 int monitor_suspend(Monitor
*mon
)
4344 if (monitor_is_hmp_non_interactive(mon
)) {
4348 atomic_inc(&mon
->suspend_cnt
);
4350 if (mon
->use_io_thread
) {
4352 * Kick I/O thread to make sure this takes effect. It'll be
4353 * evaluated again in prepare() of the watch object.
4355 aio_notify(iothread_get_aio_context(mon_iothread
));
4358 trace_monitor_suspend(mon
, 1);
4362 static void monitor_accept_input(void *opaque
)
4364 Monitor
*mon
= opaque
;
4366 qemu_chr_fe_accept_input(&mon
->chr
);
4369 void monitor_resume(Monitor
*mon
)
4371 if (monitor_is_hmp_non_interactive(mon
)) {
4375 if (atomic_dec_fetch(&mon
->suspend_cnt
) == 0) {
4378 if (mon
->use_io_thread
) {
4379 ctx
= iothread_get_aio_context(mon_iothread
);
4381 ctx
= qemu_get_aio_context();
4384 if (!monitor_is_qmp(mon
)) {
4386 readline_show_prompt(mon
->rs
);
4389 aio_bh_schedule_oneshot(ctx
, monitor_accept_input
, mon
);
4392 trace_monitor_suspend(mon
, -1);
4395 static QDict
*qmp_greeting(Monitor
*mon
)
4397 QList
*cap_list
= qlist_new();
4398 QObject
*ver
= NULL
;
4401 qmp_marshal_query_version(NULL
, &ver
, NULL
);
4403 for (cap
= 0; cap
< QMP_CAPABILITY__MAX
; cap
++) {
4404 if (mon
->qmp
.capab_offered
[cap
]) {
4405 qlist_append_str(cap_list
, QMPCapability_str(cap
));
4409 return qdict_from_jsonf_nofail(
4410 "{'QMP': {'version': %p, 'capabilities': %p}}",
4414 static void monitor_qmp_event(void *opaque
, int event
)
4417 Monitor
*mon
= opaque
;
4420 case CHR_EVENT_OPENED
:
4421 mon
->qmp
.commands
= &qmp_cap_negotiation_commands
;
4422 monitor_qmp_caps_reset(mon
);
4423 data
= qmp_greeting(mon
);
4424 qmp_send_response(mon
, data
);
4425 qobject_unref(data
);
4428 case CHR_EVENT_CLOSED
:
4430 * Note: this is only useful when the output of the chardev
4431 * backend is still open. For example, when the backend is
4432 * stdio, it's possible that stdout is still open when stdin
4435 monitor_qmp_cleanup_queues(mon
);
4436 json_message_parser_destroy(&mon
->qmp
.parser
);
4437 json_message_parser_init(&mon
->qmp
.parser
, handle_qmp_command
,
4440 monitor_fdsets_cleanup();
4445 static void monitor_event(void *opaque
, int event
)
4447 Monitor
*mon
= opaque
;
4450 case CHR_EVENT_MUX_IN
:
4451 qemu_mutex_lock(&mon
->mon_lock
);
4453 qemu_mutex_unlock(&mon
->mon_lock
);
4454 if (mon
->reset_seen
) {
4455 readline_restart(mon
->rs
);
4456 monitor_resume(mon
);
4459 atomic_mb_set(&mon
->suspend_cnt
, 0);
4463 case CHR_EVENT_MUX_OUT
:
4464 if (mon
->reset_seen
) {
4465 if (atomic_mb_read(&mon
->suspend_cnt
) == 0) {
4466 monitor_printf(mon
, "\n");
4469 monitor_suspend(mon
);
4471 atomic_inc(&mon
->suspend_cnt
);
4473 qemu_mutex_lock(&mon
->mon_lock
);
4475 qemu_mutex_unlock(&mon
->mon_lock
);
4478 case CHR_EVENT_OPENED
:
4479 monitor_printf(mon
, "QEMU %s monitor - type 'help' for more "
4480 "information\n", QEMU_VERSION
);
4481 if (!mon
->mux_out
) {
4482 readline_restart(mon
->rs
);
4483 readline_show_prompt(mon
->rs
);
4485 mon
->reset_seen
= 1;
4489 case CHR_EVENT_CLOSED
:
4491 monitor_fdsets_cleanup();
4497 compare_mon_cmd(const void *a
, const void *b
)
4499 return strcmp(((const mon_cmd_t
*)a
)->name
,
4500 ((const mon_cmd_t
*)b
)->name
);
4503 static void sortcmdlist(void)
4506 int elem_size
= sizeof(mon_cmd_t
);
4508 array_num
= sizeof(mon_cmds
)/elem_size
-1;
4509 qsort((void *)mon_cmds
, array_num
, elem_size
, compare_mon_cmd
);
4511 array_num
= sizeof(info_cmds
)/elem_size
-1;
4512 qsort((void *)info_cmds
, array_num
, elem_size
, compare_mon_cmd
);
4515 static void monitor_iothread_init(void)
4517 mon_iothread
= iothread_create("mon_iothread", &error_abort
);
4520 void monitor_init_globals(void)
4522 monitor_init_qmp_commands();
4523 monitor_qapi_event_init();
4525 qemu_mutex_init(&monitor_lock
);
4526 qemu_mutex_init(&mon_fdsets_lock
);
4529 * The dispatcher BH must run in the main loop thread, since we
4530 * have commands assuming that context. It would be nice to get
4531 * rid of those assumptions.
4533 qmp_dispatcher_bh
= aio_bh_new(iohandler_get_aio_context(),
4534 monitor_qmp_bh_dispatcher
,
4538 /* These functions just adapt the readline interface in a typesafe way. We
4539 * could cast function pointers but that discards compiler checks.
4541 static void GCC_FMT_ATTR(2, 3) monitor_readline_printf(void *opaque
,
4542 const char *fmt
, ...)
4546 monitor_vprintf(opaque
, fmt
, ap
);
4550 static void monitor_readline_flush(void *opaque
)
4552 monitor_flush(opaque
);
4556 * Print to current monitor if we have one, else to stderr.
4558 int error_vprintf(const char *fmt
, va_list ap
)
4560 if (cur_mon
&& !monitor_cur_is_qmp()) {
4561 return monitor_vprintf(cur_mon
, fmt
, ap
);
4563 return vfprintf(stderr
, fmt
, ap
);
4566 int error_vprintf_unless_qmp(const char *fmt
, va_list ap
)
4569 return vfprintf(stderr
, fmt
, ap
);
4571 if (!monitor_cur_is_qmp()) {
4572 return monitor_vprintf(cur_mon
, fmt
, ap
);
4577 static void monitor_list_append(Monitor
*mon
)
4579 qemu_mutex_lock(&monitor_lock
);
4581 * This prevents inserting new monitors during monitor_cleanup().
4582 * A cleaner solution would involve the main thread telling other
4583 * threads to terminate, waiting for their termination.
4585 if (!monitor_destroyed
) {
4586 QTAILQ_INSERT_HEAD(&mon_list
, mon
, entry
);
4589 qemu_mutex_unlock(&monitor_lock
);
4592 monitor_data_destroy(mon
);
4597 static void monitor_qmp_setup_handlers_bh(void *opaque
)
4599 Monitor
*mon
= opaque
;
4600 GMainContext
*context
;
4602 assert(mon
->use_io_thread
);
4603 context
= iothread_get_g_main_context(mon_iothread
);
4605 qemu_chr_fe_set_handlers(&mon
->chr
, monitor_can_read
, monitor_qmp_read
,
4606 monitor_qmp_event
, NULL
, mon
, context
, true);
4607 monitor_list_append(mon
);
4610 void monitor_init(Chardev
*chr
, int flags
)
4612 Monitor
*mon
= g_malloc(sizeof(*mon
));
4613 bool use_readline
= flags
& MONITOR_USE_READLINE
;
4615 /* Note: we run QMP monitor in I/O thread when @chr supports that */
4616 monitor_data_init(mon
, false,
4617 (flags
& MONITOR_USE_CONTROL
)
4618 && qemu_chr_has_feature(chr
,
4619 QEMU_CHAR_FEATURE_GCONTEXT
));
4621 qemu_chr_fe_init(&mon
->chr
, chr
, &error_abort
);
4624 mon
->rs
= readline_init(monitor_readline_printf
,
4625 monitor_readline_flush
,
4627 monitor_find_completion
);
4628 monitor_read_command(mon
, 0);
4631 if (monitor_is_qmp(mon
)) {
4632 qemu_chr_fe_set_echo(&mon
->chr
, true);
4633 json_message_parser_init(&mon
->qmp
.parser
, handle_qmp_command
,
4635 if (mon
->use_io_thread
) {
4637 * Make sure the old iowatch is gone. It's possible when
4638 * e.g. the chardev is in client mode, with wait=on.
4640 remove_fd_in_watch(chr
);
4642 * We can't call qemu_chr_fe_set_handlers() directly here
4643 * since chardev might be running in the monitor I/O
4644 * thread. Schedule a bottom half.
4646 aio_bh_schedule_oneshot(iothread_get_aio_context(mon_iothread
),
4647 monitor_qmp_setup_handlers_bh
, mon
);
4648 /* The bottom half will add @mon to @mon_list */
4651 qemu_chr_fe_set_handlers(&mon
->chr
, monitor_can_read
,
4652 monitor_qmp_read
, monitor_qmp_event
,
4653 NULL
, mon
, NULL
, true);
4656 qemu_chr_fe_set_handlers(&mon
->chr
, monitor_can_read
, monitor_read
,
4657 monitor_event
, NULL
, mon
, NULL
, true);
4660 monitor_list_append(mon
);
4663 void monitor_cleanup(void)
4666 * We need to explicitly stop the I/O thread (but not destroy it),
4667 * clean up the monitor resources, then destroy the I/O thread since
4668 * we need to unregister from chardev below in
4669 * monitor_data_destroy(), and chardev is not thread-safe yet
4672 iothread_stop(mon_iothread
);
4675 /* Flush output buffers and destroy monitors */
4676 qemu_mutex_lock(&monitor_lock
);
4677 monitor_destroyed
= true;
4678 while (!QTAILQ_EMPTY(&mon_list
)) {
4679 Monitor
*mon
= QTAILQ_FIRST(&mon_list
);
4680 QTAILQ_REMOVE(&mon_list
, mon
, entry
);
4681 /* Permit QAPI event emission from character frontend release */
4682 qemu_mutex_unlock(&monitor_lock
);
4684 monitor_data_destroy(mon
);
4685 qemu_mutex_lock(&monitor_lock
);
4688 qemu_mutex_unlock(&monitor_lock
);
4690 /* QEMUBHs needs to be deleted before destroying the I/O thread */
4691 qemu_bh_delete(qmp_dispatcher_bh
);
4692 qmp_dispatcher_bh
= NULL
;
4694 iothread_destroy(mon_iothread
);
4695 mon_iothread
= NULL
;
4699 QemuOptsList qemu_mon_opts
= {
4701 .implied_opt_name
= "chardev",
4702 .head
= QTAILQ_HEAD_INITIALIZER(qemu_mon_opts
.head
),
4706 .type
= QEMU_OPT_STRING
,
4709 .type
= QEMU_OPT_STRING
,
4712 .type
= QEMU_OPT_BOOL
,
4714 { /* end of list */ }
4718 HotpluggableCPUList
*qmp_query_hotpluggable_cpus(Error
**errp
)
4720 MachineState
*ms
= MACHINE(qdev_get_machine());
4721 MachineClass
*mc
= MACHINE_GET_CLASS(ms
);
4723 if (!mc
->has_hotpluggable_cpus
) {
4724 error_setg(errp
, QERR_FEATURE_DISABLED
, "query-hotpluggable-cpus");
4728 return machine_query_hotpluggable_cpus(ms
);