]> git.proxmox.com Git - mirror_qemu.git/blame - monitor.c
baum: Fix build with debugging enabled
[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 */
511d2b14 24#include <dirent.h>
87ecb68b 25#include "hw/hw.h"
b4a42f81 26#include "monitor/qdev.h"
87ecb68b 27#include "hw/usb.h"
0d09e41a 28#include "hw/i386/pc.h"
a2cb15b0 29#include "hw/pci/pci.h"
0d09e41a 30#include "sysemu/watchdog.h"
45a50b16 31#include "hw/loader.h"
022c62cb 32#include "exec/gdbstub.h"
1422e32d 33#include "net/net.h"
68ac40d2 34#include "net/slirp.h"
dccfcd0e 35#include "sysemu/char.h"
7572150c 36#include "ui/qemu-spice.h"
9c17d615 37#include "sysemu/sysemu.h"
e35704ba 38#include "sysemu/numa.h"
83c9089e 39#include "monitor/monitor.h"
0150cd81 40#include "qemu/readline.h"
28ecbaee 41#include "ui/console.h"
c751a74a 42#include "ui/input.h"
9c17d615 43#include "sysemu/blockdev.h"
87ecb68b 44#include "audio/audio.h"
76cad711 45#include "disas/disas.h"
9c17d615 46#include "sysemu/balloon.h"
1de7afc9 47#include "qemu/timer.h"
caf71f86 48#include "migration/migration.h"
9c17d615 49#include "sysemu/kvm.h"
1de7afc9 50#include "qemu/acl.h"
bdee56f5 51#include "sysemu/tpm.h"
cc7a8ea7 52#include "qapi/qmp/qerror.h"
7b1b5d19
PB
53#include "qapi/qmp/qint.h"
54#include "qapi/qmp/qfloat.h"
55#include "qapi/qmp/qlist.h"
56#include "qapi/qmp/qbool.h"
57#include "qapi/qmp/qstring.h"
58#include "qapi/qmp/qjson.h"
59#include "qapi/qmp/json-streamer.h"
60#include "qapi/qmp/json-parser.h"
1094fd3a 61#include <qom/object_interfaces.h>
1de7afc9 62#include "qemu/osdep.h"
2b41f10e 63#include "cpu.h"
89bd820a 64#include "trace.h"
31965ae2 65#include "trace/control.h"
6d8a764e 66#ifdef CONFIG_TRACE_SIMPLE
31965ae2 67#include "trace/simple.h"
22890ab5 68#endif
022c62cb 69#include "exec/memory.h"
f08b6170 70#include "exec/cpu_ldst.h"
48a32bed
AL
71#include "qmp-commands.h"
72#include "hmp.h"
1de7afc9 73#include "qemu/thread.h"
b21631f3 74#include "block/qapi.h"
43a14cfc
WX
75#include "qapi/qmp-event.h"
76#include "qapi-event.h"
5560625b 77#include "sysemu/block-backend.h"
6a5bd307 78
1ce6be24 79/* for hmp_info_irq/pic */
661f1929 80#if defined(TARGET_SPARC)
0d09e41a 81#include "hw/sparc/sun4m.h"
661f1929 82#endif
0d09e41a 83#include "hw/lm32/lm32_pic.h"
661f1929 84
a4538a5c
JH
85#if defined(TARGET_S390X)
86#include "hw/s390x/storage-keys.h"
87#endif
88
9307c4c1
FB
89/*
90 * Supported types:
5fafdf24 91 *
9307c4c1 92 * 'F' filename
81d0912d 93 * 'B' block device name
9307c4c1 94 * 's' string (accept optional quote)
129be006 95 * 'S' it just appends the rest of the string (accept optional quote)
361127df
MA
96 * 'O' option string of the form NAME=VALUE,...
97 * parsed according to QemuOptsList given by its name
98 * Example: 'device:O' uses qemu_device_opts.
99 * Restriction: only lists with empty desc are supported
100 * TODO lift the restriction
92a31b1f
FB
101 * 'i' 32 bit integer
102 * 'l' target long (32 or 64 bit)
91162849
LC
103 * 'M' Non-negative target long (32 or 64 bit), in user mode the
104 * value is multiplied by 2^20 (think Mebibyte)
dbc0c67f 105 * 'o' octets (aka bytes)
5e00984a
KW
106 * user mode accepts an optional E, e, P, p, T, t, G, g, M, m,
107 * K, k suffix, which multiplies the value by 2^60 for suffixes E
108 * and e, 2^50 for suffixes P and p, 2^40 for suffixes T and t,
109 * 2^30 for suffixes G and g, 2^20 for M and m, 2^10 for K and k
fccfb11e
MA
110 * 'T' double
111 * user mode accepts an optional ms, us, ns suffix,
112 * which divides the value by 1e3, 1e6, 1e9, respectively
9307c4c1
FB
113 * '/' optional gdb-like print format (like "/10x")
114 *
fb46660e
LC
115 * '?' optional type (for all types, except '/')
116 * '.' other form of optional type (for 'i' and 'l')
942cd1f2
MA
117 * 'b' boolean
118 * user mode accepts "on" or "off"
fb46660e 119 * '-' optional parameter (eg. '-f')
9307c4c1
FB
120 *
121 */
122
c227f099 123typedef struct mon_cmd_t {
9dc39cba 124 const char *name;
9307c4c1 125 const char *args_type;
9dc39cba
FB
126 const char *params;
127 const char *help;
910df89d 128 union {
af4ce882 129 void (*cmd)(Monitor *mon, const QDict *qdict);
485febc6 130 void (*cmd_new)(QDict *params, QObject **ret_data, Error **errp);
910df89d 131 } mhandler;
5f3d335f
WX
132 /* @sub_table is a list of 2nd level of commands. If it do not exist,
133 * mhandler should be used. If it exist, sub_table[?].mhandler should be
134 * used, and mhandler of 1st level plays the role of help function.
135 */
136 struct mon_cmd_t *sub_table;
bfa40f77 137 void (*command_completion)(ReadLineState *rs, int nb_args, const char *str);
c227f099 138} mon_cmd_t;
9dc39cba 139
f07918fd 140/* file descriptors passed via SCM_RIGHTS */
c227f099
AL
141typedef struct mon_fd_t mon_fd_t;
142struct mon_fd_t {
f07918fd
MM
143 char *name;
144 int fd;
c227f099 145 QLIST_ENTRY(mon_fd_t) next;
f07918fd
MM
146};
147
ba1c048a
CB
148/* file descriptor associated with a file descriptor set */
149typedef struct MonFdsetFd MonFdsetFd;
150struct MonFdsetFd {
151 int fd;
152 bool removed;
153 char *opaque;
154 QLIST_ENTRY(MonFdsetFd) next;
155};
156
157/* file descriptor set containing fds passed via SCM_RIGHTS */
158typedef struct MonFdset MonFdset;
159struct MonFdset {
160 int64_t id;
161 QLIST_HEAD(, MonFdsetFd) fds;
adb696f3 162 QLIST_HEAD(, MonFdsetFd) dup_fds;
ba1c048a
CB
163 QLIST_ENTRY(MonFdset) next;
164};
165
74358f2a 166typedef struct {
5fa737a4
LC
167 QObject *id;
168 JSONMessageParser parser;
f994b258
MA
169 /*
170 * When a client connects, we're in capabilities negotiation mode.
171 * When command qmp_capabilities succeeds, we go into command
172 * mode.
173 */
174 bool in_command_mode; /* are we in command mode? */
74358f2a 175} MonitorQMP;
5fa737a4 176
afeecec2
DB
177/*
178 * To prevent flooding clients, events can be throttled. The
179 * throttling is calculated globally, rather than per-Monitor
180 * instance.
181 */
43a14cfc
WX
182typedef struct MonitorQAPIEventState {
183 QAPIEvent event; /* Event being tracked */
184 int64_t rate; /* Minimum time (in ns) between two events */
185 int64_t last; /* QEMU_CLOCK_REALTIME value at last emission */
afeecec2
DB
186 QEMUTimer *timer; /* Timer for handling delayed events */
187 QObject *data; /* Event pending delayed dispatch */
43a14cfc 188} MonitorQAPIEventState;
afeecec2 189
87127161
AL
190struct Monitor {
191 CharDriverState *chr;
a7aec5da 192 int reset_seen;
731b0364
AL
193 int flags;
194 int suspend_cnt;
48c043d0 195 bool skip_flush;
6cff3e85
PB
196
197 QemuMutex out_lock;
e1f2641b 198 QString *outbuf;
6cff3e85
PB
199 guint out_watch;
200
201 /* Read under either BQL or out_lock, written with BQL+out_lock. */
202 int mux_out;
203
731b0364 204 ReadLineState *rs;
74358f2a 205 MonitorQMP qmp;
cb446eca 206 CPUState *mon_cpu;
097310b5 207 BlockCompletionFunc *password_completion_cb;
731b0364 208 void *password_opaque;
7717239d 209 mon_cmd_t *cmd_table;
c227f099 210 QLIST_HEAD(,mon_fd_t) fds;
72cf2d4f 211 QLIST_ENTRY(Monitor) entry;
87127161
AL
212};
213
2dbc8db0
LC
214/* QMP checker flags */
215#define QMP_ACCEPT_UNKNOWNS 1
216
d622cb58
PB
217/* Protects mon_list, monitor_event_state. */
218static QemuMutex monitor_lock;
219
72cf2d4f 220static QLIST_HEAD(mon_list, Monitor) mon_list;
ba1c048a 221static QLIST_HEAD(mon_fdsets, MonFdset) mon_fdsets;
efb87c16 222static int mon_refcount;
7e2515e8 223
816f8925
WX
224static mon_cmd_t mon_cmds[];
225static mon_cmd_t info_cmds[];
9dc39cba 226
f36b4afb
LC
227static const mon_cmd_t qmp_cmds[];
228
8631b608 229Monitor *cur_mon;
376253ec 230
c60bf339
SH
231static void monitor_command_cb(void *opaque, const char *cmdline,
232 void *readline_opaque);
83ab7950 233
9f3982f2
MA
234/**
235 * Is @mon a QMP monitor?
236 */
237static inline bool monitor_is_qmp(const Monitor *mon)
418173c7
LC
238{
239 return (mon->flags & MONITOR_USE_CONTROL);
240}
241
489653b5
MA
242/**
243 * Is the current monitor, if any, a QMP monitor?
244 */
245bool monitor_cur_is_qmp(void)
6620d3ce 246{
9f3982f2 247 return cur_mon && monitor_is_qmp(cur_mon);
6620d3ce
MA
248}
249
7060b478 250void monitor_read_command(Monitor *mon, int show_prompt)
731b0364 251{
183e6e52
LC
252 if (!mon->rs)
253 return;
254
731b0364
AL
255 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
256 if (show_prompt)
257 readline_show_prompt(mon->rs);
258}
6a00d601 259
7060b478
AL
260int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
261 void *opaque)
bb5fc20f 262{
bcf5d19c 263 if (mon->rs) {
cde76ee1
AL
264 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
265 /* prompt is printed on return from the command handler */
266 return 0;
267 } else {
268 monitor_printf(mon, "terminal does not support password prompting\n");
269 return -ENOTTY;
270 }
bb5fc20f
AL
271}
272
6cff3e85
PB
273static void monitor_flush_locked(Monitor *mon);
274
f628926b
GH
275static gboolean monitor_unblocked(GIOChannel *chan, GIOCondition cond,
276 void *opaque)
277{
293d2a00
LE
278 Monitor *mon = opaque;
279
6cff3e85
PB
280 qemu_mutex_lock(&mon->out_lock);
281 mon->out_watch = 0;
282 monitor_flush_locked(mon);
283 qemu_mutex_unlock(&mon->out_lock);
f628926b
GH
284 return FALSE;
285}
286
6cff3e85
PB
287/* Called with mon->out_lock held. */
288static void monitor_flush_locked(Monitor *mon)
7e2515e8 289{
f628926b 290 int rc;
e1f2641b
LC
291 size_t len;
292 const char *buf;
293
48c043d0
LC
294 if (mon->skip_flush) {
295 return;
296 }
297
e1f2641b
LC
298 buf = qstring_get_str(mon->outbuf);
299 len = qstring_get_length(mon->outbuf);
f628926b 300
a4cc73d6 301 if (len && !mon->mux_out) {
e1f2641b 302 rc = qemu_chr_fe_write(mon->chr, (const uint8_t *) buf, len);
056f49ff
SP
303 if ((rc < 0 && errno != EAGAIN) || (rc == len)) {
304 /* all flushed or error */
e1f2641b
LC
305 QDECREF(mon->outbuf);
306 mon->outbuf = qstring_new();
f628926b
GH
307 return;
308 }
309 if (rc > 0) {
310 /* partinal write */
e1f2641b
LC
311 QString *tmp = qstring_from_str(buf + rc);
312 QDECREF(mon->outbuf);
313 mon->outbuf = tmp;
f628926b 314 }
6cff3e85 315 if (mon->out_watch == 0) {
e02bc6de 316 mon->out_watch = qemu_chr_fe_add_watch(mon->chr, G_IO_OUT|G_IO_HUP,
6cff3e85 317 monitor_unblocked, mon);
293d2a00 318 }
7e2515e8
FB
319 }
320}
321
6cff3e85
PB
322void monitor_flush(Monitor *mon)
323{
324 qemu_mutex_lock(&mon->out_lock);
325 monitor_flush_locked(mon);
326 qemu_mutex_unlock(&mon->out_lock);
327}
328
e1f2641b 329/* flush at every end of line */
376253ec 330static void monitor_puts(Monitor *mon, const char *str)
7e2515e8 331{
60fe76f3 332 char c;
731b0364 333
6cff3e85 334 qemu_mutex_lock(&mon->out_lock);
7e2515e8
FB
335 for(;;) {
336 c = *str++;
337 if (c == '\0')
338 break;
e1f2641b
LC
339 if (c == '\n') {
340 qstring_append_chr(mon->outbuf, '\r');
341 }
342 qstring_append_chr(mon->outbuf, c);
343 if (c == '\n') {
6cff3e85 344 monitor_flush_locked(mon);
e1f2641b 345 }
7e2515e8 346 }
6cff3e85 347 qemu_mutex_unlock(&mon->out_lock);
7e2515e8
FB
348}
349
376253ec 350void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
9dc39cba 351{
e1f2641b 352 char *buf;
b8b08266 353
2daa1191
LC
354 if (!mon)
355 return;
356
9f3982f2 357 if (monitor_is_qmp(mon)) {
b8b08266 358 return;
4a29a85d 359 }
b8b08266 360
e1f2641b 361 buf = g_strdup_vprintf(fmt, ap);
b8b08266 362 monitor_puts(mon, buf);
e1f2641b 363 g_free(buf);
9dc39cba
FB
364}
365
376253ec 366void monitor_printf(Monitor *mon, const char *fmt, ...)
9dc39cba 367{
7e2515e8
FB
368 va_list ap;
369 va_start(ap, fmt);
376253ec 370 monitor_vprintf(mon, fmt, ap);
7e2515e8 371 va_end(ap);
9dc39cba
FB
372}
373
8b7968f7
SW
374static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
375 const char *fmt, ...)
7fe48483
FB
376{
377 va_list ap;
378 va_start(ap, fmt);
376253ec 379 monitor_vprintf((Monitor *)stream, fmt, ap);
7fe48483
FB
380 va_end(ap);
381 return 0;
382}
383
9b57c02e
LC
384static void monitor_json_emitter(Monitor *mon, const QObject *data)
385{
386 QString *json;
387
83a27d4d
LC
388 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
389 qobject_to_json(data);
9b57c02e
LC
390 assert(json != NULL);
391
b8b08266
LC
392 qstring_append_chr(json, '\n');
393 monitor_puts(mon, qstring_get_str(json));
4a29a85d 394
9b57c02e
LC
395 QDECREF(json);
396}
397
710aec91 398static QDict *build_qmp_error_dict(Error *err)
de253f14
LC
399{
400 QObject *obj;
401
710aec91
MA
402 obj = qobject_from_jsonf("{ 'error': { 'class': %s, 'desc': %s } }",
403 ErrorClass_lookup[error_get_class(err)],
404 error_get_pretty(err));
de253f14
LC
405
406 return qobject_to_qdict(obj);
407}
408
70ea0c58 409static void monitor_protocol_emitter(Monitor *mon, QObject *data,
710aec91 410 Error *err)
25b422eb
LC
411{
412 QDict *qmp;
413
89bd820a
SH
414 trace_monitor_protocol_emitter(mon);
415
70ea0c58 416 if (!err) {
25b422eb 417 /* success response */
de253f14 418 qmp = qdict_new();
25b422eb
LC
419 if (data) {
420 qobject_incref(data);
421 qdict_put_obj(qmp, "return", data);
422 } else {
0abc6579
LC
423 /* return an empty QDict by default */
424 qdict_put(qmp, "return", qdict_new());
25b422eb
LC
425 }
426 } else {
427 /* error response */
70ea0c58 428 qmp = build_qmp_error_dict(err);
25b422eb
LC
429 }
430
74358f2a
MA
431 if (mon->qmp.id) {
432 qdict_put_obj(qmp, "id", mon->qmp.id);
433 mon->qmp.id = NULL;
5fa737a4
LC
434 }
435
25b422eb
LC
436 monitor_json_emitter(mon, QOBJECT(qmp));
437 QDECREF(qmp);
438}
439
0d1ea871 440
43a14cfc 441static MonitorQAPIEventState monitor_qapi_event_state[QAPI_EVENT_MAX];
afeecec2
DB
442
443/*
43a14cfc 444 * Emits the event to every monitor instance, @event is only used for trace
d622cb58 445 * Called with monitor_lock held.
afeecec2 446 */
43a14cfc 447static void monitor_qapi_event_emit(QAPIEvent event, QObject *data)
afeecec2
DB
448{
449 Monitor *mon;
450
451 trace_monitor_protocol_event_emit(event, data);
452 QLIST_FOREACH(mon, &mon_list, entry) {
9f3982f2 453 if (monitor_is_qmp(mon) && mon->qmp.in_command_mode) {
afeecec2
DB
454 monitor_json_emitter(mon, data);
455 }
456 }
457}
458
afeecec2
DB
459/*
460 * Queue a new event for emission to Monitor instances,
461 * applying any rate limiting if required.
462 */
463static void
43a14cfc 464monitor_qapi_event_queue(QAPIEvent event, QDict *data, Error **errp)
afeecec2 465{
43a14cfc
WX
466 MonitorQAPIEventState *evstate;
467 assert(event < QAPI_EVENT_MAX);
bc72ad67 468 int64_t now = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
afeecec2 469
43a14cfc 470 evstate = &(monitor_qapi_event_state[event]);
afeecec2
DB
471 trace_monitor_protocol_event_queue(event,
472 data,
473 evstate->rate,
474 evstate->last,
475 now);
476
477 /* Rate limit of 0 indicates no throttling */
d622cb58 478 qemu_mutex_lock(&monitor_lock);
afeecec2 479 if (!evstate->rate) {
43a14cfc 480 monitor_qapi_event_emit(event, QOBJECT(data));
afeecec2
DB
481 evstate->last = now;
482 } else {
483 int64_t delta = now - evstate->last;
484 if (evstate->data ||
485 delta < evstate->rate) {
486 /* If there's an existing event pending, replace
487 * it with the new event, otherwise schedule a
488 * timer for delayed emission
489 */
490 if (evstate->data) {
491 qobject_decref(evstate->data);
492 } else {
493 int64_t then = evstate->last + evstate->rate;
bc72ad67 494 timer_mod_ns(evstate->timer, then);
afeecec2 495 }
43a14cfc 496 evstate->data = QOBJECT(data);
afeecec2
DB
497 qobject_incref(evstate->data);
498 } else {
43a14cfc 499 monitor_qapi_event_emit(event, QOBJECT(data));
afeecec2
DB
500 evstate->last = now;
501 }
502 }
d622cb58 503 qemu_mutex_unlock(&monitor_lock);
afeecec2
DB
504}
505
afeecec2
DB
506/*
507 * The callback invoked by QemuTimer when a delayed
508 * event is ready to be emitted
509 */
43a14cfc 510static void monitor_qapi_event_handler(void *opaque)
afeecec2 511{
43a14cfc 512 MonitorQAPIEventState *evstate = opaque;
bc72ad67 513 int64_t now = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
afeecec2 514
afeecec2
DB
515 trace_monitor_protocol_event_handler(evstate->event,
516 evstate->data,
517 evstate->last,
518 now);
d622cb58 519 qemu_mutex_lock(&monitor_lock);
afeecec2 520 if (evstate->data) {
43a14cfc 521 monitor_qapi_event_emit(evstate->event, evstate->data);
afeecec2
DB
522 qobject_decref(evstate->data);
523 evstate->data = NULL;
524 }
525 evstate->last = now;
d622cb58 526 qemu_mutex_unlock(&monitor_lock);
afeecec2
DB
527}
528
afeecec2
DB
529/*
530 * @event: the event ID to be limited
531 * @rate: the rate limit in milliseconds
532 *
533 * Sets a rate limit on a particular event, so no
534 * more than 1 event will be emitted within @rate
535 * milliseconds
536 */
537static void
43a14cfc 538monitor_qapi_event_throttle(QAPIEvent event, int64_t rate)
afeecec2 539{
43a14cfc
WX
540 MonitorQAPIEventState *evstate;
541 assert(event < QAPI_EVENT_MAX);
afeecec2 542
43a14cfc 543 evstate = &(monitor_qapi_event_state[event]);
afeecec2
DB
544
545 trace_monitor_protocol_event_throttle(event, rate);
546 evstate->event = event;
2f44a08b 547 assert(rate * SCALE_MS <= INT64_MAX);
afeecec2 548 evstate->rate = rate * SCALE_MS;
afeecec2
DB
549 evstate->last = 0;
550 evstate->data = NULL;
43a14cfc
WX
551 evstate->timer = timer_new(QEMU_CLOCK_REALTIME,
552 SCALE_MS,
553 monitor_qapi_event_handler,
554 evstate);
afeecec2
DB
555}
556
43a14cfc 557static void monitor_qapi_event_init(void)
afeecec2 558{
e010ad8f
WX
559 /* Limit guest-triggerable events to 1 per second */
560 monitor_qapi_event_throttle(QAPI_EVENT_RTC_CHANGE, 1000);
99eaf09c 561 monitor_qapi_event_throttle(QAPI_EVENT_WATCHDOG, 1000);
aef9d311 562 monitor_qapi_event_throttle(QAPI_EVENT_BALLOON_CHANGE, 1000);
fe069d9d
WX
563 monitor_qapi_event_throttle(QAPI_EVENT_QUORUM_REPORT_BAD, 1000);
564 monitor_qapi_event_throttle(QAPI_EVENT_QUORUM_FAILURE, 1000);
e2ae6159 565 monitor_qapi_event_throttle(QAPI_EVENT_VSERPORT_CHANGE, 1000);
0d1ea871 566
43a14cfc 567 qmp_event_set_func_emit(monitor_qapi_event_queue);
0d1ea871
LC
568}
569
485febc6 570static void qmp_capabilities(QDict *params, QObject **ret_data, Error **errp)
4a7e1190 571{
485febc6 572 cur_mon->qmp.in_command_mode = true;
4a7e1190
LC
573}
574
7ef6cf63 575static void handle_hmp_command(Monitor *mon, const char *cmdline);
0268d97c 576
b01fe89e
WX
577static void monitor_data_init(Monitor *mon)
578{
579 memset(mon, 0, sizeof(Monitor));
6cff3e85 580 qemu_mutex_init(&mon->out_lock);
b01fe89e 581 mon->outbuf = qstring_new();
7717239d
WX
582 /* Use *mon_cmds by default. */
583 mon->cmd_table = mon_cmds;
b01fe89e
WX
584}
585
586static void monitor_data_destroy(Monitor *mon)
587{
588 QDECREF(mon->outbuf);
6cff3e85 589 qemu_mutex_destroy(&mon->out_lock);
b01fe89e
WX
590}
591
d51a67b4
LC
592char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index,
593 int64_t cpu_index, Error **errp)
0268d97c 594{
d51a67b4 595 char *output = NULL;
0268d97c 596 Monitor *old_mon, hmp;
0268d97c 597
b01fe89e 598 monitor_data_init(&hmp);
48c043d0 599 hmp.skip_flush = true;
0268d97c
LC
600
601 old_mon = cur_mon;
602 cur_mon = &hmp;
603
d51a67b4
LC
604 if (has_cpu_index) {
605 int ret = monitor_set_cpu(cpu_index);
0268d97c
LC
606 if (ret < 0) {
607 cur_mon = old_mon;
c6bd8c70
MA
608 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
609 "a CPU number");
0268d97c
LC
610 goto out;
611 }
612 }
613
7ef6cf63 614 handle_hmp_command(&hmp, command_line);
0268d97c
LC
615 cur_mon = old_mon;
616
6cff3e85 617 qemu_mutex_lock(&hmp.out_lock);
48c043d0
LC
618 if (qstring_get_length(hmp.outbuf) > 0) {
619 output = g_strdup(qstring_get_str(hmp.outbuf));
d51a67b4
LC
620 } else {
621 output = g_strdup("");
0268d97c 622 }
6cff3e85 623 qemu_mutex_unlock(&hmp.out_lock);
0268d97c
LC
624
625out:
b01fe89e 626 monitor_data_destroy(&hmp);
d51a67b4 627 return output;
0268d97c
LC
628}
629
9dc39cba
FB
630static int compare_cmd(const char *name, const char *list)
631{
632 const char *p, *pstart;
633 int len;
634 len = strlen(name);
635 p = list;
636 for(;;) {
637 pstart = p;
638 p = strchr(p, '|');
639 if (!p)
640 p = pstart + strlen(pstart);
641 if ((p - pstart) == len && !memcmp(pstart, name, len))
642 return 1;
643 if (*p == '\0')
644 break;
645 p++;
646 }
647 return 0;
648}
649
f5438c05
WX
650static int get_str(char *buf, int buf_size, const char **pp)
651{
652 const char *p;
653 char *q;
654 int c;
655
656 q = buf;
657 p = *pp;
658 while (qemu_isspace(*p)) {
659 p++;
660 }
661 if (*p == '\0') {
662 fail:
663 *q = '\0';
664 *pp = p;
665 return -1;
666 }
667 if (*p == '\"') {
668 p++;
669 while (*p != '\0' && *p != '\"') {
670 if (*p == '\\') {
671 p++;
672 c = *p++;
673 switch (c) {
674 case 'n':
675 c = '\n';
676 break;
677 case 'r':
678 c = '\r';
679 break;
680 case '\\':
681 case '\'':
682 case '\"':
683 break;
684 default:
71baf787 685 printf("unsupported escape code: '\\%c'\n", c);
f5438c05
WX
686 goto fail;
687 }
688 if ((q - buf) < buf_size - 1) {
689 *q++ = c;
690 }
691 } else {
692 if ((q - buf) < buf_size - 1) {
693 *q++ = *p;
694 }
695 p++;
696 }
697 }
698 if (*p != '\"') {
71baf787 699 printf("unterminated string\n");
f5438c05
WX
700 goto fail;
701 }
702 p++;
703 } else {
704 while (*p != '\0' && !qemu_isspace(*p)) {
705 if ((q - buf) < buf_size - 1) {
706 *q++ = *p;
707 }
708 p++;
709 }
710 }
711 *q = '\0';
712 *pp = p;
713 return 0;
714}
715
716#define MAX_ARGS 16
717
dcc70cdf
WX
718static void free_cmdline_args(char **args, int nb_args)
719{
720 int i;
721
722 assert(nb_args <= MAX_ARGS);
723
724 for (i = 0; i < nb_args; i++) {
725 g_free(args[i]);
726 }
727
728}
729
730/*
731 * Parse the command line to get valid args.
732 * @cmdline: command line to be parsed.
733 * @pnb_args: location to store the number of args, must NOT be NULL.
734 * @args: location to store the args, which should be freed by caller, must
735 * NOT be NULL.
736 *
737 * Returns 0 on success, negative on failure.
738 *
739 * NOTE: this parser is an approximate form of the real command parser. Number
740 * of args have a limit of MAX_ARGS. If cmdline contains more, it will
741 * return with failure.
742 */
743static int parse_cmdline(const char *cmdline,
744 int *pnb_args, char **args)
f5438c05
WX
745{
746 const char *p;
747 int nb_args, ret;
748 char buf[1024];
749
750 p = cmdline;
751 nb_args = 0;
752 for (;;) {
753 while (qemu_isspace(*p)) {
754 p++;
755 }
756 if (*p == '\0') {
757 break;
758 }
759 if (nb_args >= MAX_ARGS) {
dcc70cdf 760 goto fail;
f5438c05
WX
761 }
762 ret = get_str(buf, sizeof(buf), &p);
f5438c05 763 if (ret < 0) {
dcc70cdf 764 goto fail;
f5438c05 765 }
dcc70cdf
WX
766 args[nb_args] = g_strdup(buf);
767 nb_args++;
f5438c05
WX
768 }
769 *pnb_args = nb_args;
dcc70cdf
WX
770 return 0;
771
772 fail:
773 free_cmdline_args(args, nb_args);
774 return -1;
f5438c05
WX
775}
776
66855495
WX
777static void help_cmd_dump_one(Monitor *mon,
778 const mon_cmd_t *cmd,
779 char **prefix_args,
780 int prefix_args_nb)
781{
782 int i;
783
784 for (i = 0; i < prefix_args_nb; i++) {
785 monitor_printf(mon, "%s ", prefix_args[i]);
786 }
787 monitor_printf(mon, "%s %s -- %s\n", cmd->name, cmd->params, cmd->help);
788}
789
790/* @args[@arg_index] is the valid command need to find in @cmds */
c227f099 791static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
66855495 792 char **args, int nb_args, int arg_index)
9dc39cba 793{
c227f099 794 const mon_cmd_t *cmd;
9dc39cba 795
66855495
WX
796 /* No valid arg need to compare with, dump all in *cmds */
797 if (arg_index >= nb_args) {
798 for (cmd = cmds; cmd->name != NULL; cmd++) {
799 help_cmd_dump_one(mon, cmd, args, arg_index);
800 }
801 return;
802 }
803
804 /* Find one entry to dump */
805 for (cmd = cmds; cmd->name != NULL; cmd++) {
806 if (compare_cmd(args[arg_index], cmd->name)) {
807 if (cmd->sub_table) {
808 /* continue with next arg */
809 help_cmd_dump(mon, cmd->sub_table,
810 args, nb_args, arg_index + 1);
811 } else {
812 help_cmd_dump_one(mon, cmd, args, arg_index);
813 }
814 break;
815 }
9dc39cba
FB
816 }
817}
818
376253ec 819static void help_cmd(Monitor *mon, const char *name)
9dc39cba 820{
66855495
WX
821 char *args[MAX_ARGS];
822 int nb_args = 0;
823
824 /* 1. parse user input */
825 if (name) {
826 /* special case for log, directly dump and return */
827 if (!strcmp(name, "log")) {
38dad9e5 828 const QEMULogItem *item;
376253ec
AL
829 monitor_printf(mon, "Log items (comma separated):\n");
830 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
38dad9e5 831 for (item = qemu_log_items; item->mask != 0; item++) {
376253ec 832 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
f193c797 833 }
66855495
WX
834 return;
835 }
836
837 if (parse_cmdline(name, &nb_args, args) < 0) {
838 return;
f193c797 839 }
9dc39cba 840 }
66855495
WX
841
842 /* 2. dump the contents according to parsed args */
843 help_cmd_dump(mon, mon->cmd_table, args, nb_args, 0);
844
845 free_cmdline_args(args, nb_args);
9dc39cba
FB
846}
847
d54908a5 848static void do_help_cmd(Monitor *mon, const QDict *qdict)
38183186 849{
d54908a5 850 help_cmd(mon, qdict_get_try_str(qdict, "name"));
38183186
LC
851}
852
3e5a50d6 853static void hmp_trace_event(Monitor *mon, const QDict *qdict)
22890ab5
PS
854{
855 const char *tp_name = qdict_get_str(qdict, "name");
856 bool new_state = qdict_get_bool(qdict, "option");
14101d02 857 Error *local_err = NULL;
f871d689 858
14101d02
LV
859 qmp_trace_event_set_state(tp_name, new_state, true, true, &local_err);
860 if (local_err) {
091e38b7 861 error_report_err(local_err);
f871d689 862 }
22890ab5 863}
c5ceb523 864
c45a8168 865#ifdef CONFIG_TRACE_SIMPLE
3e5a50d6 866static void hmp_trace_file(Monitor *mon, const QDict *qdict)
c5ceb523
SH
867{
868 const char *op = qdict_get_try_str(qdict, "op");
869 const char *arg = qdict_get_try_str(qdict, "arg");
870
871 if (!op) {
872 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
873 } else if (!strcmp(op, "on")) {
874 st_set_trace_file_enabled(true);
875 } else if (!strcmp(op, "off")) {
876 st_set_trace_file_enabled(false);
877 } else if (!strcmp(op, "flush")) {
878 st_flush_trace_buffer();
879 } else if (!strcmp(op, "set")) {
880 if (arg) {
881 st_set_trace_file(arg);
882 }
883 } else {
884 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
885 help_cmd(mon, "trace-file");
886 }
887}
22890ab5
PS
888#endif
889
3e5a50d6 890static void hmp_info_help(Monitor *mon, const QDict *qdict)
9dc39cba 891{
13c7425e 892 help_cmd(mon, "info");
9dc39cba
FB
893}
894
aa9b79bc 895CommandInfoList *qmp_query_commands(Error **errp)
e3bba9d0 896{
aa9b79bc 897 CommandInfoList *info, *cmd_list = NULL;
e3bba9d0
LC
898 const mon_cmd_t *cmd;
899
f36b4afb 900 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
40e5a01d
LC
901 info = g_malloc0(sizeof(*info));
902 info->value = g_malloc0(sizeof(*info->value));
903 info->value->name = g_strdup(cmd->name);
e3bba9d0 904
aa9b79bc
LC
905 info->next = cmd_list;
906 cmd_list = info;
e3bba9d0
LC
907 }
908
aa9b79bc 909 return cmd_list;
a36e69dd
TS
910}
911
4860853d
DB
912EventInfoList *qmp_query_events(Error **errp)
913{
914 EventInfoList *info, *ev_list = NULL;
75175173 915 QAPIEvent e;
4860853d 916
75175173
WX
917 for (e = 0 ; e < QAPI_EVENT_MAX ; e++) {
918 const char *event_name = QAPIEvent_lookup[e];
4860853d
DB
919 assert(event_name != NULL);
920 info = g_malloc0(sizeof(*info));
921 info->value = g_malloc0(sizeof(*info->value));
922 info->value->name = g_strdup(event_name);
923
924 info->next = ev_list;
925 ev_list = info;
926 }
927
928 return ev_list;
929}
930
b025c8b4
LC
931/* set the current CPU defined by the user */
932int monitor_set_cpu(int cpu_index)
6a00d601 933{
55e5c285 934 CPUState *cpu;
6a00d601 935
1c8bb3cc
AF
936 cpu = qemu_get_cpu(cpu_index);
937 if (cpu == NULL) {
938 return -1;
6a00d601 939 }
cb446eca 940 cur_mon->mon_cpu = cpu;
1c8bb3cc 941 return 0;
6a00d601
FB
942}
943
5bcda5f7 944static CPUState *mon_get_cpu(void)
6a00d601 945{
731b0364 946 if (!cur_mon->mon_cpu) {
b025c8b4 947 monitor_set_cpu(0);
6a00d601 948 }
4c0960c0 949 cpu_synchronize_state(cur_mon->mon_cpu);
5bcda5f7
PC
950 return cur_mon->mon_cpu;
951}
952
953static CPUArchState *mon_get_cpu_env(void)
954{
955 return mon_get_cpu()->env_ptr;
6a00d601
FB
956}
957
99b7796f
LC
958int monitor_get_cpu_index(void)
959{
5bcda5f7 960 return mon_get_cpu()->cpu_index;
99b7796f
LC
961}
962
1ce6be24 963static void hmp_info_registers(Monitor *mon, const QDict *qdict)
9307c4c1 964{
5bcda5f7 965 cpu_dump_state(mon_get_cpu(), (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU);
9307c4c1
FB
966}
967
1ce6be24 968static void hmp_info_jit(Monitor *mon, const QDict *qdict)
e3db7226 969{
376253ec 970 dump_exec_info((FILE *)mon, monitor_fprintf);
27498bef 971 dump_drift_info((FILE *)mon, monitor_fprintf);
e3db7226
FB
972}
973
1ce6be24 974static void hmp_info_opcount(Monitor *mon, const QDict *qdict)
246ae24d
MF
975{
976 dump_opcount_info((FILE *)mon, monitor_fprintf);
977}
978
1ce6be24 979static void hmp_info_history(Monitor *mon, const QDict *qdict)
aa455485
FB
980{
981 int i;
7e2515e8 982 const char *str;
3b46e624 983
cde76ee1
AL
984 if (!mon->rs)
985 return;
7e2515e8
FB
986 i = 0;
987 for(;;) {
731b0364 988 str = readline_get_history(mon->rs, i);
7e2515e8
FB
989 if (!str)
990 break;
376253ec 991 monitor_printf(mon, "%d: '%s'\n", i, str);
8e3a9fd2 992 i++;
aa455485
FB
993 }
994}
995
1ce6be24 996static void hmp_info_cpustats(Monitor *mon, const QDict *qdict)
76a66253 997{
5bcda5f7 998 cpu_dump_statistics(mon_get_cpu(), (FILE *)mon, &monitor_fprintf, 0);
76a66253 999}
76a66253 1000
1ce6be24 1001static void hmp_info_trace_events(Monitor *mon, const QDict *qdict)
22890ab5 1002{
14101d02
LV
1003 TraceEventInfoList *events = qmp_trace_event_get_state("*", NULL);
1004 TraceEventInfoList *elem;
1005
1006 for (elem = events; elem != NULL; elem = elem->next) {
1007 monitor_printf(mon, "%s : state %u\n",
1008 elem->value->name,
1009 elem->value->state == TRACE_EVENT_STATE_ENABLED ? 1 : 0);
1010 }
1011 qapi_free_TraceEventInfoList(events);
22890ab5 1012}
22890ab5 1013
b8a185bc
MA
1014void qmp_client_migrate_info(const char *protocol, const char *hostname,
1015 bool has_port, int64_t port,
1016 bool has_tls_port, int64_t tls_port,
1017 bool has_cert_subject, const char *cert_subject,
1018 Error **errp)
e866e239 1019{
e866e239 1020 if (strcmp(protocol, "spice") == 0) {
b8a185bc
MA
1021 if (!qemu_using_spice(errp)) {
1022 return;
e866e239
GH
1023 }
1024
b8a185bc 1025 if (!has_port && !has_tls_port) {
c6bd8c70 1026 error_setg(errp, QERR_MISSING_PARAMETER, "port/tls-port");
b8a185bc 1027 return;
6ec5dae5
YH
1028 }
1029
b8a185bc
MA
1030 if (qemu_spice_migrate_info(hostname,
1031 has_port ? port : -1,
1032 has_tls_port ? tls_port : -1,
1033 cert_subject)) {
c6bd8c70 1034 error_setg(errp, QERR_UNDEFINED_ERROR);
b8a185bc 1035 return;
e866e239 1036 }
b8a185bc 1037 return;
e866e239
GH
1038 }
1039
c6bd8c70 1040 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "protocol", "spice");
e866e239
GH
1041}
1042
3e5a50d6 1043static void hmp_logfile(Monitor *mon, const QDict *qdict)
e735b91c 1044{
9a7e5424 1045 qemu_set_log_filename(qdict_get_str(qdict, "filename"));
e735b91c
PB
1046}
1047
3e5a50d6 1048static void hmp_log(Monitor *mon, const QDict *qdict)
f193c797
FB
1049{
1050 int mask;
d54908a5 1051 const char *items = qdict_get_str(qdict, "items");
3b46e624 1052
9307c4c1 1053 if (!strcmp(items, "none")) {
f193c797
FB
1054 mask = 0;
1055 } else {
4fde1eba 1056 mask = qemu_str_to_log_mask(items);
f193c797 1057 if (!mask) {
376253ec 1058 help_cmd(mon, "log");
f193c797
FB
1059 return;
1060 }
1061 }
24537a01 1062 qemu_set_log(mask);
f193c797
FB
1063}
1064
3e5a50d6 1065static void hmp_singlestep(Monitor *mon, const QDict *qdict)
1b530a6d 1066{
d54908a5 1067 const char *option = qdict_get_try_str(qdict, "option");
1b530a6d
AJ
1068 if (!option || !strcmp(option, "on")) {
1069 singlestep = 1;
1070 } else if (!strcmp(option, "off")) {
1071 singlestep = 0;
1072 } else {
1073 monitor_printf(mon, "unexpected option %s\n", option);
1074 }
1075}
1076
3e5a50d6 1077static void hmp_gdbserver(Monitor *mon, const QDict *qdict)
59030a8c 1078{
d54908a5 1079 const char *device = qdict_get_try_str(qdict, "device");
59030a8c
AL
1080 if (!device)
1081 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1082 if (gdbserver_start(device) < 0) {
1083 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1084 device);
1085 } else if (strcmp(device, "none") == 0) {
36556b20 1086 monitor_printf(mon, "Disabled gdbserver\n");
8a7ddc38 1087 } else {
59030a8c
AL
1088 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1089 device);
8a7ddc38
FB
1090 }
1091}
1092
3e5a50d6 1093static void hmp_watchdog_action(Monitor *mon, const QDict *qdict)
9dd986cc 1094{
d54908a5 1095 const char *action = qdict_get_str(qdict, "action");
9dd986cc
RJ
1096 if (select_watchdog_action(action) == -1) {
1097 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1098 }
1099}
1100
376253ec 1101static void monitor_printc(Monitor *mon, int c)
9307c4c1 1102{
376253ec 1103 monitor_printf(mon, "'");
9307c4c1
FB
1104 switch(c) {
1105 case '\'':
376253ec 1106 monitor_printf(mon, "\\'");
9307c4c1
FB
1107 break;
1108 case '\\':
376253ec 1109 monitor_printf(mon, "\\\\");
9307c4c1
FB
1110 break;
1111 case '\n':
376253ec 1112 monitor_printf(mon, "\\n");
9307c4c1
FB
1113 break;
1114 case '\r':
376253ec 1115 monitor_printf(mon, "\\r");
9307c4c1
FB
1116 break;
1117 default:
1118 if (c >= 32 && c <= 126) {
376253ec 1119 monitor_printf(mon, "%c", c);
9307c4c1 1120 } else {
376253ec 1121 monitor_printf(mon, "\\x%02x", c);
9307c4c1
FB
1122 }
1123 break;
1124 }
376253ec 1125 monitor_printf(mon, "'");
9307c4c1
FB
1126}
1127
376253ec 1128static void memory_dump(Monitor *mon, int count, int format, int wsize,
a8170e5e 1129 hwaddr addr, int is_physical)
9307c4c1 1130{
23842aab 1131 int l, line_size, i, max_digits, len;
9307c4c1
FB
1132 uint8_t buf[16];
1133 uint64_t v;
1134
1135 if (format == 'i') {
5bcda5f7 1136 int flags = 0;
9307c4c1 1137#ifdef TARGET_I386
5bcda5f7 1138 CPUArchState *env = mon_get_cpu_env();
4c27ba27 1139 if (wsize == 2) {
9307c4c1 1140 flags = 1;
4c27ba27
FB
1141 } else if (wsize == 4) {
1142 flags = 0;
1143 } else {
6a15fd12 1144 /* as default we use the current CS size */
4c27ba27 1145 flags = 0;
6a15fd12
FB
1146 if (env) {
1147#ifdef TARGET_X86_64
5fafdf24 1148 if ((env->efer & MSR_EFER_LMA) &&
6a15fd12
FB
1149 (env->segs[R_CS].flags & DESC_L_MASK))
1150 flags = 2;
1151 else
1152#endif
1153 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1154 flags = 1;
1155 }
4c27ba27 1156 }
1c38f843
TM
1157#endif
1158#ifdef TARGET_PPC
5bcda5f7 1159 CPUArchState *env = mon_get_cpu_env();
1c38f843
TM
1160 flags = msr_le << 16;
1161 flags |= env->bfd_mach;
4c27ba27 1162#endif
d49190c4 1163 monitor_disas(mon, mon_get_cpu(), addr, count, is_physical, flags);
9307c4c1
FB
1164 return;
1165 }
1166
1167 len = wsize * count;
1168 if (wsize == 1)
1169 line_size = 8;
1170 else
1171 line_size = 16;
9307c4c1
FB
1172 max_digits = 0;
1173
1174 switch(format) {
1175 case 'o':
1176 max_digits = (wsize * 8 + 2) / 3;
1177 break;
1178 default:
1179 case 'x':
1180 max_digits = (wsize * 8) / 4;
1181 break;
1182 case 'u':
1183 case 'd':
1184 max_digits = (wsize * 8 * 10 + 32) / 33;
1185 break;
1186 case 'c':
1187 wsize = 1;
1188 break;
1189 }
1190
1191 while (len > 0) {
7743e588 1192 if (is_physical)
376253ec 1193 monitor_printf(mon, TARGET_FMT_plx ":", addr);
7743e588 1194 else
376253ec 1195 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
9307c4c1
FB
1196 l = len;
1197 if (l > line_size)
1198 l = line_size;
1199 if (is_physical) {
54f7b4a3 1200 cpu_physical_memory_read(addr, buf, l);
9307c4c1 1201 } else {
5bcda5f7 1202 if (cpu_memory_rw_debug(mon_get_cpu(), addr, buf, l, 0) < 0) {
376253ec 1203 monitor_printf(mon, " Cannot access memory\n");
c8f79b67
AL
1204 break;
1205 }
9307c4c1 1206 }
5fafdf24 1207 i = 0;
9307c4c1
FB
1208 while (i < l) {
1209 switch(wsize) {
1210 default:
1211 case 1:
24e60305 1212 v = ldub_p(buf + i);
9307c4c1
FB
1213 break;
1214 case 2:
24e60305 1215 v = lduw_p(buf + i);
9307c4c1
FB
1216 break;
1217 case 4:
24e60305 1218 v = (uint32_t)ldl_p(buf + i);
9307c4c1
FB
1219 break;
1220 case 8:
24e60305 1221 v = ldq_p(buf + i);
9307c4c1
FB
1222 break;
1223 }
376253ec 1224 monitor_printf(mon, " ");
9307c4c1
FB
1225 switch(format) {
1226 case 'o':
376253ec 1227 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
9307c4c1
FB
1228 break;
1229 case 'x':
376253ec 1230 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
9307c4c1
FB
1231 break;
1232 case 'u':
376253ec 1233 monitor_printf(mon, "%*" PRIu64, max_digits, v);
9307c4c1
FB
1234 break;
1235 case 'd':
376253ec 1236 monitor_printf(mon, "%*" PRId64, max_digits, v);
9307c4c1
FB
1237 break;
1238 case 'c':
376253ec 1239 monitor_printc(mon, v);
9307c4c1
FB
1240 break;
1241 }
1242 i += wsize;
1243 }
376253ec 1244 monitor_printf(mon, "\n");
9307c4c1
FB
1245 addr += l;
1246 len -= l;
1247 }
1248}
1249
3e5a50d6 1250static void hmp_memory_dump(Monitor *mon, const QDict *qdict)
9307c4c1 1251{
1bd1442e
LC
1252 int count = qdict_get_int(qdict, "count");
1253 int format = qdict_get_int(qdict, "format");
1254 int size = qdict_get_int(qdict, "size");
1255 target_long addr = qdict_get_int(qdict, "addr");
1256
376253ec 1257 memory_dump(mon, count, format, size, addr, 0);
9307c4c1
FB
1258}
1259
3e5a50d6 1260static void hmp_physical_memory_dump(Monitor *mon, const QDict *qdict)
9307c4c1 1261{
1bd1442e
LC
1262 int count = qdict_get_int(qdict, "count");
1263 int format = qdict_get_int(qdict, "format");
1264 int size = qdict_get_int(qdict, "size");
a8170e5e 1265 hwaddr addr = qdict_get_int(qdict, "addr");
1bd1442e 1266
376253ec 1267 memory_dump(mon, count, format, size, addr, 1);
9307c4c1
FB
1268}
1269
1bd1442e 1270static void do_print(Monitor *mon, const QDict *qdict)
9307c4c1 1271{
1bd1442e 1272 int format = qdict_get_int(qdict, "format");
a8170e5e 1273 hwaddr val = qdict_get_int(qdict, "val");
1bd1442e 1274
9307c4c1
FB
1275 switch(format) {
1276 case 'o':
a8170e5e 1277 monitor_printf(mon, "%#" HWADDR_PRIo, val);
9307c4c1
FB
1278 break;
1279 case 'x':
a8170e5e 1280 monitor_printf(mon, "%#" HWADDR_PRIx, val);
9307c4c1
FB
1281 break;
1282 case 'u':
a8170e5e 1283 monitor_printf(mon, "%" HWADDR_PRIu, val);
9307c4c1
FB
1284 break;
1285 default:
1286 case 'd':
a8170e5e 1287 monitor_printf(mon, "%" HWADDR_PRId, val);
9307c4c1
FB
1288 break;
1289 case 'c':
376253ec 1290 monitor_printc(mon, val);
9307c4c1
FB
1291 break;
1292 }
376253ec 1293 monitor_printf(mon, "\n");
9307c4c1
FB
1294}
1295
3e5a50d6 1296static void hmp_sum(Monitor *mon, const QDict *qdict)
e4cf1adc
FB
1297{
1298 uint32_t addr;
e4cf1adc 1299 uint16_t sum;
f18c16de
LC
1300 uint32_t start = qdict_get_int(qdict, "start");
1301 uint32_t size = qdict_get_int(qdict, "size");
e4cf1adc
FB
1302
1303 sum = 0;
1304 for(addr = start; addr < (start + size); addr++) {
42874d3a
PM
1305 uint8_t val = address_space_ldub(&address_space_memory, addr,
1306 MEMTXATTRS_UNSPECIFIED, NULL);
e4cf1adc
FB
1307 /* BSD sum algorithm ('sum' Unix command) */
1308 sum = (sum >> 1) | (sum << 15);
54f7b4a3 1309 sum += val;
e4cf1adc 1310 }
376253ec 1311 monitor_printf(mon, "%05d\n", sum);
e4cf1adc
FB
1312}
1313
13224a87
FB
1314static int mouse_button_state;
1315
3e5a50d6 1316static void hmp_mouse_move(Monitor *mon, const QDict *qdict)
13224a87 1317{
c751a74a 1318 int dx, dy, dz, button;
1d4daa91
LC
1319 const char *dx_str = qdict_get_str(qdict, "dx_str");
1320 const char *dy_str = qdict_get_str(qdict, "dy_str");
1321 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
c751a74a 1322
13224a87
FB
1323 dx = strtol(dx_str, NULL, 0);
1324 dy = strtol(dy_str, NULL, 0);
c751a74a
GH
1325 qemu_input_queue_rel(NULL, INPUT_AXIS_X, dx);
1326 qemu_input_queue_rel(NULL, INPUT_AXIS_Y, dy);
1327
1328 if (dz_str) {
13224a87 1329 dz = strtol(dz_str, NULL, 0);
c751a74a
GH
1330 if (dz != 0) {
1331 button = (dz > 0) ? INPUT_BUTTON_WHEEL_UP : INPUT_BUTTON_WHEEL_DOWN;
1332 qemu_input_queue_btn(NULL, button, true);
1333 qemu_input_event_sync();
1334 qemu_input_queue_btn(NULL, button, false);
1335 }
1336 }
1337 qemu_input_event_sync();
13224a87
FB
1338}
1339
3e5a50d6 1340static void hmp_mouse_button(Monitor *mon, const QDict *qdict)
13224a87 1341{
c751a74a
GH
1342 static uint32_t bmap[INPUT_BUTTON_MAX] = {
1343 [INPUT_BUTTON_LEFT] = MOUSE_EVENT_LBUTTON,
1344 [INPUT_BUTTON_MIDDLE] = MOUSE_EVENT_MBUTTON,
1345 [INPUT_BUTTON_RIGHT] = MOUSE_EVENT_RBUTTON,
1346 };
d54908a5 1347 int button_state = qdict_get_int(qdict, "button_state");
c751a74a
GH
1348
1349 if (mouse_button_state == button_state) {
1350 return;
1351 }
1352 qemu_input_update_buttons(NULL, bmap, mouse_button_state, button_state);
1353 qemu_input_event_sync();
13224a87 1354 mouse_button_state = button_state;
13224a87
FB
1355}
1356
3e5a50d6 1357static void hmp_ioport_read(Monitor *mon, const QDict *qdict)
3440557b 1358{
aa93e39c
LC
1359 int size = qdict_get_int(qdict, "size");
1360 int addr = qdict_get_int(qdict, "addr");
1361 int has_index = qdict_haskey(qdict, "index");
3440557b
FB
1362 uint32_t val;
1363 int suffix;
1364
1365 if (has_index) {
aa93e39c 1366 int index = qdict_get_int(qdict, "index");
afcea8cb 1367 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
3440557b
FB
1368 addr++;
1369 }
1370 addr &= 0xffff;
1371
1372 switch(size) {
1373 default:
1374 case 1:
afcea8cb 1375 val = cpu_inb(addr);
3440557b
FB
1376 suffix = 'b';
1377 break;
1378 case 2:
afcea8cb 1379 val = cpu_inw(addr);
3440557b
FB
1380 suffix = 'w';
1381 break;
1382 case 4:
afcea8cb 1383 val = cpu_inl(addr);
3440557b
FB
1384 suffix = 'l';
1385 break;
1386 }
376253ec
AL
1387 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1388 suffix, addr, size * 2, val);
3440557b 1389}
a3a91a35 1390
3e5a50d6 1391static void hmp_ioport_write(Monitor *mon, const QDict *qdict)
f114784f 1392{
1bd1442e
LC
1393 int size = qdict_get_int(qdict, "size");
1394 int addr = qdict_get_int(qdict, "addr");
1395 int val = qdict_get_int(qdict, "val");
1396
f114784f
JK
1397 addr &= IOPORTS_MASK;
1398
1399 switch (size) {
1400 default:
1401 case 1:
afcea8cb 1402 cpu_outb(addr, val);
f114784f
JK
1403 break;
1404 case 2:
afcea8cb 1405 cpu_outw(addr, val);
f114784f
JK
1406 break;
1407 case 4:
afcea8cb 1408 cpu_outl(addr, val);
f114784f
JK
1409 break;
1410 }
1411}
1412
3e5a50d6 1413static void hmp_boot_set(Monitor *mon, const QDict *qdict)
0ecdffbb 1414{
f1839938 1415 Error *local_err = NULL;
d54908a5 1416 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
0ecdffbb 1417
f1839938
GA
1418 qemu_boot_set(bootdevice, &local_err);
1419 if (local_err) {
1420 monitor_printf(mon, "%s\n", error_get_pretty(local_err));
1421 error_free(local_err);
0ecdffbb 1422 } else {
f1839938 1423 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
0ecdffbb
AJ
1424 }
1425}
1426
b86bda5b 1427#if defined(TARGET_I386)
a8170e5e
AK
1428static void print_pte(Monitor *mon, hwaddr addr,
1429 hwaddr pte,
1430 hwaddr mask)
b86bda5b 1431{
d65aaf37
BS
1432#ifdef TARGET_X86_64
1433 if (addr & (1ULL << 47)) {
1434 addr |= -1LL << 48;
1435 }
1436#endif
1437 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1438 " %c%c%c%c%c%c%c%c%c\n",
376253ec
AL
1439 addr,
1440 pte & mask,
d65aaf37 1441 pte & PG_NX_MASK ? 'X' : '-',
376253ec
AL
1442 pte & PG_GLOBAL_MASK ? 'G' : '-',
1443 pte & PG_PSE_MASK ? 'P' : '-',
1444 pte & PG_DIRTY_MASK ? 'D' : '-',
1445 pte & PG_ACCESSED_MASK ? 'A' : '-',
1446 pte & PG_PCD_MASK ? 'C' : '-',
1447 pte & PG_PWT_MASK ? 'T' : '-',
1448 pte & PG_USER_MASK ? 'U' : '-',
1449 pte & PG_RW_MASK ? 'W' : '-');
b86bda5b
FB
1450}
1451
9349b4f9 1452static void tlb_info_32(Monitor *mon, CPUArchState *env)
b86bda5b 1453{
94ac5cd2 1454 unsigned int l1, l2;
b86bda5b
FB
1455 uint32_t pgd, pde, pte;
1456
b86bda5b
FB
1457 pgd = env->cr[3] & ~0xfff;
1458 for(l1 = 0; l1 < 1024; l1++) {
b8b79323 1459 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
b86bda5b
FB
1460 pde = le32_to_cpu(pde);
1461 if (pde & PG_PRESENT_MASK) {
1462 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
d65aaf37
BS
1463 /* 4M pages */
1464 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
b86bda5b
FB
1465 } else {
1466 for(l2 = 0; l2 < 1024; l2++) {
b8b79323 1467 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
b86bda5b
FB
1468 pte = le32_to_cpu(pte);
1469 if (pte & PG_PRESENT_MASK) {
376253ec 1470 print_pte(mon, (l1 << 22) + (l2 << 12),
5fafdf24 1471 pte & ~PG_PSE_MASK,
b86bda5b
FB
1472 ~0xfff);
1473 }
1474 }
1475 }
1476 }
1477 }
1478}
1479
9349b4f9 1480static void tlb_info_pae32(Monitor *mon, CPUArchState *env)
d65aaf37 1481{
94ac5cd2 1482 unsigned int l1, l2, l3;
d65aaf37
BS
1483 uint64_t pdpe, pde, pte;
1484 uint64_t pdp_addr, pd_addr, pt_addr;
1485
1486 pdp_addr = env->cr[3] & ~0x1f;
1487 for (l1 = 0; l1 < 4; l1++) {
b8b79323 1488 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
d65aaf37
BS
1489 pdpe = le64_to_cpu(pdpe);
1490 if (pdpe & PG_PRESENT_MASK) {
1491 pd_addr = pdpe & 0x3fffffffff000ULL;
1492 for (l2 = 0; l2 < 512; l2++) {
b8b79323 1493 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
d65aaf37
BS
1494 pde = le64_to_cpu(pde);
1495 if (pde & PG_PRESENT_MASK) {
1496 if (pde & PG_PSE_MASK) {
1497 /* 2M pages with PAE, CR4.PSE is ignored */
1498 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
a8170e5e 1499 ~((hwaddr)(1 << 20) - 1));
d65aaf37
BS
1500 } else {
1501 pt_addr = pde & 0x3fffffffff000ULL;
1502 for (l3 = 0; l3 < 512; l3++) {
b8b79323 1503 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
d65aaf37
BS
1504 pte = le64_to_cpu(pte);
1505 if (pte & PG_PRESENT_MASK) {
1506 print_pte(mon, (l1 << 30 ) + (l2 << 21)
1507 + (l3 << 12),
1508 pte & ~PG_PSE_MASK,
a8170e5e 1509 ~(hwaddr)0xfff);
d65aaf37
BS
1510 }
1511 }
1512 }
1513 }
1514 }
1515 }
1516 }
1517}
1518
1519#ifdef TARGET_X86_64
9349b4f9 1520static void tlb_info_64(Monitor *mon, CPUArchState *env)
d65aaf37
BS
1521{
1522 uint64_t l1, l2, l3, l4;
1523 uint64_t pml4e, pdpe, pde, pte;
1524 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
1525
1526 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1527 for (l1 = 0; l1 < 512; l1++) {
b8b79323 1528 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
d65aaf37
BS
1529 pml4e = le64_to_cpu(pml4e);
1530 if (pml4e & PG_PRESENT_MASK) {
1531 pdp_addr = pml4e & 0x3fffffffff000ULL;
1532 for (l2 = 0; l2 < 512; l2++) {
b8b79323 1533 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
d65aaf37
BS
1534 pdpe = le64_to_cpu(pdpe);
1535 if (pdpe & PG_PRESENT_MASK) {
1536 if (pdpe & PG_PSE_MASK) {
1537 /* 1G pages, CR4.PSE is ignored */
1538 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
1539 0x3ffffc0000000ULL);
1540 } else {
1541 pd_addr = pdpe & 0x3fffffffff000ULL;
1542 for (l3 = 0; l3 < 512; l3++) {
b8b79323 1543 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
d65aaf37
BS
1544 pde = le64_to_cpu(pde);
1545 if (pde & PG_PRESENT_MASK) {
1546 if (pde & PG_PSE_MASK) {
1547 /* 2M pages, CR4.PSE is ignored */
1548 print_pte(mon, (l1 << 39) + (l2 << 30) +
1549 (l3 << 21), pde,
1550 0x3ffffffe00000ULL);
1551 } else {
1552 pt_addr = pde & 0x3fffffffff000ULL;
1553 for (l4 = 0; l4 < 512; l4++) {
1554 cpu_physical_memory_read(pt_addr
1555 + l4 * 8,
b8b79323 1556 &pte, 8);
d65aaf37
BS
1557 pte = le64_to_cpu(pte);
1558 if (pte & PG_PRESENT_MASK) {
1559 print_pte(mon, (l1 << 39) +
1560 (l2 << 30) +
1561 (l3 << 21) + (l4 << 12),
1562 pte & ~PG_PSE_MASK,
1563 0x3fffffffff000ULL);
1564 }
1565 }
1566 }
1567 }
1568 }
1569 }
1570 }
1571 }
1572 }
1573 }
1574}
1575#endif
1576
1ce6be24 1577static void hmp_info_tlb(Monitor *mon, const QDict *qdict)
d65aaf37 1578{
9349b4f9 1579 CPUArchState *env;
d65aaf37 1580
5bcda5f7 1581 env = mon_get_cpu_env();
d65aaf37
BS
1582
1583 if (!(env->cr[0] & CR0_PG_MASK)) {
1584 monitor_printf(mon, "PG disabled\n");
1585 return;
1586 }
1587 if (env->cr[4] & CR4_PAE_MASK) {
1588#ifdef TARGET_X86_64
1589 if (env->hflags & HF_LMA_MASK) {
1590 tlb_info_64(mon, env);
1591 } else
1592#endif
1593 {
1594 tlb_info_pae32(mon, env);
1595 }
1596 } else {
1597 tlb_info_32(mon, env);
1598 }
1599}
1600
a8170e5e 1601static void mem_print(Monitor *mon, hwaddr *pstart,
1b3cba6e 1602 int *plast_prot,
a8170e5e 1603 hwaddr end, int prot)
b86bda5b 1604{
9746b15b
FB
1605 int prot1;
1606 prot1 = *plast_prot;
1607 if (prot != prot1) {
b86bda5b 1608 if (*pstart != -1) {
1b3cba6e
BS
1609 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
1610 TARGET_FMT_plx " %c%c%c\n",
376253ec
AL
1611 *pstart, end, end - *pstart,
1612 prot1 & PG_USER_MASK ? 'u' : '-',
1613 'r',
1614 prot1 & PG_RW_MASK ? 'w' : '-');
b86bda5b
FB
1615 }
1616 if (prot != 0)
1617 *pstart = end;
1618 else
1619 *pstart = -1;
1620 *plast_prot = prot;
1621 }
1622}
1623
9349b4f9 1624static void mem_info_32(Monitor *mon, CPUArchState *env)
b86bda5b 1625{
b49ca72d
AC
1626 unsigned int l1, l2;
1627 int prot, last_prot;
1b3cba6e 1628 uint32_t pgd, pde, pte;
a8170e5e 1629 hwaddr start, end;
6a00d601 1630
b86bda5b
FB
1631 pgd = env->cr[3] & ~0xfff;
1632 last_prot = 0;
1633 start = -1;
1634 for(l1 = 0; l1 < 1024; l1++) {
b8b79323 1635 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
b86bda5b
FB
1636 pde = le32_to_cpu(pde);
1637 end = l1 << 22;
1638 if (pde & PG_PRESENT_MASK) {
1639 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1640 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
376253ec 1641 mem_print(mon, &start, &last_prot, end, prot);
b86bda5b
FB
1642 } else {
1643 for(l2 = 0; l2 < 1024; l2++) {
b8b79323 1644 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
b86bda5b
FB
1645 pte = le32_to_cpu(pte);
1646 end = (l1 << 22) + (l2 << 12);
1647 if (pte & PG_PRESENT_MASK) {
c76c8416
AC
1648 prot = pte & pde &
1649 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
b86bda5b
FB
1650 } else {
1651 prot = 0;
1652 }
376253ec 1653 mem_print(mon, &start, &last_prot, end, prot);
b86bda5b
FB
1654 }
1655 }
1656 } else {
1657 prot = 0;
376253ec 1658 mem_print(mon, &start, &last_prot, end, prot);
b86bda5b
FB
1659 }
1660 }
8a94b8ca 1661 /* Flush last range */
a8170e5e 1662 mem_print(mon, &start, &last_prot, (hwaddr)1 << 32, 0);
b86bda5b 1663}
1b3cba6e 1664
9349b4f9 1665static void mem_info_pae32(Monitor *mon, CPUArchState *env)
1b3cba6e 1666{
b49ca72d
AC
1667 unsigned int l1, l2, l3;
1668 int prot, last_prot;
1b3cba6e
BS
1669 uint64_t pdpe, pde, pte;
1670 uint64_t pdp_addr, pd_addr, pt_addr;
a8170e5e 1671 hwaddr start, end;
1b3cba6e
BS
1672
1673 pdp_addr = env->cr[3] & ~0x1f;
1674 last_prot = 0;
1675 start = -1;
1676 for (l1 = 0; l1 < 4; l1++) {
b8b79323 1677 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
1b3cba6e
BS
1678 pdpe = le64_to_cpu(pdpe);
1679 end = l1 << 30;
1680 if (pdpe & PG_PRESENT_MASK) {
1681 pd_addr = pdpe & 0x3fffffffff000ULL;
1682 for (l2 = 0; l2 < 512; l2++) {
b8b79323 1683 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
1b3cba6e
BS
1684 pde = le64_to_cpu(pde);
1685 end = (l1 << 30) + (l2 << 21);
1686 if (pde & PG_PRESENT_MASK) {
1687 if (pde & PG_PSE_MASK) {
1688 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1689 PG_PRESENT_MASK);
1690 mem_print(mon, &start, &last_prot, end, prot);
1691 } else {
1692 pt_addr = pde & 0x3fffffffff000ULL;
1693 for (l3 = 0; l3 < 512; l3++) {
b8b79323 1694 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
1b3cba6e
BS
1695 pte = le64_to_cpu(pte);
1696 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
1697 if (pte & PG_PRESENT_MASK) {
c76c8416
AC
1698 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
1699 PG_PRESENT_MASK);
1b3cba6e
BS
1700 } else {
1701 prot = 0;
1702 }
1703 mem_print(mon, &start, &last_prot, end, prot);
1704 }
1705 }
1706 } else {
1707 prot = 0;
1708 mem_print(mon, &start, &last_prot, end, prot);
1709 }
1710 }
1711 } else {
1712 prot = 0;
1713 mem_print(mon, &start, &last_prot, end, prot);
1714 }
1715 }
8a94b8ca 1716 /* Flush last range */
a8170e5e 1717 mem_print(mon, &start, &last_prot, (hwaddr)1 << 32, 0);
1b3cba6e
BS
1718}
1719
1720
1721#ifdef TARGET_X86_64
9349b4f9 1722static void mem_info_64(Monitor *mon, CPUArchState *env)
1b3cba6e
BS
1723{
1724 int prot, last_prot;
1725 uint64_t l1, l2, l3, l4;
1726 uint64_t pml4e, pdpe, pde, pte;
1727 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
1728
1729 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1730 last_prot = 0;
1731 start = -1;
1732 for (l1 = 0; l1 < 512; l1++) {
b8b79323 1733 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
1b3cba6e
BS
1734 pml4e = le64_to_cpu(pml4e);
1735 end = l1 << 39;
1736 if (pml4e & PG_PRESENT_MASK) {
1737 pdp_addr = pml4e & 0x3fffffffff000ULL;
1738 for (l2 = 0; l2 < 512; l2++) {
b8b79323 1739 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
1b3cba6e
BS
1740 pdpe = le64_to_cpu(pdpe);
1741 end = (l1 << 39) + (l2 << 30);
1742 if (pdpe & PG_PRESENT_MASK) {
1743 if (pdpe & PG_PSE_MASK) {
2d5b5074
BS
1744 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
1745 PG_PRESENT_MASK);
c76c8416 1746 prot &= pml4e;
1b3cba6e
BS
1747 mem_print(mon, &start, &last_prot, end, prot);
1748 } else {
1749 pd_addr = pdpe & 0x3fffffffff000ULL;
1750 for (l3 = 0; l3 < 512; l3++) {
b8b79323 1751 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
1b3cba6e
BS
1752 pde = le64_to_cpu(pde);
1753 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
1754 if (pde & PG_PRESENT_MASK) {
1755 if (pde & PG_PSE_MASK) {
1756 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1757 PG_PRESENT_MASK);
c76c8416 1758 prot &= pml4e & pdpe;
1b3cba6e
BS
1759 mem_print(mon, &start, &last_prot, end, prot);
1760 } else {
1761 pt_addr = pde & 0x3fffffffff000ULL;
1762 for (l4 = 0; l4 < 512; l4++) {
1763 cpu_physical_memory_read(pt_addr
1764 + l4 * 8,
b8b79323 1765 &pte, 8);
1b3cba6e
BS
1766 pte = le64_to_cpu(pte);
1767 end = (l1 << 39) + (l2 << 30) +
1768 (l3 << 21) + (l4 << 12);
1769 if (pte & PG_PRESENT_MASK) {
1770 prot = pte & (PG_USER_MASK | PG_RW_MASK |
1771 PG_PRESENT_MASK);
c76c8416 1772 prot &= pml4e & pdpe & pde;
1b3cba6e
BS
1773 } else {
1774 prot = 0;
1775 }
1776 mem_print(mon, &start, &last_prot, end, prot);
1777 }
1778 }
1779 } else {
1780 prot = 0;
1781 mem_print(mon, &start, &last_prot, end, prot);
1782 }
1783 }
1784 }
1785 } else {
1786 prot = 0;
1787 mem_print(mon, &start, &last_prot, end, prot);
1788 }
1789 }
1790 } else {
1791 prot = 0;
1792 mem_print(mon, &start, &last_prot, end, prot);
1793 }
1794 }
8a94b8ca 1795 /* Flush last range */
a8170e5e 1796 mem_print(mon, &start, &last_prot, (hwaddr)1 << 48, 0);
1b3cba6e
BS
1797}
1798#endif
1799
1ce6be24 1800static void hmp_info_mem(Monitor *mon, const QDict *qdict)
1b3cba6e 1801{
9349b4f9 1802 CPUArchState *env;
1b3cba6e 1803
5bcda5f7 1804 env = mon_get_cpu_env();
1b3cba6e
BS
1805
1806 if (!(env->cr[0] & CR0_PG_MASK)) {
1807 monitor_printf(mon, "PG disabled\n");
1808 return;
1809 }
1810 if (env->cr[4] & CR4_PAE_MASK) {
1811#ifdef TARGET_X86_64
1812 if (env->hflags & HF_LMA_MASK) {
1813 mem_info_64(mon, env);
1814 } else
1815#endif
1816 {
1817 mem_info_pae32(mon, env);
1818 }
1819 } else {
1820 mem_info_32(mon, env);
1821 }
1822}
b86bda5b
FB
1823#endif
1824
7c664e2f
AJ
1825#if defined(TARGET_SH4)
1826
376253ec 1827static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
7c664e2f 1828{
376253ec
AL
1829 monitor_printf(mon, " tlb%i:\t"
1830 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1831 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1832 "dirty=%hhu writethrough=%hhu\n",
1833 idx,
1834 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1835 tlb->v, tlb->sh, tlb->c, tlb->pr,
1836 tlb->d, tlb->wt);
7c664e2f
AJ
1837}
1838
1ce6be24 1839static void hmp_info_tlb(Monitor *mon, const QDict *qdict)
7c664e2f 1840{
5bcda5f7 1841 CPUArchState *env = mon_get_cpu_env();
7c664e2f
AJ
1842 int i;
1843
376253ec 1844 monitor_printf (mon, "ITLB:\n");
7c664e2f 1845 for (i = 0 ; i < ITLB_SIZE ; i++)
376253ec
AL
1846 print_tlb (mon, i, &env->itlb[i]);
1847 monitor_printf (mon, "UTLB:\n");
7c664e2f 1848 for (i = 0 ; i < UTLB_SIZE ; i++)
376253ec 1849 print_tlb (mon, i, &env->utlb[i]);
7c664e2f
AJ
1850}
1851
1852#endif
1853
692f737c 1854#if defined(TARGET_SPARC) || defined(TARGET_PPC) || defined(TARGET_XTENSA)
1ce6be24 1855static void hmp_info_tlb(Monitor *mon, const QDict *qdict)
d41160a3 1856{
5bcda5f7 1857 CPUArchState *env1 = mon_get_cpu_env();
d41160a3
BS
1858
1859 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
1860}
1861#endif
1862
1ce6be24 1863static void hmp_info_mtree(Monitor *mon, const QDict *qdict)
314e2987
BS
1864{
1865 mtree_info((fprintf_function)monitor_printf, mon);
1866}
1867
1ce6be24 1868static void hmp_info_numa(Monitor *mon, const QDict *qdict)
030ea37b 1869{
b28b6230 1870 int i;
1b1ed8dc 1871 CPUState *cpu;
5b009e40 1872 uint64_t *node_mem;
030ea37b 1873
5b009e40
HZ
1874 node_mem = g_new0(uint64_t, nb_numa_nodes);
1875 query_numa_node_mem(node_mem);
030ea37b
AL
1876 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1877 for (i = 0; i < nb_numa_nodes; i++) {
1878 monitor_printf(mon, "node %d cpus:", i);
bdc44640 1879 CPU_FOREACH(cpu) {
1b1ed8dc 1880 if (cpu->numa_node == i) {
55e5c285 1881 monitor_printf(mon, " %d", cpu->cpu_index);
030ea37b
AL
1882 }
1883 }
1884 monitor_printf(mon, "\n");
1885 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
5b009e40 1886 node_mem[i] >> 20);
030ea37b 1887 }
5b009e40 1888 g_free(node_mem);
030ea37b
AL
1889}
1890
5f1ce948
FB
1891#ifdef CONFIG_PROFILER
1892
89d5cbdd 1893int64_t tcg_time;
e9a6625e
AJ
1894int64_t dev_time;
1895
1ce6be24 1896static void hmp_info_profile(Monitor *mon, const QDict *qdict)
5f1ce948 1897{
376253ec 1898 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
6ee093c9 1899 dev_time, dev_time / (double)get_ticks_per_sec());
376253ec 1900 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
89d5cbdd
AK
1901 tcg_time, tcg_time / (double)get_ticks_per_sec());
1902 tcg_time = 0;
5f1ce948 1903 dev_time = 0;
5f1ce948
FB
1904}
1905#else
1ce6be24 1906static void hmp_info_profile(Monitor *mon, const QDict *qdict)
5f1ce948 1907{
376253ec 1908 monitor_printf(mon, "Internal profiler not compiled\n");
5f1ce948
FB
1909}
1910#endif
1911
ec36b695 1912/* Capture support */
72cf2d4f 1913static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
ec36b695 1914
1ce6be24 1915static void hmp_info_capture(Monitor *mon, const QDict *qdict)
ec36b695
FB
1916{
1917 int i;
1918 CaptureState *s;
1919
1920 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
376253ec 1921 monitor_printf(mon, "[%d]: ", i);
ec36b695
FB
1922 s->ops.info (s->opaque);
1923 }
1924}
1925
3e5a50d6 1926static void hmp_stopcapture(Monitor *mon, const QDict *qdict)
ec36b695
FB
1927{
1928 int i;
d54908a5 1929 int n = qdict_get_int(qdict, "n");
ec36b695
FB
1930 CaptureState *s;
1931
1932 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1933 if (i == n) {
1934 s->ops.destroy (s->opaque);
72cf2d4f 1935 QLIST_REMOVE (s, entries);
7267c094 1936 g_free (s);
ec36b695
FB
1937 return;
1938 }
1939 }
1940}
1941
3e5a50d6 1942static void hmp_wavcapture(Monitor *mon, const QDict *qdict)
c1925484
LC
1943{
1944 const char *path = qdict_get_str(qdict, "path");
1945 int has_freq = qdict_haskey(qdict, "freq");
1946 int freq = qdict_get_try_int(qdict, "freq", -1);
1947 int has_bits = qdict_haskey(qdict, "bits");
1948 int bits = qdict_get_try_int(qdict, "bits", -1);
1949 int has_channels = qdict_haskey(qdict, "nchannels");
1950 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
ec36b695
FB
1951 CaptureState *s;
1952
7267c094 1953 s = g_malloc0 (sizeof (*s));
ec36b695
FB
1954
1955 freq = has_freq ? freq : 44100;
1956 bits = has_bits ? bits : 16;
1957 nchannels = has_channels ? nchannels : 2;
1958
1959 if (wav_start_capture (s, path, freq, bits, nchannels)) {
d00b2618 1960 monitor_printf(mon, "Failed to add wave capture\n");
7267c094 1961 g_free (s);
d00b2618 1962 return;
ec36b695 1963 }
72cf2d4f 1964 QLIST_INSERT_HEAD (&capture_head, s, entries);
ec36b695 1965}
ec36b695 1966
15dfcd45 1967static qemu_acl *find_acl(Monitor *mon, const char *name)
76655d6d 1968{
15dfcd45 1969 qemu_acl *acl = qemu_acl_find(name);
76655d6d 1970
76655d6d 1971 if (!acl) {
15dfcd45 1972 monitor_printf(mon, "acl: unknown list '%s'\n", name);
76655d6d 1973 }
15dfcd45
JK
1974 return acl;
1975}
1976
3e5a50d6 1977static void hmp_acl_show(Monitor *mon, const QDict *qdict)
15dfcd45 1978{
d54908a5 1979 const char *aclname = qdict_get_str(qdict, "aclname");
15dfcd45
JK
1980 qemu_acl *acl = find_acl(mon, aclname);
1981 qemu_acl_entry *entry;
1982 int i = 0;
76655d6d 1983
15dfcd45 1984 if (acl) {
28a76be8 1985 monitor_printf(mon, "policy: %s\n",
76655d6d 1986 acl->defaultDeny ? "deny" : "allow");
72cf2d4f 1987 QTAILQ_FOREACH(entry, &acl->entries, next) {
28a76be8
AL
1988 i++;
1989 monitor_printf(mon, "%d: %s %s\n", i,
15dfcd45 1990 entry->deny ? "deny" : "allow", entry->match);
28a76be8 1991 }
15dfcd45
JK
1992 }
1993}
1994
3e5a50d6 1995static void hmp_acl_reset(Monitor *mon, const QDict *qdict)
15dfcd45 1996{
d54908a5 1997 const char *aclname = qdict_get_str(qdict, "aclname");
15dfcd45
JK
1998 qemu_acl *acl = find_acl(mon, aclname);
1999
2000 if (acl) {
28a76be8
AL
2001 qemu_acl_reset(acl);
2002 monitor_printf(mon, "acl: removed all rules\n");
15dfcd45
JK
2003 }
2004}
2005
3e5a50d6 2006static void hmp_acl_policy(Monitor *mon, const QDict *qdict)
15dfcd45 2007{
f18c16de
LC
2008 const char *aclname = qdict_get_str(qdict, "aclname");
2009 const char *policy = qdict_get_str(qdict, "policy");
15dfcd45 2010 qemu_acl *acl = find_acl(mon, aclname);
28a76be8 2011
15dfcd45
JK
2012 if (acl) {
2013 if (strcmp(policy, "allow") == 0) {
28a76be8
AL
2014 acl->defaultDeny = 0;
2015 monitor_printf(mon, "acl: policy set to 'allow'\n");
15dfcd45 2016 } else if (strcmp(policy, "deny") == 0) {
28a76be8
AL
2017 acl->defaultDeny = 1;
2018 monitor_printf(mon, "acl: policy set to 'deny'\n");
2019 } else {
15dfcd45
JK
2020 monitor_printf(mon, "acl: unknown policy '%s', "
2021 "expected 'deny' or 'allow'\n", policy);
28a76be8 2022 }
15dfcd45
JK
2023 }
2024}
28a76be8 2025
3e5a50d6 2026static void hmp_acl_add(Monitor *mon, const QDict *qdict)
15dfcd45 2027{
1bd1442e
LC
2028 const char *aclname = qdict_get_str(qdict, "aclname");
2029 const char *match = qdict_get_str(qdict, "match");
2030 const char *policy = qdict_get_str(qdict, "policy");
2031 int has_index = qdict_haskey(qdict, "index");
2032 int index = qdict_get_try_int(qdict, "index", -1);
15dfcd45
JK
2033 qemu_acl *acl = find_acl(mon, aclname);
2034 int deny, ret;
2035
2036 if (acl) {
2037 if (strcmp(policy, "allow") == 0) {
2038 deny = 0;
2039 } else if (strcmp(policy, "deny") == 0) {
2040 deny = 1;
2041 } else {
2042 monitor_printf(mon, "acl: unknown policy '%s', "
2043 "expected 'deny' or 'allow'\n", policy);
28a76be8
AL
2044 return;
2045 }
28a76be8
AL
2046 if (has_index)
2047 ret = qemu_acl_insert(acl, deny, match, index);
2048 else
2049 ret = qemu_acl_append(acl, deny, match);
2050 if (ret < 0)
2051 monitor_printf(mon, "acl: unable to add acl entry\n");
2052 else
2053 monitor_printf(mon, "acl: added rule at position %d\n", ret);
15dfcd45
JK
2054 }
2055}
28a76be8 2056
3e5a50d6 2057static void hmp_acl_remove(Monitor *mon, const QDict *qdict)
15dfcd45 2058{
f18c16de
LC
2059 const char *aclname = qdict_get_str(qdict, "aclname");
2060 const char *match = qdict_get_str(qdict, "match");
15dfcd45
JK
2061 qemu_acl *acl = find_acl(mon, aclname);
2062 int ret;
28a76be8 2063
15dfcd45 2064 if (acl) {
28a76be8
AL
2065 ret = qemu_acl_remove(acl, match);
2066 if (ret < 0)
2067 monitor_printf(mon, "acl: no matching acl entry\n");
2068 else
2069 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
76655d6d
AL
2070 }
2071}
2072
79c4f6b0 2073#if defined(TARGET_I386)
3e5a50d6 2074static void hmp_mce(Monitor *mon, const QDict *qdict)
79c4f6b0 2075{
8c5cf3b6 2076 X86CPU *cpu;
55e5c285 2077 CPUState *cs;
37b7ad48
LC
2078 int cpu_index = qdict_get_int(qdict, "cpu_index");
2079 int bank = qdict_get_int(qdict, "bank");
2080 uint64_t status = qdict_get_int(qdict, "status");
2081 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2082 uint64_t addr = qdict_get_int(qdict, "addr");
2083 uint64_t misc = qdict_get_int(qdict, "misc");
747461c7 2084 int flags = MCE_INJECT_UNCOND_AO;
79c4f6b0 2085
34acbc95 2086 if (qdict_get_try_bool(qdict, "broadcast", false)) {
747461c7
JK
2087 flags |= MCE_INJECT_BROADCAST;
2088 }
c51a944b
AF
2089 cs = qemu_get_cpu(cpu_index);
2090 if (cs != NULL) {
2091 cpu = X86_CPU(cs);
2092 cpu_x86_inject_mce(mon, cpu, bank, status, mcg_status, addr, misc,
2093 flags);
31ce5e0c 2094 }
79c4f6b0
HY
2095}
2096#endif
2097
208c9d1b 2098void qmp_getfd(const char *fdname, Error **errp)
f07918fd 2099{
c227f099 2100 mon_fd_t *monfd;
f07918fd
MM
2101 int fd;
2102
208c9d1b 2103 fd = qemu_chr_fe_get_msgfd(cur_mon->chr);
f07918fd 2104 if (fd == -1) {
c6bd8c70 2105 error_setg(errp, QERR_FD_NOT_SUPPLIED);
208c9d1b 2106 return;
f07918fd
MM
2107 }
2108
2109 if (qemu_isdigit(fdname[0])) {
0b9f0e2f 2110 close(fd);
c6bd8c70
MA
2111 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdname",
2112 "a name not starting with a digit");
208c9d1b 2113 return;
f07918fd
MM
2114 }
2115
208c9d1b 2116 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
f07918fd
MM
2117 if (strcmp(monfd->name, fdname) != 0) {
2118 continue;
2119 }
2120
2121 close(monfd->fd);
2122 monfd->fd = fd;
208c9d1b 2123 return;
f07918fd
MM
2124 }
2125
7267c094
AL
2126 monfd = g_malloc0(sizeof(mon_fd_t));
2127 monfd->name = g_strdup(fdname);
f07918fd
MM
2128 monfd->fd = fd;
2129
208c9d1b 2130 QLIST_INSERT_HEAD(&cur_mon->fds, monfd, next);
f07918fd
MM
2131}
2132
208c9d1b 2133void qmp_closefd(const char *fdname, Error **errp)
f07918fd 2134{
c227f099 2135 mon_fd_t *monfd;
f07918fd 2136
208c9d1b 2137 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
f07918fd
MM
2138 if (strcmp(monfd->name, fdname) != 0) {
2139 continue;
2140 }
2141
72cf2d4f 2142 QLIST_REMOVE(monfd, next);
f07918fd 2143 close(monfd->fd);
7267c094
AL
2144 g_free(monfd->name);
2145 g_free(monfd);
208c9d1b 2146 return;
f07918fd
MM
2147 }
2148
c6bd8c70 2149 error_setg(errp, QERR_FD_NOT_FOUND, fdname);
f07918fd
MM
2150}
2151
3e5a50d6 2152static void hmp_loadvm(Monitor *mon, const QDict *qdict)
c8d41b2c 2153{
1354869c 2154 int saved_vm_running = runstate_is_running();
d54908a5 2155 const char *name = qdict_get_str(qdict, "name");
c8d41b2c 2156
0461d5a6 2157 vm_stop(RUN_STATE_RESTORE_VM);
c8d41b2c 2158
f0aa7a8b 2159 if (load_vmstate(name) == 0 && saved_vm_running) {
c8d41b2c 2160 vm_start();
f0aa7a8b 2161 }
c8d41b2c
JQ
2162}
2163
a9940fc4 2164int monitor_get_fd(Monitor *mon, const char *fdname, Error **errp)
7768e04c 2165{
c227f099 2166 mon_fd_t *monfd;
7768e04c 2167
72cf2d4f 2168 QLIST_FOREACH(monfd, &mon->fds, next) {
7768e04c
MM
2169 int fd;
2170
2171 if (strcmp(monfd->name, fdname) != 0) {
2172 continue;
2173 }
2174
2175 fd = monfd->fd;
2176
2177 /* caller takes ownership of fd */
72cf2d4f 2178 QLIST_REMOVE(monfd, next);
7267c094
AL
2179 g_free(monfd->name);
2180 g_free(monfd);
7768e04c
MM
2181
2182 return fd;
2183 }
2184
a9940fc4 2185 error_setg(errp, "File descriptor named '%s' has not been found", fdname);
7768e04c
MM
2186 return -1;
2187}
2188
ba1c048a
CB
2189static void monitor_fdset_cleanup(MonFdset *mon_fdset)
2190{
2191 MonFdsetFd *mon_fdset_fd;
2192 MonFdsetFd *mon_fdset_fd_next;
2193
2194 QLIST_FOREACH_SAFE(mon_fdset_fd, &mon_fdset->fds, next, mon_fdset_fd_next) {
ebe52b59
CB
2195 if ((mon_fdset_fd->removed ||
2196 (QLIST_EMPTY(&mon_fdset->dup_fds) && mon_refcount == 0)) &&
2197 runstate_is_running()) {
ba1c048a
CB
2198 close(mon_fdset_fd->fd);
2199 g_free(mon_fdset_fd->opaque);
2200 QLIST_REMOVE(mon_fdset_fd, next);
2201 g_free(mon_fdset_fd);
2202 }
2203 }
2204
adb696f3 2205 if (QLIST_EMPTY(&mon_fdset->fds) && QLIST_EMPTY(&mon_fdset->dup_fds)) {
ba1c048a
CB
2206 QLIST_REMOVE(mon_fdset, next);
2207 g_free(mon_fdset);
2208 }
2209}
2210
efb87c16
CB
2211static void monitor_fdsets_cleanup(void)
2212{
2213 MonFdset *mon_fdset;
2214 MonFdset *mon_fdset_next;
2215
2216 QLIST_FOREACH_SAFE(mon_fdset, &mon_fdsets, next, mon_fdset_next) {
2217 monitor_fdset_cleanup(mon_fdset);
2218 }
2219}
2220
ba1c048a
CB
2221AddfdInfo *qmp_add_fd(bool has_fdset_id, int64_t fdset_id, bool has_opaque,
2222 const char *opaque, Error **errp)
2223{
2224 int fd;
2225 Monitor *mon = cur_mon;
ba1c048a
CB
2226 AddfdInfo *fdinfo;
2227
2228 fd = qemu_chr_fe_get_msgfd(mon->chr);
2229 if (fd == -1) {
c6bd8c70 2230 error_setg(errp, QERR_FD_NOT_SUPPLIED);
ba1c048a
CB
2231 goto error;
2232 }
2233
e446f70d
CB
2234 fdinfo = monitor_fdset_add_fd(fd, has_fdset_id, fdset_id,
2235 has_opaque, opaque, errp);
2236 if (fdinfo) {
2237 return fdinfo;
ba1c048a 2238 }
ba1c048a
CB
2239
2240error:
2241 if (fd != -1) {
2242 close(fd);
2243 }
2244 return NULL;
2245}
2246
2247void qmp_remove_fd(int64_t fdset_id, bool has_fd, int64_t fd, Error **errp)
2248{
2249 MonFdset *mon_fdset;
2250 MonFdsetFd *mon_fdset_fd;
2251 char fd_str[60];
2252
2253 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2254 if (mon_fdset->id != fdset_id) {
2255 continue;
2256 }
2257 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2258 if (has_fd) {
2259 if (mon_fdset_fd->fd != fd) {
2260 continue;
2261 }
2262 mon_fdset_fd->removed = true;
2263 break;
2264 } else {
2265 mon_fdset_fd->removed = true;
2266 }
2267 }
2268 if (has_fd && !mon_fdset_fd) {
2269 goto error;
2270 }
2271 monitor_fdset_cleanup(mon_fdset);
2272 return;
2273 }
2274
2275error:
2276 if (has_fd) {
2277 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64 ", fd:%" PRId64,
2278 fdset_id, fd);
2279 } else {
2280 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64, fdset_id);
2281 }
c6bd8c70 2282 error_setg(errp, QERR_FD_NOT_FOUND, fd_str);
ba1c048a
CB
2283}
2284
2285FdsetInfoList *qmp_query_fdsets(Error **errp)
2286{
2287 MonFdset *mon_fdset;
2288 MonFdsetFd *mon_fdset_fd;
2289 FdsetInfoList *fdset_list = NULL;
2290
2291 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2292 FdsetInfoList *fdset_info = g_malloc0(sizeof(*fdset_info));
2293 FdsetFdInfoList *fdsetfd_list = NULL;
2294
2295 fdset_info->value = g_malloc0(sizeof(*fdset_info->value));
2296 fdset_info->value->fdset_id = mon_fdset->id;
2297
2298 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2299 FdsetFdInfoList *fdsetfd_info;
2300
2301 fdsetfd_info = g_malloc0(sizeof(*fdsetfd_info));
2302 fdsetfd_info->value = g_malloc0(sizeof(*fdsetfd_info->value));
2303 fdsetfd_info->value->fd = mon_fdset_fd->fd;
2304 if (mon_fdset_fd->opaque) {
2305 fdsetfd_info->value->has_opaque = true;
2306 fdsetfd_info->value->opaque = g_strdup(mon_fdset_fd->opaque);
2307 } else {
2308 fdsetfd_info->value->has_opaque = false;
2309 }
2310
2311 fdsetfd_info->next = fdsetfd_list;
2312 fdsetfd_list = fdsetfd_info;
2313 }
2314
2315 fdset_info->value->fds = fdsetfd_list;
2316
2317 fdset_info->next = fdset_list;
2318 fdset_list = fdset_info;
2319 }
2320
2321 return fdset_list;
2322}
2323
e446f70d
CB
2324AddfdInfo *monitor_fdset_add_fd(int fd, bool has_fdset_id, int64_t fdset_id,
2325 bool has_opaque, const char *opaque,
2326 Error **errp)
2327{
2328 MonFdset *mon_fdset = NULL;
2329 MonFdsetFd *mon_fdset_fd;
2330 AddfdInfo *fdinfo;
2331
2332 if (has_fdset_id) {
2333 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2334 /* Break if match found or match impossible due to ordering by ID */
2335 if (fdset_id <= mon_fdset->id) {
2336 if (fdset_id < mon_fdset->id) {
2337 mon_fdset = NULL;
2338 }
2339 break;
2340 }
2341 }
2342 }
2343
2344 if (mon_fdset == NULL) {
2345 int64_t fdset_id_prev = -1;
2346 MonFdset *mon_fdset_cur = QLIST_FIRST(&mon_fdsets);
2347
2348 if (has_fdset_id) {
2349 if (fdset_id < 0) {
c6bd8c70
MA
2350 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdset-id",
2351 "a non-negative value");
e446f70d
CB
2352 return NULL;
2353 }
2354 /* Use specified fdset ID */
2355 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2356 mon_fdset_cur = mon_fdset;
2357 if (fdset_id < mon_fdset_cur->id) {
2358 break;
2359 }
2360 }
2361 } else {
2362 /* Use first available fdset ID */
2363 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2364 mon_fdset_cur = mon_fdset;
2365 if (fdset_id_prev == mon_fdset_cur->id - 1) {
2366 fdset_id_prev = mon_fdset_cur->id;
2367 continue;
2368 }
2369 break;
2370 }
2371 }
2372
2373 mon_fdset = g_malloc0(sizeof(*mon_fdset));
2374 if (has_fdset_id) {
2375 mon_fdset->id = fdset_id;
2376 } else {
2377 mon_fdset->id = fdset_id_prev + 1;
2378 }
2379
2380 /* The fdset list is ordered by fdset ID */
2381 if (!mon_fdset_cur) {
2382 QLIST_INSERT_HEAD(&mon_fdsets, mon_fdset, next);
2383 } else if (mon_fdset->id < mon_fdset_cur->id) {
2384 QLIST_INSERT_BEFORE(mon_fdset_cur, mon_fdset, next);
2385 } else {
2386 QLIST_INSERT_AFTER(mon_fdset_cur, mon_fdset, next);
2387 }
2388 }
2389
2390 mon_fdset_fd = g_malloc0(sizeof(*mon_fdset_fd));
2391 mon_fdset_fd->fd = fd;
2392 mon_fdset_fd->removed = false;
2393 if (has_opaque) {
2394 mon_fdset_fd->opaque = g_strdup(opaque);
2395 }
2396 QLIST_INSERT_HEAD(&mon_fdset->fds, mon_fdset_fd, next);
2397
2398 fdinfo = g_malloc0(sizeof(*fdinfo));
2399 fdinfo->fdset_id = mon_fdset->id;
2400 fdinfo->fd = mon_fdset_fd->fd;
2401
2402 return fdinfo;
2403}
2404
adb696f3
CB
2405int monitor_fdset_get_fd(int64_t fdset_id, int flags)
2406{
b2dc64c3 2407#ifndef _WIN32
adb696f3
CB
2408 MonFdset *mon_fdset;
2409 MonFdsetFd *mon_fdset_fd;
2410 int mon_fd_flags;
2411
adb696f3
CB
2412 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2413 if (mon_fdset->id != fdset_id) {
2414 continue;
2415 }
2416 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2417 mon_fd_flags = fcntl(mon_fdset_fd->fd, F_GETFL);
2418 if (mon_fd_flags == -1) {
2419 return -1;
2420 }
2421
2422 if ((flags & O_ACCMODE) == (mon_fd_flags & O_ACCMODE)) {
2423 return mon_fdset_fd->fd;
2424 }
2425 }
2426 errno = EACCES;
2427 return -1;
2428 }
2429#endif
2430
2431 errno = ENOENT;
2432 return -1;
2433}
2434
2435int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd)
2436{
2437 MonFdset *mon_fdset;
2438 MonFdsetFd *mon_fdset_fd_dup;
2439
2440 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2441 if (mon_fdset->id != fdset_id) {
2442 continue;
2443 }
2444 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2445 if (mon_fdset_fd_dup->fd == dup_fd) {
2446 return -1;
2447 }
2448 }
2449 mon_fdset_fd_dup = g_malloc0(sizeof(*mon_fdset_fd_dup));
2450 mon_fdset_fd_dup->fd = dup_fd;
2451 QLIST_INSERT_HEAD(&mon_fdset->dup_fds, mon_fdset_fd_dup, next);
2452 return 0;
2453 }
2454 return -1;
2455}
2456
2457static int monitor_fdset_dup_fd_find_remove(int dup_fd, bool remove)
2458{
2459 MonFdset *mon_fdset;
2460 MonFdsetFd *mon_fdset_fd_dup;
2461
2462 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2463 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2464 if (mon_fdset_fd_dup->fd == dup_fd) {
2465 if (remove) {
2466 QLIST_REMOVE(mon_fdset_fd_dup, next);
2467 if (QLIST_EMPTY(&mon_fdset->dup_fds)) {
2468 monitor_fdset_cleanup(mon_fdset);
2469 }
b3dd1b8c
MT
2470 return -1;
2471 } else {
2472 return mon_fdset->id;
adb696f3 2473 }
adb696f3
CB
2474 }
2475 }
2476 }
2477 return -1;
2478}
2479
2480int monitor_fdset_dup_fd_find(int dup_fd)
2481{
2482 return monitor_fdset_dup_fd_find_remove(dup_fd, false);
2483}
2484
b3dd1b8c 2485void monitor_fdset_dup_fd_remove(int dup_fd)
adb696f3 2486{
b3dd1b8c 2487 monitor_fdset_dup_fd_find_remove(dup_fd, true);
adb696f3
CB
2488}
2489
1677f4c6 2490int monitor_fd_param(Monitor *mon, const char *fdname, Error **errp)
5906366e
LE
2491{
2492 int fd;
2493 Error *local_err = NULL;
a96ed02f 2494
5906366e 2495 if (!qemu_isdigit(fdname[0]) && mon) {
a9940fc4 2496 fd = monitor_get_fd(mon, fdname, &local_err);
5906366e
LE
2497 } else {
2498 fd = qemu_parse_fd(fdname);
a96ed02f 2499 if (fd == -1) {
5906366e
LE
2500 error_setg(&local_err, "Invalid file descriptor number '%s'",
2501 fdname);
a96ed02f 2502 }
5906366e
LE
2503 }
2504 if (local_err) {
2505 error_propagate(errp, local_err);
2506 assert(fd == -1);
a96ed02f 2507 } else {
5906366e 2508 assert(fd != -1);
a96ed02f
NB
2509 }
2510
2511 return fd;
2512}
2513
acd0a093 2514/* Please update hmp-commands.hx when adding or changing commands */
816f8925 2515static mon_cmd_t info_cmds[] = {
d7f9b689
LC
2516 {
2517 .name = "version",
2518 .args_type = "",
d7f9b689
LC
2519 .params = "",
2520 .help = "show the version of QEMU",
5f11cb00 2521 .mhandler.cmd = hmp_info_version,
d7f9b689
LC
2522 },
2523 {
2524 .name = "network",
2525 .args_type = "",
d7f9b689
LC
2526 .params = "",
2527 .help = "show the network state",
1ce6be24 2528 .mhandler.cmd = hmp_info_network,
d7f9b689
LC
2529 },
2530 {
2531 .name = "chardev",
2532 .args_type = "",
d7f9b689
LC
2533 .params = "",
2534 .help = "show the character devices",
5f11cb00 2535 .mhandler.cmd = hmp_info_chardev,
d7f9b689
LC
2536 },
2537 {
2538 .name = "block",
e6bb31ec
KW
2539 .args_type = "nodes:-n,verbose:-v,device:B?",
2540 .params = "[-n] [-v] [device]",
e73fe2b4 2541 .help = "show info of one block device or all block devices "
e6bb31ec 2542 "(-n: show named nodes; -v: show details)",
5f11cb00 2543 .mhandler.cmd = hmp_info_block,
d7f9b689
LC
2544 },
2545 {
2546 .name = "blockstats",
2547 .args_type = "",
d7f9b689
LC
2548 .params = "",
2549 .help = "show block device statistics",
5f11cb00 2550 .mhandler.cmd = hmp_info_blockstats,
d7f9b689 2551 },
fb5458cd
SH
2552 {
2553 .name = "block-jobs",
2554 .args_type = "",
2555 .params = "",
2556 .help = "show progress of ongoing block device operations",
5f11cb00 2557 .mhandler.cmd = hmp_info_block_jobs,
fb5458cd 2558 },
d7f9b689
LC
2559 {
2560 .name = "registers",
2561 .args_type = "",
d7f9b689
LC
2562 .params = "",
2563 .help = "show the cpu registers",
1ce6be24 2564 .mhandler.cmd = hmp_info_registers,
d7f9b689
LC
2565 },
2566 {
2567 .name = "cpus",
2568 .args_type = "",
d7f9b689
LC
2569 .params = "",
2570 .help = "show infos for each CPU",
5f11cb00 2571 .mhandler.cmd = hmp_info_cpus,
d7f9b689
LC
2572 },
2573 {
2574 .name = "history",
2575 .args_type = "",
d7f9b689
LC
2576 .params = "",
2577 .help = "show the command line history",
1ce6be24 2578 .mhandler.cmd = hmp_info_history,
d7f9b689 2579 },
661f1929
JK
2580#if defined(TARGET_I386) || defined(TARGET_PPC) || defined(TARGET_MIPS) || \
2581 defined(TARGET_LM32) || (defined(TARGET_SPARC) && !defined(TARGET_SPARC64))
d7f9b689
LC
2582 {
2583 .name = "irq",
2584 .args_type = "",
d7f9b689
LC
2585 .params = "",
2586 .help = "show the interrupts statistics (if available)",
661f1929 2587#ifdef TARGET_SPARC
1ce6be24 2588 .mhandler.cmd = sun4m_hmp_info_irq,
661f1929 2589#elif defined(TARGET_LM32)
1ce6be24 2590 .mhandler.cmd = lm32_hmp_info_irq,
661f1929 2591#else
1ce6be24 2592 .mhandler.cmd = hmp_info_irq,
661f1929 2593#endif
d7f9b689
LC
2594 },
2595 {
2596 .name = "pic",
2597 .args_type = "",
d7f9b689
LC
2598 .params = "",
2599 .help = "show i8259 (PIC) state",
661f1929 2600#ifdef TARGET_SPARC
1ce6be24 2601 .mhandler.cmd = sun4m_hmp_info_pic,
661f1929 2602#elif defined(TARGET_LM32)
1ce6be24 2603 .mhandler.cmd = lm32_hmp_info_pic,
661f1929 2604#else
1ce6be24 2605 .mhandler.cmd = hmp_info_pic,
661f1929 2606#endif
d7f9b689 2607 },
661f1929 2608#endif
d7f9b689
LC
2609 {
2610 .name = "pci",
2611 .args_type = "",
d7f9b689
LC
2612 .params = "",
2613 .help = "show PCI info",
5f11cb00 2614 .mhandler.cmd = hmp_info_pci,
d7f9b689 2615 },
bebabbc7 2616#if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \
692f737c 2617 defined(TARGET_PPC) || defined(TARGET_XTENSA)
d7f9b689
LC
2618 {
2619 .name = "tlb",
2620 .args_type = "",
d7f9b689
LC
2621 .params = "",
2622 .help = "show virtual to physical memory mappings",
1ce6be24 2623 .mhandler.cmd = hmp_info_tlb,
d7f9b689 2624 },
7c664e2f
AJ
2625#endif
2626#if defined(TARGET_I386)
d7f9b689
LC
2627 {
2628 .name = "mem",
2629 .args_type = "",
d7f9b689
LC
2630 .params = "",
2631 .help = "show the active virtual memory mappings",
1ce6be24 2632 .mhandler.cmd = hmp_info_mem,
d7f9b689 2633 },
b86bda5b 2634#endif
314e2987
BS
2635 {
2636 .name = "mtree",
2637 .args_type = "",
2638 .params = "",
2639 .help = "show memory tree",
1ce6be24 2640 .mhandler.cmd = hmp_info_mtree,
314e2987 2641 },
d7f9b689
LC
2642 {
2643 .name = "jit",
2644 .args_type = "",
d7f9b689
LC
2645 .params = "",
2646 .help = "show dynamic compiler info",
1ce6be24 2647 .mhandler.cmd = hmp_info_jit,
d7f9b689 2648 },
246ae24d
MF
2649 {
2650 .name = "opcount",
2651 .args_type = "",
2652 .params = "",
2653 .help = "show dynamic compiler opcode counters",
1ce6be24 2654 .mhandler.cmd = hmp_info_opcount,
246ae24d 2655 },
d7f9b689
LC
2656 {
2657 .name = "kvm",
2658 .args_type = "",
d7f9b689
LC
2659 .params = "",
2660 .help = "show KVM information",
5f11cb00 2661 .mhandler.cmd = hmp_info_kvm,
d7f9b689
LC
2662 },
2663 {
2664 .name = "numa",
2665 .args_type = "",
d7f9b689
LC
2666 .params = "",
2667 .help = "show NUMA information",
1ce6be24 2668 .mhandler.cmd = hmp_info_numa,
d7f9b689
LC
2669 },
2670 {
2671 .name = "usb",
2672 .args_type = "",
d7f9b689
LC
2673 .params = "",
2674 .help = "show guest USB devices",
1ce6be24 2675 .mhandler.cmd = hmp_info_usb,
d7f9b689
LC
2676 },
2677 {
2678 .name = "usbhost",
2679 .args_type = "",
d7f9b689
LC
2680 .params = "",
2681 .help = "show host USB devices",
1ce6be24 2682 .mhandler.cmd = hmp_info_usbhost,
d7f9b689
LC
2683 },
2684 {
2685 .name = "profile",
2686 .args_type = "",
d7f9b689
LC
2687 .params = "",
2688 .help = "show profiling information",
1ce6be24 2689 .mhandler.cmd = hmp_info_profile,
d7f9b689
LC
2690 },
2691 {
2692 .name = "capture",
2693 .args_type = "",
d7f9b689
LC
2694 .params = "",
2695 .help = "show capture information",
1ce6be24 2696 .mhandler.cmd = hmp_info_capture,
d7f9b689
LC
2697 },
2698 {
2699 .name = "snapshots",
2700 .args_type = "",
d7f9b689
LC
2701 .params = "",
2702 .help = "show the currently saved VM snapshots",
1ce6be24 2703 .mhandler.cmd = hmp_info_snapshots,
d7f9b689
LC
2704 },
2705 {
2706 .name = "status",
2707 .args_type = "",
d7f9b689
LC
2708 .params = "",
2709 .help = "show the current VM status (running|paused)",
5f11cb00 2710 .mhandler.cmd = hmp_info_status,
d7f9b689 2711 },
d7f9b689
LC
2712 {
2713 .name = "mice",
2714 .args_type = "",
d7f9b689
LC
2715 .params = "",
2716 .help = "show which guest mouse is receiving events",
5f11cb00 2717 .mhandler.cmd = hmp_info_mice,
d7f9b689
LC
2718 },
2719 {
2720 .name = "vnc",
2721 .args_type = "",
d7f9b689
LC
2722 .params = "",
2723 .help = "show the vnc server status",
5f11cb00 2724 .mhandler.cmd = hmp_info_vnc,
d7f9b689 2725 },
cb42a870
GH
2726#if defined(CONFIG_SPICE)
2727 {
2728 .name = "spice",
2729 .args_type = "",
2730 .params = "",
2731 .help = "show the spice server status",
5f11cb00 2732 .mhandler.cmd = hmp_info_spice,
cb42a870
GH
2733 },
2734#endif
d7f9b689
LC
2735 {
2736 .name = "name",
2737 .args_type = "",
d7f9b689
LC
2738 .params = "",
2739 .help = "show the current VM name",
5f11cb00 2740 .mhandler.cmd = hmp_info_name,
d7f9b689
LC
2741 },
2742 {
2743 .name = "uuid",
2744 .args_type = "",
d7f9b689
LC
2745 .params = "",
2746 .help = "show the current VM UUID",
5f11cb00 2747 .mhandler.cmd = hmp_info_uuid,
d7f9b689 2748 },
d7f9b689
LC
2749 {
2750 .name = "cpustats",
2751 .args_type = "",
d7f9b689
LC
2752 .params = "",
2753 .help = "show CPU statistics",
1ce6be24 2754 .mhandler.cmd = hmp_info_cpustats,
d7f9b689 2755 },
31a60e22 2756#if defined(CONFIG_SLIRP)
d7f9b689
LC
2757 {
2758 .name = "usernet",
2759 .args_type = "",
d7f9b689
LC
2760 .params = "",
2761 .help = "show user network stack connection states",
1ce6be24 2762 .mhandler.cmd = hmp_info_usernet,
d7f9b689 2763 },
31a60e22 2764#endif
d7f9b689
LC
2765 {
2766 .name = "migrate",
2767 .args_type = "",
d7f9b689
LC
2768 .params = "",
2769 .help = "show migration status",
5f11cb00 2770 .mhandler.cmd = hmp_info_migrate,
d7f9b689 2771 },
bbf6da32
OW
2772 {
2773 .name = "migrate_capabilities",
2774 .args_type = "",
2775 .params = "",
2776 .help = "show current migration capabilities",
5f11cb00 2777 .mhandler.cmd = hmp_info_migrate_capabilities,
bbf6da32 2778 },
50e9a629
LL
2779 {
2780 .name = "migrate_parameters",
2781 .args_type = "",
2782 .params = "",
2783 .help = "show current migration parameters",
2784 .mhandler.cmd = hmp_info_migrate_parameters,
2785 },
9e1ba4cc
OW
2786 {
2787 .name = "migrate_cache_size",
2788 .args_type = "",
2789 .params = "",
2790 .help = "show current migration xbzrle cache size",
5f11cb00 2791 .mhandler.cmd = hmp_info_migrate_cache_size,
9e1ba4cc 2792 },
d7f9b689
LC
2793 {
2794 .name = "balloon",
2795 .args_type = "",
d7f9b689
LC
2796 .params = "",
2797 .help = "show balloon information",
5f11cb00 2798 .mhandler.cmd = hmp_info_balloon,
d7f9b689
LC
2799 },
2800 {
2801 .name = "qtree",
2802 .args_type = "",
d7f9b689
LC
2803 .params = "",
2804 .help = "show device tree",
1ce6be24 2805 .mhandler.cmd = hmp_info_qtree,
d7f9b689
LC
2806 },
2807 {
2808 .name = "qdm",
2809 .args_type = "",
d7f9b689
LC
2810 .params = "",
2811 .help = "show qdev device model list",
1ce6be24 2812 .mhandler.cmd = hmp_info_qdm,
d7f9b689 2813 },
a01ff75f
AF
2814 {
2815 .name = "qom-tree",
2816 .args_type = "path:s?",
2817 .params = "[path]",
2818 .help = "show QOM composition tree",
2819 .mhandler.cmd = hmp_info_qom_tree,
2820 },
d7f9b689
LC
2821 {
2822 .name = "roms",
2823 .args_type = "",
d7f9b689
LC
2824 .params = "",
2825 .help = "show roms",
1ce6be24 2826 .mhandler.cmd = hmp_info_roms,
d7f9b689 2827 },
22890ab5
PS
2828 {
2829 .name = "trace-events",
2830 .args_type = "",
2831 .params = "",
2832 .help = "show available trace-events & their state",
1ce6be24 2833 .mhandler.cmd = hmp_info_trace_events,
22890ab5 2834 },
d1a0cf73
SB
2835 {
2836 .name = "tpm",
2837 .args_type = "",
2838 .params = "",
2839 .help = "show the TPM device",
2840 .mhandler.cmd = hmp_info_tpm,
2841 },
eb1539b2
HT
2842 {
2843 .name = "memdev",
2844 .args_type = "",
2845 .params = "",
8f4e5ac3 2846 .help = "show memory backends",
eb1539b2
HT
2847 .mhandler.cmd = hmp_info_memdev,
2848 },
a631892f
ZG
2849 {
2850 .name = "memory-devices",
2851 .args_type = "",
2852 .params = "",
2853 .help = "show memory devices",
2854 .mhandler.cmd = hmp_info_memory_devices,
2855 },
62313160
TW
2856 {
2857 .name = "iothreads",
2858 .args_type = "",
2859 .params = "",
2860 .help = "show iothreads",
2861 .mhandler.cmd = hmp_info_iothreads,
2862 },
fafa4d50
SF
2863 {
2864 .name = "rocker",
2865 .args_type = "name:s",
2866 .params = "name",
2867 .help = "Show rocker switch",
2868 .mhandler.cmd = hmp_rocker,
2869 },
2870 {
2871 .name = "rocker-ports",
2872 .args_type = "name:s",
2873 .params = "name",
2874 .help = "Show rocker ports",
2875 .mhandler.cmd = hmp_rocker_ports,
2876 },
2877 {
2878 .name = "rocker-of-dpa-flows",
2879 .args_type = "name:s,tbl_id:i?",
2880 .params = "name [tbl_id]",
2881 .help = "Show rocker OF-DPA flow tables",
2882 .mhandler.cmd = hmp_rocker_of_dpa_flows,
2883 },
2884 {
2885 .name = "rocker-of-dpa-groups",
2886 .args_type = "name:s,type:i?",
2887 .params = "name [type]",
2888 .help = "Show rocker OF-DPA groups",
2889 .mhandler.cmd = hmp_rocker_of_dpa_groups,
2890 },
a08f0081
JH
2891#if defined(TARGET_S390X)
2892 {
2893 .name = "skeys",
2894 .args_type = "addr:l",
2895 .params = "address",
2896 .help = "Display the value of a storage key",
2897 .mhandler.cmd = hmp_info_skeys,
2898 },
2899#endif
d7f9b689
LC
2900 {
2901 .name = NULL,
2902 },
9dc39cba
FB
2903};
2904
a13ced59
WX
2905/* mon_cmds and info_cmds would be sorted at runtime */
2906static mon_cmd_t mon_cmds[] = {
2907#include "hmp-commands.h"
2908 { NULL, NULL, },
2909};
2910
f36b4afb 2911static const mon_cmd_t qmp_cmds[] = {
e3193601 2912#include "qmp-commands-old.h"
f36b4afb
LC
2913 { /* NULL */ },
2914};
2915
9307c4c1
FB
2916/*******************************************************************/
2917
2918static const char *pch;
6ab7e546 2919static sigjmp_buf expr_env;
9307c4c1 2920
92a31b1f
FB
2921#define MD_TLONG 0
2922#define MD_I32 1
2923
9307c4c1
FB
2924typedef struct MonitorDef {
2925 const char *name;
2926 int offset;
8662d656 2927 target_long (*get_value)(const struct MonitorDef *md, int val);
92a31b1f 2928 int type;
9307c4c1
FB
2929} MonitorDef;
2930
57206fd4 2931#if defined(TARGET_I386)
8662d656 2932static target_long monitor_get_pc (const struct MonitorDef *md, int val)
57206fd4 2933{
5bcda5f7 2934 CPUArchState *env = mon_get_cpu_env();
6a00d601 2935 return env->eip + env->segs[R_CS].base;
57206fd4
FB
2936}
2937#endif
2938
a541f297 2939#if defined(TARGET_PPC)
8662d656 2940static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
a541f297 2941{
5bcda5f7 2942 CPUArchState *env = mon_get_cpu_env();
a541f297
FB
2943 unsigned int u;
2944 int i;
2945
2946 u = 0;
2947 for (i = 0; i < 8; i++)
d2981180 2948 u |= env->crf[i] << (32 - (4 * (i + 1)));
a541f297
FB
2949
2950 return u;
2951}
2952
8662d656 2953static target_long monitor_get_msr (const struct MonitorDef *md, int val)
a541f297 2954{
5bcda5f7 2955 CPUArchState *env = mon_get_cpu_env();
0411a972 2956 return env->msr;
a541f297
FB
2957}
2958
8662d656 2959static target_long monitor_get_xer (const struct MonitorDef *md, int val)
a541f297 2960{
5bcda5f7 2961 CPUArchState *env = mon_get_cpu_env();
3d7b417e 2962 return env->xer;
a541f297 2963}
9fddaa0c 2964
8662d656 2965static target_long monitor_get_decr (const struct MonitorDef *md, int val)
9fddaa0c 2966{
5bcda5f7 2967 CPUArchState *env = mon_get_cpu_env();
6a00d601 2968 return cpu_ppc_load_decr(env);
9fddaa0c
FB
2969}
2970
8662d656 2971static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
9fddaa0c 2972{
5bcda5f7 2973 CPUArchState *env = mon_get_cpu_env();
6a00d601 2974 return cpu_ppc_load_tbu(env);
9fddaa0c
FB
2975}
2976
8662d656 2977static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
9fddaa0c 2978{
5bcda5f7 2979 CPUArchState *env = mon_get_cpu_env();
6a00d601 2980 return cpu_ppc_load_tbl(env);
9fddaa0c 2981}
a541f297
FB
2982#endif
2983
e95c8d51 2984#if defined(TARGET_SPARC)
7b936c0c 2985#ifndef TARGET_SPARC64
8662d656 2986static target_long monitor_get_psr (const struct MonitorDef *md, int val)
e95c8d51 2987{
5bcda5f7 2988 CPUArchState *env = mon_get_cpu_env();
5a834bb4
BS
2989
2990 return cpu_get_psr(env);
e95c8d51 2991}
7b936c0c 2992#endif
e95c8d51 2993
8662d656 2994static target_long monitor_get_reg(const struct MonitorDef *md, int val)
e95c8d51 2995{
5bcda5f7 2996 CPUArchState *env = mon_get_cpu_env();
6a00d601 2997 return env->regwptr[val];
e95c8d51
FB
2998}
2999#endif
3000
8662d656 3001static const MonitorDef monitor_defs[] = {
9307c4c1 3002#ifdef TARGET_I386
57206fd4
FB
3003
3004#define SEG(name, seg) \
e59d167f
AF
3005 { name, offsetof(CPUX86State, segs[seg].selector), NULL, MD_I32 },\
3006 { name ".base", offsetof(CPUX86State, segs[seg].base) },\
3007 { name ".limit", offsetof(CPUX86State, segs[seg].limit), NULL, MD_I32 },
3008
3009 { "eax", offsetof(CPUX86State, regs[0]) },
3010 { "ecx", offsetof(CPUX86State, regs[1]) },
3011 { "edx", offsetof(CPUX86State, regs[2]) },
3012 { "ebx", offsetof(CPUX86State, regs[3]) },
3013 { "esp|sp", offsetof(CPUX86State, regs[4]) },
3014 { "ebp|fp", offsetof(CPUX86State, regs[5]) },
3015 { "esi", offsetof(CPUX86State, regs[6]) },
3016 { "edi", offsetof(CPUX86State, regs[7]) },
92a31b1f 3017#ifdef TARGET_X86_64
e59d167f
AF
3018 { "r8", offsetof(CPUX86State, regs[8]) },
3019 { "r9", offsetof(CPUX86State, regs[9]) },
3020 { "r10", offsetof(CPUX86State, regs[10]) },
3021 { "r11", offsetof(CPUX86State, regs[11]) },
3022 { "r12", offsetof(CPUX86State, regs[12]) },
3023 { "r13", offsetof(CPUX86State, regs[13]) },
3024 { "r14", offsetof(CPUX86State, regs[14]) },
3025 { "r15", offsetof(CPUX86State, regs[15]) },
92a31b1f 3026#endif
e59d167f
AF
3027 { "eflags", offsetof(CPUX86State, eflags) },
3028 { "eip", offsetof(CPUX86State, eip) },
57206fd4
FB
3029 SEG("cs", R_CS)
3030 SEG("ds", R_DS)
3031 SEG("es", R_ES)
01038d2a 3032 SEG("ss", R_SS)
57206fd4
FB
3033 SEG("fs", R_FS)
3034 SEG("gs", R_GS)
3035 { "pc", 0, monitor_get_pc, },
a541f297 3036#elif defined(TARGET_PPC)
ff937dba 3037 /* General purpose registers */
e59d167f
AF
3038 { "r0", offsetof(CPUPPCState, gpr[0]) },
3039 { "r1", offsetof(CPUPPCState, gpr[1]) },
3040 { "r2", offsetof(CPUPPCState, gpr[2]) },
3041 { "r3", offsetof(CPUPPCState, gpr[3]) },
3042 { "r4", offsetof(CPUPPCState, gpr[4]) },
3043 { "r5", offsetof(CPUPPCState, gpr[5]) },
3044 { "r6", offsetof(CPUPPCState, gpr[6]) },
3045 { "r7", offsetof(CPUPPCState, gpr[7]) },
3046 { "r8", offsetof(CPUPPCState, gpr[8]) },
3047 { "r9", offsetof(CPUPPCState, gpr[9]) },
3048 { "r10", offsetof(CPUPPCState, gpr[10]) },
3049 { "r11", offsetof(CPUPPCState, gpr[11]) },
3050 { "r12", offsetof(CPUPPCState, gpr[12]) },
3051 { "r13", offsetof(CPUPPCState, gpr[13]) },
3052 { "r14", offsetof(CPUPPCState, gpr[14]) },
3053 { "r15", offsetof(CPUPPCState, gpr[15]) },
3054 { "r16", offsetof(CPUPPCState, gpr[16]) },
3055 { "r17", offsetof(CPUPPCState, gpr[17]) },
3056 { "r18", offsetof(CPUPPCState, gpr[18]) },
3057 { "r19", offsetof(CPUPPCState, gpr[19]) },
3058 { "r20", offsetof(CPUPPCState, gpr[20]) },
3059 { "r21", offsetof(CPUPPCState, gpr[21]) },
3060 { "r22", offsetof(CPUPPCState, gpr[22]) },
3061 { "r23", offsetof(CPUPPCState, gpr[23]) },
3062 { "r24", offsetof(CPUPPCState, gpr[24]) },
3063 { "r25", offsetof(CPUPPCState, gpr[25]) },
3064 { "r26", offsetof(CPUPPCState, gpr[26]) },
3065 { "r27", offsetof(CPUPPCState, gpr[27]) },
3066 { "r28", offsetof(CPUPPCState, gpr[28]) },
3067 { "r29", offsetof(CPUPPCState, gpr[29]) },
3068 { "r30", offsetof(CPUPPCState, gpr[30]) },
3069 { "r31", offsetof(CPUPPCState, gpr[31]) },
ff937dba 3070 /* Floating point registers */
e59d167f
AF
3071 { "f0", offsetof(CPUPPCState, fpr[0]) },
3072 { "f1", offsetof(CPUPPCState, fpr[1]) },
3073 { "f2", offsetof(CPUPPCState, fpr[2]) },
3074 { "f3", offsetof(CPUPPCState, fpr[3]) },
3075 { "f4", offsetof(CPUPPCState, fpr[4]) },
3076 { "f5", offsetof(CPUPPCState, fpr[5]) },
3077 { "f6", offsetof(CPUPPCState, fpr[6]) },
3078 { "f7", offsetof(CPUPPCState, fpr[7]) },
3079 { "f8", offsetof(CPUPPCState, fpr[8]) },
3080 { "f9", offsetof(CPUPPCState, fpr[9]) },
3081 { "f10", offsetof(CPUPPCState, fpr[10]) },
3082 { "f11", offsetof(CPUPPCState, fpr[11]) },
3083 { "f12", offsetof(CPUPPCState, fpr[12]) },
3084 { "f13", offsetof(CPUPPCState, fpr[13]) },
3085 { "f14", offsetof(CPUPPCState, fpr[14]) },
3086 { "f15", offsetof(CPUPPCState, fpr[15]) },
3087 { "f16", offsetof(CPUPPCState, fpr[16]) },
3088 { "f17", offsetof(CPUPPCState, fpr[17]) },
3089 { "f18", offsetof(CPUPPCState, fpr[18]) },
3090 { "f19", offsetof(CPUPPCState, fpr[19]) },
3091 { "f20", offsetof(CPUPPCState, fpr[20]) },
3092 { "f21", offsetof(CPUPPCState, fpr[21]) },
3093 { "f22", offsetof(CPUPPCState, fpr[22]) },
3094 { "f23", offsetof(CPUPPCState, fpr[23]) },
3095 { "f24", offsetof(CPUPPCState, fpr[24]) },
3096 { "f25", offsetof(CPUPPCState, fpr[25]) },
3097 { "f26", offsetof(CPUPPCState, fpr[26]) },
3098 { "f27", offsetof(CPUPPCState, fpr[27]) },
3099 { "f28", offsetof(CPUPPCState, fpr[28]) },
3100 { "f29", offsetof(CPUPPCState, fpr[29]) },
3101 { "f30", offsetof(CPUPPCState, fpr[30]) },
3102 { "f31", offsetof(CPUPPCState, fpr[31]) },
3103 { "fpscr", offsetof(CPUPPCState, fpscr) },
ff937dba 3104 /* Next instruction pointer */
e59d167f
AF
3105 { "nip|pc", offsetof(CPUPPCState, nip) },
3106 { "lr", offsetof(CPUPPCState, lr) },
3107 { "ctr", offsetof(CPUPPCState, ctr) },
9fddaa0c 3108 { "decr", 0, &monitor_get_decr, },
a541f297 3109 { "ccr", 0, &monitor_get_ccr, },
ff937dba 3110 /* Machine state register */
a541f297
FB
3111 { "msr", 0, &monitor_get_msr, },
3112 { "xer", 0, &monitor_get_xer, },
9fddaa0c
FB
3113 { "tbu", 0, &monitor_get_tbu, },
3114 { "tbl", 0, &monitor_get_tbl, },
ff937dba 3115 /* Segment registers */
e59d167f
AF
3116 { "sdr1", offsetof(CPUPPCState, spr[SPR_SDR1]) },
3117 { "sr0", offsetof(CPUPPCState, sr[0]) },
3118 { "sr1", offsetof(CPUPPCState, sr[1]) },
3119 { "sr2", offsetof(CPUPPCState, sr[2]) },
3120 { "sr3", offsetof(CPUPPCState, sr[3]) },
3121 { "sr4", offsetof(CPUPPCState, sr[4]) },
3122 { "sr5", offsetof(CPUPPCState, sr[5]) },
3123 { "sr6", offsetof(CPUPPCState, sr[6]) },
3124 { "sr7", offsetof(CPUPPCState, sr[7]) },
3125 { "sr8", offsetof(CPUPPCState, sr[8]) },
3126 { "sr9", offsetof(CPUPPCState, sr[9]) },
3127 { "sr10", offsetof(CPUPPCState, sr[10]) },
3128 { "sr11", offsetof(CPUPPCState, sr[11]) },
3129 { "sr12", offsetof(CPUPPCState, sr[12]) },
3130 { "sr13", offsetof(CPUPPCState, sr[13]) },
3131 { "sr14", offsetof(CPUPPCState, sr[14]) },
3132 { "sr15", offsetof(CPUPPCState, sr[15]) },
90dc8812 3133 /* Too lazy to put BATs... */
e59d167f
AF
3134 { "pvr", offsetof(CPUPPCState, spr[SPR_PVR]) },
3135
3136 { "srr0", offsetof(CPUPPCState, spr[SPR_SRR0]) },
3137 { "srr1", offsetof(CPUPPCState, spr[SPR_SRR1]) },
04f1f784
TM
3138 { "dar", offsetof(CPUPPCState, spr[SPR_DAR]) },
3139 { "dsisr", offsetof(CPUPPCState, spr[SPR_DSISR]) },
3140 { "cfar", offsetof(CPUPPCState, spr[SPR_CFAR]) },
e59d167f
AF
3141 { "sprg0", offsetof(CPUPPCState, spr[SPR_SPRG0]) },
3142 { "sprg1", offsetof(CPUPPCState, spr[SPR_SPRG1]) },
3143 { "sprg2", offsetof(CPUPPCState, spr[SPR_SPRG2]) },
3144 { "sprg3", offsetof(CPUPPCState, spr[SPR_SPRG3]) },
3145 { "sprg4", offsetof(CPUPPCState, spr[SPR_SPRG4]) },
3146 { "sprg5", offsetof(CPUPPCState, spr[SPR_SPRG5]) },
3147 { "sprg6", offsetof(CPUPPCState, spr[SPR_SPRG6]) },
3148 { "sprg7", offsetof(CPUPPCState, spr[SPR_SPRG7]) },
3149 { "pid", offsetof(CPUPPCState, spr[SPR_BOOKE_PID]) },
3150 { "csrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR0]) },
3151 { "csrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR1]) },
3152 { "esr", offsetof(CPUPPCState, spr[SPR_BOOKE_ESR]) },
3153 { "dear", offsetof(CPUPPCState, spr[SPR_BOOKE_DEAR]) },
3154 { "mcsr", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSR]) },
3155 { "tsr", offsetof(CPUPPCState, spr[SPR_BOOKE_TSR]) },
3156 { "tcr", offsetof(CPUPPCState, spr[SPR_BOOKE_TCR]) },
3157 { "vrsave", offsetof(CPUPPCState, spr[SPR_VRSAVE]) },
3158 { "pir", offsetof(CPUPPCState, spr[SPR_BOOKE_PIR]) },
3159 { "mcsrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR0]) },
3160 { "mcsrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR1]) },
3161 { "decar", offsetof(CPUPPCState, spr[SPR_BOOKE_DECAR]) },
3162 { "ivpr", offsetof(CPUPPCState, spr[SPR_BOOKE_IVPR]) },
3163 { "epcr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPCR]) },
3164 { "sprg8", offsetof(CPUPPCState, spr[SPR_BOOKE_SPRG8]) },
3165 { "ivor0", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR0]) },
3166 { "ivor1", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR1]) },
3167 { "ivor2", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR2]) },
3168 { "ivor3", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR3]) },
3169 { "ivor4", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR4]) },
3170 { "ivor5", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR5]) },
3171 { "ivor6", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR6]) },
3172 { "ivor7", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR7]) },
3173 { "ivor8", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR8]) },
3174 { "ivor9", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR9]) },
3175 { "ivor10", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR10]) },
3176 { "ivor11", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR11]) },
3177 { "ivor12", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR12]) },
3178 { "ivor13", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR13]) },
3179 { "ivor14", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR14]) },
3180 { "ivor15", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR15]) },
3181 { "ivor32", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR32]) },
3182 { "ivor33", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR33]) },
3183 { "ivor34", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR34]) },
3184 { "ivor35", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR35]) },
3185 { "ivor36", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR36]) },
3186 { "ivor37", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR37]) },
3187 { "mas0", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS0]) },
3188 { "mas1", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS1]) },
3189 { "mas2", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS2]) },
3190 { "mas3", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS3]) },
3191 { "mas4", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS4]) },
3192 { "mas6", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS6]) },
3193 { "mas7", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS7]) },
3194 { "mmucfg", offsetof(CPUPPCState, spr[SPR_MMUCFG]) },
3195 { "tlb0cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB0CFG]) },
3196 { "tlb1cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB1CFG]) },
3197 { "epr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPR]) },
3198 { "eplc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPLC]) },
3199 { "epsc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPSC]) },
3200 { "svr", offsetof(CPUPPCState, spr[SPR_E500_SVR]) },
3201 { "mcar", offsetof(CPUPPCState, spr[SPR_Exxx_MCAR]) },
3202 { "pid1", offsetof(CPUPPCState, spr[SPR_BOOKE_PID1]) },
3203 { "pid2", offsetof(CPUPPCState, spr[SPR_BOOKE_PID2]) },
3204 { "hid0", offsetof(CPUPPCState, spr[SPR_HID0]) },
90dc8812 3205
e95c8d51 3206#elif defined(TARGET_SPARC)
e59d167f
AF
3207 { "g0", offsetof(CPUSPARCState, gregs[0]) },
3208 { "g1", offsetof(CPUSPARCState, gregs[1]) },
3209 { "g2", offsetof(CPUSPARCState, gregs[2]) },
3210 { "g3", offsetof(CPUSPARCState, gregs[3]) },
3211 { "g4", offsetof(CPUSPARCState, gregs[4]) },
3212 { "g5", offsetof(CPUSPARCState, gregs[5]) },
3213 { "g6", offsetof(CPUSPARCState, gregs[6]) },
3214 { "g7", offsetof(CPUSPARCState, gregs[7]) },
e95c8d51
FB
3215 { "o0", 0, monitor_get_reg },
3216 { "o1", 1, monitor_get_reg },
3217 { "o2", 2, monitor_get_reg },
3218 { "o3", 3, monitor_get_reg },
3219 { "o4", 4, monitor_get_reg },
3220 { "o5", 5, monitor_get_reg },
3221 { "o6", 6, monitor_get_reg },
3222 { "o7", 7, monitor_get_reg },
3223 { "l0", 8, monitor_get_reg },
3224 { "l1", 9, monitor_get_reg },
3225 { "l2", 10, monitor_get_reg },
3226 { "l3", 11, monitor_get_reg },
3227 { "l4", 12, monitor_get_reg },
3228 { "l5", 13, monitor_get_reg },
3229 { "l6", 14, monitor_get_reg },
3230 { "l7", 15, monitor_get_reg },
3231 { "i0", 16, monitor_get_reg },
3232 { "i1", 17, monitor_get_reg },
3233 { "i2", 18, monitor_get_reg },
3234 { "i3", 19, monitor_get_reg },
3235 { "i4", 20, monitor_get_reg },
3236 { "i5", 21, monitor_get_reg },
3237 { "i6", 22, monitor_get_reg },
3238 { "i7", 23, monitor_get_reg },
e59d167f
AF
3239 { "pc", offsetof(CPUSPARCState, pc) },
3240 { "npc", offsetof(CPUSPARCState, npc) },
3241 { "y", offsetof(CPUSPARCState, y) },
7b936c0c 3242#ifndef TARGET_SPARC64
e95c8d51 3243 { "psr", 0, &monitor_get_psr, },
e59d167f 3244 { "wim", offsetof(CPUSPARCState, wim) },
7b936c0c 3245#endif
e59d167f
AF
3246 { "tbr", offsetof(CPUSPARCState, tbr) },
3247 { "fsr", offsetof(CPUSPARCState, fsr) },
3248 { "f0", offsetof(CPUSPARCState, fpr[0].l.upper) },
3249 { "f1", offsetof(CPUSPARCState, fpr[0].l.lower) },
3250 { "f2", offsetof(CPUSPARCState, fpr[1].l.upper) },
3251 { "f3", offsetof(CPUSPARCState, fpr[1].l.lower) },
3252 { "f4", offsetof(CPUSPARCState, fpr[2].l.upper) },
3253 { "f5", offsetof(CPUSPARCState, fpr[2].l.lower) },
3254 { "f6", offsetof(CPUSPARCState, fpr[3].l.upper) },
3255 { "f7", offsetof(CPUSPARCState, fpr[3].l.lower) },
3256 { "f8", offsetof(CPUSPARCState, fpr[4].l.upper) },
3257 { "f9", offsetof(CPUSPARCState, fpr[4].l.lower) },
3258 { "f10", offsetof(CPUSPARCState, fpr[5].l.upper) },
3259 { "f11", offsetof(CPUSPARCState, fpr[5].l.lower) },
3260 { "f12", offsetof(CPUSPARCState, fpr[6].l.upper) },
3261 { "f13", offsetof(CPUSPARCState, fpr[6].l.lower) },
3262 { "f14", offsetof(CPUSPARCState, fpr[7].l.upper) },
3263 { "f15", offsetof(CPUSPARCState, fpr[7].l.lower) },
3264 { "f16", offsetof(CPUSPARCState, fpr[8].l.upper) },
3265 { "f17", offsetof(CPUSPARCState, fpr[8].l.lower) },
3266 { "f18", offsetof(CPUSPARCState, fpr[9].l.upper) },
3267 { "f19", offsetof(CPUSPARCState, fpr[9].l.lower) },
3268 { "f20", offsetof(CPUSPARCState, fpr[10].l.upper) },
3269 { "f21", offsetof(CPUSPARCState, fpr[10].l.lower) },
3270 { "f22", offsetof(CPUSPARCState, fpr[11].l.upper) },
3271 { "f23", offsetof(CPUSPARCState, fpr[11].l.lower) },
3272 { "f24", offsetof(CPUSPARCState, fpr[12].l.upper) },
3273 { "f25", offsetof(CPUSPARCState, fpr[12].l.lower) },
3274 { "f26", offsetof(CPUSPARCState, fpr[13].l.upper) },
3275 { "f27", offsetof(CPUSPARCState, fpr[13].l.lower) },
3276 { "f28", offsetof(CPUSPARCState, fpr[14].l.upper) },
3277 { "f29", offsetof(CPUSPARCState, fpr[14].l.lower) },
3278 { "f30", offsetof(CPUSPARCState, fpr[15].l.upper) },
3279 { "f31", offsetof(CPUSPARCState, fpr[15].l.lower) },
7b936c0c 3280#ifdef TARGET_SPARC64
e59d167f
AF
3281 { "f32", offsetof(CPUSPARCState, fpr[16]) },
3282 { "f34", offsetof(CPUSPARCState, fpr[17]) },
3283 { "f36", offsetof(CPUSPARCState, fpr[18]) },
3284 { "f38", offsetof(CPUSPARCState, fpr[19]) },
3285 { "f40", offsetof(CPUSPARCState, fpr[20]) },
3286 { "f42", offsetof(CPUSPARCState, fpr[21]) },
3287 { "f44", offsetof(CPUSPARCState, fpr[22]) },
3288 { "f46", offsetof(CPUSPARCState, fpr[23]) },
3289 { "f48", offsetof(CPUSPARCState, fpr[24]) },
3290 { "f50", offsetof(CPUSPARCState, fpr[25]) },
3291 { "f52", offsetof(CPUSPARCState, fpr[26]) },
3292 { "f54", offsetof(CPUSPARCState, fpr[27]) },
3293 { "f56", offsetof(CPUSPARCState, fpr[28]) },
3294 { "f58", offsetof(CPUSPARCState, fpr[29]) },
3295 { "f60", offsetof(CPUSPARCState, fpr[30]) },
3296 { "f62", offsetof(CPUSPARCState, fpr[31]) },
3297 { "asi", offsetof(CPUSPARCState, asi) },
3298 { "pstate", offsetof(CPUSPARCState, pstate) },
3299 { "cansave", offsetof(CPUSPARCState, cansave) },
3300 { "canrestore", offsetof(CPUSPARCState, canrestore) },
3301 { "otherwin", offsetof(CPUSPARCState, otherwin) },
3302 { "wstate", offsetof(CPUSPARCState, wstate) },
3303 { "cleanwin", offsetof(CPUSPARCState, cleanwin) },
3304 { "fprs", offsetof(CPUSPARCState, fprs) },
7b936c0c 3305#endif
9307c4c1
FB
3306#endif
3307 { NULL },
3308};
3309
9c3175cc
SW
3310static void GCC_FMT_ATTR(2, 3) QEMU_NORETURN
3311expr_error(Monitor *mon, const char *fmt, ...)
9dc39cba 3312{
277acfe8
FZ
3313 va_list ap;
3314 va_start(ap, fmt);
3315 monitor_vprintf(mon, fmt, ap);
3316 monitor_printf(mon, "\n");
3317 va_end(ap);
6ab7e546 3318 siglongjmp(expr_env, 1);
9307c4c1
FB
3319}
3320
09b9418c 3321/* return 0 if OK, -1 if not found */
92a31b1f 3322static int get_monitor_def(target_long *pval, const char *name)
9307c4c1 3323{
8662d656 3324 const MonitorDef *md;
92a31b1f
FB
3325 void *ptr;
3326
9307c4c1
FB
3327 for(md = monitor_defs; md->name != NULL; md++) {
3328 if (compare_cmd(name, md->name)) {
3329 if (md->get_value) {
e95c8d51 3330 *pval = md->get_value(md, md->offset);
9307c4c1 3331 } else {
5bcda5f7 3332 CPUArchState *env = mon_get_cpu_env();
6a00d601 3333 ptr = (uint8_t *)env + md->offset;
92a31b1f
FB
3334 switch(md->type) {
3335 case MD_I32:
3336 *pval = *(int32_t *)ptr;
3337 break;
3338 case MD_TLONG:
3339 *pval = *(target_long *)ptr;
3340 break;
3341 default:
3342 *pval = 0;
3343 break;
3344 }
9307c4c1
FB
3345 }
3346 return 0;
3347 }
3348 }
3349 return -1;
3350}
3351
3352static void next(void)
3353{
660f11be 3354 if (*pch != '\0') {
9307c4c1 3355 pch++;
cd390083 3356 while (qemu_isspace(*pch))
9307c4c1
FB
3357 pch++;
3358 }
3359}
3360
376253ec 3361static int64_t expr_sum(Monitor *mon);
9307c4c1 3362
376253ec 3363static int64_t expr_unary(Monitor *mon)
9307c4c1 3364{
c2efc95d 3365 int64_t n;
9307c4c1 3366 char *p;
6a00d601 3367 int ret;
9307c4c1
FB
3368
3369 switch(*pch) {
3370 case '+':
3371 next();
376253ec 3372 n = expr_unary(mon);
9307c4c1
FB
3373 break;
3374 case '-':
3375 next();
376253ec 3376 n = -expr_unary(mon);
9307c4c1
FB
3377 break;
3378 case '~':
3379 next();
376253ec 3380 n = ~expr_unary(mon);
9307c4c1
FB
3381 break;
3382 case '(':
3383 next();
376253ec 3384 n = expr_sum(mon);
9307c4c1 3385 if (*pch != ')') {
376253ec 3386 expr_error(mon, "')' expected");
9307c4c1
FB
3387 }
3388 next();
3389 break;
81d0912d
FB
3390 case '\'':
3391 pch++;
3392 if (*pch == '\0')
376253ec 3393 expr_error(mon, "character constant expected");
81d0912d
FB
3394 n = *pch;
3395 pch++;
3396 if (*pch != '\'')
376253ec 3397 expr_error(mon, "missing terminating \' character");
81d0912d
FB
3398 next();
3399 break;
9307c4c1
FB
3400 case '$':
3401 {
3402 char buf[128], *q;
69b34976 3403 target_long reg=0;
3b46e624 3404
9307c4c1
FB
3405 pch++;
3406 q = buf;
3407 while ((*pch >= 'a' && *pch <= 'z') ||
3408 (*pch >= 'A' && *pch <= 'Z') ||
3409 (*pch >= '0' && *pch <= '9') ||
57206fd4 3410 *pch == '_' || *pch == '.') {
9307c4c1
FB
3411 if ((q - buf) < sizeof(buf) - 1)
3412 *q++ = *pch;
3413 pch++;
3414 }
cd390083 3415 while (qemu_isspace(*pch))
9307c4c1
FB
3416 pch++;
3417 *q = 0;
7743e588 3418 ret = get_monitor_def(&reg, buf);
09b9418c 3419 if (ret < 0)
376253ec 3420 expr_error(mon, "unknown register");
7743e588 3421 n = reg;
9307c4c1
FB
3422 }
3423 break;
3424 case '\0':
376253ec 3425 expr_error(mon, "unexpected end of expression");
9307c4c1
FB
3426 n = 0;
3427 break;
3428 default:
6b0e33be 3429 errno = 0;
4f4fbf77 3430 n = strtoull(pch, &p, 0);
6b0e33be
LC
3431 if (errno == ERANGE) {
3432 expr_error(mon, "number too large");
3433 }
9307c4c1 3434 if (pch == p) {
277acfe8 3435 expr_error(mon, "invalid char '%c' in expression", *p);
9307c4c1
FB
3436 }
3437 pch = p;
cd390083 3438 while (qemu_isspace(*pch))
9307c4c1
FB
3439 pch++;
3440 break;
3441 }
3442 return n;
3443}
3444
3445
376253ec 3446static int64_t expr_prod(Monitor *mon)
9307c4c1 3447{
c2efc95d 3448 int64_t val, val2;
92a31b1f 3449 int op;
3b46e624 3450
376253ec 3451 val = expr_unary(mon);
9307c4c1
FB
3452 for(;;) {
3453 op = *pch;
3454 if (op != '*' && op != '/' && op != '%')
3455 break;
3456 next();
376253ec 3457 val2 = expr_unary(mon);
9307c4c1
FB
3458 switch(op) {
3459 default:
3460 case '*':
3461 val *= val2;
3462 break;
3463 case '/':
3464 case '%':
5fafdf24 3465 if (val2 == 0)
376253ec 3466 expr_error(mon, "division by zero");
9307c4c1
FB
3467 if (op == '/')
3468 val /= val2;
3469 else
3470 val %= val2;
3471 break;
3472 }
3473 }
3474 return val;
3475}
3476
376253ec 3477static int64_t expr_logic(Monitor *mon)
9307c4c1 3478{
c2efc95d 3479 int64_t val, val2;
92a31b1f 3480 int op;
9307c4c1 3481
376253ec 3482 val = expr_prod(mon);
9307c4c1
FB
3483 for(;;) {
3484 op = *pch;
3485 if (op != '&' && op != '|' && op != '^')
3486 break;
3487 next();
376253ec 3488 val2 = expr_prod(mon);
9307c4c1
FB
3489 switch(op) {
3490 default:
3491 case '&':
3492 val &= val2;
3493 break;
3494 case '|':
3495 val |= val2;
3496 break;
3497 case '^':
3498 val ^= val2;
3499 break;
3500 }
3501 }
3502 return val;
3503}
3504
376253ec 3505static int64_t expr_sum(Monitor *mon)
9307c4c1 3506{
c2efc95d 3507 int64_t val, val2;
92a31b1f 3508 int op;
9307c4c1 3509
376253ec 3510 val = expr_logic(mon);
9307c4c1
FB
3511 for(;;) {
3512 op = *pch;
3513 if (op != '+' && op != '-')
3514 break;
3515 next();
376253ec 3516 val2 = expr_logic(mon);
9307c4c1
FB
3517 if (op == '+')
3518 val += val2;
3519 else
3520 val -= val2;
3521 }
3522 return val;
3523}
3524
376253ec 3525static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
9307c4c1
FB
3526{
3527 pch = *pp;
6ab7e546 3528 if (sigsetjmp(expr_env, 0)) {
9307c4c1
FB
3529 *pp = pch;
3530 return -1;
3531 }
cd390083 3532 while (qemu_isspace(*pch))
9307c4c1 3533 pch++;
376253ec 3534 *pval = expr_sum(mon);
9307c4c1
FB
3535 *pp = pch;
3536 return 0;
3537}
3538
3350a4dd
MA
3539static int get_double(Monitor *mon, double *pval, const char **pp)
3540{
3541 const char *p = *pp;
3542 char *tailp;
3543 double d;
3544
3545 d = strtod(p, &tailp);
3546 if (tailp == p) {
3547 monitor_printf(mon, "Number expected\n");
3548 return -1;
3549 }
3550 if (d != d || d - d != 0) {
3551 /* NaN or infinity */
3552 monitor_printf(mon, "Bad number\n");
3553 return -1;
3554 }
3555 *pval = d;
3556 *pp = tailp;
3557 return 0;
3558}
3559
4590fd80
LC
3560/*
3561 * Store the command-name in cmdname, and return a pointer to
3562 * the remaining of the command string.
3563 */
3564static const char *get_command_name(const char *cmdline,
3565 char *cmdname, size_t nlen)
3566{
3567 size_t len;
3568 const char *p, *pstart;
3569
3570 p = cmdline;
3571 while (qemu_isspace(*p))
3572 p++;
3573 if (*p == '\0')
3574 return NULL;
3575 pstart = p;
3576 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3577 p++;
3578 len = p - pstart;
3579 if (len > nlen - 1)
3580 len = nlen - 1;
3581 memcpy(cmdname, pstart, len);
3582 cmdname[len] = '\0';
3583 return p;
3584}
3585
4d76d2ba
LC
3586/**
3587 * Read key of 'type' into 'key' and return the current
3588 * 'type' pointer.
3589 */
3590static char *key_get_info(const char *type, char **key)
3591{
3592 size_t len;
3593 char *p, *str;
3594
3595 if (*type == ',')
3596 type++;
3597
3598 p = strchr(type, ':');
3599 if (!p) {
3600 *key = NULL;
3601 return NULL;
3602 }
3603 len = p - type;
3604
7267c094 3605 str = g_malloc(len + 1);
4d76d2ba
LC
3606 memcpy(str, type, len);
3607 str[len] = '\0';
3608
3609 *key = str;
3610 return ++p;
3611}
3612
9307c4c1
FB
3613static int default_fmt_format = 'x';
3614static int default_fmt_size = 4;
3615
fbc3d96c
LS
3616static int is_valid_option(const char *c, const char *typestr)
3617{
3618 char option[3];
3619
3620 option[0] = '-';
3621 option[1] = *c;
3622 option[2] = '\0';
3623
3624 typestr = strstr(typestr, option);
3625 return (typestr != NULL);
3626}
3627
945c5ac8
LC
3628static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3629 const char *cmdname)
7fd669a1
LC
3630{
3631 const mon_cmd_t *cmd;
3632
945c5ac8 3633 for (cmd = disp_table; cmd->name != NULL; cmd++) {
7fd669a1
LC
3634 if (compare_cmd(cmdname, cmd->name)) {
3635 return cmd;
3636 }
3637 }
3638
3639 return NULL;
3640}
3641
bead3ce1
LC
3642static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3643{
f36b4afb 3644 return search_dispatch_table(qmp_cmds, cmdname);
bead3ce1
LC
3645}
3646
5f3d335f 3647/*
ae50212f
BD
3648 * Parse command name from @cmdp according to command table @table.
3649 * If blank, return NULL.
3650 * Else, if no valid command can be found, report to @mon, and return
3651 * NULL.
3652 * Else, change @cmdp to point right behind the name, and return its
3653 * command table entry.
3654 * Do not assume the return value points into @table! It doesn't when
3655 * the command is found in a sub-command table.
5f3d335f 3656 */
c227f099 3657static const mon_cmd_t *monitor_parse_command(Monitor *mon,
ae50212f
BD
3658 const char **cmdp,
3659 mon_cmd_t *table)
9307c4c1 3660{
ae50212f 3661 const char *p;
c227f099 3662 const mon_cmd_t *cmd;
9307c4c1 3663 char cmdname[256];
9dc39cba 3664
9307c4c1 3665 /* extract the command name */
ae50212f 3666 p = get_command_name(*cmdp, cmdname, sizeof(cmdname));
4590fd80 3667 if (!p)
55f81d96 3668 return NULL;
3b46e624 3669
5f3d335f 3670 cmd = search_dispatch_table(table, cmdname);
7fd669a1 3671 if (!cmd) {
5f3d335f 3672 monitor_printf(mon, "unknown command: '%.*s'\n",
ae50212f 3673 (int)(p - *cmdp), *cmdp);
55f81d96 3674 return NULL;
9307c4c1 3675 }
9307c4c1 3676
5f3d335f
WX
3677 /* filter out following useless space */
3678 while (qemu_isspace(*p)) {
3679 p++;
3680 }
ae50212f
BD
3681
3682 *cmdp = p;
5f3d335f 3683 /* search sub command */
ae50212f
BD
3684 if (cmd->sub_table != NULL && *p != '\0') {
3685 return monitor_parse_command(mon, cmdp, cmd->sub_table);
5f3d335f
WX
3686 }
3687
ae50212f
BD
3688 return cmd;
3689}
3690
3691/*
3692 * Parse arguments for @cmd.
3693 * If it can't be parsed, report to @mon, and return NULL.
3694 * Else, insert command arguments into a QDict, and return it.
3695 * Note: On success, caller has to free the QDict structure.
3696 */
3697
3698static QDict *monitor_parse_arguments(Monitor *mon,
3699 const char **endp,
3700 const mon_cmd_t *cmd)
3701{
3702 const char *typestr;
3703 char *key;
3704 int c;
3705 const char *p = *endp;
3706 char buf[1024];
3707 QDict *qdict = qdict_new();
3708
9307c4c1
FB
3709 /* parse the parameters */
3710 typestr = cmd->args_type;
9dc39cba 3711 for(;;) {
4d76d2ba
LC
3712 typestr = key_get_info(typestr, &key);
3713 if (!typestr)
9dc39cba 3714 break;
4d76d2ba 3715 c = *typestr;
9307c4c1
FB
3716 typestr++;
3717 switch(c) {
3718 case 'F':
81d0912d 3719 case 'B':
9307c4c1
FB
3720 case 's':
3721 {
3722 int ret;
3b46e624 3723
cd390083 3724 while (qemu_isspace(*p))
9307c4c1
FB
3725 p++;
3726 if (*typestr == '?') {
3727 typestr++;
3728 if (*p == '\0') {
3729 /* no optional string: NULL argument */
53773581 3730 break;
9307c4c1
FB
3731 }
3732 }
3733 ret = get_str(buf, sizeof(buf), &p);
3734 if (ret < 0) {
81d0912d
FB
3735 switch(c) {
3736 case 'F':
376253ec 3737 monitor_printf(mon, "%s: filename expected\n",
ae50212f 3738 cmd->name);
81d0912d
FB
3739 break;
3740 case 'B':
376253ec 3741 monitor_printf(mon, "%s: block device name expected\n",
ae50212f 3742 cmd->name);
81d0912d
FB
3743 break;
3744 default:
ae50212f 3745 monitor_printf(mon, "%s: string expected\n", cmd->name);
81d0912d
FB
3746 break;
3747 }
9307c4c1
FB
3748 goto fail;
3749 }
53773581 3750 qdict_put(qdict, key, qstring_from_str(buf));
9307c4c1 3751 }
9dc39cba 3752 break;
361127df
MA
3753 case 'O':
3754 {
3755 QemuOptsList *opts_list;
3756 QemuOpts *opts;
3757
3758 opts_list = qemu_find_opts(key);
3759 if (!opts_list || opts_list->desc->name) {
3760 goto bad_type;
3761 }
3762 while (qemu_isspace(*p)) {
3763 p++;
3764 }
3765 if (!*p)
3766 break;
3767 if (get_str(buf, sizeof(buf), &p) < 0) {
3768 goto fail;
3769 }
70b94331 3770 opts = qemu_opts_parse_noisily(opts_list, buf, true);
361127df
MA
3771 if (!opts) {
3772 goto fail;
3773 }
3774 qemu_opts_to_qdict(opts, qdict);
3775 qemu_opts_del(opts);
3776 }
3777 break;
9307c4c1
FB
3778 case '/':
3779 {
3780 int count, format, size;
3b46e624 3781
cd390083 3782 while (qemu_isspace(*p))
9307c4c1
FB
3783 p++;
3784 if (*p == '/') {
3785 /* format found */
3786 p++;
3787 count = 1;
cd390083 3788 if (qemu_isdigit(*p)) {
9307c4c1 3789 count = 0;
cd390083 3790 while (qemu_isdigit(*p)) {
9307c4c1
FB
3791 count = count * 10 + (*p - '0');
3792 p++;
3793 }
3794 }
3795 size = -1;
3796 format = -1;
3797 for(;;) {
3798 switch(*p) {
3799 case 'o':
3800 case 'd':
3801 case 'u':
3802 case 'x':
3803 case 'i':
3804 case 'c':
3805 format = *p++;
3806 break;
3807 case 'b':
3808 size = 1;
3809 p++;
3810 break;
3811 case 'h':
3812 size = 2;
3813 p++;
3814 break;
3815 case 'w':
3816 size = 4;
3817 p++;
3818 break;
3819 case 'g':
3820 case 'L':
3821 size = 8;
3822 p++;
3823 break;
3824 default:
3825 goto next;
3826 }
3827 }
3828 next:
cd390083 3829 if (*p != '\0' && !qemu_isspace(*p)) {
376253ec
AL
3830 monitor_printf(mon, "invalid char in format: '%c'\n",
3831 *p);
9307c4c1
FB
3832 goto fail;
3833 }
9307c4c1
FB
3834 if (format < 0)
3835 format = default_fmt_format;
4c27ba27
FB
3836 if (format != 'i') {
3837 /* for 'i', not specifying a size gives -1 as size */
3838 if (size < 0)
3839 size = default_fmt_size;
e90f009b 3840 default_fmt_size = size;
4c27ba27 3841 }
9307c4c1
FB
3842 default_fmt_format = format;
3843 } else {
3844 count = 1;
3845 format = default_fmt_format;
4c27ba27
FB
3846 if (format != 'i') {
3847 size = default_fmt_size;
3848 } else {
3849 size = -1;
3850 }
9307c4c1 3851 }
f7188bbe
LC
3852 qdict_put(qdict, "count", qint_from_int(count));
3853 qdict_put(qdict, "format", qint_from_int(format));
3854 qdict_put(qdict, "size", qint_from_int(size));
9307c4c1 3855 }
9dc39cba 3856 break;
9307c4c1 3857 case 'i':
92a31b1f 3858 case 'l':
b6e098d7 3859 case 'M':
9307c4c1 3860 {
c2efc95d 3861 int64_t val;
7743e588 3862
cd390083 3863 while (qemu_isspace(*p))
9307c4c1 3864 p++;
3440557b 3865 if (*typestr == '?' || *typestr == '.') {
3440557b 3866 if (*typestr == '?') {
53773581
LC
3867 if (*p == '\0') {
3868 typestr++;
3869 break;
3870 }
3440557b
FB
3871 } else {
3872 if (*p == '.') {
3873 p++;
cd390083 3874 while (qemu_isspace(*p))
3440557b 3875 p++;
3440557b 3876 } else {
53773581
LC
3877 typestr++;
3878 break;
3440557b
FB
3879 }
3880 }
13224a87 3881 typestr++;
9307c4c1 3882 }
376253ec 3883 if (get_expr(mon, &val, &p))
9307c4c1 3884 goto fail;
675ebef9
LC
3885 /* Check if 'i' is greater than 32-bit */
3886 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
ae50212f 3887 monitor_printf(mon, "\'%s\' has failed: ", cmd->name);
675ebef9
LC
3888 monitor_printf(mon, "integer is for 32-bit values\n");
3889 goto fail;
b6e098d7 3890 } else if (c == 'M') {
91162849
LC
3891 if (val < 0) {
3892 monitor_printf(mon, "enter a positive value\n");
3893 goto fail;
3894 }
b6e098d7 3895 val <<= 20;
675ebef9 3896 }
53773581 3897 qdict_put(qdict, key, qint_from_int(val));
9307c4c1
FB
3898 }
3899 break;
dbc0c67f
JS
3900 case 'o':
3901 {
70b4f4bb 3902 int64_t val;
dbc0c67f
JS
3903 char *end;
3904
3905 while (qemu_isspace(*p)) {
3906 p++;
3907 }
3908 if (*typestr == '?') {
3909 typestr++;
3910 if (*p == '\0') {
3911 break;
3912 }
3913 }
3914 val = strtosz(p, &end);
3915 if (val < 0) {
3916 monitor_printf(mon, "invalid size\n");
3917 goto fail;
3918 }
3919 qdict_put(qdict, key, qint_from_int(val));
3920 p = end;
3921 }
3922 break;
fccfb11e 3923 case 'T':
3350a4dd
MA
3924 {
3925 double val;
3926
3927 while (qemu_isspace(*p))
3928 p++;
3929 if (*typestr == '?') {
3930 typestr++;
3931 if (*p == '\0') {
3932 break;
3933 }
3934 }
3935 if (get_double(mon, &val, &p) < 0) {
3936 goto fail;
3937 }
07de3e60 3938 if (p[0] && p[1] == 's') {
fccfb11e
MA
3939 switch (*p) {
3940 case 'm':
3941 val /= 1e3; p += 2; break;
3942 case 'u':
3943 val /= 1e6; p += 2; break;
3944 case 'n':
3945 val /= 1e9; p += 2; break;
3946 }
3947 }
3350a4dd
MA
3948 if (*p && !qemu_isspace(*p)) {
3949 monitor_printf(mon, "Unknown unit suffix\n");
3950 goto fail;
3951 }
3952 qdict_put(qdict, key, qfloat_from_double(val));
3953 }
3954 break;
942cd1f2
MA
3955 case 'b':
3956 {
3957 const char *beg;
fc48ffc3 3958 bool val;
942cd1f2
MA
3959
3960 while (qemu_isspace(*p)) {
3961 p++;
3962 }
3963 beg = p;
3964 while (qemu_isgraph(*p)) {
3965 p++;
3966 }
3967 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
fc48ffc3 3968 val = true;
942cd1f2 3969 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
fc48ffc3 3970 val = false;
942cd1f2
MA
3971 } else {
3972 monitor_printf(mon, "Expected 'on' or 'off'\n");
3973 goto fail;
3974 }
fc48ffc3 3975 qdict_put(qdict, key, qbool_from_bool(val));
942cd1f2
MA
3976 }
3977 break;
9307c4c1
FB
3978 case '-':
3979 {
fbc3d96c 3980 const char *tmp = p;
eb159d13 3981 int skip_key = 0;
9307c4c1 3982 /* option */
3b46e624 3983
9307c4c1
FB
3984 c = *typestr++;
3985 if (c == '\0')
3986 goto bad_type;
cd390083 3987 while (qemu_isspace(*p))
9307c4c1 3988 p++;
9307c4c1
FB
3989 if (*p == '-') {
3990 p++;
fbc3d96c
LS
3991 if(c != *p) {
3992 if(!is_valid_option(p, typestr)) {
3993
3994 monitor_printf(mon, "%s: unsupported option -%c\n",
ae50212f 3995 cmd->name, *p);
fbc3d96c
LS
3996 goto fail;
3997 } else {
3998 skip_key = 1;
3999 }
4000 }
4001 if(skip_key) {
4002 p = tmp;
4003 } else {
eb159d13 4004 /* has option */
fbc3d96c 4005 p++;
fc48ffc3 4006 qdict_put(qdict, key, qbool_from_bool(true));
9307c4c1 4007 }
9307c4c1 4008 }
9307c4c1
FB
4009 }
4010 break;
129be006
WX
4011 case 'S':
4012 {
4013 /* package all remaining string */
4014 int len;
4015
4016 while (qemu_isspace(*p)) {
4017 p++;
4018 }
4019 if (*typestr == '?') {
4020 typestr++;
4021 if (*p == '\0') {
4022 /* no remaining string: NULL argument */
4023 break;
4024 }
4025 }
4026 len = strlen(p);
4027 if (len <= 0) {
4028 monitor_printf(mon, "%s: string expected\n",
ae50212f 4029 cmd->name);
e549d2aa 4030 goto fail;
129be006
WX
4031 }
4032 qdict_put(qdict, key, qstring_from_str(p));
4033 p += len;
4034 }
4035 break;
9307c4c1
FB
4036 default:
4037 bad_type:
ae50212f 4038 monitor_printf(mon, "%s: unknown type '%c'\n", cmd->name, c);
9307c4c1
FB
4039 goto fail;
4040 }
7267c094 4041 g_free(key);
4d76d2ba 4042 key = NULL;
9dc39cba 4043 }
9307c4c1 4044 /* check that all arguments were parsed */
cd390083 4045 while (qemu_isspace(*p))
9307c4c1
FB
4046 p++;
4047 if (*p != '\0') {
376253ec 4048 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
ae50212f 4049 cmd->name);
9307c4c1 4050 goto fail;
9dc39cba 4051 }
9307c4c1 4052
ae50212f 4053 return qdict;
ac7531ec 4054
55f81d96 4055fail:
ae50212f 4056 QDECREF(qdict);
7267c094 4057 g_free(key);
55f81d96
LC
4058 return NULL;
4059}
4060
7ef6cf63 4061static void handle_hmp_command(Monitor *mon, const char *cmdline)
55f81d96 4062{
55f81d96 4063 QDict *qdict;
c227f099 4064 const mon_cmd_t *cmd;
55f81d96 4065
ae50212f
BD
4066 cmd = monitor_parse_command(mon, &cmdline, mon->cmd_table);
4067 if (!cmd) {
4068 return;
4069 }
55f81d96 4070
ae50212f
BD
4071 qdict = monitor_parse_arguments(mon, &cmdline, cmd);
4072 if (!qdict) {
dd41eea7
BD
4073 monitor_printf(mon, "Try \"help %s\" for more information\n",
4074 cmd->name);
ae50212f 4075 return;
55f81d96
LC
4076 }
4077
ae50212f 4078 cmd->mhandler.cmd(mon, qdict);
f7188bbe 4079 QDECREF(qdict);
9dc39cba
FB
4080}
4081
cd5c6bba 4082static void cmd_completion(Monitor *mon, const char *name, const char *list)
81d0912d
FB
4083{
4084 const char *p, *pstart;
4085 char cmd[128];
4086 int len;
4087
4088 p = list;
4089 for(;;) {
4090 pstart = p;
4091 p = strchr(p, '|');
4092 if (!p)
4093 p = pstart + strlen(pstart);
4094 len = p - pstart;
4095 if (len > sizeof(cmd) - 2)
4096 len = sizeof(cmd) - 2;
4097 memcpy(cmd, pstart, len);
4098 cmd[len] = '\0';
4099 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
cd5c6bba 4100 readline_add_completion(mon->rs, cmd);
81d0912d
FB
4101 }
4102 if (*p == '\0')
4103 break;
4104 p++;
4105 }
4106}
4107
cb8f68b1 4108static void file_completion(Monitor *mon, const char *input)
81d0912d
FB
4109{
4110 DIR *ffs;
4111 struct dirent *d;
4112 char path[1024];
4113 char file[1024], file_prefix[1024];
4114 int input_path_len;
4115 const char *p;
4116
5fafdf24 4117 p = strrchr(input, '/');
81d0912d
FB
4118 if (!p) {
4119 input_path_len = 0;
4120 pstrcpy(file_prefix, sizeof(file_prefix), input);
363a37d5 4121 pstrcpy(path, sizeof(path), ".");
81d0912d
FB
4122 } else {
4123 input_path_len = p - input + 1;
4124 memcpy(path, input, input_path_len);
4125 if (input_path_len > sizeof(path) - 1)
4126 input_path_len = sizeof(path) - 1;
4127 path[input_path_len] = '\0';
4128 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4129 }
19f2db5c 4130
81d0912d
FB
4131 ffs = opendir(path);
4132 if (!ffs)
4133 return;
4134 for(;;) {
4135 struct stat sb;
4136 d = readdir(ffs);
4137 if (!d)
4138 break;
46c7fc18
KK
4139
4140 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4141 continue;
4142 }
4143
81d0912d
FB
4144 if (strstart(d->d_name, file_prefix, NULL)) {
4145 memcpy(file, input, input_path_len);
363a37d5
BS
4146 if (input_path_len < sizeof(file))
4147 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4148 d->d_name);
81d0912d
FB
4149 /* stat the file to find out if it's a directory.
4150 * In that case add a slash to speed up typing long paths
4151 */
c951d9a6 4152 if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) {
363a37d5 4153 pstrcat(file, sizeof(file), "/");
c951d9a6 4154 }
cb8f68b1 4155 readline_add_completion(mon->rs, file);
81d0912d
FB
4156 }
4157 }
4158 closedir(ffs);
4159}
4160
4d76d2ba
LC
4161static const char *next_arg_type(const char *typestr)
4162{
4163 const char *p = strchr(typestr, ':');
4164 return (p != NULL ? ++p : typestr);
4165}
4166
40d19394
HB
4167static void add_completion_option(ReadLineState *rs, const char *str,
4168 const char *option)
4169{
4170 if (!str || !option) {
4171 return;
4172 }
4173 if (!strncmp(option, str, strlen(str))) {
4174 readline_add_completion(rs, option);
4175 }
4176}
4177
13e315da
HB
4178void chardev_add_completion(ReadLineState *rs, int nb_args, const char *str)
4179{
4180 size_t len;
4181 ChardevBackendInfoList *list, *start;
4182
4183 if (nb_args != 2) {
4184 return;
4185 }
4186 len = strlen(str);
4187 readline_set_completion_index(rs, len);
4188
4189 start = list = qmp_query_chardev_backends(NULL);
4190 while (list) {
4191 const char *chr_name = list->value->name;
4192
4193 if (!strncmp(chr_name, str, len)) {
4194 readline_add_completion(rs, chr_name);
4195 }
4196 list = list->next;
4197 }
4198 qapi_free_ChardevBackendInfoList(start);
4199}
4200
b162b49a
HB
4201void netdev_add_completion(ReadLineState *rs, int nb_args, const char *str)
4202{
4203 size_t len;
4204 int i;
4205
4206 if (nb_args != 2) {
4207 return;
4208 }
4209 len = strlen(str);
4210 readline_set_completion_index(rs, len);
4211 for (i = 0; NetClientOptionsKind_lookup[i]; i++) {
4212 add_completion_option(rs, str, NetClientOptionsKind_lookup[i]);
4213 }
4214}
4215
2da1b3ab 4216void device_add_completion(ReadLineState *rs, int nb_args, const char *str)
992d3e64
HB
4217{
4218 GSList *list, *elt;
4219 size_t len;
4220
2da1b3ab
HB
4221 if (nb_args != 2) {
4222 return;
4223 }
4224
992d3e64
HB
4225 len = strlen(str);
4226 readline_set_completion_index(rs, len);
4227 list = elt = object_class_get_list(TYPE_DEVICE, false);
4228 while (elt) {
4229 const char *name;
4230 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
4231 TYPE_DEVICE);
4232 name = object_class_get_name(OBJECT_CLASS(dc));
2da1b3ab
HB
4233
4234 if (!dc->cannot_instantiate_with_device_add_yet
4235 && !strncmp(name, str, len)) {
992d3e64
HB
4236 readline_add_completion(rs, name);
4237 }
4238 elt = elt->next;
4239 }
4240 g_slist_free(list);
4241}
4242
bfa40f77 4243void object_add_completion(ReadLineState *rs, int nb_args, const char *str)
1094fd3a
HB
4244{
4245 GSList *list, *elt;
4246 size_t len;
4247
bfa40f77
HB
4248 if (nb_args != 2) {
4249 return;
4250 }
4251
1094fd3a
HB
4252 len = strlen(str);
4253 readline_set_completion_index(rs, len);
4254 list = elt = object_class_get_list(TYPE_USER_CREATABLE, false);
4255 while (elt) {
4256 const char *name;
4257
4258 name = object_class_get_name(OBJECT_CLASS(elt->data));
4259 if (!strncmp(name, str, len) && strcmp(name, TYPE_USER_CREATABLE)) {
4260 readline_add_completion(rs, name);
4261 }
4262 elt = elt->next;
4263 }
4264 g_slist_free(list);
4265}
4266
6a1fa9f5
ZG
4267static void peripheral_device_del_completion(ReadLineState *rs,
4268 const char *str, size_t len)
4269{
4cae4d5a
MA
4270 Object *peripheral = container_get(qdev_get_machine(), "/peripheral");
4271 GSList *list, *item;
6a1fa9f5 4272
4cae4d5a
MA
4273 list = qdev_build_hotpluggable_device_list(peripheral);
4274 if (!list) {
6a1fa9f5
ZG
4275 return;
4276 }
4277
6a1fa9f5
ZG
4278 for (item = list; item; item = g_slist_next(item)) {
4279 DeviceState *dev = item->data;
4280
4281 if (dev->id && !strncmp(str, dev->id, len)) {
4282 readline_add_completion(rs, dev->id);
4283 }
4284 }
4285
4286 g_slist_free(list);
4287}
4288
6297d9a2
HB
4289void chardev_remove_completion(ReadLineState *rs, int nb_args, const char *str)
4290{
4291 size_t len;
4292 ChardevInfoList *list, *start;
4293
4294 if (nb_args != 2) {
4295 return;
4296 }
4297 len = strlen(str);
4298 readline_set_completion_index(rs, len);
4299
4300 start = list = qmp_query_chardev(NULL);
4301 while (list) {
4302 ChardevInfo *chr = list->value;
4303
4304 if (!strncmp(chr->label, str, len)) {
4305 readline_add_completion(rs, chr->label);
4306 }
4307 list = list->next;
4308 }
4309 qapi_free_ChardevInfoList(start);
4310}
4311
8e597779
HB
4312static void ringbuf_completion(ReadLineState *rs, const char *str)
4313{
4314 size_t len;
4315 ChardevInfoList *list, *start;
4316
4317 len = strlen(str);
4318 readline_set_completion_index(rs, len);
4319
4320 start = list = qmp_query_chardev(NULL);
4321 while (list) {
4322 ChardevInfo *chr_info = list->value;
4323
4324 if (!strncmp(chr_info->label, str, len)) {
4325 CharDriverState *chr = qemu_chr_find(chr_info->label);
4326 if (chr && chr_is_ringbuf(chr)) {
4327 readline_add_completion(rs, chr_info->label);
4328 }
4329 }
4330 list = list->next;
4331 }
4332 qapi_free_ChardevInfoList(start);
4333}
4334
8e597779
HB
4335void ringbuf_write_completion(ReadLineState *rs, int nb_args, const char *str)
4336{
4337 if (nb_args != 2) {
4338 return;
4339 }
4340 ringbuf_completion(rs, str);
4341}
4342
2da1b3ab
HB
4343void device_del_completion(ReadLineState *rs, int nb_args, const char *str)
4344{
4345 size_t len;
4346
4347 if (nb_args != 2) {
4348 return;
4349 }
4350
4351 len = strlen(str);
4352 readline_set_completion_index(rs, len);
6a1fa9f5 4353 peripheral_device_del_completion(rs, str, len);
2da1b3ab
HB
4354}
4355
bfa40f77 4356void object_del_completion(ReadLineState *rs, int nb_args, const char *str)
b48fa074
HB
4357{
4358 ObjectPropertyInfoList *list, *start;
4359 size_t len;
4360
bfa40f77
HB
4361 if (nb_args != 2) {
4362 return;
4363 }
b48fa074
HB
4364 len = strlen(str);
4365 readline_set_completion_index(rs, len);
4366
4367 start = list = qmp_qom_list("/objects", NULL);
4368 while (list) {
4369 ObjectPropertyInfo *info = list->value;
4370
4371 if (!strncmp(info->type, "child<", 5)
4372 && !strncmp(info->name, str, len)) {
4373 readline_add_completion(rs, info->name);
4374 }
4375 list = list->next;
4376 }
4377 qapi_free_ObjectPropertyInfoList(start);
4378}
4379
29136cd8
HB
4380void sendkey_completion(ReadLineState *rs, int nb_args, const char *str)
4381{
4382 int i;
4383 char *sep;
4384 size_t len;
4385
4386 if (nb_args != 2) {
4387 return;
4388 }
4389 sep = strrchr(str, '-');
4390 if (sep) {
4391 str = sep + 1;
4392 }
4393 len = strlen(str);
4394 readline_set_completion_index(rs, len);
4395 for (i = 0; i < Q_KEY_CODE_MAX; i++) {
4396 if (!strncmp(str, QKeyCode_lookup[i], len)) {
4397 readline_add_completion(rs, QKeyCode_lookup[i]);
4398 }
4399 }
4400}
4401
40d19394
HB
4402void set_link_completion(ReadLineState *rs, int nb_args, const char *str)
4403{
4404 size_t len;
4405
4406 len = strlen(str);
4407 readline_set_completion_index(rs, len);
4408 if (nb_args == 2) {
eaed483c 4409 NetClientState *ncs[MAX_QUEUE_NUM];
40d19394
HB
4410 int count, i;
4411 count = qemu_find_net_clients_except(NULL, ncs,
eaed483c
JW
4412 NET_CLIENT_OPTIONS_KIND_NONE,
4413 MAX_QUEUE_NUM);
bcfa4d60 4414 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
40d19394
HB
4415 const char *name = ncs[i]->name;
4416 if (!strncmp(str, name, len)) {
4417 readline_add_completion(rs, name);
4418 }
4419 }
4420 } else if (nb_args == 3) {
4421 add_completion_option(rs, str, "on");
4422 add_completion_option(rs, str, "off");
4423 }
4424}
4425
11b389f2
HB
4426void netdev_del_completion(ReadLineState *rs, int nb_args, const char *str)
4427{
4428 int len, count, i;
eaed483c 4429 NetClientState *ncs[MAX_QUEUE_NUM];
11b389f2
HB
4430
4431 if (nb_args != 2) {
4432 return;
4433 }
4434
4435 len = strlen(str);
4436 readline_set_completion_index(rs, len);
4437 count = qemu_find_net_clients_except(NULL, ncs, NET_CLIENT_OPTIONS_KIND_NIC,
eaed483c 4438 MAX_QUEUE_NUM);
bcfa4d60 4439 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
11b389f2
HB
4440 QemuOpts *opts;
4441 const char *name = ncs[i]->name;
4442 if (strncmp(str, name, len)) {
4443 continue;
4444 }
4445 opts = qemu_opts_find(qemu_find_opts_err("netdev", NULL), name);
4446 if (opts) {
4447 readline_add_completion(rs, name);
4448 }
4449 }
4450}
4451
987bd270
DDAG
4452void trace_event_completion(ReadLineState *rs, int nb_args, const char *str)
4453{
4454 size_t len;
4455
4456 len = strlen(str);
4457 readline_set_completion_index(rs, len);
4458 if (nb_args == 2) {
4459 TraceEventID id;
4460 for (id = 0; id < trace_event_count(); id++) {
4461 const char *event_name = trace_event_get_name(trace_event_id(id));
4462 if (!strncmp(str, event_name, len)) {
4463 readline_add_completion(rs, event_name);
4464 }
4465 }
4466 } else if (nb_args == 3) {
4467 add_completion_option(rs, str, "on");
4468 add_completion_option(rs, str, "off");
4469 }
4470}
4471
d0ece345
HB
4472void watchdog_action_completion(ReadLineState *rs, int nb_args, const char *str)
4473{
4bb08af3
HB
4474 int i;
4475
d0ece345
HB
4476 if (nb_args != 2) {
4477 return;
4478 }
4479 readline_set_completion_index(rs, strlen(str));
4bb08af3
HB
4480 for (i = 0; WatchdogExpirationAction_lookup[i]; i++) {
4481 add_completion_option(rs, str, WatchdogExpirationAction_lookup[i]);
4482 }
d0ece345
HB
4483}
4484
c68a0409
HB
4485void migrate_set_capability_completion(ReadLineState *rs, int nb_args,
4486 const char *str)
4487{
4488 size_t len;
4489
4490 len = strlen(str);
4491 readline_set_completion_index(rs, len);
4492 if (nb_args == 2) {
4493 int i;
4494 for (i = 0; i < MIGRATION_CAPABILITY_MAX; i++) {
4495 const char *name = MigrationCapability_lookup[i];
4496 if (!strncmp(str, name, len)) {
4497 readline_add_completion(rs, name);
4498 }
4499 }
4500 } else if (nb_args == 3) {
4501 add_completion_option(rs, str, "on");
4502 add_completion_option(rs, str, "off");
4503 }
4504}
4505
50e9a629
LL
4506void migrate_set_parameter_completion(ReadLineState *rs, int nb_args,
4507 const char *str)
4508{
4509 size_t len;
4510
4511 len = strlen(str);
4512 readline_set_completion_index(rs, len);
4513 if (nb_args == 2) {
4514 int i;
4515 for (i = 0; i < MIGRATION_PARAMETER_MAX; i++) {
4516 const char *name = MigrationParameter_lookup[i];
4517 if (!strncmp(str, name, len)) {
4518 readline_add_completion(rs, name);
4519 }
4520 }
4521 }
4522}
4523
e3bb532c
HB
4524void host_net_add_completion(ReadLineState *rs, int nb_args, const char *str)
4525{
4526 int i;
4527 size_t len;
4528 if (nb_args != 2) {
4529 return;
4530 }
4531 len = strlen(str);
4532 readline_set_completion_index(rs, len);
4533 for (i = 0; host_net_devices[i]; i++) {
4534 if (!strncmp(host_net_devices[i], str, len)) {
4535 readline_add_completion(rs, host_net_devices[i]);
4536 }
4537 }
4538}
4539
ddd6b45c
HB
4540void host_net_remove_completion(ReadLineState *rs, int nb_args, const char *str)
4541{
eaed483c 4542 NetClientState *ncs[MAX_QUEUE_NUM];
ddd6b45c
HB
4543 int count, i, len;
4544
4545 len = strlen(str);
4546 readline_set_completion_index(rs, len);
4547 if (nb_args == 2) {
4548 count = qemu_find_net_clients_except(NULL, ncs,
eaed483c
JW
4549 NET_CLIENT_OPTIONS_KIND_NONE,
4550 MAX_QUEUE_NUM);
bcfa4d60 4551 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
ddd6b45c
HB
4552 int id;
4553 char name[16];
4554
4555 if (net_hub_id_for_client(ncs[i], &id)) {
4556 continue;
4557 }
4558 snprintf(name, sizeof(name), "%d", id);
4559 if (!strncmp(str, name, len)) {
4560 readline_add_completion(rs, name);
4561 }
4562 }
4563 return;
4564 } else if (nb_args == 3) {
4565 count = qemu_find_net_clients_except(NULL, ncs,
eaed483c
JW
4566 NET_CLIENT_OPTIONS_KIND_NIC,
4567 MAX_QUEUE_NUM);
bcfa4d60 4568 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
2c4681f5 4569 int id;
ddd6b45c
HB
4570 const char *name;
4571
2c4681f5
JW
4572 if (ncs[i]->info->type == NET_CLIENT_OPTIONS_KIND_HUBPORT ||
4573 net_hub_id_for_client(ncs[i], &id)) {
4574 continue;
4575 }
ddd6b45c
HB
4576 name = ncs[i]->name;
4577 if (!strncmp(str, name, len)) {
4578 readline_add_completion(rs, name);
4579 }
4580 }
4581 return;
4582 }
4583}
4584
b21631f3
HB
4585static void vm_completion(ReadLineState *rs, const char *str)
4586{
4587 size_t len;
4588 BlockDriverState *bs = NULL;
4589
4590 len = strlen(str);
4591 readline_set_completion_index(rs, len);
4592 while ((bs = bdrv_next(bs))) {
4593 SnapshotInfoList *snapshots, *snapshot;
4594
4595 if (!bdrv_can_snapshot(bs)) {
4596 continue;
4597 }
4598 if (bdrv_query_snapshot_info_list(bs, &snapshots, NULL)) {
4599 continue;
4600 }
4601 snapshot = snapshots;
4602 while (snapshot) {
4603 char *completion = snapshot->value->name;
4604 if (!strncmp(str, completion, len)) {
4605 readline_add_completion(rs, completion);
4606 }
4607 completion = snapshot->value->id;
4608 if (!strncmp(str, completion, len)) {
4609 readline_add_completion(rs, completion);
4610 }
4611 snapshot = snapshot->next;
4612 }
4613 qapi_free_SnapshotInfoList(snapshots);
4614 }
4615
4616}
4617
4618void delvm_completion(ReadLineState *rs, int nb_args, const char *str)
4619{
4620 if (nb_args == 2) {
4621 vm_completion(rs, str);
4622 }
4623}
4624
4625void loadvm_completion(ReadLineState *rs, int nb_args, const char *str)
4626{
4627 if (nb_args == 2) {
4628 vm_completion(rs, str);
4629 }
4630}
4631
c35b6400
WX
4632static void monitor_find_completion_by_table(Monitor *mon,
4633 const mon_cmd_t *cmd_table,
4634 char **args,
4635 int nb_args)
81d0912d
FB
4636{
4637 const char *cmdname;
c35b6400 4638 int i;
fea68bb6 4639 const char *ptype, *str, *name;
c227f099 4640 const mon_cmd_t *cmd;
fea68bb6 4641 BlockDriverState *bs;
81d0912d 4642
81d0912d
FB
4643 if (nb_args <= 1) {
4644 /* command completion */
4645 if (nb_args == 0)
4646 cmdname = "";
4647 else
4648 cmdname = args[0];
d2674b2c 4649 readline_set_completion_index(mon->rs, strlen(cmdname));
c35b6400 4650 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
cd5c6bba 4651 cmd_completion(mon, cmdname, cmd->name);
81d0912d
FB
4652 }
4653 } else {
4654 /* find the command */
c35b6400 4655 for (cmd = cmd_table; cmd->name != NULL; cmd++) {
03a63484
JK
4656 if (compare_cmd(args[0], cmd->name)) {
4657 break;
4658 }
81d0912d 4659 }
03a63484 4660 if (!cmd->name) {
c35b6400 4661 return;
03a63484
JK
4662 }
4663
d903a779
WX
4664 if (cmd->sub_table) {
4665 /* do the job again */
e7ae771f
SW
4666 monitor_find_completion_by_table(mon, cmd->sub_table,
4667 &args[1], nb_args - 1);
4668 return;
d903a779 4669 }
bfa40f77 4670 if (cmd->command_completion) {
e7ae771f
SW
4671 cmd->command_completion(mon->rs, nb_args, args[nb_args - 1]);
4672 return;
bfa40f77 4673 }
d903a779 4674
4d76d2ba 4675 ptype = next_arg_type(cmd->args_type);
81d0912d
FB
4676 for(i = 0; i < nb_args - 2; i++) {
4677 if (*ptype != '\0') {
4d76d2ba 4678 ptype = next_arg_type(ptype);
81d0912d 4679 while (*ptype == '?')
4d76d2ba 4680 ptype = next_arg_type(ptype);
81d0912d
FB
4681 }
4682 }
4683 str = args[nb_args - 1];
48fe86f6 4684 while (*ptype == '-' && ptype[1] != '\0') {
3b6dbf27 4685 ptype = next_arg_type(ptype);
2a1704a7 4686 }
81d0912d
FB
4687 switch(*ptype) {
4688 case 'F':
4689 /* file completion */
d2674b2c 4690 readline_set_completion_index(mon->rs, strlen(str));
cb8f68b1 4691 file_completion(mon, str);
81d0912d
FB
4692 break;
4693 case 'B':
4694 /* block device name completion */
599a926a 4695 readline_set_completion_index(mon->rs, strlen(str));
fea68bb6
MA
4696 for (bs = bdrv_next(NULL); bs; bs = bdrv_next(bs)) {
4697 name = bdrv_get_device_name(bs);
4698 if (str[0] == '\0' ||
4699 !strncmp(name, str, strlen(str))) {
4700 readline_add_completion(mon->rs, name);
4701 }
4702 }
81d0912d 4703 break;
7fe48483 4704 case 's':
129be006 4705 case 'S':
29136cd8 4706 if (!strcmp(cmd->name, "help|?")) {
7ca0e061
WX
4707 monitor_find_completion_by_table(mon, cmd_table,
4708 &args[1], nb_args - 1);
7fe48483
FB
4709 }
4710 break;
81d0912d
FB
4711 default:
4712 break;
4713 }
4714 }
c35b6400
WX
4715}
4716
c60bf339 4717static void monitor_find_completion(void *opaque,
c35b6400
WX
4718 const char *cmdline)
4719{
c60bf339 4720 Monitor *mon = opaque;
c35b6400
WX
4721 char *args[MAX_ARGS];
4722 int nb_args, len;
4723
4724 /* 1. parse the cmdline */
4725 if (parse_cmdline(cmdline, &nb_args, args) < 0) {
4726 return;
4727 }
c35b6400
WX
4728
4729 /* if the line ends with a space, it means we want to complete the
4730 next arg */
4731 len = strlen(cmdline);
4732 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
4733 if (nb_args >= MAX_ARGS) {
4734 goto cleanup;
4735 }
4736 args[nb_args++] = g_strdup("");
4737 }
4738
4739 /* 2. auto complete according to args */
4740 monitor_find_completion_by_table(mon, mon->cmd_table, args, nb_args);
03a63484
JK
4741
4742cleanup:
dcc70cdf 4743 free_cmdline_args(args, nb_args);
81d0912d
FB
4744}
4745
731b0364 4746static int monitor_can_read(void *opaque)
9dc39cba 4747{
731b0364
AL
4748 Monitor *mon = opaque;
4749
c62313bb 4750 return (mon->suspend_cnt == 0) ? 1 : 0;
9dc39cba
FB
4751}
4752
4086182f
MA
4753static bool invalid_qmp_mode(const Monitor *mon, const mon_cmd_t *cmd,
4754 Error **errp)
5fa737a4 4755{
485febc6 4756 bool is_cap = cmd->mhandler.cmd_new == qmp_capabilities;
f994b258
MA
4757
4758 if (is_cap && mon->qmp.in_command_mode) {
4086182f
MA
4759 error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND,
4760 "Capabilities negotiation is already complete, command "
4761 "'%s' ignored", cmd->name);
2d5a8346
EB
4762 return true;
4763 }
f994b258 4764 if (!is_cap && !mon->qmp.in_command_mode) {
4086182f
MA
4765 error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND,
4766 "Expecting capabilities negotiation with "
4767 "'qmp_capabilities' before command '%s'", cmd->name);
2d5a8346
EB
4768 return true;
4769 }
4770 return false;
5fa737a4
LC
4771}
4772
4af9193a
LC
4773/*
4774 * Argument validation rules:
4775 *
4776 * 1. The argument must exist in cmd_args qdict
4777 * 2. The argument type must be the expected one
4778 *
4779 * Special case: If the argument doesn't exist in cmd_args and
4780 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4781 * checking is skipped for it.
4782 */
326283aa
MA
4783static void check_client_args_type(const QDict *client_args,
4784 const QDict *cmd_args, int flags,
4785 Error **errp)
5fa737a4 4786{
4af9193a 4787 const QDictEntry *ent;
5fa737a4 4788
4af9193a
LC
4789 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4790 QObject *obj;
4791 QString *arg_type;
4792 const QObject *client_arg = qdict_entry_value(ent);
4793 const char *client_arg_name = qdict_entry_key(ent);
4794
4795 obj = qdict_get(cmd_args, client_arg_name);
4796 if (!obj) {
4797 if (flags & QMP_ACCEPT_UNKNOWNS) {
4798 /* handler accepts unknowns */
4799 continue;
4800 }
4801 /* client arg doesn't exist */
c6bd8c70 4802 error_setg(errp, QERR_INVALID_PARAMETER, client_arg_name);
326283aa 4803 return;
4af9193a 4804 }
5fa737a4 4805
4af9193a
LC
4806 arg_type = qobject_to_qstring(obj);
4807 assert(arg_type != NULL);
5fa737a4 4808
4af9193a
LC
4809 /* check if argument's type is correct */
4810 switch (qstring_get_str(arg_type)[0]) {
5fa737a4
LC
4811 case 'F':
4812 case 'B':
4813 case 's':
4af9193a 4814 if (qobject_type(client_arg) != QTYPE_QSTRING) {
c6bd8c70
MA
4815 error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
4816 client_arg_name, "string");
326283aa 4817 return;
5fa737a4 4818 }
4af9193a 4819 break;
5fa737a4
LC
4820 case 'i':
4821 case 'l':
b6e098d7 4822 case 'M':
dbc0c67f 4823 case 'o':
4af9193a 4824 if (qobject_type(client_arg) != QTYPE_QINT) {
c6bd8c70
MA
4825 error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
4826 client_arg_name, "int");
326283aa 4827 return;
5fa737a4
LC
4828 }
4829 break;
fccfb11e 4830 case 'T':
4af9193a
LC
4831 if (qobject_type(client_arg) != QTYPE_QINT &&
4832 qobject_type(client_arg) != QTYPE_QFLOAT) {
c6bd8c70
MA
4833 error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
4834 client_arg_name, "number");
326283aa 4835 return;
3350a4dd
MA
4836 }
4837 break;
942cd1f2 4838 case 'b':
5fa737a4 4839 case '-':
4af9193a 4840 if (qobject_type(client_arg) != QTYPE_QBOOL) {
c6bd8c70
MA
4841 error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
4842 client_arg_name, "bool");
326283aa 4843 return;
5fa737a4
LC
4844 }
4845 break;
361127df 4846 case 'O':
4af9193a
LC
4847 assert(flags & QMP_ACCEPT_UNKNOWNS);
4848 break;
b9f8978c
PB
4849 case 'q':
4850 /* Any QObject can be passed. */
4851 break;
4af9193a
LC
4852 case '/':
4853 case '.':
4854 /*
4855 * These types are not supported by QMP and thus are not
4856 * handled here. Fall through.
4857 */
5fa737a4 4858 default:
5fa737a4 4859 abort();
4af9193a
LC
4860 }
4861 }
4af9193a
LC
4862}
4863
2dbc8db0
LC
4864/*
4865 * - Check if the client has passed all mandatory args
4866 * - Set special flags for argument validation
4867 */
326283aa
MA
4868static void check_mandatory_args(const QDict *cmd_args,
4869 const QDict *client_args, int *flags,
4870 Error **errp)
2dbc8db0
LC
4871{
4872 const QDictEntry *ent;
4873
4874 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4875 const char *cmd_arg_name = qdict_entry_key(ent);
4876 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4877 assert(type != NULL);
4878
4879 if (qstring_get_str(type)[0] == 'O') {
4880 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4881 *flags |= QMP_ACCEPT_UNKNOWNS;
4882 } else if (qstring_get_str(type)[0] != '-' &&
4883 qstring_get_str(type)[1] != '?' &&
4884 !qdict_haskey(client_args, cmd_arg_name)) {
c6bd8c70 4885 error_setg(errp, QERR_MISSING_PARAMETER, cmd_arg_name);
326283aa 4886 return;
2dbc8db0 4887 }
5fa737a4 4888 }
5fa737a4
LC
4889}
4890
2dbc8db0 4891static QDict *qdict_from_args_type(const char *args_type)
5fa737a4 4892{
2dbc8db0
LC
4893 int i;
4894 QDict *qdict;
4895 QString *key, *type, *cur_qs;
4896
4897 assert(args_type != NULL);
4898
4899 qdict = qdict_new();
4900
4901 if (args_type == NULL || args_type[0] == '\0') {
4902 /* no args, empty qdict */
4903 goto out;
4904 }
4905
4906 key = qstring_new();
4907 type = qstring_new();
4908
4909 cur_qs = key;
4910
4911 for (i = 0;; i++) {
4912 switch (args_type[i]) {
4913 case ',':
4914 case '\0':
4915 qdict_put(qdict, qstring_get_str(key), type);
4916 QDECREF(key);
4917 if (args_type[i] == '\0') {
4918 goto out;
4919 }
4920 type = qstring_new(); /* qdict has ref */
4921 cur_qs = key = qstring_new();
4922 break;
4923 case ':':
4924 cur_qs = type;
4925 break;
4926 default:
4927 qstring_append_chr(cur_qs, args_type[i]);
4928 break;
4929 }
4930 }
4931
4932out:
4933 return qdict;
5fa737a4
LC
4934}
4935
2dbc8db0
LC
4936/*
4937 * Client argument checking rules:
4938 *
4939 * 1. Client must provide all mandatory arguments
4af9193a
LC
4940 * 2. Each argument provided by the client must be expected
4941 * 3. Each argument provided by the client must have the type expected
4942 * by the command
2dbc8db0 4943 */
326283aa
MA
4944static void qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args,
4945 Error **errp)
361127df 4946{
326283aa
MA
4947 Error *err = NULL;
4948 int flags;
2dbc8db0
LC
4949 QDict *cmd_args;
4950
4951 cmd_args = qdict_from_args_type(cmd->args_type);
4952
4953 flags = 0;
326283aa 4954 check_mandatory_args(cmd_args, client_args, &flags, &err);
2dbc8db0
LC
4955 if (err) {
4956 goto out;
4957 }
4958
326283aa 4959 check_client_args_type(client_args, cmd_args, flags, &err);
2dbc8db0
LC
4960
4961out:
326283aa 4962 error_propagate(errp, err);
2dbc8db0 4963 QDECREF(cmd_args);
361127df
MA
4964}
4965
5fa737a4 4966/*
c917c8f3 4967 * Input object checking rules
5fa737a4 4968 *
c917c8f3
LC
4969 * 1. Input object must be a dict
4970 * 2. The "execute" key must exist
4971 * 3. The "execute" key must be a string
4972 * 4. If the "arguments" key exists, it must be a dict
4973 * 5. If the "id" key exists, it can be anything (ie. json-value)
4974 * 6. Any argument not listed above is considered invalid
5fa737a4 4975 */
ba0510aa 4976static QDict *qmp_check_input_obj(QObject *input_obj, Error **errp)
5fa737a4 4977{
c917c8f3
LC
4978 const QDictEntry *ent;
4979 int has_exec_key = 0;
4980 QDict *input_dict;
5fa737a4 4981
c917c8f3 4982 if (qobject_type(input_obj) != QTYPE_QDICT) {
c6bd8c70 4983 error_setg(errp, QERR_QMP_BAD_INPUT_OBJECT, "object");
c917c8f3 4984 return NULL;
5fa737a4
LC
4985 }
4986
c917c8f3 4987 input_dict = qobject_to_qdict(input_obj);
5fa737a4 4988
c917c8f3
LC
4989 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4990 const char *arg_name = qdict_entry_key(ent);
4991 const QObject *arg_obj = qdict_entry_value(ent);
5fa737a4 4992
c917c8f3
LC
4993 if (!strcmp(arg_name, "execute")) {
4994 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
c6bd8c70
MA
4995 error_setg(errp, QERR_QMP_BAD_INPUT_OBJECT_MEMBER,
4996 "execute", "string");
c917c8f3 4997 return NULL;
361127df 4998 }
c917c8f3
LC
4999 has_exec_key = 1;
5000 } else if (!strcmp(arg_name, "arguments")) {
5001 if (qobject_type(arg_obj) != QTYPE_QDICT) {
c6bd8c70
MA
5002 error_setg(errp, QERR_QMP_BAD_INPUT_OBJECT_MEMBER,
5003 "arguments", "object");
c917c8f3 5004 return NULL;
5fa737a4 5005 }
779cec4d
MA
5006 } else if (!strcmp(arg_name, "id")) {
5007 /* Any string is acceptable as "id", so nothing to check */
5fa737a4 5008 } else {
c6bd8c70 5009 error_setg(errp, QERR_QMP_EXTRA_MEMBER, arg_name);
c917c8f3 5010 return NULL;
5fa737a4
LC
5011 }
5012 }
5013
c917c8f3 5014 if (!has_exec_key) {
c6bd8c70 5015 error_setg(errp, QERR_QMP_BAD_INPUT_OBJECT, "execute");
c917c8f3
LC
5016 return NULL;
5017 }
5fa737a4 5018
c917c8f3 5019 return input_dict;
09069b19
LC
5020}
5021
5fa737a4
LC
5022static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
5023{
326283aa 5024 Error *local_err = NULL;
84add864 5025 QObject *obj, *data;
5fa737a4 5026 QDict *input, *args;
5fa737a4 5027 const mon_cmd_t *cmd;
40e5a01d 5028 const char *cmd_name;
5fa737a4
LC
5029 Monitor *mon = cur_mon;
5030
e4940c60 5031 args = input = NULL;
84add864 5032 data = NULL;
5fa737a4
LC
5033
5034 obj = json_parser_parse(tokens, NULL);
5035 if (!obj) {
5036 // FIXME: should be triggered in json_parser_parse()
c6bd8c70 5037 error_setg(&local_err, QERR_JSON_PARSING);
5fa737a4 5038 goto err_out;
5fa737a4
LC
5039 }
5040
ba0510aa 5041 input = qmp_check_input_obj(obj, &local_err);
c917c8f3 5042 if (!input) {
5fa737a4
LC
5043 qobject_decref(obj);
5044 goto err_out;
5045 }
5046
74358f2a
MA
5047 mon->qmp.id = qdict_get(input, "id");
5048 qobject_incref(mon->qmp.id);
5fa737a4 5049
0bbab46d 5050 cmd_name = qdict_get_str(input, "execute");
89bd820a 5051 trace_handle_qmp_command(mon, cmd_name);
e3193601 5052 cmd = qmp_find_cmd(cmd_name);
2d5a8346 5053 if (!cmd) {
710aec91
MA
5054 error_set(&local_err, ERROR_CLASS_COMMAND_NOT_FOUND,
5055 "The command %s has not been found", cmd_name);
e4940c60 5056 goto err_out;
5fa737a4 5057 }
4086182f 5058 if (invalid_qmp_mode(mon, cmd, &local_err)) {
2d5a8346
EB
5059 goto err_out;
5060 }
5fa737a4
LC
5061
5062 obj = qdict_get(input, "arguments");
5063 if (!obj) {
5064 args = qdict_new();
5065 } else {
5066 args = qobject_to_qdict(obj);
5067 QINCREF(args);
5068 }
5069
326283aa
MA
5070 qmp_check_client_args(cmd, args, &local_err);
5071 if (local_err) {
5fa737a4
LC
5072 goto err_out;
5073 }
5074
485febc6 5075 cmd->mhandler.cmd_new(args, &data, &local_err);
5fa737a4 5076
5fa737a4 5077err_out:
710aec91 5078 monitor_protocol_emitter(mon, data, local_err);
84add864 5079 qobject_decref(data);
e4940c60 5080 QDECREF(input);
5fa737a4 5081 QDECREF(args);
5fa737a4
LC
5082}
5083
c83fe23b 5084static void monitor_qmp_read(void *opaque, const uint8_t *buf, int size)
9b57c02e
LC
5085{
5086 Monitor *old_mon = cur_mon;
5087
5088 cur_mon = opaque;
5089
74358f2a 5090 json_message_parser_feed(&cur_mon->qmp.parser, (const char *) buf, size);
9b57c02e
LC
5091
5092 cur_mon = old_mon;
5093}
5094
731b0364 5095static void monitor_read(void *opaque, const uint8_t *buf, int size)
9dc39cba 5096{
731b0364 5097 Monitor *old_mon = cur_mon;
7e2515e8 5098 int i;
376253ec 5099
731b0364
AL
5100 cur_mon = opaque;
5101
cde76ee1
AL
5102 if (cur_mon->rs) {
5103 for (i = 0; i < size; i++)
5104 readline_handle_byte(cur_mon->rs, buf[i]);
5105 } else {
5106 if (size == 0 || buf[size - 1] != 0)
5107 monitor_printf(cur_mon, "corrupted command\n");
5108 else
7ef6cf63 5109 handle_hmp_command(cur_mon, (char *)buf);
cde76ee1 5110 }
9dc39cba 5111
731b0364
AL
5112 cur_mon = old_mon;
5113}
d8f44609 5114
c60bf339
SH
5115static void monitor_command_cb(void *opaque, const char *cmdline,
5116 void *readline_opaque)
aa455485 5117{
c60bf339
SH
5118 Monitor *mon = opaque;
5119
731b0364 5120 monitor_suspend(mon);
7ef6cf63 5121 handle_hmp_command(mon, cmdline);
731b0364 5122 monitor_resume(mon);
d8f44609
AL
5123}
5124
cde76ee1 5125int monitor_suspend(Monitor *mon)
d8f44609 5126{
cde76ee1
AL
5127 if (!mon->rs)
5128 return -ENOTTY;
731b0364 5129 mon->suspend_cnt++;
cde76ee1 5130 return 0;
d8f44609
AL
5131}
5132
376253ec 5133void monitor_resume(Monitor *mon)
d8f44609 5134{
cde76ee1
AL
5135 if (!mon->rs)
5136 return;
731b0364
AL
5137 if (--mon->suspend_cnt == 0)
5138 readline_show_prompt(mon->rs);
aa455485
FB
5139}
5140
ca9567e2
LC
5141static QObject *get_qmp_greeting(void)
5142{
b9c15f16 5143 QObject *ver = NULL;
ca9567e2 5144
485febc6 5145 qmp_marshal_input_query_version(NULL, &ver, NULL);
ca9567e2
LC
5146 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
5147}
5148
c83fe23b 5149static void monitor_qmp_event(void *opaque, int event)
9b57c02e 5150{
47116d1c
LC
5151 QObject *data;
5152 Monitor *mon = opaque;
9b57c02e 5153
47116d1c
LC
5154 switch (event) {
5155 case CHR_EVENT_OPENED:
f994b258 5156 mon->qmp.in_command_mode = false;
ca9567e2 5157 data = get_qmp_greeting();
9b57c02e
LC
5158 monitor_json_emitter(mon, data);
5159 qobject_decref(data);
efb87c16 5160 mon_refcount++;
47116d1c
LC
5161 break;
5162 case CHR_EVENT_CLOSED:
74358f2a
MA
5163 json_message_parser_destroy(&mon->qmp.parser);
5164 json_message_parser_init(&mon->qmp.parser, handle_qmp_command);
efb87c16
CB
5165 mon_refcount--;
5166 monitor_fdsets_cleanup();
47116d1c 5167 break;
9b57c02e
LC
5168 }
5169}
5170
731b0364 5171static void monitor_event(void *opaque, int event)
86e94dea 5172{
376253ec
AL
5173 Monitor *mon = opaque;
5174
2724b180
AL
5175 switch (event) {
5176 case CHR_EVENT_MUX_IN:
6cff3e85 5177 qemu_mutex_lock(&mon->out_lock);
a7aec5da 5178 mon->mux_out = 0;
6cff3e85 5179 qemu_mutex_unlock(&mon->out_lock);
a7aec5da
GH
5180 if (mon->reset_seen) {
5181 readline_restart(mon->rs);
5182 monitor_resume(mon);
5183 monitor_flush(mon);
5184 } else {
5185 mon->suspend_cnt = 0;
5186 }
2724b180
AL
5187 break;
5188
5189 case CHR_EVENT_MUX_OUT:
a7aec5da
GH
5190 if (mon->reset_seen) {
5191 if (mon->suspend_cnt == 0) {
5192 monitor_printf(mon, "\n");
5193 }
5194 monitor_flush(mon);
5195 monitor_suspend(mon);
5196 } else {
5197 mon->suspend_cnt++;
5198 }
6cff3e85 5199 qemu_mutex_lock(&mon->out_lock);
a7aec5da 5200 mon->mux_out = 1;
6cff3e85 5201 qemu_mutex_unlock(&mon->out_lock);
2724b180 5202 break;
86e94dea 5203
b6b8df56 5204 case CHR_EVENT_OPENED:
2724b180
AL
5205 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
5206 "information\n", QEMU_VERSION);
a7aec5da 5207 if (!mon->mux_out) {
e5554e20 5208 readline_restart(mon->rs);
2724b180 5209 readline_show_prompt(mon->rs);
a7aec5da
GH
5210 }
5211 mon->reset_seen = 1;
efb87c16
CB
5212 mon_refcount++;
5213 break;
5214
5215 case CHR_EVENT_CLOSED:
5216 mon_refcount--;
5217 monitor_fdsets_cleanup();
2724b180
AL
5218 break;
5219 }
86e94dea
TS
5220}
5221
816f8925
WX
5222static int
5223compare_mon_cmd(const void *a, const void *b)
5224{
5225 return strcmp(((const mon_cmd_t *)a)->name,
5226 ((const mon_cmd_t *)b)->name);
5227}
5228
5229static void sortcmdlist(void)
5230{
5231 int array_num;
5232 int elem_size = sizeof(mon_cmd_t);
5233
5234 array_num = sizeof(mon_cmds)/elem_size-1;
5235 qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd);
5236
5237 array_num = sizeof(info_cmds)/elem_size-1;
5238 qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd);
5239}
5240
76655d6d
AL
5241
5242/*
5243 * Local variables:
5244 * c-indent-level: 4
5245 * c-basic-offset: 4
5246 * tab-width: 8
5247 * End:
5248 */
5249
c60bf339
SH
5250/* These functions just adapt the readline interface in a typesafe way. We
5251 * could cast function pointers but that discards compiler checks.
5252 */
d5d1507b
SW
5253static void GCC_FMT_ATTR(2, 3) monitor_readline_printf(void *opaque,
5254 const char *fmt, ...)
c60bf339
SH
5255{
5256 va_list ap;
5257 va_start(ap, fmt);
5258 monitor_vprintf(opaque, fmt, ap);
5259 va_end(ap);
5260}
5261
5262static void monitor_readline_flush(void *opaque)
5263{
5264 monitor_flush(opaque);
5265}
5266
d622cb58
PB
5267static void __attribute__((constructor)) monitor_lock_init(void)
5268{
5269 qemu_mutex_init(&monitor_lock);
5270}
5271
731b0364 5272void monitor_init(CharDriverState *chr, int flags)
aa455485 5273{
731b0364 5274 static int is_first_init = 1;
87127161 5275 Monitor *mon;
20d8a3ed
TS
5276
5277 if (is_first_init) {
43a14cfc 5278 monitor_qapi_event_init();
d038317c 5279 sortcmdlist();
20d8a3ed
TS
5280 is_first_init = 0;
5281 }
87127161 5282
b01fe89e
WX
5283 mon = g_malloc(sizeof(*mon));
5284 monitor_data_init(mon);
20d8a3ed 5285
87127161 5286 mon->chr = chr;
731b0364 5287 mon->flags = flags;
cde76ee1 5288 if (flags & MONITOR_USE_READLINE) {
c60bf339
SH
5289 mon->rs = readline_init(monitor_readline_printf,
5290 monitor_readline_flush,
5291 mon,
5292 monitor_find_completion);
cde76ee1
AL
5293 monitor_read_command(mon, 0);
5294 }
87127161 5295
9f3982f2 5296 if (monitor_is_qmp(mon)) {
c83fe23b
MA
5297 qemu_chr_add_handlers(chr, monitor_can_read, monitor_qmp_read,
5298 monitor_qmp_event, mon);
15f31519 5299 qemu_chr_fe_set_echo(chr, true);
74358f2a 5300 json_message_parser_init(&mon->qmp.parser, handle_qmp_command);
9b57c02e
LC
5301 } else {
5302 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
5303 monitor_event, mon);
5304 }
87127161 5305
d622cb58 5306 qemu_mutex_lock(&monitor_lock);
72cf2d4f 5307 QLIST_INSERT_HEAD(&mon_list, mon, entry);
d622cb58 5308 qemu_mutex_unlock(&monitor_lock);
aa455485
FB
5309}
5310
c60bf339
SH
5311static void bdrv_password_cb(void *opaque, const char *password,
5312 void *readline_opaque)
81d0912d 5313{
c60bf339
SH
5314 Monitor *mon = opaque;
5315 BlockDriverState *bs = readline_opaque;
bb5fc20f 5316 int ret = 0;
4d2855a3 5317 Error *local_err = NULL;
81d0912d 5318
4d2855a3
MA
5319 bdrv_add_key(bs, password, &local_err);
5320 if (local_err) {
5321 monitor_printf(mon, "%s\n", error_get_pretty(local_err));
5322 error_free(local_err);
bb5fc20f 5323 ret = -EPERM;
9dc39cba 5324 }
731b0364
AL
5325 if (mon->password_completion_cb)
5326 mon->password_completion_cb(mon->password_opaque, ret);
bb5fc20f 5327
731b0364 5328 monitor_read_command(mon, 1);
9dc39cba 5329}
c0f4ce77 5330
0bbc47bb 5331int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
097310b5 5332 BlockCompletionFunc *completion_cb,
0bbc47bb 5333 void *opaque)
c0f4ce77 5334{
cde76ee1
AL
5335 int err;
5336
376253ec
AL
5337 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
5338 bdrv_get_encrypted_filename(bs));
bb5fc20f 5339
731b0364
AL
5340 mon->password_completion_cb = completion_cb;
5341 mon->password_opaque = opaque;
bb5fc20f 5342
cde76ee1
AL
5343 err = monitor_read_password(mon, bdrv_password_cb, bs);
5344
5345 if (err && completion_cb)
5346 completion_cb(opaque, err);
0bbc47bb
LC
5347
5348 return err;
c0f4ce77 5349}
e42e818b
LC
5350
5351int monitor_read_block_device_key(Monitor *mon, const char *device,
097310b5 5352 BlockCompletionFunc *completion_cb,
e42e818b
LC
5353 void *opaque)
5354{
9b14e0ef 5355 Error *err = NULL;
5560625b 5356 BlockBackend *blk;
e42e818b 5357
5560625b
FZ
5358 blk = blk_by_name(device);
5359 if (!blk) {
e42e818b
LC
5360 monitor_printf(mon, "Device not found %s\n", device);
5361 return -1;
5362 }
5363
9b14e0ef
MA
5364 bdrv_add_key(blk_bs(blk), NULL, &err);
5365 if (err) {
5366 error_free(err);
5367 return monitor_read_bdrv_key_start(mon, blk_bs(blk), completion_cb, opaque);
5368 }
5369
5370 if (completion_cb) {
5371 completion_cb(opaque, 0);
5372 }
5373 return 0;
e42e818b 5374}
4d454574
PB
5375
5376QemuOptsList qemu_mon_opts = {
5377 .name = "mon",
5378 .implied_opt_name = "chardev",
5379 .head = QTAILQ_HEAD_INITIALIZER(qemu_mon_opts.head),
5380 .desc = {
5381 {
5382 .name = "mode",
5383 .type = QEMU_OPT_STRING,
5384 },{
5385 .name = "chardev",
5386 .type = QEMU_OPT_STRING,
5387 },{
5388 .name = "default",
5389 .type = QEMU_OPT_BOOL,
5390 },{
5391 .name = "pretty",
5392 .type = QEMU_OPT_BOOL,
5393 },
5394 { /* end of list */ }
5395 },
5396};
f2ae8abf
MT
5397
5398#ifndef TARGET_I386
5399void qmp_rtc_reset_reinjection(Error **errp)
5400{
c6bd8c70 5401 error_setg(errp, QERR_FEATURE_DISABLED, "rtc-reset-reinjection");
f2ae8abf
MT
5402}
5403#endif
7ee0c3e3
JH
5404
5405#ifndef TARGET_S390X
5406void qmp_dump_skeys(const char *filename, Error **errp)
5407{
5408 error_setg(errp, QERR_FEATURE_DISABLED, "dump-skeys");
5409}
5410#endif