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