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"
29 #include "monitor/qdev.h"
31 #include "hw/pci/pci.h"
32 #include "sysemu/watchdog.h"
33 #include "hw/loader.h"
34 #include "exec/gdbstub.h"
36 #include "net/slirp.h"
37 #include "chardev/char-fe.h"
38 #include "chardev/char-io.h"
39 #include "chardev/char-mux.h"
40 #include "ui/qemu-spice.h"
41 #include "sysemu/numa.h"
42 #include "monitor/monitor.h"
43 #include "qemu/config-file.h"
44 #include "qemu/readline.h"
45 #include "ui/console.h"
47 #include "sysemu/block-backend.h"
48 #include "audio/audio.h"
49 #include "disas/disas.h"
50 #include "sysemu/balloon.h"
51 #include "qemu/timer.h"
52 #include "sysemu/hw_accel.h"
54 #include "sysemu/tpm.h"
55 #include "qapi/qmp/qdict.h"
56 #include "qapi/qmp/qerror.h"
57 #include "qapi/qmp/qnum.h"
58 #include "qapi/qmp/qstring.h"
59 #include "qapi/qmp/qjson.h"
60 #include "qapi/qmp/json-streamer.h"
61 #include "qapi/qmp/json-parser.h"
62 #include "qapi/qmp/qlist.h"
63 #include "qom/object_interfaces.h"
64 #include "trace-root.h"
65 #include "trace/control.h"
66 #include "monitor/hmp-target.h"
67 #ifdef CONFIG_TRACE_SIMPLE
68 #include "trace/simple.h"
70 #include "exec/memory.h"
71 #include "exec/exec-all.h"
73 #include "qemu/option.h"
75 #include "qemu/thread.h"
76 #include "block/qapi.h"
77 #include "qapi/qapi-commands.h"
78 #include "qapi/qapi-events.h"
79 #include "qapi/error.h"
80 #include "qapi/qmp-event.h"
81 #include "qapi/qapi-introspect.h"
82 #include "sysemu/qtest.h"
83 #include "sysemu/cpus.h"
84 #include "sysemu/iothread.h"
85 #include "qemu/cutils.h"
87 #if defined(TARGET_S390X)
88 #include "hw/s390x/storage-keys.h"
89 #include "hw/s390x/storage-attributes.h"
96 * 'B' block device name
97 * 's' string (accept optional quote)
98 * 'S' it just appends the rest of the string (accept optional quote)
99 * 'O' option string of the form NAME=VALUE,...
100 * parsed according to QemuOptsList given by its name
101 * Example: 'device:O' uses qemu_device_opts.
102 * Restriction: only lists with empty desc are supported
103 * TODO lift the restriction
105 * 'l' target long (32 or 64 bit)
106 * 'M' Non-negative target long (32 or 64 bit), in user mode the
107 * value is multiplied by 2^20 (think Mebibyte)
108 * 'o' octets (aka bytes)
109 * user mode accepts an optional E, e, P, p, T, t, G, g, M, m,
110 * K, k suffix, which multiplies the value by 2^60 for suffixes E
111 * and e, 2^50 for suffixes P and p, 2^40 for suffixes T and t,
112 * 2^30 for suffixes G and g, 2^20 for M and m, 2^10 for K and k
114 * user mode accepts an optional ms, us, ns suffix,
115 * which divides the value by 1e3, 1e6, 1e9, respectively
116 * '/' optional gdb-like print format (like "/10x")
118 * '?' optional type (for all types, except '/')
119 * '.' other form of optional type (for 'i' and 'l')
121 * user mode accepts "on" or "off"
122 * '-' optional parameter (eg. '-f')
126 typedef struct mon_cmd_t
{
128 const char *args_type
;
131 void (*cmd
)(Monitor
*mon
, const QDict
*qdict
);
132 /* @sub_table is a list of 2nd level of commands. If it does not exist,
133 * cmd should be used. If it exists, sub_table[?].cmd should be
134 * used, and cmd of 1st level plays the role of help function.
136 struct mon_cmd_t
*sub_table
;
137 void (*command_completion
)(ReadLineState
*rs
, int nb_args
, const char *str
);
140 /* file descriptors passed via SCM_RIGHTS */
141 typedef struct mon_fd_t mon_fd_t
;
145 QLIST_ENTRY(mon_fd_t
) next
;
148 /* file descriptor associated with a file descriptor set */
149 typedef struct MonFdsetFd MonFdsetFd
;
154 QLIST_ENTRY(MonFdsetFd
) next
;
157 /* file descriptor set containing fds passed via SCM_RIGHTS */
158 typedef struct MonFdset MonFdset
;
161 QLIST_HEAD(, MonFdsetFd
) fds
;
162 QLIST_HEAD(, MonFdsetFd
) dup_fds
;
163 QLIST_ENTRY(MonFdset
) next
;
167 JSONMessageParser parser
;
169 * When a client connects, we're in capabilities negotiation mode.
170 * When command qmp_capabilities succeeds, we go into command
173 QmpCommandList
*commands
;
174 bool qmp_caps
[QMP_CAPABILITY__MAX
];
176 * Protects qmp request/response queue. Please take monitor_lock
177 * first when used together.
179 QemuMutex qmp_queue_lock
;
180 /* Input queue that holds all the parsed QMP requests */
181 GQueue
*qmp_requests
;
182 /* Output queue contains all the QMP responses in order */
183 GQueue
*qmp_responses
;
187 * To prevent flooding clients, events can be throttled. The
188 * throttling is calculated globally, rather than per-Monitor
191 typedef struct MonitorQAPIEventState
{
192 QAPIEvent event
; /* Throttling state for this event type and... */
193 QDict
*data
; /* ... data, see qapi_event_throttle_equal() */
194 QEMUTimer
*timer
; /* Timer for handling delayed events */
195 QDict
*qdict
; /* Delayed event (if any) */
196 } MonitorQAPIEventState
;
199 int64_t rate
; /* Minimum time (in ns) between two events */
200 } MonitorQAPIEventConf
;
206 int suspend_cnt
; /* Needs to be accessed atomically */
211 * State used only in the thread "owning" the monitor.
212 * If @use_io_thr, this is mon_global.mon_iothread.
213 * Else, it's the main thread.
214 * These members can be safely accessed without locks.
220 BlockCompletionFunc
*password_completion_cb
;
221 void *password_opaque
;
222 mon_cmd_t
*cmd_table
;
223 QTAILQ_ENTRY(Monitor
) entry
;
226 * The per-monitor lock. We can't access guest memory when holding
232 * Fields that are protected by the per-monitor lock.
234 QLIST_HEAD(, mon_fd_t
) fds
;
237 /* Read under either BQL or mon_lock, written with BQL+mon_lock. */
241 /* Let's add monitor global variables to this struct. */
243 IOThread
*mon_iothread
;
244 /* Bottom half to dispatch the requests received from IO thread */
245 QEMUBH
*qmp_dispatcher_bh
;
246 /* Bottom half to deliver the responses back to clients */
247 QEMUBH
*qmp_respond_bh
;
251 /* Owner of the request */
253 /* "id" field of the request */
255 /* Request object to be handled */
258 * Whether we need to resume the monitor afterward. This flag is
259 * used to emulate the old QMP server behavior that the current
260 * command must be completed before execution of the next one.
264 typedef struct QMPRequest QMPRequest
;
266 /* QMP checker flags */
267 #define QMP_ACCEPT_UNKNOWNS 1
269 /* Protects mon_list, monitor_qapi_event_state. */
270 static QemuMutex monitor_lock
;
271 static GHashTable
*monitor_qapi_event_state
;
272 static QTAILQ_HEAD(mon_list
, Monitor
) mon_list
;
274 /* Protects mon_fdsets */
275 static QemuMutex mon_fdsets_lock
;
276 static QLIST_HEAD(mon_fdsets
, MonFdset
) mon_fdsets
;
278 static int mon_refcount
;
280 static mon_cmd_t mon_cmds
[];
281 static mon_cmd_t info_cmds
[];
283 QmpCommandList qmp_commands
, qmp_cap_negotiation_commands
;
287 static void monitor_command_cb(void *opaque
, const char *cmdline
,
288 void *readline_opaque
);
291 * Is @mon a QMP monitor?
293 static inline bool monitor_is_qmp(const Monitor
*mon
)
295 return (mon
->flags
& MONITOR_USE_CONTROL
);
299 * Whether @mon is using readline? Note: not all HMP monitors use
300 * readline, e.g., gdbserver has a non-interactive HMP monitor, so
301 * readline is not used there.
303 static inline bool monitor_uses_readline(const Monitor
*mon
)
305 return mon
->flags
& MONITOR_USE_READLINE
;
308 static inline bool monitor_is_hmp_non_interactive(const Monitor
*mon
)
310 return !monitor_is_qmp(mon
) && !monitor_uses_readline(mon
);
314 * Return the clock to use for recording an event's time.
315 * Beware: result is invalid before configure_accelerator().
317 static inline QEMUClockType
monitor_get_event_clock(void)
320 * This allows us to perform tests on the monitor queues to verify
321 * that the rate limits are enforced.
323 return qtest_enabled() ? QEMU_CLOCK_VIRTUAL
: QEMU_CLOCK_REALTIME
;
327 * Is the current monitor, if any, a QMP monitor?
329 bool monitor_cur_is_qmp(void)
331 return cur_mon
&& monitor_is_qmp(cur_mon
);
334 void monitor_read_command(Monitor
*mon
, int show_prompt
)
339 readline_start(mon
->rs
, "(qemu) ", 0, monitor_command_cb
, NULL
);
341 readline_show_prompt(mon
->rs
);
344 int monitor_read_password(Monitor
*mon
, ReadLineFunc
*readline_func
,
348 readline_start(mon
->rs
, "Password: ", 1, readline_func
, opaque
);
349 /* prompt is printed on return from the command handler */
352 monitor_printf(mon
, "terminal does not support password prompting\n");
357 static void qmp_request_free(QMPRequest
*req
)
359 qobject_unref(req
->id
);
360 qobject_unref(req
->req
);
364 /* Must with the mon->qmp.qmp_queue_lock held */
365 static void monitor_qmp_cleanup_req_queue_locked(Monitor
*mon
)
367 while (!g_queue_is_empty(mon
->qmp
.qmp_requests
)) {
368 qmp_request_free(g_queue_pop_head(mon
->qmp
.qmp_requests
));
372 /* Must with the mon->qmp.qmp_queue_lock held */
373 static void monitor_qmp_cleanup_resp_queue_locked(Monitor
*mon
)
375 while (!g_queue_is_empty(mon
->qmp
.qmp_responses
)) {
376 qobject_unref((QObject
*)g_queue_pop_head(mon
->qmp
.qmp_responses
));
380 static void monitor_qmp_cleanup_queues(Monitor
*mon
)
382 qemu_mutex_lock(&mon
->qmp
.qmp_queue_lock
);
383 monitor_qmp_cleanup_req_queue_locked(mon
);
384 monitor_qmp_cleanup_resp_queue_locked(mon
);
385 qemu_mutex_unlock(&mon
->qmp
.qmp_queue_lock
);
389 static void monitor_flush_locked(Monitor
*mon
);
391 static gboolean
monitor_unblocked(GIOChannel
*chan
, GIOCondition cond
,
394 Monitor
*mon
= opaque
;
396 qemu_mutex_lock(&mon
->mon_lock
);
398 monitor_flush_locked(mon
);
399 qemu_mutex_unlock(&mon
->mon_lock
);
403 /* Called with mon->mon_lock held. */
404 static void monitor_flush_locked(Monitor
*mon
)
410 if (mon
->skip_flush
) {
414 buf
= qstring_get_str(mon
->outbuf
);
415 len
= qstring_get_length(mon
->outbuf
);
417 if (len
&& !mon
->mux_out
) {
418 rc
= qemu_chr_fe_write(&mon
->chr
, (const uint8_t *) buf
, len
);
419 if ((rc
< 0 && errno
!= EAGAIN
) || (rc
== len
)) {
420 /* all flushed or error */
421 qobject_unref(mon
->outbuf
);
422 mon
->outbuf
= qstring_new();
427 QString
*tmp
= qstring_from_str(buf
+ rc
);
428 qobject_unref(mon
->outbuf
);
431 if (mon
->out_watch
== 0) {
433 qemu_chr_fe_add_watch(&mon
->chr
, G_IO_OUT
| G_IO_HUP
,
434 monitor_unblocked
, mon
);
439 void monitor_flush(Monitor
*mon
)
441 qemu_mutex_lock(&mon
->mon_lock
);
442 monitor_flush_locked(mon
);
443 qemu_mutex_unlock(&mon
->mon_lock
);
446 /* flush at every end of line */
447 static void monitor_puts(Monitor
*mon
, const char *str
)
451 qemu_mutex_lock(&mon
->mon_lock
);
457 qstring_append_chr(mon
->outbuf
, '\r');
459 qstring_append_chr(mon
->outbuf
, c
);
461 monitor_flush_locked(mon
);
464 qemu_mutex_unlock(&mon
->mon_lock
);
467 void monitor_vprintf(Monitor
*mon
, const char *fmt
, va_list ap
)
474 if (monitor_is_qmp(mon
)) {
478 buf
= g_strdup_vprintf(fmt
, ap
);
479 monitor_puts(mon
, buf
);
483 void monitor_printf(Monitor
*mon
, const char *fmt
, ...)
487 monitor_vprintf(mon
, fmt
, ap
);
491 int monitor_fprintf(FILE *stream
, const char *fmt
, ...)
495 monitor_vprintf((Monitor
*)stream
, fmt
, ap
);
500 static void monitor_json_emitter_raw(Monitor
*mon
,
505 json
= mon
->flags
& MONITOR_USE_PRETTY
? qobject_to_json_pretty(data
) :
506 qobject_to_json(data
);
507 assert(json
!= NULL
);
509 qstring_append_chr(json
, '\n');
510 monitor_puts(mon
, qstring_get_str(json
));
515 static void monitor_json_emitter(Monitor
*mon
, QObject
*data
)
517 if (mon
->use_io_thr
) {
519 * If using IO thread, we need to queue the item so that IO
520 * thread will do the rest for us. Take refcount so that
521 * caller won't free the data (which will be finally freed in
524 qemu_mutex_lock(&mon
->qmp
.qmp_queue_lock
);
525 g_queue_push_tail(mon
->qmp
.qmp_responses
, qobject_ref(data
));
526 qemu_mutex_unlock(&mon
->qmp
.qmp_queue_lock
);
527 qemu_bh_schedule(mon_global
.qmp_respond_bh
);
530 * If not using monitor IO thread, then we are in main thread.
531 * Do the emission right away.
533 monitor_json_emitter_raw(mon
, data
);
541 typedef struct QMPResponse QMPResponse
;
544 * Return one QMPResponse. The response is only valid if
545 * response.data is not NULL.
547 static QMPResponse
monitor_qmp_response_pop_one(void)
550 QObject
*data
= NULL
;
552 qemu_mutex_lock(&monitor_lock
);
553 QTAILQ_FOREACH(mon
, &mon_list
, entry
) {
554 qemu_mutex_lock(&mon
->qmp
.qmp_queue_lock
);
555 data
= g_queue_pop_head(mon
->qmp
.qmp_responses
);
556 qemu_mutex_unlock(&mon
->qmp
.qmp_queue_lock
);
561 qemu_mutex_unlock(&monitor_lock
);
562 return (QMPResponse
) { .mon
= mon
, .data
= data
};
565 static void monitor_qmp_bh_responder(void *opaque
)
567 QMPResponse response
;
570 response
= monitor_qmp_response_pop_one();
571 if (!response
.data
) {
574 monitor_json_emitter_raw(response
.mon
, response
.data
);
575 qobject_unref(response
.data
);
579 static MonitorQAPIEventConf monitor_qapi_event_conf
[QAPI_EVENT__MAX
] = {
580 /* Limit guest-triggerable events to 1 per second */
581 [QAPI_EVENT_RTC_CHANGE
] = { 1000 * SCALE_MS
},
582 [QAPI_EVENT_WATCHDOG
] = { 1000 * SCALE_MS
},
583 [QAPI_EVENT_BALLOON_CHANGE
] = { 1000 * SCALE_MS
},
584 [QAPI_EVENT_QUORUM_REPORT_BAD
] = { 1000 * SCALE_MS
},
585 [QAPI_EVENT_QUORUM_FAILURE
] = { 1000 * SCALE_MS
},
586 [QAPI_EVENT_VSERPORT_CHANGE
] = { 1000 * SCALE_MS
},
590 * Emits the event to every monitor instance, @event is only used for trace
591 * Called with monitor_lock held.
593 static void monitor_qapi_event_emit(QAPIEvent event
, QDict
*qdict
)
597 trace_monitor_protocol_event_emit(event
, qdict
);
598 QTAILQ_FOREACH(mon
, &mon_list
, entry
) {
599 if (monitor_is_qmp(mon
)
600 && mon
->qmp
.commands
!= &qmp_cap_negotiation_commands
) {
601 monitor_json_emitter(mon
, QOBJECT(qdict
));
606 static void monitor_qapi_event_handler(void *opaque
);
609 * Queue a new event for emission to Monitor instances,
610 * applying any rate limiting if required.
613 monitor_qapi_event_queue(QAPIEvent event
, QDict
*qdict
, Error
**errp
)
615 MonitorQAPIEventConf
*evconf
;
616 MonitorQAPIEventState
*evstate
;
618 assert(event
< QAPI_EVENT__MAX
);
619 evconf
= &monitor_qapi_event_conf
[event
];
620 trace_monitor_protocol_event_queue(event
, qdict
, evconf
->rate
);
622 qemu_mutex_lock(&monitor_lock
);
625 /* Unthrottled event */
626 monitor_qapi_event_emit(event
, qdict
);
628 QDict
*data
= qobject_to(QDict
, qdict_get(qdict
, "data"));
629 MonitorQAPIEventState key
= { .event
= event
, .data
= data
};
631 evstate
= g_hash_table_lookup(monitor_qapi_event_state
, &key
);
632 assert(!evstate
|| timer_pending(evstate
->timer
));
636 * Timer is pending for (at least) evconf->rate ns after
637 * last send. Store event for sending when timer fires,
638 * replacing a prior stored event if any.
640 qobject_unref(evstate
->qdict
);
641 evstate
->qdict
= qobject_ref(qdict
);
644 * Last send was (at least) evconf->rate ns ago.
645 * Send immediately, and arm the timer to call
646 * monitor_qapi_event_handler() in evconf->rate ns. Any
647 * events arriving before then will be delayed until then.
649 int64_t now
= qemu_clock_get_ns(monitor_get_event_clock());
651 monitor_qapi_event_emit(event
, qdict
);
653 evstate
= g_new(MonitorQAPIEventState
, 1);
654 evstate
->event
= event
;
655 evstate
->data
= qobject_ref(data
);
656 evstate
->qdict
= NULL
;
657 evstate
->timer
= timer_new_ns(monitor_get_event_clock(),
658 monitor_qapi_event_handler
,
660 g_hash_table_add(monitor_qapi_event_state
, evstate
);
661 timer_mod_ns(evstate
->timer
, now
+ evconf
->rate
);
665 qemu_mutex_unlock(&monitor_lock
);
669 * This function runs evconf->rate ns after sending a throttled
671 * If another event has since been stored, send it.
673 static void monitor_qapi_event_handler(void *opaque
)
675 MonitorQAPIEventState
*evstate
= opaque
;
676 MonitorQAPIEventConf
*evconf
= &monitor_qapi_event_conf
[evstate
->event
];
678 trace_monitor_protocol_event_handler(evstate
->event
, evstate
->qdict
);
679 qemu_mutex_lock(&monitor_lock
);
681 if (evstate
->qdict
) {
682 int64_t now
= qemu_clock_get_ns(monitor_get_event_clock());
684 monitor_qapi_event_emit(evstate
->event
, evstate
->qdict
);
685 qobject_unref(evstate
->qdict
);
686 evstate
->qdict
= NULL
;
687 timer_mod_ns(evstate
->timer
, now
+ evconf
->rate
);
689 g_hash_table_remove(monitor_qapi_event_state
, evstate
);
690 qobject_unref(evstate
->data
);
691 timer_free(evstate
->timer
);
695 qemu_mutex_unlock(&monitor_lock
);
698 static unsigned int qapi_event_throttle_hash(const void *key
)
700 const MonitorQAPIEventState
*evstate
= key
;
701 unsigned int hash
= evstate
->event
* 255;
703 if (evstate
->event
== QAPI_EVENT_VSERPORT_CHANGE
) {
704 hash
+= g_str_hash(qdict_get_str(evstate
->data
, "id"));
707 if (evstate
->event
== QAPI_EVENT_QUORUM_REPORT_BAD
) {
708 hash
+= g_str_hash(qdict_get_str(evstate
->data
, "node-name"));
714 static gboolean
qapi_event_throttle_equal(const void *a
, const void *b
)
716 const MonitorQAPIEventState
*eva
= a
;
717 const MonitorQAPIEventState
*evb
= b
;
719 if (eva
->event
!= evb
->event
) {
723 if (eva
->event
== QAPI_EVENT_VSERPORT_CHANGE
) {
724 return !strcmp(qdict_get_str(eva
->data
, "id"),
725 qdict_get_str(evb
->data
, "id"));
728 if (eva
->event
== QAPI_EVENT_QUORUM_REPORT_BAD
) {
729 return !strcmp(qdict_get_str(eva
->data
, "node-name"),
730 qdict_get_str(evb
->data
, "node-name"));
736 static void monitor_qapi_event_init(void)
738 monitor_qapi_event_state
= g_hash_table_new(qapi_event_throttle_hash
,
739 qapi_event_throttle_equal
);
740 qmp_event_set_func_emit(monitor_qapi_event_queue
);
743 static void handle_hmp_command(Monitor
*mon
, const char *cmdline
);
745 static void monitor_data_init(Monitor
*mon
, bool skip_flush
,
748 memset(mon
, 0, sizeof(Monitor
));
749 qemu_mutex_init(&mon
->mon_lock
);
750 qemu_mutex_init(&mon
->qmp
.qmp_queue_lock
);
751 mon
->outbuf
= qstring_new();
752 /* Use *mon_cmds by default. */
753 mon
->cmd_table
= mon_cmds
;
754 mon
->skip_flush
= skip_flush
;
755 mon
->use_io_thr
= use_io_thr
;
756 mon
->qmp
.qmp_requests
= g_queue_new();
757 mon
->qmp
.qmp_responses
= g_queue_new();
760 static void monitor_data_destroy(Monitor
*mon
)
762 g_free(mon
->mon_cpu_path
);
763 qemu_chr_fe_deinit(&mon
->chr
, false);
764 if (monitor_is_qmp(mon
)) {
765 json_message_parser_destroy(&mon
->qmp
.parser
);
767 readline_free(mon
->rs
);
768 qobject_unref(mon
->outbuf
);
769 qemu_mutex_destroy(&mon
->mon_lock
);
770 qemu_mutex_destroy(&mon
->qmp
.qmp_queue_lock
);
771 monitor_qmp_cleanup_req_queue_locked(mon
);
772 monitor_qmp_cleanup_resp_queue_locked(mon
);
773 g_queue_free(mon
->qmp
.qmp_requests
);
774 g_queue_free(mon
->qmp
.qmp_responses
);
777 char *qmp_human_monitor_command(const char *command_line
, bool has_cpu_index
,
778 int64_t cpu_index
, Error
**errp
)
781 Monitor
*old_mon
, hmp
;
783 monitor_data_init(&hmp
, true, false);
789 int ret
= monitor_set_cpu(cpu_index
);
792 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "cpu-index",
798 handle_hmp_command(&hmp
, command_line
);
801 qemu_mutex_lock(&hmp
.mon_lock
);
802 if (qstring_get_length(hmp
.outbuf
) > 0) {
803 output
= g_strdup(qstring_get_str(hmp
.outbuf
));
805 output
= g_strdup("");
807 qemu_mutex_unlock(&hmp
.mon_lock
);
810 monitor_data_destroy(&hmp
);
814 static int compare_cmd(const char *name
, const char *list
)
816 const char *p
, *pstart
;
824 p
= pstart
+ strlen(pstart
);
825 if ((p
- pstart
) == len
&& !memcmp(pstart
, name
, len
))
834 static int get_str(char *buf
, int buf_size
, const char **pp
)
842 while (qemu_isspace(*p
)) {
853 while (*p
!= '\0' && *p
!= '\"') {
869 printf("unsupported escape code: '\\%c'\n", c
);
872 if ((q
- buf
) < buf_size
- 1) {
876 if ((q
- buf
) < buf_size
- 1) {
883 printf("unterminated string\n");
888 while (*p
!= '\0' && !qemu_isspace(*p
)) {
889 if ((q
- buf
) < buf_size
- 1) {
902 static void free_cmdline_args(char **args
, int nb_args
)
906 assert(nb_args
<= MAX_ARGS
);
908 for (i
= 0; i
< nb_args
; i
++) {
915 * Parse the command line to get valid args.
916 * @cmdline: command line to be parsed.
917 * @pnb_args: location to store the number of args, must NOT be NULL.
918 * @args: location to store the args, which should be freed by caller, must
921 * Returns 0 on success, negative on failure.
923 * NOTE: this parser is an approximate form of the real command parser. Number
924 * of args have a limit of MAX_ARGS. If cmdline contains more, it will
925 * return with failure.
927 static int parse_cmdline(const char *cmdline
,
928 int *pnb_args
, char **args
)
937 while (qemu_isspace(*p
)) {
943 if (nb_args
>= MAX_ARGS
) {
946 ret
= get_str(buf
, sizeof(buf
), &p
);
950 args
[nb_args
] = g_strdup(buf
);
957 free_cmdline_args(args
, nb_args
);
961 static void help_cmd_dump_one(Monitor
*mon
,
962 const mon_cmd_t
*cmd
,
968 for (i
= 0; i
< prefix_args_nb
; i
++) {
969 monitor_printf(mon
, "%s ", prefix_args
[i
]);
971 monitor_printf(mon
, "%s %s -- %s\n", cmd
->name
, cmd
->params
, cmd
->help
);
974 /* @args[@arg_index] is the valid command need to find in @cmds */
975 static void help_cmd_dump(Monitor
*mon
, const mon_cmd_t
*cmds
,
976 char **args
, int nb_args
, int arg_index
)
978 const mon_cmd_t
*cmd
;
980 /* No valid arg need to compare with, dump all in *cmds */
981 if (arg_index
>= nb_args
) {
982 for (cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
983 help_cmd_dump_one(mon
, cmd
, args
, arg_index
);
988 /* Find one entry to dump */
989 for (cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
990 if (compare_cmd(args
[arg_index
], cmd
->name
)) {
991 if (cmd
->sub_table
) {
992 /* continue with next arg */
993 help_cmd_dump(mon
, cmd
->sub_table
,
994 args
, nb_args
, arg_index
+ 1);
996 help_cmd_dump_one(mon
, cmd
, args
, arg_index
);
1003 static void help_cmd(Monitor
*mon
, const char *name
)
1005 char *args
[MAX_ARGS
];
1008 /* 1. parse user input */
1010 /* special case for log, directly dump and return */
1011 if (!strcmp(name
, "log")) {
1012 const QEMULogItem
*item
;
1013 monitor_printf(mon
, "Log items (comma separated):\n");
1014 monitor_printf(mon
, "%-10s %s\n", "none", "remove all logs");
1015 for (item
= qemu_log_items
; item
->mask
!= 0; item
++) {
1016 monitor_printf(mon
, "%-10s %s\n", item
->name
, item
->help
);
1021 if (parse_cmdline(name
, &nb_args
, args
) < 0) {
1026 /* 2. dump the contents according to parsed args */
1027 help_cmd_dump(mon
, mon
->cmd_table
, args
, nb_args
, 0);
1029 free_cmdline_args(args
, nb_args
);
1032 static void do_help_cmd(Monitor
*mon
, const QDict
*qdict
)
1034 help_cmd(mon
, qdict_get_try_str(qdict
, "name"));
1037 static void hmp_trace_event(Monitor
*mon
, const QDict
*qdict
)
1039 const char *tp_name
= qdict_get_str(qdict
, "name");
1040 bool new_state
= qdict_get_bool(qdict
, "option");
1041 bool has_vcpu
= qdict_haskey(qdict
, "vcpu");
1042 int vcpu
= qdict_get_try_int(qdict
, "vcpu", 0);
1043 Error
*local_err
= NULL
;
1046 monitor_printf(mon
, "argument vcpu must be positive");
1050 qmp_trace_event_set_state(tp_name
, new_state
, true, true, has_vcpu
, vcpu
, &local_err
);
1052 error_report_err(local_err
);
1056 #ifdef CONFIG_TRACE_SIMPLE
1057 static void hmp_trace_file(Monitor
*mon
, const QDict
*qdict
)
1059 const char *op
= qdict_get_try_str(qdict
, "op");
1060 const char *arg
= qdict_get_try_str(qdict
, "arg");
1063 st_print_trace_file_status((FILE *)mon
, &monitor_fprintf
);
1064 } else if (!strcmp(op
, "on")) {
1065 st_set_trace_file_enabled(true);
1066 } else if (!strcmp(op
, "off")) {
1067 st_set_trace_file_enabled(false);
1068 } else if (!strcmp(op
, "flush")) {
1069 st_flush_trace_buffer();
1070 } else if (!strcmp(op
, "set")) {
1072 st_set_trace_file(arg
);
1075 monitor_printf(mon
, "unexpected argument \"%s\"\n", op
);
1076 help_cmd(mon
, "trace-file");
1081 static void hmp_info_help(Monitor
*mon
, const QDict
*qdict
)
1083 help_cmd(mon
, "info");
1086 static void query_commands_cb(QmpCommand
*cmd
, void *opaque
)
1088 CommandInfoList
*info
, **list
= opaque
;
1090 if (!cmd
->enabled
) {
1094 info
= g_malloc0(sizeof(*info
));
1095 info
->value
= g_malloc0(sizeof(*info
->value
));
1096 info
->value
->name
= g_strdup(cmd
->name
);
1101 CommandInfoList
*qmp_query_commands(Error
**errp
)
1103 CommandInfoList
*list
= NULL
;
1105 qmp_for_each_command(cur_mon
->qmp
.commands
, query_commands_cb
, &list
);
1110 EventInfoList
*qmp_query_events(Error
**errp
)
1112 EventInfoList
*info
, *ev_list
= NULL
;
1115 for (e
= 0 ; e
< QAPI_EVENT__MAX
; e
++) {
1116 const char *event_name
= QAPIEvent_str(e
);
1117 assert(event_name
!= NULL
);
1118 info
= g_malloc0(sizeof(*info
));
1119 info
->value
= g_malloc0(sizeof(*info
->value
));
1120 info
->value
->name
= g_strdup(event_name
);
1122 info
->next
= ev_list
;
1130 * Minor hack: generated marshalling suppressed for this command
1131 * ('gen': false in the schema) so we can parse the JSON string
1132 * directly into QObject instead of first parsing it with
1133 * visit_type_SchemaInfoList() into a SchemaInfoList, then marshal it
1134 * to QObject with generated output marshallers, every time. Instead,
1135 * we do it in test-qobject-input-visitor.c, just to make sure
1136 * qapi-gen.py's output actually conforms to the schema.
1138 static void qmp_query_qmp_schema(QDict
*qdict
, QObject
**ret_data
,
1141 *ret_data
= qobject_from_qlit(&qmp_schema_qlit
);
1145 * We used to define commands in qmp-commands.hx in addition to the
1146 * QAPI schema. This permitted defining some of them only in certain
1147 * configurations. query-commands has always reflected that (good,
1148 * because it lets QMP clients figure out what's actually available),
1149 * while query-qmp-schema never did (not so good). This function is a
1150 * hack to keep the configuration-specific commands defined exactly as
1151 * before, even though qmp-commands.hx is gone.
1153 * FIXME Educate the QAPI schema on configuration-specific commands,
1154 * and drop this hack.
1156 static void qmp_unregister_commands_hack(void)
1158 #ifndef CONFIG_SPICE
1159 qmp_unregister_command(&qmp_commands
, "query-spice");
1161 #ifndef CONFIG_REPLICATION
1162 qmp_unregister_command(&qmp_commands
, "xen-set-replication");
1163 qmp_unregister_command(&qmp_commands
, "query-xen-replication-status");
1164 qmp_unregister_command(&qmp_commands
, "xen-colo-do-checkpoint");
1167 qmp_unregister_command(&qmp_commands
, "rtc-reset-reinjection");
1168 qmp_unregister_command(&qmp_commands
, "query-sev");
1169 qmp_unregister_command(&qmp_commands
, "query-sev-launch-measure");
1170 qmp_unregister_command(&qmp_commands
, "query-sev-capabilities");
1172 #ifndef TARGET_S390X
1173 qmp_unregister_command(&qmp_commands
, "dump-skeys");
1176 qmp_unregister_command(&qmp_commands
, "query-gic-capabilities");
1178 #if !defined(TARGET_S390X) && !defined(TARGET_I386)
1179 qmp_unregister_command(&qmp_commands
, "query-cpu-model-expansion");
1181 #if !defined(TARGET_S390X)
1182 qmp_unregister_command(&qmp_commands
, "query-cpu-model-baseline");
1183 qmp_unregister_command(&qmp_commands
, "query-cpu-model-comparison");
1185 #if !defined(TARGET_PPC) && !defined(TARGET_ARM) && !defined(TARGET_I386) \
1186 && !defined(TARGET_S390X)
1187 qmp_unregister_command(&qmp_commands
, "query-cpu-definitions");
1191 static void monitor_init_qmp_commands(void)
1194 * Two command lists:
1195 * - qmp_commands contains all QMP commands
1196 * - qmp_cap_negotiation_commands contains just
1197 * "qmp_capabilities", to enforce capability negotiation
1200 qmp_init_marshal(&qmp_commands
);
1202 qmp_register_command(&qmp_commands
, "query-qmp-schema",
1203 qmp_query_qmp_schema
, QCO_ALLOW_PRECONFIG
);
1204 qmp_register_command(&qmp_commands
, "device_add", qmp_device_add
,
1206 qmp_register_command(&qmp_commands
, "netdev_add", qmp_netdev_add
,
1209 qmp_unregister_commands_hack();
1211 QTAILQ_INIT(&qmp_cap_negotiation_commands
);
1212 qmp_register_command(&qmp_cap_negotiation_commands
, "qmp_capabilities",
1213 qmp_marshal_qmp_capabilities
, QCO_ALLOW_PRECONFIG
);
1216 static bool qmp_cap_enabled(Monitor
*mon
, QMPCapability cap
)
1218 return mon
->qmp
.qmp_caps
[cap
];
1221 static bool qmp_oob_enabled(Monitor
*mon
)
1223 return qmp_cap_enabled(mon
, QMP_CAPABILITY_OOB
);
1226 static void qmp_caps_check(Monitor
*mon
, QMPCapabilityList
*list
,
1229 for (; list
; list
= list
->next
) {
1230 assert(list
->value
< QMP_CAPABILITY__MAX
);
1231 switch (list
->value
) {
1232 case QMP_CAPABILITY_OOB
:
1233 if (!mon
->use_io_thr
) {
1235 * Out-Of-Band only works with monitors that are
1236 * running on dedicated IOThread.
1238 error_setg(errp
, "This monitor does not support "
1239 "Out-Of-Band (OOB)");
1249 /* This function should only be called after capabilities are checked. */
1250 static void qmp_caps_apply(Monitor
*mon
, QMPCapabilityList
*list
)
1252 for (; list
; list
= list
->next
) {
1253 mon
->qmp
.qmp_caps
[list
->value
] = true;
1258 * Return true if check successful, or false otherwise. When false is
1259 * returned, detailed error will be in errp if provided.
1261 static bool qmp_cmd_oob_check(Monitor
*mon
, QDict
*req
, Error
**errp
)
1263 const char *command
;
1266 command
= qdict_get_try_str(req
, "execute");
1268 error_setg(errp
, "Command field 'execute' missing");
1272 cmd
= qmp_find_command(mon
->qmp
.commands
, command
);
1274 if (mon
->qmp
.commands
== &qmp_cap_negotiation_commands
) {
1275 error_set(errp
, ERROR_CLASS_COMMAND_NOT_FOUND
,
1276 "Expecting capabilities negotiation "
1277 "with 'qmp_capabilities'");
1279 error_set(errp
, ERROR_CLASS_COMMAND_NOT_FOUND
,
1280 "The command %s has not been found", command
);
1285 if (qmp_is_oob(req
)) {
1286 if (!qmp_oob_enabled(mon
)) {
1287 error_setg(errp
, "Please enable Out-Of-Band first "
1288 "for the session during capabilities negotiation");
1291 if (!(cmd
->options
& QCO_ALLOW_OOB
)) {
1292 error_setg(errp
, "The command %s does not support OOB",
1301 void qmp_qmp_capabilities(bool has_enable
, QMPCapabilityList
*enable
,
1304 Error
*local_err
= NULL
;
1306 if (cur_mon
->qmp
.commands
== &qmp_commands
) {
1307 error_set(errp
, ERROR_CLASS_COMMAND_NOT_FOUND
,
1308 "Capabilities negotiation is already complete, command "
1313 /* Enable QMP capabilities provided by the client if applicable. */
1315 qmp_caps_check(cur_mon
, enable
, &local_err
);
1318 * Failed check on any of the capabilities will fail the
1319 * entire command (and thus not apply any of the other
1320 * capabilities that were also requested).
1322 error_propagate(errp
, local_err
);
1325 qmp_caps_apply(cur_mon
, enable
);
1328 cur_mon
->qmp
.commands
= &qmp_commands
;
1331 /* Set the current CPU defined by the user. Callers must hold BQL. */
1332 int monitor_set_cpu(int cpu_index
)
1336 cpu
= qemu_get_cpu(cpu_index
);
1340 g_free(cur_mon
->mon_cpu_path
);
1341 cur_mon
->mon_cpu_path
= object_get_canonical_path(OBJECT(cpu
));
1345 /* Callers must hold BQL. */
1346 static CPUState
*mon_get_cpu_sync(bool synchronize
)
1350 if (cur_mon
->mon_cpu_path
) {
1351 cpu
= (CPUState
*) object_resolve_path_type(cur_mon
->mon_cpu_path
,
1354 g_free(cur_mon
->mon_cpu_path
);
1355 cur_mon
->mon_cpu_path
= NULL
;
1358 if (!cur_mon
->mon_cpu_path
) {
1362 monitor_set_cpu(first_cpu
->cpu_index
);
1366 cpu_synchronize_state(cpu
);
1371 CPUState
*mon_get_cpu(void)
1373 return mon_get_cpu_sync(true);
1376 CPUArchState
*mon_get_cpu_env(void)
1378 CPUState
*cs
= mon_get_cpu();
1380 return cs
? cs
->env_ptr
: NULL
;
1383 int monitor_get_cpu_index(void)
1385 CPUState
*cs
= mon_get_cpu_sync(false);
1387 return cs
? cs
->cpu_index
: UNASSIGNED_CPU_INDEX
;
1390 static void hmp_info_registers(Monitor
*mon
, const QDict
*qdict
)
1392 bool all_cpus
= qdict_get_try_bool(qdict
, "cpustate_all", false);
1397 monitor_printf(mon
, "\nCPU#%d\n", cs
->cpu_index
);
1398 cpu_dump_state(cs
, (FILE *)mon
, monitor_fprintf
, CPU_DUMP_FPU
);
1404 monitor_printf(mon
, "No CPU available\n");
1408 cpu_dump_state(cs
, (FILE *)mon
, monitor_fprintf
, CPU_DUMP_FPU
);
1413 static void hmp_info_jit(Monitor
*mon
, const QDict
*qdict
)
1415 if (!tcg_enabled()) {
1416 error_report("JIT information is only available with accel=tcg");
1420 dump_exec_info((FILE *)mon
, monitor_fprintf
);
1421 dump_drift_info((FILE *)mon
, monitor_fprintf
);
1424 static void hmp_info_opcount(Monitor
*mon
, const QDict
*qdict
)
1426 dump_opcount_info((FILE *)mon
, monitor_fprintf
);
1430 static void hmp_info_history(Monitor
*mon
, const QDict
*qdict
)
1439 str
= readline_get_history(mon
->rs
, i
);
1442 monitor_printf(mon
, "%d: '%s'\n", i
, str
);
1447 static void hmp_info_cpustats(Monitor
*mon
, const QDict
*qdict
)
1449 CPUState
*cs
= mon_get_cpu();
1452 monitor_printf(mon
, "No CPU available\n");
1455 cpu_dump_statistics(cs
, (FILE *)mon
, &monitor_fprintf
, 0);
1458 static void hmp_info_trace_events(Monitor
*mon
, const QDict
*qdict
)
1460 const char *name
= qdict_get_try_str(qdict
, "name");
1461 bool has_vcpu
= qdict_haskey(qdict
, "vcpu");
1462 int vcpu
= qdict_get_try_int(qdict
, "vcpu", 0);
1463 TraceEventInfoList
*events
;
1464 TraceEventInfoList
*elem
;
1465 Error
*local_err
= NULL
;
1471 monitor_printf(mon
, "argument vcpu must be positive");
1475 events
= qmp_trace_event_get_state(name
, has_vcpu
, vcpu
, &local_err
);
1477 error_report_err(local_err
);
1481 for (elem
= events
; elem
!= NULL
; elem
= elem
->next
) {
1482 monitor_printf(mon
, "%s : state %u\n",
1484 elem
->value
->state
== TRACE_EVENT_STATE_ENABLED
? 1 : 0);
1486 qapi_free_TraceEventInfoList(events
);
1489 void qmp_client_migrate_info(const char *protocol
, const char *hostname
,
1490 bool has_port
, int64_t port
,
1491 bool has_tls_port
, int64_t tls_port
,
1492 bool has_cert_subject
, const char *cert_subject
,
1495 if (strcmp(protocol
, "spice") == 0) {
1496 if (!qemu_using_spice(errp
)) {
1500 if (!has_port
&& !has_tls_port
) {
1501 error_setg(errp
, QERR_MISSING_PARAMETER
, "port/tls-port");
1505 if (qemu_spice_migrate_info(hostname
,
1506 has_port
? port
: -1,
1507 has_tls_port
? tls_port
: -1,
1509 error_setg(errp
, QERR_UNDEFINED_ERROR
);
1515 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "protocol", "spice");
1518 static void hmp_logfile(Monitor
*mon
, const QDict
*qdict
)
1522 qemu_set_log_filename(qdict_get_str(qdict
, "filename"), &err
);
1524 error_report_err(err
);
1528 static void hmp_log(Monitor
*mon
, const QDict
*qdict
)
1531 const char *items
= qdict_get_str(qdict
, "items");
1533 if (!strcmp(items
, "none")) {
1536 mask
= qemu_str_to_log_mask(items
);
1538 help_cmd(mon
, "log");
1545 static void hmp_singlestep(Monitor
*mon
, const QDict
*qdict
)
1547 const char *option
= qdict_get_try_str(qdict
, "option");
1548 if (!option
|| !strcmp(option
, "on")) {
1550 } else if (!strcmp(option
, "off")) {
1553 monitor_printf(mon
, "unexpected option %s\n", option
);
1557 static void hmp_gdbserver(Monitor
*mon
, const QDict
*qdict
)
1559 const char *device
= qdict_get_try_str(qdict
, "device");
1561 device
= "tcp::" DEFAULT_GDBSTUB_PORT
;
1562 if (gdbserver_start(device
) < 0) {
1563 monitor_printf(mon
, "Could not open gdbserver on device '%s'\n",
1565 } else if (strcmp(device
, "none") == 0) {
1566 monitor_printf(mon
, "Disabled gdbserver\n");
1568 monitor_printf(mon
, "Waiting for gdb connection on device '%s'\n",
1573 static void hmp_watchdog_action(Monitor
*mon
, const QDict
*qdict
)
1575 const char *action
= qdict_get_str(qdict
, "action");
1576 if (select_watchdog_action(action
) == -1) {
1577 monitor_printf(mon
, "Unknown watchdog action '%s'\n", action
);
1581 static void monitor_printc(Monitor
*mon
, int c
)
1583 monitor_printf(mon
, "'");
1586 monitor_printf(mon
, "\\'");
1589 monitor_printf(mon
, "\\\\");
1592 monitor_printf(mon
, "\\n");
1595 monitor_printf(mon
, "\\r");
1598 if (c
>= 32 && c
<= 126) {
1599 monitor_printf(mon
, "%c", c
);
1601 monitor_printf(mon
, "\\x%02x", c
);
1605 monitor_printf(mon
, "'");
1608 static void memory_dump(Monitor
*mon
, int count
, int format
, int wsize
,
1609 hwaddr addr
, int is_physical
)
1611 int l
, line_size
, i
, max_digits
, len
;
1614 CPUState
*cs
= mon_get_cpu();
1616 if (!cs
&& (format
== 'i' || !is_physical
)) {
1617 monitor_printf(mon
, "Can not dump without CPU\n");
1621 if (format
== 'i') {
1622 monitor_disas(mon
, cs
, addr
, count
, is_physical
);
1626 len
= wsize
* count
;
1635 max_digits
= DIV_ROUND_UP(wsize
* 8, 3);
1639 max_digits
= (wsize
* 8) / 4;
1643 max_digits
= DIV_ROUND_UP(wsize
* 8 * 10, 33);
1652 monitor_printf(mon
, TARGET_FMT_plx
":", addr
);
1654 monitor_printf(mon
, TARGET_FMT_lx
":", (target_ulong
)addr
);
1659 cpu_physical_memory_read(addr
, buf
, l
);
1661 if (cpu_memory_rw_debug(cs
, addr
, buf
, l
, 0) < 0) {
1662 monitor_printf(mon
, " Cannot access memory\n");
1671 v
= ldub_p(buf
+ i
);
1674 v
= lduw_p(buf
+ i
);
1677 v
= (uint32_t)ldl_p(buf
+ i
);
1683 monitor_printf(mon
, " ");
1686 monitor_printf(mon
, "%#*" PRIo64
, max_digits
, v
);
1689 monitor_printf(mon
, "0x%0*" PRIx64
, max_digits
, v
);
1692 monitor_printf(mon
, "%*" PRIu64
, max_digits
, v
);
1695 monitor_printf(mon
, "%*" PRId64
, max_digits
, v
);
1698 monitor_printc(mon
, v
);
1703 monitor_printf(mon
, "\n");
1709 static void hmp_memory_dump(Monitor
*mon
, const QDict
*qdict
)
1711 int count
= qdict_get_int(qdict
, "count");
1712 int format
= qdict_get_int(qdict
, "format");
1713 int size
= qdict_get_int(qdict
, "size");
1714 target_long addr
= qdict_get_int(qdict
, "addr");
1716 memory_dump(mon
, count
, format
, size
, addr
, 0);
1719 static void hmp_physical_memory_dump(Monitor
*mon
, const QDict
*qdict
)
1721 int count
= qdict_get_int(qdict
, "count");
1722 int format
= qdict_get_int(qdict
, "format");
1723 int size
= qdict_get_int(qdict
, "size");
1724 hwaddr addr
= qdict_get_int(qdict
, "addr");
1726 memory_dump(mon
, count
, format
, size
, addr
, 1);
1729 static void *gpa2hva(MemoryRegion
**p_mr
, hwaddr addr
, Error
**errp
)
1731 MemoryRegionSection mrs
= memory_region_find(get_system_memory(),
1735 error_setg(errp
, "No memory is mapped at address 0x%" HWADDR_PRIx
, addr
);
1739 if (!memory_region_is_ram(mrs
.mr
) && !memory_region_is_romd(mrs
.mr
)) {
1740 error_setg(errp
, "Memory at address 0x%" HWADDR_PRIx
"is not RAM", addr
);
1741 memory_region_unref(mrs
.mr
);
1746 return qemu_map_ram_ptr(mrs
.mr
->ram_block
, mrs
.offset_within_region
);
1749 static void hmp_gpa2hva(Monitor
*mon
, const QDict
*qdict
)
1751 hwaddr addr
= qdict_get_int(qdict
, "addr");
1752 Error
*local_err
= NULL
;
1753 MemoryRegion
*mr
= NULL
;
1756 ptr
= gpa2hva(&mr
, addr
, &local_err
);
1758 error_report_err(local_err
);
1762 monitor_printf(mon
, "Host virtual address for 0x%" HWADDR_PRIx
1764 addr
, mr
->name
, ptr
);
1766 memory_region_unref(mr
);
1770 static uint64_t vtop(void *ptr
, Error
**errp
)
1774 uintptr_t addr
= (uintptr_t) ptr
;
1775 uintptr_t pagesize
= getpagesize();
1776 off_t offset
= addr
/ pagesize
* sizeof(pinfo
);
1779 fd
= open("/proc/self/pagemap", O_RDONLY
);
1781 error_setg_errno(errp
, errno
, "Cannot open /proc/self/pagemap");
1785 /* Force copy-on-write if necessary. */
1786 atomic_add((uint8_t *)ptr
, 0);
1788 if (pread(fd
, &pinfo
, sizeof(pinfo
), offset
) != sizeof(pinfo
)) {
1789 error_setg_errno(errp
, errno
, "Cannot read pagemap");
1792 if ((pinfo
& (1ull << 63)) == 0) {
1793 error_setg(errp
, "Page not present");
1796 ret
= ((pinfo
& 0x007fffffffffffffull
) * pagesize
) | (addr
& (pagesize
- 1));
1803 static void hmp_gpa2hpa(Monitor
*mon
, const QDict
*qdict
)
1805 hwaddr addr
= qdict_get_int(qdict
, "addr");
1806 Error
*local_err
= NULL
;
1807 MemoryRegion
*mr
= NULL
;
1811 ptr
= gpa2hva(&mr
, addr
, &local_err
);
1813 error_report_err(local_err
);
1817 physaddr
= vtop(ptr
, &local_err
);
1819 error_report_err(local_err
);
1821 monitor_printf(mon
, "Host physical address for 0x%" HWADDR_PRIx
1822 " (%s) is 0x%" PRIx64
"\n",
1823 addr
, mr
->name
, (uint64_t) physaddr
);
1826 memory_region_unref(mr
);
1830 static void do_print(Monitor
*mon
, const QDict
*qdict
)
1832 int format
= qdict_get_int(qdict
, "format");
1833 hwaddr val
= qdict_get_int(qdict
, "val");
1837 monitor_printf(mon
, "%#" HWADDR_PRIo
, val
);
1840 monitor_printf(mon
, "%#" HWADDR_PRIx
, val
);
1843 monitor_printf(mon
, "%" HWADDR_PRIu
, val
);
1847 monitor_printf(mon
, "%" HWADDR_PRId
, val
);
1850 monitor_printc(mon
, val
);
1853 monitor_printf(mon
, "\n");
1856 static void hmp_sum(Monitor
*mon
, const QDict
*qdict
)
1860 uint32_t start
= qdict_get_int(qdict
, "start");
1861 uint32_t size
= qdict_get_int(qdict
, "size");
1864 for(addr
= start
; addr
< (start
+ size
); addr
++) {
1865 uint8_t val
= address_space_ldub(&address_space_memory
, addr
,
1866 MEMTXATTRS_UNSPECIFIED
, NULL
);
1867 /* BSD sum algorithm ('sum' Unix command) */
1868 sum
= (sum
>> 1) | (sum
<< 15);
1871 monitor_printf(mon
, "%05d\n", sum
);
1874 static int mouse_button_state
;
1876 static void hmp_mouse_move(Monitor
*mon
, const QDict
*qdict
)
1878 int dx
, dy
, dz
, button
;
1879 const char *dx_str
= qdict_get_str(qdict
, "dx_str");
1880 const char *dy_str
= qdict_get_str(qdict
, "dy_str");
1881 const char *dz_str
= qdict_get_try_str(qdict
, "dz_str");
1883 dx
= strtol(dx_str
, NULL
, 0);
1884 dy
= strtol(dy_str
, NULL
, 0);
1885 qemu_input_queue_rel(NULL
, INPUT_AXIS_X
, dx
);
1886 qemu_input_queue_rel(NULL
, INPUT_AXIS_Y
, dy
);
1889 dz
= strtol(dz_str
, NULL
, 0);
1891 button
= (dz
> 0) ? INPUT_BUTTON_WHEEL_UP
: INPUT_BUTTON_WHEEL_DOWN
;
1892 qemu_input_queue_btn(NULL
, button
, true);
1893 qemu_input_event_sync();
1894 qemu_input_queue_btn(NULL
, button
, false);
1897 qemu_input_event_sync();
1900 static void hmp_mouse_button(Monitor
*mon
, const QDict
*qdict
)
1902 static uint32_t bmap
[INPUT_BUTTON__MAX
] = {
1903 [INPUT_BUTTON_LEFT
] = MOUSE_EVENT_LBUTTON
,
1904 [INPUT_BUTTON_MIDDLE
] = MOUSE_EVENT_MBUTTON
,
1905 [INPUT_BUTTON_RIGHT
] = MOUSE_EVENT_RBUTTON
,
1907 int button_state
= qdict_get_int(qdict
, "button_state");
1909 if (mouse_button_state
== button_state
) {
1912 qemu_input_update_buttons(NULL
, bmap
, mouse_button_state
, button_state
);
1913 qemu_input_event_sync();
1914 mouse_button_state
= button_state
;
1917 static void hmp_ioport_read(Monitor
*mon
, const QDict
*qdict
)
1919 int size
= qdict_get_int(qdict
, "size");
1920 int addr
= qdict_get_int(qdict
, "addr");
1921 int has_index
= qdict_haskey(qdict
, "index");
1926 int index
= qdict_get_int(qdict
, "index");
1927 cpu_outb(addr
& IOPORTS_MASK
, index
& 0xff);
1935 val
= cpu_inb(addr
);
1939 val
= cpu_inw(addr
);
1943 val
= cpu_inl(addr
);
1947 monitor_printf(mon
, "port%c[0x%04x] = %#0*x\n",
1948 suffix
, addr
, size
* 2, val
);
1951 static void hmp_ioport_write(Monitor
*mon
, const QDict
*qdict
)
1953 int size
= qdict_get_int(qdict
, "size");
1954 int addr
= qdict_get_int(qdict
, "addr");
1955 int val
= qdict_get_int(qdict
, "val");
1957 addr
&= IOPORTS_MASK
;
1962 cpu_outb(addr
, val
);
1965 cpu_outw(addr
, val
);
1968 cpu_outl(addr
, val
);
1973 static void hmp_boot_set(Monitor
*mon
, const QDict
*qdict
)
1975 Error
*local_err
= NULL
;
1976 const char *bootdevice
= qdict_get_str(qdict
, "bootdevice");
1978 qemu_boot_set(bootdevice
, &local_err
);
1980 error_report_err(local_err
);
1982 monitor_printf(mon
, "boot device list now set to %s\n", bootdevice
);
1986 static void hmp_info_mtree(Monitor
*mon
, const QDict
*qdict
)
1988 bool flatview
= qdict_get_try_bool(qdict
, "flatview", false);
1989 bool dispatch_tree
= qdict_get_try_bool(qdict
, "dispatch_tree", false);
1991 mtree_info((fprintf_function
)monitor_printf
, mon
, flatview
, dispatch_tree
);
1994 static void hmp_info_numa(Monitor
*mon
, const QDict
*qdict
)
1997 NumaNodeMem
*node_mem
;
1998 CpuInfoList
*cpu_list
, *cpu
;
2000 cpu_list
= qmp_query_cpus(&error_abort
);
2001 node_mem
= g_new0(NumaNodeMem
, nb_numa_nodes
);
2003 query_numa_node_mem(node_mem
);
2004 monitor_printf(mon
, "%d nodes\n", nb_numa_nodes
);
2005 for (i
= 0; i
< nb_numa_nodes
; i
++) {
2006 monitor_printf(mon
, "node %d cpus:", i
);
2007 for (cpu
= cpu_list
; cpu
; cpu
= cpu
->next
) {
2008 if (cpu
->value
->has_props
&& cpu
->value
->props
->has_node_id
&&
2009 cpu
->value
->props
->node_id
== i
) {
2010 monitor_printf(mon
, " %" PRIi64
, cpu
->value
->CPU
);
2013 monitor_printf(mon
, "\n");
2014 monitor_printf(mon
, "node %d size: %" PRId64
" MB\n", i
,
2015 node_mem
[i
].node_mem
>> 20);
2016 monitor_printf(mon
, "node %d plugged: %" PRId64
" MB\n", i
,
2017 node_mem
[i
].node_plugged_mem
>> 20);
2019 qapi_free_CpuInfoList(cpu_list
);
2023 #ifdef CONFIG_PROFILER
2028 static void hmp_info_profile(Monitor
*mon
, const QDict
*qdict
)
2030 monitor_printf(mon
, "async time %" PRId64
" (%0.3f)\n",
2031 dev_time
, dev_time
/ (double)NANOSECONDS_PER_SECOND
);
2032 monitor_printf(mon
, "qemu time %" PRId64
" (%0.3f)\n",
2033 tcg_time
, tcg_time
/ (double)NANOSECONDS_PER_SECOND
);
2038 static void hmp_info_profile(Monitor
*mon
, const QDict
*qdict
)
2040 monitor_printf(mon
, "Internal profiler not compiled\n");
2044 /* Capture support */
2045 static QLIST_HEAD (capture_list_head
, CaptureState
) capture_head
;
2047 static void hmp_info_capture(Monitor
*mon
, const QDict
*qdict
)
2052 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
2053 monitor_printf(mon
, "[%d]: ", i
);
2054 s
->ops
.info (s
->opaque
);
2058 static void hmp_stopcapture(Monitor
*mon
, const QDict
*qdict
)
2061 int n
= qdict_get_int(qdict
, "n");
2064 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
2066 s
->ops
.destroy (s
->opaque
);
2067 QLIST_REMOVE (s
, entries
);
2074 static void hmp_wavcapture(Monitor
*mon
, const QDict
*qdict
)
2076 const char *path
= qdict_get_str(qdict
, "path");
2077 int has_freq
= qdict_haskey(qdict
, "freq");
2078 int freq
= qdict_get_try_int(qdict
, "freq", -1);
2079 int has_bits
= qdict_haskey(qdict
, "bits");
2080 int bits
= qdict_get_try_int(qdict
, "bits", -1);
2081 int has_channels
= qdict_haskey(qdict
, "nchannels");
2082 int nchannels
= qdict_get_try_int(qdict
, "nchannels", -1);
2085 s
= g_malloc0 (sizeof (*s
));
2087 freq
= has_freq
? freq
: 44100;
2088 bits
= has_bits
? bits
: 16;
2089 nchannels
= has_channels
? nchannels
: 2;
2091 if (wav_start_capture (s
, path
, freq
, bits
, nchannels
)) {
2092 monitor_printf(mon
, "Failed to add wave capture\n");
2096 QLIST_INSERT_HEAD (&capture_head
, s
, entries
);
2099 static qemu_acl
*find_acl(Monitor
*mon
, const char *name
)
2101 qemu_acl
*acl
= qemu_acl_find(name
);
2104 monitor_printf(mon
, "acl: unknown list '%s'\n", name
);
2109 static void hmp_acl_show(Monitor
*mon
, const QDict
*qdict
)
2111 const char *aclname
= qdict_get_str(qdict
, "aclname");
2112 qemu_acl
*acl
= find_acl(mon
, aclname
);
2113 qemu_acl_entry
*entry
;
2117 monitor_printf(mon
, "policy: %s\n",
2118 acl
->defaultDeny
? "deny" : "allow");
2119 QTAILQ_FOREACH(entry
, &acl
->entries
, next
) {
2121 monitor_printf(mon
, "%d: %s %s\n", i
,
2122 entry
->deny
? "deny" : "allow", entry
->match
);
2127 static void hmp_acl_reset(Monitor
*mon
, const QDict
*qdict
)
2129 const char *aclname
= qdict_get_str(qdict
, "aclname");
2130 qemu_acl
*acl
= find_acl(mon
, aclname
);
2133 qemu_acl_reset(acl
);
2134 monitor_printf(mon
, "acl: removed all rules\n");
2138 static void hmp_acl_policy(Monitor
*mon
, const QDict
*qdict
)
2140 const char *aclname
= qdict_get_str(qdict
, "aclname");
2141 const char *policy
= qdict_get_str(qdict
, "policy");
2142 qemu_acl
*acl
= find_acl(mon
, aclname
);
2145 if (strcmp(policy
, "allow") == 0) {
2146 acl
->defaultDeny
= 0;
2147 monitor_printf(mon
, "acl: policy set to 'allow'\n");
2148 } else if (strcmp(policy
, "deny") == 0) {
2149 acl
->defaultDeny
= 1;
2150 monitor_printf(mon
, "acl: policy set to 'deny'\n");
2152 monitor_printf(mon
, "acl: unknown policy '%s', "
2153 "expected 'deny' or 'allow'\n", policy
);
2158 static void hmp_acl_add(Monitor
*mon
, const QDict
*qdict
)
2160 const char *aclname
= qdict_get_str(qdict
, "aclname");
2161 const char *match
= qdict_get_str(qdict
, "match");
2162 const char *policy
= qdict_get_str(qdict
, "policy");
2163 int has_index
= qdict_haskey(qdict
, "index");
2164 int index
= qdict_get_try_int(qdict
, "index", -1);
2165 qemu_acl
*acl
= find_acl(mon
, aclname
);
2169 if (strcmp(policy
, "allow") == 0) {
2171 } else if (strcmp(policy
, "deny") == 0) {
2174 monitor_printf(mon
, "acl: unknown policy '%s', "
2175 "expected 'deny' or 'allow'\n", policy
);
2179 ret
= qemu_acl_insert(acl
, deny
, match
, index
);
2181 ret
= qemu_acl_append(acl
, deny
, match
);
2183 monitor_printf(mon
, "acl: unable to add acl entry\n");
2185 monitor_printf(mon
, "acl: added rule at position %d\n", ret
);
2189 static void hmp_acl_remove(Monitor
*mon
, const QDict
*qdict
)
2191 const char *aclname
= qdict_get_str(qdict
, "aclname");
2192 const char *match
= qdict_get_str(qdict
, "match");
2193 qemu_acl
*acl
= find_acl(mon
, aclname
);
2197 ret
= qemu_acl_remove(acl
, match
);
2199 monitor_printf(mon
, "acl: no matching acl entry\n");
2201 monitor_printf(mon
, "acl: removed rule at position %d\n", ret
);
2205 void qmp_getfd(const char *fdname
, Error
**errp
)
2210 fd
= qemu_chr_fe_get_msgfd(&cur_mon
->chr
);
2212 error_setg(errp
, QERR_FD_NOT_SUPPLIED
);
2216 if (qemu_isdigit(fdname
[0])) {
2218 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "fdname",
2219 "a name not starting with a digit");
2223 qemu_mutex_lock(&cur_mon
->mon_lock
);
2224 QLIST_FOREACH(monfd
, &cur_mon
->fds
, next
) {
2225 if (strcmp(monfd
->name
, fdname
) != 0) {
2231 qemu_mutex_unlock(&cur_mon
->mon_lock
);
2232 /* Make sure close() is out of critical section */
2237 monfd
= g_malloc0(sizeof(mon_fd_t
));
2238 monfd
->name
= g_strdup(fdname
);
2241 QLIST_INSERT_HEAD(&cur_mon
->fds
, monfd
, next
);
2242 qemu_mutex_unlock(&cur_mon
->mon_lock
);
2245 void qmp_closefd(const char *fdname
, Error
**errp
)
2250 qemu_mutex_lock(&cur_mon
->mon_lock
);
2251 QLIST_FOREACH(monfd
, &cur_mon
->fds
, next
) {
2252 if (strcmp(monfd
->name
, fdname
) != 0) {
2256 QLIST_REMOVE(monfd
, next
);
2258 g_free(monfd
->name
);
2260 qemu_mutex_unlock(&cur_mon
->mon_lock
);
2261 /* Make sure close() is out of critical section */
2266 qemu_mutex_unlock(&cur_mon
->mon_lock
);
2267 error_setg(errp
, QERR_FD_NOT_FOUND
, fdname
);
2270 int monitor_get_fd(Monitor
*mon
, const char *fdname
, Error
**errp
)
2274 qemu_mutex_lock(&mon
->mon_lock
);
2275 QLIST_FOREACH(monfd
, &mon
->fds
, next
) {
2278 if (strcmp(monfd
->name
, fdname
) != 0) {
2284 /* caller takes ownership of fd */
2285 QLIST_REMOVE(monfd
, next
);
2286 g_free(monfd
->name
);
2288 qemu_mutex_unlock(&mon
->mon_lock
);
2293 qemu_mutex_unlock(&mon
->mon_lock
);
2294 error_setg(errp
, "File descriptor named '%s' has not been found", fdname
);
2298 static void monitor_fdset_cleanup(MonFdset
*mon_fdset
)
2300 MonFdsetFd
*mon_fdset_fd
;
2301 MonFdsetFd
*mon_fdset_fd_next
;
2303 QLIST_FOREACH_SAFE(mon_fdset_fd
, &mon_fdset
->fds
, next
, mon_fdset_fd_next
) {
2304 if ((mon_fdset_fd
->removed
||
2305 (QLIST_EMPTY(&mon_fdset
->dup_fds
) && mon_refcount
== 0)) &&
2306 runstate_is_running()) {
2307 close(mon_fdset_fd
->fd
);
2308 g_free(mon_fdset_fd
->opaque
);
2309 QLIST_REMOVE(mon_fdset_fd
, next
);
2310 g_free(mon_fdset_fd
);
2314 if (QLIST_EMPTY(&mon_fdset
->fds
) && QLIST_EMPTY(&mon_fdset
->dup_fds
)) {
2315 QLIST_REMOVE(mon_fdset
, next
);
2320 static void monitor_fdsets_cleanup(void)
2322 MonFdset
*mon_fdset
;
2323 MonFdset
*mon_fdset_next
;
2325 qemu_mutex_lock(&mon_fdsets_lock
);
2326 QLIST_FOREACH_SAFE(mon_fdset
, &mon_fdsets
, next
, mon_fdset_next
) {
2327 monitor_fdset_cleanup(mon_fdset
);
2329 qemu_mutex_unlock(&mon_fdsets_lock
);
2332 AddfdInfo
*qmp_add_fd(bool has_fdset_id
, int64_t fdset_id
, bool has_opaque
,
2333 const char *opaque
, Error
**errp
)
2336 Monitor
*mon
= cur_mon
;
2339 fd
= qemu_chr_fe_get_msgfd(&mon
->chr
);
2341 error_setg(errp
, QERR_FD_NOT_SUPPLIED
);
2345 fdinfo
= monitor_fdset_add_fd(fd
, has_fdset_id
, fdset_id
,
2346 has_opaque
, opaque
, errp
);
2358 void qmp_remove_fd(int64_t fdset_id
, bool has_fd
, int64_t fd
, Error
**errp
)
2360 MonFdset
*mon_fdset
;
2361 MonFdsetFd
*mon_fdset_fd
;
2364 qemu_mutex_lock(&mon_fdsets_lock
);
2365 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2366 if (mon_fdset
->id
!= fdset_id
) {
2369 QLIST_FOREACH(mon_fdset_fd
, &mon_fdset
->fds
, next
) {
2371 if (mon_fdset_fd
->fd
!= fd
) {
2374 mon_fdset_fd
->removed
= true;
2377 mon_fdset_fd
->removed
= true;
2380 if (has_fd
&& !mon_fdset_fd
) {
2383 monitor_fdset_cleanup(mon_fdset
);
2384 qemu_mutex_unlock(&mon_fdsets_lock
);
2389 qemu_mutex_unlock(&mon_fdsets_lock
);
2391 snprintf(fd_str
, sizeof(fd_str
), "fdset-id:%" PRId64
", fd:%" PRId64
,
2394 snprintf(fd_str
, sizeof(fd_str
), "fdset-id:%" PRId64
, fdset_id
);
2396 error_setg(errp
, QERR_FD_NOT_FOUND
, fd_str
);
2399 FdsetInfoList
*qmp_query_fdsets(Error
**errp
)
2401 MonFdset
*mon_fdset
;
2402 MonFdsetFd
*mon_fdset_fd
;
2403 FdsetInfoList
*fdset_list
= NULL
;
2405 qemu_mutex_lock(&mon_fdsets_lock
);
2406 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2407 FdsetInfoList
*fdset_info
= g_malloc0(sizeof(*fdset_info
));
2408 FdsetFdInfoList
*fdsetfd_list
= NULL
;
2410 fdset_info
->value
= g_malloc0(sizeof(*fdset_info
->value
));
2411 fdset_info
->value
->fdset_id
= mon_fdset
->id
;
2413 QLIST_FOREACH(mon_fdset_fd
, &mon_fdset
->fds
, next
) {
2414 FdsetFdInfoList
*fdsetfd_info
;
2416 fdsetfd_info
= g_malloc0(sizeof(*fdsetfd_info
));
2417 fdsetfd_info
->value
= g_malloc0(sizeof(*fdsetfd_info
->value
));
2418 fdsetfd_info
->value
->fd
= mon_fdset_fd
->fd
;
2419 if (mon_fdset_fd
->opaque
) {
2420 fdsetfd_info
->value
->has_opaque
= true;
2421 fdsetfd_info
->value
->opaque
= g_strdup(mon_fdset_fd
->opaque
);
2423 fdsetfd_info
->value
->has_opaque
= false;
2426 fdsetfd_info
->next
= fdsetfd_list
;
2427 fdsetfd_list
= fdsetfd_info
;
2430 fdset_info
->value
->fds
= fdsetfd_list
;
2432 fdset_info
->next
= fdset_list
;
2433 fdset_list
= fdset_info
;
2435 qemu_mutex_unlock(&mon_fdsets_lock
);
2440 AddfdInfo
*monitor_fdset_add_fd(int fd
, bool has_fdset_id
, int64_t fdset_id
,
2441 bool has_opaque
, const char *opaque
,
2444 MonFdset
*mon_fdset
= NULL
;
2445 MonFdsetFd
*mon_fdset_fd
;
2448 qemu_mutex_lock(&mon_fdsets_lock
);
2450 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2451 /* Break if match found or match impossible due to ordering by ID */
2452 if (fdset_id
<= mon_fdset
->id
) {
2453 if (fdset_id
< mon_fdset
->id
) {
2461 if (mon_fdset
== NULL
) {
2462 int64_t fdset_id_prev
= -1;
2463 MonFdset
*mon_fdset_cur
= QLIST_FIRST(&mon_fdsets
);
2467 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "fdset-id",
2468 "a non-negative value");
2469 qemu_mutex_unlock(&mon_fdsets_lock
);
2472 /* Use specified fdset ID */
2473 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2474 mon_fdset_cur
= mon_fdset
;
2475 if (fdset_id
< mon_fdset_cur
->id
) {
2480 /* Use first available fdset ID */
2481 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2482 mon_fdset_cur
= mon_fdset
;
2483 if (fdset_id_prev
== mon_fdset_cur
->id
- 1) {
2484 fdset_id_prev
= mon_fdset_cur
->id
;
2491 mon_fdset
= g_malloc0(sizeof(*mon_fdset
));
2493 mon_fdset
->id
= fdset_id
;
2495 mon_fdset
->id
= fdset_id_prev
+ 1;
2498 /* The fdset list is ordered by fdset ID */
2499 if (!mon_fdset_cur
) {
2500 QLIST_INSERT_HEAD(&mon_fdsets
, mon_fdset
, next
);
2501 } else if (mon_fdset
->id
< mon_fdset_cur
->id
) {
2502 QLIST_INSERT_BEFORE(mon_fdset_cur
, mon_fdset
, next
);
2504 QLIST_INSERT_AFTER(mon_fdset_cur
, mon_fdset
, next
);
2508 mon_fdset_fd
= g_malloc0(sizeof(*mon_fdset_fd
));
2509 mon_fdset_fd
->fd
= fd
;
2510 mon_fdset_fd
->removed
= false;
2512 mon_fdset_fd
->opaque
= g_strdup(opaque
);
2514 QLIST_INSERT_HEAD(&mon_fdset
->fds
, mon_fdset_fd
, next
);
2516 fdinfo
= g_malloc0(sizeof(*fdinfo
));
2517 fdinfo
->fdset_id
= mon_fdset
->id
;
2518 fdinfo
->fd
= mon_fdset_fd
->fd
;
2520 qemu_mutex_unlock(&mon_fdsets_lock
);
2524 int monitor_fdset_get_fd(int64_t fdset_id
, int flags
)
2529 MonFdset
*mon_fdset
;
2530 MonFdsetFd
*mon_fdset_fd
;
2534 qemu_mutex_lock(&mon_fdsets_lock
);
2535 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2536 if (mon_fdset
->id
!= fdset_id
) {
2539 QLIST_FOREACH(mon_fdset_fd
, &mon_fdset
->fds
, next
) {
2540 mon_fd_flags
= fcntl(mon_fdset_fd
->fd
, F_GETFL
);
2541 if (mon_fd_flags
== -1) {
2546 if ((flags
& O_ACCMODE
) == (mon_fd_flags
& O_ACCMODE
)) {
2547 ret
= mon_fdset_fd
->fd
;
2557 qemu_mutex_unlock(&mon_fdsets_lock
);
2562 int monitor_fdset_dup_fd_add(int64_t fdset_id
, int dup_fd
)
2564 MonFdset
*mon_fdset
;
2565 MonFdsetFd
*mon_fdset_fd_dup
;
2567 qemu_mutex_lock(&mon_fdsets_lock
);
2568 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2569 if (mon_fdset
->id
!= fdset_id
) {
2572 QLIST_FOREACH(mon_fdset_fd_dup
, &mon_fdset
->dup_fds
, next
) {
2573 if (mon_fdset_fd_dup
->fd
== dup_fd
) {
2577 mon_fdset_fd_dup
= g_malloc0(sizeof(*mon_fdset_fd_dup
));
2578 mon_fdset_fd_dup
->fd
= dup_fd
;
2579 QLIST_INSERT_HEAD(&mon_fdset
->dup_fds
, mon_fdset_fd_dup
, next
);
2580 qemu_mutex_unlock(&mon_fdsets_lock
);
2585 qemu_mutex_unlock(&mon_fdsets_lock
);
2589 static int monitor_fdset_dup_fd_find_remove(int dup_fd
, bool remove
)
2591 MonFdset
*mon_fdset
;
2592 MonFdsetFd
*mon_fdset_fd_dup
;
2594 qemu_mutex_lock(&mon_fdsets_lock
);
2595 QLIST_FOREACH(mon_fdset
, &mon_fdsets
, next
) {
2596 QLIST_FOREACH(mon_fdset_fd_dup
, &mon_fdset
->dup_fds
, next
) {
2597 if (mon_fdset_fd_dup
->fd
== dup_fd
) {
2599 QLIST_REMOVE(mon_fdset_fd_dup
, next
);
2600 if (QLIST_EMPTY(&mon_fdset
->dup_fds
)) {
2601 monitor_fdset_cleanup(mon_fdset
);
2605 qemu_mutex_unlock(&mon_fdsets_lock
);
2606 return mon_fdset
->id
;
2613 qemu_mutex_unlock(&mon_fdsets_lock
);
2617 int monitor_fdset_dup_fd_find(int dup_fd
)
2619 return monitor_fdset_dup_fd_find_remove(dup_fd
, false);
2622 void monitor_fdset_dup_fd_remove(int dup_fd
)
2624 monitor_fdset_dup_fd_find_remove(dup_fd
, true);
2627 int monitor_fd_param(Monitor
*mon
, const char *fdname
, Error
**errp
)
2630 Error
*local_err
= NULL
;
2632 if (!qemu_isdigit(fdname
[0]) && mon
) {
2633 fd
= monitor_get_fd(mon
, fdname
, &local_err
);
2635 fd
= qemu_parse_fd(fdname
);
2637 error_setg(&local_err
, "Invalid file descriptor number '%s'",
2642 error_propagate(errp
, local_err
);
2651 /* Please update hmp-commands.hx when adding or changing commands */
2652 static mon_cmd_t info_cmds
[] = {
2653 #include "hmp-commands-info.h"
2657 /* mon_cmds and info_cmds would be sorted at runtime */
2658 static mon_cmd_t mon_cmds
[] = {
2659 #include "hmp-commands.h"
2663 /*******************************************************************/
2665 static const char *pch
;
2666 static sigjmp_buf expr_env
;
2669 static void GCC_FMT_ATTR(2, 3) QEMU_NORETURN
2670 expr_error(Monitor
*mon
, const char *fmt
, ...)
2674 monitor_vprintf(mon
, fmt
, ap
);
2675 monitor_printf(mon
, "\n");
2677 siglongjmp(expr_env
, 1);
2680 /* return 0 if OK, -1 if not found */
2681 static int get_monitor_def(target_long
*pval
, const char *name
)
2683 const MonitorDef
*md
= target_monitor_defs();
2684 CPUState
*cs
= mon_get_cpu();
2689 if (cs
== NULL
|| md
== NULL
) {
2693 for(; md
->name
!= NULL
; md
++) {
2694 if (compare_cmd(name
, md
->name
)) {
2695 if (md
->get_value
) {
2696 *pval
= md
->get_value(md
, md
->offset
);
2698 CPUArchState
*env
= mon_get_cpu_env();
2699 ptr
= (uint8_t *)env
+ md
->offset
;
2702 *pval
= *(int32_t *)ptr
;
2705 *pval
= *(target_long
*)ptr
;
2716 ret
= target_get_monitor_def(cs
, name
, &tmp
);
2718 *pval
= (target_long
) tmp
;
2724 static void next(void)
2728 while (qemu_isspace(*pch
))
2733 static int64_t expr_sum(Monitor
*mon
);
2735 static int64_t expr_unary(Monitor
*mon
)
2744 n
= expr_unary(mon
);
2748 n
= -expr_unary(mon
);
2752 n
= ~expr_unary(mon
);
2758 expr_error(mon
, "')' expected");
2765 expr_error(mon
, "character constant expected");
2769 expr_error(mon
, "missing terminating \' character");
2779 while ((*pch
>= 'a' && *pch
<= 'z') ||
2780 (*pch
>= 'A' && *pch
<= 'Z') ||
2781 (*pch
>= '0' && *pch
<= '9') ||
2782 *pch
== '_' || *pch
== '.') {
2783 if ((q
- buf
) < sizeof(buf
) - 1)
2787 while (qemu_isspace(*pch
))
2790 ret
= get_monitor_def(®
, buf
);
2792 expr_error(mon
, "unknown register");
2797 expr_error(mon
, "unexpected end of expression");
2802 n
= strtoull(pch
, &p
, 0);
2803 if (errno
== ERANGE
) {
2804 expr_error(mon
, "number too large");
2807 expr_error(mon
, "invalid char '%c' in expression", *p
);
2810 while (qemu_isspace(*pch
))
2818 static int64_t expr_prod(Monitor
*mon
)
2823 val
= expr_unary(mon
);
2826 if (op
!= '*' && op
!= '/' && op
!= '%')
2829 val2
= expr_unary(mon
);
2838 expr_error(mon
, "division by zero");
2849 static int64_t expr_logic(Monitor
*mon
)
2854 val
= expr_prod(mon
);
2857 if (op
!= '&' && op
!= '|' && op
!= '^')
2860 val2
= expr_prod(mon
);
2877 static int64_t expr_sum(Monitor
*mon
)
2882 val
= expr_logic(mon
);
2885 if (op
!= '+' && op
!= '-')
2888 val2
= expr_logic(mon
);
2897 static int get_expr(Monitor
*mon
, int64_t *pval
, const char **pp
)
2900 if (sigsetjmp(expr_env
, 0)) {
2904 while (qemu_isspace(*pch
))
2906 *pval
= expr_sum(mon
);
2911 static int get_double(Monitor
*mon
, double *pval
, const char **pp
)
2913 const char *p
= *pp
;
2917 d
= strtod(p
, &tailp
);
2919 monitor_printf(mon
, "Number expected\n");
2922 if (d
!= d
|| d
- d
!= 0) {
2923 /* NaN or infinity */
2924 monitor_printf(mon
, "Bad number\n");
2933 * Store the command-name in cmdname, and return a pointer to
2934 * the remaining of the command string.
2936 static const char *get_command_name(const char *cmdline
,
2937 char *cmdname
, size_t nlen
)
2940 const char *p
, *pstart
;
2943 while (qemu_isspace(*p
))
2948 while (*p
!= '\0' && *p
!= '/' && !qemu_isspace(*p
))
2953 memcpy(cmdname
, pstart
, len
);
2954 cmdname
[len
] = '\0';
2959 * Read key of 'type' into 'key' and return the current
2962 static char *key_get_info(const char *type
, char **key
)
2970 p
= strchr(type
, ':');
2977 str
= g_malloc(len
+ 1);
2978 memcpy(str
, type
, len
);
2985 static int default_fmt_format
= 'x';
2986 static int default_fmt_size
= 4;
2988 static int is_valid_option(const char *c
, const char *typestr
)
2996 typestr
= strstr(typestr
, option
);
2997 return (typestr
!= NULL
);
3000 static const mon_cmd_t
*search_dispatch_table(const mon_cmd_t
*disp_table
,
3001 const char *cmdname
)
3003 const mon_cmd_t
*cmd
;
3005 for (cmd
= disp_table
; cmd
->name
!= NULL
; cmd
++) {
3006 if (compare_cmd(cmdname
, cmd
->name
)) {
3015 * Parse command name from @cmdp according to command table @table.
3016 * If blank, return NULL.
3017 * Else, if no valid command can be found, report to @mon, and return
3019 * Else, change @cmdp to point right behind the name, and return its
3020 * command table entry.
3021 * Do not assume the return value points into @table! It doesn't when
3022 * the command is found in a sub-command table.
3024 static const mon_cmd_t
*monitor_parse_command(Monitor
*mon
,
3025 const char *cmdp_start
,
3030 const mon_cmd_t
*cmd
;
3033 /* extract the command name */
3034 p
= get_command_name(*cmdp
, cmdname
, sizeof(cmdname
));
3038 cmd
= search_dispatch_table(table
, cmdname
);
3040 monitor_printf(mon
, "unknown command: '%.*s'\n",
3041 (int)(p
- cmdp_start
), cmdp_start
);
3045 /* filter out following useless space */
3046 while (qemu_isspace(*p
)) {
3051 /* search sub command */
3052 if (cmd
->sub_table
!= NULL
&& *p
!= '\0') {
3053 return monitor_parse_command(mon
, cmdp_start
, cmdp
, cmd
->sub_table
);
3060 * Parse arguments for @cmd.
3061 * If it can't be parsed, report to @mon, and return NULL.
3062 * Else, insert command arguments into a QDict, and return it.
3063 * Note: On success, caller has to free the QDict structure.
3066 static QDict
*monitor_parse_arguments(Monitor
*mon
,
3068 const mon_cmd_t
*cmd
)
3070 const char *typestr
;
3073 const char *p
= *endp
;
3075 QDict
*qdict
= qdict_new();
3077 /* parse the parameters */
3078 typestr
= cmd
->args_type
;
3080 typestr
= key_get_info(typestr
, &key
);
3092 while (qemu_isspace(*p
))
3094 if (*typestr
== '?') {
3097 /* no optional string: NULL argument */
3101 ret
= get_str(buf
, sizeof(buf
), &p
);
3105 monitor_printf(mon
, "%s: filename expected\n",
3109 monitor_printf(mon
, "%s: block device name expected\n",
3113 monitor_printf(mon
, "%s: string expected\n", cmd
->name
);
3118 qdict_put_str(qdict
, key
, buf
);
3123 QemuOptsList
*opts_list
;
3126 opts_list
= qemu_find_opts(key
);
3127 if (!opts_list
|| opts_list
->desc
->name
) {
3130 while (qemu_isspace(*p
)) {
3135 if (get_str(buf
, sizeof(buf
), &p
) < 0) {
3138 opts
= qemu_opts_parse_noisily(opts_list
, buf
, true);
3142 qemu_opts_to_qdict(opts
, qdict
);
3143 qemu_opts_del(opts
);
3148 int count
, format
, size
;
3150 while (qemu_isspace(*p
))
3156 if (qemu_isdigit(*p
)) {
3158 while (qemu_isdigit(*p
)) {
3159 count
= count
* 10 + (*p
- '0');
3197 if (*p
!= '\0' && !qemu_isspace(*p
)) {
3198 monitor_printf(mon
, "invalid char in format: '%c'\n",
3203 format
= default_fmt_format
;
3204 if (format
!= 'i') {
3205 /* for 'i', not specifying a size gives -1 as size */
3207 size
= default_fmt_size
;
3208 default_fmt_size
= size
;
3210 default_fmt_format
= format
;
3213 format
= default_fmt_format
;
3214 if (format
!= 'i') {
3215 size
= default_fmt_size
;
3220 qdict_put_int(qdict
, "count", count
);
3221 qdict_put_int(qdict
, "format", format
);
3222 qdict_put_int(qdict
, "size", size
);
3231 while (qemu_isspace(*p
))
3233 if (*typestr
== '?' || *typestr
== '.') {
3234 if (*typestr
== '?') {
3242 while (qemu_isspace(*p
))
3251 if (get_expr(mon
, &val
, &p
))
3253 /* Check if 'i' is greater than 32-bit */
3254 if ((c
== 'i') && ((val
>> 32) & 0xffffffff)) {
3255 monitor_printf(mon
, "\'%s\' has failed: ", cmd
->name
);
3256 monitor_printf(mon
, "integer is for 32-bit values\n");
3258 } else if (c
== 'M') {
3260 monitor_printf(mon
, "enter a positive value\n");
3265 qdict_put_int(qdict
, key
, val
);
3274 while (qemu_isspace(*p
)) {
3277 if (*typestr
== '?') {
3283 ret
= qemu_strtosz_MiB(p
, &end
, &val
);
3284 if (ret
< 0 || val
> INT64_MAX
) {
3285 monitor_printf(mon
, "invalid size\n");
3288 qdict_put_int(qdict
, key
, val
);
3296 while (qemu_isspace(*p
))
3298 if (*typestr
== '?') {
3304 if (get_double(mon
, &val
, &p
) < 0) {
3307 if (p
[0] && p
[1] == 's') {
3310 val
/= 1e3
; p
+= 2; break;
3312 val
/= 1e6
; p
+= 2; break;
3314 val
/= 1e9
; p
+= 2; break;
3317 if (*p
&& !qemu_isspace(*p
)) {
3318 monitor_printf(mon
, "Unknown unit suffix\n");
3321 qdict_put(qdict
, key
, qnum_from_double(val
));
3329 while (qemu_isspace(*p
)) {
3333 while (qemu_isgraph(*p
)) {
3336 if (p
- beg
== 2 && !memcmp(beg
, "on", p
- beg
)) {
3338 } else if (p
- beg
== 3 && !memcmp(beg
, "off", p
- beg
)) {
3341 monitor_printf(mon
, "Expected 'on' or 'off'\n");
3344 qdict_put_bool(qdict
, key
, val
);
3349 const char *tmp
= p
;
3356 while (qemu_isspace(*p
))
3361 if(!is_valid_option(p
, typestr
)) {
3363 monitor_printf(mon
, "%s: unsupported option -%c\n",
3375 qdict_put_bool(qdict
, key
, true);
3382 /* package all remaining string */
3385 while (qemu_isspace(*p
)) {
3388 if (*typestr
== '?') {
3391 /* no remaining string: NULL argument */
3397 monitor_printf(mon
, "%s: string expected\n",
3401 qdict_put_str(qdict
, key
, p
);
3407 monitor_printf(mon
, "%s: unknown type '%c'\n", cmd
->name
, c
);
3413 /* check that all arguments were parsed */
3414 while (qemu_isspace(*p
))
3417 monitor_printf(mon
, "%s: extraneous characters at the end of line\n",
3425 qobject_unref(qdict
);
3430 static void handle_hmp_command(Monitor
*mon
, const char *cmdline
)
3433 const mon_cmd_t
*cmd
;
3434 const char *cmd_start
= cmdline
;
3436 trace_handle_hmp_command(mon
, cmdline
);
3438 if (runstate_check(RUN_STATE_PRECONFIG
)) {
3439 monitor_printf(mon
, "HMP not available in preconfig state, "
3440 "use QMP instead\n");
3444 cmd
= monitor_parse_command(mon
, cmdline
, &cmdline
, mon
->cmd_table
);
3449 qdict
= monitor_parse_arguments(mon
, &cmdline
, cmd
);
3451 while (cmdline
> cmd_start
&& qemu_isspace(cmdline
[-1])) {
3454 monitor_printf(mon
, "Try \"help %.*s\" for more information\n",
3455 (int)(cmdline
- cmd_start
), cmd_start
);
3459 cmd
->cmd(mon
, qdict
);
3460 qobject_unref(qdict
);
3463 static void cmd_completion(Monitor
*mon
, const char *name
, const char *list
)
3465 const char *p
, *pstart
;
3474 p
= pstart
+ strlen(pstart
);
3476 if (len
> sizeof(cmd
) - 2)
3477 len
= sizeof(cmd
) - 2;
3478 memcpy(cmd
, pstart
, len
);
3480 if (name
[0] == '\0' || !strncmp(name
, cmd
, strlen(name
))) {
3481 readline_add_completion(mon
->rs
, cmd
);
3489 static void file_completion(Monitor
*mon
, const char *input
)
3494 char file
[1024], file_prefix
[1024];
3498 p
= strrchr(input
, '/');
3501 pstrcpy(file_prefix
, sizeof(file_prefix
), input
);
3502 pstrcpy(path
, sizeof(path
), ".");
3504 input_path_len
= p
- input
+ 1;
3505 memcpy(path
, input
, input_path_len
);
3506 if (input_path_len
> sizeof(path
) - 1)
3507 input_path_len
= sizeof(path
) - 1;
3508 path
[input_path_len
] = '\0';
3509 pstrcpy(file_prefix
, sizeof(file_prefix
), p
+ 1);
3512 ffs
= opendir(path
);
3521 if (strcmp(d
->d_name
, ".") == 0 || strcmp(d
->d_name
, "..") == 0) {
3525 if (strstart(d
->d_name
, file_prefix
, NULL
)) {
3526 memcpy(file
, input
, input_path_len
);
3527 if (input_path_len
< sizeof(file
))
3528 pstrcpy(file
+ input_path_len
, sizeof(file
) - input_path_len
,
3530 /* stat the file to find out if it's a directory.
3531 * In that case add a slash to speed up typing long paths
3533 if (stat(file
, &sb
) == 0 && S_ISDIR(sb
.st_mode
)) {
3534 pstrcat(file
, sizeof(file
), "/");
3536 readline_add_completion(mon
->rs
, file
);
3542 static const char *next_arg_type(const char *typestr
)
3544 const char *p
= strchr(typestr
, ':');
3545 return (p
!= NULL
? ++p
: typestr
);
3548 static void add_completion_option(ReadLineState
*rs
, const char *str
,
3551 if (!str
|| !option
) {
3554 if (!strncmp(option
, str
, strlen(str
))) {
3555 readline_add_completion(rs
, option
);
3559 void chardev_add_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3562 ChardevBackendInfoList
*list
, *start
;
3568 readline_set_completion_index(rs
, len
);
3570 start
= list
= qmp_query_chardev_backends(NULL
);
3572 const char *chr_name
= list
->value
->name
;
3574 if (!strncmp(chr_name
, str
, len
)) {
3575 readline_add_completion(rs
, chr_name
);
3579 qapi_free_ChardevBackendInfoList(start
);
3582 void netdev_add_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3591 readline_set_completion_index(rs
, len
);
3592 for (i
= 0; i
< NET_CLIENT_DRIVER__MAX
; i
++) {
3593 add_completion_option(rs
, str
, NetClientDriver_str(i
));
3597 void device_add_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3607 readline_set_completion_index(rs
, len
);
3608 list
= elt
= object_class_get_list(TYPE_DEVICE
, false);
3611 DeviceClass
*dc
= OBJECT_CLASS_CHECK(DeviceClass
, elt
->data
,
3613 name
= object_class_get_name(OBJECT_CLASS(dc
));
3615 if (dc
->user_creatable
3616 && !strncmp(name
, str
, len
)) {
3617 readline_add_completion(rs
, name
);
3624 void object_add_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3634 readline_set_completion_index(rs
, len
);
3635 list
= elt
= object_class_get_list(TYPE_USER_CREATABLE
, false);
3639 name
= object_class_get_name(OBJECT_CLASS(elt
->data
));
3640 if (!strncmp(name
, str
, len
) && strcmp(name
, TYPE_USER_CREATABLE
)) {
3641 readline_add_completion(rs
, name
);
3648 static void peripheral_device_del_completion(ReadLineState
*rs
,
3649 const char *str
, size_t len
)
3651 Object
*peripheral
= container_get(qdev_get_machine(), "/peripheral");
3652 GSList
*list
, *item
;
3654 list
= qdev_build_hotpluggable_device_list(peripheral
);
3659 for (item
= list
; item
; item
= g_slist_next(item
)) {
3660 DeviceState
*dev
= item
->data
;
3662 if (dev
->id
&& !strncmp(str
, dev
->id
, len
)) {
3663 readline_add_completion(rs
, dev
->id
);
3670 void chardev_remove_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3673 ChardevInfoList
*list
, *start
;
3679 readline_set_completion_index(rs
, len
);
3681 start
= list
= qmp_query_chardev(NULL
);
3683 ChardevInfo
*chr
= list
->value
;
3685 if (!strncmp(chr
->label
, str
, len
)) {
3686 readline_add_completion(rs
, chr
->label
);
3690 qapi_free_ChardevInfoList(start
);
3693 static void ringbuf_completion(ReadLineState
*rs
, const char *str
)
3696 ChardevInfoList
*list
, *start
;
3699 readline_set_completion_index(rs
, len
);
3701 start
= list
= qmp_query_chardev(NULL
);
3703 ChardevInfo
*chr_info
= list
->value
;
3705 if (!strncmp(chr_info
->label
, str
, len
)) {
3706 Chardev
*chr
= qemu_chr_find(chr_info
->label
);
3707 if (chr
&& CHARDEV_IS_RINGBUF(chr
)) {
3708 readline_add_completion(rs
, chr_info
->label
);
3713 qapi_free_ChardevInfoList(start
);
3716 void ringbuf_write_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3721 ringbuf_completion(rs
, str
);
3724 void device_del_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3733 readline_set_completion_index(rs
, len
);
3734 peripheral_device_del_completion(rs
, str
, len
);
3737 void object_del_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3739 ObjectPropertyInfoList
*list
, *start
;
3746 readline_set_completion_index(rs
, len
);
3748 start
= list
= qmp_qom_list("/objects", NULL
);
3750 ObjectPropertyInfo
*info
= list
->value
;
3752 if (!strncmp(info
->type
, "child<", 5)
3753 && !strncmp(info
->name
, str
, len
)) {
3754 readline_add_completion(rs
, info
->name
);
3758 qapi_free_ObjectPropertyInfoList(start
);
3761 void sendkey_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3770 sep
= strrchr(str
, '-');
3775 readline_set_completion_index(rs
, len
);
3776 for (i
= 0; i
< Q_KEY_CODE__MAX
; i
++) {
3777 if (!strncmp(str
, QKeyCode_str(i
), len
)) {
3778 readline_add_completion(rs
, QKeyCode_str(i
));
3783 void set_link_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3788 readline_set_completion_index(rs
, len
);
3790 NetClientState
*ncs
[MAX_QUEUE_NUM
];
3792 count
= qemu_find_net_clients_except(NULL
, ncs
,
3793 NET_CLIENT_DRIVER_NONE
,
3795 for (i
= 0; i
< MIN(count
, MAX_QUEUE_NUM
); i
++) {
3796 const char *name
= ncs
[i
]->name
;
3797 if (!strncmp(str
, name
, len
)) {
3798 readline_add_completion(rs
, name
);
3801 } else if (nb_args
== 3) {
3802 add_completion_option(rs
, str
, "on");
3803 add_completion_option(rs
, str
, "off");
3807 void netdev_del_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3810 NetClientState
*ncs
[MAX_QUEUE_NUM
];
3817 readline_set_completion_index(rs
, len
);
3818 count
= qemu_find_net_clients_except(NULL
, ncs
, NET_CLIENT_DRIVER_NIC
,
3820 for (i
= 0; i
< MIN(count
, MAX_QUEUE_NUM
); i
++) {
3822 const char *name
= ncs
[i
]->name
;
3823 if (strncmp(str
, name
, len
)) {
3826 opts
= qemu_opts_find(qemu_find_opts_err("netdev", NULL
), name
);
3828 readline_add_completion(rs
, name
);
3833 void info_trace_events_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3838 readline_set_completion_index(rs
, len
);
3840 TraceEventIter iter
;
3842 char *pattern
= g_strdup_printf("%s*", str
);
3843 trace_event_iter_init(&iter
, pattern
);
3844 while ((ev
= trace_event_iter_next(&iter
)) != NULL
) {
3845 readline_add_completion(rs
, trace_event_get_name(ev
));
3851 void trace_event_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3856 readline_set_completion_index(rs
, len
);
3858 TraceEventIter iter
;
3860 char *pattern
= g_strdup_printf("%s*", str
);
3861 trace_event_iter_init(&iter
, pattern
);
3862 while ((ev
= trace_event_iter_next(&iter
)) != NULL
) {
3863 readline_add_completion(rs
, trace_event_get_name(ev
));
3866 } else if (nb_args
== 3) {
3867 add_completion_option(rs
, str
, "on");
3868 add_completion_option(rs
, str
, "off");
3872 void watchdog_action_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3879 readline_set_completion_index(rs
, strlen(str
));
3880 for (i
= 0; i
< WATCHDOG_ACTION__MAX
; i
++) {
3881 add_completion_option(rs
, str
, WatchdogAction_str(i
));
3885 void migrate_set_capability_completion(ReadLineState
*rs
, int nb_args
,
3891 readline_set_completion_index(rs
, len
);
3894 for (i
= 0; i
< MIGRATION_CAPABILITY__MAX
; i
++) {
3895 const char *name
= MigrationCapability_str(i
);
3896 if (!strncmp(str
, name
, len
)) {
3897 readline_add_completion(rs
, name
);
3900 } else if (nb_args
== 3) {
3901 add_completion_option(rs
, str
, "on");
3902 add_completion_option(rs
, str
, "off");
3906 void migrate_set_parameter_completion(ReadLineState
*rs
, int nb_args
,
3912 readline_set_completion_index(rs
, len
);
3915 for (i
= 0; i
< MIGRATION_PARAMETER__MAX
; i
++) {
3916 const char *name
= MigrationParameter_str(i
);
3917 if (!strncmp(str
, name
, len
)) {
3918 readline_add_completion(rs
, name
);
3924 static void vm_completion(ReadLineState
*rs
, const char *str
)
3927 BlockDriverState
*bs
;
3928 BdrvNextIterator it
;
3931 readline_set_completion_index(rs
, len
);
3933 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
3934 SnapshotInfoList
*snapshots
, *snapshot
;
3935 AioContext
*ctx
= bdrv_get_aio_context(bs
);
3938 aio_context_acquire(ctx
);
3939 if (bdrv_can_snapshot(bs
)) {
3940 ok
= bdrv_query_snapshot_info_list(bs
, &snapshots
, NULL
) == 0;
3942 aio_context_release(ctx
);
3947 snapshot
= snapshots
;
3949 char *completion
= snapshot
->value
->name
;
3950 if (!strncmp(str
, completion
, len
)) {
3951 readline_add_completion(rs
, completion
);
3953 completion
= snapshot
->value
->id
;
3954 if (!strncmp(str
, completion
, len
)) {
3955 readline_add_completion(rs
, completion
);
3957 snapshot
= snapshot
->next
;
3959 qapi_free_SnapshotInfoList(snapshots
);
3964 void delvm_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3967 vm_completion(rs
, str
);
3971 void loadvm_completion(ReadLineState
*rs
, int nb_args
, const char *str
)
3974 vm_completion(rs
, str
);
3978 static void monitor_find_completion_by_table(Monitor
*mon
,
3979 const mon_cmd_t
*cmd_table
,
3983 const char *cmdname
;
3985 const char *ptype
, *old_ptype
, *str
, *name
;
3986 const mon_cmd_t
*cmd
;
3987 BlockBackend
*blk
= NULL
;
3990 /* command completion */
3995 readline_set_completion_index(mon
->rs
, strlen(cmdname
));
3996 for (cmd
= cmd_table
; cmd
->name
!= NULL
; cmd
++) {
3997 cmd_completion(mon
, cmdname
, cmd
->name
);
4000 /* find the command */
4001 for (cmd
= cmd_table
; cmd
->name
!= NULL
; cmd
++) {
4002 if (compare_cmd(args
[0], cmd
->name
)) {
4010 if (cmd
->sub_table
) {
4011 /* do the job again */
4012 monitor_find_completion_by_table(mon
, cmd
->sub_table
,
4013 &args
[1], nb_args
- 1);
4016 if (cmd
->command_completion
) {
4017 cmd
->command_completion(mon
->rs
, nb_args
, args
[nb_args
- 1]);
4021 ptype
= next_arg_type(cmd
->args_type
);
4022 for(i
= 0; i
< nb_args
- 2; i
++) {
4023 if (*ptype
!= '\0') {
4024 ptype
= next_arg_type(ptype
);
4025 while (*ptype
== '?')
4026 ptype
= next_arg_type(ptype
);
4029 str
= args
[nb_args
- 1];
4031 while (*ptype
== '-' && old_ptype
!= ptype
) {
4033 ptype
= next_arg_type(ptype
);
4037 /* file completion */
4038 readline_set_completion_index(mon
->rs
, strlen(str
));
4039 file_completion(mon
, str
);
4042 /* block device name completion */
4043 readline_set_completion_index(mon
->rs
, strlen(str
));
4044 while ((blk
= blk_next(blk
)) != NULL
) {
4045 name
= blk_name(blk
);
4046 if (str
[0] == '\0' ||
4047 !strncmp(name
, str
, strlen(str
))) {
4048 readline_add_completion(mon
->rs
, name
);
4054 if (!strcmp(cmd
->name
, "help|?")) {
4055 monitor_find_completion_by_table(mon
, cmd_table
,
4056 &args
[1], nb_args
- 1);
4065 static void monitor_find_completion(void *opaque
,
4066 const char *cmdline
)
4068 Monitor
*mon
= opaque
;
4069 char *args
[MAX_ARGS
];
4072 /* 1. parse the cmdline */
4073 if (parse_cmdline(cmdline
, &nb_args
, args
) < 0) {
4077 /* if the line ends with a space, it means we want to complete the
4079 len
= strlen(cmdline
);
4080 if (len
> 0 && qemu_isspace(cmdline
[len
- 1])) {
4081 if (nb_args
>= MAX_ARGS
) {
4084 args
[nb_args
++] = g_strdup("");
4087 /* 2. auto complete according to args */
4088 monitor_find_completion_by_table(mon
, mon
->cmd_table
, args
, nb_args
);
4091 free_cmdline_args(args
, nb_args
);
4094 static int monitor_can_read(void *opaque
)
4096 Monitor
*mon
= opaque
;
4098 return !atomic_mb_read(&mon
->suspend_cnt
);
4102 * 1. This function takes ownership of rsp, err, and id.
4103 * 2. rsp, err, and id may be NULL.
4104 * 3. If err != NULL then rsp must be NULL.
4106 static void monitor_qmp_respond(Monitor
*mon
, QObject
*rsp
,
4107 Error
*err
, QObject
*id
)
4109 QDict
*qdict
= NULL
;
4113 qdict
= qdict_new();
4114 qdict_put_obj(qdict
, "error", qmp_build_error_object(err
));
4116 rsp
= QOBJECT(qdict
);
4121 qdict_put_obj(qobject_to(QDict
, rsp
), "id", qobject_ref(id
));
4124 monitor_json_emitter(mon
, rsp
);
4132 * Dispatch one single QMP request. The function will free the req_obj
4133 * and objects inside it before return.
4135 static void monitor_qmp_dispatch_one(QMPRequest
*req_obj
)
4137 Monitor
*mon
, *old_mon
;
4138 QObject
*req
, *rsp
= NULL
, *id
;
4144 need_resume
= req_obj
->need_resume
;
4148 if (trace_event_get_state_backends(TRACE_HANDLE_QMP_COMMAND
)) {
4149 QString
*req_json
= qobject_to_json(req
);
4150 trace_handle_qmp_command(mon
, qstring_get_str(req_json
));
4151 qobject_unref(req_json
);
4157 rsp
= qmp_dispatch(mon
->qmp
.commands
, req
);
4161 /* Respond if necessary */
4162 monitor_qmp_respond(mon
, rsp
, NULL
, id
);
4164 /* This pairs with the monitor_suspend() in handle_qmp_command(). */
4166 monitor_resume(mon
);
4173 * Pop one QMP request from monitor queues, return NULL if not found.
4174 * We are using round-robin fashion to pop the request, to avoid
4175 * processing commands only on a very busy monitor. To achieve that,
4176 * when we process one request on a specific monitor, we put that
4177 * monitor to the end of mon_list queue.
4179 static QMPRequest
*monitor_qmp_requests_pop_one(void)
4181 QMPRequest
*req_obj
= NULL
;
4184 qemu_mutex_lock(&monitor_lock
);
4186 QTAILQ_FOREACH(mon
, &mon_list
, entry
) {
4187 qemu_mutex_lock(&mon
->qmp
.qmp_queue_lock
);
4188 req_obj
= g_queue_pop_head(mon
->qmp
.qmp_requests
);
4189 qemu_mutex_unlock(&mon
->qmp
.qmp_queue_lock
);
4197 * We found one request on the monitor. Degrade this monitor's
4198 * priority to lowest by re-inserting it to end of queue.
4200 QTAILQ_REMOVE(&mon_list
, mon
, entry
);
4201 QTAILQ_INSERT_TAIL(&mon_list
, mon
, entry
);
4204 qemu_mutex_unlock(&monitor_lock
);
4209 static void monitor_qmp_bh_dispatcher(void *data
)
4211 QMPRequest
*req_obj
= monitor_qmp_requests_pop_one();
4214 trace_monitor_qmp_cmd_in_band(qobject_get_try_str(req_obj
->id
) ?: "");
4215 monitor_qmp_dispatch_one(req_obj
);
4216 /* Reschedule instead of looping so the main loop stays responsive */
4217 qemu_bh_schedule(mon_global
.qmp_dispatcher_bh
);
4221 #define QMP_REQ_QUEUE_LEN_MAX (8)
4223 static void handle_qmp_command(JSONMessageParser
*parser
, GQueue
*tokens
)
4225 QObject
*req
, *id
= NULL
;
4226 QDict
*qdict
= NULL
;
4227 MonitorQMP
*mon_qmp
= container_of(parser
, MonitorQMP
, parser
);
4228 Monitor
*mon
= container_of(mon_qmp
, Monitor
, qmp
);
4230 QMPRequest
*req_obj
;
4232 req
= json_parser_parse_err(tokens
, NULL
, &err
);
4234 /* json_parser_parse_err() sucks: can fail without setting @err */
4235 error_setg(&err
, QERR_JSON_PARSING
);
4241 /* Check against the request in general layout */
4242 qdict
= qmp_dispatch_check_obj(req
, &err
);
4247 /* Check against OOB specific */
4248 if (!qmp_cmd_oob_check(mon
, qdict
, &err
)) {
4252 id
= qdict_get(qdict
, "id");
4254 /* When OOB is enabled, the "id" field is mandatory. */
4255 if (qmp_oob_enabled(mon
) && !id
) {
4256 error_setg(&err
, "Out-Of-Band capability requires that "
4257 "every command contains an 'id' field");
4261 req_obj
= g_new0(QMPRequest
, 1);
4263 req_obj
->id
= qobject_ref(id
);
4265 req_obj
->need_resume
= false;
4267 qdict_del(qdict
, "id");
4269 if (qmp_is_oob(qdict
)) {
4270 /* Out-Of-Band (OOB) requests are executed directly in parser. */
4271 trace_monitor_qmp_cmd_out_of_band(qobject_get_try_str(req_obj
->id
)
4273 monitor_qmp_dispatch_one(req_obj
);
4277 /* Protect qmp_requests and fetching its length. */
4278 qemu_mutex_lock(&mon
->qmp
.qmp_queue_lock
);
4281 * If OOB is not enabled on the current monitor, we'll emulate the
4282 * old behavior that we won't process the current monitor any more
4283 * until it has responded. This helps make sure that as long as
4284 * OOB is not enabled, the server will never drop any command.
4286 if (!qmp_oob_enabled(mon
)) {
4287 monitor_suspend(mon
);
4288 req_obj
->need_resume
= true;
4290 /* Drop the request if queue is full. */
4291 if (mon
->qmp
.qmp_requests
->length
>= QMP_REQ_QUEUE_LEN_MAX
) {
4292 qemu_mutex_unlock(&mon
->qmp
.qmp_queue_lock
);
4293 qapi_event_send_command_dropped(id
,
4294 COMMAND_DROP_REASON_QUEUE_FULL
,
4296 qmp_request_free(req_obj
);
4302 * Put the request to the end of queue so that requests will be
4303 * handled in time order. Ownership for req_obj, req, id,
4304 * etc. will be delivered to the handler side.
4306 g_queue_push_tail(mon
->qmp
.qmp_requests
, req_obj
);
4307 qemu_mutex_unlock(&mon
->qmp
.qmp_queue_lock
);
4309 /* Kick the dispatcher routine */
4310 qemu_bh_schedule(mon_global
.qmp_dispatcher_bh
);
4314 monitor_qmp_respond(mon
, NULL
, err
, NULL
);
4318 static void monitor_qmp_read(void *opaque
, const uint8_t *buf
, int size
)
4320 Monitor
*mon
= opaque
;
4322 json_message_parser_feed(&mon
->qmp
.parser
, (const char *) buf
, size
);
4325 static void monitor_read(void *opaque
, const uint8_t *buf
, int size
)
4327 Monitor
*old_mon
= cur_mon
;
4333 for (i
= 0; i
< size
; i
++)
4334 readline_handle_byte(cur_mon
->rs
, buf
[i
]);
4336 if (size
== 0 || buf
[size
- 1] != 0)
4337 monitor_printf(cur_mon
, "corrupted command\n");
4339 handle_hmp_command(cur_mon
, (char *)buf
);
4345 static void monitor_command_cb(void *opaque
, const char *cmdline
,
4346 void *readline_opaque
)
4348 Monitor
*mon
= opaque
;
4350 monitor_suspend(mon
);
4351 handle_hmp_command(mon
, cmdline
);
4352 monitor_resume(mon
);
4355 int monitor_suspend(Monitor
*mon
)
4357 if (monitor_is_hmp_non_interactive(mon
)) {
4361 atomic_inc(&mon
->suspend_cnt
);
4363 if (monitor_is_qmp(mon
)) {
4365 * Kick iothread to make sure this takes effect. It'll be
4366 * evaluated again in prepare() of the watch object.
4368 aio_notify(iothread_get_aio_context(mon_global
.mon_iothread
));
4371 trace_monitor_suspend(mon
, 1);
4375 void monitor_resume(Monitor
*mon
)
4377 if (monitor_is_hmp_non_interactive(mon
)) {
4381 if (atomic_dec_fetch(&mon
->suspend_cnt
) == 0) {
4382 if (monitor_is_qmp(mon
)) {
4384 * For QMP monitors that are running in IOThread, let's
4385 * kick the thread in case it's sleeping.
4387 if (mon
->use_io_thr
) {
4388 aio_notify(iothread_get_aio_context(mon_global
.mon_iothread
));
4392 readline_show_prompt(mon
->rs
);
4395 trace_monitor_suspend(mon
, -1);
4398 static QObject
*get_qmp_greeting(Monitor
*mon
)
4400 QList
*cap_list
= qlist_new();
4401 QObject
*ver
= NULL
;
4404 qmp_marshal_query_version(NULL
, &ver
, NULL
);
4406 for (cap
= 0; cap
< QMP_CAPABILITY__MAX
; cap
++) {
4407 if (!mon
->use_io_thr
&& cap
== QMP_CAPABILITY_OOB
) {
4408 /* Monitors that are not using IOThread won't support OOB */
4411 qlist_append_str(cap_list
, QMPCapability_str(cap
));
4414 return qobject_from_jsonf("{'QMP': {'version': %p, 'capabilities': %p}}",
4418 static void monitor_qmp_caps_reset(Monitor
*mon
)
4420 memset(mon
->qmp
.qmp_caps
, 0, sizeof(mon
->qmp
.qmp_caps
));
4423 static void monitor_qmp_event(void *opaque
, int event
)
4426 Monitor
*mon
= opaque
;
4429 case CHR_EVENT_OPENED
:
4430 mon
->qmp
.commands
= &qmp_cap_negotiation_commands
;
4431 monitor_qmp_caps_reset(mon
);
4432 data
= get_qmp_greeting(mon
);
4433 monitor_json_emitter(mon
, data
);
4434 qobject_unref(data
);
4437 case CHR_EVENT_CLOSED
:
4438 monitor_qmp_cleanup_queues(mon
);
4439 json_message_parser_destroy(&mon
->qmp
.parser
);
4440 json_message_parser_init(&mon
->qmp
.parser
, handle_qmp_command
);
4442 monitor_fdsets_cleanup();
4447 static void monitor_event(void *opaque
, int event
)
4449 Monitor
*mon
= opaque
;
4452 case CHR_EVENT_MUX_IN
:
4453 qemu_mutex_lock(&mon
->mon_lock
);
4455 qemu_mutex_unlock(&mon
->mon_lock
);
4456 if (mon
->reset_seen
) {
4457 readline_restart(mon
->rs
);
4458 monitor_resume(mon
);
4461 atomic_mb_set(&mon
->suspend_cnt
, 0);
4465 case CHR_EVENT_MUX_OUT
:
4466 if (mon
->reset_seen
) {
4467 if (atomic_mb_read(&mon
->suspend_cnt
) == 0) {
4468 monitor_printf(mon
, "\n");
4471 monitor_suspend(mon
);
4473 atomic_inc(&mon
->suspend_cnt
);
4475 qemu_mutex_lock(&mon
->mon_lock
);
4477 qemu_mutex_unlock(&mon
->mon_lock
);
4480 case CHR_EVENT_OPENED
:
4481 monitor_printf(mon
, "QEMU %s monitor - type 'help' for more "
4482 "information\n", QEMU_VERSION
);
4483 if (!mon
->mux_out
) {
4484 readline_restart(mon
->rs
);
4485 readline_show_prompt(mon
->rs
);
4487 mon
->reset_seen
= 1;
4491 case CHR_EVENT_CLOSED
:
4493 monitor_fdsets_cleanup();
4499 compare_mon_cmd(const void *a
, const void *b
)
4501 return strcmp(((const mon_cmd_t
*)a
)->name
,
4502 ((const mon_cmd_t
*)b
)->name
);
4505 static void sortcmdlist(void)
4508 int elem_size
= sizeof(mon_cmd_t
);
4510 array_num
= sizeof(mon_cmds
)/elem_size
-1;
4511 qsort((void *)mon_cmds
, array_num
, elem_size
, compare_mon_cmd
);
4513 array_num
= sizeof(info_cmds
)/elem_size
-1;
4514 qsort((void *)info_cmds
, array_num
, elem_size
, compare_mon_cmd
);
4517 static GMainContext
*monitor_get_io_context(void)
4519 return iothread_get_g_main_context(mon_global
.mon_iothread
);
4522 static AioContext
*monitor_get_aio_context(void)
4524 return iothread_get_aio_context(mon_global
.mon_iothread
);
4527 static void monitor_iothread_init(void)
4529 mon_global
.mon_iothread
= iothread_create("mon_iothread",
4533 * This MUST be on main loop thread since we have commands that
4534 * have assumption to be run on main loop thread. It would be
4535 * nice that one day we can remove this assumption in the future.
4537 mon_global
.qmp_dispatcher_bh
= aio_bh_new(iohandler_get_aio_context(),
4538 monitor_qmp_bh_dispatcher
,
4542 * Unlike the dispatcher BH, this must be run on the monitor IO
4543 * thread, so that monitors that are using IO thread will make
4544 * sure read/write operations are all done on the IO thread.
4546 mon_global
.qmp_respond_bh
= aio_bh_new(monitor_get_aio_context(),
4547 monitor_qmp_bh_responder
,
4551 void monitor_init_globals(void)
4553 monitor_init_qmp_commands();
4554 monitor_qapi_event_init();
4556 qemu_mutex_init(&monitor_lock
);
4557 qemu_mutex_init(&mon_fdsets_lock
);
4558 monitor_iothread_init();
4561 /* These functions just adapt the readline interface in a typesafe way. We
4562 * could cast function pointers but that discards compiler checks.
4564 static void GCC_FMT_ATTR(2, 3) monitor_readline_printf(void *opaque
,
4565 const char *fmt
, ...)
4569 monitor_vprintf(opaque
, fmt
, ap
);
4573 static void monitor_readline_flush(void *opaque
)
4575 monitor_flush(opaque
);
4579 * Print to current monitor if we have one, else to stderr.
4580 * TODO should return int, so callers can calculate width, but that
4581 * requires surgery to monitor_vprintf(). Left for another day.
4583 void error_vprintf(const char *fmt
, va_list ap
)
4585 if (cur_mon
&& !monitor_cur_is_qmp()) {
4586 monitor_vprintf(cur_mon
, fmt
, ap
);
4588 vfprintf(stderr
, fmt
, ap
);
4592 void error_vprintf_unless_qmp(const char *fmt
, va_list ap
)
4594 if (cur_mon
&& !monitor_cur_is_qmp()) {
4595 monitor_vprintf(cur_mon
, fmt
, ap
);
4596 } else if (!cur_mon
) {
4597 vfprintf(stderr
, fmt
, ap
);
4601 static void monitor_list_append(Monitor
*mon
)
4603 qemu_mutex_lock(&monitor_lock
);
4604 QTAILQ_INSERT_HEAD(&mon_list
, mon
, entry
);
4605 qemu_mutex_unlock(&monitor_lock
);
4608 static void monitor_qmp_setup_handlers_bh(void *opaque
)
4610 Monitor
*mon
= opaque
;
4611 GMainContext
*context
;
4613 if (mon
->use_io_thr
) {
4615 * When use_io_thr is set, we use the global shared dedicated
4616 * IO thread for this monitor to handle input/output.
4618 context
= monitor_get_io_context();
4619 /* We should have inited globals before reaching here. */
4622 /* The default main loop, which is the main thread */
4626 qemu_chr_fe_set_handlers(&mon
->chr
, monitor_can_read
, monitor_qmp_read
,
4627 monitor_qmp_event
, NULL
, mon
, context
, true);
4628 monitor_list_append(mon
);
4631 void monitor_init(Chardev
*chr
, int flags
)
4633 Monitor
*mon
= g_malloc(sizeof(*mon
));
4634 bool use_readline
= flags
& MONITOR_USE_READLINE
;
4635 bool use_oob
= flags
& MONITOR_USE_OOB
;
4638 if (CHARDEV_IS_MUX(chr
)) {
4639 error_report("Monitor Out-Of-Band is not supported with "
4640 "MUX typed chardev backend");
4644 error_report("Monitor Out-Of-band is only supported by QMP");
4649 monitor_data_init(mon
, false, use_oob
);
4651 qemu_chr_fe_init(&mon
->chr
, chr
, &error_abort
);
4654 mon
->rs
= readline_init(monitor_readline_printf
,
4655 monitor_readline_flush
,
4657 monitor_find_completion
);
4658 monitor_read_command(mon
, 0);
4661 if (monitor_is_qmp(mon
)) {
4662 qemu_chr_fe_set_echo(&mon
->chr
, true);
4663 json_message_parser_init(&mon
->qmp
.parser
, handle_qmp_command
);
4664 if (mon
->use_io_thr
) {
4666 * Make sure the old iowatch is gone. It's possible when
4667 * e.g. the chardev is in client mode, with wait=on.
4669 remove_fd_in_watch(chr
);
4671 * We can't call qemu_chr_fe_set_handlers() directly here
4672 * since during the procedure the chardev will be active
4673 * and running in monitor iothread, while we'll still do
4674 * something before returning from it, which is a possible
4675 * race too. To avoid that, we just create a BH to setup
4678 aio_bh_schedule_oneshot(monitor_get_aio_context(),
4679 monitor_qmp_setup_handlers_bh
, mon
);
4680 /* We'll add this to mon_list in the BH when setup done */
4683 qemu_chr_fe_set_handlers(&mon
->chr
, monitor_can_read
,
4684 monitor_qmp_read
, monitor_qmp_event
,
4685 NULL
, mon
, NULL
, true);
4688 qemu_chr_fe_set_handlers(&mon
->chr
, monitor_can_read
, monitor_read
,
4689 monitor_event
, NULL
, mon
, NULL
, true);
4692 monitor_list_append(mon
);
4695 void monitor_cleanup(void)
4697 Monitor
*mon
, *next
;
4700 * We need to explicitly stop the iothread (but not destroy it),
4701 * cleanup the monitor resources, then destroy the iothread since
4702 * we need to unregister from chardev below in
4703 * monitor_data_destroy(), and chardev is not thread-safe yet
4705 iothread_stop(mon_global
.mon_iothread
);
4708 * After we have IOThread to send responses, it's possible that
4709 * when we stop the IOThread there are still replies queued in the
4710 * responder queue. Flush all of them. Note that even after this
4711 * flush it's still possible that out buffer is not flushed.
4712 * It'll be done in below monitor_flush() as the last resort.
4714 monitor_qmp_bh_responder(NULL
);
4716 qemu_mutex_lock(&monitor_lock
);
4717 QTAILQ_FOREACH_SAFE(mon
, &mon_list
, entry
, next
) {
4718 QTAILQ_REMOVE(&mon_list
, mon
, entry
);
4720 monitor_data_destroy(mon
);
4723 qemu_mutex_unlock(&monitor_lock
);
4725 /* QEMUBHs needs to be deleted before destroying the IOThread. */
4726 qemu_bh_delete(mon_global
.qmp_dispatcher_bh
);
4727 mon_global
.qmp_dispatcher_bh
= NULL
;
4728 qemu_bh_delete(mon_global
.qmp_respond_bh
);
4729 mon_global
.qmp_respond_bh
= NULL
;
4731 iothread_destroy(mon_global
.mon_iothread
);
4732 mon_global
.mon_iothread
= NULL
;
4735 QemuOptsList qemu_mon_opts
= {
4737 .implied_opt_name
= "chardev",
4738 .head
= QTAILQ_HEAD_INITIALIZER(qemu_mon_opts
.head
),
4742 .type
= QEMU_OPT_STRING
,
4745 .type
= QEMU_OPT_STRING
,
4748 .type
= QEMU_OPT_BOOL
,
4751 .type
= QEMU_OPT_BOOL
,
4753 { /* end of list */ }
4758 void qmp_rtc_reset_reinjection(Error
**errp
)
4760 error_setg(errp
, QERR_FEATURE_DISABLED
, "rtc-reset-reinjection");
4763 SevInfo
*qmp_query_sev(Error
**errp
)
4765 error_setg(errp
, QERR_FEATURE_DISABLED
, "query-sev");
4769 SevLaunchMeasureInfo
*qmp_query_sev_launch_measure(Error
**errp
)
4771 error_setg(errp
, QERR_FEATURE_DISABLED
, "query-sev-launch-measure");
4775 SevCapability
*qmp_query_sev_capabilities(Error
**errp
)
4777 error_setg(errp
, QERR_FEATURE_DISABLED
, "query-sev-capabilities");
4782 #ifndef TARGET_S390X
4783 void qmp_dump_skeys(const char *filename
, Error
**errp
)
4785 error_setg(errp
, QERR_FEATURE_DISABLED
, "dump-skeys");
4790 GICCapabilityList
*qmp_query_gic_capabilities(Error
**errp
)
4792 error_setg(errp
, QERR_FEATURE_DISABLED
, "query-gic-capabilities");
4797 HotpluggableCPUList
*qmp_query_hotpluggable_cpus(Error
**errp
)
4799 MachineState
*ms
= MACHINE(qdev_get_machine());
4800 MachineClass
*mc
= MACHINE_GET_CLASS(ms
);
4802 if (!mc
->has_hotpluggable_cpus
) {
4803 error_setg(errp
, QERR_FEATURE_DISABLED
, "query-hotpluggable-cpus");
4807 return machine_query_hotpluggable_cpus(ms
);