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