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