Merge branch 'upstream-merge'
[qemu-kvm.git] / monitor.c
blob6e828f91fcc353114c2d80d70d1628b21cde69c4
1 /*
2 * QEMU monitor
4 * Copyright (c) 2003-2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
24 #include <dirent.h>
25 #include "hw/hw.h"
26 #include "hw/qdev.h"
27 #include "hw/usb.h"
28 #include "hw/pcmcia.h"
29 #include "hw/pc.h"
30 #include "hw/pci.h"
31 #include "hw/watchdog.h"
32 #include "hw/loader.h"
33 #include "gdbstub.h"
34 #include "net.h"
35 #include "net/slirp.h"
36 #include "qemu-char.h"
37 #include "ui/qemu-spice.h"
38 #include "sysemu.h"
39 #include "monitor.h"
40 #include "readline.h"
41 #include "console.h"
42 #include "blockdev.h"
43 #include "audio/audio.h"
44 #include "disas.h"
45 #include "balloon.h"
46 #include "qemu-timer.h"
47 #include "migration.h"
48 #include "kvm.h"
49 #include "acl.h"
50 #include "qint.h"
51 #include "qfloat.h"
52 #include "qlist.h"
53 #include "qbool.h"
54 #include "qstring.h"
55 #include "qjson.h"
56 #include "json-streamer.h"
57 #include "json-parser.h"
58 #include "osdep.h"
59 #include "cpu.h"
60 #include "trace.h"
61 #include "trace/control.h"
62 #ifdef CONFIG_TRACE_SIMPLE
63 #include "trace/simple.h"
64 #endif
65 #include "ui/qemu-spice.h"
66 #include "memory.h"
67 #include "qmp-commands.h"
68 #include "hmp.h"
69 #include "qemu-thread.h"
71 /* for pic/irq_info */
72 #if defined(TARGET_SPARC)
73 #include "hw/sun4m.h"
74 #endif
75 #include "hw/lm32_pic.h"
77 //#define DEBUG
78 //#define DEBUG_COMPLETION
81 * Supported types:
83 * 'F' filename
84 * 'B' block device name
85 * 's' string (accept optional quote)
86 * 'O' option string of the form NAME=VALUE,...
87 * parsed according to QemuOptsList given by its name
88 * Example: 'device:O' uses qemu_device_opts.
89 * Restriction: only lists with empty desc are supported
90 * TODO lift the restriction
91 * 'i' 32 bit integer
92 * 'l' target long (32 or 64 bit)
93 * 'M' Non-negative target long (32 or 64 bit), in user mode the
94 * value is multiplied by 2^20 (think Mebibyte)
95 * 'o' octets (aka bytes)
96 * user mode accepts an optional T, t, G, g, M, m, K, k
97 * suffix, which multiplies the value by 2^40 for
98 * suffixes T and t, 2^30 for suffixes G and g, 2^20 for
99 * M and m, 2^10 for K and k
100 * 'T' double
101 * user mode accepts an optional ms, us, ns suffix,
102 * which divides the value by 1e3, 1e6, 1e9, respectively
103 * '/' optional gdb-like print format (like "/10x")
105 * '?' optional type (for all types, except '/')
106 * '.' other form of optional type (for 'i' and 'l')
107 * 'b' boolean
108 * user mode accepts "on" or "off"
109 * '-' optional parameter (eg. '-f')
113 typedef struct MonitorCompletionData MonitorCompletionData;
114 struct MonitorCompletionData {
115 Monitor *mon;
116 void (*user_print)(Monitor *mon, const QObject *data);
119 typedef struct mon_cmd_t {
120 const char *name;
121 const char *args_type;
122 const char *params;
123 const char *help;
124 void (*user_print)(Monitor *mon, const QObject *data);
125 union {
126 void (*info)(Monitor *mon);
127 void (*cmd)(Monitor *mon, const QDict *qdict);
128 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
129 int (*cmd_async)(Monitor *mon, const QDict *params,
130 MonitorCompletion *cb, void *opaque);
131 } mhandler;
132 int flags;
133 } mon_cmd_t;
135 /* file descriptors passed via SCM_RIGHTS */
136 typedef struct mon_fd_t mon_fd_t;
137 struct mon_fd_t {
138 char *name;
139 int fd;
140 QLIST_ENTRY(mon_fd_t) next;
143 /* file descriptor associated with a file descriptor set */
144 typedef struct MonFdsetFd MonFdsetFd;
145 struct MonFdsetFd {
146 int fd;
147 bool removed;
148 char *opaque;
149 QLIST_ENTRY(MonFdsetFd) next;
152 /* file descriptor set containing fds passed via SCM_RIGHTS */
153 typedef struct MonFdset MonFdset;
154 struct MonFdset {
155 int64_t id;
156 QLIST_HEAD(, MonFdsetFd) fds;
157 QLIST_HEAD(, MonFdsetFd) dup_fds;
158 QLIST_ENTRY(MonFdset) next;
161 typedef struct MonitorControl {
162 QObject *id;
163 JSONMessageParser parser;
164 int command_mode;
165 } MonitorControl;
168 * To prevent flooding clients, events can be throttled. The
169 * throttling is calculated globally, rather than per-Monitor
170 * instance.
172 typedef struct MonitorEventState {
173 MonitorEvent event; /* Event being tracked */
174 int64_t rate; /* Period over which to throttle. 0 to disable */
175 int64_t last; /* Time at which event was last emitted */
176 QEMUTimer *timer; /* Timer for handling delayed events */
177 QObject *data; /* Event pending delayed dispatch */
178 } MonitorEventState;
180 struct Monitor {
181 CharDriverState *chr;
182 int mux_out;
183 int reset_seen;
184 int flags;
185 int suspend_cnt;
186 uint8_t outbuf[1024];
187 int outbuf_index;
188 ReadLineState *rs;
189 MonitorControl *mc;
190 CPUArchState *mon_cpu;
191 BlockDriverCompletionFunc *password_completion_cb;
192 void *password_opaque;
193 QError *error;
194 QLIST_HEAD(,mon_fd_t) fds;
195 QLIST_ENTRY(Monitor) entry;
198 /* QMP checker flags */
199 #define QMP_ACCEPT_UNKNOWNS 1
201 static QLIST_HEAD(mon_list, Monitor) mon_list;
202 static QLIST_HEAD(mon_fdsets, MonFdset) mon_fdsets;
203 static int mon_refcount;
205 static mon_cmd_t mon_cmds[];
206 static mon_cmd_t info_cmds[];
208 static const mon_cmd_t qmp_cmds[];
210 Monitor *cur_mon;
211 Monitor *default_mon;
213 static void monitor_command_cb(Monitor *mon, const char *cmdline,
214 void *opaque);
216 static inline int qmp_cmd_mode(const Monitor *mon)
218 return (mon->mc ? mon->mc->command_mode : 0);
221 /* Return true if in control mode, false otherwise */
222 static inline int monitor_ctrl_mode(const Monitor *mon)
224 return (mon->flags & MONITOR_USE_CONTROL);
227 /* Return non-zero iff we have a current monitor, and it is in QMP mode. */
228 int monitor_cur_is_qmp(void)
230 return cur_mon && monitor_ctrl_mode(cur_mon);
233 void monitor_read_command(Monitor *mon, int show_prompt)
235 if (!mon->rs)
236 return;
238 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
239 if (show_prompt)
240 readline_show_prompt(mon->rs);
243 int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
244 void *opaque)
246 if (monitor_ctrl_mode(mon)) {
247 qerror_report(QERR_MISSING_PARAMETER, "password");
248 return -EINVAL;
249 } else if (mon->rs) {
250 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
251 /* prompt is printed on return from the command handler */
252 return 0;
253 } else {
254 monitor_printf(mon, "terminal does not support password prompting\n");
255 return -ENOTTY;
259 void monitor_flush(Monitor *mon)
261 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
262 qemu_chr_fe_write(mon->chr, mon->outbuf, mon->outbuf_index);
263 mon->outbuf_index = 0;
267 /* flush at every end of line or if the buffer is full */
268 static void monitor_puts(Monitor *mon, const char *str)
270 char c;
272 for(;;) {
273 c = *str++;
274 if (c == '\0')
275 break;
276 if (c == '\n')
277 mon->outbuf[mon->outbuf_index++] = '\r';
278 mon->outbuf[mon->outbuf_index++] = c;
279 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
280 || c == '\n')
281 monitor_flush(mon);
285 void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
287 char buf[4096];
289 if (!mon)
290 return;
292 if (monitor_ctrl_mode(mon)) {
293 return;
296 vsnprintf(buf, sizeof(buf), fmt, ap);
297 monitor_puts(mon, buf);
300 void monitor_printf(Monitor *mon, const char *fmt, ...)
302 va_list ap;
303 va_start(ap, fmt);
304 monitor_vprintf(mon, fmt, ap);
305 va_end(ap);
308 void monitor_print_filename(Monitor *mon, const char *filename)
310 int i;
312 for (i = 0; filename[i]; i++) {
313 switch (filename[i]) {
314 case ' ':
315 case '"':
316 case '\\':
317 monitor_printf(mon, "\\%c", filename[i]);
318 break;
319 case '\t':
320 monitor_printf(mon, "\\t");
321 break;
322 case '\r':
323 monitor_printf(mon, "\\r");
324 break;
325 case '\n':
326 monitor_printf(mon, "\\n");
327 break;
328 default:
329 monitor_printf(mon, "%c", filename[i]);
330 break;
335 static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
336 const char *fmt, ...)
338 va_list ap;
339 va_start(ap, fmt);
340 monitor_vprintf((Monitor *)stream, fmt, ap);
341 va_end(ap);
342 return 0;
345 static void monitor_user_noop(Monitor *mon, const QObject *data) { }
347 static inline int handler_is_qobject(const mon_cmd_t *cmd)
349 return cmd->user_print != NULL;
352 static inline bool handler_is_async(const mon_cmd_t *cmd)
354 return cmd->flags & MONITOR_CMD_ASYNC;
357 static inline int monitor_has_error(const Monitor *mon)
359 return mon->error != NULL;
362 static void monitor_json_emitter(Monitor *mon, const QObject *data)
364 QString *json;
366 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
367 qobject_to_json(data);
368 assert(json != NULL);
370 qstring_append_chr(json, '\n');
371 monitor_puts(mon, qstring_get_str(json));
373 QDECREF(json);
376 static QDict *build_qmp_error_dict(const QError *err)
378 QObject *obj;
380 obj = qobject_from_jsonf("{ 'error': { 'class': %s, 'desc': %p } }",
381 ErrorClass_lookup[err->err_class],
382 qerror_human(err));
384 return qobject_to_qdict(obj);
387 static void monitor_protocol_emitter(Monitor *mon, QObject *data)
389 QDict *qmp;
391 trace_monitor_protocol_emitter(mon);
393 if (!monitor_has_error(mon)) {
394 /* success response */
395 qmp = qdict_new();
396 if (data) {
397 qobject_incref(data);
398 qdict_put_obj(qmp, "return", data);
399 } else {
400 /* return an empty QDict by default */
401 qdict_put(qmp, "return", qdict_new());
403 } else {
404 /* error response */
405 qmp = build_qmp_error_dict(mon->error);
406 QDECREF(mon->error);
407 mon->error = NULL;
410 if (mon->mc->id) {
411 qdict_put_obj(qmp, "id", mon->mc->id);
412 mon->mc->id = NULL;
415 monitor_json_emitter(mon, QOBJECT(qmp));
416 QDECREF(qmp);
419 static void timestamp_put(QDict *qdict)
421 int err;
422 QObject *obj;
423 qemu_timeval tv;
425 err = qemu_gettimeofday(&tv);
426 if (err < 0)
427 return;
429 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
430 "'microseconds': %" PRId64 " }",
431 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
432 qdict_put_obj(qdict, "timestamp", obj);
436 static const char *monitor_event_names[] = {
437 [QEVENT_SHUTDOWN] = "SHUTDOWN",
438 [QEVENT_RESET] = "RESET",
439 [QEVENT_POWERDOWN] = "POWERDOWN",
440 [QEVENT_STOP] = "STOP",
441 [QEVENT_RESUME] = "RESUME",
442 [QEVENT_VNC_CONNECTED] = "VNC_CONNECTED",
443 [QEVENT_VNC_INITIALIZED] = "VNC_INITIALIZED",
444 [QEVENT_VNC_DISCONNECTED] = "VNC_DISCONNECTED",
445 [QEVENT_BLOCK_IO_ERROR] = "BLOCK_IO_ERROR",
446 [QEVENT_RTC_CHANGE] = "RTC_CHANGE",
447 [QEVENT_WATCHDOG] = "WATCHDOG",
448 [QEVENT_SPICE_CONNECTED] = "SPICE_CONNECTED",
449 [QEVENT_SPICE_INITIALIZED] = "SPICE_INITIALIZED",
450 [QEVENT_SPICE_DISCONNECTED] = "SPICE_DISCONNECTED",
451 [QEVENT_BLOCK_JOB_COMPLETED] = "BLOCK_JOB_COMPLETED",
452 [QEVENT_BLOCK_JOB_CANCELLED] = "BLOCK_JOB_CANCELLED",
453 [QEVENT_BLOCK_JOB_ERROR] = "BLOCK_JOB_ERROR",
454 [QEVENT_DEVICE_TRAY_MOVED] = "DEVICE_TRAY_MOVED",
455 [QEVENT_SUSPEND] = "SUSPEND",
456 [QEVENT_SUSPEND_DISK] = "SUSPEND_DISK",
457 [QEVENT_WAKEUP] = "WAKEUP",
458 [QEVENT_BALLOON_CHANGE] = "BALLOON_CHANGE",
459 [QEVENT_SPICE_MIGRATE_COMPLETED] = "SPICE_MIGRATE_COMPLETED",
461 QEMU_BUILD_BUG_ON(ARRAY_SIZE(monitor_event_names) != QEVENT_MAX)
463 MonitorEventState monitor_event_state[QEVENT_MAX];
464 QemuMutex monitor_event_state_lock;
467 * Emits the event to every monitor instance
469 static void
470 monitor_protocol_event_emit(MonitorEvent event,
471 QObject *data)
473 Monitor *mon;
475 trace_monitor_protocol_event_emit(event, data);
476 QLIST_FOREACH(mon, &mon_list, entry) {
477 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
478 monitor_json_emitter(mon, data);
485 * Queue a new event for emission to Monitor instances,
486 * applying any rate limiting if required.
488 static void
489 monitor_protocol_event_queue(MonitorEvent event,
490 QObject *data)
492 MonitorEventState *evstate;
493 int64_t now = qemu_get_clock_ns(rt_clock);
494 assert(event < QEVENT_MAX);
496 qemu_mutex_lock(&monitor_event_state_lock);
497 evstate = &(monitor_event_state[event]);
498 trace_monitor_protocol_event_queue(event,
499 data,
500 evstate->rate,
501 evstate->last,
502 now);
504 /* Rate limit of 0 indicates no throttling */
505 if (!evstate->rate) {
506 monitor_protocol_event_emit(event, data);
507 evstate->last = now;
508 } else {
509 int64_t delta = now - evstate->last;
510 if (evstate->data ||
511 delta < evstate->rate) {
512 /* If there's an existing event pending, replace
513 * it with the new event, otherwise schedule a
514 * timer for delayed emission
516 if (evstate->data) {
517 qobject_decref(evstate->data);
518 } else {
519 int64_t then = evstate->last + evstate->rate;
520 qemu_mod_timer_ns(evstate->timer, then);
522 evstate->data = data;
523 qobject_incref(evstate->data);
524 } else {
525 monitor_protocol_event_emit(event, data);
526 evstate->last = now;
529 qemu_mutex_unlock(&monitor_event_state_lock);
534 * The callback invoked by QemuTimer when a delayed
535 * event is ready to be emitted
537 static void monitor_protocol_event_handler(void *opaque)
539 MonitorEventState *evstate = opaque;
540 int64_t now = qemu_get_clock_ns(rt_clock);
542 qemu_mutex_lock(&monitor_event_state_lock);
544 trace_monitor_protocol_event_handler(evstate->event,
545 evstate->data,
546 evstate->last,
547 now);
548 if (evstate->data) {
549 monitor_protocol_event_emit(evstate->event, evstate->data);
550 qobject_decref(evstate->data);
551 evstate->data = NULL;
553 evstate->last = now;
554 qemu_mutex_unlock(&monitor_event_state_lock);
559 * @event: the event ID to be limited
560 * @rate: the rate limit in milliseconds
562 * Sets a rate limit on a particular event, so no
563 * more than 1 event will be emitted within @rate
564 * milliseconds
566 static void
567 monitor_protocol_event_throttle(MonitorEvent event,
568 int64_t rate)
570 MonitorEventState *evstate;
571 assert(event < QEVENT_MAX);
573 evstate = &(monitor_event_state[event]);
575 trace_monitor_protocol_event_throttle(event, rate);
576 evstate->event = event;
577 evstate->rate = rate * SCALE_MS;
578 evstate->timer = qemu_new_timer(rt_clock,
579 SCALE_MS,
580 monitor_protocol_event_handler,
581 evstate);
582 evstate->last = 0;
583 evstate->data = NULL;
587 /* Global, one-time initializer to configure the rate limiting
588 * and initialize state */
589 static void monitor_protocol_event_init(void)
591 qemu_mutex_init(&monitor_event_state_lock);
592 /* Limit RTC & BALLOON events to 1 per second */
593 monitor_protocol_event_throttle(QEVENT_RTC_CHANGE, 1000);
594 monitor_protocol_event_throttle(QEVENT_BALLOON_CHANGE, 1000);
595 monitor_protocol_event_throttle(QEVENT_WATCHDOG, 1000);
599 * monitor_protocol_event(): Generate a Monitor event
601 * Event-specific data can be emitted through the (optional) 'data' parameter.
603 void monitor_protocol_event(MonitorEvent event, QObject *data)
605 QDict *qmp;
606 const char *event_name;
608 assert(event < QEVENT_MAX);
610 event_name = monitor_event_names[event];
611 assert(event_name != NULL);
613 qmp = qdict_new();
614 timestamp_put(qmp);
615 qdict_put(qmp, "event", qstring_from_str(event_name));
616 if (data) {
617 qobject_incref(data);
618 qdict_put_obj(qmp, "data", data);
621 trace_monitor_protocol_event(event, event_name, qmp);
622 monitor_protocol_event_queue(event, QOBJECT(qmp));
623 QDECREF(qmp);
626 static int do_qmp_capabilities(Monitor *mon, const QDict *params,
627 QObject **ret_data)
629 /* Will setup QMP capabilities in the future */
630 if (monitor_ctrl_mode(mon)) {
631 mon->mc->command_mode = 1;
634 return 0;
637 static void handle_user_command(Monitor *mon, const char *cmdline);
639 char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index,
640 int64_t cpu_index, Error **errp)
642 char *output = NULL;
643 Monitor *old_mon, hmp;
644 CharDriverState mchar;
646 memset(&hmp, 0, sizeof(hmp));
647 qemu_chr_init_mem(&mchar);
648 hmp.chr = &mchar;
650 old_mon = cur_mon;
651 cur_mon = &hmp;
653 if (has_cpu_index) {
654 int ret = monitor_set_cpu(cpu_index);
655 if (ret < 0) {
656 cur_mon = old_mon;
657 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
658 "a CPU number");
659 goto out;
663 handle_user_command(&hmp, command_line);
664 cur_mon = old_mon;
666 if (qemu_chr_mem_osize(hmp.chr) > 0) {
667 QString *str = qemu_chr_mem_to_qs(hmp.chr);
668 output = g_strdup(qstring_get_str(str));
669 QDECREF(str);
670 } else {
671 output = g_strdup("");
674 out:
675 qemu_chr_close_mem(hmp.chr);
676 return output;
679 static int compare_cmd(const char *name, const char *list)
681 const char *p, *pstart;
682 int len;
683 len = strlen(name);
684 p = list;
685 for(;;) {
686 pstart = p;
687 p = strchr(p, '|');
688 if (!p)
689 p = pstart + strlen(pstart);
690 if ((p - pstart) == len && !memcmp(pstart, name, len))
691 return 1;
692 if (*p == '\0')
693 break;
694 p++;
696 return 0;
699 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
700 const char *prefix, const char *name)
702 const mon_cmd_t *cmd;
704 for(cmd = cmds; cmd->name != NULL; cmd++) {
705 if (!name || !strcmp(name, cmd->name))
706 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
707 cmd->params, cmd->help);
711 static void help_cmd(Monitor *mon, const char *name)
713 if (name && !strcmp(name, "info")) {
714 help_cmd_dump(mon, info_cmds, "info ", NULL);
715 } else {
716 help_cmd_dump(mon, mon_cmds, "", name);
717 if (name && !strcmp(name, "log")) {
718 const CPULogItem *item;
719 monitor_printf(mon, "Log items (comma separated):\n");
720 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
721 for(item = cpu_log_items; item->mask != 0; item++) {
722 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
728 static void do_help_cmd(Monitor *mon, const QDict *qdict)
730 help_cmd(mon, qdict_get_try_str(qdict, "name"));
733 static void do_trace_event_set_state(Monitor *mon, const QDict *qdict)
735 const char *tp_name = qdict_get_str(qdict, "name");
736 bool new_state = qdict_get_bool(qdict, "option");
737 int ret = trace_event_set_state(tp_name, new_state);
739 if (!ret) {
740 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
744 #ifdef CONFIG_TRACE_SIMPLE
745 static void do_trace_file(Monitor *mon, const QDict *qdict)
747 const char *op = qdict_get_try_str(qdict, "op");
748 const char *arg = qdict_get_try_str(qdict, "arg");
750 if (!op) {
751 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
752 } else if (!strcmp(op, "on")) {
753 st_set_trace_file_enabled(true);
754 } else if (!strcmp(op, "off")) {
755 st_set_trace_file_enabled(false);
756 } else if (!strcmp(op, "flush")) {
757 st_flush_trace_buffer();
758 } else if (!strcmp(op, "set")) {
759 if (arg) {
760 st_set_trace_file(arg);
762 } else {
763 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
764 help_cmd(mon, "trace-file");
767 #endif
769 static void user_monitor_complete(void *opaque, QObject *ret_data)
771 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
773 if (ret_data) {
774 data->user_print(data->mon, ret_data);
776 monitor_resume(data->mon);
777 g_free(data);
780 static void qmp_monitor_complete(void *opaque, QObject *ret_data)
782 monitor_protocol_emitter(opaque, ret_data);
785 static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
786 const QDict *params)
788 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
791 static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
792 const QDict *params)
794 int ret;
796 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
797 cb_data->mon = mon;
798 cb_data->user_print = cmd->user_print;
799 monitor_suspend(mon);
800 ret = cmd->mhandler.cmd_async(mon, params,
801 user_monitor_complete, cb_data);
802 if (ret < 0) {
803 monitor_resume(mon);
804 g_free(cb_data);
808 static void do_info(Monitor *mon, const QDict *qdict)
810 const mon_cmd_t *cmd;
811 const char *item = qdict_get_try_str(qdict, "item");
813 if (!item) {
814 goto help;
817 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
818 if (compare_cmd(item, cmd->name))
819 break;
822 if (cmd->name == NULL) {
823 goto help;
826 cmd->mhandler.info(mon);
827 return;
829 help:
830 help_cmd(mon, "info");
833 CommandInfoList *qmp_query_commands(Error **errp)
835 CommandInfoList *info, *cmd_list = NULL;
836 const mon_cmd_t *cmd;
838 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
839 info = g_malloc0(sizeof(*info));
840 info->value = g_malloc0(sizeof(*info->value));
841 info->value->name = g_strdup(cmd->name);
843 info->next = cmd_list;
844 cmd_list = info;
847 return cmd_list;
850 EventInfoList *qmp_query_events(Error **errp)
852 EventInfoList *info, *ev_list = NULL;
853 MonitorEvent e;
855 for (e = 0 ; e < QEVENT_MAX ; e++) {
856 const char *event_name = monitor_event_names[e];
857 assert(event_name != NULL);
858 info = g_malloc0(sizeof(*info));
859 info->value = g_malloc0(sizeof(*info->value));
860 info->value->name = g_strdup(event_name);
862 info->next = ev_list;
863 ev_list = info;
866 return ev_list;
869 /* set the current CPU defined by the user */
870 int monitor_set_cpu(int cpu_index)
872 CPUArchState *env;
874 for(env = first_cpu; env != NULL; env = env->next_cpu) {
875 if (env->cpu_index == cpu_index) {
876 cur_mon->mon_cpu = env;
877 return 0;
880 return -1;
883 static CPUArchState *mon_get_cpu(void)
885 if (!cur_mon->mon_cpu) {
886 monitor_set_cpu(0);
888 cpu_synchronize_state(cur_mon->mon_cpu);
889 return cur_mon->mon_cpu;
892 int monitor_get_cpu_index(void)
894 return mon_get_cpu()->cpu_index;
897 static void do_info_registers(Monitor *mon)
899 CPUArchState *env;
900 env = mon_get_cpu();
901 cpu_dump_state(env, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU);
904 static void do_cpu_set_nr(Monitor *mon, const QDict *qdict)
906 int state, value;
907 const char *status;
909 status = qdict_get_str(qdict, "state");
910 value = qdict_get_int(qdict, "cpu");
912 if (!strcmp(status, "online"))
913 state = 1;
914 else if (!strcmp(status, "offline"))
915 state = 0;
916 else {
917 monitor_printf(mon, "invalid status: %s\n", status);
918 return;
920 #if defined(TARGET_I386) || defined(TARGET_X86_64)
921 qemu_system_cpu_hot_add(value, state);
922 #endif
925 static void do_info_jit(Monitor *mon)
927 dump_exec_info((FILE *)mon, monitor_fprintf);
930 static void do_info_history(Monitor *mon)
932 int i;
933 const char *str;
935 if (!mon->rs)
936 return;
937 i = 0;
938 for(;;) {
939 str = readline_get_history(mon->rs, i);
940 if (!str)
941 break;
942 monitor_printf(mon, "%d: '%s'\n", i, str);
943 i++;
947 #if defined(TARGET_PPC)
948 /* XXX: not implemented in other targets */
949 static void do_info_cpu_stats(Monitor *mon)
951 CPUArchState *env;
953 env = mon_get_cpu();
954 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
956 #endif
958 static void do_trace_print_events(Monitor *mon)
960 trace_print_events((FILE *)mon, &monitor_fprintf);
963 static int client_migrate_info(Monitor *mon, const QDict *qdict,
964 MonitorCompletion cb, void *opaque)
966 const char *protocol = qdict_get_str(qdict, "protocol");
967 const char *hostname = qdict_get_str(qdict, "hostname");
968 const char *subject = qdict_get_try_str(qdict, "cert-subject");
969 int port = qdict_get_try_int(qdict, "port", -1);
970 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
971 int ret;
973 if (strcmp(protocol, "spice") == 0) {
974 if (!using_spice) {
975 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
976 return -1;
979 if (port == -1 && tls_port == -1) {
980 qerror_report(QERR_MISSING_PARAMETER, "port/tls-port");
981 return -1;
984 ret = qemu_spice_migrate_info(hostname, port, tls_port, subject,
985 cb, opaque);
986 if (ret != 0) {
987 qerror_report(QERR_UNDEFINED_ERROR);
988 return -1;
990 return 0;
993 qerror_report(QERR_INVALID_PARAMETER, "protocol");
994 return -1;
997 static void do_logfile(Monitor *mon, const QDict *qdict)
999 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
1002 static void do_log(Monitor *mon, const QDict *qdict)
1004 int mask;
1005 const char *items = qdict_get_str(qdict, "items");
1007 if (!strcmp(items, "none")) {
1008 mask = 0;
1009 } else {
1010 mask = cpu_str_to_log_mask(items);
1011 if (!mask) {
1012 help_cmd(mon, "log");
1013 return;
1016 cpu_set_log(mask);
1019 static void do_singlestep(Monitor *mon, const QDict *qdict)
1021 const char *option = qdict_get_try_str(qdict, "option");
1022 if (!option || !strcmp(option, "on")) {
1023 singlestep = 1;
1024 } else if (!strcmp(option, "off")) {
1025 singlestep = 0;
1026 } else {
1027 monitor_printf(mon, "unexpected option %s\n", option);
1031 static void do_gdbserver(Monitor *mon, const QDict *qdict)
1033 const char *device = qdict_get_try_str(qdict, "device");
1034 if (!device)
1035 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1036 if (gdbserver_start(device) < 0) {
1037 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1038 device);
1039 } else if (strcmp(device, "none") == 0) {
1040 monitor_printf(mon, "Disabled gdbserver\n");
1041 } else {
1042 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1043 device);
1047 static void do_watchdog_action(Monitor *mon, const QDict *qdict)
1049 const char *action = qdict_get_str(qdict, "action");
1050 if (select_watchdog_action(action) == -1) {
1051 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1055 static void monitor_printc(Monitor *mon, int c)
1057 monitor_printf(mon, "'");
1058 switch(c) {
1059 case '\'':
1060 monitor_printf(mon, "\\'");
1061 break;
1062 case '\\':
1063 monitor_printf(mon, "\\\\");
1064 break;
1065 case '\n':
1066 monitor_printf(mon, "\\n");
1067 break;
1068 case '\r':
1069 monitor_printf(mon, "\\r");
1070 break;
1071 default:
1072 if (c >= 32 && c <= 126) {
1073 monitor_printf(mon, "%c", c);
1074 } else {
1075 monitor_printf(mon, "\\x%02x", c);
1077 break;
1079 monitor_printf(mon, "'");
1082 static void memory_dump(Monitor *mon, int count, int format, int wsize,
1083 target_phys_addr_t addr, int is_physical)
1085 CPUArchState *env;
1086 int l, line_size, i, max_digits, len;
1087 uint8_t buf[16];
1088 uint64_t v;
1090 if (format == 'i') {
1091 int flags;
1092 flags = 0;
1093 env = mon_get_cpu();
1094 #ifdef TARGET_I386
1095 if (wsize == 2) {
1096 flags = 1;
1097 } else if (wsize == 4) {
1098 flags = 0;
1099 } else {
1100 /* as default we use the current CS size */
1101 flags = 0;
1102 if (env) {
1103 #ifdef TARGET_X86_64
1104 if ((env->efer & MSR_EFER_LMA) &&
1105 (env->segs[R_CS].flags & DESC_L_MASK))
1106 flags = 2;
1107 else
1108 #endif
1109 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1110 flags = 1;
1113 #endif
1114 monitor_disas(mon, env, addr, count, is_physical, flags);
1115 return;
1118 len = wsize * count;
1119 if (wsize == 1)
1120 line_size = 8;
1121 else
1122 line_size = 16;
1123 max_digits = 0;
1125 switch(format) {
1126 case 'o':
1127 max_digits = (wsize * 8 + 2) / 3;
1128 break;
1129 default:
1130 case 'x':
1131 max_digits = (wsize * 8) / 4;
1132 break;
1133 case 'u':
1134 case 'd':
1135 max_digits = (wsize * 8 * 10 + 32) / 33;
1136 break;
1137 case 'c':
1138 wsize = 1;
1139 break;
1142 while (len > 0) {
1143 if (is_physical)
1144 monitor_printf(mon, TARGET_FMT_plx ":", addr);
1145 else
1146 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
1147 l = len;
1148 if (l > line_size)
1149 l = line_size;
1150 if (is_physical) {
1151 cpu_physical_memory_read(addr, buf, l);
1152 } else {
1153 env = mon_get_cpu();
1154 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
1155 monitor_printf(mon, " Cannot access memory\n");
1156 break;
1159 i = 0;
1160 while (i < l) {
1161 switch(wsize) {
1162 default:
1163 case 1:
1164 v = ldub_raw(buf + i);
1165 break;
1166 case 2:
1167 v = lduw_raw(buf + i);
1168 break;
1169 case 4:
1170 v = (uint32_t)ldl_raw(buf + i);
1171 break;
1172 case 8:
1173 v = ldq_raw(buf + i);
1174 break;
1176 monitor_printf(mon, " ");
1177 switch(format) {
1178 case 'o':
1179 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
1180 break;
1181 case 'x':
1182 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
1183 break;
1184 case 'u':
1185 monitor_printf(mon, "%*" PRIu64, max_digits, v);
1186 break;
1187 case 'd':
1188 monitor_printf(mon, "%*" PRId64, max_digits, v);
1189 break;
1190 case 'c':
1191 monitor_printc(mon, v);
1192 break;
1194 i += wsize;
1196 monitor_printf(mon, "\n");
1197 addr += l;
1198 len -= l;
1202 static void do_memory_dump(Monitor *mon, const QDict *qdict)
1204 int count = qdict_get_int(qdict, "count");
1205 int format = qdict_get_int(qdict, "format");
1206 int size = qdict_get_int(qdict, "size");
1207 target_long addr = qdict_get_int(qdict, "addr");
1209 memory_dump(mon, count, format, size, addr, 0);
1212 static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
1214 int count = qdict_get_int(qdict, "count");
1215 int format = qdict_get_int(qdict, "format");
1216 int size = qdict_get_int(qdict, "size");
1217 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
1219 memory_dump(mon, count, format, size, addr, 1);
1222 static void do_print(Monitor *mon, const QDict *qdict)
1224 int format = qdict_get_int(qdict, "format");
1225 target_phys_addr_t val = qdict_get_int(qdict, "val");
1227 switch(format) {
1228 case 'o':
1229 monitor_printf(mon, "%#" TARGET_PRIoPHYS, val);
1230 break;
1231 case 'x':
1232 monitor_printf(mon, "%#" TARGET_PRIxPHYS, val);
1233 break;
1234 case 'u':
1235 monitor_printf(mon, "%" TARGET_PRIuPHYS, val);
1236 break;
1237 default:
1238 case 'd':
1239 monitor_printf(mon, "%" TARGET_PRIdPHYS, val);
1240 break;
1241 case 'c':
1242 monitor_printc(mon, val);
1243 break;
1245 monitor_printf(mon, "\n");
1248 static void do_sum(Monitor *mon, const QDict *qdict)
1250 uint32_t addr;
1251 uint16_t sum;
1252 uint32_t start = qdict_get_int(qdict, "start");
1253 uint32_t size = qdict_get_int(qdict, "size");
1255 sum = 0;
1256 for(addr = start; addr < (start + size); addr++) {
1257 uint8_t val = ldub_phys(addr);
1258 /* BSD sum algorithm ('sum' Unix command) */
1259 sum = (sum >> 1) | (sum << 15);
1260 sum += val;
1262 monitor_printf(mon, "%05d\n", sum);
1265 static int mouse_button_state;
1267 static void do_mouse_move(Monitor *mon, const QDict *qdict)
1269 int dx, dy, dz;
1270 const char *dx_str = qdict_get_str(qdict, "dx_str");
1271 const char *dy_str = qdict_get_str(qdict, "dy_str");
1272 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1273 dx = strtol(dx_str, NULL, 0);
1274 dy = strtol(dy_str, NULL, 0);
1275 dz = 0;
1276 if (dz_str)
1277 dz = strtol(dz_str, NULL, 0);
1278 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1281 static void do_mouse_button(Monitor *mon, const QDict *qdict)
1283 int button_state = qdict_get_int(qdict, "button_state");
1284 mouse_button_state = button_state;
1285 kbd_mouse_event(0, 0, 0, mouse_button_state);
1288 static void do_ioport_read(Monitor *mon, const QDict *qdict)
1290 int size = qdict_get_int(qdict, "size");
1291 int addr = qdict_get_int(qdict, "addr");
1292 int has_index = qdict_haskey(qdict, "index");
1293 uint32_t val;
1294 int suffix;
1296 if (has_index) {
1297 int index = qdict_get_int(qdict, "index");
1298 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
1299 addr++;
1301 addr &= 0xffff;
1303 switch(size) {
1304 default:
1305 case 1:
1306 val = cpu_inb(addr);
1307 suffix = 'b';
1308 break;
1309 case 2:
1310 val = cpu_inw(addr);
1311 suffix = 'w';
1312 break;
1313 case 4:
1314 val = cpu_inl(addr);
1315 suffix = 'l';
1316 break;
1318 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1319 suffix, addr, size * 2, val);
1322 static void do_ioport_write(Monitor *mon, const QDict *qdict)
1324 int size = qdict_get_int(qdict, "size");
1325 int addr = qdict_get_int(qdict, "addr");
1326 int val = qdict_get_int(qdict, "val");
1328 addr &= IOPORTS_MASK;
1330 switch (size) {
1331 default:
1332 case 1:
1333 cpu_outb(addr, val);
1334 break;
1335 case 2:
1336 cpu_outw(addr, val);
1337 break;
1338 case 4:
1339 cpu_outl(addr, val);
1340 break;
1344 static void do_boot_set(Monitor *mon, const QDict *qdict)
1346 int res;
1347 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1349 res = qemu_boot_set(bootdevice);
1350 if (res == 0) {
1351 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1352 } else if (res > 0) {
1353 monitor_printf(mon, "setting boot device list failed\n");
1354 } else {
1355 monitor_printf(mon, "no function defined to set boot device list for "
1356 "this architecture\n");
1360 #if defined(TARGET_I386)
1361 static void print_pte(Monitor *mon, target_phys_addr_t addr,
1362 target_phys_addr_t pte,
1363 target_phys_addr_t mask)
1365 #ifdef TARGET_X86_64
1366 if (addr & (1ULL << 47)) {
1367 addr |= -1LL << 48;
1369 #endif
1370 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1371 " %c%c%c%c%c%c%c%c%c\n",
1372 addr,
1373 pte & mask,
1374 pte & PG_NX_MASK ? 'X' : '-',
1375 pte & PG_GLOBAL_MASK ? 'G' : '-',
1376 pte & PG_PSE_MASK ? 'P' : '-',
1377 pte & PG_DIRTY_MASK ? 'D' : '-',
1378 pte & PG_ACCESSED_MASK ? 'A' : '-',
1379 pte & PG_PCD_MASK ? 'C' : '-',
1380 pte & PG_PWT_MASK ? 'T' : '-',
1381 pte & PG_USER_MASK ? 'U' : '-',
1382 pte & PG_RW_MASK ? 'W' : '-');
1385 static void tlb_info_32(Monitor *mon, CPUArchState *env)
1387 unsigned int l1, l2;
1388 uint32_t pgd, pde, pte;
1390 pgd = env->cr[3] & ~0xfff;
1391 for(l1 = 0; l1 < 1024; l1++) {
1392 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
1393 pde = le32_to_cpu(pde);
1394 if (pde & PG_PRESENT_MASK) {
1395 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1396 /* 4M pages */
1397 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
1398 } else {
1399 for(l2 = 0; l2 < 1024; l2++) {
1400 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
1401 pte = le32_to_cpu(pte);
1402 if (pte & PG_PRESENT_MASK) {
1403 print_pte(mon, (l1 << 22) + (l2 << 12),
1404 pte & ~PG_PSE_MASK,
1405 ~0xfff);
1413 static void tlb_info_pae32(Monitor *mon, CPUArchState *env)
1415 unsigned int l1, l2, l3;
1416 uint64_t pdpe, pde, pte;
1417 uint64_t pdp_addr, pd_addr, pt_addr;
1419 pdp_addr = env->cr[3] & ~0x1f;
1420 for (l1 = 0; l1 < 4; l1++) {
1421 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
1422 pdpe = le64_to_cpu(pdpe);
1423 if (pdpe & PG_PRESENT_MASK) {
1424 pd_addr = pdpe & 0x3fffffffff000ULL;
1425 for (l2 = 0; l2 < 512; l2++) {
1426 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
1427 pde = le64_to_cpu(pde);
1428 if (pde & PG_PRESENT_MASK) {
1429 if (pde & PG_PSE_MASK) {
1430 /* 2M pages with PAE, CR4.PSE is ignored */
1431 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
1432 ~((target_phys_addr_t)(1 << 20) - 1));
1433 } else {
1434 pt_addr = pde & 0x3fffffffff000ULL;
1435 for (l3 = 0; l3 < 512; l3++) {
1436 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
1437 pte = le64_to_cpu(pte);
1438 if (pte & PG_PRESENT_MASK) {
1439 print_pte(mon, (l1 << 30 ) + (l2 << 21)
1440 + (l3 << 12),
1441 pte & ~PG_PSE_MASK,
1442 ~(target_phys_addr_t)0xfff);
1452 #ifdef TARGET_X86_64
1453 static void tlb_info_64(Monitor *mon, CPUArchState *env)
1455 uint64_t l1, l2, l3, l4;
1456 uint64_t pml4e, pdpe, pde, pte;
1457 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
1459 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1460 for (l1 = 0; l1 < 512; l1++) {
1461 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
1462 pml4e = le64_to_cpu(pml4e);
1463 if (pml4e & PG_PRESENT_MASK) {
1464 pdp_addr = pml4e & 0x3fffffffff000ULL;
1465 for (l2 = 0; l2 < 512; l2++) {
1466 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
1467 pdpe = le64_to_cpu(pdpe);
1468 if (pdpe & PG_PRESENT_MASK) {
1469 if (pdpe & PG_PSE_MASK) {
1470 /* 1G pages, CR4.PSE is ignored */
1471 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
1472 0x3ffffc0000000ULL);
1473 } else {
1474 pd_addr = pdpe & 0x3fffffffff000ULL;
1475 for (l3 = 0; l3 < 512; l3++) {
1476 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
1477 pde = le64_to_cpu(pde);
1478 if (pde & PG_PRESENT_MASK) {
1479 if (pde & PG_PSE_MASK) {
1480 /* 2M pages, CR4.PSE is ignored */
1481 print_pte(mon, (l1 << 39) + (l2 << 30) +
1482 (l3 << 21), pde,
1483 0x3ffffffe00000ULL);
1484 } else {
1485 pt_addr = pde & 0x3fffffffff000ULL;
1486 for (l4 = 0; l4 < 512; l4++) {
1487 cpu_physical_memory_read(pt_addr
1488 + l4 * 8,
1489 &pte, 8);
1490 pte = le64_to_cpu(pte);
1491 if (pte & PG_PRESENT_MASK) {
1492 print_pte(mon, (l1 << 39) +
1493 (l2 << 30) +
1494 (l3 << 21) + (l4 << 12),
1495 pte & ~PG_PSE_MASK,
1496 0x3fffffffff000ULL);
1508 #endif
1510 static void tlb_info(Monitor *mon)
1512 CPUArchState *env;
1514 env = mon_get_cpu();
1516 if (!(env->cr[0] & CR0_PG_MASK)) {
1517 monitor_printf(mon, "PG disabled\n");
1518 return;
1520 if (env->cr[4] & CR4_PAE_MASK) {
1521 #ifdef TARGET_X86_64
1522 if (env->hflags & HF_LMA_MASK) {
1523 tlb_info_64(mon, env);
1524 } else
1525 #endif
1527 tlb_info_pae32(mon, env);
1529 } else {
1530 tlb_info_32(mon, env);
1534 static void mem_print(Monitor *mon, target_phys_addr_t *pstart,
1535 int *plast_prot,
1536 target_phys_addr_t end, int prot)
1538 int prot1;
1539 prot1 = *plast_prot;
1540 if (prot != prot1) {
1541 if (*pstart != -1) {
1542 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
1543 TARGET_FMT_plx " %c%c%c\n",
1544 *pstart, end, end - *pstart,
1545 prot1 & PG_USER_MASK ? 'u' : '-',
1546 'r',
1547 prot1 & PG_RW_MASK ? 'w' : '-');
1549 if (prot != 0)
1550 *pstart = end;
1551 else
1552 *pstart = -1;
1553 *plast_prot = prot;
1557 static void mem_info_32(Monitor *mon, CPUArchState *env)
1559 unsigned int l1, l2;
1560 int prot, last_prot;
1561 uint32_t pgd, pde, pte;
1562 target_phys_addr_t start, end;
1564 pgd = env->cr[3] & ~0xfff;
1565 last_prot = 0;
1566 start = -1;
1567 for(l1 = 0; l1 < 1024; l1++) {
1568 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
1569 pde = le32_to_cpu(pde);
1570 end = l1 << 22;
1571 if (pde & PG_PRESENT_MASK) {
1572 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1573 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1574 mem_print(mon, &start, &last_prot, end, prot);
1575 } else {
1576 for(l2 = 0; l2 < 1024; l2++) {
1577 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
1578 pte = le32_to_cpu(pte);
1579 end = (l1 << 22) + (l2 << 12);
1580 if (pte & PG_PRESENT_MASK) {
1581 prot = pte & pde &
1582 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1583 } else {
1584 prot = 0;
1586 mem_print(mon, &start, &last_prot, end, prot);
1589 } else {
1590 prot = 0;
1591 mem_print(mon, &start, &last_prot, end, prot);
1594 /* Flush last range */
1595 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
1598 static void mem_info_pae32(Monitor *mon, CPUArchState *env)
1600 unsigned int l1, l2, l3;
1601 int prot, last_prot;
1602 uint64_t pdpe, pde, pte;
1603 uint64_t pdp_addr, pd_addr, pt_addr;
1604 target_phys_addr_t start, end;
1606 pdp_addr = env->cr[3] & ~0x1f;
1607 last_prot = 0;
1608 start = -1;
1609 for (l1 = 0; l1 < 4; l1++) {
1610 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
1611 pdpe = le64_to_cpu(pdpe);
1612 end = l1 << 30;
1613 if (pdpe & PG_PRESENT_MASK) {
1614 pd_addr = pdpe & 0x3fffffffff000ULL;
1615 for (l2 = 0; l2 < 512; l2++) {
1616 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
1617 pde = le64_to_cpu(pde);
1618 end = (l1 << 30) + (l2 << 21);
1619 if (pde & PG_PRESENT_MASK) {
1620 if (pde & PG_PSE_MASK) {
1621 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1622 PG_PRESENT_MASK);
1623 mem_print(mon, &start, &last_prot, end, prot);
1624 } else {
1625 pt_addr = pde & 0x3fffffffff000ULL;
1626 for (l3 = 0; l3 < 512; l3++) {
1627 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
1628 pte = le64_to_cpu(pte);
1629 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
1630 if (pte & PG_PRESENT_MASK) {
1631 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
1632 PG_PRESENT_MASK);
1633 } else {
1634 prot = 0;
1636 mem_print(mon, &start, &last_prot, end, prot);
1639 } else {
1640 prot = 0;
1641 mem_print(mon, &start, &last_prot, end, prot);
1644 } else {
1645 prot = 0;
1646 mem_print(mon, &start, &last_prot, end, prot);
1649 /* Flush last range */
1650 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
1654 #ifdef TARGET_X86_64
1655 static void mem_info_64(Monitor *mon, CPUArchState *env)
1657 int prot, last_prot;
1658 uint64_t l1, l2, l3, l4;
1659 uint64_t pml4e, pdpe, pde, pte;
1660 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
1662 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1663 last_prot = 0;
1664 start = -1;
1665 for (l1 = 0; l1 < 512; l1++) {
1666 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
1667 pml4e = le64_to_cpu(pml4e);
1668 end = l1 << 39;
1669 if (pml4e & PG_PRESENT_MASK) {
1670 pdp_addr = pml4e & 0x3fffffffff000ULL;
1671 for (l2 = 0; l2 < 512; l2++) {
1672 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
1673 pdpe = le64_to_cpu(pdpe);
1674 end = (l1 << 39) + (l2 << 30);
1675 if (pdpe & PG_PRESENT_MASK) {
1676 if (pdpe & PG_PSE_MASK) {
1677 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
1678 PG_PRESENT_MASK);
1679 prot &= pml4e;
1680 mem_print(mon, &start, &last_prot, end, prot);
1681 } else {
1682 pd_addr = pdpe & 0x3fffffffff000ULL;
1683 for (l3 = 0; l3 < 512; l3++) {
1684 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
1685 pde = le64_to_cpu(pde);
1686 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
1687 if (pde & PG_PRESENT_MASK) {
1688 if (pde & PG_PSE_MASK) {
1689 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1690 PG_PRESENT_MASK);
1691 prot &= pml4e & pdpe;
1692 mem_print(mon, &start, &last_prot, end, prot);
1693 } else {
1694 pt_addr = pde & 0x3fffffffff000ULL;
1695 for (l4 = 0; l4 < 512; l4++) {
1696 cpu_physical_memory_read(pt_addr
1697 + l4 * 8,
1698 &pte, 8);
1699 pte = le64_to_cpu(pte);
1700 end = (l1 << 39) + (l2 << 30) +
1701 (l3 << 21) + (l4 << 12);
1702 if (pte & PG_PRESENT_MASK) {
1703 prot = pte & (PG_USER_MASK | PG_RW_MASK |
1704 PG_PRESENT_MASK);
1705 prot &= pml4e & pdpe & pde;
1706 } else {
1707 prot = 0;
1709 mem_print(mon, &start, &last_prot, end, prot);
1712 } else {
1713 prot = 0;
1714 mem_print(mon, &start, &last_prot, end, prot);
1718 } else {
1719 prot = 0;
1720 mem_print(mon, &start, &last_prot, end, prot);
1723 } else {
1724 prot = 0;
1725 mem_print(mon, &start, &last_prot, end, prot);
1728 /* Flush last range */
1729 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 48, 0);
1731 #endif
1733 static void mem_info(Monitor *mon)
1735 CPUArchState *env;
1737 env = mon_get_cpu();
1739 if (!(env->cr[0] & CR0_PG_MASK)) {
1740 monitor_printf(mon, "PG disabled\n");
1741 return;
1743 if (env->cr[4] & CR4_PAE_MASK) {
1744 #ifdef TARGET_X86_64
1745 if (env->hflags & HF_LMA_MASK) {
1746 mem_info_64(mon, env);
1747 } else
1748 #endif
1750 mem_info_pae32(mon, env);
1752 } else {
1753 mem_info_32(mon, env);
1756 #endif
1758 #if defined(TARGET_SH4)
1760 static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
1762 monitor_printf(mon, " tlb%i:\t"
1763 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1764 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1765 "dirty=%hhu writethrough=%hhu\n",
1766 idx,
1767 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1768 tlb->v, tlb->sh, tlb->c, tlb->pr,
1769 tlb->d, tlb->wt);
1772 static void tlb_info(Monitor *mon)
1774 CPUArchState *env = mon_get_cpu();
1775 int i;
1777 monitor_printf (mon, "ITLB:\n");
1778 for (i = 0 ; i < ITLB_SIZE ; i++)
1779 print_tlb (mon, i, &env->itlb[i]);
1780 monitor_printf (mon, "UTLB:\n");
1781 for (i = 0 ; i < UTLB_SIZE ; i++)
1782 print_tlb (mon, i, &env->utlb[i]);
1785 #endif
1787 #if defined(TARGET_SPARC) || defined(TARGET_PPC) || defined(TARGET_XTENSA)
1788 static void tlb_info(Monitor *mon)
1790 CPUArchState *env1 = mon_get_cpu();
1792 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
1794 #endif
1796 static void do_info_mtree(Monitor *mon)
1798 mtree_info((fprintf_function)monitor_printf, mon);
1801 static void do_info_numa(Monitor *mon)
1803 int i;
1804 CPUArchState *env;
1806 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1807 for (i = 0; i < nb_numa_nodes; i++) {
1808 monitor_printf(mon, "node %d cpus:", i);
1809 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1810 if (env->numa_node == i) {
1811 monitor_printf(mon, " %d", env->cpu_index);
1814 monitor_printf(mon, "\n");
1815 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1816 node_mem[i] >> 20);
1820 #ifdef CONFIG_PROFILER
1822 int64_t qemu_time;
1823 int64_t dev_time;
1825 static void do_info_profile(Monitor *mon)
1827 int64_t total;
1828 total = qemu_time;
1829 if (total == 0)
1830 total = 1;
1831 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
1832 dev_time, dev_time / (double)get_ticks_per_sec());
1833 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
1834 qemu_time, qemu_time / (double)get_ticks_per_sec());
1835 qemu_time = 0;
1836 dev_time = 0;
1838 #else
1839 static void do_info_profile(Monitor *mon)
1841 monitor_printf(mon, "Internal profiler not compiled\n");
1843 #endif
1845 /* Capture support */
1846 static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
1848 static void do_info_capture(Monitor *mon)
1850 int i;
1851 CaptureState *s;
1853 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1854 monitor_printf(mon, "[%d]: ", i);
1855 s->ops.info (s->opaque);
1859 #ifdef HAS_AUDIO
1860 static void do_stop_capture(Monitor *mon, const QDict *qdict)
1862 int i;
1863 int n = qdict_get_int(qdict, "n");
1864 CaptureState *s;
1866 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1867 if (i == n) {
1868 s->ops.destroy (s->opaque);
1869 QLIST_REMOVE (s, entries);
1870 g_free (s);
1871 return;
1876 static void do_wav_capture(Monitor *mon, const QDict *qdict)
1878 const char *path = qdict_get_str(qdict, "path");
1879 int has_freq = qdict_haskey(qdict, "freq");
1880 int freq = qdict_get_try_int(qdict, "freq", -1);
1881 int has_bits = qdict_haskey(qdict, "bits");
1882 int bits = qdict_get_try_int(qdict, "bits", -1);
1883 int has_channels = qdict_haskey(qdict, "nchannels");
1884 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
1885 CaptureState *s;
1887 s = g_malloc0 (sizeof (*s));
1889 freq = has_freq ? freq : 44100;
1890 bits = has_bits ? bits : 16;
1891 nchannels = has_channels ? nchannels : 2;
1893 if (wav_start_capture (s, path, freq, bits, nchannels)) {
1894 monitor_printf(mon, "Failed to add wave capture\n");
1895 g_free (s);
1896 return;
1898 QLIST_INSERT_HEAD (&capture_head, s, entries);
1900 #endif
1902 static qemu_acl *find_acl(Monitor *mon, const char *name)
1904 qemu_acl *acl = qemu_acl_find(name);
1906 if (!acl) {
1907 monitor_printf(mon, "acl: unknown list '%s'\n", name);
1909 return acl;
1912 static void do_acl_show(Monitor *mon, const QDict *qdict)
1914 const char *aclname = qdict_get_str(qdict, "aclname");
1915 qemu_acl *acl = find_acl(mon, aclname);
1916 qemu_acl_entry *entry;
1917 int i = 0;
1919 if (acl) {
1920 monitor_printf(mon, "policy: %s\n",
1921 acl->defaultDeny ? "deny" : "allow");
1922 QTAILQ_FOREACH(entry, &acl->entries, next) {
1923 i++;
1924 monitor_printf(mon, "%d: %s %s\n", i,
1925 entry->deny ? "deny" : "allow", entry->match);
1930 static void do_acl_reset(Monitor *mon, const QDict *qdict)
1932 const char *aclname = qdict_get_str(qdict, "aclname");
1933 qemu_acl *acl = find_acl(mon, aclname);
1935 if (acl) {
1936 qemu_acl_reset(acl);
1937 monitor_printf(mon, "acl: removed all rules\n");
1941 static void do_acl_policy(Monitor *mon, const QDict *qdict)
1943 const char *aclname = qdict_get_str(qdict, "aclname");
1944 const char *policy = qdict_get_str(qdict, "policy");
1945 qemu_acl *acl = find_acl(mon, aclname);
1947 if (acl) {
1948 if (strcmp(policy, "allow") == 0) {
1949 acl->defaultDeny = 0;
1950 monitor_printf(mon, "acl: policy set to 'allow'\n");
1951 } else if (strcmp(policy, "deny") == 0) {
1952 acl->defaultDeny = 1;
1953 monitor_printf(mon, "acl: policy set to 'deny'\n");
1954 } else {
1955 monitor_printf(mon, "acl: unknown policy '%s', "
1956 "expected 'deny' or 'allow'\n", policy);
1961 static void do_acl_add(Monitor *mon, const QDict *qdict)
1963 const char *aclname = qdict_get_str(qdict, "aclname");
1964 const char *match = qdict_get_str(qdict, "match");
1965 const char *policy = qdict_get_str(qdict, "policy");
1966 int has_index = qdict_haskey(qdict, "index");
1967 int index = qdict_get_try_int(qdict, "index", -1);
1968 qemu_acl *acl = find_acl(mon, aclname);
1969 int deny, ret;
1971 if (acl) {
1972 if (strcmp(policy, "allow") == 0) {
1973 deny = 0;
1974 } else if (strcmp(policy, "deny") == 0) {
1975 deny = 1;
1976 } else {
1977 monitor_printf(mon, "acl: unknown policy '%s', "
1978 "expected 'deny' or 'allow'\n", policy);
1979 return;
1981 if (has_index)
1982 ret = qemu_acl_insert(acl, deny, match, index);
1983 else
1984 ret = qemu_acl_append(acl, deny, match);
1985 if (ret < 0)
1986 monitor_printf(mon, "acl: unable to add acl entry\n");
1987 else
1988 monitor_printf(mon, "acl: added rule at position %d\n", ret);
1992 static void do_acl_remove(Monitor *mon, const QDict *qdict)
1994 const char *aclname = qdict_get_str(qdict, "aclname");
1995 const char *match = qdict_get_str(qdict, "match");
1996 qemu_acl *acl = find_acl(mon, aclname);
1997 int ret;
1999 if (acl) {
2000 ret = qemu_acl_remove(acl, match);
2001 if (ret < 0)
2002 monitor_printf(mon, "acl: no matching acl entry\n");
2003 else
2004 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
2008 #if defined(TARGET_I386)
2009 static void do_inject_mce(Monitor *mon, const QDict *qdict)
2011 CPUArchState *cenv;
2012 int cpu_index = qdict_get_int(qdict, "cpu_index");
2013 int bank = qdict_get_int(qdict, "bank");
2014 uint64_t status = qdict_get_int(qdict, "status");
2015 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2016 uint64_t addr = qdict_get_int(qdict, "addr");
2017 uint64_t misc = qdict_get_int(qdict, "misc");
2018 int flags = MCE_INJECT_UNCOND_AO;
2020 if (qdict_get_try_bool(qdict, "broadcast", 0)) {
2021 flags |= MCE_INJECT_BROADCAST;
2023 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu) {
2024 if (cenv->cpu_index == cpu_index) {
2025 cpu_x86_inject_mce(mon, cenv, bank, status, mcg_status, addr, misc,
2026 flags);
2027 break;
2031 #endif
2033 void qmp_getfd(const char *fdname, Error **errp)
2035 mon_fd_t *monfd;
2036 int fd;
2038 fd = qemu_chr_fe_get_msgfd(cur_mon->chr);
2039 if (fd == -1) {
2040 error_set(errp, QERR_FD_NOT_SUPPLIED);
2041 return;
2044 if (qemu_isdigit(fdname[0])) {
2045 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "fdname",
2046 "a name not starting with a digit");
2047 return;
2050 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
2051 if (strcmp(monfd->name, fdname) != 0) {
2052 continue;
2055 close(monfd->fd);
2056 monfd->fd = fd;
2057 return;
2060 monfd = g_malloc0(sizeof(mon_fd_t));
2061 monfd->name = g_strdup(fdname);
2062 monfd->fd = fd;
2064 QLIST_INSERT_HEAD(&cur_mon->fds, monfd, next);
2067 void qmp_closefd(const char *fdname, Error **errp)
2069 mon_fd_t *monfd;
2071 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
2072 if (strcmp(monfd->name, fdname) != 0) {
2073 continue;
2076 QLIST_REMOVE(monfd, next);
2077 close(monfd->fd);
2078 g_free(monfd->name);
2079 g_free(monfd);
2080 return;
2083 error_set(errp, QERR_FD_NOT_FOUND, fdname);
2086 static void do_loadvm(Monitor *mon, const QDict *qdict)
2088 int saved_vm_running = runstate_is_running();
2089 const char *name = qdict_get_str(qdict, "name");
2091 vm_stop(RUN_STATE_RESTORE_VM);
2093 if (load_vmstate(name) == 0 && saved_vm_running) {
2094 vm_start();
2098 int monitor_get_fd(Monitor *mon, const char *fdname, Error **errp)
2100 mon_fd_t *monfd;
2102 QLIST_FOREACH(monfd, &mon->fds, next) {
2103 int fd;
2105 if (strcmp(monfd->name, fdname) != 0) {
2106 continue;
2109 fd = monfd->fd;
2111 /* caller takes ownership of fd */
2112 QLIST_REMOVE(monfd, next);
2113 g_free(monfd->name);
2114 g_free(monfd);
2116 return fd;
2119 error_setg(errp, "File descriptor named '%s' has not been found", fdname);
2120 return -1;
2123 static void monitor_fdset_cleanup(MonFdset *mon_fdset)
2125 MonFdsetFd *mon_fdset_fd;
2126 MonFdsetFd *mon_fdset_fd_next;
2128 QLIST_FOREACH_SAFE(mon_fdset_fd, &mon_fdset->fds, next, mon_fdset_fd_next) {
2129 if (mon_fdset_fd->removed ||
2130 (QLIST_EMPTY(&mon_fdset->dup_fds) && mon_refcount == 0)) {
2131 close(mon_fdset_fd->fd);
2132 g_free(mon_fdset_fd->opaque);
2133 QLIST_REMOVE(mon_fdset_fd, next);
2134 g_free(mon_fdset_fd);
2138 if (QLIST_EMPTY(&mon_fdset->fds) && QLIST_EMPTY(&mon_fdset->dup_fds)) {
2139 QLIST_REMOVE(mon_fdset, next);
2140 g_free(mon_fdset);
2144 static void monitor_fdsets_cleanup(void)
2146 MonFdset *mon_fdset;
2147 MonFdset *mon_fdset_next;
2149 QLIST_FOREACH_SAFE(mon_fdset, &mon_fdsets, next, mon_fdset_next) {
2150 monitor_fdset_cleanup(mon_fdset);
2154 AddfdInfo *qmp_add_fd(bool has_fdset_id, int64_t fdset_id, bool has_opaque,
2155 const char *opaque, Error **errp)
2157 int fd;
2158 Monitor *mon = cur_mon;
2159 MonFdset *mon_fdset;
2160 MonFdsetFd *mon_fdset_fd;
2161 AddfdInfo *fdinfo;
2163 fd = qemu_chr_fe_get_msgfd(mon->chr);
2164 if (fd == -1) {
2165 error_set(errp, QERR_FD_NOT_SUPPLIED);
2166 goto error;
2169 if (has_fdset_id) {
2170 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2171 if (mon_fdset->id == fdset_id) {
2172 break;
2175 if (mon_fdset == NULL) {
2176 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "fdset-id",
2177 "an existing fdset-id");
2178 goto error;
2180 } else {
2181 int64_t fdset_id_prev = -1;
2182 MonFdset *mon_fdset_cur = QLIST_FIRST(&mon_fdsets);
2184 /* Use first available fdset ID */
2185 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2186 mon_fdset_cur = mon_fdset;
2187 if (fdset_id_prev == mon_fdset_cur->id - 1) {
2188 fdset_id_prev = mon_fdset_cur->id;
2189 continue;
2191 break;
2194 mon_fdset = g_malloc0(sizeof(*mon_fdset));
2195 mon_fdset->id = fdset_id_prev + 1;
2197 /* The fdset list is ordered by fdset ID */
2198 if (mon_fdset->id == 0) {
2199 QLIST_INSERT_HEAD(&mon_fdsets, mon_fdset, next);
2200 } else if (mon_fdset->id < mon_fdset_cur->id) {
2201 QLIST_INSERT_BEFORE(mon_fdset_cur, mon_fdset, next);
2202 } else {
2203 QLIST_INSERT_AFTER(mon_fdset_cur, mon_fdset, next);
2207 mon_fdset_fd = g_malloc0(sizeof(*mon_fdset_fd));
2208 mon_fdset_fd->fd = fd;
2209 mon_fdset_fd->removed = false;
2210 if (has_opaque) {
2211 mon_fdset_fd->opaque = g_strdup(opaque);
2213 QLIST_INSERT_HEAD(&mon_fdset->fds, mon_fdset_fd, next);
2215 fdinfo = g_malloc0(sizeof(*fdinfo));
2216 fdinfo->fdset_id = mon_fdset->id;
2217 fdinfo->fd = mon_fdset_fd->fd;
2219 return fdinfo;
2221 error:
2222 if (fd != -1) {
2223 close(fd);
2225 return NULL;
2228 void qmp_remove_fd(int64_t fdset_id, bool has_fd, int64_t fd, Error **errp)
2230 MonFdset *mon_fdset;
2231 MonFdsetFd *mon_fdset_fd;
2232 char fd_str[60];
2234 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2235 if (mon_fdset->id != fdset_id) {
2236 continue;
2238 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2239 if (has_fd) {
2240 if (mon_fdset_fd->fd != fd) {
2241 continue;
2243 mon_fdset_fd->removed = true;
2244 break;
2245 } else {
2246 mon_fdset_fd->removed = true;
2249 if (has_fd && !mon_fdset_fd) {
2250 goto error;
2252 monitor_fdset_cleanup(mon_fdset);
2253 return;
2256 error:
2257 if (has_fd) {
2258 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64 ", fd:%" PRId64,
2259 fdset_id, fd);
2260 } else {
2261 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64, fdset_id);
2263 error_set(errp, QERR_FD_NOT_FOUND, fd_str);
2266 FdsetInfoList *qmp_query_fdsets(Error **errp)
2268 MonFdset *mon_fdset;
2269 MonFdsetFd *mon_fdset_fd;
2270 FdsetInfoList *fdset_list = NULL;
2272 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2273 FdsetInfoList *fdset_info = g_malloc0(sizeof(*fdset_info));
2274 FdsetFdInfoList *fdsetfd_list = NULL;
2276 fdset_info->value = g_malloc0(sizeof(*fdset_info->value));
2277 fdset_info->value->fdset_id = mon_fdset->id;
2279 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2280 FdsetFdInfoList *fdsetfd_info;
2282 fdsetfd_info = g_malloc0(sizeof(*fdsetfd_info));
2283 fdsetfd_info->value = g_malloc0(sizeof(*fdsetfd_info->value));
2284 fdsetfd_info->value->fd = mon_fdset_fd->fd;
2285 if (mon_fdset_fd->opaque) {
2286 fdsetfd_info->value->has_opaque = true;
2287 fdsetfd_info->value->opaque = g_strdup(mon_fdset_fd->opaque);
2288 } else {
2289 fdsetfd_info->value->has_opaque = false;
2292 fdsetfd_info->next = fdsetfd_list;
2293 fdsetfd_list = fdsetfd_info;
2296 fdset_info->value->fds = fdsetfd_list;
2298 fdset_info->next = fdset_list;
2299 fdset_list = fdset_info;
2302 return fdset_list;
2305 int monitor_fdset_get_fd(int64_t fdset_id, int flags)
2307 #ifndef _WIN32
2308 MonFdset *mon_fdset;
2309 MonFdsetFd *mon_fdset_fd;
2310 int mon_fd_flags;
2312 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2313 if (mon_fdset->id != fdset_id) {
2314 continue;
2316 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2317 mon_fd_flags = fcntl(mon_fdset_fd->fd, F_GETFL);
2318 if (mon_fd_flags == -1) {
2319 return -1;
2322 if ((flags & O_ACCMODE) == (mon_fd_flags & O_ACCMODE)) {
2323 return mon_fdset_fd->fd;
2326 errno = EACCES;
2327 return -1;
2329 #endif
2331 errno = ENOENT;
2332 return -1;
2335 int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd)
2337 MonFdset *mon_fdset;
2338 MonFdsetFd *mon_fdset_fd_dup;
2340 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2341 if (mon_fdset->id != fdset_id) {
2342 continue;
2344 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2345 if (mon_fdset_fd_dup->fd == dup_fd) {
2346 return -1;
2349 mon_fdset_fd_dup = g_malloc0(sizeof(*mon_fdset_fd_dup));
2350 mon_fdset_fd_dup->fd = dup_fd;
2351 QLIST_INSERT_HEAD(&mon_fdset->dup_fds, mon_fdset_fd_dup, next);
2352 return 0;
2354 return -1;
2357 static int monitor_fdset_dup_fd_find_remove(int dup_fd, bool remove)
2359 MonFdset *mon_fdset;
2360 MonFdsetFd *mon_fdset_fd_dup;
2362 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2363 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2364 if (mon_fdset_fd_dup->fd == dup_fd) {
2365 if (remove) {
2366 QLIST_REMOVE(mon_fdset_fd_dup, next);
2367 if (QLIST_EMPTY(&mon_fdset->dup_fds)) {
2368 monitor_fdset_cleanup(mon_fdset);
2371 return mon_fdset->id;
2375 return -1;
2378 int monitor_fdset_dup_fd_find(int dup_fd)
2380 return monitor_fdset_dup_fd_find_remove(dup_fd, false);
2383 int monitor_fdset_dup_fd_remove(int dup_fd)
2385 return monitor_fdset_dup_fd_find_remove(dup_fd, true);
2388 int monitor_handle_fd_param(Monitor *mon, const char *fdname)
2390 int fd;
2391 Error *local_err = NULL;
2393 if (!qemu_isdigit(fdname[0]) && mon) {
2395 fd = monitor_get_fd(mon, fdname, &local_err);
2396 if (fd == -1) {
2397 qerror_report_err(local_err);
2398 error_free(local_err);
2399 return -1;
2401 } else {
2402 fd = qemu_parse_fd(fdname);
2405 return fd;
2408 /* mon_cmds and info_cmds would be sorted at runtime */
2409 static mon_cmd_t mon_cmds[] = {
2410 #include "hmp-commands.h"
2411 { NULL, NULL, },
2414 /* Please update hmp-commands.hx when adding or changing commands */
2415 static mon_cmd_t info_cmds[] = {
2417 .name = "version",
2418 .args_type = "",
2419 .params = "",
2420 .help = "show the version of QEMU",
2421 .mhandler.info = hmp_info_version,
2424 .name = "network",
2425 .args_type = "",
2426 .params = "",
2427 .help = "show the network state",
2428 .mhandler.info = do_info_network,
2431 .name = "chardev",
2432 .args_type = "",
2433 .params = "",
2434 .help = "show the character devices",
2435 .mhandler.info = hmp_info_chardev,
2438 .name = "block",
2439 .args_type = "",
2440 .params = "",
2441 .help = "show the block devices",
2442 .mhandler.info = hmp_info_block,
2445 .name = "blockstats",
2446 .args_type = "",
2447 .params = "",
2448 .help = "show block device statistics",
2449 .mhandler.info = hmp_info_blockstats,
2452 .name = "block-jobs",
2453 .args_type = "",
2454 .params = "",
2455 .help = "show progress of ongoing block device operations",
2456 .mhandler.info = hmp_info_block_jobs,
2459 .name = "registers",
2460 .args_type = "",
2461 .params = "",
2462 .help = "show the cpu registers",
2463 .mhandler.info = do_info_registers,
2466 .name = "cpus",
2467 .args_type = "",
2468 .params = "",
2469 .help = "show infos for each CPU",
2470 .mhandler.info = hmp_info_cpus,
2473 .name = "history",
2474 .args_type = "",
2475 .params = "",
2476 .help = "show the command line history",
2477 .mhandler.info = do_info_history,
2479 #if defined(TARGET_I386) || defined(TARGET_PPC) || defined(TARGET_MIPS) || \
2480 defined(TARGET_LM32) || (defined(TARGET_SPARC) && !defined(TARGET_SPARC64))
2482 .name = "irq",
2483 .args_type = "",
2484 .params = "",
2485 .help = "show the interrupts statistics (if available)",
2486 #ifdef TARGET_SPARC
2487 .mhandler.info = sun4m_irq_info,
2488 #elif defined(TARGET_LM32)
2489 .mhandler.info = lm32_irq_info,
2490 #else
2491 .mhandler.info = irq_info,
2492 #endif
2495 .name = "pic",
2496 .args_type = "",
2497 .params = "",
2498 .help = "show i8259 (PIC) state",
2499 #ifdef TARGET_SPARC
2500 .mhandler.info = sun4m_pic_info,
2501 #elif defined(TARGET_LM32)
2502 .mhandler.info = lm32_do_pic_info,
2503 #else
2504 .mhandler.info = pic_info,
2505 #endif
2507 #endif
2509 .name = "pci",
2510 .args_type = "",
2511 .params = "",
2512 .help = "show PCI info",
2513 .mhandler.info = hmp_info_pci,
2515 #if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \
2516 defined(TARGET_PPC) || defined(TARGET_XTENSA)
2518 .name = "tlb",
2519 .args_type = "",
2520 .params = "",
2521 .help = "show virtual to physical memory mappings",
2522 .mhandler.info = tlb_info,
2524 #endif
2525 #if defined(TARGET_I386)
2527 .name = "mem",
2528 .args_type = "",
2529 .params = "",
2530 .help = "show the active virtual memory mappings",
2531 .mhandler.info = mem_info,
2533 #endif
2535 .name = "mtree",
2536 .args_type = "",
2537 .params = "",
2538 .help = "show memory tree",
2539 .mhandler.info = do_info_mtree,
2542 .name = "jit",
2543 .args_type = "",
2544 .params = "",
2545 .help = "show dynamic compiler info",
2546 .mhandler.info = do_info_jit,
2549 .name = "kvm",
2550 .args_type = "",
2551 .params = "",
2552 .help = "show KVM information",
2553 .mhandler.info = hmp_info_kvm,
2556 .name = "numa",
2557 .args_type = "",
2558 .params = "",
2559 .help = "show NUMA information",
2560 .mhandler.info = do_info_numa,
2563 .name = "usb",
2564 .args_type = "",
2565 .params = "",
2566 .help = "show guest USB devices",
2567 .mhandler.info = usb_info,
2570 .name = "usbhost",
2571 .args_type = "",
2572 .params = "",
2573 .help = "show host USB devices",
2574 .mhandler.info = usb_host_info,
2577 .name = "profile",
2578 .args_type = "",
2579 .params = "",
2580 .help = "show profiling information",
2581 .mhandler.info = do_info_profile,
2584 .name = "capture",
2585 .args_type = "",
2586 .params = "",
2587 .help = "show capture information",
2588 .mhandler.info = do_info_capture,
2591 .name = "snapshots",
2592 .args_type = "",
2593 .params = "",
2594 .help = "show the currently saved VM snapshots",
2595 .mhandler.info = do_info_snapshots,
2598 .name = "status",
2599 .args_type = "",
2600 .params = "",
2601 .help = "show the current VM status (running|paused)",
2602 .mhandler.info = hmp_info_status,
2605 .name = "pcmcia",
2606 .args_type = "",
2607 .params = "",
2608 .help = "show guest PCMCIA status",
2609 .mhandler.info = pcmcia_info,
2612 .name = "mice",
2613 .args_type = "",
2614 .params = "",
2615 .help = "show which guest mouse is receiving events",
2616 .mhandler.info = hmp_info_mice,
2619 .name = "vnc",
2620 .args_type = "",
2621 .params = "",
2622 .help = "show the vnc server status",
2623 .mhandler.info = hmp_info_vnc,
2625 #if defined(CONFIG_SPICE)
2627 .name = "spice",
2628 .args_type = "",
2629 .params = "",
2630 .help = "show the spice server status",
2631 .mhandler.info = hmp_info_spice,
2633 #endif
2635 .name = "name",
2636 .args_type = "",
2637 .params = "",
2638 .help = "show the current VM name",
2639 .mhandler.info = hmp_info_name,
2642 .name = "uuid",
2643 .args_type = "",
2644 .params = "",
2645 .help = "show the current VM UUID",
2646 .mhandler.info = hmp_info_uuid,
2648 #if defined(TARGET_PPC)
2650 .name = "cpustats",
2651 .args_type = "",
2652 .params = "",
2653 .help = "show CPU statistics",
2654 .mhandler.info = do_info_cpu_stats,
2656 #endif
2657 #if defined(CONFIG_SLIRP)
2659 .name = "usernet",
2660 .args_type = "",
2661 .params = "",
2662 .help = "show user network stack connection states",
2663 .mhandler.info = do_info_usernet,
2665 #endif
2667 .name = "migrate",
2668 .args_type = "",
2669 .params = "",
2670 .help = "show migration status",
2671 .mhandler.info = hmp_info_migrate,
2674 .name = "migrate_capabilities",
2675 .args_type = "",
2676 .params = "",
2677 .help = "show current migration capabilities",
2678 .mhandler.info = hmp_info_migrate_capabilities,
2681 .name = "migrate_cache_size",
2682 .args_type = "",
2683 .params = "",
2684 .help = "show current migration xbzrle cache size",
2685 .mhandler.info = hmp_info_migrate_cache_size,
2688 .name = "balloon",
2689 .args_type = "",
2690 .params = "",
2691 .help = "show balloon information",
2692 .mhandler.info = hmp_info_balloon,
2695 .name = "qtree",
2696 .args_type = "",
2697 .params = "",
2698 .help = "show device tree",
2699 .mhandler.info = do_info_qtree,
2702 .name = "qdm",
2703 .args_type = "",
2704 .params = "",
2705 .help = "show qdev device model list",
2706 .mhandler.info = do_info_qdm,
2709 .name = "roms",
2710 .args_type = "",
2711 .params = "",
2712 .help = "show roms",
2713 .mhandler.info = do_info_roms,
2716 .name = "trace-events",
2717 .args_type = "",
2718 .params = "",
2719 .help = "show available trace-events & their state",
2720 .mhandler.info = do_trace_print_events,
2723 .name = NULL,
2727 static const mon_cmd_t qmp_cmds[] = {
2728 #include "qmp-commands-old.h"
2729 { /* NULL */ },
2732 /*******************************************************************/
2734 static const char *pch;
2735 static jmp_buf expr_env;
2737 #define MD_TLONG 0
2738 #define MD_I32 1
2740 typedef struct MonitorDef {
2741 const char *name;
2742 int offset;
2743 target_long (*get_value)(const struct MonitorDef *md, int val);
2744 int type;
2745 } MonitorDef;
2747 #if defined(TARGET_I386)
2748 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
2750 CPUArchState *env = mon_get_cpu();
2751 return env->eip + env->segs[R_CS].base;
2753 #endif
2755 #if defined(TARGET_PPC)
2756 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
2758 CPUArchState *env = mon_get_cpu();
2759 unsigned int u;
2760 int i;
2762 u = 0;
2763 for (i = 0; i < 8; i++)
2764 u |= env->crf[i] << (32 - (4 * i));
2766 return u;
2769 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
2771 CPUArchState *env = mon_get_cpu();
2772 return env->msr;
2775 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
2777 CPUArchState *env = mon_get_cpu();
2778 return env->xer;
2781 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
2783 CPUArchState *env = mon_get_cpu();
2784 return cpu_ppc_load_decr(env);
2787 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
2789 CPUArchState *env = mon_get_cpu();
2790 return cpu_ppc_load_tbu(env);
2793 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
2795 CPUArchState *env = mon_get_cpu();
2796 return cpu_ppc_load_tbl(env);
2798 #endif
2800 #if defined(TARGET_SPARC)
2801 #ifndef TARGET_SPARC64
2802 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
2804 CPUArchState *env = mon_get_cpu();
2806 return cpu_get_psr(env);
2808 #endif
2810 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
2812 CPUArchState *env = mon_get_cpu();
2813 return env->regwptr[val];
2815 #endif
2817 static const MonitorDef monitor_defs[] = {
2818 #ifdef TARGET_I386
2820 #define SEG(name, seg) \
2821 { name, offsetof(CPUX86State, segs[seg].selector), NULL, MD_I32 },\
2822 { name ".base", offsetof(CPUX86State, segs[seg].base) },\
2823 { name ".limit", offsetof(CPUX86State, segs[seg].limit), NULL, MD_I32 },
2825 { "eax", offsetof(CPUX86State, regs[0]) },
2826 { "ecx", offsetof(CPUX86State, regs[1]) },
2827 { "edx", offsetof(CPUX86State, regs[2]) },
2828 { "ebx", offsetof(CPUX86State, regs[3]) },
2829 { "esp|sp", offsetof(CPUX86State, regs[4]) },
2830 { "ebp|fp", offsetof(CPUX86State, regs[5]) },
2831 { "esi", offsetof(CPUX86State, regs[6]) },
2832 { "edi", offsetof(CPUX86State, regs[7]) },
2833 #ifdef TARGET_X86_64
2834 { "r8", offsetof(CPUX86State, regs[8]) },
2835 { "r9", offsetof(CPUX86State, regs[9]) },
2836 { "r10", offsetof(CPUX86State, regs[10]) },
2837 { "r11", offsetof(CPUX86State, regs[11]) },
2838 { "r12", offsetof(CPUX86State, regs[12]) },
2839 { "r13", offsetof(CPUX86State, regs[13]) },
2840 { "r14", offsetof(CPUX86State, regs[14]) },
2841 { "r15", offsetof(CPUX86State, regs[15]) },
2842 #endif
2843 { "eflags", offsetof(CPUX86State, eflags) },
2844 { "eip", offsetof(CPUX86State, eip) },
2845 SEG("cs", R_CS)
2846 SEG("ds", R_DS)
2847 SEG("es", R_ES)
2848 SEG("ss", R_SS)
2849 SEG("fs", R_FS)
2850 SEG("gs", R_GS)
2851 { "pc", 0, monitor_get_pc, },
2852 #elif defined(TARGET_PPC)
2853 /* General purpose registers */
2854 { "r0", offsetof(CPUPPCState, gpr[0]) },
2855 { "r1", offsetof(CPUPPCState, gpr[1]) },
2856 { "r2", offsetof(CPUPPCState, gpr[2]) },
2857 { "r3", offsetof(CPUPPCState, gpr[3]) },
2858 { "r4", offsetof(CPUPPCState, gpr[4]) },
2859 { "r5", offsetof(CPUPPCState, gpr[5]) },
2860 { "r6", offsetof(CPUPPCState, gpr[6]) },
2861 { "r7", offsetof(CPUPPCState, gpr[7]) },
2862 { "r8", offsetof(CPUPPCState, gpr[8]) },
2863 { "r9", offsetof(CPUPPCState, gpr[9]) },
2864 { "r10", offsetof(CPUPPCState, gpr[10]) },
2865 { "r11", offsetof(CPUPPCState, gpr[11]) },
2866 { "r12", offsetof(CPUPPCState, gpr[12]) },
2867 { "r13", offsetof(CPUPPCState, gpr[13]) },
2868 { "r14", offsetof(CPUPPCState, gpr[14]) },
2869 { "r15", offsetof(CPUPPCState, gpr[15]) },
2870 { "r16", offsetof(CPUPPCState, gpr[16]) },
2871 { "r17", offsetof(CPUPPCState, gpr[17]) },
2872 { "r18", offsetof(CPUPPCState, gpr[18]) },
2873 { "r19", offsetof(CPUPPCState, gpr[19]) },
2874 { "r20", offsetof(CPUPPCState, gpr[20]) },
2875 { "r21", offsetof(CPUPPCState, gpr[21]) },
2876 { "r22", offsetof(CPUPPCState, gpr[22]) },
2877 { "r23", offsetof(CPUPPCState, gpr[23]) },
2878 { "r24", offsetof(CPUPPCState, gpr[24]) },
2879 { "r25", offsetof(CPUPPCState, gpr[25]) },
2880 { "r26", offsetof(CPUPPCState, gpr[26]) },
2881 { "r27", offsetof(CPUPPCState, gpr[27]) },
2882 { "r28", offsetof(CPUPPCState, gpr[28]) },
2883 { "r29", offsetof(CPUPPCState, gpr[29]) },
2884 { "r30", offsetof(CPUPPCState, gpr[30]) },
2885 { "r31", offsetof(CPUPPCState, gpr[31]) },
2886 /* Floating point registers */
2887 { "f0", offsetof(CPUPPCState, fpr[0]) },
2888 { "f1", offsetof(CPUPPCState, fpr[1]) },
2889 { "f2", offsetof(CPUPPCState, fpr[2]) },
2890 { "f3", offsetof(CPUPPCState, fpr[3]) },
2891 { "f4", offsetof(CPUPPCState, fpr[4]) },
2892 { "f5", offsetof(CPUPPCState, fpr[5]) },
2893 { "f6", offsetof(CPUPPCState, fpr[6]) },
2894 { "f7", offsetof(CPUPPCState, fpr[7]) },
2895 { "f8", offsetof(CPUPPCState, fpr[8]) },
2896 { "f9", offsetof(CPUPPCState, fpr[9]) },
2897 { "f10", offsetof(CPUPPCState, fpr[10]) },
2898 { "f11", offsetof(CPUPPCState, fpr[11]) },
2899 { "f12", offsetof(CPUPPCState, fpr[12]) },
2900 { "f13", offsetof(CPUPPCState, fpr[13]) },
2901 { "f14", offsetof(CPUPPCState, fpr[14]) },
2902 { "f15", offsetof(CPUPPCState, fpr[15]) },
2903 { "f16", offsetof(CPUPPCState, fpr[16]) },
2904 { "f17", offsetof(CPUPPCState, fpr[17]) },
2905 { "f18", offsetof(CPUPPCState, fpr[18]) },
2906 { "f19", offsetof(CPUPPCState, fpr[19]) },
2907 { "f20", offsetof(CPUPPCState, fpr[20]) },
2908 { "f21", offsetof(CPUPPCState, fpr[21]) },
2909 { "f22", offsetof(CPUPPCState, fpr[22]) },
2910 { "f23", offsetof(CPUPPCState, fpr[23]) },
2911 { "f24", offsetof(CPUPPCState, fpr[24]) },
2912 { "f25", offsetof(CPUPPCState, fpr[25]) },
2913 { "f26", offsetof(CPUPPCState, fpr[26]) },
2914 { "f27", offsetof(CPUPPCState, fpr[27]) },
2915 { "f28", offsetof(CPUPPCState, fpr[28]) },
2916 { "f29", offsetof(CPUPPCState, fpr[29]) },
2917 { "f30", offsetof(CPUPPCState, fpr[30]) },
2918 { "f31", offsetof(CPUPPCState, fpr[31]) },
2919 { "fpscr", offsetof(CPUPPCState, fpscr) },
2920 /* Next instruction pointer */
2921 { "nip|pc", offsetof(CPUPPCState, nip) },
2922 { "lr", offsetof(CPUPPCState, lr) },
2923 { "ctr", offsetof(CPUPPCState, ctr) },
2924 { "decr", 0, &monitor_get_decr, },
2925 { "ccr", 0, &monitor_get_ccr, },
2926 /* Machine state register */
2927 { "msr", 0, &monitor_get_msr, },
2928 { "xer", 0, &monitor_get_xer, },
2929 { "tbu", 0, &monitor_get_tbu, },
2930 { "tbl", 0, &monitor_get_tbl, },
2931 #if defined(TARGET_PPC64)
2932 /* Address space register */
2933 { "asr", offsetof(CPUPPCState, asr) },
2934 #endif
2935 /* Segment registers */
2936 { "sdr1", offsetof(CPUPPCState, spr[SPR_SDR1]) },
2937 { "sr0", offsetof(CPUPPCState, sr[0]) },
2938 { "sr1", offsetof(CPUPPCState, sr[1]) },
2939 { "sr2", offsetof(CPUPPCState, sr[2]) },
2940 { "sr3", offsetof(CPUPPCState, sr[3]) },
2941 { "sr4", offsetof(CPUPPCState, sr[4]) },
2942 { "sr5", offsetof(CPUPPCState, sr[5]) },
2943 { "sr6", offsetof(CPUPPCState, sr[6]) },
2944 { "sr7", offsetof(CPUPPCState, sr[7]) },
2945 { "sr8", offsetof(CPUPPCState, sr[8]) },
2946 { "sr9", offsetof(CPUPPCState, sr[9]) },
2947 { "sr10", offsetof(CPUPPCState, sr[10]) },
2948 { "sr11", offsetof(CPUPPCState, sr[11]) },
2949 { "sr12", offsetof(CPUPPCState, sr[12]) },
2950 { "sr13", offsetof(CPUPPCState, sr[13]) },
2951 { "sr14", offsetof(CPUPPCState, sr[14]) },
2952 { "sr15", offsetof(CPUPPCState, sr[15]) },
2953 /* Too lazy to put BATs... */
2954 { "pvr", offsetof(CPUPPCState, spr[SPR_PVR]) },
2956 { "srr0", offsetof(CPUPPCState, spr[SPR_SRR0]) },
2957 { "srr1", offsetof(CPUPPCState, spr[SPR_SRR1]) },
2958 { "sprg0", offsetof(CPUPPCState, spr[SPR_SPRG0]) },
2959 { "sprg1", offsetof(CPUPPCState, spr[SPR_SPRG1]) },
2960 { "sprg2", offsetof(CPUPPCState, spr[SPR_SPRG2]) },
2961 { "sprg3", offsetof(CPUPPCState, spr[SPR_SPRG3]) },
2962 { "sprg4", offsetof(CPUPPCState, spr[SPR_SPRG4]) },
2963 { "sprg5", offsetof(CPUPPCState, spr[SPR_SPRG5]) },
2964 { "sprg6", offsetof(CPUPPCState, spr[SPR_SPRG6]) },
2965 { "sprg7", offsetof(CPUPPCState, spr[SPR_SPRG7]) },
2966 { "pid", offsetof(CPUPPCState, spr[SPR_BOOKE_PID]) },
2967 { "csrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR0]) },
2968 { "csrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR1]) },
2969 { "esr", offsetof(CPUPPCState, spr[SPR_BOOKE_ESR]) },
2970 { "dear", offsetof(CPUPPCState, spr[SPR_BOOKE_DEAR]) },
2971 { "mcsr", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSR]) },
2972 { "tsr", offsetof(CPUPPCState, spr[SPR_BOOKE_TSR]) },
2973 { "tcr", offsetof(CPUPPCState, spr[SPR_BOOKE_TCR]) },
2974 { "vrsave", offsetof(CPUPPCState, spr[SPR_VRSAVE]) },
2975 { "pir", offsetof(CPUPPCState, spr[SPR_BOOKE_PIR]) },
2976 { "mcsrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR0]) },
2977 { "mcsrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR1]) },
2978 { "decar", offsetof(CPUPPCState, spr[SPR_BOOKE_DECAR]) },
2979 { "ivpr", offsetof(CPUPPCState, spr[SPR_BOOKE_IVPR]) },
2980 { "epcr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPCR]) },
2981 { "sprg8", offsetof(CPUPPCState, spr[SPR_BOOKE_SPRG8]) },
2982 { "ivor0", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR0]) },
2983 { "ivor1", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR1]) },
2984 { "ivor2", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR2]) },
2985 { "ivor3", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR3]) },
2986 { "ivor4", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR4]) },
2987 { "ivor5", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR5]) },
2988 { "ivor6", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR6]) },
2989 { "ivor7", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR7]) },
2990 { "ivor8", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR8]) },
2991 { "ivor9", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR9]) },
2992 { "ivor10", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR10]) },
2993 { "ivor11", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR11]) },
2994 { "ivor12", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR12]) },
2995 { "ivor13", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR13]) },
2996 { "ivor14", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR14]) },
2997 { "ivor15", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR15]) },
2998 { "ivor32", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR32]) },
2999 { "ivor33", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR33]) },
3000 { "ivor34", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR34]) },
3001 { "ivor35", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR35]) },
3002 { "ivor36", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR36]) },
3003 { "ivor37", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR37]) },
3004 { "mas0", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS0]) },
3005 { "mas1", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS1]) },
3006 { "mas2", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS2]) },
3007 { "mas3", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS3]) },
3008 { "mas4", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS4]) },
3009 { "mas6", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS6]) },
3010 { "mas7", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS7]) },
3011 { "mmucfg", offsetof(CPUPPCState, spr[SPR_MMUCFG]) },
3012 { "tlb0cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB0CFG]) },
3013 { "tlb1cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB1CFG]) },
3014 { "epr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPR]) },
3015 { "eplc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPLC]) },
3016 { "epsc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPSC]) },
3017 { "svr", offsetof(CPUPPCState, spr[SPR_E500_SVR]) },
3018 { "mcar", offsetof(CPUPPCState, spr[SPR_Exxx_MCAR]) },
3019 { "pid1", offsetof(CPUPPCState, spr[SPR_BOOKE_PID1]) },
3020 { "pid2", offsetof(CPUPPCState, spr[SPR_BOOKE_PID2]) },
3021 { "hid0", offsetof(CPUPPCState, spr[SPR_HID0]) },
3023 #elif defined(TARGET_SPARC)
3024 { "g0", offsetof(CPUSPARCState, gregs[0]) },
3025 { "g1", offsetof(CPUSPARCState, gregs[1]) },
3026 { "g2", offsetof(CPUSPARCState, gregs[2]) },
3027 { "g3", offsetof(CPUSPARCState, gregs[3]) },
3028 { "g4", offsetof(CPUSPARCState, gregs[4]) },
3029 { "g5", offsetof(CPUSPARCState, gregs[5]) },
3030 { "g6", offsetof(CPUSPARCState, gregs[6]) },
3031 { "g7", offsetof(CPUSPARCState, gregs[7]) },
3032 { "o0", 0, monitor_get_reg },
3033 { "o1", 1, monitor_get_reg },
3034 { "o2", 2, monitor_get_reg },
3035 { "o3", 3, monitor_get_reg },
3036 { "o4", 4, monitor_get_reg },
3037 { "o5", 5, monitor_get_reg },
3038 { "o6", 6, monitor_get_reg },
3039 { "o7", 7, monitor_get_reg },
3040 { "l0", 8, monitor_get_reg },
3041 { "l1", 9, monitor_get_reg },
3042 { "l2", 10, monitor_get_reg },
3043 { "l3", 11, monitor_get_reg },
3044 { "l4", 12, monitor_get_reg },
3045 { "l5", 13, monitor_get_reg },
3046 { "l6", 14, monitor_get_reg },
3047 { "l7", 15, monitor_get_reg },
3048 { "i0", 16, monitor_get_reg },
3049 { "i1", 17, monitor_get_reg },
3050 { "i2", 18, monitor_get_reg },
3051 { "i3", 19, monitor_get_reg },
3052 { "i4", 20, monitor_get_reg },
3053 { "i5", 21, monitor_get_reg },
3054 { "i6", 22, monitor_get_reg },
3055 { "i7", 23, monitor_get_reg },
3056 { "pc", offsetof(CPUSPARCState, pc) },
3057 { "npc", offsetof(CPUSPARCState, npc) },
3058 { "y", offsetof(CPUSPARCState, y) },
3059 #ifndef TARGET_SPARC64
3060 { "psr", 0, &monitor_get_psr, },
3061 { "wim", offsetof(CPUSPARCState, wim) },
3062 #endif
3063 { "tbr", offsetof(CPUSPARCState, tbr) },
3064 { "fsr", offsetof(CPUSPARCState, fsr) },
3065 { "f0", offsetof(CPUSPARCState, fpr[0].l.upper) },
3066 { "f1", offsetof(CPUSPARCState, fpr[0].l.lower) },
3067 { "f2", offsetof(CPUSPARCState, fpr[1].l.upper) },
3068 { "f3", offsetof(CPUSPARCState, fpr[1].l.lower) },
3069 { "f4", offsetof(CPUSPARCState, fpr[2].l.upper) },
3070 { "f5", offsetof(CPUSPARCState, fpr[2].l.lower) },
3071 { "f6", offsetof(CPUSPARCState, fpr[3].l.upper) },
3072 { "f7", offsetof(CPUSPARCState, fpr[3].l.lower) },
3073 { "f8", offsetof(CPUSPARCState, fpr[4].l.upper) },
3074 { "f9", offsetof(CPUSPARCState, fpr[4].l.lower) },
3075 { "f10", offsetof(CPUSPARCState, fpr[5].l.upper) },
3076 { "f11", offsetof(CPUSPARCState, fpr[5].l.lower) },
3077 { "f12", offsetof(CPUSPARCState, fpr[6].l.upper) },
3078 { "f13", offsetof(CPUSPARCState, fpr[6].l.lower) },
3079 { "f14", offsetof(CPUSPARCState, fpr[7].l.upper) },
3080 { "f15", offsetof(CPUSPARCState, fpr[7].l.lower) },
3081 { "f16", offsetof(CPUSPARCState, fpr[8].l.upper) },
3082 { "f17", offsetof(CPUSPARCState, fpr[8].l.lower) },
3083 { "f18", offsetof(CPUSPARCState, fpr[9].l.upper) },
3084 { "f19", offsetof(CPUSPARCState, fpr[9].l.lower) },
3085 { "f20", offsetof(CPUSPARCState, fpr[10].l.upper) },
3086 { "f21", offsetof(CPUSPARCState, fpr[10].l.lower) },
3087 { "f22", offsetof(CPUSPARCState, fpr[11].l.upper) },
3088 { "f23", offsetof(CPUSPARCState, fpr[11].l.lower) },
3089 { "f24", offsetof(CPUSPARCState, fpr[12].l.upper) },
3090 { "f25", offsetof(CPUSPARCState, fpr[12].l.lower) },
3091 { "f26", offsetof(CPUSPARCState, fpr[13].l.upper) },
3092 { "f27", offsetof(CPUSPARCState, fpr[13].l.lower) },
3093 { "f28", offsetof(CPUSPARCState, fpr[14].l.upper) },
3094 { "f29", offsetof(CPUSPARCState, fpr[14].l.lower) },
3095 { "f30", offsetof(CPUSPARCState, fpr[15].l.upper) },
3096 { "f31", offsetof(CPUSPARCState, fpr[15].l.lower) },
3097 #ifdef TARGET_SPARC64
3098 { "f32", offsetof(CPUSPARCState, fpr[16]) },
3099 { "f34", offsetof(CPUSPARCState, fpr[17]) },
3100 { "f36", offsetof(CPUSPARCState, fpr[18]) },
3101 { "f38", offsetof(CPUSPARCState, fpr[19]) },
3102 { "f40", offsetof(CPUSPARCState, fpr[20]) },
3103 { "f42", offsetof(CPUSPARCState, fpr[21]) },
3104 { "f44", offsetof(CPUSPARCState, fpr[22]) },
3105 { "f46", offsetof(CPUSPARCState, fpr[23]) },
3106 { "f48", offsetof(CPUSPARCState, fpr[24]) },
3107 { "f50", offsetof(CPUSPARCState, fpr[25]) },
3108 { "f52", offsetof(CPUSPARCState, fpr[26]) },
3109 { "f54", offsetof(CPUSPARCState, fpr[27]) },
3110 { "f56", offsetof(CPUSPARCState, fpr[28]) },
3111 { "f58", offsetof(CPUSPARCState, fpr[29]) },
3112 { "f60", offsetof(CPUSPARCState, fpr[30]) },
3113 { "f62", offsetof(CPUSPARCState, fpr[31]) },
3114 { "asi", offsetof(CPUSPARCState, asi) },
3115 { "pstate", offsetof(CPUSPARCState, pstate) },
3116 { "cansave", offsetof(CPUSPARCState, cansave) },
3117 { "canrestore", offsetof(CPUSPARCState, canrestore) },
3118 { "otherwin", offsetof(CPUSPARCState, otherwin) },
3119 { "wstate", offsetof(CPUSPARCState, wstate) },
3120 { "cleanwin", offsetof(CPUSPARCState, cleanwin) },
3121 { "fprs", offsetof(CPUSPARCState, fprs) },
3122 #endif
3123 #endif
3124 { NULL },
3127 static void expr_error(Monitor *mon, const char *msg)
3129 monitor_printf(mon, "%s\n", msg);
3130 longjmp(expr_env, 1);
3133 /* return 0 if OK, -1 if not found */
3134 static int get_monitor_def(target_long *pval, const char *name)
3136 const MonitorDef *md;
3137 void *ptr;
3139 for(md = monitor_defs; md->name != NULL; md++) {
3140 if (compare_cmd(name, md->name)) {
3141 if (md->get_value) {
3142 *pval = md->get_value(md, md->offset);
3143 } else {
3144 CPUArchState *env = mon_get_cpu();
3145 ptr = (uint8_t *)env + md->offset;
3146 switch(md->type) {
3147 case MD_I32:
3148 *pval = *(int32_t *)ptr;
3149 break;
3150 case MD_TLONG:
3151 *pval = *(target_long *)ptr;
3152 break;
3153 default:
3154 *pval = 0;
3155 break;
3158 return 0;
3161 return -1;
3164 static void next(void)
3166 if (*pch != '\0') {
3167 pch++;
3168 while (qemu_isspace(*pch))
3169 pch++;
3173 static int64_t expr_sum(Monitor *mon);
3175 static int64_t expr_unary(Monitor *mon)
3177 int64_t n;
3178 char *p;
3179 int ret;
3181 switch(*pch) {
3182 case '+':
3183 next();
3184 n = expr_unary(mon);
3185 break;
3186 case '-':
3187 next();
3188 n = -expr_unary(mon);
3189 break;
3190 case '~':
3191 next();
3192 n = ~expr_unary(mon);
3193 break;
3194 case '(':
3195 next();
3196 n = expr_sum(mon);
3197 if (*pch != ')') {
3198 expr_error(mon, "')' expected");
3200 next();
3201 break;
3202 case '\'':
3203 pch++;
3204 if (*pch == '\0')
3205 expr_error(mon, "character constant expected");
3206 n = *pch;
3207 pch++;
3208 if (*pch != '\'')
3209 expr_error(mon, "missing terminating \' character");
3210 next();
3211 break;
3212 case '$':
3214 char buf[128], *q;
3215 target_long reg=0;
3217 pch++;
3218 q = buf;
3219 while ((*pch >= 'a' && *pch <= 'z') ||
3220 (*pch >= 'A' && *pch <= 'Z') ||
3221 (*pch >= '0' && *pch <= '9') ||
3222 *pch == '_' || *pch == '.') {
3223 if ((q - buf) < sizeof(buf) - 1)
3224 *q++ = *pch;
3225 pch++;
3227 while (qemu_isspace(*pch))
3228 pch++;
3229 *q = 0;
3230 ret = get_monitor_def(&reg, buf);
3231 if (ret < 0)
3232 expr_error(mon, "unknown register");
3233 n = reg;
3235 break;
3236 case '\0':
3237 expr_error(mon, "unexpected end of expression");
3238 n = 0;
3239 break;
3240 default:
3241 errno = 0;
3242 n = strtoull(pch, &p, 0);
3243 if (errno == ERANGE) {
3244 expr_error(mon, "number too large");
3246 if (pch == p) {
3247 expr_error(mon, "invalid char in expression");
3249 pch = p;
3250 while (qemu_isspace(*pch))
3251 pch++;
3252 break;
3254 return n;
3258 static int64_t expr_prod(Monitor *mon)
3260 int64_t val, val2;
3261 int op;
3263 val = expr_unary(mon);
3264 for(;;) {
3265 op = *pch;
3266 if (op != '*' && op != '/' && op != '%')
3267 break;
3268 next();
3269 val2 = expr_unary(mon);
3270 switch(op) {
3271 default:
3272 case '*':
3273 val *= val2;
3274 break;
3275 case '/':
3276 case '%':
3277 if (val2 == 0)
3278 expr_error(mon, "division by zero");
3279 if (op == '/')
3280 val /= val2;
3281 else
3282 val %= val2;
3283 break;
3286 return val;
3289 static int64_t expr_logic(Monitor *mon)
3291 int64_t val, val2;
3292 int op;
3294 val = expr_prod(mon);
3295 for(;;) {
3296 op = *pch;
3297 if (op != '&' && op != '|' && op != '^')
3298 break;
3299 next();
3300 val2 = expr_prod(mon);
3301 switch(op) {
3302 default:
3303 case '&':
3304 val &= val2;
3305 break;
3306 case '|':
3307 val |= val2;
3308 break;
3309 case '^':
3310 val ^= val2;
3311 break;
3314 return val;
3317 static int64_t expr_sum(Monitor *mon)
3319 int64_t val, val2;
3320 int op;
3322 val = expr_logic(mon);
3323 for(;;) {
3324 op = *pch;
3325 if (op != '+' && op != '-')
3326 break;
3327 next();
3328 val2 = expr_logic(mon);
3329 if (op == '+')
3330 val += val2;
3331 else
3332 val -= val2;
3334 return val;
3337 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
3339 pch = *pp;
3340 if (setjmp(expr_env)) {
3341 *pp = pch;
3342 return -1;
3344 while (qemu_isspace(*pch))
3345 pch++;
3346 *pval = expr_sum(mon);
3347 *pp = pch;
3348 return 0;
3351 static int get_double(Monitor *mon, double *pval, const char **pp)
3353 const char *p = *pp;
3354 char *tailp;
3355 double d;
3357 d = strtod(p, &tailp);
3358 if (tailp == p) {
3359 monitor_printf(mon, "Number expected\n");
3360 return -1;
3362 if (d != d || d - d != 0) {
3363 /* NaN or infinity */
3364 monitor_printf(mon, "Bad number\n");
3365 return -1;
3367 *pval = d;
3368 *pp = tailp;
3369 return 0;
3372 static int get_str(char *buf, int buf_size, const char **pp)
3374 const char *p;
3375 char *q;
3376 int c;
3378 q = buf;
3379 p = *pp;
3380 while (qemu_isspace(*p))
3381 p++;
3382 if (*p == '\0') {
3383 fail:
3384 *q = '\0';
3385 *pp = p;
3386 return -1;
3388 if (*p == '\"') {
3389 p++;
3390 while (*p != '\0' && *p != '\"') {
3391 if (*p == '\\') {
3392 p++;
3393 c = *p++;
3394 switch(c) {
3395 case 'n':
3396 c = '\n';
3397 break;
3398 case 'r':
3399 c = '\r';
3400 break;
3401 case '\\':
3402 case '\'':
3403 case '\"':
3404 break;
3405 default:
3406 qemu_printf("unsupported escape code: '\\%c'\n", c);
3407 goto fail;
3409 if ((q - buf) < buf_size - 1) {
3410 *q++ = c;
3412 } else {
3413 if ((q - buf) < buf_size - 1) {
3414 *q++ = *p;
3416 p++;
3419 if (*p != '\"') {
3420 qemu_printf("unterminated string\n");
3421 goto fail;
3423 p++;
3424 } else {
3425 while (*p != '\0' && !qemu_isspace(*p)) {
3426 if ((q - buf) < buf_size - 1) {
3427 *q++ = *p;
3429 p++;
3432 *q = '\0';
3433 *pp = p;
3434 return 0;
3438 * Store the command-name in cmdname, and return a pointer to
3439 * the remaining of the command string.
3441 static const char *get_command_name(const char *cmdline,
3442 char *cmdname, size_t nlen)
3444 size_t len;
3445 const char *p, *pstart;
3447 p = cmdline;
3448 while (qemu_isspace(*p))
3449 p++;
3450 if (*p == '\0')
3451 return NULL;
3452 pstart = p;
3453 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3454 p++;
3455 len = p - pstart;
3456 if (len > nlen - 1)
3457 len = nlen - 1;
3458 memcpy(cmdname, pstart, len);
3459 cmdname[len] = '\0';
3460 return p;
3464 * Read key of 'type' into 'key' and return the current
3465 * 'type' pointer.
3467 static char *key_get_info(const char *type, char **key)
3469 size_t len;
3470 char *p, *str;
3472 if (*type == ',')
3473 type++;
3475 p = strchr(type, ':');
3476 if (!p) {
3477 *key = NULL;
3478 return NULL;
3480 len = p - type;
3482 str = g_malloc(len + 1);
3483 memcpy(str, type, len);
3484 str[len] = '\0';
3486 *key = str;
3487 return ++p;
3490 static int default_fmt_format = 'x';
3491 static int default_fmt_size = 4;
3493 #define MAX_ARGS 16
3495 static int is_valid_option(const char *c, const char *typestr)
3497 char option[3];
3499 option[0] = '-';
3500 option[1] = *c;
3501 option[2] = '\0';
3503 typestr = strstr(typestr, option);
3504 return (typestr != NULL);
3507 static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3508 const char *cmdname)
3510 const mon_cmd_t *cmd;
3512 for (cmd = disp_table; cmd->name != NULL; cmd++) {
3513 if (compare_cmd(cmdname, cmd->name)) {
3514 return cmd;
3518 return NULL;
3521 static const mon_cmd_t *monitor_find_command(const char *cmdname)
3523 return search_dispatch_table(mon_cmds, cmdname);
3526 static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3528 return search_dispatch_table(qmp_cmds, cmdname);
3531 static const mon_cmd_t *monitor_parse_command(Monitor *mon,
3532 const char *cmdline,
3533 QDict *qdict)
3535 const char *p, *typestr;
3536 int c;
3537 const mon_cmd_t *cmd;
3538 char cmdname[256];
3539 char buf[1024];
3540 char *key;
3542 #ifdef DEBUG
3543 monitor_printf(mon, "command='%s'\n", cmdline);
3544 #endif
3546 /* extract the command name */
3547 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3548 if (!p)
3549 return NULL;
3551 cmd = monitor_find_command(cmdname);
3552 if (!cmd) {
3553 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
3554 return NULL;
3557 /* parse the parameters */
3558 typestr = cmd->args_type;
3559 for(;;) {
3560 typestr = key_get_info(typestr, &key);
3561 if (!typestr)
3562 break;
3563 c = *typestr;
3564 typestr++;
3565 switch(c) {
3566 case 'F':
3567 case 'B':
3568 case 's':
3570 int ret;
3572 while (qemu_isspace(*p))
3573 p++;
3574 if (*typestr == '?') {
3575 typestr++;
3576 if (*p == '\0') {
3577 /* no optional string: NULL argument */
3578 break;
3581 ret = get_str(buf, sizeof(buf), &p);
3582 if (ret < 0) {
3583 switch(c) {
3584 case 'F':
3585 monitor_printf(mon, "%s: filename expected\n",
3586 cmdname);
3587 break;
3588 case 'B':
3589 monitor_printf(mon, "%s: block device name expected\n",
3590 cmdname);
3591 break;
3592 default:
3593 monitor_printf(mon, "%s: string expected\n", cmdname);
3594 break;
3596 goto fail;
3598 qdict_put(qdict, key, qstring_from_str(buf));
3600 break;
3601 case 'O':
3603 QemuOptsList *opts_list;
3604 QemuOpts *opts;
3606 opts_list = qemu_find_opts(key);
3607 if (!opts_list || opts_list->desc->name) {
3608 goto bad_type;
3610 while (qemu_isspace(*p)) {
3611 p++;
3613 if (!*p)
3614 break;
3615 if (get_str(buf, sizeof(buf), &p) < 0) {
3616 goto fail;
3618 opts = qemu_opts_parse(opts_list, buf, 1);
3619 if (!opts) {
3620 goto fail;
3622 qemu_opts_to_qdict(opts, qdict);
3623 qemu_opts_del(opts);
3625 break;
3626 case '/':
3628 int count, format, size;
3630 while (qemu_isspace(*p))
3631 p++;
3632 if (*p == '/') {
3633 /* format found */
3634 p++;
3635 count = 1;
3636 if (qemu_isdigit(*p)) {
3637 count = 0;
3638 while (qemu_isdigit(*p)) {
3639 count = count * 10 + (*p - '0');
3640 p++;
3643 size = -1;
3644 format = -1;
3645 for(;;) {
3646 switch(*p) {
3647 case 'o':
3648 case 'd':
3649 case 'u':
3650 case 'x':
3651 case 'i':
3652 case 'c':
3653 format = *p++;
3654 break;
3655 case 'b':
3656 size = 1;
3657 p++;
3658 break;
3659 case 'h':
3660 size = 2;
3661 p++;
3662 break;
3663 case 'w':
3664 size = 4;
3665 p++;
3666 break;
3667 case 'g':
3668 case 'L':
3669 size = 8;
3670 p++;
3671 break;
3672 default:
3673 goto next;
3676 next:
3677 if (*p != '\0' && !qemu_isspace(*p)) {
3678 monitor_printf(mon, "invalid char in format: '%c'\n",
3679 *p);
3680 goto fail;
3682 if (format < 0)
3683 format = default_fmt_format;
3684 if (format != 'i') {
3685 /* for 'i', not specifying a size gives -1 as size */
3686 if (size < 0)
3687 size = default_fmt_size;
3688 default_fmt_size = size;
3690 default_fmt_format = format;
3691 } else {
3692 count = 1;
3693 format = default_fmt_format;
3694 if (format != 'i') {
3695 size = default_fmt_size;
3696 } else {
3697 size = -1;
3700 qdict_put(qdict, "count", qint_from_int(count));
3701 qdict_put(qdict, "format", qint_from_int(format));
3702 qdict_put(qdict, "size", qint_from_int(size));
3704 break;
3705 case 'i':
3706 case 'l':
3707 case 'M':
3709 int64_t val;
3711 while (qemu_isspace(*p))
3712 p++;
3713 if (*typestr == '?' || *typestr == '.') {
3714 if (*typestr == '?') {
3715 if (*p == '\0') {
3716 typestr++;
3717 break;
3719 } else {
3720 if (*p == '.') {
3721 p++;
3722 while (qemu_isspace(*p))
3723 p++;
3724 } else {
3725 typestr++;
3726 break;
3729 typestr++;
3731 if (get_expr(mon, &val, &p))
3732 goto fail;
3733 /* Check if 'i' is greater than 32-bit */
3734 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3735 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3736 monitor_printf(mon, "integer is for 32-bit values\n");
3737 goto fail;
3738 } else if (c == 'M') {
3739 if (val < 0) {
3740 monitor_printf(mon, "enter a positive value\n");
3741 goto fail;
3743 val <<= 20;
3745 qdict_put(qdict, key, qint_from_int(val));
3747 break;
3748 case 'o':
3750 int64_t val;
3751 char *end;
3753 while (qemu_isspace(*p)) {
3754 p++;
3756 if (*typestr == '?') {
3757 typestr++;
3758 if (*p == '\0') {
3759 break;
3762 val = strtosz(p, &end);
3763 if (val < 0) {
3764 monitor_printf(mon, "invalid size\n");
3765 goto fail;
3767 qdict_put(qdict, key, qint_from_int(val));
3768 p = end;
3770 break;
3771 case 'T':
3773 double val;
3775 while (qemu_isspace(*p))
3776 p++;
3777 if (*typestr == '?') {
3778 typestr++;
3779 if (*p == '\0') {
3780 break;
3783 if (get_double(mon, &val, &p) < 0) {
3784 goto fail;
3786 if (p[0] && p[1] == 's') {
3787 switch (*p) {
3788 case 'm':
3789 val /= 1e3; p += 2; break;
3790 case 'u':
3791 val /= 1e6; p += 2; break;
3792 case 'n':
3793 val /= 1e9; p += 2; break;
3796 if (*p && !qemu_isspace(*p)) {
3797 monitor_printf(mon, "Unknown unit suffix\n");
3798 goto fail;
3800 qdict_put(qdict, key, qfloat_from_double(val));
3802 break;
3803 case 'b':
3805 const char *beg;
3806 int val;
3808 while (qemu_isspace(*p)) {
3809 p++;
3811 beg = p;
3812 while (qemu_isgraph(*p)) {
3813 p++;
3815 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3816 val = 1;
3817 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3818 val = 0;
3819 } else {
3820 monitor_printf(mon, "Expected 'on' or 'off'\n");
3821 goto fail;
3823 qdict_put(qdict, key, qbool_from_int(val));
3825 break;
3826 case '-':
3828 const char *tmp = p;
3829 int skip_key = 0;
3830 /* option */
3832 c = *typestr++;
3833 if (c == '\0')
3834 goto bad_type;
3835 while (qemu_isspace(*p))
3836 p++;
3837 if (*p == '-') {
3838 p++;
3839 if(c != *p) {
3840 if(!is_valid_option(p, typestr)) {
3842 monitor_printf(mon, "%s: unsupported option -%c\n",
3843 cmdname, *p);
3844 goto fail;
3845 } else {
3846 skip_key = 1;
3849 if(skip_key) {
3850 p = tmp;
3851 } else {
3852 /* has option */
3853 p++;
3854 qdict_put(qdict, key, qbool_from_int(1));
3858 break;
3859 default:
3860 bad_type:
3861 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
3862 goto fail;
3864 g_free(key);
3865 key = NULL;
3867 /* check that all arguments were parsed */
3868 while (qemu_isspace(*p))
3869 p++;
3870 if (*p != '\0') {
3871 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3872 cmdname);
3873 goto fail;
3876 return cmd;
3878 fail:
3879 g_free(key);
3880 return NULL;
3883 void monitor_set_error(Monitor *mon, QError *qerror)
3885 /* report only the first error */
3886 if (!mon->error) {
3887 mon->error = qerror;
3888 } else {
3889 QDECREF(qerror);
3893 static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3895 if (ret && !monitor_has_error(mon)) {
3897 * If it returns failure, it must have passed on error.
3899 * Action: Report an internal error to the client if in QMP.
3901 qerror_report(QERR_UNDEFINED_ERROR);
3905 static void handle_user_command(Monitor *mon, const char *cmdline)
3907 QDict *qdict;
3908 const mon_cmd_t *cmd;
3910 qdict = qdict_new();
3912 cmd = monitor_parse_command(mon, cmdline, qdict);
3913 if (!cmd)
3914 goto out;
3916 if (handler_is_async(cmd)) {
3917 user_async_cmd_handler(mon, cmd, qdict);
3918 } else if (handler_is_qobject(cmd)) {
3919 QObject *data = NULL;
3921 /* XXX: ignores the error code */
3922 cmd->mhandler.cmd_new(mon, qdict, &data);
3923 assert(!monitor_has_error(mon));
3924 if (data) {
3925 cmd->user_print(mon, data);
3926 qobject_decref(data);
3928 } else {
3929 cmd->mhandler.cmd(mon, qdict);
3932 out:
3933 QDECREF(qdict);
3936 static void cmd_completion(const char *name, const char *list)
3938 const char *p, *pstart;
3939 char cmd[128];
3940 int len;
3942 p = list;
3943 for(;;) {
3944 pstart = p;
3945 p = strchr(p, '|');
3946 if (!p)
3947 p = pstart + strlen(pstart);
3948 len = p - pstart;
3949 if (len > sizeof(cmd) - 2)
3950 len = sizeof(cmd) - 2;
3951 memcpy(cmd, pstart, len);
3952 cmd[len] = '\0';
3953 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
3954 readline_add_completion(cur_mon->rs, cmd);
3956 if (*p == '\0')
3957 break;
3958 p++;
3962 static void file_completion(const char *input)
3964 DIR *ffs;
3965 struct dirent *d;
3966 char path[1024];
3967 char file[1024], file_prefix[1024];
3968 int input_path_len;
3969 const char *p;
3971 p = strrchr(input, '/');
3972 if (!p) {
3973 input_path_len = 0;
3974 pstrcpy(file_prefix, sizeof(file_prefix), input);
3975 pstrcpy(path, sizeof(path), ".");
3976 } else {
3977 input_path_len = p - input + 1;
3978 memcpy(path, input, input_path_len);
3979 if (input_path_len > sizeof(path) - 1)
3980 input_path_len = sizeof(path) - 1;
3981 path[input_path_len] = '\0';
3982 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3984 #ifdef DEBUG_COMPLETION
3985 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
3986 input, path, file_prefix);
3987 #endif
3988 ffs = opendir(path);
3989 if (!ffs)
3990 return;
3991 for(;;) {
3992 struct stat sb;
3993 d = readdir(ffs);
3994 if (!d)
3995 break;
3997 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
3998 continue;
4001 if (strstart(d->d_name, file_prefix, NULL)) {
4002 memcpy(file, input, input_path_len);
4003 if (input_path_len < sizeof(file))
4004 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4005 d->d_name);
4006 /* stat the file to find out if it's a directory.
4007 * In that case add a slash to speed up typing long paths
4009 if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) {
4010 pstrcat(file, sizeof(file), "/");
4012 readline_add_completion(cur_mon->rs, file);
4015 closedir(ffs);
4018 static void block_completion_it(void *opaque, BlockDriverState *bs)
4020 const char *name = bdrv_get_device_name(bs);
4021 const char *input = opaque;
4023 if (input[0] == '\0' ||
4024 !strncmp(name, (char *)input, strlen(input))) {
4025 readline_add_completion(cur_mon->rs, name);
4029 /* NOTE: this parser is an approximate form of the real command parser */
4030 static void parse_cmdline(const char *cmdline,
4031 int *pnb_args, char **args)
4033 const char *p;
4034 int nb_args, ret;
4035 char buf[1024];
4037 p = cmdline;
4038 nb_args = 0;
4039 for(;;) {
4040 while (qemu_isspace(*p))
4041 p++;
4042 if (*p == '\0')
4043 break;
4044 if (nb_args >= MAX_ARGS)
4045 break;
4046 ret = get_str(buf, sizeof(buf), &p);
4047 args[nb_args] = g_strdup(buf);
4048 nb_args++;
4049 if (ret < 0)
4050 break;
4052 *pnb_args = nb_args;
4055 static const char *next_arg_type(const char *typestr)
4057 const char *p = strchr(typestr, ':');
4058 return (p != NULL ? ++p : typestr);
4061 static void monitor_find_completion(const char *cmdline)
4063 const char *cmdname;
4064 char *args[MAX_ARGS];
4065 int nb_args, i, len;
4066 const char *ptype, *str;
4067 const mon_cmd_t *cmd;
4069 parse_cmdline(cmdline, &nb_args, args);
4070 #ifdef DEBUG_COMPLETION
4071 for(i = 0; i < nb_args; i++) {
4072 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
4074 #endif
4076 /* if the line ends with a space, it means we want to complete the
4077 next arg */
4078 len = strlen(cmdline);
4079 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
4080 if (nb_args >= MAX_ARGS) {
4081 goto cleanup;
4083 args[nb_args++] = g_strdup("");
4085 if (nb_args <= 1) {
4086 /* command completion */
4087 if (nb_args == 0)
4088 cmdname = "";
4089 else
4090 cmdname = args[0];
4091 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
4092 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
4093 cmd_completion(cmdname, cmd->name);
4095 } else {
4096 /* find the command */
4097 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4098 if (compare_cmd(args[0], cmd->name)) {
4099 break;
4102 if (!cmd->name) {
4103 goto cleanup;
4106 ptype = next_arg_type(cmd->args_type);
4107 for(i = 0; i < nb_args - 2; i++) {
4108 if (*ptype != '\0') {
4109 ptype = next_arg_type(ptype);
4110 while (*ptype == '?')
4111 ptype = next_arg_type(ptype);
4114 str = args[nb_args - 1];
4115 if (*ptype == '-' && ptype[1] != '\0') {
4116 ptype = next_arg_type(ptype);
4118 switch(*ptype) {
4119 case 'F':
4120 /* file completion */
4121 readline_set_completion_index(cur_mon->rs, strlen(str));
4122 file_completion(str);
4123 break;
4124 case 'B':
4125 /* block device name completion */
4126 readline_set_completion_index(cur_mon->rs, strlen(str));
4127 bdrv_iterate(block_completion_it, (void *)str);
4128 break;
4129 case 's':
4130 /* XXX: more generic ? */
4131 if (!strcmp(cmd->name, "info")) {
4132 readline_set_completion_index(cur_mon->rs, strlen(str));
4133 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4134 cmd_completion(str, cmd->name);
4136 } else if (!strcmp(cmd->name, "sendkey")) {
4137 char *sep = strrchr(str, '-');
4138 if (sep)
4139 str = sep + 1;
4140 readline_set_completion_index(cur_mon->rs, strlen(str));
4141 for (i = 0; i < Q_KEY_CODE_MAX; i++) {
4142 cmd_completion(str, QKeyCode_lookup[i]);
4144 } else if (!strcmp(cmd->name, "help|?")) {
4145 readline_set_completion_index(cur_mon->rs, strlen(str));
4146 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4147 cmd_completion(str, cmd->name);
4150 break;
4151 default:
4152 break;
4156 cleanup:
4157 for (i = 0; i < nb_args; i++) {
4158 g_free(args[i]);
4162 static int monitor_can_read(void *opaque)
4164 Monitor *mon = opaque;
4166 return (mon->suspend_cnt == 0) ? 1 : 0;
4169 static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4171 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4172 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4176 * Argument validation rules:
4178 * 1. The argument must exist in cmd_args qdict
4179 * 2. The argument type must be the expected one
4181 * Special case: If the argument doesn't exist in cmd_args and
4182 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4183 * checking is skipped for it.
4185 static int check_client_args_type(const QDict *client_args,
4186 const QDict *cmd_args, int flags)
4188 const QDictEntry *ent;
4190 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4191 QObject *obj;
4192 QString *arg_type;
4193 const QObject *client_arg = qdict_entry_value(ent);
4194 const char *client_arg_name = qdict_entry_key(ent);
4196 obj = qdict_get(cmd_args, client_arg_name);
4197 if (!obj) {
4198 if (flags & QMP_ACCEPT_UNKNOWNS) {
4199 /* handler accepts unknowns */
4200 continue;
4202 /* client arg doesn't exist */
4203 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4204 return -1;
4207 arg_type = qobject_to_qstring(obj);
4208 assert(arg_type != NULL);
4210 /* check if argument's type is correct */
4211 switch (qstring_get_str(arg_type)[0]) {
4212 case 'F':
4213 case 'B':
4214 case 's':
4215 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4216 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4217 "string");
4218 return -1;
4220 break;
4221 case 'i':
4222 case 'l':
4223 case 'M':
4224 case 'o':
4225 if (qobject_type(client_arg) != QTYPE_QINT) {
4226 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4227 "int");
4228 return -1;
4230 break;
4231 case 'T':
4232 if (qobject_type(client_arg) != QTYPE_QINT &&
4233 qobject_type(client_arg) != QTYPE_QFLOAT) {
4234 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4235 "number");
4236 return -1;
4238 break;
4239 case 'b':
4240 case '-':
4241 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4242 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4243 "bool");
4244 return -1;
4246 break;
4247 case 'O':
4248 assert(flags & QMP_ACCEPT_UNKNOWNS);
4249 break;
4250 case 'q':
4251 /* Any QObject can be passed. */
4252 break;
4253 case '/':
4254 case '.':
4256 * These types are not supported by QMP and thus are not
4257 * handled here. Fall through.
4259 default:
4260 abort();
4264 return 0;
4268 * - Check if the client has passed all mandatory args
4269 * - Set special flags for argument validation
4271 static int check_mandatory_args(const QDict *cmd_args,
4272 const QDict *client_args, int *flags)
4274 const QDictEntry *ent;
4276 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4277 const char *cmd_arg_name = qdict_entry_key(ent);
4278 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4279 assert(type != NULL);
4281 if (qstring_get_str(type)[0] == 'O') {
4282 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4283 *flags |= QMP_ACCEPT_UNKNOWNS;
4284 } else if (qstring_get_str(type)[0] != '-' &&
4285 qstring_get_str(type)[1] != '?' &&
4286 !qdict_haskey(client_args, cmd_arg_name)) {
4287 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4288 return -1;
4292 return 0;
4295 static QDict *qdict_from_args_type(const char *args_type)
4297 int i;
4298 QDict *qdict;
4299 QString *key, *type, *cur_qs;
4301 assert(args_type != NULL);
4303 qdict = qdict_new();
4305 if (args_type == NULL || args_type[0] == '\0') {
4306 /* no args, empty qdict */
4307 goto out;
4310 key = qstring_new();
4311 type = qstring_new();
4313 cur_qs = key;
4315 for (i = 0;; i++) {
4316 switch (args_type[i]) {
4317 case ',':
4318 case '\0':
4319 qdict_put(qdict, qstring_get_str(key), type);
4320 QDECREF(key);
4321 if (args_type[i] == '\0') {
4322 goto out;
4324 type = qstring_new(); /* qdict has ref */
4325 cur_qs = key = qstring_new();
4326 break;
4327 case ':':
4328 cur_qs = type;
4329 break;
4330 default:
4331 qstring_append_chr(cur_qs, args_type[i]);
4332 break;
4336 out:
4337 return qdict;
4341 * Client argument checking rules:
4343 * 1. Client must provide all mandatory arguments
4344 * 2. Each argument provided by the client must be expected
4345 * 3. Each argument provided by the client must have the type expected
4346 * by the command
4348 static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4350 int flags, err;
4351 QDict *cmd_args;
4353 cmd_args = qdict_from_args_type(cmd->args_type);
4355 flags = 0;
4356 err = check_mandatory_args(cmd_args, client_args, &flags);
4357 if (err) {
4358 goto out;
4361 err = check_client_args_type(client_args, cmd_args, flags);
4363 out:
4364 QDECREF(cmd_args);
4365 return err;
4369 * Input object checking rules
4371 * 1. Input object must be a dict
4372 * 2. The "execute" key must exist
4373 * 3. The "execute" key must be a string
4374 * 4. If the "arguments" key exists, it must be a dict
4375 * 5. If the "id" key exists, it can be anything (ie. json-value)
4376 * 6. Any argument not listed above is considered invalid
4378 static QDict *qmp_check_input_obj(QObject *input_obj)
4380 const QDictEntry *ent;
4381 int has_exec_key = 0;
4382 QDict *input_dict;
4384 if (qobject_type(input_obj) != QTYPE_QDICT) {
4385 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4386 return NULL;
4389 input_dict = qobject_to_qdict(input_obj);
4391 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4392 const char *arg_name = qdict_entry_key(ent);
4393 const QObject *arg_obj = qdict_entry_value(ent);
4395 if (!strcmp(arg_name, "execute")) {
4396 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4397 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4398 "string");
4399 return NULL;
4401 has_exec_key = 1;
4402 } else if (!strcmp(arg_name, "arguments")) {
4403 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4404 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4405 "object");
4406 return NULL;
4408 } else if (!strcmp(arg_name, "id")) {
4409 /* FIXME: check duplicated IDs for async commands */
4410 } else {
4411 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4412 return NULL;
4416 if (!has_exec_key) {
4417 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4418 return NULL;
4421 return input_dict;
4424 static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4425 const QDict *params)
4427 int ret;
4428 QObject *data = NULL;
4430 ret = cmd->mhandler.cmd_new(mon, params, &data);
4431 handler_audit(mon, cmd, ret);
4432 monitor_protocol_emitter(mon, data);
4433 qobject_decref(data);
4436 static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4438 int err;
4439 QObject *obj;
4440 QDict *input, *args;
4441 const mon_cmd_t *cmd;
4442 const char *cmd_name;
4443 Monitor *mon = cur_mon;
4445 args = input = NULL;
4447 obj = json_parser_parse(tokens, NULL);
4448 if (!obj) {
4449 // FIXME: should be triggered in json_parser_parse()
4450 qerror_report(QERR_JSON_PARSING);
4451 goto err_out;
4454 input = qmp_check_input_obj(obj);
4455 if (!input) {
4456 qobject_decref(obj);
4457 goto err_out;
4460 mon->mc->id = qdict_get(input, "id");
4461 qobject_incref(mon->mc->id);
4463 cmd_name = qdict_get_str(input, "execute");
4464 trace_handle_qmp_command(mon, cmd_name);
4465 if (invalid_qmp_mode(mon, cmd_name)) {
4466 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4467 goto err_out;
4470 cmd = qmp_find_cmd(cmd_name);
4471 if (!cmd) {
4472 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4473 goto err_out;
4476 obj = qdict_get(input, "arguments");
4477 if (!obj) {
4478 args = qdict_new();
4479 } else {
4480 args = qobject_to_qdict(obj);
4481 QINCREF(args);
4484 err = qmp_check_client_args(cmd, args);
4485 if (err < 0) {
4486 goto err_out;
4489 if (handler_is_async(cmd)) {
4490 err = qmp_async_cmd_handler(mon, cmd, args);
4491 if (err) {
4492 /* emit the error response */
4493 goto err_out;
4495 } else {
4496 qmp_call_cmd(mon, cmd, args);
4499 goto out;
4501 err_out:
4502 monitor_protocol_emitter(mon, NULL);
4503 out:
4504 QDECREF(input);
4505 QDECREF(args);
4509 * monitor_control_read(): Read and handle QMP input
4511 static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4513 Monitor *old_mon = cur_mon;
4515 cur_mon = opaque;
4517 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
4519 cur_mon = old_mon;
4522 static void monitor_read(void *opaque, const uint8_t *buf, int size)
4524 Monitor *old_mon = cur_mon;
4525 int i;
4527 cur_mon = opaque;
4529 if (cur_mon->rs) {
4530 for (i = 0; i < size; i++)
4531 readline_handle_byte(cur_mon->rs, buf[i]);
4532 } else {
4533 if (size == 0 || buf[size - 1] != 0)
4534 monitor_printf(cur_mon, "corrupted command\n");
4535 else
4536 handle_user_command(cur_mon, (char *)buf);
4539 cur_mon = old_mon;
4542 static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
4544 monitor_suspend(mon);
4545 handle_user_command(mon, cmdline);
4546 monitor_resume(mon);
4549 int monitor_suspend(Monitor *mon)
4551 if (!mon->rs)
4552 return -ENOTTY;
4553 mon->suspend_cnt++;
4554 return 0;
4557 void monitor_resume(Monitor *mon)
4559 if (!mon->rs)
4560 return;
4561 if (--mon->suspend_cnt == 0)
4562 readline_show_prompt(mon->rs);
4565 static QObject *get_qmp_greeting(void)
4567 QObject *ver = NULL;
4569 qmp_marshal_input_query_version(NULL, NULL, &ver);
4570 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4574 * monitor_control_event(): Print QMP gretting
4576 static void monitor_control_event(void *opaque, int event)
4578 QObject *data;
4579 Monitor *mon = opaque;
4581 switch (event) {
4582 case CHR_EVENT_OPENED:
4583 mon->mc->command_mode = 0;
4584 data = get_qmp_greeting();
4585 monitor_json_emitter(mon, data);
4586 qobject_decref(data);
4587 mon_refcount++;
4588 break;
4589 case CHR_EVENT_CLOSED:
4590 json_message_parser_destroy(&mon->mc->parser);
4591 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
4592 mon_refcount--;
4593 monitor_fdsets_cleanup();
4594 break;
4598 static void monitor_event(void *opaque, int event)
4600 Monitor *mon = opaque;
4602 switch (event) {
4603 case CHR_EVENT_MUX_IN:
4604 mon->mux_out = 0;
4605 if (mon->reset_seen) {
4606 readline_restart(mon->rs);
4607 monitor_resume(mon);
4608 monitor_flush(mon);
4609 } else {
4610 mon->suspend_cnt = 0;
4612 break;
4614 case CHR_EVENT_MUX_OUT:
4615 if (mon->reset_seen) {
4616 if (mon->suspend_cnt == 0) {
4617 monitor_printf(mon, "\n");
4619 monitor_flush(mon);
4620 monitor_suspend(mon);
4621 } else {
4622 mon->suspend_cnt++;
4624 mon->mux_out = 1;
4625 break;
4627 case CHR_EVENT_OPENED:
4628 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4629 "information\n", QEMU_VERSION);
4630 if (!mon->mux_out) {
4631 readline_show_prompt(mon->rs);
4633 mon->reset_seen = 1;
4634 mon_refcount++;
4635 break;
4637 case CHR_EVENT_CLOSED:
4638 mon_refcount--;
4639 monitor_fdsets_cleanup();
4640 break;
4644 static int
4645 compare_mon_cmd(const void *a, const void *b)
4647 return strcmp(((const mon_cmd_t *)a)->name,
4648 ((const mon_cmd_t *)b)->name);
4651 static void sortcmdlist(void)
4653 int array_num;
4654 int elem_size = sizeof(mon_cmd_t);
4656 array_num = sizeof(mon_cmds)/elem_size-1;
4657 qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd);
4659 array_num = sizeof(info_cmds)/elem_size-1;
4660 qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd);
4665 * Local variables:
4666 * c-indent-level: 4
4667 * c-basic-offset: 4
4668 * tab-width: 8
4669 * End:
4672 void monitor_init(CharDriverState *chr, int flags)
4674 static int is_first_init = 1;
4675 Monitor *mon;
4677 if (is_first_init) {
4678 monitor_protocol_event_init();
4679 is_first_init = 0;
4682 mon = g_malloc0(sizeof(*mon));
4684 mon->chr = chr;
4685 mon->flags = flags;
4686 if (flags & MONITOR_USE_READLINE) {
4687 mon->rs = readline_init(mon, monitor_find_completion);
4688 monitor_read_command(mon, 0);
4691 if (monitor_ctrl_mode(mon)) {
4692 mon->mc = g_malloc0(sizeof(MonitorControl));
4693 /* Control mode requires special handlers */
4694 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4695 monitor_control_event, mon);
4696 qemu_chr_fe_set_echo(chr, true);
4698 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
4699 } else {
4700 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4701 monitor_event, mon);
4704 QLIST_INSERT_HEAD(&mon_list, mon, entry);
4705 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4706 default_mon = mon;
4708 sortcmdlist();
4711 static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
4713 BlockDriverState *bs = opaque;
4714 int ret = 0;
4716 if (bdrv_set_key(bs, password) != 0) {
4717 monitor_printf(mon, "invalid password\n");
4718 ret = -EPERM;
4720 if (mon->password_completion_cb)
4721 mon->password_completion_cb(mon->password_opaque, ret);
4723 monitor_read_command(mon, 1);
4726 ReadLineState *monitor_get_rs(Monitor *mon)
4728 return mon->rs;
4731 int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4732 BlockDriverCompletionFunc *completion_cb,
4733 void *opaque)
4735 int err;
4737 if (!bdrv_key_required(bs)) {
4738 if (completion_cb)
4739 completion_cb(opaque, 0);
4740 return 0;
4743 if (monitor_ctrl_mode(mon)) {
4744 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs),
4745 bdrv_get_encrypted_filename(bs));
4746 return -1;
4749 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4750 bdrv_get_encrypted_filename(bs));
4752 mon->password_completion_cb = completion_cb;
4753 mon->password_opaque = opaque;
4755 err = monitor_read_password(mon, bdrv_password_cb, bs);
4757 if (err && completion_cb)
4758 completion_cb(opaque, err);
4760 return err;
4763 int monitor_read_block_device_key(Monitor *mon, const char *device,
4764 BlockDriverCompletionFunc *completion_cb,
4765 void *opaque)
4767 BlockDriverState *bs;
4769 bs = bdrv_find(device);
4770 if (!bs) {
4771 monitor_printf(mon, "Device not found %s\n", device);
4772 return -1;
4775 return monitor_read_bdrv_key_start(mon, bs, completion_cb, opaque);