Merge commit 'b947c12c0bb217fe09968e652873e0d22b269d68' into upstream-merge
[qemu-kvm.git] / monitor.c
blob27883f8f167e91102595bde1d97ebcd6da193459
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 "exec-all.h"
60 #ifdef CONFIG_SIMPLE_TRACE
61 #include "trace.h"
62 #endif
63 #include "ui/qemu-spice.h"
65 //#define DEBUG
66 //#define DEBUG_COMPLETION
69 * Supported types:
71 * 'F' filename
72 * 'B' block device name
73 * 's' string (accept optional quote)
74 * 'O' option string of the form NAME=VALUE,...
75 * parsed according to QemuOptsList given by its name
76 * Example: 'device:O' uses qemu_device_opts.
77 * Restriction: only lists with empty desc are supported
78 * TODO lift the restriction
79 * 'i' 32 bit integer
80 * 'l' target long (32 or 64 bit)
81 * 'M' just like 'l', except in user mode the value is
82 * multiplied by 2^20 (think Mebibyte)
83 * 'o' octets (aka bytes)
84 * user mode accepts an optional T, t, G, g, M, m, K, k
85 * suffix, which multiplies the value by 2^40 for
86 * suffixes T and t, 2^30 for suffixes G and g, 2^20 for
87 * M and m, 2^10 for K and k
88 * 'T' double
89 * user mode accepts an optional ms, us, ns suffix,
90 * which divides the value by 1e3, 1e6, 1e9, respectively
91 * '/' optional gdb-like print format (like "/10x")
93 * '?' optional type (for all types, except '/')
94 * '.' other form of optional type (for 'i' and 'l')
95 * 'b' boolean
96 * user mode accepts "on" or "off"
97 * '-' optional parameter (eg. '-f')
101 typedef struct MonitorCompletionData MonitorCompletionData;
102 struct MonitorCompletionData {
103 Monitor *mon;
104 void (*user_print)(Monitor *mon, const QObject *data);
107 typedef struct mon_cmd_t {
108 const char *name;
109 const char *args_type;
110 const char *params;
111 const char *help;
112 void (*user_print)(Monitor *mon, const QObject *data);
113 union {
114 void (*info)(Monitor *mon);
115 void (*info_new)(Monitor *mon, QObject **ret_data);
116 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
117 void (*cmd)(Monitor *mon, const QDict *qdict);
118 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
119 int (*cmd_async)(Monitor *mon, const QDict *params,
120 MonitorCompletion *cb, void *opaque);
121 } mhandler;
122 int flags;
123 } mon_cmd_t;
125 /* file descriptors passed via SCM_RIGHTS */
126 typedef struct mon_fd_t mon_fd_t;
127 struct mon_fd_t {
128 char *name;
129 int fd;
130 QLIST_ENTRY(mon_fd_t) next;
133 typedef struct MonitorControl {
134 QObject *id;
135 JSONMessageParser parser;
136 int command_mode;
137 } MonitorControl;
139 struct Monitor {
140 CharDriverState *chr;
141 int mux_out;
142 int reset_seen;
143 int flags;
144 int suspend_cnt;
145 uint8_t outbuf[1024];
146 int outbuf_index;
147 ReadLineState *rs;
148 MonitorControl *mc;
149 CPUState *mon_cpu;
150 BlockDriverCompletionFunc *password_completion_cb;
151 void *password_opaque;
152 #ifdef CONFIG_DEBUG_MONITOR
153 int print_calls_nr;
154 #endif
155 QError *error;
156 QLIST_HEAD(,mon_fd_t) fds;
157 QLIST_ENTRY(Monitor) entry;
160 #ifdef CONFIG_DEBUG_MONITOR
161 #define MON_DEBUG(fmt, ...) do { \
162 fprintf(stderr, "Monitor: "); \
163 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
165 static inline void mon_print_count_inc(Monitor *mon)
167 mon->print_calls_nr++;
170 static inline void mon_print_count_init(Monitor *mon)
172 mon->print_calls_nr = 0;
175 static inline int mon_print_count_get(const Monitor *mon)
177 return mon->print_calls_nr;
180 #else /* !CONFIG_DEBUG_MONITOR */
181 #define MON_DEBUG(fmt, ...) do { } while (0)
182 static inline void mon_print_count_inc(Monitor *mon) { }
183 static inline void mon_print_count_init(Monitor *mon) { }
184 static inline int mon_print_count_get(const Monitor *mon) { return 0; }
185 #endif /* CONFIG_DEBUG_MONITOR */
187 /* QMP checker flags */
188 #define QMP_ACCEPT_UNKNOWNS 1
190 static QLIST_HEAD(mon_list, Monitor) mon_list;
192 static const mon_cmd_t mon_cmds[];
193 static const mon_cmd_t info_cmds[];
195 static const mon_cmd_t qmp_cmds[];
196 static const mon_cmd_t qmp_query_cmds[];
198 Monitor *cur_mon;
199 Monitor *default_mon;
201 static void monitor_command_cb(Monitor *mon, const char *cmdline,
202 void *opaque);
204 static inline int qmp_cmd_mode(const Monitor *mon)
206 return (mon->mc ? mon->mc->command_mode : 0);
209 /* Return true if in control mode, false otherwise */
210 static inline int monitor_ctrl_mode(const Monitor *mon)
212 return (mon->flags & MONITOR_USE_CONTROL);
215 /* Return non-zero iff we have a current monitor, and it is in QMP mode. */
216 int monitor_cur_is_qmp(void)
218 return cur_mon && monitor_ctrl_mode(cur_mon);
221 static void monitor_read_command(Monitor *mon, int show_prompt)
223 if (!mon->rs)
224 return;
226 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
227 if (show_prompt)
228 readline_show_prompt(mon->rs);
231 static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
232 void *opaque)
234 if (monitor_ctrl_mode(mon)) {
235 qerror_report(QERR_MISSING_PARAMETER, "password");
236 return -EINVAL;
237 } else if (mon->rs) {
238 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
239 /* prompt is printed on return from the command handler */
240 return 0;
241 } else {
242 monitor_printf(mon, "terminal does not support password prompting\n");
243 return -ENOTTY;
247 void monitor_flush(Monitor *mon)
249 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
250 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
251 mon->outbuf_index = 0;
255 /* flush at every end of line or if the buffer is full */
256 static void monitor_puts(Monitor *mon, const char *str)
258 char c;
260 for(;;) {
261 c = *str++;
262 if (c == '\0')
263 break;
264 if (c == '\n')
265 mon->outbuf[mon->outbuf_index++] = '\r';
266 mon->outbuf[mon->outbuf_index++] = c;
267 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
268 || c == '\n')
269 monitor_flush(mon);
273 void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
275 char buf[4096];
277 if (!mon)
278 return;
280 mon_print_count_inc(mon);
282 if (monitor_ctrl_mode(mon)) {
283 return;
286 vsnprintf(buf, sizeof(buf), fmt, ap);
287 monitor_puts(mon, buf);
290 void monitor_printf(Monitor *mon, const char *fmt, ...)
292 va_list ap;
293 va_start(ap, fmt);
294 monitor_vprintf(mon, fmt, ap);
295 va_end(ap);
298 void monitor_print_filename(Monitor *mon, const char *filename)
300 int i;
302 for (i = 0; filename[i]; i++) {
303 switch (filename[i]) {
304 case ' ':
305 case '"':
306 case '\\':
307 monitor_printf(mon, "\\%c", filename[i]);
308 break;
309 case '\t':
310 monitor_printf(mon, "\\t");
311 break;
312 case '\r':
313 monitor_printf(mon, "\\r");
314 break;
315 case '\n':
316 monitor_printf(mon, "\\n");
317 break;
318 default:
319 monitor_printf(mon, "%c", filename[i]);
320 break;
325 static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
326 const char *fmt, ...)
328 va_list ap;
329 va_start(ap, fmt);
330 monitor_vprintf((Monitor *)stream, fmt, ap);
331 va_end(ap);
332 return 0;
335 static void monitor_user_noop(Monitor *mon, const QObject *data) { }
337 static inline int handler_is_qobject(const mon_cmd_t *cmd)
339 return cmd->user_print != NULL;
342 static inline bool handler_is_async(const mon_cmd_t *cmd)
344 return cmd->flags & MONITOR_CMD_ASYNC;
347 static inline int monitor_has_error(const Monitor *mon)
349 return mon->error != NULL;
352 static void monitor_json_emitter(Monitor *mon, const QObject *data)
354 QString *json;
356 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
357 qobject_to_json(data);
358 assert(json != NULL);
360 qstring_append_chr(json, '\n');
361 monitor_puts(mon, qstring_get_str(json));
363 QDECREF(json);
366 static void monitor_protocol_emitter(Monitor *mon, QObject *data)
368 QDict *qmp;
370 qmp = qdict_new();
372 if (!monitor_has_error(mon)) {
373 /* success response */
374 if (data) {
375 qobject_incref(data);
376 qdict_put_obj(qmp, "return", data);
377 } else {
378 /* return an empty QDict by default */
379 qdict_put(qmp, "return", qdict_new());
381 } else {
382 /* error response */
383 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
384 qdict_put(qmp, "error", mon->error->error);
385 QINCREF(mon->error->error);
386 QDECREF(mon->error);
387 mon->error = NULL;
390 if (mon->mc->id) {
391 qdict_put_obj(qmp, "id", mon->mc->id);
392 mon->mc->id = NULL;
395 monitor_json_emitter(mon, QOBJECT(qmp));
396 QDECREF(qmp);
399 static void timestamp_put(QDict *qdict)
401 int err;
402 QObject *obj;
403 qemu_timeval tv;
405 err = qemu_gettimeofday(&tv);
406 if (err < 0)
407 return;
409 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
410 "'microseconds': %" PRId64 " }",
411 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
412 qdict_put_obj(qdict, "timestamp", obj);
416 * monitor_protocol_event(): Generate a Monitor event
418 * Event-specific data can be emitted through the (optional) 'data' parameter.
420 void monitor_protocol_event(MonitorEvent event, QObject *data)
422 QDict *qmp;
423 const char *event_name;
424 Monitor *mon;
426 assert(event < QEVENT_MAX);
428 switch (event) {
429 case QEVENT_SHUTDOWN:
430 event_name = "SHUTDOWN";
431 break;
432 case QEVENT_RESET:
433 event_name = "RESET";
434 break;
435 case QEVENT_POWERDOWN:
436 event_name = "POWERDOWN";
437 break;
438 case QEVENT_STOP:
439 event_name = "STOP";
440 break;
441 case QEVENT_RESUME:
442 event_name = "RESUME";
443 break;
444 case QEVENT_VNC_CONNECTED:
445 event_name = "VNC_CONNECTED";
446 break;
447 case QEVENT_VNC_INITIALIZED:
448 event_name = "VNC_INITIALIZED";
449 break;
450 case QEVENT_VNC_DISCONNECTED:
451 event_name = "VNC_DISCONNECTED";
452 break;
453 case QEVENT_BLOCK_IO_ERROR:
454 event_name = "BLOCK_IO_ERROR";
455 break;
456 case QEVENT_RTC_CHANGE:
457 event_name = "RTC_CHANGE";
458 break;
459 case QEVENT_WATCHDOG:
460 event_name = "WATCHDOG";
461 break;
462 case QEVENT_SPICE_CONNECTED:
463 event_name = "SPICE_CONNECTED";
464 break;
465 case QEVENT_SPICE_INITIALIZED:
466 event_name = "SPICE_INITIALIZED";
467 break;
468 case QEVENT_SPICE_DISCONNECTED:
469 event_name = "SPICE_DISCONNECTED";
470 break;
471 default:
472 abort();
473 break;
476 qmp = qdict_new();
477 timestamp_put(qmp);
478 qdict_put(qmp, "event", qstring_from_str(event_name));
479 if (data) {
480 qobject_incref(data);
481 qdict_put_obj(qmp, "data", data);
484 QLIST_FOREACH(mon, &mon_list, entry) {
485 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
486 monitor_json_emitter(mon, QOBJECT(qmp));
489 QDECREF(qmp);
492 static int do_qmp_capabilities(Monitor *mon, const QDict *params,
493 QObject **ret_data)
495 /* Will setup QMP capabilities in the future */
496 if (monitor_ctrl_mode(mon)) {
497 mon->mc->command_mode = 1;
500 return 0;
503 static int mon_set_cpu(int cpu_index);
504 static void handle_user_command(Monitor *mon, const char *cmdline);
506 static int do_hmp_passthrough(Monitor *mon, const QDict *params,
507 QObject **ret_data)
509 int ret = 0;
510 Monitor *old_mon, hmp;
511 CharDriverState mchar;
513 memset(&hmp, 0, sizeof(hmp));
514 qemu_chr_init_mem(&mchar);
515 hmp.chr = &mchar;
517 old_mon = cur_mon;
518 cur_mon = &hmp;
520 if (qdict_haskey(params, "cpu-index")) {
521 ret = mon_set_cpu(qdict_get_int(params, "cpu-index"));
522 if (ret < 0) {
523 cur_mon = old_mon;
524 qerror_report(QERR_INVALID_PARAMETER_VALUE, "cpu-index", "a CPU number");
525 goto out;
529 handle_user_command(&hmp, qdict_get_str(params, "command-line"));
530 cur_mon = old_mon;
532 if (qemu_chr_mem_osize(hmp.chr) > 0) {
533 *ret_data = QOBJECT(qemu_chr_mem_to_qs(hmp.chr));
536 out:
537 qemu_chr_close_mem(hmp.chr);
538 return ret;
541 static int compare_cmd(const char *name, const char *list)
543 const char *p, *pstart;
544 int len;
545 len = strlen(name);
546 p = list;
547 for(;;) {
548 pstart = p;
549 p = strchr(p, '|');
550 if (!p)
551 p = pstart + strlen(pstart);
552 if ((p - pstart) == len && !memcmp(pstart, name, len))
553 return 1;
554 if (*p == '\0')
555 break;
556 p++;
558 return 0;
561 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
562 const char *prefix, const char *name)
564 const mon_cmd_t *cmd;
566 for(cmd = cmds; cmd->name != NULL; cmd++) {
567 if (!name || !strcmp(name, cmd->name))
568 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
569 cmd->params, cmd->help);
573 static void help_cmd(Monitor *mon, const char *name)
575 if (name && !strcmp(name, "info")) {
576 help_cmd_dump(mon, info_cmds, "info ", NULL);
577 } else {
578 help_cmd_dump(mon, mon_cmds, "", name);
579 if (name && !strcmp(name, "log")) {
580 const CPULogItem *item;
581 monitor_printf(mon, "Log items (comma separated):\n");
582 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
583 for(item = cpu_log_items; item->mask != 0; item++) {
584 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
590 static void do_help_cmd(Monitor *mon, const QDict *qdict)
592 help_cmd(mon, qdict_get_try_str(qdict, "name"));
595 #ifdef CONFIG_SIMPLE_TRACE
596 static void do_change_trace_event_state(Monitor *mon, const QDict *qdict)
598 const char *tp_name = qdict_get_str(qdict, "name");
599 bool new_state = qdict_get_bool(qdict, "option");
600 int ret = st_change_trace_event_state(tp_name, new_state);
602 if (!ret) {
603 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
607 static void do_trace_file(Monitor *mon, const QDict *qdict)
609 const char *op = qdict_get_try_str(qdict, "op");
610 const char *arg = qdict_get_try_str(qdict, "arg");
612 if (!op) {
613 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
614 } else if (!strcmp(op, "on")) {
615 st_set_trace_file_enabled(true);
616 } else if (!strcmp(op, "off")) {
617 st_set_trace_file_enabled(false);
618 } else if (!strcmp(op, "flush")) {
619 st_flush_trace_buffer();
620 } else if (!strcmp(op, "set")) {
621 if (arg) {
622 st_set_trace_file(arg);
624 } else {
625 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
626 help_cmd(mon, "trace-file");
629 #endif
631 static void user_monitor_complete(void *opaque, QObject *ret_data)
633 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
635 if (ret_data) {
636 data->user_print(data->mon, ret_data);
638 monitor_resume(data->mon);
639 qemu_free(data);
642 static void qmp_monitor_complete(void *opaque, QObject *ret_data)
644 monitor_protocol_emitter(opaque, ret_data);
647 static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
648 const QDict *params)
650 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
653 static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
655 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
658 static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
659 const QDict *params)
661 int ret;
663 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
664 cb_data->mon = mon;
665 cb_data->user_print = cmd->user_print;
666 monitor_suspend(mon);
667 ret = cmd->mhandler.cmd_async(mon, params,
668 user_monitor_complete, cb_data);
669 if (ret < 0) {
670 monitor_resume(mon);
671 qemu_free(cb_data);
675 static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
677 int ret;
679 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
680 cb_data->mon = mon;
681 cb_data->user_print = cmd->user_print;
682 monitor_suspend(mon);
683 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
684 if (ret < 0) {
685 monitor_resume(mon);
686 qemu_free(cb_data);
690 static void do_info(Monitor *mon, const QDict *qdict)
692 const mon_cmd_t *cmd;
693 const char *item = qdict_get_try_str(qdict, "item");
695 if (!item) {
696 goto help;
699 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
700 if (compare_cmd(item, cmd->name))
701 break;
704 if (cmd->name == NULL) {
705 goto help;
708 if (handler_is_async(cmd)) {
709 user_async_info_handler(mon, cmd);
710 } else if (handler_is_qobject(cmd)) {
711 QObject *info_data = NULL;
713 cmd->mhandler.info_new(mon, &info_data);
714 if (info_data) {
715 cmd->user_print(mon, info_data);
716 qobject_decref(info_data);
718 } else {
719 cmd->mhandler.info(mon);
722 return;
724 help:
725 help_cmd(mon, "info");
728 static void do_info_version_print(Monitor *mon, const QObject *data)
730 QDict *qdict;
731 QDict *qemu;
733 qdict = qobject_to_qdict(data);
734 qemu = qdict_get_qdict(qdict, "qemu");
736 monitor_printf(mon, "%" PRId64 ".%" PRId64 ".%" PRId64 "%s\n",
737 qdict_get_int(qemu, "major"),
738 qdict_get_int(qemu, "minor"),
739 qdict_get_int(qemu, "micro"),
740 qdict_get_str(qdict, "package"));
743 static void do_info_version(Monitor *mon, QObject **ret_data)
745 const char *version = QEMU_VERSION;
746 int major = 0, minor = 0, micro = 0;
747 char *tmp;
749 major = strtol(version, &tmp, 10);
750 tmp++;
751 minor = strtol(tmp, &tmp, 10);
752 tmp++;
753 micro = strtol(tmp, &tmp, 10);
755 *ret_data = qobject_from_jsonf("{ 'qemu': { 'major': %d, 'minor': %d, \
756 'micro': %d }, 'package': %s }", major, minor, micro, QEMU_PKGVERSION);
759 static void do_info_name_print(Monitor *mon, const QObject *data)
761 QDict *qdict;
763 qdict = qobject_to_qdict(data);
764 if (qdict_size(qdict) == 0) {
765 return;
768 monitor_printf(mon, "%s\n", qdict_get_str(qdict, "name"));
771 static void do_info_name(Monitor *mon, QObject **ret_data)
773 *ret_data = qemu_name ? qobject_from_jsonf("{'name': %s }", qemu_name) :
774 qobject_from_jsonf("{}");
777 static QObject *get_cmd_dict(const char *name)
779 const char *p;
781 /* Remove '|' from some commands */
782 p = strchr(name, '|');
783 if (p) {
784 p++;
785 } else {
786 p = name;
789 return qobject_from_jsonf("{ 'name': %s }", p);
792 static void do_info_commands(Monitor *mon, QObject **ret_data)
794 QList *cmd_list;
795 const mon_cmd_t *cmd;
797 cmd_list = qlist_new();
799 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
800 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
803 for (cmd = qmp_query_cmds; cmd->name != NULL; cmd++) {
804 char buf[128];
805 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
806 qlist_append_obj(cmd_list, get_cmd_dict(buf));
809 *ret_data = QOBJECT(cmd_list);
812 static void do_info_uuid_print(Monitor *mon, const QObject *data)
814 monitor_printf(mon, "%s\n", qdict_get_str(qobject_to_qdict(data), "UUID"));
817 static void do_info_uuid(Monitor *mon, QObject **ret_data)
819 char uuid[64];
821 snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1],
822 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
823 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
824 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
825 qemu_uuid[14], qemu_uuid[15]);
826 *ret_data = qobject_from_jsonf("{ 'UUID': %s }", uuid);
829 /* get the current CPU defined by the user */
830 static int mon_set_cpu(int cpu_index)
832 CPUState *env;
834 for(env = first_cpu; env != NULL; env = env->next_cpu) {
835 if (env->cpu_index == cpu_index) {
836 cur_mon->mon_cpu = env;
837 return 0;
840 return -1;
843 static CPUState *mon_get_cpu(void)
845 if (!cur_mon->mon_cpu) {
846 mon_set_cpu(0);
848 cpu_synchronize_state(cur_mon->mon_cpu);
849 return cur_mon->mon_cpu;
852 static void do_info_registers(Monitor *mon)
854 CPUState *env;
855 env = mon_get_cpu();
856 #ifdef TARGET_I386
857 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
858 X86_DUMP_FPU);
859 #else
860 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
862 #endif
865 static void print_cpu_iter(QObject *obj, void *opaque)
867 QDict *cpu;
868 int active = ' ';
869 Monitor *mon = opaque;
871 assert(qobject_type(obj) == QTYPE_QDICT);
872 cpu = qobject_to_qdict(obj);
874 if (qdict_get_bool(cpu, "current")) {
875 active = '*';
878 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
880 #if defined(TARGET_I386)
881 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
882 (target_ulong) qdict_get_int(cpu, "pc"));
883 #elif defined(TARGET_PPC)
884 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
885 (target_long) qdict_get_int(cpu, "nip"));
886 #elif defined(TARGET_SPARC)
887 monitor_printf(mon, "pc=0x " TARGET_FMT_lx,
888 (target_long) qdict_get_int(cpu, "pc"));
889 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
890 (target_long) qdict_get_int(cpu, "npc"));
891 #elif defined(TARGET_MIPS)
892 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
893 (target_long) qdict_get_int(cpu, "PC"));
894 #endif
896 if (qdict_get_bool(cpu, "halted")) {
897 monitor_printf(mon, " (halted)");
900 monitor_printf(mon, " thread_id=%" PRId64 " ",
901 qdict_get_int(cpu, "thread_id"));
903 monitor_printf(mon, "\n");
906 static void monitor_print_cpus(Monitor *mon, const QObject *data)
908 QList *cpu_list;
910 assert(qobject_type(data) == QTYPE_QLIST);
911 cpu_list = qobject_to_qlist(data);
912 qlist_iter(cpu_list, print_cpu_iter, mon);
915 static void do_info_cpus(Monitor *mon, QObject **ret_data)
917 CPUState *env;
918 QList *cpu_list;
920 cpu_list = qlist_new();
922 /* just to set the default cpu if not already done */
923 mon_get_cpu();
925 for(env = first_cpu; env != NULL; env = env->next_cpu) {
926 QDict *cpu;
927 QObject *obj;
929 cpu_synchronize_state(env);
931 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
932 env->cpu_index, env == mon->mon_cpu,
933 env->halted);
935 cpu = qobject_to_qdict(obj);
937 #if defined(TARGET_I386)
938 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
939 #elif defined(TARGET_PPC)
940 qdict_put(cpu, "nip", qint_from_int(env->nip));
941 #elif defined(TARGET_SPARC)
942 qdict_put(cpu, "pc", qint_from_int(env->pc));
943 qdict_put(cpu, "npc", qint_from_int(env->npc));
944 #elif defined(TARGET_MIPS)
945 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
946 #endif
947 qdict_put(cpu, "thread_id", qint_from_int(env->thread_id));
949 qlist_append(cpu_list, cpu);
952 *ret_data = QOBJECT(cpu_list);
955 static int do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
957 int index = qdict_get_int(qdict, "index");
958 if (mon_set_cpu(index) < 0) {
959 qerror_report(QERR_INVALID_PARAMETER_VALUE, "index",
960 "a CPU number");
961 return -1;
963 return 0;
966 static void do_cpu_set_nr(Monitor *mon, const QDict *qdict)
968 int state, value;
969 const char *status;
971 status = qdict_get_str(qdict, "state");
972 value = qdict_get_int(qdict, "cpu");
974 if (!strcmp(status, "online"))
975 state = 1;
976 else if (!strcmp(status, "offline"))
977 state = 0;
978 else {
979 monitor_printf(mon, "invalid status: %s\n", status);
980 return;
982 #if defined(TARGET_I386) || defined(TARGET_X86_64)
983 qemu_system_cpu_hot_add(value, state);
984 #endif
987 static void do_info_jit(Monitor *mon)
989 dump_exec_info((FILE *)mon, monitor_fprintf);
992 static void do_info_history(Monitor *mon)
994 int i;
995 const char *str;
997 if (!mon->rs)
998 return;
999 i = 0;
1000 for(;;) {
1001 str = readline_get_history(mon->rs, i);
1002 if (!str)
1003 break;
1004 monitor_printf(mon, "%d: '%s'\n", i, str);
1005 i++;
1009 #if defined(TARGET_PPC)
1010 /* XXX: not implemented in other targets */
1011 static void do_info_cpu_stats(Monitor *mon)
1013 CPUState *env;
1015 env = mon_get_cpu();
1016 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
1018 #endif
1020 #if defined(CONFIG_SIMPLE_TRACE)
1021 static void do_info_trace(Monitor *mon)
1023 st_print_trace((FILE *)mon, &monitor_fprintf);
1026 static void do_info_trace_events(Monitor *mon)
1028 st_print_trace_events((FILE *)mon, &monitor_fprintf);
1030 #endif
1033 * do_quit(): Quit QEMU execution
1035 static int do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
1037 monitor_suspend(mon);
1038 no_shutdown = 0;
1039 qemu_system_shutdown_request();
1041 return 0;
1044 static int change_vnc_password(const char *password)
1046 if (vnc_display_password(NULL, password) < 0) {
1047 qerror_report(QERR_SET_PASSWD_FAILED);
1048 return -1;
1051 return 0;
1054 static void change_vnc_password_cb(Monitor *mon, const char *password,
1055 void *opaque)
1057 change_vnc_password(password);
1058 monitor_read_command(mon, 1);
1061 static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
1063 if (strcmp(target, "passwd") == 0 ||
1064 strcmp(target, "password") == 0) {
1065 if (arg) {
1066 char password[9];
1067 strncpy(password, arg, sizeof(password));
1068 password[sizeof(password) - 1] = '\0';
1069 return change_vnc_password(password);
1070 } else {
1071 return monitor_read_password(mon, change_vnc_password_cb, NULL);
1073 } else {
1074 if (vnc_display_open(NULL, target) < 0) {
1075 qerror_report(QERR_VNC_SERVER_FAILED, target);
1076 return -1;
1080 return 0;
1084 * do_change(): Change a removable medium, or VNC configuration
1086 static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
1088 const char *device = qdict_get_str(qdict, "device");
1089 const char *target = qdict_get_str(qdict, "target");
1090 const char *arg = qdict_get_try_str(qdict, "arg");
1091 int ret;
1093 if (strcmp(device, "vnc") == 0) {
1094 ret = do_change_vnc(mon, target, arg);
1095 } else {
1096 ret = do_change_block(mon, device, target, arg);
1099 return ret;
1102 static int set_password(Monitor *mon, const QDict *qdict, QObject **ret_data)
1104 const char *protocol = qdict_get_str(qdict, "protocol");
1105 const char *password = qdict_get_str(qdict, "password");
1106 const char *connected = qdict_get_try_str(qdict, "connected");
1107 int disconnect_if_connected = 0;
1108 int fail_if_connected = 0;
1109 int rc;
1111 if (connected) {
1112 if (strcmp(connected, "fail") == 0) {
1113 fail_if_connected = 1;
1114 } else if (strcmp(connected, "disconnect") == 0) {
1115 disconnect_if_connected = 1;
1116 } else if (strcmp(connected, "keep") == 0) {
1117 /* nothing */
1118 } else {
1119 qerror_report(QERR_INVALID_PARAMETER, "connected");
1120 return -1;
1124 if (strcmp(protocol, "spice") == 0) {
1125 if (!using_spice) {
1126 /* correct one? spice isn't a device ,,, */
1127 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1128 return -1;
1130 rc = qemu_spice_set_passwd(password, fail_if_connected,
1131 disconnect_if_connected);
1132 if (rc != 0) {
1133 qerror_report(QERR_SET_PASSWD_FAILED);
1134 return -1;
1136 return 0;
1139 if (strcmp(protocol, "vnc") == 0) {
1140 if (fail_if_connected || disconnect_if_connected) {
1141 /* vnc supports "connected=keep" only */
1142 qerror_report(QERR_INVALID_PARAMETER, "connected");
1143 return -1;
1145 rc = vnc_display_password(NULL, password);
1146 if (rc != 0) {
1147 qerror_report(QERR_SET_PASSWD_FAILED);
1148 return -1;
1150 return 0;
1153 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1154 return -1;
1157 static int expire_password(Monitor *mon, const QDict *qdict, QObject **ret_data)
1159 const char *protocol = qdict_get_str(qdict, "protocol");
1160 const char *whenstr = qdict_get_str(qdict, "time");
1161 time_t when;
1162 int rc;
1164 if (strcmp(whenstr, "now")) {
1165 when = 0;
1166 } else if (strcmp(whenstr, "never")) {
1167 when = TIME_MAX;
1168 } else if (whenstr[0] == '+') {
1169 when = time(NULL) + strtoull(whenstr+1, NULL, 10);
1170 } else {
1171 when = strtoull(whenstr, NULL, 10);
1174 if (strcmp(protocol, "spice") == 0) {
1175 if (!using_spice) {
1176 /* correct one? spice isn't a device ,,, */
1177 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1178 return -1;
1180 rc = qemu_spice_set_pw_expire(when);
1181 if (rc != 0) {
1182 qerror_report(QERR_SET_PASSWD_FAILED);
1183 return -1;
1185 return 0;
1188 if (strcmp(protocol, "vnc") == 0) {
1189 rc = vnc_display_pw_expire(NULL, when);
1190 if (rc != 0) {
1191 qerror_report(QERR_SET_PASSWD_FAILED);
1192 return -1;
1194 return 0;
1197 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1198 return -1;
1201 static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
1203 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
1204 return 0;
1207 static void do_logfile(Monitor *mon, const QDict *qdict)
1209 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
1212 static void do_log(Monitor *mon, const QDict *qdict)
1214 int mask;
1215 const char *items = qdict_get_str(qdict, "items");
1217 if (!strcmp(items, "none")) {
1218 mask = 0;
1219 } else {
1220 mask = cpu_str_to_log_mask(items);
1221 if (!mask) {
1222 help_cmd(mon, "log");
1223 return;
1226 cpu_set_log(mask);
1229 static void do_singlestep(Monitor *mon, const QDict *qdict)
1231 const char *option = qdict_get_try_str(qdict, "option");
1232 if (!option || !strcmp(option, "on")) {
1233 singlestep = 1;
1234 } else if (!strcmp(option, "off")) {
1235 singlestep = 0;
1236 } else {
1237 monitor_printf(mon, "unexpected option %s\n", option);
1242 * do_stop(): Stop VM execution
1244 static int do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
1246 vm_stop(EXCP_INTERRUPT);
1247 return 0;
1250 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
1252 struct bdrv_iterate_context {
1253 Monitor *mon;
1254 int err;
1258 * do_cont(): Resume emulation.
1260 static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
1262 struct bdrv_iterate_context context = { mon, 0 };
1264 if (incoming_expected) {
1265 qerror_report(QERR_MIGRATION_EXPECTED);
1266 return -1;
1268 bdrv_iterate(encrypted_bdrv_it, &context);
1269 /* only resume the vm if all keys are set and valid */
1270 if (!context.err) {
1271 vm_start();
1272 return 0;
1273 } else {
1274 return -1;
1278 static void bdrv_key_cb(void *opaque, int err)
1280 Monitor *mon = opaque;
1282 /* another key was set successfully, retry to continue */
1283 if (!err)
1284 do_cont(mon, NULL, NULL);
1287 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1289 struct bdrv_iterate_context *context = opaque;
1291 if (!context->err && bdrv_key_required(bs)) {
1292 context->err = -EBUSY;
1293 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1294 context->mon);
1298 static void do_gdbserver(Monitor *mon, const QDict *qdict)
1300 const char *device = qdict_get_try_str(qdict, "device");
1301 if (!device)
1302 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1303 if (gdbserver_start(device) < 0) {
1304 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1305 device);
1306 } else if (strcmp(device, "none") == 0) {
1307 monitor_printf(mon, "Disabled gdbserver\n");
1308 } else {
1309 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1310 device);
1314 static void do_watchdog_action(Monitor *mon, const QDict *qdict)
1316 const char *action = qdict_get_str(qdict, "action");
1317 if (select_watchdog_action(action) == -1) {
1318 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1322 static void monitor_printc(Monitor *mon, int c)
1324 monitor_printf(mon, "'");
1325 switch(c) {
1326 case '\'':
1327 monitor_printf(mon, "\\'");
1328 break;
1329 case '\\':
1330 monitor_printf(mon, "\\\\");
1331 break;
1332 case '\n':
1333 monitor_printf(mon, "\\n");
1334 break;
1335 case '\r':
1336 monitor_printf(mon, "\\r");
1337 break;
1338 default:
1339 if (c >= 32 && c <= 126) {
1340 monitor_printf(mon, "%c", c);
1341 } else {
1342 monitor_printf(mon, "\\x%02x", c);
1344 break;
1346 monitor_printf(mon, "'");
1349 static void memory_dump(Monitor *mon, int count, int format, int wsize,
1350 target_phys_addr_t addr, int is_physical)
1352 CPUState *env;
1353 int l, line_size, i, max_digits, len;
1354 uint8_t buf[16];
1355 uint64_t v;
1357 if (format == 'i') {
1358 int flags;
1359 flags = 0;
1360 env = mon_get_cpu();
1361 #ifdef TARGET_I386
1362 if (wsize == 2) {
1363 flags = 1;
1364 } else if (wsize == 4) {
1365 flags = 0;
1366 } else {
1367 /* as default we use the current CS size */
1368 flags = 0;
1369 if (env) {
1370 #ifdef TARGET_X86_64
1371 if ((env->efer & MSR_EFER_LMA) &&
1372 (env->segs[R_CS].flags & DESC_L_MASK))
1373 flags = 2;
1374 else
1375 #endif
1376 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1377 flags = 1;
1380 #endif
1381 monitor_disas(mon, env, addr, count, is_physical, flags);
1382 return;
1385 len = wsize * count;
1386 if (wsize == 1)
1387 line_size = 8;
1388 else
1389 line_size = 16;
1390 max_digits = 0;
1392 switch(format) {
1393 case 'o':
1394 max_digits = (wsize * 8 + 2) / 3;
1395 break;
1396 default:
1397 case 'x':
1398 max_digits = (wsize * 8) / 4;
1399 break;
1400 case 'u':
1401 case 'd':
1402 max_digits = (wsize * 8 * 10 + 32) / 33;
1403 break;
1404 case 'c':
1405 wsize = 1;
1406 break;
1409 while (len > 0) {
1410 if (is_physical)
1411 monitor_printf(mon, TARGET_FMT_plx ":", addr);
1412 else
1413 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
1414 l = len;
1415 if (l > line_size)
1416 l = line_size;
1417 if (is_physical) {
1418 cpu_physical_memory_rw(addr, buf, l, 0);
1419 } else {
1420 env = mon_get_cpu();
1421 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
1422 monitor_printf(mon, " Cannot access memory\n");
1423 break;
1426 i = 0;
1427 while (i < l) {
1428 switch(wsize) {
1429 default:
1430 case 1:
1431 v = ldub_raw(buf + i);
1432 break;
1433 case 2:
1434 v = lduw_raw(buf + i);
1435 break;
1436 case 4:
1437 v = (uint32_t)ldl_raw(buf + i);
1438 break;
1439 case 8:
1440 v = ldq_raw(buf + i);
1441 break;
1443 monitor_printf(mon, " ");
1444 switch(format) {
1445 case 'o':
1446 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
1447 break;
1448 case 'x':
1449 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
1450 break;
1451 case 'u':
1452 monitor_printf(mon, "%*" PRIu64, max_digits, v);
1453 break;
1454 case 'd':
1455 monitor_printf(mon, "%*" PRId64, max_digits, v);
1456 break;
1457 case 'c':
1458 monitor_printc(mon, v);
1459 break;
1461 i += wsize;
1463 monitor_printf(mon, "\n");
1464 addr += l;
1465 len -= l;
1469 static void do_memory_dump(Monitor *mon, const QDict *qdict)
1471 int count = qdict_get_int(qdict, "count");
1472 int format = qdict_get_int(qdict, "format");
1473 int size = qdict_get_int(qdict, "size");
1474 target_long addr = qdict_get_int(qdict, "addr");
1476 memory_dump(mon, count, format, size, addr, 0);
1479 static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
1481 int count = qdict_get_int(qdict, "count");
1482 int format = qdict_get_int(qdict, "format");
1483 int size = qdict_get_int(qdict, "size");
1484 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
1486 memory_dump(mon, count, format, size, addr, 1);
1489 static void do_print(Monitor *mon, const QDict *qdict)
1491 int format = qdict_get_int(qdict, "format");
1492 target_phys_addr_t val = qdict_get_int(qdict, "val");
1494 #if TARGET_PHYS_ADDR_BITS == 32
1495 switch(format) {
1496 case 'o':
1497 monitor_printf(mon, "%#o", val);
1498 break;
1499 case 'x':
1500 monitor_printf(mon, "%#x", val);
1501 break;
1502 case 'u':
1503 monitor_printf(mon, "%u", val);
1504 break;
1505 default:
1506 case 'd':
1507 monitor_printf(mon, "%d", val);
1508 break;
1509 case 'c':
1510 monitor_printc(mon, val);
1511 break;
1513 #else
1514 switch(format) {
1515 case 'o':
1516 monitor_printf(mon, "%#" PRIo64, val);
1517 break;
1518 case 'x':
1519 monitor_printf(mon, "%#" PRIx64, val);
1520 break;
1521 case 'u':
1522 monitor_printf(mon, "%" PRIu64, val);
1523 break;
1524 default:
1525 case 'd':
1526 monitor_printf(mon, "%" PRId64, val);
1527 break;
1528 case 'c':
1529 monitor_printc(mon, val);
1530 break;
1532 #endif
1533 monitor_printf(mon, "\n");
1536 static int do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
1538 FILE *f;
1539 uint32_t size = qdict_get_int(qdict, "size");
1540 const char *filename = qdict_get_str(qdict, "filename");
1541 target_long addr = qdict_get_int(qdict, "val");
1542 uint32_t l;
1543 CPUState *env;
1544 uint8_t buf[1024];
1545 int ret = -1;
1547 env = mon_get_cpu();
1549 f = fopen(filename, "wb");
1550 if (!f) {
1551 qerror_report(QERR_OPEN_FILE_FAILED, filename);
1552 return -1;
1554 while (size != 0) {
1555 l = sizeof(buf);
1556 if (l > size)
1557 l = size;
1558 cpu_memory_rw_debug(env, addr, buf, l, 0);
1559 if (fwrite(buf, 1, l, f) != l) {
1560 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1561 goto exit;
1563 addr += l;
1564 size -= l;
1567 ret = 0;
1569 exit:
1570 fclose(f);
1571 return ret;
1574 static int do_physical_memory_save(Monitor *mon, const QDict *qdict,
1575 QObject **ret_data)
1577 FILE *f;
1578 uint32_t l;
1579 uint8_t buf[1024];
1580 uint32_t size = qdict_get_int(qdict, "size");
1581 const char *filename = qdict_get_str(qdict, "filename");
1582 target_phys_addr_t addr = qdict_get_int(qdict, "val");
1583 int ret = -1;
1585 f = fopen(filename, "wb");
1586 if (!f) {
1587 qerror_report(QERR_OPEN_FILE_FAILED, filename);
1588 return -1;
1590 while (size != 0) {
1591 l = sizeof(buf);
1592 if (l > size)
1593 l = size;
1594 cpu_physical_memory_rw(addr, buf, l, 0);
1595 if (fwrite(buf, 1, l, f) != l) {
1596 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1597 goto exit;
1599 fflush(f);
1600 addr += l;
1601 size -= l;
1604 ret = 0;
1606 exit:
1607 fclose(f);
1608 return ret;
1611 static void do_sum(Monitor *mon, const QDict *qdict)
1613 uint32_t addr;
1614 uint8_t buf[1];
1615 uint16_t sum;
1616 uint32_t start = qdict_get_int(qdict, "start");
1617 uint32_t size = qdict_get_int(qdict, "size");
1619 sum = 0;
1620 for(addr = start; addr < (start + size); addr++) {
1621 cpu_physical_memory_rw(addr, buf, 1, 0);
1622 /* BSD sum algorithm ('sum' Unix command) */
1623 sum = (sum >> 1) | (sum << 15);
1624 sum += buf[0];
1626 monitor_printf(mon, "%05d\n", sum);
1629 typedef struct {
1630 int keycode;
1631 const char *name;
1632 } KeyDef;
1634 static const KeyDef key_defs[] = {
1635 { 0x2a, "shift" },
1636 { 0x36, "shift_r" },
1638 { 0x38, "alt" },
1639 { 0xb8, "alt_r" },
1640 { 0x64, "altgr" },
1641 { 0xe4, "altgr_r" },
1642 { 0x1d, "ctrl" },
1643 { 0x9d, "ctrl_r" },
1645 { 0xdd, "menu" },
1647 { 0x01, "esc" },
1649 { 0x02, "1" },
1650 { 0x03, "2" },
1651 { 0x04, "3" },
1652 { 0x05, "4" },
1653 { 0x06, "5" },
1654 { 0x07, "6" },
1655 { 0x08, "7" },
1656 { 0x09, "8" },
1657 { 0x0a, "9" },
1658 { 0x0b, "0" },
1659 { 0x0c, "minus" },
1660 { 0x0d, "equal" },
1661 { 0x0e, "backspace" },
1663 { 0x0f, "tab" },
1664 { 0x10, "q" },
1665 { 0x11, "w" },
1666 { 0x12, "e" },
1667 { 0x13, "r" },
1668 { 0x14, "t" },
1669 { 0x15, "y" },
1670 { 0x16, "u" },
1671 { 0x17, "i" },
1672 { 0x18, "o" },
1673 { 0x19, "p" },
1674 { 0x1a, "bracket_left" },
1675 { 0x1b, "bracket_right" },
1676 { 0x1c, "ret" },
1678 { 0x1e, "a" },
1679 { 0x1f, "s" },
1680 { 0x20, "d" },
1681 { 0x21, "f" },
1682 { 0x22, "g" },
1683 { 0x23, "h" },
1684 { 0x24, "j" },
1685 { 0x25, "k" },
1686 { 0x26, "l" },
1687 { 0x27, "semicolon" },
1688 { 0x28, "apostrophe" },
1689 { 0x29, "grave_accent" },
1691 { 0x2b, "backslash" },
1692 { 0x2c, "z" },
1693 { 0x2d, "x" },
1694 { 0x2e, "c" },
1695 { 0x2f, "v" },
1696 { 0x30, "b" },
1697 { 0x31, "n" },
1698 { 0x32, "m" },
1699 { 0x33, "comma" },
1700 { 0x34, "dot" },
1701 { 0x35, "slash" },
1703 { 0x37, "asterisk" },
1705 { 0x39, "spc" },
1706 { 0x3a, "caps_lock" },
1707 { 0x3b, "f1" },
1708 { 0x3c, "f2" },
1709 { 0x3d, "f3" },
1710 { 0x3e, "f4" },
1711 { 0x3f, "f5" },
1712 { 0x40, "f6" },
1713 { 0x41, "f7" },
1714 { 0x42, "f8" },
1715 { 0x43, "f9" },
1716 { 0x44, "f10" },
1717 { 0x45, "num_lock" },
1718 { 0x46, "scroll_lock" },
1720 { 0xb5, "kp_divide" },
1721 { 0x37, "kp_multiply" },
1722 { 0x4a, "kp_subtract" },
1723 { 0x4e, "kp_add" },
1724 { 0x9c, "kp_enter" },
1725 { 0x53, "kp_decimal" },
1726 { 0x54, "sysrq" },
1728 { 0x52, "kp_0" },
1729 { 0x4f, "kp_1" },
1730 { 0x50, "kp_2" },
1731 { 0x51, "kp_3" },
1732 { 0x4b, "kp_4" },
1733 { 0x4c, "kp_5" },
1734 { 0x4d, "kp_6" },
1735 { 0x47, "kp_7" },
1736 { 0x48, "kp_8" },
1737 { 0x49, "kp_9" },
1739 { 0x56, "<" },
1741 { 0x57, "f11" },
1742 { 0x58, "f12" },
1744 { 0xb7, "print" },
1746 { 0xc7, "home" },
1747 { 0xc9, "pgup" },
1748 { 0xd1, "pgdn" },
1749 { 0xcf, "end" },
1751 { 0xcb, "left" },
1752 { 0xc8, "up" },
1753 { 0xd0, "down" },
1754 { 0xcd, "right" },
1756 { 0xd2, "insert" },
1757 { 0xd3, "delete" },
1758 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1759 { 0xf0, "stop" },
1760 { 0xf1, "again" },
1761 { 0xf2, "props" },
1762 { 0xf3, "undo" },
1763 { 0xf4, "front" },
1764 { 0xf5, "copy" },
1765 { 0xf6, "open" },
1766 { 0xf7, "paste" },
1767 { 0xf8, "find" },
1768 { 0xf9, "cut" },
1769 { 0xfa, "lf" },
1770 { 0xfb, "help" },
1771 { 0xfc, "meta_l" },
1772 { 0xfd, "meta_r" },
1773 { 0xfe, "compose" },
1774 #endif
1775 { 0, NULL },
1778 static int get_keycode(const char *key)
1780 const KeyDef *p;
1781 char *endp;
1782 int ret;
1784 for(p = key_defs; p->name != NULL; p++) {
1785 if (!strcmp(key, p->name))
1786 return p->keycode;
1788 if (strstart(key, "0x", NULL)) {
1789 ret = strtoul(key, &endp, 0);
1790 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1791 return ret;
1793 return -1;
1796 #define MAX_KEYCODES 16
1797 static uint8_t keycodes[MAX_KEYCODES];
1798 static int nb_pending_keycodes;
1799 static QEMUTimer *key_timer;
1801 static void release_keys(void *opaque)
1803 int keycode;
1805 while (nb_pending_keycodes > 0) {
1806 nb_pending_keycodes--;
1807 keycode = keycodes[nb_pending_keycodes];
1808 if (keycode & 0x80)
1809 kbd_put_keycode(0xe0);
1810 kbd_put_keycode(keycode | 0x80);
1814 static void do_sendkey(Monitor *mon, const QDict *qdict)
1816 char keyname_buf[16];
1817 char *separator;
1818 int keyname_len, keycode, i;
1819 const char *string = qdict_get_str(qdict, "string");
1820 int has_hold_time = qdict_haskey(qdict, "hold_time");
1821 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
1823 if (nb_pending_keycodes > 0) {
1824 qemu_del_timer(key_timer);
1825 release_keys(NULL);
1827 if (!has_hold_time)
1828 hold_time = 100;
1829 i = 0;
1830 while (1) {
1831 separator = strchr(string, '-');
1832 keyname_len = separator ? separator - string : strlen(string);
1833 if (keyname_len > 0) {
1834 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1835 if (keyname_len > sizeof(keyname_buf) - 1) {
1836 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
1837 return;
1839 if (i == MAX_KEYCODES) {
1840 monitor_printf(mon, "too many keys\n");
1841 return;
1843 keyname_buf[keyname_len] = 0;
1844 keycode = get_keycode(keyname_buf);
1845 if (keycode < 0) {
1846 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
1847 return;
1849 keycodes[i++] = keycode;
1851 if (!separator)
1852 break;
1853 string = separator + 1;
1855 nb_pending_keycodes = i;
1856 /* key down events */
1857 for (i = 0; i < nb_pending_keycodes; i++) {
1858 keycode = keycodes[i];
1859 if (keycode & 0x80)
1860 kbd_put_keycode(0xe0);
1861 kbd_put_keycode(keycode & 0x7f);
1863 /* delayed key up events */
1864 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
1865 muldiv64(get_ticks_per_sec(), hold_time, 1000));
1868 static int mouse_button_state;
1870 static void do_mouse_move(Monitor *mon, const QDict *qdict)
1872 int dx, dy, dz;
1873 const char *dx_str = qdict_get_str(qdict, "dx_str");
1874 const char *dy_str = qdict_get_str(qdict, "dy_str");
1875 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1876 dx = strtol(dx_str, NULL, 0);
1877 dy = strtol(dy_str, NULL, 0);
1878 dz = 0;
1879 if (dz_str)
1880 dz = strtol(dz_str, NULL, 0);
1881 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1884 static void do_mouse_button(Monitor *mon, const QDict *qdict)
1886 int button_state = qdict_get_int(qdict, "button_state");
1887 mouse_button_state = button_state;
1888 kbd_mouse_event(0, 0, 0, mouse_button_state);
1891 static void do_ioport_read(Monitor *mon, const QDict *qdict)
1893 int size = qdict_get_int(qdict, "size");
1894 int addr = qdict_get_int(qdict, "addr");
1895 int has_index = qdict_haskey(qdict, "index");
1896 uint32_t val;
1897 int suffix;
1899 if (has_index) {
1900 int index = qdict_get_int(qdict, "index");
1901 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
1902 addr++;
1904 addr &= 0xffff;
1906 switch(size) {
1907 default:
1908 case 1:
1909 val = cpu_inb(addr);
1910 suffix = 'b';
1911 break;
1912 case 2:
1913 val = cpu_inw(addr);
1914 suffix = 'w';
1915 break;
1916 case 4:
1917 val = cpu_inl(addr);
1918 suffix = 'l';
1919 break;
1921 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1922 suffix, addr, size * 2, val);
1925 static void do_ioport_write(Monitor *mon, const QDict *qdict)
1927 int size = qdict_get_int(qdict, "size");
1928 int addr = qdict_get_int(qdict, "addr");
1929 int val = qdict_get_int(qdict, "val");
1931 addr &= IOPORTS_MASK;
1933 switch (size) {
1934 default:
1935 case 1:
1936 cpu_outb(addr, val);
1937 break;
1938 case 2:
1939 cpu_outw(addr, val);
1940 break;
1941 case 4:
1942 cpu_outl(addr, val);
1943 break;
1947 static void do_boot_set(Monitor *mon, const QDict *qdict)
1949 int res;
1950 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1952 res = qemu_boot_set(bootdevice);
1953 if (res == 0) {
1954 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1955 } else if (res > 0) {
1956 monitor_printf(mon, "setting boot device list failed\n");
1957 } else {
1958 monitor_printf(mon, "no function defined to set boot device list for "
1959 "this architecture\n");
1964 * do_system_reset(): Issue a machine reset
1966 static int do_system_reset(Monitor *mon, const QDict *qdict,
1967 QObject **ret_data)
1969 qemu_system_reset_request();
1970 return 0;
1974 * do_system_powerdown(): Issue a machine powerdown
1976 static int do_system_powerdown(Monitor *mon, const QDict *qdict,
1977 QObject **ret_data)
1979 qemu_system_powerdown_request();
1980 return 0;
1983 #if defined(TARGET_I386)
1984 static void print_pte(Monitor *mon, target_phys_addr_t addr,
1985 target_phys_addr_t pte,
1986 target_phys_addr_t mask)
1988 #ifdef TARGET_X86_64
1989 if (addr & (1ULL << 47)) {
1990 addr |= -1LL << 48;
1992 #endif
1993 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1994 " %c%c%c%c%c%c%c%c%c\n",
1995 addr,
1996 pte & mask,
1997 pte & PG_NX_MASK ? 'X' : '-',
1998 pte & PG_GLOBAL_MASK ? 'G' : '-',
1999 pte & PG_PSE_MASK ? 'P' : '-',
2000 pte & PG_DIRTY_MASK ? 'D' : '-',
2001 pte & PG_ACCESSED_MASK ? 'A' : '-',
2002 pte & PG_PCD_MASK ? 'C' : '-',
2003 pte & PG_PWT_MASK ? 'T' : '-',
2004 pte & PG_USER_MASK ? 'U' : '-',
2005 pte & PG_RW_MASK ? 'W' : '-');
2008 static void tlb_info_32(Monitor *mon, CPUState *env)
2010 int l1, l2;
2011 uint32_t pgd, pde, pte;
2013 pgd = env->cr[3] & ~0xfff;
2014 for(l1 = 0; l1 < 1024; l1++) {
2015 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
2016 pde = le32_to_cpu(pde);
2017 if (pde & PG_PRESENT_MASK) {
2018 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
2019 /* 4M pages */
2020 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
2021 } else {
2022 for(l2 = 0; l2 < 1024; l2++) {
2023 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
2024 (uint8_t *)&pte, 4);
2025 pte = le32_to_cpu(pte);
2026 if (pte & PG_PRESENT_MASK) {
2027 print_pte(mon, (l1 << 22) + (l2 << 12),
2028 pte & ~PG_PSE_MASK,
2029 ~0xfff);
2037 static void tlb_info_pae32(Monitor *mon, CPUState *env)
2039 int l1, l2, l3;
2040 uint64_t pdpe, pde, pte;
2041 uint64_t pdp_addr, pd_addr, pt_addr;
2043 pdp_addr = env->cr[3] & ~0x1f;
2044 for (l1 = 0; l1 < 4; l1++) {
2045 cpu_physical_memory_read(pdp_addr + l1 * 8, (uint8_t *)&pdpe, 8);
2046 pdpe = le64_to_cpu(pdpe);
2047 if (pdpe & PG_PRESENT_MASK) {
2048 pd_addr = pdpe & 0x3fffffffff000ULL;
2049 for (l2 = 0; l2 < 512; l2++) {
2050 cpu_physical_memory_read(pd_addr + l2 * 8,
2051 (uint8_t *)&pde, 8);
2052 pde = le64_to_cpu(pde);
2053 if (pde & PG_PRESENT_MASK) {
2054 if (pde & PG_PSE_MASK) {
2055 /* 2M pages with PAE, CR4.PSE is ignored */
2056 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
2057 ~((target_phys_addr_t)(1 << 20) - 1));
2058 } else {
2059 pt_addr = pde & 0x3fffffffff000ULL;
2060 for (l3 = 0; l3 < 512; l3++) {
2061 cpu_physical_memory_read(pt_addr + l3 * 8,
2062 (uint8_t *)&pte, 8);
2063 pte = le64_to_cpu(pte);
2064 if (pte & PG_PRESENT_MASK) {
2065 print_pte(mon, (l1 << 30 ) + (l2 << 21)
2066 + (l3 << 12),
2067 pte & ~PG_PSE_MASK,
2068 ~(target_phys_addr_t)0xfff);
2078 #ifdef TARGET_X86_64
2079 static void tlb_info_64(Monitor *mon, CPUState *env)
2081 uint64_t l1, l2, l3, l4;
2082 uint64_t pml4e, pdpe, pde, pte;
2083 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
2085 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
2086 for (l1 = 0; l1 < 512; l1++) {
2087 cpu_physical_memory_read(pml4_addr + l1 * 8, (uint8_t *)&pml4e, 8);
2088 pml4e = le64_to_cpu(pml4e);
2089 if (pml4e & PG_PRESENT_MASK) {
2090 pdp_addr = pml4e & 0x3fffffffff000ULL;
2091 for (l2 = 0; l2 < 512; l2++) {
2092 cpu_physical_memory_read(pdp_addr + l2 * 8, (uint8_t *)&pdpe,
2094 pdpe = le64_to_cpu(pdpe);
2095 if (pdpe & PG_PRESENT_MASK) {
2096 if (pdpe & PG_PSE_MASK) {
2097 /* 1G pages, CR4.PSE is ignored */
2098 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
2099 0x3ffffc0000000ULL);
2100 } else {
2101 pd_addr = pdpe & 0x3fffffffff000ULL;
2102 for (l3 = 0; l3 < 512; l3++) {
2103 cpu_physical_memory_read(pd_addr + l3 * 8,
2104 (uint8_t *)&pde, 8);
2105 pde = le64_to_cpu(pde);
2106 if (pde & PG_PRESENT_MASK) {
2107 if (pde & PG_PSE_MASK) {
2108 /* 2M pages, CR4.PSE is ignored */
2109 print_pte(mon, (l1 << 39) + (l2 << 30) +
2110 (l3 << 21), pde,
2111 0x3ffffffe00000ULL);
2112 } else {
2113 pt_addr = pde & 0x3fffffffff000ULL;
2114 for (l4 = 0; l4 < 512; l4++) {
2115 cpu_physical_memory_read(pt_addr
2116 + l4 * 8,
2117 (uint8_t *)&pte,
2119 pte = le64_to_cpu(pte);
2120 if (pte & PG_PRESENT_MASK) {
2121 print_pte(mon, (l1 << 39) +
2122 (l2 << 30) +
2123 (l3 << 21) + (l4 << 12),
2124 pte & ~PG_PSE_MASK,
2125 0x3fffffffff000ULL);
2137 #endif
2139 static void tlb_info(Monitor *mon)
2141 CPUState *env;
2143 env = mon_get_cpu();
2145 if (!(env->cr[0] & CR0_PG_MASK)) {
2146 monitor_printf(mon, "PG disabled\n");
2147 return;
2149 if (env->cr[4] & CR4_PAE_MASK) {
2150 #ifdef TARGET_X86_64
2151 if (env->hflags & HF_LMA_MASK) {
2152 tlb_info_64(mon, env);
2153 } else
2154 #endif
2156 tlb_info_pae32(mon, env);
2158 } else {
2159 tlb_info_32(mon, env);
2163 static void mem_print(Monitor *mon, target_phys_addr_t *pstart,
2164 int *plast_prot,
2165 target_phys_addr_t end, int prot)
2167 int prot1;
2168 prot1 = *plast_prot;
2169 if (prot != prot1) {
2170 if (*pstart != -1) {
2171 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
2172 TARGET_FMT_plx " %c%c%c\n",
2173 *pstart, end, end - *pstart,
2174 prot1 & PG_USER_MASK ? 'u' : '-',
2175 'r',
2176 prot1 & PG_RW_MASK ? 'w' : '-');
2178 if (prot != 0)
2179 *pstart = end;
2180 else
2181 *pstart = -1;
2182 *plast_prot = prot;
2186 static void mem_info_32(Monitor *mon, CPUState *env)
2188 int l1, l2, prot, last_prot;
2189 uint32_t pgd, pde, pte;
2190 target_phys_addr_t start, end;
2192 pgd = env->cr[3] & ~0xfff;
2193 last_prot = 0;
2194 start = -1;
2195 for(l1 = 0; l1 < 1024; l1++) {
2196 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
2197 pde = le32_to_cpu(pde);
2198 end = l1 << 22;
2199 if (pde & PG_PRESENT_MASK) {
2200 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
2201 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
2202 mem_print(mon, &start, &last_prot, end, prot);
2203 } else {
2204 for(l2 = 0; l2 < 1024; l2++) {
2205 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
2206 (uint8_t *)&pte, 4);
2207 pte = le32_to_cpu(pte);
2208 end = (l1 << 22) + (l2 << 12);
2209 if (pte & PG_PRESENT_MASK) {
2210 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
2211 } else {
2212 prot = 0;
2214 mem_print(mon, &start, &last_prot, end, prot);
2217 } else {
2218 prot = 0;
2219 mem_print(mon, &start, &last_prot, end, prot);
2224 static void mem_info_pae32(Monitor *mon, CPUState *env)
2226 int l1, l2, l3, prot, last_prot;
2227 uint64_t pdpe, pde, pte;
2228 uint64_t pdp_addr, pd_addr, pt_addr;
2229 target_phys_addr_t start, end;
2231 pdp_addr = env->cr[3] & ~0x1f;
2232 last_prot = 0;
2233 start = -1;
2234 for (l1 = 0; l1 < 4; l1++) {
2235 cpu_physical_memory_read(pdp_addr + l1 * 8, (uint8_t *)&pdpe, 8);
2236 pdpe = le64_to_cpu(pdpe);
2237 end = l1 << 30;
2238 if (pdpe & PG_PRESENT_MASK) {
2239 pd_addr = pdpe & 0x3fffffffff000ULL;
2240 for (l2 = 0; l2 < 512; l2++) {
2241 cpu_physical_memory_read(pd_addr + l2 * 8,
2242 (uint8_t *)&pde, 8);
2243 pde = le64_to_cpu(pde);
2244 end = (l1 << 30) + (l2 << 21);
2245 if (pde & PG_PRESENT_MASK) {
2246 if (pde & PG_PSE_MASK) {
2247 prot = pde & (PG_USER_MASK | PG_RW_MASK |
2248 PG_PRESENT_MASK);
2249 mem_print(mon, &start, &last_prot, end, prot);
2250 } else {
2251 pt_addr = pde & 0x3fffffffff000ULL;
2252 for (l3 = 0; l3 < 512; l3++) {
2253 cpu_physical_memory_read(pt_addr + l3 * 8,
2254 (uint8_t *)&pte, 8);
2255 pte = le64_to_cpu(pte);
2256 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
2257 if (pte & PG_PRESENT_MASK) {
2258 prot = pte & (PG_USER_MASK | PG_RW_MASK |
2259 PG_PRESENT_MASK);
2260 } else {
2261 prot = 0;
2263 mem_print(mon, &start, &last_prot, end, prot);
2266 } else {
2267 prot = 0;
2268 mem_print(mon, &start, &last_prot, end, prot);
2271 } else {
2272 prot = 0;
2273 mem_print(mon, &start, &last_prot, end, prot);
2279 #ifdef TARGET_X86_64
2280 static void mem_info_64(Monitor *mon, CPUState *env)
2282 int prot, last_prot;
2283 uint64_t l1, l2, l3, l4;
2284 uint64_t pml4e, pdpe, pde, pte;
2285 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
2287 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
2288 last_prot = 0;
2289 start = -1;
2290 for (l1 = 0; l1 < 512; l1++) {
2291 cpu_physical_memory_read(pml4_addr + l1 * 8, (uint8_t *)&pml4e, 8);
2292 pml4e = le64_to_cpu(pml4e);
2293 end = l1 << 39;
2294 if (pml4e & PG_PRESENT_MASK) {
2295 pdp_addr = pml4e & 0x3fffffffff000ULL;
2296 for (l2 = 0; l2 < 512; l2++) {
2297 cpu_physical_memory_read(pdp_addr + l2 * 8, (uint8_t *)&pdpe,
2299 pdpe = le64_to_cpu(pdpe);
2300 end = (l1 << 39) + (l2 << 30);
2301 if (pdpe & PG_PRESENT_MASK) {
2302 if (pdpe & PG_PSE_MASK) {
2303 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
2304 PG_PRESENT_MASK);
2305 mem_print(mon, &start, &last_prot, end, prot);
2306 } else {
2307 pd_addr = pdpe & 0x3fffffffff000ULL;
2308 for (l3 = 0; l3 < 512; l3++) {
2309 cpu_physical_memory_read(pd_addr + l3 * 8,
2310 (uint8_t *)&pde, 8);
2311 pde = le64_to_cpu(pde);
2312 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
2313 if (pde & PG_PRESENT_MASK) {
2314 if (pde & PG_PSE_MASK) {
2315 prot = pde & (PG_USER_MASK | PG_RW_MASK |
2316 PG_PRESENT_MASK);
2317 mem_print(mon, &start, &last_prot, end, prot);
2318 } else {
2319 pt_addr = pde & 0x3fffffffff000ULL;
2320 for (l4 = 0; l4 < 512; l4++) {
2321 cpu_physical_memory_read(pt_addr
2322 + l4 * 8,
2323 (uint8_t *)&pte,
2325 pte = le64_to_cpu(pte);
2326 end = (l1 << 39) + (l2 << 30) +
2327 (l3 << 21) + (l4 << 12);
2328 if (pte & PG_PRESENT_MASK) {
2329 prot = pte & (PG_USER_MASK | PG_RW_MASK |
2330 PG_PRESENT_MASK);
2331 } else {
2332 prot = 0;
2334 mem_print(mon, &start, &last_prot, end, prot);
2337 } else {
2338 prot = 0;
2339 mem_print(mon, &start, &last_prot, end, prot);
2343 } else {
2344 prot = 0;
2345 mem_print(mon, &start, &last_prot, end, prot);
2348 } else {
2349 prot = 0;
2350 mem_print(mon, &start, &last_prot, end, prot);
2354 #endif
2356 static void mem_info(Monitor *mon)
2358 CPUState *env;
2360 env = mon_get_cpu();
2362 if (!(env->cr[0] & CR0_PG_MASK)) {
2363 monitor_printf(mon, "PG disabled\n");
2364 return;
2366 if (env->cr[4] & CR4_PAE_MASK) {
2367 #ifdef TARGET_X86_64
2368 if (env->hflags & HF_LMA_MASK) {
2369 mem_info_64(mon, env);
2370 } else
2371 #endif
2373 mem_info_pae32(mon, env);
2375 } else {
2376 mem_info_32(mon, env);
2379 #endif
2381 #if defined(TARGET_SH4)
2383 static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
2385 monitor_printf(mon, " tlb%i:\t"
2386 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
2387 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
2388 "dirty=%hhu writethrough=%hhu\n",
2389 idx,
2390 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
2391 tlb->v, tlb->sh, tlb->c, tlb->pr,
2392 tlb->d, tlb->wt);
2395 static void tlb_info(Monitor *mon)
2397 CPUState *env = mon_get_cpu();
2398 int i;
2400 monitor_printf (mon, "ITLB:\n");
2401 for (i = 0 ; i < ITLB_SIZE ; i++)
2402 print_tlb (mon, i, &env->itlb[i]);
2403 monitor_printf (mon, "UTLB:\n");
2404 for (i = 0 ; i < UTLB_SIZE ; i++)
2405 print_tlb (mon, i, &env->utlb[i]);
2408 #endif
2410 #if defined(TARGET_SPARC)
2411 static void tlb_info(Monitor *mon)
2413 CPUState *env1 = mon_get_cpu();
2415 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
2417 #endif
2419 static void do_info_kvm_print(Monitor *mon, const QObject *data)
2421 QDict *qdict;
2423 qdict = qobject_to_qdict(data);
2425 monitor_printf(mon, "kvm support: ");
2426 if (qdict_get_bool(qdict, "present")) {
2427 monitor_printf(mon, "%s\n", qdict_get_bool(qdict, "enabled") ?
2428 "enabled" : "disabled");
2429 } else {
2430 monitor_printf(mon, "not compiled\n");
2434 static void do_info_kvm(Monitor *mon, QObject **ret_data)
2436 #ifdef CONFIG_KVM
2437 *ret_data = qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
2438 kvm_enabled());
2439 #else
2440 *ret_data = qobject_from_jsonf("{ 'enabled': false, 'present': false }");
2441 #endif
2444 static void do_info_numa(Monitor *mon)
2446 int i;
2447 CPUState *env;
2449 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2450 for (i = 0; i < nb_numa_nodes; i++) {
2451 monitor_printf(mon, "node %d cpus:", i);
2452 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2453 if (env->numa_node == i) {
2454 monitor_printf(mon, " %d", env->cpu_index);
2457 monitor_printf(mon, "\n");
2458 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2459 node_mem[i] >> 20);
2463 #ifdef CONFIG_PROFILER
2465 int64_t qemu_time;
2466 int64_t dev_time;
2468 static void do_info_profile(Monitor *mon)
2470 int64_t total;
2471 total = qemu_time;
2472 if (total == 0)
2473 total = 1;
2474 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
2475 dev_time, dev_time / (double)get_ticks_per_sec());
2476 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
2477 qemu_time, qemu_time / (double)get_ticks_per_sec());
2478 qemu_time = 0;
2479 dev_time = 0;
2481 #else
2482 static void do_info_profile(Monitor *mon)
2484 monitor_printf(mon, "Internal profiler not compiled\n");
2486 #endif
2488 /* Capture support */
2489 static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
2491 static void do_info_capture(Monitor *mon)
2493 int i;
2494 CaptureState *s;
2496 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2497 monitor_printf(mon, "[%d]: ", i);
2498 s->ops.info (s->opaque);
2502 #ifdef HAS_AUDIO
2503 static void do_stop_capture(Monitor *mon, const QDict *qdict)
2505 int i;
2506 int n = qdict_get_int(qdict, "n");
2507 CaptureState *s;
2509 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2510 if (i == n) {
2511 s->ops.destroy (s->opaque);
2512 QLIST_REMOVE (s, entries);
2513 qemu_free (s);
2514 return;
2519 static void do_wav_capture(Monitor *mon, const QDict *qdict)
2521 const char *path = qdict_get_str(qdict, "path");
2522 int has_freq = qdict_haskey(qdict, "freq");
2523 int freq = qdict_get_try_int(qdict, "freq", -1);
2524 int has_bits = qdict_haskey(qdict, "bits");
2525 int bits = qdict_get_try_int(qdict, "bits", -1);
2526 int has_channels = qdict_haskey(qdict, "nchannels");
2527 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
2528 CaptureState *s;
2530 s = qemu_mallocz (sizeof (*s));
2532 freq = has_freq ? freq : 44100;
2533 bits = has_bits ? bits : 16;
2534 nchannels = has_channels ? nchannels : 2;
2536 if (wav_start_capture (s, path, freq, bits, nchannels)) {
2537 monitor_printf(mon, "Faied to add wave capture\n");
2538 qemu_free (s);
2540 QLIST_INSERT_HEAD (&capture_head, s, entries);
2542 #endif
2544 #if defined(TARGET_I386)
2545 static void do_inject_nmi(Monitor *mon, const QDict *qdict)
2547 CPUState *env;
2548 int cpu_index = qdict_get_int(qdict, "cpu_index");
2550 for (env = first_cpu; env != NULL; env = env->next_cpu)
2551 if (env->cpu_index == cpu_index) {
2552 if (kvm_enabled())
2553 kvm_inject_interrupt(env, CPU_INTERRUPT_NMI);
2554 else
2555 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2556 break;
2559 #endif
2561 static void do_info_status_print(Monitor *mon, const QObject *data)
2563 QDict *qdict;
2565 qdict = qobject_to_qdict(data);
2567 monitor_printf(mon, "VM status: ");
2568 if (qdict_get_bool(qdict, "running")) {
2569 monitor_printf(mon, "running");
2570 if (qdict_get_bool(qdict, "singlestep")) {
2571 monitor_printf(mon, " (single step mode)");
2573 } else {
2574 monitor_printf(mon, "paused");
2577 monitor_printf(mon, "\n");
2580 static void do_info_status(Monitor *mon, QObject **ret_data)
2582 *ret_data = qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2583 vm_running, singlestep);
2586 static qemu_acl *find_acl(Monitor *mon, const char *name)
2588 qemu_acl *acl = qemu_acl_find(name);
2590 if (!acl) {
2591 monitor_printf(mon, "acl: unknown list '%s'\n", name);
2593 return acl;
2596 static void do_acl_show(Monitor *mon, const QDict *qdict)
2598 const char *aclname = qdict_get_str(qdict, "aclname");
2599 qemu_acl *acl = find_acl(mon, aclname);
2600 qemu_acl_entry *entry;
2601 int i = 0;
2603 if (acl) {
2604 monitor_printf(mon, "policy: %s\n",
2605 acl->defaultDeny ? "deny" : "allow");
2606 QTAILQ_FOREACH(entry, &acl->entries, next) {
2607 i++;
2608 monitor_printf(mon, "%d: %s %s\n", i,
2609 entry->deny ? "deny" : "allow", entry->match);
2614 static void do_acl_reset(Monitor *mon, const QDict *qdict)
2616 const char *aclname = qdict_get_str(qdict, "aclname");
2617 qemu_acl *acl = find_acl(mon, aclname);
2619 if (acl) {
2620 qemu_acl_reset(acl);
2621 monitor_printf(mon, "acl: removed all rules\n");
2625 static void do_acl_policy(Monitor *mon, const QDict *qdict)
2627 const char *aclname = qdict_get_str(qdict, "aclname");
2628 const char *policy = qdict_get_str(qdict, "policy");
2629 qemu_acl *acl = find_acl(mon, aclname);
2631 if (acl) {
2632 if (strcmp(policy, "allow") == 0) {
2633 acl->defaultDeny = 0;
2634 monitor_printf(mon, "acl: policy set to 'allow'\n");
2635 } else if (strcmp(policy, "deny") == 0) {
2636 acl->defaultDeny = 1;
2637 monitor_printf(mon, "acl: policy set to 'deny'\n");
2638 } else {
2639 monitor_printf(mon, "acl: unknown policy '%s', "
2640 "expected 'deny' or 'allow'\n", policy);
2645 static void do_acl_add(Monitor *mon, const QDict *qdict)
2647 const char *aclname = qdict_get_str(qdict, "aclname");
2648 const char *match = qdict_get_str(qdict, "match");
2649 const char *policy = qdict_get_str(qdict, "policy");
2650 int has_index = qdict_haskey(qdict, "index");
2651 int index = qdict_get_try_int(qdict, "index", -1);
2652 qemu_acl *acl = find_acl(mon, aclname);
2653 int deny, ret;
2655 if (acl) {
2656 if (strcmp(policy, "allow") == 0) {
2657 deny = 0;
2658 } else if (strcmp(policy, "deny") == 0) {
2659 deny = 1;
2660 } else {
2661 monitor_printf(mon, "acl: unknown policy '%s', "
2662 "expected 'deny' or 'allow'\n", policy);
2663 return;
2665 if (has_index)
2666 ret = qemu_acl_insert(acl, deny, match, index);
2667 else
2668 ret = qemu_acl_append(acl, deny, match);
2669 if (ret < 0)
2670 monitor_printf(mon, "acl: unable to add acl entry\n");
2671 else
2672 monitor_printf(mon, "acl: added rule at position %d\n", ret);
2676 static void do_acl_remove(Monitor *mon, const QDict *qdict)
2678 const char *aclname = qdict_get_str(qdict, "aclname");
2679 const char *match = qdict_get_str(qdict, "match");
2680 qemu_acl *acl = find_acl(mon, aclname);
2681 int ret;
2683 if (acl) {
2684 ret = qemu_acl_remove(acl, match);
2685 if (ret < 0)
2686 monitor_printf(mon, "acl: no matching acl entry\n");
2687 else
2688 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
2692 #if defined(TARGET_I386)
2693 static void do_inject_mce(Monitor *mon, const QDict *qdict)
2695 CPUState *cenv;
2696 int cpu_index = qdict_get_int(qdict, "cpu_index");
2697 int bank = qdict_get_int(qdict, "bank");
2698 uint64_t status = qdict_get_int(qdict, "status");
2699 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2700 uint64_t addr = qdict_get_int(qdict, "addr");
2701 uint64_t misc = qdict_get_int(qdict, "misc");
2703 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
2704 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
2705 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
2706 break;
2709 #endif
2711 static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2713 const char *fdname = qdict_get_str(qdict, "fdname");
2714 mon_fd_t *monfd;
2715 int fd;
2717 fd = qemu_chr_get_msgfd(mon->chr);
2718 if (fd == -1) {
2719 qerror_report(QERR_FD_NOT_SUPPLIED);
2720 return -1;
2723 if (qemu_isdigit(fdname[0])) {
2724 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2725 "a name not starting with a digit");
2726 return -1;
2729 QLIST_FOREACH(monfd, &mon->fds, next) {
2730 if (strcmp(monfd->name, fdname) != 0) {
2731 continue;
2734 close(monfd->fd);
2735 monfd->fd = fd;
2736 return 0;
2739 monfd = qemu_mallocz(sizeof(mon_fd_t));
2740 monfd->name = qemu_strdup(fdname);
2741 monfd->fd = fd;
2743 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
2744 return 0;
2747 static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2749 const char *fdname = qdict_get_str(qdict, "fdname");
2750 mon_fd_t *monfd;
2752 QLIST_FOREACH(monfd, &mon->fds, next) {
2753 if (strcmp(monfd->name, fdname) != 0) {
2754 continue;
2757 QLIST_REMOVE(monfd, next);
2758 close(monfd->fd);
2759 qemu_free(monfd->name);
2760 qemu_free(monfd);
2761 return 0;
2764 qerror_report(QERR_FD_NOT_FOUND, fdname);
2765 return -1;
2768 static void do_loadvm(Monitor *mon, const QDict *qdict)
2770 int saved_vm_running = vm_running;
2771 const char *name = qdict_get_str(qdict, "name");
2773 vm_stop(0);
2775 if (load_vmstate(name) == 0 && saved_vm_running) {
2776 vm_start();
2780 int monitor_get_fd(Monitor *mon, const char *fdname)
2782 mon_fd_t *monfd;
2784 QLIST_FOREACH(monfd, &mon->fds, next) {
2785 int fd;
2787 if (strcmp(monfd->name, fdname) != 0) {
2788 continue;
2791 fd = monfd->fd;
2793 /* caller takes ownership of fd */
2794 QLIST_REMOVE(monfd, next);
2795 qemu_free(monfd->name);
2796 qemu_free(monfd);
2798 return fd;
2801 return -1;
2804 static const mon_cmd_t mon_cmds[] = {
2805 #include "hmp-commands.h"
2806 { NULL, NULL, },
2809 /* Please update hmp-commands.hx when adding or changing commands */
2810 static const mon_cmd_t info_cmds[] = {
2812 .name = "version",
2813 .args_type = "",
2814 .params = "",
2815 .help = "show the version of QEMU",
2816 .user_print = do_info_version_print,
2817 .mhandler.info_new = do_info_version,
2820 .name = "network",
2821 .args_type = "",
2822 .params = "",
2823 .help = "show the network state",
2824 .mhandler.info = do_info_network,
2827 .name = "chardev",
2828 .args_type = "",
2829 .params = "",
2830 .help = "show the character devices",
2831 .user_print = qemu_chr_info_print,
2832 .mhandler.info_new = qemu_chr_info,
2835 .name = "block",
2836 .args_type = "",
2837 .params = "",
2838 .help = "show the block devices",
2839 .user_print = bdrv_info_print,
2840 .mhandler.info_new = bdrv_info,
2843 .name = "blockstats",
2844 .args_type = "",
2845 .params = "",
2846 .help = "show block device statistics",
2847 .user_print = bdrv_stats_print,
2848 .mhandler.info_new = bdrv_info_stats,
2851 .name = "registers",
2852 .args_type = "",
2853 .params = "",
2854 .help = "show the cpu registers",
2855 .mhandler.info = do_info_registers,
2858 .name = "cpus",
2859 .args_type = "",
2860 .params = "",
2861 .help = "show infos for each CPU",
2862 .user_print = monitor_print_cpus,
2863 .mhandler.info_new = do_info_cpus,
2866 .name = "history",
2867 .args_type = "",
2868 .params = "",
2869 .help = "show the command line history",
2870 .mhandler.info = do_info_history,
2873 .name = "irq",
2874 .args_type = "",
2875 .params = "",
2876 .help = "show the interrupts statistics (if available)",
2877 .mhandler.info = irq_info,
2880 .name = "pic",
2881 .args_type = "",
2882 .params = "",
2883 .help = "show i8259 (PIC) state",
2884 .mhandler.info = pic_info,
2887 .name = "pci",
2888 .args_type = "",
2889 .params = "",
2890 .help = "show PCI info",
2891 .user_print = do_pci_info_print,
2892 .mhandler.info_new = do_pci_info,
2894 #if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC)
2896 .name = "tlb",
2897 .args_type = "",
2898 .params = "",
2899 .help = "show virtual to physical memory mappings",
2900 .mhandler.info = tlb_info,
2902 #endif
2903 #if defined(TARGET_I386)
2905 .name = "mem",
2906 .args_type = "",
2907 .params = "",
2908 .help = "show the active virtual memory mappings",
2909 .mhandler.info = mem_info,
2911 #endif
2913 .name = "jit",
2914 .args_type = "",
2915 .params = "",
2916 .help = "show dynamic compiler info",
2917 .mhandler.info = do_info_jit,
2920 .name = "kvm",
2921 .args_type = "",
2922 .params = "",
2923 .help = "show KVM information",
2924 .user_print = do_info_kvm_print,
2925 .mhandler.info_new = do_info_kvm,
2928 .name = "numa",
2929 .args_type = "",
2930 .params = "",
2931 .help = "show NUMA information",
2932 .mhandler.info = do_info_numa,
2935 .name = "usb",
2936 .args_type = "",
2937 .params = "",
2938 .help = "show guest USB devices",
2939 .mhandler.info = usb_info,
2942 .name = "usbhost",
2943 .args_type = "",
2944 .params = "",
2945 .help = "show host USB devices",
2946 .mhandler.info = usb_host_info,
2949 .name = "profile",
2950 .args_type = "",
2951 .params = "",
2952 .help = "show profiling information",
2953 .mhandler.info = do_info_profile,
2956 .name = "capture",
2957 .args_type = "",
2958 .params = "",
2959 .help = "show capture information",
2960 .mhandler.info = do_info_capture,
2963 .name = "snapshots",
2964 .args_type = "",
2965 .params = "",
2966 .help = "show the currently saved VM snapshots",
2967 .mhandler.info = do_info_snapshots,
2970 .name = "status",
2971 .args_type = "",
2972 .params = "",
2973 .help = "show the current VM status (running|paused)",
2974 .user_print = do_info_status_print,
2975 .mhandler.info_new = do_info_status,
2978 .name = "pcmcia",
2979 .args_type = "",
2980 .params = "",
2981 .help = "show guest PCMCIA status",
2982 .mhandler.info = pcmcia_info,
2985 .name = "mice",
2986 .args_type = "",
2987 .params = "",
2988 .help = "show which guest mouse is receiving events",
2989 .user_print = do_info_mice_print,
2990 .mhandler.info_new = do_info_mice,
2993 .name = "vnc",
2994 .args_type = "",
2995 .params = "",
2996 .help = "show the vnc server status",
2997 .user_print = do_info_vnc_print,
2998 .mhandler.info_new = do_info_vnc,
3000 #if defined(CONFIG_SPICE)
3002 .name = "spice",
3003 .args_type = "",
3004 .params = "",
3005 .help = "show the spice server status",
3006 .user_print = do_info_spice_print,
3007 .mhandler.info_new = do_info_spice,
3009 #endif
3011 .name = "name",
3012 .args_type = "",
3013 .params = "",
3014 .help = "show the current VM name",
3015 .user_print = do_info_name_print,
3016 .mhandler.info_new = do_info_name,
3019 .name = "uuid",
3020 .args_type = "",
3021 .params = "",
3022 .help = "show the current VM UUID",
3023 .user_print = do_info_uuid_print,
3024 .mhandler.info_new = do_info_uuid,
3026 #if defined(TARGET_PPC)
3028 .name = "cpustats",
3029 .args_type = "",
3030 .params = "",
3031 .help = "show CPU statistics",
3032 .mhandler.info = do_info_cpu_stats,
3034 #endif
3035 #if defined(CONFIG_SLIRP)
3037 .name = "usernet",
3038 .args_type = "",
3039 .params = "",
3040 .help = "show user network stack connection states",
3041 .mhandler.info = do_info_usernet,
3043 #endif
3045 .name = "migrate",
3046 .args_type = "",
3047 .params = "",
3048 .help = "show migration status",
3049 .user_print = do_info_migrate_print,
3050 .mhandler.info_new = do_info_migrate,
3053 .name = "balloon",
3054 .args_type = "",
3055 .params = "",
3056 .help = "show balloon information",
3057 .user_print = monitor_print_balloon,
3058 .mhandler.info_async = do_info_balloon,
3059 .flags = MONITOR_CMD_ASYNC,
3062 .name = "qtree",
3063 .args_type = "",
3064 .params = "",
3065 .help = "show device tree",
3066 .mhandler.info = do_info_qtree,
3069 .name = "qdm",
3070 .args_type = "",
3071 .params = "",
3072 .help = "show qdev device model list",
3073 .mhandler.info = do_info_qdm,
3076 .name = "roms",
3077 .args_type = "",
3078 .params = "",
3079 .help = "show roms",
3080 .mhandler.info = do_info_roms,
3082 #if defined(CONFIG_SIMPLE_TRACE)
3084 .name = "trace",
3085 .args_type = "",
3086 .params = "",
3087 .help = "show current contents of trace buffer",
3088 .mhandler.info = do_info_trace,
3091 .name = "trace-events",
3092 .args_type = "",
3093 .params = "",
3094 .help = "show available trace-events & their state",
3095 .mhandler.info = do_info_trace_events,
3097 #endif
3099 .name = NULL,
3103 static const mon_cmd_t qmp_cmds[] = {
3104 #include "qmp-commands.h"
3105 { /* NULL */ },
3108 static const mon_cmd_t qmp_query_cmds[] = {
3110 .name = "version",
3111 .args_type = "",
3112 .params = "",
3113 .help = "show the version of QEMU",
3114 .user_print = do_info_version_print,
3115 .mhandler.info_new = do_info_version,
3118 .name = "commands",
3119 .args_type = "",
3120 .params = "",
3121 .help = "list QMP available commands",
3122 .user_print = monitor_user_noop,
3123 .mhandler.info_new = do_info_commands,
3126 .name = "chardev",
3127 .args_type = "",
3128 .params = "",
3129 .help = "show the character devices",
3130 .user_print = qemu_chr_info_print,
3131 .mhandler.info_new = qemu_chr_info,
3134 .name = "block",
3135 .args_type = "",
3136 .params = "",
3137 .help = "show the block devices",
3138 .user_print = bdrv_info_print,
3139 .mhandler.info_new = bdrv_info,
3142 .name = "blockstats",
3143 .args_type = "",
3144 .params = "",
3145 .help = "show block device statistics",
3146 .user_print = bdrv_stats_print,
3147 .mhandler.info_new = bdrv_info_stats,
3150 .name = "cpus",
3151 .args_type = "",
3152 .params = "",
3153 .help = "show infos for each CPU",
3154 .user_print = monitor_print_cpus,
3155 .mhandler.info_new = do_info_cpus,
3158 .name = "pci",
3159 .args_type = "",
3160 .params = "",
3161 .help = "show PCI info",
3162 .user_print = do_pci_info_print,
3163 .mhandler.info_new = do_pci_info,
3166 .name = "kvm",
3167 .args_type = "",
3168 .params = "",
3169 .help = "show KVM information",
3170 .user_print = do_info_kvm_print,
3171 .mhandler.info_new = do_info_kvm,
3174 .name = "status",
3175 .args_type = "",
3176 .params = "",
3177 .help = "show the current VM status (running|paused)",
3178 .user_print = do_info_status_print,
3179 .mhandler.info_new = do_info_status,
3182 .name = "mice",
3183 .args_type = "",
3184 .params = "",
3185 .help = "show which guest mouse is receiving events",
3186 .user_print = do_info_mice_print,
3187 .mhandler.info_new = do_info_mice,
3190 .name = "vnc",
3191 .args_type = "",
3192 .params = "",
3193 .help = "show the vnc server status",
3194 .user_print = do_info_vnc_print,
3195 .mhandler.info_new = do_info_vnc,
3197 #if defined(CONFIG_SPICE)
3199 .name = "spice",
3200 .args_type = "",
3201 .params = "",
3202 .help = "show the spice server status",
3203 .user_print = do_info_spice_print,
3204 .mhandler.info_new = do_info_spice,
3206 #endif
3208 .name = "name",
3209 .args_type = "",
3210 .params = "",
3211 .help = "show the current VM name",
3212 .user_print = do_info_name_print,
3213 .mhandler.info_new = do_info_name,
3216 .name = "uuid",
3217 .args_type = "",
3218 .params = "",
3219 .help = "show the current VM UUID",
3220 .user_print = do_info_uuid_print,
3221 .mhandler.info_new = do_info_uuid,
3224 .name = "migrate",
3225 .args_type = "",
3226 .params = "",
3227 .help = "show migration status",
3228 .user_print = do_info_migrate_print,
3229 .mhandler.info_new = do_info_migrate,
3232 .name = "balloon",
3233 .args_type = "",
3234 .params = "",
3235 .help = "show balloon information",
3236 .user_print = monitor_print_balloon,
3237 .mhandler.info_async = do_info_balloon,
3238 .flags = MONITOR_CMD_ASYNC,
3240 { /* NULL */ },
3243 /*******************************************************************/
3245 static const char *pch;
3246 static jmp_buf expr_env;
3248 #define MD_TLONG 0
3249 #define MD_I32 1
3251 typedef struct MonitorDef {
3252 const char *name;
3253 int offset;
3254 target_long (*get_value)(const struct MonitorDef *md, int val);
3255 int type;
3256 } MonitorDef;
3258 #if defined(TARGET_I386)
3259 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
3261 CPUState *env = mon_get_cpu();
3262 return env->eip + env->segs[R_CS].base;
3264 #endif
3266 #if defined(TARGET_PPC)
3267 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
3269 CPUState *env = mon_get_cpu();
3270 unsigned int u;
3271 int i;
3273 u = 0;
3274 for (i = 0; i < 8; i++)
3275 u |= env->crf[i] << (32 - (4 * i));
3277 return u;
3280 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
3282 CPUState *env = mon_get_cpu();
3283 return env->msr;
3286 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
3288 CPUState *env = mon_get_cpu();
3289 return env->xer;
3292 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
3294 CPUState *env = mon_get_cpu();
3295 return cpu_ppc_load_decr(env);
3298 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
3300 CPUState *env = mon_get_cpu();
3301 return cpu_ppc_load_tbu(env);
3304 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
3306 CPUState *env = mon_get_cpu();
3307 return cpu_ppc_load_tbl(env);
3309 #endif
3311 #if defined(TARGET_SPARC)
3312 #ifndef TARGET_SPARC64
3313 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
3315 CPUState *env = mon_get_cpu();
3317 return cpu_get_psr(env);
3319 #endif
3321 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
3323 CPUState *env = mon_get_cpu();
3324 return env->regwptr[val];
3326 #endif
3328 static const MonitorDef monitor_defs[] = {
3329 #ifdef TARGET_I386
3331 #define SEG(name, seg) \
3332 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
3333 { name ".base", offsetof(CPUState, segs[seg].base) },\
3334 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
3336 { "eax", offsetof(CPUState, regs[0]) },
3337 { "ecx", offsetof(CPUState, regs[1]) },
3338 { "edx", offsetof(CPUState, regs[2]) },
3339 { "ebx", offsetof(CPUState, regs[3]) },
3340 { "esp|sp", offsetof(CPUState, regs[4]) },
3341 { "ebp|fp", offsetof(CPUState, regs[5]) },
3342 { "esi", offsetof(CPUState, regs[6]) },
3343 { "edi", offsetof(CPUState, regs[7]) },
3344 #ifdef TARGET_X86_64
3345 { "r8", offsetof(CPUState, regs[8]) },
3346 { "r9", offsetof(CPUState, regs[9]) },
3347 { "r10", offsetof(CPUState, regs[10]) },
3348 { "r11", offsetof(CPUState, regs[11]) },
3349 { "r12", offsetof(CPUState, regs[12]) },
3350 { "r13", offsetof(CPUState, regs[13]) },
3351 { "r14", offsetof(CPUState, regs[14]) },
3352 { "r15", offsetof(CPUState, regs[15]) },
3353 #endif
3354 { "eflags", offsetof(CPUState, eflags) },
3355 { "eip", offsetof(CPUState, eip) },
3356 SEG("cs", R_CS)
3357 SEG("ds", R_DS)
3358 SEG("es", R_ES)
3359 SEG("ss", R_SS)
3360 SEG("fs", R_FS)
3361 SEG("gs", R_GS)
3362 { "pc", 0, monitor_get_pc, },
3363 #elif defined(TARGET_PPC)
3364 /* General purpose registers */
3365 { "r0", offsetof(CPUState, gpr[0]) },
3366 { "r1", offsetof(CPUState, gpr[1]) },
3367 { "r2", offsetof(CPUState, gpr[2]) },
3368 { "r3", offsetof(CPUState, gpr[3]) },
3369 { "r4", offsetof(CPUState, gpr[4]) },
3370 { "r5", offsetof(CPUState, gpr[5]) },
3371 { "r6", offsetof(CPUState, gpr[6]) },
3372 { "r7", offsetof(CPUState, gpr[7]) },
3373 { "r8", offsetof(CPUState, gpr[8]) },
3374 { "r9", offsetof(CPUState, gpr[9]) },
3375 { "r10", offsetof(CPUState, gpr[10]) },
3376 { "r11", offsetof(CPUState, gpr[11]) },
3377 { "r12", offsetof(CPUState, gpr[12]) },
3378 { "r13", offsetof(CPUState, gpr[13]) },
3379 { "r14", offsetof(CPUState, gpr[14]) },
3380 { "r15", offsetof(CPUState, gpr[15]) },
3381 { "r16", offsetof(CPUState, gpr[16]) },
3382 { "r17", offsetof(CPUState, gpr[17]) },
3383 { "r18", offsetof(CPUState, gpr[18]) },
3384 { "r19", offsetof(CPUState, gpr[19]) },
3385 { "r20", offsetof(CPUState, gpr[20]) },
3386 { "r21", offsetof(CPUState, gpr[21]) },
3387 { "r22", offsetof(CPUState, gpr[22]) },
3388 { "r23", offsetof(CPUState, gpr[23]) },
3389 { "r24", offsetof(CPUState, gpr[24]) },
3390 { "r25", offsetof(CPUState, gpr[25]) },
3391 { "r26", offsetof(CPUState, gpr[26]) },
3392 { "r27", offsetof(CPUState, gpr[27]) },
3393 { "r28", offsetof(CPUState, gpr[28]) },
3394 { "r29", offsetof(CPUState, gpr[29]) },
3395 { "r30", offsetof(CPUState, gpr[30]) },
3396 { "r31", offsetof(CPUState, gpr[31]) },
3397 /* Floating point registers */
3398 { "f0", offsetof(CPUState, fpr[0]) },
3399 { "f1", offsetof(CPUState, fpr[1]) },
3400 { "f2", offsetof(CPUState, fpr[2]) },
3401 { "f3", offsetof(CPUState, fpr[3]) },
3402 { "f4", offsetof(CPUState, fpr[4]) },
3403 { "f5", offsetof(CPUState, fpr[5]) },
3404 { "f6", offsetof(CPUState, fpr[6]) },
3405 { "f7", offsetof(CPUState, fpr[7]) },
3406 { "f8", offsetof(CPUState, fpr[8]) },
3407 { "f9", offsetof(CPUState, fpr[9]) },
3408 { "f10", offsetof(CPUState, fpr[10]) },
3409 { "f11", offsetof(CPUState, fpr[11]) },
3410 { "f12", offsetof(CPUState, fpr[12]) },
3411 { "f13", offsetof(CPUState, fpr[13]) },
3412 { "f14", offsetof(CPUState, fpr[14]) },
3413 { "f15", offsetof(CPUState, fpr[15]) },
3414 { "f16", offsetof(CPUState, fpr[16]) },
3415 { "f17", offsetof(CPUState, fpr[17]) },
3416 { "f18", offsetof(CPUState, fpr[18]) },
3417 { "f19", offsetof(CPUState, fpr[19]) },
3418 { "f20", offsetof(CPUState, fpr[20]) },
3419 { "f21", offsetof(CPUState, fpr[21]) },
3420 { "f22", offsetof(CPUState, fpr[22]) },
3421 { "f23", offsetof(CPUState, fpr[23]) },
3422 { "f24", offsetof(CPUState, fpr[24]) },
3423 { "f25", offsetof(CPUState, fpr[25]) },
3424 { "f26", offsetof(CPUState, fpr[26]) },
3425 { "f27", offsetof(CPUState, fpr[27]) },
3426 { "f28", offsetof(CPUState, fpr[28]) },
3427 { "f29", offsetof(CPUState, fpr[29]) },
3428 { "f30", offsetof(CPUState, fpr[30]) },
3429 { "f31", offsetof(CPUState, fpr[31]) },
3430 { "fpscr", offsetof(CPUState, fpscr) },
3431 /* Next instruction pointer */
3432 { "nip|pc", offsetof(CPUState, nip) },
3433 { "lr", offsetof(CPUState, lr) },
3434 { "ctr", offsetof(CPUState, ctr) },
3435 { "decr", 0, &monitor_get_decr, },
3436 { "ccr", 0, &monitor_get_ccr, },
3437 /* Machine state register */
3438 { "msr", 0, &monitor_get_msr, },
3439 { "xer", 0, &monitor_get_xer, },
3440 { "tbu", 0, &monitor_get_tbu, },
3441 { "tbl", 0, &monitor_get_tbl, },
3442 #if defined(TARGET_PPC64)
3443 /* Address space register */
3444 { "asr", offsetof(CPUState, asr) },
3445 #endif
3446 /* Segment registers */
3447 { "sdr1", offsetof(CPUState, sdr1) },
3448 { "sr0", offsetof(CPUState, sr[0]) },
3449 { "sr1", offsetof(CPUState, sr[1]) },
3450 { "sr2", offsetof(CPUState, sr[2]) },
3451 { "sr3", offsetof(CPUState, sr[3]) },
3452 { "sr4", offsetof(CPUState, sr[4]) },
3453 { "sr5", offsetof(CPUState, sr[5]) },
3454 { "sr6", offsetof(CPUState, sr[6]) },
3455 { "sr7", offsetof(CPUState, sr[7]) },
3456 { "sr8", offsetof(CPUState, sr[8]) },
3457 { "sr9", offsetof(CPUState, sr[9]) },
3458 { "sr10", offsetof(CPUState, sr[10]) },
3459 { "sr11", offsetof(CPUState, sr[11]) },
3460 { "sr12", offsetof(CPUState, sr[12]) },
3461 { "sr13", offsetof(CPUState, sr[13]) },
3462 { "sr14", offsetof(CPUState, sr[14]) },
3463 { "sr15", offsetof(CPUState, sr[15]) },
3464 /* Too lazy to put BATs and SPRs ... */
3465 #elif defined(TARGET_SPARC)
3466 { "g0", offsetof(CPUState, gregs[0]) },
3467 { "g1", offsetof(CPUState, gregs[1]) },
3468 { "g2", offsetof(CPUState, gregs[2]) },
3469 { "g3", offsetof(CPUState, gregs[3]) },
3470 { "g4", offsetof(CPUState, gregs[4]) },
3471 { "g5", offsetof(CPUState, gregs[5]) },
3472 { "g6", offsetof(CPUState, gregs[6]) },
3473 { "g7", offsetof(CPUState, gregs[7]) },
3474 { "o0", 0, monitor_get_reg },
3475 { "o1", 1, monitor_get_reg },
3476 { "o2", 2, monitor_get_reg },
3477 { "o3", 3, monitor_get_reg },
3478 { "o4", 4, monitor_get_reg },
3479 { "o5", 5, monitor_get_reg },
3480 { "o6", 6, monitor_get_reg },
3481 { "o7", 7, monitor_get_reg },
3482 { "l0", 8, monitor_get_reg },
3483 { "l1", 9, monitor_get_reg },
3484 { "l2", 10, monitor_get_reg },
3485 { "l3", 11, monitor_get_reg },
3486 { "l4", 12, monitor_get_reg },
3487 { "l5", 13, monitor_get_reg },
3488 { "l6", 14, monitor_get_reg },
3489 { "l7", 15, monitor_get_reg },
3490 { "i0", 16, monitor_get_reg },
3491 { "i1", 17, monitor_get_reg },
3492 { "i2", 18, monitor_get_reg },
3493 { "i3", 19, monitor_get_reg },
3494 { "i4", 20, monitor_get_reg },
3495 { "i5", 21, monitor_get_reg },
3496 { "i6", 22, monitor_get_reg },
3497 { "i7", 23, monitor_get_reg },
3498 { "pc", offsetof(CPUState, pc) },
3499 { "npc", offsetof(CPUState, npc) },
3500 { "y", offsetof(CPUState, y) },
3501 #ifndef TARGET_SPARC64
3502 { "psr", 0, &monitor_get_psr, },
3503 { "wim", offsetof(CPUState, wim) },
3504 #endif
3505 { "tbr", offsetof(CPUState, tbr) },
3506 { "fsr", offsetof(CPUState, fsr) },
3507 { "f0", offsetof(CPUState, fpr[0]) },
3508 { "f1", offsetof(CPUState, fpr[1]) },
3509 { "f2", offsetof(CPUState, fpr[2]) },
3510 { "f3", offsetof(CPUState, fpr[3]) },
3511 { "f4", offsetof(CPUState, fpr[4]) },
3512 { "f5", offsetof(CPUState, fpr[5]) },
3513 { "f6", offsetof(CPUState, fpr[6]) },
3514 { "f7", offsetof(CPUState, fpr[7]) },
3515 { "f8", offsetof(CPUState, fpr[8]) },
3516 { "f9", offsetof(CPUState, fpr[9]) },
3517 { "f10", offsetof(CPUState, fpr[10]) },
3518 { "f11", offsetof(CPUState, fpr[11]) },
3519 { "f12", offsetof(CPUState, fpr[12]) },
3520 { "f13", offsetof(CPUState, fpr[13]) },
3521 { "f14", offsetof(CPUState, fpr[14]) },
3522 { "f15", offsetof(CPUState, fpr[15]) },
3523 { "f16", offsetof(CPUState, fpr[16]) },
3524 { "f17", offsetof(CPUState, fpr[17]) },
3525 { "f18", offsetof(CPUState, fpr[18]) },
3526 { "f19", offsetof(CPUState, fpr[19]) },
3527 { "f20", offsetof(CPUState, fpr[20]) },
3528 { "f21", offsetof(CPUState, fpr[21]) },
3529 { "f22", offsetof(CPUState, fpr[22]) },
3530 { "f23", offsetof(CPUState, fpr[23]) },
3531 { "f24", offsetof(CPUState, fpr[24]) },
3532 { "f25", offsetof(CPUState, fpr[25]) },
3533 { "f26", offsetof(CPUState, fpr[26]) },
3534 { "f27", offsetof(CPUState, fpr[27]) },
3535 { "f28", offsetof(CPUState, fpr[28]) },
3536 { "f29", offsetof(CPUState, fpr[29]) },
3537 { "f30", offsetof(CPUState, fpr[30]) },
3538 { "f31", offsetof(CPUState, fpr[31]) },
3539 #ifdef TARGET_SPARC64
3540 { "f32", offsetof(CPUState, fpr[32]) },
3541 { "f34", offsetof(CPUState, fpr[34]) },
3542 { "f36", offsetof(CPUState, fpr[36]) },
3543 { "f38", offsetof(CPUState, fpr[38]) },
3544 { "f40", offsetof(CPUState, fpr[40]) },
3545 { "f42", offsetof(CPUState, fpr[42]) },
3546 { "f44", offsetof(CPUState, fpr[44]) },
3547 { "f46", offsetof(CPUState, fpr[46]) },
3548 { "f48", offsetof(CPUState, fpr[48]) },
3549 { "f50", offsetof(CPUState, fpr[50]) },
3550 { "f52", offsetof(CPUState, fpr[52]) },
3551 { "f54", offsetof(CPUState, fpr[54]) },
3552 { "f56", offsetof(CPUState, fpr[56]) },
3553 { "f58", offsetof(CPUState, fpr[58]) },
3554 { "f60", offsetof(CPUState, fpr[60]) },
3555 { "f62", offsetof(CPUState, fpr[62]) },
3556 { "asi", offsetof(CPUState, asi) },
3557 { "pstate", offsetof(CPUState, pstate) },
3558 { "cansave", offsetof(CPUState, cansave) },
3559 { "canrestore", offsetof(CPUState, canrestore) },
3560 { "otherwin", offsetof(CPUState, otherwin) },
3561 { "wstate", offsetof(CPUState, wstate) },
3562 { "cleanwin", offsetof(CPUState, cleanwin) },
3563 { "fprs", offsetof(CPUState, fprs) },
3564 #endif
3565 #endif
3566 { NULL },
3569 static void expr_error(Monitor *mon, const char *msg)
3571 monitor_printf(mon, "%s\n", msg);
3572 longjmp(expr_env, 1);
3575 /* return 0 if OK, -1 if not found */
3576 static int get_monitor_def(target_long *pval, const char *name)
3578 const MonitorDef *md;
3579 void *ptr;
3581 for(md = monitor_defs; md->name != NULL; md++) {
3582 if (compare_cmd(name, md->name)) {
3583 if (md->get_value) {
3584 *pval = md->get_value(md, md->offset);
3585 } else {
3586 CPUState *env = mon_get_cpu();
3587 ptr = (uint8_t *)env + md->offset;
3588 switch(md->type) {
3589 case MD_I32:
3590 *pval = *(int32_t *)ptr;
3591 break;
3592 case MD_TLONG:
3593 *pval = *(target_long *)ptr;
3594 break;
3595 default:
3596 *pval = 0;
3597 break;
3600 return 0;
3603 return -1;
3606 static void next(void)
3608 if (*pch != '\0') {
3609 pch++;
3610 while (qemu_isspace(*pch))
3611 pch++;
3615 static int64_t expr_sum(Monitor *mon);
3617 static int64_t expr_unary(Monitor *mon)
3619 int64_t n;
3620 char *p;
3621 int ret;
3623 switch(*pch) {
3624 case '+':
3625 next();
3626 n = expr_unary(mon);
3627 break;
3628 case '-':
3629 next();
3630 n = -expr_unary(mon);
3631 break;
3632 case '~':
3633 next();
3634 n = ~expr_unary(mon);
3635 break;
3636 case '(':
3637 next();
3638 n = expr_sum(mon);
3639 if (*pch != ')') {
3640 expr_error(mon, "')' expected");
3642 next();
3643 break;
3644 case '\'':
3645 pch++;
3646 if (*pch == '\0')
3647 expr_error(mon, "character constant expected");
3648 n = *pch;
3649 pch++;
3650 if (*pch != '\'')
3651 expr_error(mon, "missing terminating \' character");
3652 next();
3653 break;
3654 case '$':
3656 char buf[128], *q;
3657 target_long reg=0;
3659 pch++;
3660 q = buf;
3661 while ((*pch >= 'a' && *pch <= 'z') ||
3662 (*pch >= 'A' && *pch <= 'Z') ||
3663 (*pch >= '0' && *pch <= '9') ||
3664 *pch == '_' || *pch == '.') {
3665 if ((q - buf) < sizeof(buf) - 1)
3666 *q++ = *pch;
3667 pch++;
3669 while (qemu_isspace(*pch))
3670 pch++;
3671 *q = 0;
3672 ret = get_monitor_def(&reg, buf);
3673 if (ret < 0)
3674 expr_error(mon, "unknown register");
3675 n = reg;
3677 break;
3678 case '\0':
3679 expr_error(mon, "unexpected end of expression");
3680 n = 0;
3681 break;
3682 default:
3683 #if TARGET_PHYS_ADDR_BITS > 32
3684 n = strtoull(pch, &p, 0);
3685 #else
3686 n = strtoul(pch, &p, 0);
3687 #endif
3688 if (pch == p) {
3689 expr_error(mon, "invalid char in expression");
3691 pch = p;
3692 while (qemu_isspace(*pch))
3693 pch++;
3694 break;
3696 return n;
3700 static int64_t expr_prod(Monitor *mon)
3702 int64_t val, val2;
3703 int op;
3705 val = expr_unary(mon);
3706 for(;;) {
3707 op = *pch;
3708 if (op != '*' && op != '/' && op != '%')
3709 break;
3710 next();
3711 val2 = expr_unary(mon);
3712 switch(op) {
3713 default:
3714 case '*':
3715 val *= val2;
3716 break;
3717 case '/':
3718 case '%':
3719 if (val2 == 0)
3720 expr_error(mon, "division by zero");
3721 if (op == '/')
3722 val /= val2;
3723 else
3724 val %= val2;
3725 break;
3728 return val;
3731 static int64_t expr_logic(Monitor *mon)
3733 int64_t val, val2;
3734 int op;
3736 val = expr_prod(mon);
3737 for(;;) {
3738 op = *pch;
3739 if (op != '&' && op != '|' && op != '^')
3740 break;
3741 next();
3742 val2 = expr_prod(mon);
3743 switch(op) {
3744 default:
3745 case '&':
3746 val &= val2;
3747 break;
3748 case '|':
3749 val |= val2;
3750 break;
3751 case '^':
3752 val ^= val2;
3753 break;
3756 return val;
3759 static int64_t expr_sum(Monitor *mon)
3761 int64_t val, val2;
3762 int op;
3764 val = expr_logic(mon);
3765 for(;;) {
3766 op = *pch;
3767 if (op != '+' && op != '-')
3768 break;
3769 next();
3770 val2 = expr_logic(mon);
3771 if (op == '+')
3772 val += val2;
3773 else
3774 val -= val2;
3776 return val;
3779 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
3781 pch = *pp;
3782 if (setjmp(expr_env)) {
3783 *pp = pch;
3784 return -1;
3786 while (qemu_isspace(*pch))
3787 pch++;
3788 *pval = expr_sum(mon);
3789 *pp = pch;
3790 return 0;
3793 static int get_double(Monitor *mon, double *pval, const char **pp)
3795 const char *p = *pp;
3796 char *tailp;
3797 double d;
3799 d = strtod(p, &tailp);
3800 if (tailp == p) {
3801 monitor_printf(mon, "Number expected\n");
3802 return -1;
3804 if (d != d || d - d != 0) {
3805 /* NaN or infinity */
3806 monitor_printf(mon, "Bad number\n");
3807 return -1;
3809 *pval = d;
3810 *pp = tailp;
3811 return 0;
3814 static int get_str(char *buf, int buf_size, const char **pp)
3816 const char *p;
3817 char *q;
3818 int c;
3820 q = buf;
3821 p = *pp;
3822 while (qemu_isspace(*p))
3823 p++;
3824 if (*p == '\0') {
3825 fail:
3826 *q = '\0';
3827 *pp = p;
3828 return -1;
3830 if (*p == '\"') {
3831 p++;
3832 while (*p != '\0' && *p != '\"') {
3833 if (*p == '\\') {
3834 p++;
3835 c = *p++;
3836 switch(c) {
3837 case 'n':
3838 c = '\n';
3839 break;
3840 case 'r':
3841 c = '\r';
3842 break;
3843 case '\\':
3844 case '\'':
3845 case '\"':
3846 break;
3847 default:
3848 qemu_printf("unsupported escape code: '\\%c'\n", c);
3849 goto fail;
3851 if ((q - buf) < buf_size - 1) {
3852 *q++ = c;
3854 } else {
3855 if ((q - buf) < buf_size - 1) {
3856 *q++ = *p;
3858 p++;
3861 if (*p != '\"') {
3862 qemu_printf("unterminated string\n");
3863 goto fail;
3865 p++;
3866 } else {
3867 while (*p != '\0' && !qemu_isspace(*p)) {
3868 if ((q - buf) < buf_size - 1) {
3869 *q++ = *p;
3871 p++;
3874 *q = '\0';
3875 *pp = p;
3876 return 0;
3880 * Store the command-name in cmdname, and return a pointer to
3881 * the remaining of the command string.
3883 static const char *get_command_name(const char *cmdline,
3884 char *cmdname, size_t nlen)
3886 size_t len;
3887 const char *p, *pstart;
3889 p = cmdline;
3890 while (qemu_isspace(*p))
3891 p++;
3892 if (*p == '\0')
3893 return NULL;
3894 pstart = p;
3895 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3896 p++;
3897 len = p - pstart;
3898 if (len > nlen - 1)
3899 len = nlen - 1;
3900 memcpy(cmdname, pstart, len);
3901 cmdname[len] = '\0';
3902 return p;
3906 * Read key of 'type' into 'key' and return the current
3907 * 'type' pointer.
3909 static char *key_get_info(const char *type, char **key)
3911 size_t len;
3912 char *p, *str;
3914 if (*type == ',')
3915 type++;
3917 p = strchr(type, ':');
3918 if (!p) {
3919 *key = NULL;
3920 return NULL;
3922 len = p - type;
3924 str = qemu_malloc(len + 1);
3925 memcpy(str, type, len);
3926 str[len] = '\0';
3928 *key = str;
3929 return ++p;
3932 static int default_fmt_format = 'x';
3933 static int default_fmt_size = 4;
3935 #define MAX_ARGS 16
3937 static int is_valid_option(const char *c, const char *typestr)
3939 char option[3];
3941 option[0] = '-';
3942 option[1] = *c;
3943 option[2] = '\0';
3945 typestr = strstr(typestr, option);
3946 return (typestr != NULL);
3949 static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3950 const char *cmdname)
3952 const mon_cmd_t *cmd;
3954 for (cmd = disp_table; cmd->name != NULL; cmd++) {
3955 if (compare_cmd(cmdname, cmd->name)) {
3956 return cmd;
3960 return NULL;
3963 static const mon_cmd_t *monitor_find_command(const char *cmdname)
3965 return search_dispatch_table(mon_cmds, cmdname);
3968 static const mon_cmd_t *qmp_find_query_cmd(const char *info_item)
3970 return search_dispatch_table(qmp_query_cmds, info_item);
3973 static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3975 return search_dispatch_table(qmp_cmds, cmdname);
3978 static const mon_cmd_t *monitor_parse_command(Monitor *mon,
3979 const char *cmdline,
3980 QDict *qdict)
3982 const char *p, *typestr;
3983 int c;
3984 const mon_cmd_t *cmd;
3985 char cmdname[256];
3986 char buf[1024];
3987 char *key;
3989 #ifdef DEBUG
3990 monitor_printf(mon, "command='%s'\n", cmdline);
3991 #endif
3993 /* extract the command name */
3994 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3995 if (!p)
3996 return NULL;
3998 cmd = monitor_find_command(cmdname);
3999 if (!cmd) {
4000 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
4001 return NULL;
4004 /* parse the parameters */
4005 typestr = cmd->args_type;
4006 for(;;) {
4007 typestr = key_get_info(typestr, &key);
4008 if (!typestr)
4009 break;
4010 c = *typestr;
4011 typestr++;
4012 switch(c) {
4013 case 'F':
4014 case 'B':
4015 case 's':
4017 int ret;
4019 while (qemu_isspace(*p))
4020 p++;
4021 if (*typestr == '?') {
4022 typestr++;
4023 if (*p == '\0') {
4024 /* no optional string: NULL argument */
4025 break;
4028 ret = get_str(buf, sizeof(buf), &p);
4029 if (ret < 0) {
4030 switch(c) {
4031 case 'F':
4032 monitor_printf(mon, "%s: filename expected\n",
4033 cmdname);
4034 break;
4035 case 'B':
4036 monitor_printf(mon, "%s: block device name expected\n",
4037 cmdname);
4038 break;
4039 default:
4040 monitor_printf(mon, "%s: string expected\n", cmdname);
4041 break;
4043 goto fail;
4045 qdict_put(qdict, key, qstring_from_str(buf));
4047 break;
4048 case 'O':
4050 QemuOptsList *opts_list;
4051 QemuOpts *opts;
4053 opts_list = qemu_find_opts(key);
4054 if (!opts_list || opts_list->desc->name) {
4055 goto bad_type;
4057 while (qemu_isspace(*p)) {
4058 p++;
4060 if (!*p)
4061 break;
4062 if (get_str(buf, sizeof(buf), &p) < 0) {
4063 goto fail;
4065 opts = qemu_opts_parse(opts_list, buf, 1);
4066 if (!opts) {
4067 goto fail;
4069 qemu_opts_to_qdict(opts, qdict);
4070 qemu_opts_del(opts);
4072 break;
4073 case '/':
4075 int count, format, size;
4077 while (qemu_isspace(*p))
4078 p++;
4079 if (*p == '/') {
4080 /* format found */
4081 p++;
4082 count = 1;
4083 if (qemu_isdigit(*p)) {
4084 count = 0;
4085 while (qemu_isdigit(*p)) {
4086 count = count * 10 + (*p - '0');
4087 p++;
4090 size = -1;
4091 format = -1;
4092 for(;;) {
4093 switch(*p) {
4094 case 'o':
4095 case 'd':
4096 case 'u':
4097 case 'x':
4098 case 'i':
4099 case 'c':
4100 format = *p++;
4101 break;
4102 case 'b':
4103 size = 1;
4104 p++;
4105 break;
4106 case 'h':
4107 size = 2;
4108 p++;
4109 break;
4110 case 'w':
4111 size = 4;
4112 p++;
4113 break;
4114 case 'g':
4115 case 'L':
4116 size = 8;
4117 p++;
4118 break;
4119 default:
4120 goto next;
4123 next:
4124 if (*p != '\0' && !qemu_isspace(*p)) {
4125 monitor_printf(mon, "invalid char in format: '%c'\n",
4126 *p);
4127 goto fail;
4129 if (format < 0)
4130 format = default_fmt_format;
4131 if (format != 'i') {
4132 /* for 'i', not specifying a size gives -1 as size */
4133 if (size < 0)
4134 size = default_fmt_size;
4135 default_fmt_size = size;
4137 default_fmt_format = format;
4138 } else {
4139 count = 1;
4140 format = default_fmt_format;
4141 if (format != 'i') {
4142 size = default_fmt_size;
4143 } else {
4144 size = -1;
4147 qdict_put(qdict, "count", qint_from_int(count));
4148 qdict_put(qdict, "format", qint_from_int(format));
4149 qdict_put(qdict, "size", qint_from_int(size));
4151 break;
4152 case 'i':
4153 case 'l':
4154 case 'M':
4156 int64_t val;
4158 while (qemu_isspace(*p))
4159 p++;
4160 if (*typestr == '?' || *typestr == '.') {
4161 if (*typestr == '?') {
4162 if (*p == '\0') {
4163 typestr++;
4164 break;
4166 } else {
4167 if (*p == '.') {
4168 p++;
4169 while (qemu_isspace(*p))
4170 p++;
4171 } else {
4172 typestr++;
4173 break;
4176 typestr++;
4178 if (get_expr(mon, &val, &p))
4179 goto fail;
4180 /* Check if 'i' is greater than 32-bit */
4181 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
4182 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
4183 monitor_printf(mon, "integer is for 32-bit values\n");
4184 goto fail;
4185 } else if (c == 'M') {
4186 val <<= 20;
4188 qdict_put(qdict, key, qint_from_int(val));
4190 break;
4191 case 'o':
4193 ssize_t val;
4194 char *end;
4196 while (qemu_isspace(*p)) {
4197 p++;
4199 if (*typestr == '?') {
4200 typestr++;
4201 if (*p == '\0') {
4202 break;
4205 val = strtosz(p, &end);
4206 if (val < 0) {
4207 monitor_printf(mon, "invalid size\n");
4208 goto fail;
4210 qdict_put(qdict, key, qint_from_int(val));
4211 p = end;
4213 break;
4214 case 'T':
4216 double val;
4218 while (qemu_isspace(*p))
4219 p++;
4220 if (*typestr == '?') {
4221 typestr++;
4222 if (*p == '\0') {
4223 break;
4226 if (get_double(mon, &val, &p) < 0) {
4227 goto fail;
4229 if (p[0] && p[1] == 's') {
4230 switch (*p) {
4231 case 'm':
4232 val /= 1e3; p += 2; break;
4233 case 'u':
4234 val /= 1e6; p += 2; break;
4235 case 'n':
4236 val /= 1e9; p += 2; break;
4239 if (*p && !qemu_isspace(*p)) {
4240 monitor_printf(mon, "Unknown unit suffix\n");
4241 goto fail;
4243 qdict_put(qdict, key, qfloat_from_double(val));
4245 break;
4246 case 'b':
4248 const char *beg;
4249 int val;
4251 while (qemu_isspace(*p)) {
4252 p++;
4254 beg = p;
4255 while (qemu_isgraph(*p)) {
4256 p++;
4258 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
4259 val = 1;
4260 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
4261 val = 0;
4262 } else {
4263 monitor_printf(mon, "Expected 'on' or 'off'\n");
4264 goto fail;
4266 qdict_put(qdict, key, qbool_from_int(val));
4268 break;
4269 case '-':
4271 const char *tmp = p;
4272 int skip_key = 0;
4273 /* option */
4275 c = *typestr++;
4276 if (c == '\0')
4277 goto bad_type;
4278 while (qemu_isspace(*p))
4279 p++;
4280 if (*p == '-') {
4281 p++;
4282 if(c != *p) {
4283 if(!is_valid_option(p, typestr)) {
4285 monitor_printf(mon, "%s: unsupported option -%c\n",
4286 cmdname, *p);
4287 goto fail;
4288 } else {
4289 skip_key = 1;
4292 if(skip_key) {
4293 p = tmp;
4294 } else {
4295 /* has option */
4296 p++;
4297 qdict_put(qdict, key, qbool_from_int(1));
4301 break;
4302 default:
4303 bad_type:
4304 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
4305 goto fail;
4307 qemu_free(key);
4308 key = NULL;
4310 /* check that all arguments were parsed */
4311 while (qemu_isspace(*p))
4312 p++;
4313 if (*p != '\0') {
4314 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
4315 cmdname);
4316 goto fail;
4319 return cmd;
4321 fail:
4322 qemu_free(key);
4323 return NULL;
4326 void monitor_set_error(Monitor *mon, QError *qerror)
4328 /* report only the first error */
4329 if (!mon->error) {
4330 mon->error = qerror;
4331 } else {
4332 MON_DEBUG("Additional error report at %s:%d\n",
4333 qerror->file, qerror->linenr);
4334 QDECREF(qerror);
4338 static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
4340 if (ret && !monitor_has_error(mon)) {
4342 * If it returns failure, it must have passed on error.
4344 * Action: Report an internal error to the client if in QMP.
4346 qerror_report(QERR_UNDEFINED_ERROR);
4347 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
4348 cmd->name);
4351 #ifdef CONFIG_DEBUG_MONITOR
4352 if (!ret && monitor_has_error(mon)) {
4354 * If it returns success, it must not have passed an error.
4356 * Action: Report the passed error to the client.
4358 MON_DEBUG("command '%s' returned success but passed an error\n",
4359 cmd->name);
4362 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
4364 * Handlers should not call Monitor print functions.
4366 * Action: Ignore them in QMP.
4368 * (XXX: we don't check any 'info' or 'query' command here
4369 * because the user print function _is_ called by do_info(), hence
4370 * we will trigger this check. This problem will go away when we
4371 * make 'query' commands real and kill do_info())
4373 MON_DEBUG("command '%s' called print functions %d time(s)\n",
4374 cmd->name, mon_print_count_get(mon));
4376 #endif
4379 static void handle_user_command(Monitor *mon, const char *cmdline)
4381 QDict *qdict;
4382 const mon_cmd_t *cmd;
4384 qdict = qdict_new();
4386 cmd = monitor_parse_command(mon, cmdline, qdict);
4387 if (!cmd)
4388 goto out;
4390 if (handler_is_async(cmd)) {
4391 user_async_cmd_handler(mon, cmd, qdict);
4392 } else if (handler_is_qobject(cmd)) {
4393 QObject *data = NULL;
4395 /* XXX: ignores the error code */
4396 cmd->mhandler.cmd_new(mon, qdict, &data);
4397 assert(!monitor_has_error(mon));
4398 if (data) {
4399 cmd->user_print(mon, data);
4400 qobject_decref(data);
4402 } else {
4403 cmd->mhandler.cmd(mon, qdict);
4406 out:
4407 QDECREF(qdict);
4410 static void cmd_completion(const char *name, const char *list)
4412 const char *p, *pstart;
4413 char cmd[128];
4414 int len;
4416 p = list;
4417 for(;;) {
4418 pstart = p;
4419 p = strchr(p, '|');
4420 if (!p)
4421 p = pstart + strlen(pstart);
4422 len = p - pstart;
4423 if (len > sizeof(cmd) - 2)
4424 len = sizeof(cmd) - 2;
4425 memcpy(cmd, pstart, len);
4426 cmd[len] = '\0';
4427 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
4428 readline_add_completion(cur_mon->rs, cmd);
4430 if (*p == '\0')
4431 break;
4432 p++;
4436 static void file_completion(const char *input)
4438 DIR *ffs;
4439 struct dirent *d;
4440 char path[1024];
4441 char file[1024], file_prefix[1024];
4442 int input_path_len;
4443 const char *p;
4445 p = strrchr(input, '/');
4446 if (!p) {
4447 input_path_len = 0;
4448 pstrcpy(file_prefix, sizeof(file_prefix), input);
4449 pstrcpy(path, sizeof(path), ".");
4450 } else {
4451 input_path_len = p - input + 1;
4452 memcpy(path, input, input_path_len);
4453 if (input_path_len > sizeof(path) - 1)
4454 input_path_len = sizeof(path) - 1;
4455 path[input_path_len] = '\0';
4456 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4458 #ifdef DEBUG_COMPLETION
4459 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
4460 input, path, file_prefix);
4461 #endif
4462 ffs = opendir(path);
4463 if (!ffs)
4464 return;
4465 for(;;) {
4466 struct stat sb;
4467 d = readdir(ffs);
4468 if (!d)
4469 break;
4471 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4472 continue;
4475 if (strstart(d->d_name, file_prefix, NULL)) {
4476 memcpy(file, input, input_path_len);
4477 if (input_path_len < sizeof(file))
4478 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4479 d->d_name);
4480 /* stat the file to find out if it's a directory.
4481 * In that case add a slash to speed up typing long paths
4483 stat(file, &sb);
4484 if(S_ISDIR(sb.st_mode))
4485 pstrcat(file, sizeof(file), "/");
4486 readline_add_completion(cur_mon->rs, file);
4489 closedir(ffs);
4492 static void block_completion_it(void *opaque, BlockDriverState *bs)
4494 const char *name = bdrv_get_device_name(bs);
4495 const char *input = opaque;
4497 if (input[0] == '\0' ||
4498 !strncmp(name, (char *)input, strlen(input))) {
4499 readline_add_completion(cur_mon->rs, name);
4503 /* NOTE: this parser is an approximate form of the real command parser */
4504 static void parse_cmdline(const char *cmdline,
4505 int *pnb_args, char **args)
4507 const char *p;
4508 int nb_args, ret;
4509 char buf[1024];
4511 p = cmdline;
4512 nb_args = 0;
4513 for(;;) {
4514 while (qemu_isspace(*p))
4515 p++;
4516 if (*p == '\0')
4517 break;
4518 if (nb_args >= MAX_ARGS)
4519 break;
4520 ret = get_str(buf, sizeof(buf), &p);
4521 args[nb_args] = qemu_strdup(buf);
4522 nb_args++;
4523 if (ret < 0)
4524 break;
4526 *pnb_args = nb_args;
4529 static const char *next_arg_type(const char *typestr)
4531 const char *p = strchr(typestr, ':');
4532 return (p != NULL ? ++p : typestr);
4535 static void monitor_find_completion(const char *cmdline)
4537 const char *cmdname;
4538 char *args[MAX_ARGS];
4539 int nb_args, i, len;
4540 const char *ptype, *str;
4541 const mon_cmd_t *cmd;
4542 const KeyDef *key;
4544 parse_cmdline(cmdline, &nb_args, args);
4545 #ifdef DEBUG_COMPLETION
4546 for(i = 0; i < nb_args; i++) {
4547 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
4549 #endif
4551 /* if the line ends with a space, it means we want to complete the
4552 next arg */
4553 len = strlen(cmdline);
4554 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
4555 if (nb_args >= MAX_ARGS) {
4556 goto cleanup;
4558 args[nb_args++] = qemu_strdup("");
4560 if (nb_args <= 1) {
4561 /* command completion */
4562 if (nb_args == 0)
4563 cmdname = "";
4564 else
4565 cmdname = args[0];
4566 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
4567 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
4568 cmd_completion(cmdname, cmd->name);
4570 } else {
4571 /* find the command */
4572 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4573 if (compare_cmd(args[0], cmd->name)) {
4574 break;
4577 if (!cmd->name) {
4578 goto cleanup;
4581 ptype = next_arg_type(cmd->args_type);
4582 for(i = 0; i < nb_args - 2; i++) {
4583 if (*ptype != '\0') {
4584 ptype = next_arg_type(ptype);
4585 while (*ptype == '?')
4586 ptype = next_arg_type(ptype);
4589 str = args[nb_args - 1];
4590 if (*ptype == '-' && ptype[1] != '\0') {
4591 ptype = next_arg_type(ptype);
4593 switch(*ptype) {
4594 case 'F':
4595 /* file completion */
4596 readline_set_completion_index(cur_mon->rs, strlen(str));
4597 file_completion(str);
4598 break;
4599 case 'B':
4600 /* block device name completion */
4601 readline_set_completion_index(cur_mon->rs, strlen(str));
4602 bdrv_iterate(block_completion_it, (void *)str);
4603 break;
4604 case 's':
4605 /* XXX: more generic ? */
4606 if (!strcmp(cmd->name, "info")) {
4607 readline_set_completion_index(cur_mon->rs, strlen(str));
4608 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4609 cmd_completion(str, cmd->name);
4611 } else if (!strcmp(cmd->name, "sendkey")) {
4612 char *sep = strrchr(str, '-');
4613 if (sep)
4614 str = sep + 1;
4615 readline_set_completion_index(cur_mon->rs, strlen(str));
4616 for(key = key_defs; key->name != NULL; key++) {
4617 cmd_completion(str, key->name);
4619 } else if (!strcmp(cmd->name, "help|?")) {
4620 readline_set_completion_index(cur_mon->rs, strlen(str));
4621 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4622 cmd_completion(str, cmd->name);
4625 break;
4626 default:
4627 break;
4631 cleanup:
4632 for (i = 0; i < nb_args; i++) {
4633 qemu_free(args[i]);
4637 static int monitor_can_read(void *opaque)
4639 Monitor *mon = opaque;
4641 return (mon->suspend_cnt == 0) ? 1 : 0;
4644 static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4646 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4647 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4651 * Argument validation rules:
4653 * 1. The argument must exist in cmd_args qdict
4654 * 2. The argument type must be the expected one
4656 * Special case: If the argument doesn't exist in cmd_args and
4657 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4658 * checking is skipped for it.
4660 static int check_client_args_type(const QDict *client_args,
4661 const QDict *cmd_args, int flags)
4663 const QDictEntry *ent;
4665 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4666 QObject *obj;
4667 QString *arg_type;
4668 const QObject *client_arg = qdict_entry_value(ent);
4669 const char *client_arg_name = qdict_entry_key(ent);
4671 obj = qdict_get(cmd_args, client_arg_name);
4672 if (!obj) {
4673 if (flags & QMP_ACCEPT_UNKNOWNS) {
4674 /* handler accepts unknowns */
4675 continue;
4677 /* client arg doesn't exist */
4678 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4679 return -1;
4682 arg_type = qobject_to_qstring(obj);
4683 assert(arg_type != NULL);
4685 /* check if argument's type is correct */
4686 switch (qstring_get_str(arg_type)[0]) {
4687 case 'F':
4688 case 'B':
4689 case 's':
4690 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4691 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4692 "string");
4693 return -1;
4695 break;
4696 case 'i':
4697 case 'l':
4698 case 'M':
4699 case 'o':
4700 if (qobject_type(client_arg) != QTYPE_QINT) {
4701 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4702 "int");
4703 return -1;
4705 break;
4706 case 'T':
4707 if (qobject_type(client_arg) != QTYPE_QINT &&
4708 qobject_type(client_arg) != QTYPE_QFLOAT) {
4709 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4710 "number");
4711 return -1;
4713 break;
4714 case 'b':
4715 case '-':
4716 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4717 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4718 "bool");
4719 return -1;
4721 break;
4722 case 'O':
4723 assert(flags & QMP_ACCEPT_UNKNOWNS);
4724 break;
4725 case '/':
4726 case '.':
4728 * These types are not supported by QMP and thus are not
4729 * handled here. Fall through.
4731 default:
4732 abort();
4736 return 0;
4740 * - Check if the client has passed all mandatory args
4741 * - Set special flags for argument validation
4743 static int check_mandatory_args(const QDict *cmd_args,
4744 const QDict *client_args, int *flags)
4746 const QDictEntry *ent;
4748 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4749 const char *cmd_arg_name = qdict_entry_key(ent);
4750 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4751 assert(type != NULL);
4753 if (qstring_get_str(type)[0] == 'O') {
4754 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4755 *flags |= QMP_ACCEPT_UNKNOWNS;
4756 } else if (qstring_get_str(type)[0] != '-' &&
4757 qstring_get_str(type)[1] != '?' &&
4758 !qdict_haskey(client_args, cmd_arg_name)) {
4759 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4760 return -1;
4764 return 0;
4767 static QDict *qdict_from_args_type(const char *args_type)
4769 int i;
4770 QDict *qdict;
4771 QString *key, *type, *cur_qs;
4773 assert(args_type != NULL);
4775 qdict = qdict_new();
4777 if (args_type == NULL || args_type[0] == '\0') {
4778 /* no args, empty qdict */
4779 goto out;
4782 key = qstring_new();
4783 type = qstring_new();
4785 cur_qs = key;
4787 for (i = 0;; i++) {
4788 switch (args_type[i]) {
4789 case ',':
4790 case '\0':
4791 qdict_put(qdict, qstring_get_str(key), type);
4792 QDECREF(key);
4793 if (args_type[i] == '\0') {
4794 goto out;
4796 type = qstring_new(); /* qdict has ref */
4797 cur_qs = key = qstring_new();
4798 break;
4799 case ':':
4800 cur_qs = type;
4801 break;
4802 default:
4803 qstring_append_chr(cur_qs, args_type[i]);
4804 break;
4808 out:
4809 return qdict;
4813 * Client argument checking rules:
4815 * 1. Client must provide all mandatory arguments
4816 * 2. Each argument provided by the client must be expected
4817 * 3. Each argument provided by the client must have the type expected
4818 * by the command
4820 static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4822 int flags, err;
4823 QDict *cmd_args;
4825 cmd_args = qdict_from_args_type(cmd->args_type);
4827 flags = 0;
4828 err = check_mandatory_args(cmd_args, client_args, &flags);
4829 if (err) {
4830 goto out;
4833 err = check_client_args_type(client_args, cmd_args, flags);
4835 out:
4836 QDECREF(cmd_args);
4837 return err;
4841 * Input object checking rules
4843 * 1. Input object must be a dict
4844 * 2. The "execute" key must exist
4845 * 3. The "execute" key must be a string
4846 * 4. If the "arguments" key exists, it must be a dict
4847 * 5. If the "id" key exists, it can be anything (ie. json-value)
4848 * 6. Any argument not listed above is considered invalid
4850 static QDict *qmp_check_input_obj(QObject *input_obj)
4852 const QDictEntry *ent;
4853 int has_exec_key = 0;
4854 QDict *input_dict;
4856 if (qobject_type(input_obj) != QTYPE_QDICT) {
4857 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4858 return NULL;
4861 input_dict = qobject_to_qdict(input_obj);
4863 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4864 const char *arg_name = qdict_entry_key(ent);
4865 const QObject *arg_obj = qdict_entry_value(ent);
4867 if (!strcmp(arg_name, "execute")) {
4868 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4869 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4870 "string");
4871 return NULL;
4873 has_exec_key = 1;
4874 } else if (!strcmp(arg_name, "arguments")) {
4875 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4876 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4877 "object");
4878 return NULL;
4880 } else if (!strcmp(arg_name, "id")) {
4881 /* FIXME: check duplicated IDs for async commands */
4882 } else {
4883 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4884 return NULL;
4888 if (!has_exec_key) {
4889 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4890 return NULL;
4893 return input_dict;
4896 static void qmp_call_query_cmd(Monitor *mon, const mon_cmd_t *cmd)
4898 QObject *ret_data = NULL;
4900 if (handler_is_async(cmd)) {
4901 qmp_async_info_handler(mon, cmd);
4902 if (monitor_has_error(mon)) {
4903 monitor_protocol_emitter(mon, NULL);
4905 } else {
4906 cmd->mhandler.info_new(mon, &ret_data);
4907 monitor_protocol_emitter(mon, ret_data);
4908 qobject_decref(ret_data);
4912 static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4913 const QDict *params)
4915 int ret;
4916 QObject *data = NULL;
4918 mon_print_count_init(mon);
4920 ret = cmd->mhandler.cmd_new(mon, params, &data);
4921 handler_audit(mon, cmd, ret);
4922 monitor_protocol_emitter(mon, data);
4923 qobject_decref(data);
4926 static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4928 int err;
4929 QObject *obj;
4930 QDict *input, *args;
4931 const mon_cmd_t *cmd;
4932 Monitor *mon = cur_mon;
4933 const char *cmd_name, *query_cmd;
4935 query_cmd = NULL;
4936 args = input = NULL;
4938 obj = json_parser_parse(tokens, NULL);
4939 if (!obj) {
4940 // FIXME: should be triggered in json_parser_parse()
4941 qerror_report(QERR_JSON_PARSING);
4942 goto err_out;
4945 input = qmp_check_input_obj(obj);
4946 if (!input) {
4947 qobject_decref(obj);
4948 goto err_out;
4951 mon->mc->id = qdict_get(input, "id");
4952 qobject_incref(mon->mc->id);
4954 cmd_name = qdict_get_str(input, "execute");
4955 if (invalid_qmp_mode(mon, cmd_name)) {
4956 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4957 goto err_out;
4960 if (strstart(cmd_name, "query-", &query_cmd)) {
4961 cmd = qmp_find_query_cmd(query_cmd);
4962 } else {
4963 cmd = qmp_find_cmd(cmd_name);
4966 if (!cmd) {
4967 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4968 goto err_out;
4971 obj = qdict_get(input, "arguments");
4972 if (!obj) {
4973 args = qdict_new();
4974 } else {
4975 args = qobject_to_qdict(obj);
4976 QINCREF(args);
4979 err = qmp_check_client_args(cmd, args);
4980 if (err < 0) {
4981 goto err_out;
4984 if (query_cmd) {
4985 qmp_call_query_cmd(mon, cmd);
4986 } else if (handler_is_async(cmd)) {
4987 err = qmp_async_cmd_handler(mon, cmd, args);
4988 if (err) {
4989 /* emit the error response */
4990 goto err_out;
4992 } else {
4993 qmp_call_cmd(mon, cmd, args);
4996 goto out;
4998 err_out:
4999 monitor_protocol_emitter(mon, NULL);
5000 out:
5001 QDECREF(input);
5002 QDECREF(args);
5006 * monitor_control_read(): Read and handle QMP input
5008 static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
5010 Monitor *old_mon = cur_mon;
5012 cur_mon = opaque;
5014 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
5016 cur_mon = old_mon;
5019 static void monitor_read(void *opaque, const uint8_t *buf, int size)
5021 Monitor *old_mon = cur_mon;
5022 int i;
5024 cur_mon = opaque;
5026 if (cur_mon->rs) {
5027 for (i = 0; i < size; i++)
5028 readline_handle_byte(cur_mon->rs, buf[i]);
5029 } else {
5030 if (size == 0 || buf[size - 1] != 0)
5031 monitor_printf(cur_mon, "corrupted command\n");
5032 else
5033 handle_user_command(cur_mon, (char *)buf);
5036 cur_mon = old_mon;
5039 static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
5041 monitor_suspend(mon);
5042 handle_user_command(mon, cmdline);
5043 monitor_resume(mon);
5046 int monitor_suspend(Monitor *mon)
5048 if (!mon->rs)
5049 return -ENOTTY;
5050 mon->suspend_cnt++;
5051 return 0;
5054 void monitor_resume(Monitor *mon)
5056 if (!mon->rs)
5057 return;
5058 if (--mon->suspend_cnt == 0)
5059 readline_show_prompt(mon->rs);
5062 static QObject *get_qmp_greeting(void)
5064 QObject *ver;
5066 do_info_version(NULL, &ver);
5067 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
5071 * monitor_control_event(): Print QMP gretting
5073 static void monitor_control_event(void *opaque, int event)
5075 QObject *data;
5076 Monitor *mon = opaque;
5078 switch (event) {
5079 case CHR_EVENT_OPENED:
5080 mon->mc->command_mode = 0;
5081 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
5082 data = get_qmp_greeting();
5083 monitor_json_emitter(mon, data);
5084 qobject_decref(data);
5085 break;
5086 case CHR_EVENT_CLOSED:
5087 json_message_parser_destroy(&mon->mc->parser);
5088 break;
5092 static void monitor_event(void *opaque, int event)
5094 Monitor *mon = opaque;
5096 switch (event) {
5097 case CHR_EVENT_MUX_IN:
5098 mon->mux_out = 0;
5099 if (mon->reset_seen) {
5100 readline_restart(mon->rs);
5101 monitor_resume(mon);
5102 monitor_flush(mon);
5103 } else {
5104 mon->suspend_cnt = 0;
5106 break;
5108 case CHR_EVENT_MUX_OUT:
5109 if (mon->reset_seen) {
5110 if (mon->suspend_cnt == 0) {
5111 monitor_printf(mon, "\n");
5113 monitor_flush(mon);
5114 monitor_suspend(mon);
5115 } else {
5116 mon->suspend_cnt++;
5118 mon->mux_out = 1;
5119 break;
5121 case CHR_EVENT_OPENED:
5122 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
5123 "information\n", QEMU_VERSION);
5124 if (!mon->mux_out) {
5125 readline_show_prompt(mon->rs);
5127 mon->reset_seen = 1;
5128 break;
5134 * Local variables:
5135 * c-indent-level: 4
5136 * c-basic-offset: 4
5137 * tab-width: 8
5138 * End:
5141 void monitor_init(CharDriverState *chr, int flags)
5143 static int is_first_init = 1;
5144 Monitor *mon;
5146 if (is_first_init) {
5147 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
5148 is_first_init = 0;
5151 mon = qemu_mallocz(sizeof(*mon));
5153 mon->chr = chr;
5154 mon->flags = flags;
5155 if (flags & MONITOR_USE_READLINE) {
5156 mon->rs = readline_init(mon, monitor_find_completion);
5157 monitor_read_command(mon, 0);
5160 if (monitor_ctrl_mode(mon)) {
5161 mon->mc = qemu_mallocz(sizeof(MonitorControl));
5162 /* Control mode requires special handlers */
5163 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
5164 monitor_control_event, mon);
5165 } else {
5166 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
5167 monitor_event, mon);
5170 QLIST_INSERT_HEAD(&mon_list, mon, entry);
5171 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
5172 default_mon = mon;
5175 static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
5177 BlockDriverState *bs = opaque;
5178 int ret = 0;
5180 if (bdrv_set_key(bs, password) != 0) {
5181 monitor_printf(mon, "invalid password\n");
5182 ret = -EPERM;
5184 if (mon->password_completion_cb)
5185 mon->password_completion_cb(mon->password_opaque, ret);
5187 monitor_read_command(mon, 1);
5190 int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
5191 BlockDriverCompletionFunc *completion_cb,
5192 void *opaque)
5194 int err;
5196 if (!bdrv_key_required(bs)) {
5197 if (completion_cb)
5198 completion_cb(opaque, 0);
5199 return 0;
5202 if (monitor_ctrl_mode(mon)) {
5203 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
5204 return -1;
5207 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
5208 bdrv_get_encrypted_filename(bs));
5210 mon->password_completion_cb = completion_cb;
5211 mon->password_opaque = opaque;
5213 err = monitor_read_password(mon, bdrv_password_cb, bs);
5215 if (err && completion_cb)
5216 completion_cb(opaque, err);
5218 return err;