test: add intercepted and unintercepted cr3 read tests for svm
[qemu-kvm/stefanha.git] / monitor.c
blobe51df62d60e540ad15872003c9a7d14e6061a6be
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 "sysemu.h"
38 #include "monitor.h"
39 #include "readline.h"
40 #include "console.h"
41 #include "blockdev.h"
42 #include "audio/audio.h"
43 #include "disas.h"
44 #include "balloon.h"
45 #include "qemu-timer.h"
46 #include "migration.h"
47 #include "kvm.h"
48 #include "acl.h"
49 #include "qint.h"
50 #include "qfloat.h"
51 #include "qlist.h"
52 #include "qbool.h"
53 #include "qstring.h"
54 #include "qjson.h"
55 #include "json-streamer.h"
56 #include "json-parser.h"
57 #include "osdep.h"
58 #include "exec-all.h"
59 #include "qemu-kvm.h"
61 //#define DEBUG
62 //#define DEBUG_COMPLETION
65 * Supported types:
67 * 'F' filename
68 * 'B' block device name
69 * 's' string (accept optional quote)
70 * 'O' option string of the form NAME=VALUE,...
71 * parsed according to QemuOptsList given by its name
72 * Example: 'device:O' uses qemu_device_opts.
73 * Restriction: only lists with empty desc are supported
74 * TODO lift the restriction
75 * 'i' 32 bit integer
76 * 'l' target long (32 or 64 bit)
77 * 'M' just like 'l', except in user mode the value is
78 * multiplied by 2^20 (think Mebibyte)
79 * 'f' double
80 * user mode accepts an optional G, g, M, m, K, k suffix,
81 * which multiplies the value by 2^30 for suffixes G and
82 * g, 2^20 for M and m, 2^10 for K and k
83 * 'T' double
84 * user mode accepts an optional ms, us, ns suffix,
85 * which divides the value by 1e3, 1e6, 1e9, respectively
86 * '/' optional gdb-like print format (like "/10x")
88 * '?' optional type (for all types, except '/')
89 * '.' other form of optional type (for 'i' and 'l')
90 * 'b' boolean
91 * user mode accepts "on" or "off"
92 * '-' optional parameter (eg. '-f')
96 typedef struct MonitorCompletionData MonitorCompletionData;
97 struct MonitorCompletionData {
98 Monitor *mon;
99 void (*user_print)(Monitor *mon, const QObject *data);
102 typedef struct mon_cmd_t {
103 const char *name;
104 const char *args_type;
105 const char *params;
106 const char *help;
107 void (*user_print)(Monitor *mon, const QObject *data);
108 union {
109 void (*info)(Monitor *mon);
110 void (*info_new)(Monitor *mon, QObject **ret_data);
111 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
112 void (*cmd)(Monitor *mon, const QDict *qdict);
113 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
114 int (*cmd_async)(Monitor *mon, const QDict *params,
115 MonitorCompletion *cb, void *opaque);
116 } mhandler;
117 int flags;
118 } mon_cmd_t;
120 /* file descriptors passed via SCM_RIGHTS */
121 typedef struct mon_fd_t mon_fd_t;
122 struct mon_fd_t {
123 char *name;
124 int fd;
125 QLIST_ENTRY(mon_fd_t) next;
128 typedef struct MonitorControl {
129 QObject *id;
130 JSONMessageParser parser;
131 int command_mode;
132 } MonitorControl;
134 struct Monitor {
135 CharDriverState *chr;
136 int mux_out;
137 int reset_seen;
138 int flags;
139 int suspend_cnt;
140 uint8_t outbuf[1024];
141 int outbuf_index;
142 ReadLineState *rs;
143 MonitorControl *mc;
144 CPUState *mon_cpu;
145 BlockDriverCompletionFunc *password_completion_cb;
146 void *password_opaque;
147 #ifdef CONFIG_DEBUG_MONITOR
148 int print_calls_nr;
149 #endif
150 QError *error;
151 QLIST_HEAD(,mon_fd_t) fds;
152 QLIST_ENTRY(Monitor) entry;
155 #ifdef CONFIG_DEBUG_MONITOR
156 #define MON_DEBUG(fmt, ...) do { \
157 fprintf(stderr, "Monitor: "); \
158 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
160 static inline void mon_print_count_inc(Monitor *mon)
162 mon->print_calls_nr++;
165 static inline void mon_print_count_init(Monitor *mon)
167 mon->print_calls_nr = 0;
170 static inline int mon_print_count_get(const Monitor *mon)
172 return mon->print_calls_nr;
175 #else /* !CONFIG_DEBUG_MONITOR */
176 #define MON_DEBUG(fmt, ...) do { } while (0)
177 static inline void mon_print_count_inc(Monitor *mon) { }
178 static inline void mon_print_count_init(Monitor *mon) { }
179 static inline int mon_print_count_get(const Monitor *mon) { return 0; }
180 #endif /* CONFIG_DEBUG_MONITOR */
182 /* QMP checker flags */
183 #define QMP_ACCEPT_UNKNOWNS 1
185 static QLIST_HEAD(mon_list, Monitor) mon_list;
187 static const mon_cmd_t mon_cmds[];
188 static const mon_cmd_t info_cmds[];
190 Monitor *cur_mon;
191 Monitor *default_mon;
193 static void monitor_command_cb(Monitor *mon, const char *cmdline,
194 void *opaque);
196 static inline int qmp_cmd_mode(const Monitor *mon)
198 return (mon->mc ? mon->mc->command_mode : 0);
201 /* Return true if in control mode, false otherwise */
202 static inline int monitor_ctrl_mode(const Monitor *mon)
204 return (mon->flags & MONITOR_USE_CONTROL);
207 /* Return non-zero iff we have a current monitor, and it is in QMP mode. */
208 int monitor_cur_is_qmp(void)
210 return cur_mon && monitor_ctrl_mode(cur_mon);
213 static void monitor_read_command(Monitor *mon, int show_prompt)
215 if (!mon->rs)
216 return;
218 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
219 if (show_prompt)
220 readline_show_prompt(mon->rs);
223 static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
224 void *opaque)
226 if (monitor_ctrl_mode(mon)) {
227 qerror_report(QERR_MISSING_PARAMETER, "password");
228 return -EINVAL;
229 } else if (mon->rs) {
230 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
231 /* prompt is printed on return from the command handler */
232 return 0;
233 } else {
234 monitor_printf(mon, "terminal does not support password prompting\n");
235 return -ENOTTY;
239 void monitor_flush(Monitor *mon)
241 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
242 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
243 mon->outbuf_index = 0;
247 /* flush at every end of line or if the buffer is full */
248 static void monitor_puts(Monitor *mon, const char *str)
250 char c;
252 for(;;) {
253 c = *str++;
254 if (c == '\0')
255 break;
256 if (c == '\n')
257 mon->outbuf[mon->outbuf_index++] = '\r';
258 mon->outbuf[mon->outbuf_index++] = c;
259 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
260 || c == '\n')
261 monitor_flush(mon);
265 void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
267 char buf[4096];
269 if (!mon)
270 return;
272 mon_print_count_inc(mon);
274 if (monitor_ctrl_mode(mon)) {
275 return;
278 vsnprintf(buf, sizeof(buf), fmt, ap);
279 monitor_puts(mon, buf);
282 void monitor_printf(Monitor *mon, const char *fmt, ...)
284 va_list ap;
285 va_start(ap, fmt);
286 monitor_vprintf(mon, fmt, ap);
287 va_end(ap);
290 void monitor_print_filename(Monitor *mon, const char *filename)
292 int i;
294 for (i = 0; filename[i]; i++) {
295 switch (filename[i]) {
296 case ' ':
297 case '"':
298 case '\\':
299 monitor_printf(mon, "\\%c", filename[i]);
300 break;
301 case '\t':
302 monitor_printf(mon, "\\t");
303 break;
304 case '\r':
305 monitor_printf(mon, "\\r");
306 break;
307 case '\n':
308 monitor_printf(mon, "\\n");
309 break;
310 default:
311 monitor_printf(mon, "%c", filename[i]);
312 break;
317 static int monitor_fprintf(FILE *stream, const char *fmt, ...)
319 va_list ap;
320 va_start(ap, fmt);
321 monitor_vprintf((Monitor *)stream, fmt, ap);
322 va_end(ap);
323 return 0;
326 static void monitor_user_noop(Monitor *mon, const QObject *data) { }
328 static inline int monitor_handler_ported(const mon_cmd_t *cmd)
330 return cmd->user_print != NULL;
333 static inline bool monitor_handler_is_async(const mon_cmd_t *cmd)
335 return cmd->flags & MONITOR_CMD_ASYNC;
338 static inline bool monitor_cmd_user_only(const mon_cmd_t *cmd)
340 return (cmd->flags & MONITOR_CMD_USER_ONLY);
343 static inline int monitor_has_error(const Monitor *mon)
345 return mon->error != NULL;
348 static void monitor_json_emitter(Monitor *mon, const QObject *data)
350 QString *json;
352 json = qobject_to_json(data);
353 assert(json != NULL);
355 qstring_append_chr(json, '\n');
356 monitor_puts(mon, qstring_get_str(json));
358 QDECREF(json);
361 static void monitor_protocol_emitter(Monitor *mon, QObject *data)
363 QDict *qmp;
365 qmp = qdict_new();
367 if (!monitor_has_error(mon)) {
368 /* success response */
369 if (data) {
370 qobject_incref(data);
371 qdict_put_obj(qmp, "return", data);
372 } else {
373 /* return an empty QDict by default */
374 qdict_put(qmp, "return", qdict_new());
376 } else {
377 /* error response */
378 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
379 qdict_put(qmp, "error", mon->error->error);
380 QINCREF(mon->error->error);
381 QDECREF(mon->error);
382 mon->error = NULL;
385 if (mon->mc->id) {
386 qdict_put_obj(qmp, "id", mon->mc->id);
387 mon->mc->id = NULL;
390 monitor_json_emitter(mon, QOBJECT(qmp));
391 QDECREF(qmp);
394 static void timestamp_put(QDict *qdict)
396 int err;
397 QObject *obj;
398 qemu_timeval tv;
400 err = qemu_gettimeofday(&tv);
401 if (err < 0)
402 return;
404 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
405 "'microseconds': %" PRId64 " }",
406 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
407 qdict_put_obj(qdict, "timestamp", obj);
411 * monitor_protocol_event(): Generate a Monitor event
413 * Event-specific data can be emitted through the (optional) 'data' parameter.
415 void monitor_protocol_event(MonitorEvent event, QObject *data)
417 QDict *qmp;
418 const char *event_name;
419 Monitor *mon;
421 assert(event < QEVENT_MAX);
423 switch (event) {
424 case QEVENT_SHUTDOWN:
425 event_name = "SHUTDOWN";
426 break;
427 case QEVENT_RESET:
428 event_name = "RESET";
429 break;
430 case QEVENT_POWERDOWN:
431 event_name = "POWERDOWN";
432 break;
433 case QEVENT_STOP:
434 event_name = "STOP";
435 break;
436 case QEVENT_RESUME:
437 event_name = "RESUME";
438 break;
439 case QEVENT_VNC_CONNECTED:
440 event_name = "VNC_CONNECTED";
441 break;
442 case QEVENT_VNC_INITIALIZED:
443 event_name = "VNC_INITIALIZED";
444 break;
445 case QEVENT_VNC_DISCONNECTED:
446 event_name = "VNC_DISCONNECTED";
447 break;
448 case QEVENT_BLOCK_IO_ERROR:
449 event_name = "BLOCK_IO_ERROR";
450 break;
451 case QEVENT_RTC_CHANGE:
452 event_name = "RTC_CHANGE";
453 break;
454 case QEVENT_WATCHDOG:
455 event_name = "WATCHDOG";
456 break;
457 default:
458 abort();
459 break;
462 qmp = qdict_new();
463 timestamp_put(qmp);
464 qdict_put(qmp, "event", qstring_from_str(event_name));
465 if (data) {
466 qobject_incref(data);
467 qdict_put_obj(qmp, "data", data);
470 QLIST_FOREACH(mon, &mon_list, entry) {
471 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
472 monitor_json_emitter(mon, QOBJECT(qmp));
475 QDECREF(qmp);
478 static int do_qmp_capabilities(Monitor *mon, const QDict *params,
479 QObject **ret_data)
481 /* Will setup QMP capabilities in the future */
482 if (monitor_ctrl_mode(mon)) {
483 mon->mc->command_mode = 1;
486 return 0;
489 static int compare_cmd(const char *name, const char *list)
491 const char *p, *pstart;
492 int len;
493 len = strlen(name);
494 p = list;
495 for(;;) {
496 pstart = p;
497 p = strchr(p, '|');
498 if (!p)
499 p = pstart + strlen(pstart);
500 if ((p - pstart) == len && !memcmp(pstart, name, len))
501 return 1;
502 if (*p == '\0')
503 break;
504 p++;
506 return 0;
509 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
510 const char *prefix, const char *name)
512 const mon_cmd_t *cmd;
514 for(cmd = cmds; cmd->name != NULL; cmd++) {
515 if (!name || !strcmp(name, cmd->name))
516 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
517 cmd->params, cmd->help);
521 static void help_cmd(Monitor *mon, const char *name)
523 if (name && !strcmp(name, "info")) {
524 help_cmd_dump(mon, info_cmds, "info ", NULL);
525 } else {
526 help_cmd_dump(mon, mon_cmds, "", name);
527 if (name && !strcmp(name, "log")) {
528 const CPULogItem *item;
529 monitor_printf(mon, "Log items (comma separated):\n");
530 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
531 for(item = cpu_log_items; item->mask != 0; item++) {
532 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
538 static void do_help_cmd(Monitor *mon, const QDict *qdict)
540 help_cmd(mon, qdict_get_try_str(qdict, "name"));
543 static void user_monitor_complete(void *opaque, QObject *ret_data)
545 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
547 if (ret_data) {
548 data->user_print(data->mon, ret_data);
550 monitor_resume(data->mon);
551 qemu_free(data);
554 static void qmp_monitor_complete(void *opaque, QObject *ret_data)
556 monitor_protocol_emitter(opaque, ret_data);
559 static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
560 const QDict *params)
562 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
565 static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
567 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
570 static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
571 const QDict *params)
573 int ret;
575 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
576 cb_data->mon = mon;
577 cb_data->user_print = cmd->user_print;
578 monitor_suspend(mon);
579 ret = cmd->mhandler.cmd_async(mon, params,
580 user_monitor_complete, cb_data);
581 if (ret < 0) {
582 monitor_resume(mon);
583 qemu_free(cb_data);
587 static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
589 int ret;
591 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
592 cb_data->mon = mon;
593 cb_data->user_print = cmd->user_print;
594 monitor_suspend(mon);
595 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
596 if (ret < 0) {
597 monitor_resume(mon);
598 qemu_free(cb_data);
602 static int do_info(Monitor *mon, const QDict *qdict, QObject **ret_data)
604 const mon_cmd_t *cmd;
605 const char *item = qdict_get_try_str(qdict, "item");
607 if (!item) {
608 assert(monitor_ctrl_mode(mon) == 0);
609 goto help;
612 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
613 if (compare_cmd(item, cmd->name))
614 break;
617 if (cmd->name == NULL) {
618 if (monitor_ctrl_mode(mon)) {
619 qerror_report(QERR_COMMAND_NOT_FOUND, item);
620 return -1;
622 goto help;
625 if (monitor_ctrl_mode(mon) && monitor_cmd_user_only(cmd)) {
626 qerror_report(QERR_COMMAND_NOT_FOUND, item);
627 return -1;
630 if (monitor_handler_is_async(cmd)) {
631 if (monitor_ctrl_mode(mon)) {
632 qmp_async_info_handler(mon, cmd);
633 } else {
634 user_async_info_handler(mon, cmd);
637 * Indicate that this command is asynchronous and will not return any
638 * data (not even empty). Instead, the data will be returned via a
639 * completion callback.
641 *ret_data = qobject_from_jsonf("{ '__mon_async': 'return' }");
642 } else if (monitor_handler_ported(cmd)) {
643 cmd->mhandler.info_new(mon, ret_data);
645 if (!monitor_ctrl_mode(mon)) {
647 * User Protocol function is called here, Monitor Protocol is
648 * handled by monitor_call_handler()
650 if (*ret_data)
651 cmd->user_print(mon, *ret_data);
653 } else {
654 if (monitor_ctrl_mode(mon)) {
655 /* handler not converted yet */
656 qerror_report(QERR_COMMAND_NOT_FOUND, item);
657 return -1;
658 } else {
659 cmd->mhandler.info(mon);
663 return 0;
665 help:
666 help_cmd(mon, "info");
667 return 0;
670 static void do_info_version_print(Monitor *mon, const QObject *data)
672 QDict *qdict;
674 qdict = qobject_to_qdict(data);
676 monitor_printf(mon, "%s%s\n", qdict_get_str(qdict, "qemu"),
677 qdict_get_str(qdict, "package"));
680 static void do_info_version(Monitor *mon, QObject **ret_data)
682 *ret_data = qobject_from_jsonf("{ 'qemu': %s, 'package': %s }",
683 QEMU_VERSION, QEMU_PKGVERSION);
686 static void do_info_name_print(Monitor *mon, const QObject *data)
688 QDict *qdict;
690 qdict = qobject_to_qdict(data);
691 if (qdict_size(qdict) == 0) {
692 return;
695 monitor_printf(mon, "%s\n", qdict_get_str(qdict, "name"));
698 static void do_info_name(Monitor *mon, QObject **ret_data)
700 *ret_data = qemu_name ? qobject_from_jsonf("{'name': %s }", qemu_name) :
701 qobject_from_jsonf("{}");
704 static QObject *get_cmd_dict(const char *name)
706 const char *p;
708 /* Remove '|' from some commands */
709 p = strchr(name, '|');
710 if (p) {
711 p++;
712 } else {
713 p = name;
716 return qobject_from_jsonf("{ 'name': %s }", p);
719 static void do_info_commands(Monitor *mon, QObject **ret_data)
721 QList *cmd_list;
722 const mon_cmd_t *cmd;
724 cmd_list = qlist_new();
726 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
727 if (monitor_handler_ported(cmd) && !monitor_cmd_user_only(cmd) &&
728 !compare_cmd(cmd->name, "info")) {
729 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
733 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
734 if (monitor_handler_ported(cmd) && !monitor_cmd_user_only(cmd)) {
735 char buf[128];
736 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
737 qlist_append_obj(cmd_list, get_cmd_dict(buf));
741 *ret_data = QOBJECT(cmd_list);
744 static void do_info_uuid_print(Monitor *mon, const QObject *data)
746 monitor_printf(mon, "%s\n", qdict_get_str(qobject_to_qdict(data), "UUID"));
749 static void do_info_uuid(Monitor *mon, QObject **ret_data)
751 char uuid[64];
753 snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1],
754 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
755 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
756 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
757 qemu_uuid[14], qemu_uuid[15]);
758 *ret_data = qobject_from_jsonf("{ 'UUID': %s }", uuid);
761 /* get the current CPU defined by the user */
762 static int mon_set_cpu(int cpu_index)
764 CPUState *env;
766 for(env = first_cpu; env != NULL; env = env->next_cpu) {
767 if (env->cpu_index == cpu_index) {
768 cur_mon->mon_cpu = env;
769 return 0;
772 return -1;
775 static CPUState *mon_get_cpu(void)
777 if (!cur_mon->mon_cpu) {
778 mon_set_cpu(0);
780 cpu_synchronize_state(cur_mon->mon_cpu);
781 return cur_mon->mon_cpu;
784 static void do_info_registers(Monitor *mon)
786 CPUState *env;
787 env = mon_get_cpu();
788 #ifdef TARGET_I386
789 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
790 X86_DUMP_FPU);
791 #else
792 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
794 #endif
797 static void print_cpu_iter(QObject *obj, void *opaque)
799 QDict *cpu;
800 int active = ' ';
801 Monitor *mon = opaque;
803 assert(qobject_type(obj) == QTYPE_QDICT);
804 cpu = qobject_to_qdict(obj);
806 if (qdict_get_bool(cpu, "current")) {
807 active = '*';
810 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
812 #if defined(TARGET_I386)
813 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
814 (target_ulong) qdict_get_int(cpu, "pc"));
815 #elif defined(TARGET_PPC)
816 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
817 (target_long) qdict_get_int(cpu, "nip"));
818 #elif defined(TARGET_SPARC)
819 monitor_printf(mon, "pc=0x " TARGET_FMT_lx,
820 (target_long) qdict_get_int(cpu, "pc"));
821 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
822 (target_long) qdict_get_int(cpu, "npc"));
823 #elif defined(TARGET_MIPS)
824 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
825 (target_long) qdict_get_int(cpu, "PC"));
826 #endif
828 if (qdict_get_bool(cpu, "halted")) {
829 monitor_printf(mon, " (halted)");
832 monitor_printf(mon, " thread_id=%" PRId64 " ",
833 qdict_get_int(cpu, "thread_id"));
835 monitor_printf(mon, "\n");
838 static void monitor_print_cpus(Monitor *mon, const QObject *data)
840 QList *cpu_list;
842 assert(qobject_type(data) == QTYPE_QLIST);
843 cpu_list = qobject_to_qlist(data);
844 qlist_iter(cpu_list, print_cpu_iter, mon);
847 static void do_info_cpus(Monitor *mon, QObject **ret_data)
849 CPUState *env;
850 QList *cpu_list;
852 cpu_list = qlist_new();
854 /* just to set the default cpu if not already done */
855 mon_get_cpu();
857 for(env = first_cpu; env != NULL; env = env->next_cpu) {
858 QDict *cpu;
859 QObject *obj;
861 cpu_synchronize_state(env);
863 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
864 env->cpu_index, env == mon->mon_cpu,
865 env->halted);
867 cpu = qobject_to_qdict(obj);
869 #if defined(TARGET_I386)
870 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
871 #elif defined(TARGET_PPC)
872 qdict_put(cpu, "nip", qint_from_int(env->nip));
873 #elif defined(TARGET_SPARC)
874 qdict_put(cpu, "pc", qint_from_int(env->pc));
875 qdict_put(cpu, "npc", qint_from_int(env->npc));
876 #elif defined(TARGET_MIPS)
877 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
878 #endif
879 qdict_put(cpu, "thread_id", qint_from_int(env->thread_id));
881 qlist_append(cpu_list, cpu);
884 *ret_data = QOBJECT(cpu_list);
887 static int do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
889 int index = qdict_get_int(qdict, "index");
890 if (mon_set_cpu(index) < 0) {
891 qerror_report(QERR_INVALID_PARAMETER_VALUE, "index",
892 "a CPU number");
893 return -1;
895 return 0;
898 static void do_cpu_set_nr(Monitor *mon, const QDict *qdict)
900 int state, value;
901 const char *status;
903 status = qdict_get_str(qdict, "state");
904 value = qdict_get_int(qdict, "cpu");
906 if (!strcmp(status, "online"))
907 state = 1;
908 else if (!strcmp(status, "offline"))
909 state = 0;
910 else {
911 monitor_printf(mon, "invalid status: %s\n", status);
912 return;
914 #if defined(TARGET_I386) || defined(TARGET_X86_64)
915 qemu_system_cpu_hot_add(value, state);
916 #endif
919 static void do_info_jit(Monitor *mon)
921 dump_exec_info((FILE *)mon, monitor_fprintf);
924 static void do_info_history(Monitor *mon)
926 int i;
927 const char *str;
929 if (!mon->rs)
930 return;
931 i = 0;
932 for(;;) {
933 str = readline_get_history(mon->rs, i);
934 if (!str)
935 break;
936 monitor_printf(mon, "%d: '%s'\n", i, str);
937 i++;
941 #if defined(TARGET_PPC)
942 /* XXX: not implemented in other targets */
943 static void do_info_cpu_stats(Monitor *mon)
945 CPUState *env;
947 env = mon_get_cpu();
948 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
950 #endif
953 * do_quit(): Quit QEMU execution
955 static int do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
957 monitor_suspend(mon);
958 no_shutdown = 0;
959 qemu_system_shutdown_request();
961 return 0;
964 static int change_vnc_password(const char *password)
966 if (vnc_display_password(NULL, password) < 0) {
967 qerror_report(QERR_SET_PASSWD_FAILED);
968 return -1;
971 return 0;
974 static void change_vnc_password_cb(Monitor *mon, const char *password,
975 void *opaque)
977 change_vnc_password(password);
978 monitor_read_command(mon, 1);
981 static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
983 if (strcmp(target, "passwd") == 0 ||
984 strcmp(target, "password") == 0) {
985 if (arg) {
986 char password[9];
987 strncpy(password, arg, sizeof(password));
988 password[sizeof(password) - 1] = '\0';
989 return change_vnc_password(password);
990 } else {
991 return monitor_read_password(mon, change_vnc_password_cb, NULL);
993 } else {
994 if (vnc_display_open(NULL, target) < 0) {
995 qerror_report(QERR_VNC_SERVER_FAILED, target);
996 return -1;
1000 return 0;
1004 * do_change(): Change a removable medium, or VNC configuration
1006 static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
1008 const char *device = qdict_get_str(qdict, "device");
1009 const char *target = qdict_get_str(qdict, "target");
1010 const char *arg = qdict_get_try_str(qdict, "arg");
1011 int ret;
1013 if (strcmp(device, "vnc") == 0) {
1014 ret = do_change_vnc(mon, target, arg);
1015 } else {
1016 ret = do_change_block(mon, device, target, arg);
1019 return ret;
1022 static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
1024 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
1025 return 0;
1028 static void do_logfile(Monitor *mon, const QDict *qdict)
1030 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
1033 static void do_log(Monitor *mon, const QDict *qdict)
1035 int mask;
1036 const char *items = qdict_get_str(qdict, "items");
1038 if (!strcmp(items, "none")) {
1039 mask = 0;
1040 } else {
1041 mask = cpu_str_to_log_mask(items);
1042 if (!mask) {
1043 help_cmd(mon, "log");
1044 return;
1047 cpu_set_log(mask);
1050 static void do_singlestep(Monitor *mon, const QDict *qdict)
1052 const char *option = qdict_get_try_str(qdict, "option");
1053 if (!option || !strcmp(option, "on")) {
1054 singlestep = 1;
1055 } else if (!strcmp(option, "off")) {
1056 singlestep = 0;
1057 } else {
1058 monitor_printf(mon, "unexpected option %s\n", option);
1063 * do_stop(): Stop VM execution
1065 static int do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
1067 vm_stop(EXCP_INTERRUPT);
1068 return 0;
1071 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
1073 struct bdrv_iterate_context {
1074 Monitor *mon;
1075 int err;
1079 * do_cont(): Resume emulation.
1081 static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
1083 struct bdrv_iterate_context context = { mon, 0 };
1085 bdrv_iterate(encrypted_bdrv_it, &context);
1086 /* only resume the vm if all keys are set and valid */
1087 if (!context.err) {
1088 vm_start();
1089 return 0;
1090 } else {
1091 return -1;
1095 static void bdrv_key_cb(void *opaque, int err)
1097 Monitor *mon = opaque;
1099 /* another key was set successfully, retry to continue */
1100 if (!err)
1101 do_cont(mon, NULL, NULL);
1104 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1106 struct bdrv_iterate_context *context = opaque;
1108 if (!context->err && bdrv_key_required(bs)) {
1109 context->err = -EBUSY;
1110 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1111 context->mon);
1115 static void do_gdbserver(Monitor *mon, const QDict *qdict)
1117 const char *device = qdict_get_try_str(qdict, "device");
1118 if (!device)
1119 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1120 if (gdbserver_start(device) < 0) {
1121 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1122 device);
1123 } else if (strcmp(device, "none") == 0) {
1124 monitor_printf(mon, "Disabled gdbserver\n");
1125 } else {
1126 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1127 device);
1131 static void do_watchdog_action(Monitor *mon, const QDict *qdict)
1133 const char *action = qdict_get_str(qdict, "action");
1134 if (select_watchdog_action(action) == -1) {
1135 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1139 static void monitor_printc(Monitor *mon, int c)
1141 monitor_printf(mon, "'");
1142 switch(c) {
1143 case '\'':
1144 monitor_printf(mon, "\\'");
1145 break;
1146 case '\\':
1147 monitor_printf(mon, "\\\\");
1148 break;
1149 case '\n':
1150 monitor_printf(mon, "\\n");
1151 break;
1152 case '\r':
1153 monitor_printf(mon, "\\r");
1154 break;
1155 default:
1156 if (c >= 32 && c <= 126) {
1157 monitor_printf(mon, "%c", c);
1158 } else {
1159 monitor_printf(mon, "\\x%02x", c);
1161 break;
1163 monitor_printf(mon, "'");
1166 static void memory_dump(Monitor *mon, int count, int format, int wsize,
1167 target_phys_addr_t addr, int is_physical)
1169 CPUState *env;
1170 int l, line_size, i, max_digits, len;
1171 uint8_t buf[16];
1172 uint64_t v;
1174 if (format == 'i') {
1175 int flags;
1176 flags = 0;
1177 env = mon_get_cpu();
1178 #ifdef TARGET_I386
1179 if (wsize == 2) {
1180 flags = 1;
1181 } else if (wsize == 4) {
1182 flags = 0;
1183 } else {
1184 /* as default we use the current CS size */
1185 flags = 0;
1186 if (env) {
1187 #ifdef TARGET_X86_64
1188 if ((env->efer & MSR_EFER_LMA) &&
1189 (env->segs[R_CS].flags & DESC_L_MASK))
1190 flags = 2;
1191 else
1192 #endif
1193 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1194 flags = 1;
1197 #endif
1198 monitor_disas(mon, env, addr, count, is_physical, flags);
1199 return;
1202 len = wsize * count;
1203 if (wsize == 1)
1204 line_size = 8;
1205 else
1206 line_size = 16;
1207 max_digits = 0;
1209 switch(format) {
1210 case 'o':
1211 max_digits = (wsize * 8 + 2) / 3;
1212 break;
1213 default:
1214 case 'x':
1215 max_digits = (wsize * 8) / 4;
1216 break;
1217 case 'u':
1218 case 'd':
1219 max_digits = (wsize * 8 * 10 + 32) / 33;
1220 break;
1221 case 'c':
1222 wsize = 1;
1223 break;
1226 while (len > 0) {
1227 if (is_physical)
1228 monitor_printf(mon, TARGET_FMT_plx ":", addr);
1229 else
1230 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
1231 l = len;
1232 if (l > line_size)
1233 l = line_size;
1234 if (is_physical) {
1235 cpu_physical_memory_rw(addr, buf, l, 0);
1236 } else {
1237 env = mon_get_cpu();
1238 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
1239 monitor_printf(mon, " Cannot access memory\n");
1240 break;
1243 i = 0;
1244 while (i < l) {
1245 switch(wsize) {
1246 default:
1247 case 1:
1248 v = ldub_raw(buf + i);
1249 break;
1250 case 2:
1251 v = lduw_raw(buf + i);
1252 break;
1253 case 4:
1254 v = (uint32_t)ldl_raw(buf + i);
1255 break;
1256 case 8:
1257 v = ldq_raw(buf + i);
1258 break;
1260 monitor_printf(mon, " ");
1261 switch(format) {
1262 case 'o':
1263 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
1264 break;
1265 case 'x':
1266 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
1267 break;
1268 case 'u':
1269 monitor_printf(mon, "%*" PRIu64, max_digits, v);
1270 break;
1271 case 'd':
1272 monitor_printf(mon, "%*" PRId64, max_digits, v);
1273 break;
1274 case 'c':
1275 monitor_printc(mon, v);
1276 break;
1278 i += wsize;
1280 monitor_printf(mon, "\n");
1281 addr += l;
1282 len -= l;
1286 static void do_memory_dump(Monitor *mon, const QDict *qdict)
1288 int count = qdict_get_int(qdict, "count");
1289 int format = qdict_get_int(qdict, "format");
1290 int size = qdict_get_int(qdict, "size");
1291 target_long addr = qdict_get_int(qdict, "addr");
1293 memory_dump(mon, count, format, size, addr, 0);
1296 static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
1298 int count = qdict_get_int(qdict, "count");
1299 int format = qdict_get_int(qdict, "format");
1300 int size = qdict_get_int(qdict, "size");
1301 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
1303 memory_dump(mon, count, format, size, addr, 1);
1306 static void do_print(Monitor *mon, const QDict *qdict)
1308 int format = qdict_get_int(qdict, "format");
1309 target_phys_addr_t val = qdict_get_int(qdict, "val");
1311 #if TARGET_PHYS_ADDR_BITS == 32
1312 switch(format) {
1313 case 'o':
1314 monitor_printf(mon, "%#o", val);
1315 break;
1316 case 'x':
1317 monitor_printf(mon, "%#x", val);
1318 break;
1319 case 'u':
1320 monitor_printf(mon, "%u", val);
1321 break;
1322 default:
1323 case 'd':
1324 monitor_printf(mon, "%d", val);
1325 break;
1326 case 'c':
1327 monitor_printc(mon, val);
1328 break;
1330 #else
1331 switch(format) {
1332 case 'o':
1333 monitor_printf(mon, "%#" PRIo64, val);
1334 break;
1335 case 'x':
1336 monitor_printf(mon, "%#" PRIx64, val);
1337 break;
1338 case 'u':
1339 monitor_printf(mon, "%" PRIu64, val);
1340 break;
1341 default:
1342 case 'd':
1343 monitor_printf(mon, "%" PRId64, val);
1344 break;
1345 case 'c':
1346 monitor_printc(mon, val);
1347 break;
1349 #endif
1350 monitor_printf(mon, "\n");
1353 static int do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
1355 FILE *f;
1356 uint32_t size = qdict_get_int(qdict, "size");
1357 const char *filename = qdict_get_str(qdict, "filename");
1358 target_long addr = qdict_get_int(qdict, "val");
1359 uint32_t l;
1360 CPUState *env;
1361 uint8_t buf[1024];
1362 int ret = -1;
1364 env = mon_get_cpu();
1366 f = fopen(filename, "wb");
1367 if (!f) {
1368 qerror_report(QERR_OPEN_FILE_FAILED, filename);
1369 return -1;
1371 while (size != 0) {
1372 l = sizeof(buf);
1373 if (l > size)
1374 l = size;
1375 cpu_memory_rw_debug(env, addr, buf, l, 0);
1376 if (fwrite(buf, 1, l, f) != l) {
1377 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1378 goto exit;
1380 addr += l;
1381 size -= l;
1384 ret = 0;
1386 exit:
1387 fclose(f);
1388 return ret;
1391 static int do_physical_memory_save(Monitor *mon, const QDict *qdict,
1392 QObject **ret_data)
1394 FILE *f;
1395 uint32_t l;
1396 uint8_t buf[1024];
1397 uint32_t size = qdict_get_int(qdict, "size");
1398 const char *filename = qdict_get_str(qdict, "filename");
1399 target_phys_addr_t addr = qdict_get_int(qdict, "val");
1400 int ret = -1;
1402 f = fopen(filename, "wb");
1403 if (!f) {
1404 qerror_report(QERR_OPEN_FILE_FAILED, filename);
1405 return -1;
1407 while (size != 0) {
1408 l = sizeof(buf);
1409 if (l > size)
1410 l = size;
1411 cpu_physical_memory_rw(addr, buf, l, 0);
1412 if (fwrite(buf, 1, l, f) != l) {
1413 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1414 goto exit;
1416 fflush(f);
1417 addr += l;
1418 size -= l;
1421 ret = 0;
1423 exit:
1424 fclose(f);
1425 return ret;
1428 static void do_sum(Monitor *mon, const QDict *qdict)
1430 uint32_t addr;
1431 uint8_t buf[1];
1432 uint16_t sum;
1433 uint32_t start = qdict_get_int(qdict, "start");
1434 uint32_t size = qdict_get_int(qdict, "size");
1436 sum = 0;
1437 for(addr = start; addr < (start + size); addr++) {
1438 cpu_physical_memory_rw(addr, buf, 1, 0);
1439 /* BSD sum algorithm ('sum' Unix command) */
1440 sum = (sum >> 1) | (sum << 15);
1441 sum += buf[0];
1443 monitor_printf(mon, "%05d\n", sum);
1446 typedef struct {
1447 int keycode;
1448 const char *name;
1449 } KeyDef;
1451 static const KeyDef key_defs[] = {
1452 { 0x2a, "shift" },
1453 { 0x36, "shift_r" },
1455 { 0x38, "alt" },
1456 { 0xb8, "alt_r" },
1457 { 0x64, "altgr" },
1458 { 0xe4, "altgr_r" },
1459 { 0x1d, "ctrl" },
1460 { 0x9d, "ctrl_r" },
1462 { 0xdd, "menu" },
1464 { 0x01, "esc" },
1466 { 0x02, "1" },
1467 { 0x03, "2" },
1468 { 0x04, "3" },
1469 { 0x05, "4" },
1470 { 0x06, "5" },
1471 { 0x07, "6" },
1472 { 0x08, "7" },
1473 { 0x09, "8" },
1474 { 0x0a, "9" },
1475 { 0x0b, "0" },
1476 { 0x0c, "minus" },
1477 { 0x0d, "equal" },
1478 { 0x0e, "backspace" },
1480 { 0x0f, "tab" },
1481 { 0x10, "q" },
1482 { 0x11, "w" },
1483 { 0x12, "e" },
1484 { 0x13, "r" },
1485 { 0x14, "t" },
1486 { 0x15, "y" },
1487 { 0x16, "u" },
1488 { 0x17, "i" },
1489 { 0x18, "o" },
1490 { 0x19, "p" },
1491 { 0x1a, "bracket_left" },
1492 { 0x1b, "bracket_right" },
1493 { 0x1c, "ret" },
1495 { 0x1e, "a" },
1496 { 0x1f, "s" },
1497 { 0x20, "d" },
1498 { 0x21, "f" },
1499 { 0x22, "g" },
1500 { 0x23, "h" },
1501 { 0x24, "j" },
1502 { 0x25, "k" },
1503 { 0x26, "l" },
1504 { 0x27, "semicolon" },
1505 { 0x28, "apostrophe" },
1506 { 0x29, "grave_accent" },
1508 { 0x2b, "backslash" },
1509 { 0x2c, "z" },
1510 { 0x2d, "x" },
1511 { 0x2e, "c" },
1512 { 0x2f, "v" },
1513 { 0x30, "b" },
1514 { 0x31, "n" },
1515 { 0x32, "m" },
1516 { 0x33, "comma" },
1517 { 0x34, "dot" },
1518 { 0x35, "slash" },
1520 { 0x37, "asterisk" },
1522 { 0x39, "spc" },
1523 { 0x3a, "caps_lock" },
1524 { 0x3b, "f1" },
1525 { 0x3c, "f2" },
1526 { 0x3d, "f3" },
1527 { 0x3e, "f4" },
1528 { 0x3f, "f5" },
1529 { 0x40, "f6" },
1530 { 0x41, "f7" },
1531 { 0x42, "f8" },
1532 { 0x43, "f9" },
1533 { 0x44, "f10" },
1534 { 0x45, "num_lock" },
1535 { 0x46, "scroll_lock" },
1537 { 0xb5, "kp_divide" },
1538 { 0x37, "kp_multiply" },
1539 { 0x4a, "kp_subtract" },
1540 { 0x4e, "kp_add" },
1541 { 0x9c, "kp_enter" },
1542 { 0x53, "kp_decimal" },
1543 { 0x54, "sysrq" },
1545 { 0x52, "kp_0" },
1546 { 0x4f, "kp_1" },
1547 { 0x50, "kp_2" },
1548 { 0x51, "kp_3" },
1549 { 0x4b, "kp_4" },
1550 { 0x4c, "kp_5" },
1551 { 0x4d, "kp_6" },
1552 { 0x47, "kp_7" },
1553 { 0x48, "kp_8" },
1554 { 0x49, "kp_9" },
1556 { 0x56, "<" },
1558 { 0x57, "f11" },
1559 { 0x58, "f12" },
1561 { 0xb7, "print" },
1563 { 0xc7, "home" },
1564 { 0xc9, "pgup" },
1565 { 0xd1, "pgdn" },
1566 { 0xcf, "end" },
1568 { 0xcb, "left" },
1569 { 0xc8, "up" },
1570 { 0xd0, "down" },
1571 { 0xcd, "right" },
1573 { 0xd2, "insert" },
1574 { 0xd3, "delete" },
1575 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1576 { 0xf0, "stop" },
1577 { 0xf1, "again" },
1578 { 0xf2, "props" },
1579 { 0xf3, "undo" },
1580 { 0xf4, "front" },
1581 { 0xf5, "copy" },
1582 { 0xf6, "open" },
1583 { 0xf7, "paste" },
1584 { 0xf8, "find" },
1585 { 0xf9, "cut" },
1586 { 0xfa, "lf" },
1587 { 0xfb, "help" },
1588 { 0xfc, "meta_l" },
1589 { 0xfd, "meta_r" },
1590 { 0xfe, "compose" },
1591 #endif
1592 { 0, NULL },
1595 static int get_keycode(const char *key)
1597 const KeyDef *p;
1598 char *endp;
1599 int ret;
1601 for(p = key_defs; p->name != NULL; p++) {
1602 if (!strcmp(key, p->name))
1603 return p->keycode;
1605 if (strstart(key, "0x", NULL)) {
1606 ret = strtoul(key, &endp, 0);
1607 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1608 return ret;
1610 return -1;
1613 #define MAX_KEYCODES 16
1614 static uint8_t keycodes[MAX_KEYCODES];
1615 static int nb_pending_keycodes;
1616 static QEMUTimer *key_timer;
1618 static void release_keys(void *opaque)
1620 int keycode;
1622 while (nb_pending_keycodes > 0) {
1623 nb_pending_keycodes--;
1624 keycode = keycodes[nb_pending_keycodes];
1625 if (keycode & 0x80)
1626 kbd_put_keycode(0xe0);
1627 kbd_put_keycode(keycode | 0x80);
1631 static void do_sendkey(Monitor *mon, const QDict *qdict)
1633 char keyname_buf[16];
1634 char *separator;
1635 int keyname_len, keycode, i;
1636 const char *string = qdict_get_str(qdict, "string");
1637 int has_hold_time = qdict_haskey(qdict, "hold_time");
1638 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
1640 if (nb_pending_keycodes > 0) {
1641 qemu_del_timer(key_timer);
1642 release_keys(NULL);
1644 if (!has_hold_time)
1645 hold_time = 100;
1646 i = 0;
1647 while (1) {
1648 separator = strchr(string, '-');
1649 keyname_len = separator ? separator - string : strlen(string);
1650 if (keyname_len > 0) {
1651 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1652 if (keyname_len > sizeof(keyname_buf) - 1) {
1653 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
1654 return;
1656 if (i == MAX_KEYCODES) {
1657 monitor_printf(mon, "too many keys\n");
1658 return;
1660 keyname_buf[keyname_len] = 0;
1661 keycode = get_keycode(keyname_buf);
1662 if (keycode < 0) {
1663 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
1664 return;
1666 keycodes[i++] = keycode;
1668 if (!separator)
1669 break;
1670 string = separator + 1;
1672 nb_pending_keycodes = i;
1673 /* key down events */
1674 for (i = 0; i < nb_pending_keycodes; i++) {
1675 keycode = keycodes[i];
1676 if (keycode & 0x80)
1677 kbd_put_keycode(0xe0);
1678 kbd_put_keycode(keycode & 0x7f);
1680 /* delayed key up events */
1681 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
1682 muldiv64(get_ticks_per_sec(), hold_time, 1000));
1685 static int mouse_button_state;
1687 static void do_mouse_move(Monitor *mon, const QDict *qdict)
1689 int dx, dy, dz;
1690 const char *dx_str = qdict_get_str(qdict, "dx_str");
1691 const char *dy_str = qdict_get_str(qdict, "dy_str");
1692 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1693 dx = strtol(dx_str, NULL, 0);
1694 dy = strtol(dy_str, NULL, 0);
1695 dz = 0;
1696 if (dz_str)
1697 dz = strtol(dz_str, NULL, 0);
1698 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1701 static void do_mouse_button(Monitor *mon, const QDict *qdict)
1703 int button_state = qdict_get_int(qdict, "button_state");
1704 mouse_button_state = button_state;
1705 kbd_mouse_event(0, 0, 0, mouse_button_state);
1708 static void do_ioport_read(Monitor *mon, const QDict *qdict)
1710 int size = qdict_get_int(qdict, "size");
1711 int addr = qdict_get_int(qdict, "addr");
1712 int has_index = qdict_haskey(qdict, "index");
1713 uint32_t val;
1714 int suffix;
1716 if (has_index) {
1717 int index = qdict_get_int(qdict, "index");
1718 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
1719 addr++;
1721 addr &= 0xffff;
1723 switch(size) {
1724 default:
1725 case 1:
1726 val = cpu_inb(addr);
1727 suffix = 'b';
1728 break;
1729 case 2:
1730 val = cpu_inw(addr);
1731 suffix = 'w';
1732 break;
1733 case 4:
1734 val = cpu_inl(addr);
1735 suffix = 'l';
1736 break;
1738 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1739 suffix, addr, size * 2, val);
1742 static void do_ioport_write(Monitor *mon, const QDict *qdict)
1744 int size = qdict_get_int(qdict, "size");
1745 int addr = qdict_get_int(qdict, "addr");
1746 int val = qdict_get_int(qdict, "val");
1748 addr &= IOPORTS_MASK;
1750 switch (size) {
1751 default:
1752 case 1:
1753 cpu_outb(addr, val);
1754 break;
1755 case 2:
1756 cpu_outw(addr, val);
1757 break;
1758 case 4:
1759 cpu_outl(addr, val);
1760 break;
1764 static void do_boot_set(Monitor *mon, const QDict *qdict)
1766 int res;
1767 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1769 res = qemu_boot_set(bootdevice);
1770 if (res == 0) {
1771 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1772 } else if (res > 0) {
1773 monitor_printf(mon, "setting boot device list failed\n");
1774 } else {
1775 monitor_printf(mon, "no function defined to set boot device list for "
1776 "this architecture\n");
1781 * do_system_reset(): Issue a machine reset
1783 static int do_system_reset(Monitor *mon, const QDict *qdict,
1784 QObject **ret_data)
1786 qemu_system_reset_request();
1787 return 0;
1791 * do_system_powerdown(): Issue a machine powerdown
1793 static int do_system_powerdown(Monitor *mon, const QDict *qdict,
1794 QObject **ret_data)
1796 qemu_system_powerdown_request();
1797 return 0;
1800 #if defined(TARGET_I386)
1801 static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
1803 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1804 addr,
1805 pte & mask,
1806 pte & PG_GLOBAL_MASK ? 'G' : '-',
1807 pte & PG_PSE_MASK ? 'P' : '-',
1808 pte & PG_DIRTY_MASK ? 'D' : '-',
1809 pte & PG_ACCESSED_MASK ? 'A' : '-',
1810 pte & PG_PCD_MASK ? 'C' : '-',
1811 pte & PG_PWT_MASK ? 'T' : '-',
1812 pte & PG_USER_MASK ? 'U' : '-',
1813 pte & PG_RW_MASK ? 'W' : '-');
1816 static void tlb_info(Monitor *mon)
1818 CPUState *env;
1819 int l1, l2;
1820 uint32_t pgd, pde, pte;
1822 env = mon_get_cpu();
1824 if (!(env->cr[0] & CR0_PG_MASK)) {
1825 monitor_printf(mon, "PG disabled\n");
1826 return;
1828 pgd = env->cr[3] & ~0xfff;
1829 for(l1 = 0; l1 < 1024; l1++) {
1830 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1831 pde = le32_to_cpu(pde);
1832 if (pde & PG_PRESENT_MASK) {
1833 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1834 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
1835 } else {
1836 for(l2 = 0; l2 < 1024; l2++) {
1837 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
1838 (uint8_t *)&pte, 4);
1839 pte = le32_to_cpu(pte);
1840 if (pte & PG_PRESENT_MASK) {
1841 print_pte(mon, (l1 << 22) + (l2 << 12),
1842 pte & ~PG_PSE_MASK,
1843 ~0xfff);
1851 static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
1852 uint32_t end, int prot)
1854 int prot1;
1855 prot1 = *plast_prot;
1856 if (prot != prot1) {
1857 if (*pstart != -1) {
1858 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1859 *pstart, end, end - *pstart,
1860 prot1 & PG_USER_MASK ? 'u' : '-',
1861 'r',
1862 prot1 & PG_RW_MASK ? 'w' : '-');
1864 if (prot != 0)
1865 *pstart = end;
1866 else
1867 *pstart = -1;
1868 *plast_prot = prot;
1872 static void mem_info(Monitor *mon)
1874 CPUState *env;
1875 int l1, l2, prot, last_prot;
1876 uint32_t pgd, pde, pte, start, end;
1878 env = mon_get_cpu();
1880 if (!(env->cr[0] & CR0_PG_MASK)) {
1881 monitor_printf(mon, "PG disabled\n");
1882 return;
1884 pgd = env->cr[3] & ~0xfff;
1885 last_prot = 0;
1886 start = -1;
1887 for(l1 = 0; l1 < 1024; l1++) {
1888 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1889 pde = le32_to_cpu(pde);
1890 end = l1 << 22;
1891 if (pde & PG_PRESENT_MASK) {
1892 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1893 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1894 mem_print(mon, &start, &last_prot, end, prot);
1895 } else {
1896 for(l2 = 0; l2 < 1024; l2++) {
1897 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
1898 (uint8_t *)&pte, 4);
1899 pte = le32_to_cpu(pte);
1900 end = (l1 << 22) + (l2 << 12);
1901 if (pte & PG_PRESENT_MASK) {
1902 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1903 } else {
1904 prot = 0;
1906 mem_print(mon, &start, &last_prot, end, prot);
1909 } else {
1910 prot = 0;
1911 mem_print(mon, &start, &last_prot, end, prot);
1915 #endif
1917 #if defined(TARGET_SH4)
1919 static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
1921 monitor_printf(mon, " tlb%i:\t"
1922 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1923 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1924 "dirty=%hhu writethrough=%hhu\n",
1925 idx,
1926 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1927 tlb->v, tlb->sh, tlb->c, tlb->pr,
1928 tlb->d, tlb->wt);
1931 static void tlb_info(Monitor *mon)
1933 CPUState *env = mon_get_cpu();
1934 int i;
1936 monitor_printf (mon, "ITLB:\n");
1937 for (i = 0 ; i < ITLB_SIZE ; i++)
1938 print_tlb (mon, i, &env->itlb[i]);
1939 monitor_printf (mon, "UTLB:\n");
1940 for (i = 0 ; i < UTLB_SIZE ; i++)
1941 print_tlb (mon, i, &env->utlb[i]);
1944 #endif
1946 static void do_info_kvm_print(Monitor *mon, const QObject *data)
1948 QDict *qdict;
1950 qdict = qobject_to_qdict(data);
1952 monitor_printf(mon, "kvm support: ");
1953 if (qdict_get_bool(qdict, "present")) {
1954 monitor_printf(mon, "%s\n", qdict_get_bool(qdict, "enabled") ?
1955 "enabled" : "disabled");
1956 } else {
1957 monitor_printf(mon, "not compiled\n");
1961 static void do_info_kvm(Monitor *mon, QObject **ret_data)
1963 #ifdef CONFIG_KVM
1964 *ret_data = qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
1965 kvm_enabled());
1966 #else
1967 *ret_data = qobject_from_jsonf("{ 'enabled': false, 'present': false }");
1968 #endif
1971 static void do_info_numa(Monitor *mon)
1973 int i;
1974 CPUState *env;
1976 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1977 for (i = 0; i < nb_numa_nodes; i++) {
1978 monitor_printf(mon, "node %d cpus:", i);
1979 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1980 if (env->numa_node == i) {
1981 monitor_printf(mon, " %d", env->cpu_index);
1984 monitor_printf(mon, "\n");
1985 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1986 node_mem[i] >> 20);
1990 #ifdef CONFIG_PROFILER
1992 int64_t qemu_time;
1993 int64_t dev_time;
1995 static void do_info_profile(Monitor *mon)
1997 int64_t total;
1998 total = qemu_time;
1999 if (total == 0)
2000 total = 1;
2001 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
2002 dev_time, dev_time / (double)get_ticks_per_sec());
2003 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
2004 qemu_time, qemu_time / (double)get_ticks_per_sec());
2005 qemu_time = 0;
2006 dev_time = 0;
2008 #else
2009 static void do_info_profile(Monitor *mon)
2011 monitor_printf(mon, "Internal profiler not compiled\n");
2013 #endif
2015 /* Capture support */
2016 static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
2018 static void do_info_capture(Monitor *mon)
2020 int i;
2021 CaptureState *s;
2023 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2024 monitor_printf(mon, "[%d]: ", i);
2025 s->ops.info (s->opaque);
2029 #ifdef HAS_AUDIO
2030 static void do_stop_capture(Monitor *mon, const QDict *qdict)
2032 int i;
2033 int n = qdict_get_int(qdict, "n");
2034 CaptureState *s;
2036 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2037 if (i == n) {
2038 s->ops.destroy (s->opaque);
2039 QLIST_REMOVE (s, entries);
2040 qemu_free (s);
2041 return;
2046 static void do_wav_capture(Monitor *mon, const QDict *qdict)
2048 const char *path = qdict_get_str(qdict, "path");
2049 int has_freq = qdict_haskey(qdict, "freq");
2050 int freq = qdict_get_try_int(qdict, "freq", -1);
2051 int has_bits = qdict_haskey(qdict, "bits");
2052 int bits = qdict_get_try_int(qdict, "bits", -1);
2053 int has_channels = qdict_haskey(qdict, "nchannels");
2054 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
2055 CaptureState *s;
2057 s = qemu_mallocz (sizeof (*s));
2059 freq = has_freq ? freq : 44100;
2060 bits = has_bits ? bits : 16;
2061 nchannels = has_channels ? nchannels : 2;
2063 if (wav_start_capture (s, path, freq, bits, nchannels)) {
2064 monitor_printf(mon, "Faied to add wave capture\n");
2065 qemu_free (s);
2067 QLIST_INSERT_HEAD (&capture_head, s, entries);
2069 #endif
2071 #if defined(TARGET_I386)
2072 static void do_inject_nmi(Monitor *mon, const QDict *qdict)
2074 CPUState *env;
2075 int cpu_index = qdict_get_int(qdict, "cpu_index");
2077 for (env = first_cpu; env != NULL; env = env->next_cpu)
2078 if (env->cpu_index == cpu_index) {
2079 if (kvm_enabled())
2080 kvm_inject_interrupt(env, CPU_INTERRUPT_NMI);
2081 else
2082 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2083 break;
2086 #endif
2088 static void do_info_status_print(Monitor *mon, const QObject *data)
2090 QDict *qdict;
2092 qdict = qobject_to_qdict(data);
2094 monitor_printf(mon, "VM status: ");
2095 if (qdict_get_bool(qdict, "running")) {
2096 monitor_printf(mon, "running");
2097 if (qdict_get_bool(qdict, "singlestep")) {
2098 monitor_printf(mon, " (single step mode)");
2100 } else {
2101 monitor_printf(mon, "paused");
2104 monitor_printf(mon, "\n");
2107 static void do_info_status(Monitor *mon, QObject **ret_data)
2109 *ret_data = qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2110 vm_running, singlestep);
2113 static qemu_acl *find_acl(Monitor *mon, const char *name)
2115 qemu_acl *acl = qemu_acl_find(name);
2117 if (!acl) {
2118 monitor_printf(mon, "acl: unknown list '%s'\n", name);
2120 return acl;
2123 static void do_acl_show(Monitor *mon, const QDict *qdict)
2125 const char *aclname = qdict_get_str(qdict, "aclname");
2126 qemu_acl *acl = find_acl(mon, aclname);
2127 qemu_acl_entry *entry;
2128 int i = 0;
2130 if (acl) {
2131 monitor_printf(mon, "policy: %s\n",
2132 acl->defaultDeny ? "deny" : "allow");
2133 QTAILQ_FOREACH(entry, &acl->entries, next) {
2134 i++;
2135 monitor_printf(mon, "%d: %s %s\n", i,
2136 entry->deny ? "deny" : "allow", entry->match);
2141 static void do_acl_reset(Monitor *mon, const QDict *qdict)
2143 const char *aclname = qdict_get_str(qdict, "aclname");
2144 qemu_acl *acl = find_acl(mon, aclname);
2146 if (acl) {
2147 qemu_acl_reset(acl);
2148 monitor_printf(mon, "acl: removed all rules\n");
2152 static void do_acl_policy(Monitor *mon, const QDict *qdict)
2154 const char *aclname = qdict_get_str(qdict, "aclname");
2155 const char *policy = qdict_get_str(qdict, "policy");
2156 qemu_acl *acl = find_acl(mon, aclname);
2158 if (acl) {
2159 if (strcmp(policy, "allow") == 0) {
2160 acl->defaultDeny = 0;
2161 monitor_printf(mon, "acl: policy set to 'allow'\n");
2162 } else if (strcmp(policy, "deny") == 0) {
2163 acl->defaultDeny = 1;
2164 monitor_printf(mon, "acl: policy set to 'deny'\n");
2165 } else {
2166 monitor_printf(mon, "acl: unknown policy '%s', "
2167 "expected 'deny' or 'allow'\n", policy);
2172 static void do_acl_add(Monitor *mon, const QDict *qdict)
2174 const char *aclname = qdict_get_str(qdict, "aclname");
2175 const char *match = qdict_get_str(qdict, "match");
2176 const char *policy = qdict_get_str(qdict, "policy");
2177 int has_index = qdict_haskey(qdict, "index");
2178 int index = qdict_get_try_int(qdict, "index", -1);
2179 qemu_acl *acl = find_acl(mon, aclname);
2180 int deny, ret;
2182 if (acl) {
2183 if (strcmp(policy, "allow") == 0) {
2184 deny = 0;
2185 } else if (strcmp(policy, "deny") == 0) {
2186 deny = 1;
2187 } else {
2188 monitor_printf(mon, "acl: unknown policy '%s', "
2189 "expected 'deny' or 'allow'\n", policy);
2190 return;
2192 if (has_index)
2193 ret = qemu_acl_insert(acl, deny, match, index);
2194 else
2195 ret = qemu_acl_append(acl, deny, match);
2196 if (ret < 0)
2197 monitor_printf(mon, "acl: unable to add acl entry\n");
2198 else
2199 monitor_printf(mon, "acl: added rule at position %d\n", ret);
2203 static void do_acl_remove(Monitor *mon, const QDict *qdict)
2205 const char *aclname = qdict_get_str(qdict, "aclname");
2206 const char *match = qdict_get_str(qdict, "match");
2207 qemu_acl *acl = find_acl(mon, aclname);
2208 int ret;
2210 if (acl) {
2211 ret = qemu_acl_remove(acl, match);
2212 if (ret < 0)
2213 monitor_printf(mon, "acl: no matching acl entry\n");
2214 else
2215 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
2219 #if defined(TARGET_I386)
2220 static void do_inject_mce(Monitor *mon, const QDict *qdict)
2222 CPUState *cenv;
2223 int cpu_index = qdict_get_int(qdict, "cpu_index");
2224 int bank = qdict_get_int(qdict, "bank");
2225 uint64_t status = qdict_get_int(qdict, "status");
2226 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2227 uint64_t addr = qdict_get_int(qdict, "addr");
2228 uint64_t misc = qdict_get_int(qdict, "misc");
2230 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
2231 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
2232 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
2233 break;
2236 #endif
2238 static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2240 const char *fdname = qdict_get_str(qdict, "fdname");
2241 mon_fd_t *monfd;
2242 int fd;
2244 fd = qemu_chr_get_msgfd(mon->chr);
2245 if (fd == -1) {
2246 qerror_report(QERR_FD_NOT_SUPPLIED);
2247 return -1;
2250 if (qemu_isdigit(fdname[0])) {
2251 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2252 "a name not starting with a digit");
2253 return -1;
2256 QLIST_FOREACH(monfd, &mon->fds, next) {
2257 if (strcmp(monfd->name, fdname) != 0) {
2258 continue;
2261 close(monfd->fd);
2262 monfd->fd = fd;
2263 return 0;
2266 monfd = qemu_mallocz(sizeof(mon_fd_t));
2267 monfd->name = qemu_strdup(fdname);
2268 monfd->fd = fd;
2270 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
2271 return 0;
2274 static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2276 const char *fdname = qdict_get_str(qdict, "fdname");
2277 mon_fd_t *monfd;
2279 QLIST_FOREACH(monfd, &mon->fds, next) {
2280 if (strcmp(monfd->name, fdname) != 0) {
2281 continue;
2284 QLIST_REMOVE(monfd, next);
2285 close(monfd->fd);
2286 qemu_free(monfd->name);
2287 qemu_free(monfd);
2288 return 0;
2291 qerror_report(QERR_FD_NOT_FOUND, fdname);
2292 return -1;
2295 static void do_loadvm(Monitor *mon, const QDict *qdict)
2297 int saved_vm_running = vm_running;
2298 const char *name = qdict_get_str(qdict, "name");
2300 vm_stop(0);
2302 if (load_vmstate(name) >= 0 && saved_vm_running)
2303 vm_start();
2306 int monitor_get_fd(Monitor *mon, const char *fdname)
2308 mon_fd_t *monfd;
2310 QLIST_FOREACH(monfd, &mon->fds, next) {
2311 int fd;
2313 if (strcmp(monfd->name, fdname) != 0) {
2314 continue;
2317 fd = monfd->fd;
2319 /* caller takes ownership of fd */
2320 QLIST_REMOVE(monfd, next);
2321 qemu_free(monfd->name);
2322 qemu_free(monfd);
2324 return fd;
2327 return -1;
2330 static const mon_cmd_t mon_cmds[] = {
2331 #include "qemu-monitor.h"
2332 { NULL, NULL, },
2335 /* Please update qemu-monitor.hx when adding or changing commands */
2336 static const mon_cmd_t info_cmds[] = {
2338 .name = "version",
2339 .args_type = "",
2340 .params = "",
2341 .help = "show the version of QEMU",
2342 .user_print = do_info_version_print,
2343 .mhandler.info_new = do_info_version,
2346 .name = "commands",
2347 .args_type = "",
2348 .params = "",
2349 .help = "list QMP available commands",
2350 .user_print = monitor_user_noop,
2351 .mhandler.info_new = do_info_commands,
2354 .name = "network",
2355 .args_type = "",
2356 .params = "",
2357 .help = "show the network state",
2358 .mhandler.info = do_info_network,
2361 .name = "chardev",
2362 .args_type = "",
2363 .params = "",
2364 .help = "show the character devices",
2365 .user_print = qemu_chr_info_print,
2366 .mhandler.info_new = qemu_chr_info,
2369 .name = "block",
2370 .args_type = "",
2371 .params = "",
2372 .help = "show the block devices",
2373 .user_print = bdrv_info_print,
2374 .mhandler.info_new = bdrv_info,
2377 .name = "blockstats",
2378 .args_type = "",
2379 .params = "",
2380 .help = "show block device statistics",
2381 .user_print = bdrv_stats_print,
2382 .mhandler.info_new = bdrv_info_stats,
2385 .name = "registers",
2386 .args_type = "",
2387 .params = "",
2388 .help = "show the cpu registers",
2389 .mhandler.info = do_info_registers,
2392 .name = "cpus",
2393 .args_type = "",
2394 .params = "",
2395 .help = "show infos for each CPU",
2396 .user_print = monitor_print_cpus,
2397 .mhandler.info_new = do_info_cpus,
2400 .name = "history",
2401 .args_type = "",
2402 .params = "",
2403 .help = "show the command line history",
2404 .mhandler.info = do_info_history,
2407 .name = "irq",
2408 .args_type = "",
2409 .params = "",
2410 .help = "show the interrupts statistics (if available)",
2411 .mhandler.info = irq_info,
2414 .name = "pic",
2415 .args_type = "",
2416 .params = "",
2417 .help = "show i8259 (PIC) state",
2418 .mhandler.info = pic_info,
2421 .name = "pci",
2422 .args_type = "",
2423 .params = "",
2424 .help = "show PCI info",
2425 .user_print = do_pci_info_print,
2426 .mhandler.info_new = do_pci_info,
2428 #if defined(TARGET_I386) || defined(TARGET_SH4)
2430 .name = "tlb",
2431 .args_type = "",
2432 .params = "",
2433 .help = "show virtual to physical memory mappings",
2434 .mhandler.info = tlb_info,
2436 #endif
2437 #if defined(TARGET_I386)
2439 .name = "mem",
2440 .args_type = "",
2441 .params = "",
2442 .help = "show the active virtual memory mappings",
2443 .mhandler.info = mem_info,
2445 #endif
2447 .name = "jit",
2448 .args_type = "",
2449 .params = "",
2450 .help = "show dynamic compiler info",
2451 .mhandler.info = do_info_jit,
2454 .name = "kvm",
2455 .args_type = "",
2456 .params = "",
2457 .help = "show KVM information",
2458 .user_print = do_info_kvm_print,
2459 .mhandler.info_new = do_info_kvm,
2462 .name = "numa",
2463 .args_type = "",
2464 .params = "",
2465 .help = "show NUMA information",
2466 .mhandler.info = do_info_numa,
2469 .name = "usb",
2470 .args_type = "",
2471 .params = "",
2472 .help = "show guest USB devices",
2473 .mhandler.info = usb_info,
2476 .name = "usbhost",
2477 .args_type = "",
2478 .params = "",
2479 .help = "show host USB devices",
2480 .mhandler.info = usb_host_info,
2483 .name = "profile",
2484 .args_type = "",
2485 .params = "",
2486 .help = "show profiling information",
2487 .mhandler.info = do_info_profile,
2490 .name = "capture",
2491 .args_type = "",
2492 .params = "",
2493 .help = "show capture information",
2494 .mhandler.info = do_info_capture,
2497 .name = "snapshots",
2498 .args_type = "",
2499 .params = "",
2500 .help = "show the currently saved VM snapshots",
2501 .mhandler.info = do_info_snapshots,
2504 .name = "status",
2505 .args_type = "",
2506 .params = "",
2507 .help = "show the current VM status (running|paused)",
2508 .user_print = do_info_status_print,
2509 .mhandler.info_new = do_info_status,
2512 .name = "pcmcia",
2513 .args_type = "",
2514 .params = "",
2515 .help = "show guest PCMCIA status",
2516 .mhandler.info = pcmcia_info,
2519 .name = "mice",
2520 .args_type = "",
2521 .params = "",
2522 .help = "show which guest mouse is receiving events",
2523 .user_print = do_info_mice_print,
2524 .mhandler.info_new = do_info_mice,
2527 .name = "vnc",
2528 .args_type = "",
2529 .params = "",
2530 .help = "show the vnc server status",
2531 .user_print = do_info_vnc_print,
2532 .mhandler.info_new = do_info_vnc,
2535 .name = "name",
2536 .args_type = "",
2537 .params = "",
2538 .help = "show the current VM name",
2539 .user_print = do_info_name_print,
2540 .mhandler.info_new = do_info_name,
2543 .name = "uuid",
2544 .args_type = "",
2545 .params = "",
2546 .help = "show the current VM UUID",
2547 .user_print = do_info_uuid_print,
2548 .mhandler.info_new = do_info_uuid,
2550 #if defined(TARGET_PPC)
2552 .name = "cpustats",
2553 .args_type = "",
2554 .params = "",
2555 .help = "show CPU statistics",
2556 .mhandler.info = do_info_cpu_stats,
2558 #endif
2559 #if defined(CONFIG_SLIRP)
2561 .name = "usernet",
2562 .args_type = "",
2563 .params = "",
2564 .help = "show user network stack connection states",
2565 .mhandler.info = do_info_usernet,
2567 #endif
2569 .name = "migrate",
2570 .args_type = "",
2571 .params = "",
2572 .help = "show migration status",
2573 .user_print = do_info_migrate_print,
2574 .mhandler.info_new = do_info_migrate,
2577 .name = "balloon",
2578 .args_type = "",
2579 .params = "",
2580 .help = "show balloon information",
2581 .user_print = monitor_print_balloon,
2582 .mhandler.info_async = do_info_balloon,
2583 .flags = MONITOR_CMD_ASYNC,
2586 .name = "qtree",
2587 .args_type = "",
2588 .params = "",
2589 .help = "show device tree",
2590 .mhandler.info = do_info_qtree,
2593 .name = "qdm",
2594 .args_type = "",
2595 .params = "",
2596 .help = "show qdev device model list",
2597 .mhandler.info = do_info_qdm,
2600 .name = "roms",
2601 .args_type = "",
2602 .params = "",
2603 .help = "show roms",
2604 .mhandler.info = do_info_roms,
2607 .name = NULL,
2611 /*******************************************************************/
2613 static const char *pch;
2614 static jmp_buf expr_env;
2616 #define MD_TLONG 0
2617 #define MD_I32 1
2619 typedef struct MonitorDef {
2620 const char *name;
2621 int offset;
2622 target_long (*get_value)(const struct MonitorDef *md, int val);
2623 int type;
2624 } MonitorDef;
2626 #if defined(TARGET_I386)
2627 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
2629 CPUState *env = mon_get_cpu();
2630 return env->eip + env->segs[R_CS].base;
2632 #endif
2634 #if defined(TARGET_PPC)
2635 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
2637 CPUState *env = mon_get_cpu();
2638 unsigned int u;
2639 int i;
2641 u = 0;
2642 for (i = 0; i < 8; i++)
2643 u |= env->crf[i] << (32 - (4 * i));
2645 return u;
2648 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
2650 CPUState *env = mon_get_cpu();
2651 return env->msr;
2654 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
2656 CPUState *env = mon_get_cpu();
2657 return env->xer;
2660 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
2662 CPUState *env = mon_get_cpu();
2663 return cpu_ppc_load_decr(env);
2666 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
2668 CPUState *env = mon_get_cpu();
2669 return cpu_ppc_load_tbu(env);
2672 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
2674 CPUState *env = mon_get_cpu();
2675 return cpu_ppc_load_tbl(env);
2677 #endif
2679 #if defined(TARGET_SPARC)
2680 #ifndef TARGET_SPARC64
2681 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
2683 CPUState *env = mon_get_cpu();
2685 return cpu_get_psr(env);
2687 #endif
2689 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
2691 CPUState *env = mon_get_cpu();
2692 return env->regwptr[val];
2694 #endif
2696 static const MonitorDef monitor_defs[] = {
2697 #ifdef TARGET_I386
2699 #define SEG(name, seg) \
2700 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
2701 { name ".base", offsetof(CPUState, segs[seg].base) },\
2702 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
2704 { "eax", offsetof(CPUState, regs[0]) },
2705 { "ecx", offsetof(CPUState, regs[1]) },
2706 { "edx", offsetof(CPUState, regs[2]) },
2707 { "ebx", offsetof(CPUState, regs[3]) },
2708 { "esp|sp", offsetof(CPUState, regs[4]) },
2709 { "ebp|fp", offsetof(CPUState, regs[5]) },
2710 { "esi", offsetof(CPUState, regs[6]) },
2711 { "edi", offsetof(CPUState, regs[7]) },
2712 #ifdef TARGET_X86_64
2713 { "r8", offsetof(CPUState, regs[8]) },
2714 { "r9", offsetof(CPUState, regs[9]) },
2715 { "r10", offsetof(CPUState, regs[10]) },
2716 { "r11", offsetof(CPUState, regs[11]) },
2717 { "r12", offsetof(CPUState, regs[12]) },
2718 { "r13", offsetof(CPUState, regs[13]) },
2719 { "r14", offsetof(CPUState, regs[14]) },
2720 { "r15", offsetof(CPUState, regs[15]) },
2721 #endif
2722 { "eflags", offsetof(CPUState, eflags) },
2723 { "eip", offsetof(CPUState, eip) },
2724 SEG("cs", R_CS)
2725 SEG("ds", R_DS)
2726 SEG("es", R_ES)
2727 SEG("ss", R_SS)
2728 SEG("fs", R_FS)
2729 SEG("gs", R_GS)
2730 { "pc", 0, monitor_get_pc, },
2731 #elif defined(TARGET_PPC)
2732 /* General purpose registers */
2733 { "r0", offsetof(CPUState, gpr[0]) },
2734 { "r1", offsetof(CPUState, gpr[1]) },
2735 { "r2", offsetof(CPUState, gpr[2]) },
2736 { "r3", offsetof(CPUState, gpr[3]) },
2737 { "r4", offsetof(CPUState, gpr[4]) },
2738 { "r5", offsetof(CPUState, gpr[5]) },
2739 { "r6", offsetof(CPUState, gpr[6]) },
2740 { "r7", offsetof(CPUState, gpr[7]) },
2741 { "r8", offsetof(CPUState, gpr[8]) },
2742 { "r9", offsetof(CPUState, gpr[9]) },
2743 { "r10", offsetof(CPUState, gpr[10]) },
2744 { "r11", offsetof(CPUState, gpr[11]) },
2745 { "r12", offsetof(CPUState, gpr[12]) },
2746 { "r13", offsetof(CPUState, gpr[13]) },
2747 { "r14", offsetof(CPUState, gpr[14]) },
2748 { "r15", offsetof(CPUState, gpr[15]) },
2749 { "r16", offsetof(CPUState, gpr[16]) },
2750 { "r17", offsetof(CPUState, gpr[17]) },
2751 { "r18", offsetof(CPUState, gpr[18]) },
2752 { "r19", offsetof(CPUState, gpr[19]) },
2753 { "r20", offsetof(CPUState, gpr[20]) },
2754 { "r21", offsetof(CPUState, gpr[21]) },
2755 { "r22", offsetof(CPUState, gpr[22]) },
2756 { "r23", offsetof(CPUState, gpr[23]) },
2757 { "r24", offsetof(CPUState, gpr[24]) },
2758 { "r25", offsetof(CPUState, gpr[25]) },
2759 { "r26", offsetof(CPUState, gpr[26]) },
2760 { "r27", offsetof(CPUState, gpr[27]) },
2761 { "r28", offsetof(CPUState, gpr[28]) },
2762 { "r29", offsetof(CPUState, gpr[29]) },
2763 { "r30", offsetof(CPUState, gpr[30]) },
2764 { "r31", offsetof(CPUState, gpr[31]) },
2765 /* Floating point registers */
2766 { "f0", offsetof(CPUState, fpr[0]) },
2767 { "f1", offsetof(CPUState, fpr[1]) },
2768 { "f2", offsetof(CPUState, fpr[2]) },
2769 { "f3", offsetof(CPUState, fpr[3]) },
2770 { "f4", offsetof(CPUState, fpr[4]) },
2771 { "f5", offsetof(CPUState, fpr[5]) },
2772 { "f6", offsetof(CPUState, fpr[6]) },
2773 { "f7", offsetof(CPUState, fpr[7]) },
2774 { "f8", offsetof(CPUState, fpr[8]) },
2775 { "f9", offsetof(CPUState, fpr[9]) },
2776 { "f10", offsetof(CPUState, fpr[10]) },
2777 { "f11", offsetof(CPUState, fpr[11]) },
2778 { "f12", offsetof(CPUState, fpr[12]) },
2779 { "f13", offsetof(CPUState, fpr[13]) },
2780 { "f14", offsetof(CPUState, fpr[14]) },
2781 { "f15", offsetof(CPUState, fpr[15]) },
2782 { "f16", offsetof(CPUState, fpr[16]) },
2783 { "f17", offsetof(CPUState, fpr[17]) },
2784 { "f18", offsetof(CPUState, fpr[18]) },
2785 { "f19", offsetof(CPUState, fpr[19]) },
2786 { "f20", offsetof(CPUState, fpr[20]) },
2787 { "f21", offsetof(CPUState, fpr[21]) },
2788 { "f22", offsetof(CPUState, fpr[22]) },
2789 { "f23", offsetof(CPUState, fpr[23]) },
2790 { "f24", offsetof(CPUState, fpr[24]) },
2791 { "f25", offsetof(CPUState, fpr[25]) },
2792 { "f26", offsetof(CPUState, fpr[26]) },
2793 { "f27", offsetof(CPUState, fpr[27]) },
2794 { "f28", offsetof(CPUState, fpr[28]) },
2795 { "f29", offsetof(CPUState, fpr[29]) },
2796 { "f30", offsetof(CPUState, fpr[30]) },
2797 { "f31", offsetof(CPUState, fpr[31]) },
2798 { "fpscr", offsetof(CPUState, fpscr) },
2799 /* Next instruction pointer */
2800 { "nip|pc", offsetof(CPUState, nip) },
2801 { "lr", offsetof(CPUState, lr) },
2802 { "ctr", offsetof(CPUState, ctr) },
2803 { "decr", 0, &monitor_get_decr, },
2804 { "ccr", 0, &monitor_get_ccr, },
2805 /* Machine state register */
2806 { "msr", 0, &monitor_get_msr, },
2807 { "xer", 0, &monitor_get_xer, },
2808 { "tbu", 0, &monitor_get_tbu, },
2809 { "tbl", 0, &monitor_get_tbl, },
2810 #if defined(TARGET_PPC64)
2811 /* Address space register */
2812 { "asr", offsetof(CPUState, asr) },
2813 #endif
2814 /* Segment registers */
2815 { "sdr1", offsetof(CPUState, sdr1) },
2816 { "sr0", offsetof(CPUState, sr[0]) },
2817 { "sr1", offsetof(CPUState, sr[1]) },
2818 { "sr2", offsetof(CPUState, sr[2]) },
2819 { "sr3", offsetof(CPUState, sr[3]) },
2820 { "sr4", offsetof(CPUState, sr[4]) },
2821 { "sr5", offsetof(CPUState, sr[5]) },
2822 { "sr6", offsetof(CPUState, sr[6]) },
2823 { "sr7", offsetof(CPUState, sr[7]) },
2824 { "sr8", offsetof(CPUState, sr[8]) },
2825 { "sr9", offsetof(CPUState, sr[9]) },
2826 { "sr10", offsetof(CPUState, sr[10]) },
2827 { "sr11", offsetof(CPUState, sr[11]) },
2828 { "sr12", offsetof(CPUState, sr[12]) },
2829 { "sr13", offsetof(CPUState, sr[13]) },
2830 { "sr14", offsetof(CPUState, sr[14]) },
2831 { "sr15", offsetof(CPUState, sr[15]) },
2832 /* Too lazy to put BATs and SPRs ... */
2833 #elif defined(TARGET_SPARC)
2834 { "g0", offsetof(CPUState, gregs[0]) },
2835 { "g1", offsetof(CPUState, gregs[1]) },
2836 { "g2", offsetof(CPUState, gregs[2]) },
2837 { "g3", offsetof(CPUState, gregs[3]) },
2838 { "g4", offsetof(CPUState, gregs[4]) },
2839 { "g5", offsetof(CPUState, gregs[5]) },
2840 { "g6", offsetof(CPUState, gregs[6]) },
2841 { "g7", offsetof(CPUState, gregs[7]) },
2842 { "o0", 0, monitor_get_reg },
2843 { "o1", 1, monitor_get_reg },
2844 { "o2", 2, monitor_get_reg },
2845 { "o3", 3, monitor_get_reg },
2846 { "o4", 4, monitor_get_reg },
2847 { "o5", 5, monitor_get_reg },
2848 { "o6", 6, monitor_get_reg },
2849 { "o7", 7, monitor_get_reg },
2850 { "l0", 8, monitor_get_reg },
2851 { "l1", 9, monitor_get_reg },
2852 { "l2", 10, monitor_get_reg },
2853 { "l3", 11, monitor_get_reg },
2854 { "l4", 12, monitor_get_reg },
2855 { "l5", 13, monitor_get_reg },
2856 { "l6", 14, monitor_get_reg },
2857 { "l7", 15, monitor_get_reg },
2858 { "i0", 16, monitor_get_reg },
2859 { "i1", 17, monitor_get_reg },
2860 { "i2", 18, monitor_get_reg },
2861 { "i3", 19, monitor_get_reg },
2862 { "i4", 20, monitor_get_reg },
2863 { "i5", 21, monitor_get_reg },
2864 { "i6", 22, monitor_get_reg },
2865 { "i7", 23, monitor_get_reg },
2866 { "pc", offsetof(CPUState, pc) },
2867 { "npc", offsetof(CPUState, npc) },
2868 { "y", offsetof(CPUState, y) },
2869 #ifndef TARGET_SPARC64
2870 { "psr", 0, &monitor_get_psr, },
2871 { "wim", offsetof(CPUState, wim) },
2872 #endif
2873 { "tbr", offsetof(CPUState, tbr) },
2874 { "fsr", offsetof(CPUState, fsr) },
2875 { "f0", offsetof(CPUState, fpr[0]) },
2876 { "f1", offsetof(CPUState, fpr[1]) },
2877 { "f2", offsetof(CPUState, fpr[2]) },
2878 { "f3", offsetof(CPUState, fpr[3]) },
2879 { "f4", offsetof(CPUState, fpr[4]) },
2880 { "f5", offsetof(CPUState, fpr[5]) },
2881 { "f6", offsetof(CPUState, fpr[6]) },
2882 { "f7", offsetof(CPUState, fpr[7]) },
2883 { "f8", offsetof(CPUState, fpr[8]) },
2884 { "f9", offsetof(CPUState, fpr[9]) },
2885 { "f10", offsetof(CPUState, fpr[10]) },
2886 { "f11", offsetof(CPUState, fpr[11]) },
2887 { "f12", offsetof(CPUState, fpr[12]) },
2888 { "f13", offsetof(CPUState, fpr[13]) },
2889 { "f14", offsetof(CPUState, fpr[14]) },
2890 { "f15", offsetof(CPUState, fpr[15]) },
2891 { "f16", offsetof(CPUState, fpr[16]) },
2892 { "f17", offsetof(CPUState, fpr[17]) },
2893 { "f18", offsetof(CPUState, fpr[18]) },
2894 { "f19", offsetof(CPUState, fpr[19]) },
2895 { "f20", offsetof(CPUState, fpr[20]) },
2896 { "f21", offsetof(CPUState, fpr[21]) },
2897 { "f22", offsetof(CPUState, fpr[22]) },
2898 { "f23", offsetof(CPUState, fpr[23]) },
2899 { "f24", offsetof(CPUState, fpr[24]) },
2900 { "f25", offsetof(CPUState, fpr[25]) },
2901 { "f26", offsetof(CPUState, fpr[26]) },
2902 { "f27", offsetof(CPUState, fpr[27]) },
2903 { "f28", offsetof(CPUState, fpr[28]) },
2904 { "f29", offsetof(CPUState, fpr[29]) },
2905 { "f30", offsetof(CPUState, fpr[30]) },
2906 { "f31", offsetof(CPUState, fpr[31]) },
2907 #ifdef TARGET_SPARC64
2908 { "f32", offsetof(CPUState, fpr[32]) },
2909 { "f34", offsetof(CPUState, fpr[34]) },
2910 { "f36", offsetof(CPUState, fpr[36]) },
2911 { "f38", offsetof(CPUState, fpr[38]) },
2912 { "f40", offsetof(CPUState, fpr[40]) },
2913 { "f42", offsetof(CPUState, fpr[42]) },
2914 { "f44", offsetof(CPUState, fpr[44]) },
2915 { "f46", offsetof(CPUState, fpr[46]) },
2916 { "f48", offsetof(CPUState, fpr[48]) },
2917 { "f50", offsetof(CPUState, fpr[50]) },
2918 { "f52", offsetof(CPUState, fpr[52]) },
2919 { "f54", offsetof(CPUState, fpr[54]) },
2920 { "f56", offsetof(CPUState, fpr[56]) },
2921 { "f58", offsetof(CPUState, fpr[58]) },
2922 { "f60", offsetof(CPUState, fpr[60]) },
2923 { "f62", offsetof(CPUState, fpr[62]) },
2924 { "asi", offsetof(CPUState, asi) },
2925 { "pstate", offsetof(CPUState, pstate) },
2926 { "cansave", offsetof(CPUState, cansave) },
2927 { "canrestore", offsetof(CPUState, canrestore) },
2928 { "otherwin", offsetof(CPUState, otherwin) },
2929 { "wstate", offsetof(CPUState, wstate) },
2930 { "cleanwin", offsetof(CPUState, cleanwin) },
2931 { "fprs", offsetof(CPUState, fprs) },
2932 #endif
2933 #endif
2934 { NULL },
2937 static void expr_error(Monitor *mon, const char *msg)
2939 monitor_printf(mon, "%s\n", msg);
2940 longjmp(expr_env, 1);
2943 /* return 0 if OK, -1 if not found */
2944 static int get_monitor_def(target_long *pval, const char *name)
2946 const MonitorDef *md;
2947 void *ptr;
2949 for(md = monitor_defs; md->name != NULL; md++) {
2950 if (compare_cmd(name, md->name)) {
2951 if (md->get_value) {
2952 *pval = md->get_value(md, md->offset);
2953 } else {
2954 CPUState *env = mon_get_cpu();
2955 ptr = (uint8_t *)env + md->offset;
2956 switch(md->type) {
2957 case MD_I32:
2958 *pval = *(int32_t *)ptr;
2959 break;
2960 case MD_TLONG:
2961 *pval = *(target_long *)ptr;
2962 break;
2963 default:
2964 *pval = 0;
2965 break;
2968 return 0;
2971 return -1;
2974 static void next(void)
2976 if (*pch != '\0') {
2977 pch++;
2978 while (qemu_isspace(*pch))
2979 pch++;
2983 static int64_t expr_sum(Monitor *mon);
2985 static int64_t expr_unary(Monitor *mon)
2987 int64_t n;
2988 char *p;
2989 int ret;
2991 switch(*pch) {
2992 case '+':
2993 next();
2994 n = expr_unary(mon);
2995 break;
2996 case '-':
2997 next();
2998 n = -expr_unary(mon);
2999 break;
3000 case '~':
3001 next();
3002 n = ~expr_unary(mon);
3003 break;
3004 case '(':
3005 next();
3006 n = expr_sum(mon);
3007 if (*pch != ')') {
3008 expr_error(mon, "')' expected");
3010 next();
3011 break;
3012 case '\'':
3013 pch++;
3014 if (*pch == '\0')
3015 expr_error(mon, "character constant expected");
3016 n = *pch;
3017 pch++;
3018 if (*pch != '\'')
3019 expr_error(mon, "missing terminating \' character");
3020 next();
3021 break;
3022 case '$':
3024 char buf[128], *q;
3025 target_long reg=0;
3027 pch++;
3028 q = buf;
3029 while ((*pch >= 'a' && *pch <= 'z') ||
3030 (*pch >= 'A' && *pch <= 'Z') ||
3031 (*pch >= '0' && *pch <= '9') ||
3032 *pch == '_' || *pch == '.') {
3033 if ((q - buf) < sizeof(buf) - 1)
3034 *q++ = *pch;
3035 pch++;
3037 while (qemu_isspace(*pch))
3038 pch++;
3039 *q = 0;
3040 ret = get_monitor_def(&reg, buf);
3041 if (ret < 0)
3042 expr_error(mon, "unknown register");
3043 n = reg;
3045 break;
3046 case '\0':
3047 expr_error(mon, "unexpected end of expression");
3048 n = 0;
3049 break;
3050 default:
3051 #if TARGET_PHYS_ADDR_BITS > 32
3052 n = strtoull(pch, &p, 0);
3053 #else
3054 n = strtoul(pch, &p, 0);
3055 #endif
3056 if (pch == p) {
3057 expr_error(mon, "invalid char in expression");
3059 pch = p;
3060 while (qemu_isspace(*pch))
3061 pch++;
3062 break;
3064 return n;
3068 static int64_t expr_prod(Monitor *mon)
3070 int64_t val, val2;
3071 int op;
3073 val = expr_unary(mon);
3074 for(;;) {
3075 op = *pch;
3076 if (op != '*' && op != '/' && op != '%')
3077 break;
3078 next();
3079 val2 = expr_unary(mon);
3080 switch(op) {
3081 default:
3082 case '*':
3083 val *= val2;
3084 break;
3085 case '/':
3086 case '%':
3087 if (val2 == 0)
3088 expr_error(mon, "division by zero");
3089 if (op == '/')
3090 val /= val2;
3091 else
3092 val %= val2;
3093 break;
3096 return val;
3099 static int64_t expr_logic(Monitor *mon)
3101 int64_t val, val2;
3102 int op;
3104 val = expr_prod(mon);
3105 for(;;) {
3106 op = *pch;
3107 if (op != '&' && op != '|' && op != '^')
3108 break;
3109 next();
3110 val2 = expr_prod(mon);
3111 switch(op) {
3112 default:
3113 case '&':
3114 val &= val2;
3115 break;
3116 case '|':
3117 val |= val2;
3118 break;
3119 case '^':
3120 val ^= val2;
3121 break;
3124 return val;
3127 static int64_t expr_sum(Monitor *mon)
3129 int64_t val, val2;
3130 int op;
3132 val = expr_logic(mon);
3133 for(;;) {
3134 op = *pch;
3135 if (op != '+' && op != '-')
3136 break;
3137 next();
3138 val2 = expr_logic(mon);
3139 if (op == '+')
3140 val += val2;
3141 else
3142 val -= val2;
3144 return val;
3147 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
3149 pch = *pp;
3150 if (setjmp(expr_env)) {
3151 *pp = pch;
3152 return -1;
3154 while (qemu_isspace(*pch))
3155 pch++;
3156 *pval = expr_sum(mon);
3157 *pp = pch;
3158 return 0;
3161 static int get_double(Monitor *mon, double *pval, const char **pp)
3163 const char *p = *pp;
3164 char *tailp;
3165 double d;
3167 d = strtod(p, &tailp);
3168 if (tailp == p) {
3169 monitor_printf(mon, "Number expected\n");
3170 return -1;
3172 if (d != d || d - d != 0) {
3173 /* NaN or infinity */
3174 monitor_printf(mon, "Bad number\n");
3175 return -1;
3177 *pval = d;
3178 *pp = tailp;
3179 return 0;
3182 static int get_str(char *buf, int buf_size, const char **pp)
3184 const char *p;
3185 char *q;
3186 int c;
3188 q = buf;
3189 p = *pp;
3190 while (qemu_isspace(*p))
3191 p++;
3192 if (*p == '\0') {
3193 fail:
3194 *q = '\0';
3195 *pp = p;
3196 return -1;
3198 if (*p == '\"') {
3199 p++;
3200 while (*p != '\0' && *p != '\"') {
3201 if (*p == '\\') {
3202 p++;
3203 c = *p++;
3204 switch(c) {
3205 case 'n':
3206 c = '\n';
3207 break;
3208 case 'r':
3209 c = '\r';
3210 break;
3211 case '\\':
3212 case '\'':
3213 case '\"':
3214 break;
3215 default:
3216 qemu_printf("unsupported escape code: '\\%c'\n", c);
3217 goto fail;
3219 if ((q - buf) < buf_size - 1) {
3220 *q++ = c;
3222 } else {
3223 if ((q - buf) < buf_size - 1) {
3224 *q++ = *p;
3226 p++;
3229 if (*p != '\"') {
3230 qemu_printf("unterminated string\n");
3231 goto fail;
3233 p++;
3234 } else {
3235 while (*p != '\0' && !qemu_isspace(*p)) {
3236 if ((q - buf) < buf_size - 1) {
3237 *q++ = *p;
3239 p++;
3242 *q = '\0';
3243 *pp = p;
3244 return 0;
3248 * Store the command-name in cmdname, and return a pointer to
3249 * the remaining of the command string.
3251 static const char *get_command_name(const char *cmdline,
3252 char *cmdname, size_t nlen)
3254 size_t len;
3255 const char *p, *pstart;
3257 p = cmdline;
3258 while (qemu_isspace(*p))
3259 p++;
3260 if (*p == '\0')
3261 return NULL;
3262 pstart = p;
3263 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3264 p++;
3265 len = p - pstart;
3266 if (len > nlen - 1)
3267 len = nlen - 1;
3268 memcpy(cmdname, pstart, len);
3269 cmdname[len] = '\0';
3270 return p;
3274 * Read key of 'type' into 'key' and return the current
3275 * 'type' pointer.
3277 static char *key_get_info(const char *type, char **key)
3279 size_t len;
3280 char *p, *str;
3282 if (*type == ',')
3283 type++;
3285 p = strchr(type, ':');
3286 if (!p) {
3287 *key = NULL;
3288 return NULL;
3290 len = p - type;
3292 str = qemu_malloc(len + 1);
3293 memcpy(str, type, len);
3294 str[len] = '\0';
3296 *key = str;
3297 return ++p;
3300 static int default_fmt_format = 'x';
3301 static int default_fmt_size = 4;
3303 #define MAX_ARGS 16
3305 static int is_valid_option(const char *c, const char *typestr)
3307 char option[3];
3309 option[0] = '-';
3310 option[1] = *c;
3311 option[2] = '\0';
3313 typestr = strstr(typestr, option);
3314 return (typestr != NULL);
3317 static const mon_cmd_t *monitor_find_command(const char *cmdname)
3319 const mon_cmd_t *cmd;
3321 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
3322 if (compare_cmd(cmdname, cmd->name)) {
3323 return cmd;
3327 return NULL;
3330 static const mon_cmd_t *monitor_parse_command(Monitor *mon,
3331 const char *cmdline,
3332 QDict *qdict)
3334 const char *p, *typestr;
3335 int c;
3336 const mon_cmd_t *cmd;
3337 char cmdname[256];
3338 char buf[1024];
3339 char *key;
3341 #ifdef DEBUG
3342 monitor_printf(mon, "command='%s'\n", cmdline);
3343 #endif
3345 /* extract the command name */
3346 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3347 if (!p)
3348 return NULL;
3350 cmd = monitor_find_command(cmdname);
3351 if (!cmd) {
3352 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
3353 return NULL;
3356 /* parse the parameters */
3357 typestr = cmd->args_type;
3358 for(;;) {
3359 typestr = key_get_info(typestr, &key);
3360 if (!typestr)
3361 break;
3362 c = *typestr;
3363 typestr++;
3364 switch(c) {
3365 case 'F':
3366 case 'B':
3367 case 's':
3369 int ret;
3371 while (qemu_isspace(*p))
3372 p++;
3373 if (*typestr == '?') {
3374 typestr++;
3375 if (*p == '\0') {
3376 /* no optional string: NULL argument */
3377 break;
3380 ret = get_str(buf, sizeof(buf), &p);
3381 if (ret < 0) {
3382 switch(c) {
3383 case 'F':
3384 monitor_printf(mon, "%s: filename expected\n",
3385 cmdname);
3386 break;
3387 case 'B':
3388 monitor_printf(mon, "%s: block device name expected\n",
3389 cmdname);
3390 break;
3391 default:
3392 monitor_printf(mon, "%s: string expected\n", cmdname);
3393 break;
3395 goto fail;
3397 qdict_put(qdict, key, qstring_from_str(buf));
3399 break;
3400 case 'O':
3402 QemuOptsList *opts_list;
3403 QemuOpts *opts;
3405 opts_list = qemu_find_opts(key);
3406 if (!opts_list || opts_list->desc->name) {
3407 goto bad_type;
3409 while (qemu_isspace(*p)) {
3410 p++;
3412 if (!*p)
3413 break;
3414 if (get_str(buf, sizeof(buf), &p) < 0) {
3415 goto fail;
3417 opts = qemu_opts_parse(opts_list, buf, 1);
3418 if (!opts) {
3419 goto fail;
3421 qemu_opts_to_qdict(opts, qdict);
3422 qemu_opts_del(opts);
3424 break;
3425 case '/':
3427 int count, format, size;
3429 while (qemu_isspace(*p))
3430 p++;
3431 if (*p == '/') {
3432 /* format found */
3433 p++;
3434 count = 1;
3435 if (qemu_isdigit(*p)) {
3436 count = 0;
3437 while (qemu_isdigit(*p)) {
3438 count = count * 10 + (*p - '0');
3439 p++;
3442 size = -1;
3443 format = -1;
3444 for(;;) {
3445 switch(*p) {
3446 case 'o':
3447 case 'd':
3448 case 'u':
3449 case 'x':
3450 case 'i':
3451 case 'c':
3452 format = *p++;
3453 break;
3454 case 'b':
3455 size = 1;
3456 p++;
3457 break;
3458 case 'h':
3459 size = 2;
3460 p++;
3461 break;
3462 case 'w':
3463 size = 4;
3464 p++;
3465 break;
3466 case 'g':
3467 case 'L':
3468 size = 8;
3469 p++;
3470 break;
3471 default:
3472 goto next;
3475 next:
3476 if (*p != '\0' && !qemu_isspace(*p)) {
3477 monitor_printf(mon, "invalid char in format: '%c'\n",
3478 *p);
3479 goto fail;
3481 if (format < 0)
3482 format = default_fmt_format;
3483 if (format != 'i') {
3484 /* for 'i', not specifying a size gives -1 as size */
3485 if (size < 0)
3486 size = default_fmt_size;
3487 default_fmt_size = size;
3489 default_fmt_format = format;
3490 } else {
3491 count = 1;
3492 format = default_fmt_format;
3493 if (format != 'i') {
3494 size = default_fmt_size;
3495 } else {
3496 size = -1;
3499 qdict_put(qdict, "count", qint_from_int(count));
3500 qdict_put(qdict, "format", qint_from_int(format));
3501 qdict_put(qdict, "size", qint_from_int(size));
3503 break;
3504 case 'i':
3505 case 'l':
3506 case 'M':
3508 int64_t val;
3510 while (qemu_isspace(*p))
3511 p++;
3512 if (*typestr == '?' || *typestr == '.') {
3513 if (*typestr == '?') {
3514 if (*p == '\0') {
3515 typestr++;
3516 break;
3518 } else {
3519 if (*p == '.') {
3520 p++;
3521 while (qemu_isspace(*p))
3522 p++;
3523 } else {
3524 typestr++;
3525 break;
3528 typestr++;
3530 if (get_expr(mon, &val, &p))
3531 goto fail;
3532 /* Check if 'i' is greater than 32-bit */
3533 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3534 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3535 monitor_printf(mon, "integer is for 32-bit values\n");
3536 goto fail;
3537 } else if (c == 'M') {
3538 val <<= 20;
3540 qdict_put(qdict, key, qint_from_int(val));
3542 break;
3543 case 'f':
3544 case 'T':
3546 double val;
3548 while (qemu_isspace(*p))
3549 p++;
3550 if (*typestr == '?') {
3551 typestr++;
3552 if (*p == '\0') {
3553 break;
3556 if (get_double(mon, &val, &p) < 0) {
3557 goto fail;
3559 if (c == 'f' && *p) {
3560 switch (*p) {
3561 case 'K': case 'k':
3562 val *= 1 << 10; p++; break;
3563 case 'M': case 'm':
3564 val *= 1 << 20; p++; break;
3565 case 'G': case 'g':
3566 val *= 1 << 30; p++; break;
3569 if (c == 'T' && p[0] && p[1] == 's') {
3570 switch (*p) {
3571 case 'm':
3572 val /= 1e3; p += 2; break;
3573 case 'u':
3574 val /= 1e6; p += 2; break;
3575 case 'n':
3576 val /= 1e9; p += 2; break;
3579 if (*p && !qemu_isspace(*p)) {
3580 monitor_printf(mon, "Unknown unit suffix\n");
3581 goto fail;
3583 qdict_put(qdict, key, qfloat_from_double(val));
3585 break;
3586 case 'b':
3588 const char *beg;
3589 int val;
3591 while (qemu_isspace(*p)) {
3592 p++;
3594 beg = p;
3595 while (qemu_isgraph(*p)) {
3596 p++;
3598 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3599 val = 1;
3600 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3601 val = 0;
3602 } else {
3603 monitor_printf(mon, "Expected 'on' or 'off'\n");
3604 goto fail;
3606 qdict_put(qdict, key, qbool_from_int(val));
3608 break;
3609 case '-':
3611 const char *tmp = p;
3612 int skip_key = 0;
3613 /* option */
3615 c = *typestr++;
3616 if (c == '\0')
3617 goto bad_type;
3618 while (qemu_isspace(*p))
3619 p++;
3620 if (*p == '-') {
3621 p++;
3622 if(c != *p) {
3623 if(!is_valid_option(p, typestr)) {
3625 monitor_printf(mon, "%s: unsupported option -%c\n",
3626 cmdname, *p);
3627 goto fail;
3628 } else {
3629 skip_key = 1;
3632 if(skip_key) {
3633 p = tmp;
3634 } else {
3635 /* has option */
3636 p++;
3637 qdict_put(qdict, key, qbool_from_int(1));
3641 break;
3642 default:
3643 bad_type:
3644 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
3645 goto fail;
3647 qemu_free(key);
3648 key = NULL;
3650 /* check that all arguments were parsed */
3651 while (qemu_isspace(*p))
3652 p++;
3653 if (*p != '\0') {
3654 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3655 cmdname);
3656 goto fail;
3659 return cmd;
3661 fail:
3662 qemu_free(key);
3663 return NULL;
3666 void monitor_set_error(Monitor *mon, QError *qerror)
3668 /* report only the first error */
3669 if (!mon->error) {
3670 mon->error = qerror;
3671 } else {
3672 MON_DEBUG("Additional error report at %s:%d\n",
3673 qerror->file, qerror->linenr);
3674 QDECREF(qerror);
3678 static int is_async_return(const QObject *data)
3680 if (data && qobject_type(data) == QTYPE_QDICT) {
3681 return qdict_haskey(qobject_to_qdict(data), "__mon_async");
3684 return 0;
3687 static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3689 if (monitor_ctrl_mode(mon)) {
3690 if (ret && !monitor_has_error(mon)) {
3692 * If it returns failure, it must have passed on error.
3694 * Action: Report an internal error to the client if in QMP.
3696 qerror_report(QERR_UNDEFINED_ERROR);
3697 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
3698 cmd->name);
3701 #ifdef CONFIG_DEBUG_MONITOR
3702 if (!ret && monitor_has_error(mon)) {
3704 * If it returns success, it must not have passed an error.
3706 * Action: Report the passed error to the client.
3708 MON_DEBUG("command '%s' returned success but passed an error\n",
3709 cmd->name);
3712 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
3714 * Handlers should not call Monitor print functions.
3716 * Action: Ignore them in QMP.
3718 * (XXX: we don't check any 'info' or 'query' command here
3719 * because the user print function _is_ called by do_info(), hence
3720 * we will trigger this check. This problem will go away when we
3721 * make 'query' commands real and kill do_info())
3723 MON_DEBUG("command '%s' called print functions %d time(s)\n",
3724 cmd->name, mon_print_count_get(mon));
3726 #endif
3727 } else {
3728 assert(!monitor_has_error(mon));
3729 QDECREF(mon->error);
3730 mon->error = NULL;
3734 static void monitor_call_handler(Monitor *mon, const mon_cmd_t *cmd,
3735 const QDict *params)
3737 int ret;
3738 QObject *data = NULL;
3740 mon_print_count_init(mon);
3742 ret = cmd->mhandler.cmd_new(mon, params, &data);
3743 handler_audit(mon, cmd, ret);
3745 if (is_async_return(data)) {
3747 * Asynchronous commands have no initial return data but they can
3748 * generate errors. Data is returned via the async completion handler.
3750 if (monitor_ctrl_mode(mon) && monitor_has_error(mon)) {
3751 monitor_protocol_emitter(mon, NULL);
3753 } else if (monitor_ctrl_mode(mon)) {
3754 /* Monitor Protocol */
3755 monitor_protocol_emitter(mon, data);
3756 } else {
3757 /* User Protocol */
3758 if (data)
3759 cmd->user_print(mon, data);
3762 qobject_decref(data);
3765 static void handle_user_command(Monitor *mon, const char *cmdline)
3767 QDict *qdict;
3768 const mon_cmd_t *cmd;
3770 qdict = qdict_new();
3772 cmd = monitor_parse_command(mon, cmdline, qdict);
3773 if (!cmd)
3774 goto out;
3776 if (monitor_handler_is_async(cmd)) {
3777 user_async_cmd_handler(mon, cmd, qdict);
3778 } else if (monitor_handler_ported(cmd)) {
3779 monitor_call_handler(mon, cmd, qdict);
3780 } else {
3781 cmd->mhandler.cmd(mon, qdict);
3784 out:
3785 QDECREF(qdict);
3788 static void cmd_completion(const char *name, const char *list)
3790 const char *p, *pstart;
3791 char cmd[128];
3792 int len;
3794 p = list;
3795 for(;;) {
3796 pstart = p;
3797 p = strchr(p, '|');
3798 if (!p)
3799 p = pstart + strlen(pstart);
3800 len = p - pstart;
3801 if (len > sizeof(cmd) - 2)
3802 len = sizeof(cmd) - 2;
3803 memcpy(cmd, pstart, len);
3804 cmd[len] = '\0';
3805 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
3806 readline_add_completion(cur_mon->rs, cmd);
3808 if (*p == '\0')
3809 break;
3810 p++;
3814 static void file_completion(const char *input)
3816 DIR *ffs;
3817 struct dirent *d;
3818 char path[1024];
3819 char file[1024], file_prefix[1024];
3820 int input_path_len;
3821 const char *p;
3823 p = strrchr(input, '/');
3824 if (!p) {
3825 input_path_len = 0;
3826 pstrcpy(file_prefix, sizeof(file_prefix), input);
3827 pstrcpy(path, sizeof(path), ".");
3828 } else {
3829 input_path_len = p - input + 1;
3830 memcpy(path, input, input_path_len);
3831 if (input_path_len > sizeof(path) - 1)
3832 input_path_len = sizeof(path) - 1;
3833 path[input_path_len] = '\0';
3834 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3836 #ifdef DEBUG_COMPLETION
3837 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
3838 input, path, file_prefix);
3839 #endif
3840 ffs = opendir(path);
3841 if (!ffs)
3842 return;
3843 for(;;) {
3844 struct stat sb;
3845 d = readdir(ffs);
3846 if (!d)
3847 break;
3848 if (strstart(d->d_name, file_prefix, NULL)) {
3849 memcpy(file, input, input_path_len);
3850 if (input_path_len < sizeof(file))
3851 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3852 d->d_name);
3853 /* stat the file to find out if it's a directory.
3854 * In that case add a slash to speed up typing long paths
3856 stat(file, &sb);
3857 if(S_ISDIR(sb.st_mode))
3858 pstrcat(file, sizeof(file), "/");
3859 readline_add_completion(cur_mon->rs, file);
3862 closedir(ffs);
3865 static void block_completion_it(void *opaque, BlockDriverState *bs)
3867 const char *name = bdrv_get_device_name(bs);
3868 const char *input = opaque;
3870 if (input[0] == '\0' ||
3871 !strncmp(name, (char *)input, strlen(input))) {
3872 readline_add_completion(cur_mon->rs, name);
3876 /* NOTE: this parser is an approximate form of the real command parser */
3877 static void parse_cmdline(const char *cmdline,
3878 int *pnb_args, char **args)
3880 const char *p;
3881 int nb_args, ret;
3882 char buf[1024];
3884 p = cmdline;
3885 nb_args = 0;
3886 for(;;) {
3887 while (qemu_isspace(*p))
3888 p++;
3889 if (*p == '\0')
3890 break;
3891 if (nb_args >= MAX_ARGS)
3892 break;
3893 ret = get_str(buf, sizeof(buf), &p);
3894 args[nb_args] = qemu_strdup(buf);
3895 nb_args++;
3896 if (ret < 0)
3897 break;
3899 *pnb_args = nb_args;
3902 static const char *next_arg_type(const char *typestr)
3904 const char *p = strchr(typestr, ':');
3905 return (p != NULL ? ++p : typestr);
3908 static void monitor_find_completion(const char *cmdline)
3910 const char *cmdname;
3911 char *args[MAX_ARGS];
3912 int nb_args, i, len;
3913 const char *ptype, *str;
3914 const mon_cmd_t *cmd;
3915 const KeyDef *key;
3917 parse_cmdline(cmdline, &nb_args, args);
3918 #ifdef DEBUG_COMPLETION
3919 for(i = 0; i < nb_args; i++) {
3920 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
3922 #endif
3924 /* if the line ends with a space, it means we want to complete the
3925 next arg */
3926 len = strlen(cmdline);
3927 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
3928 if (nb_args >= MAX_ARGS) {
3929 goto cleanup;
3931 args[nb_args++] = qemu_strdup("");
3933 if (nb_args <= 1) {
3934 /* command completion */
3935 if (nb_args == 0)
3936 cmdname = "";
3937 else
3938 cmdname = args[0];
3939 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
3940 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
3941 cmd_completion(cmdname, cmd->name);
3943 } else {
3944 /* find the command */
3945 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
3946 if (compare_cmd(args[0], cmd->name)) {
3947 break;
3950 if (!cmd->name) {
3951 goto cleanup;
3954 ptype = next_arg_type(cmd->args_type);
3955 for(i = 0; i < nb_args - 2; i++) {
3956 if (*ptype != '\0') {
3957 ptype = next_arg_type(ptype);
3958 while (*ptype == '?')
3959 ptype = next_arg_type(ptype);
3962 str = args[nb_args - 1];
3963 if (*ptype == '-' && ptype[1] != '\0') {
3964 ptype = next_arg_type(ptype);
3966 switch(*ptype) {
3967 case 'F':
3968 /* file completion */
3969 readline_set_completion_index(cur_mon->rs, strlen(str));
3970 file_completion(str);
3971 break;
3972 case 'B':
3973 /* block device name completion */
3974 readline_set_completion_index(cur_mon->rs, strlen(str));
3975 bdrv_iterate(block_completion_it, (void *)str);
3976 break;
3977 case 's':
3978 /* XXX: more generic ? */
3979 if (!strcmp(cmd->name, "info")) {
3980 readline_set_completion_index(cur_mon->rs, strlen(str));
3981 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
3982 cmd_completion(str, cmd->name);
3984 } else if (!strcmp(cmd->name, "sendkey")) {
3985 char *sep = strrchr(str, '-');
3986 if (sep)
3987 str = sep + 1;
3988 readline_set_completion_index(cur_mon->rs, strlen(str));
3989 for(key = key_defs; key->name != NULL; key++) {
3990 cmd_completion(str, key->name);
3992 } else if (!strcmp(cmd->name, "help|?")) {
3993 readline_set_completion_index(cur_mon->rs, strlen(str));
3994 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
3995 cmd_completion(str, cmd->name);
3998 break;
3999 default:
4000 break;
4004 cleanup:
4005 for (i = 0; i < nb_args; i++) {
4006 qemu_free(args[i]);
4010 static int monitor_can_read(void *opaque)
4012 Monitor *mon = opaque;
4014 return (mon->suspend_cnt == 0) ? 1 : 0;
4017 static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4019 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4020 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4024 * Argument validation rules:
4026 * 1. The argument must exist in cmd_args qdict
4027 * 2. The argument type must be the expected one
4029 * Special case: If the argument doesn't exist in cmd_args and
4030 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4031 * checking is skipped for it.
4033 static int check_client_args_type(const QDict *client_args,
4034 const QDict *cmd_args, int flags)
4036 const QDictEntry *ent;
4038 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4039 QObject *obj;
4040 QString *arg_type;
4041 const QObject *client_arg = qdict_entry_value(ent);
4042 const char *client_arg_name = qdict_entry_key(ent);
4044 obj = qdict_get(cmd_args, client_arg_name);
4045 if (!obj) {
4046 if (flags & QMP_ACCEPT_UNKNOWNS) {
4047 /* handler accepts unknowns */
4048 continue;
4050 /* client arg doesn't exist */
4051 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4052 return -1;
4055 arg_type = qobject_to_qstring(obj);
4056 assert(arg_type != NULL);
4058 /* check if argument's type is correct */
4059 switch (qstring_get_str(arg_type)[0]) {
4060 case 'F':
4061 case 'B':
4062 case 's':
4063 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4064 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4065 "string");
4066 return -1;
4068 break;
4069 case 'i':
4070 case 'l':
4071 case 'M':
4072 if (qobject_type(client_arg) != QTYPE_QINT) {
4073 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4074 "int");
4075 return -1;
4077 break;
4078 case 'f':
4079 case 'T':
4080 if (qobject_type(client_arg) != QTYPE_QINT &&
4081 qobject_type(client_arg) != QTYPE_QFLOAT) {
4082 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4083 "number");
4084 return -1;
4086 break;
4087 case 'b':
4088 case '-':
4089 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4090 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4091 "bool");
4092 return -1;
4094 break;
4095 case 'O':
4096 assert(flags & QMP_ACCEPT_UNKNOWNS);
4097 break;
4098 case '/':
4099 case '.':
4101 * These types are not supported by QMP and thus are not
4102 * handled here. Fall through.
4104 default:
4105 abort();
4109 return 0;
4113 * - Check if the client has passed all mandatory args
4114 * - Set special flags for argument validation
4116 static int check_mandatory_args(const QDict *cmd_args,
4117 const QDict *client_args, int *flags)
4119 const QDictEntry *ent;
4121 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4122 const char *cmd_arg_name = qdict_entry_key(ent);
4123 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4124 assert(type != NULL);
4126 if (qstring_get_str(type)[0] == 'O') {
4127 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4128 *flags |= QMP_ACCEPT_UNKNOWNS;
4129 } else if (qstring_get_str(type)[0] != '-' &&
4130 qstring_get_str(type)[1] != '?' &&
4131 !qdict_haskey(client_args, cmd_arg_name)) {
4132 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4133 return -1;
4137 return 0;
4140 static QDict *qdict_from_args_type(const char *args_type)
4142 int i;
4143 QDict *qdict;
4144 QString *key, *type, *cur_qs;
4146 assert(args_type != NULL);
4148 qdict = qdict_new();
4150 if (args_type == NULL || args_type[0] == '\0') {
4151 /* no args, empty qdict */
4152 goto out;
4155 key = qstring_new();
4156 type = qstring_new();
4158 cur_qs = key;
4160 for (i = 0;; i++) {
4161 switch (args_type[i]) {
4162 case ',':
4163 case '\0':
4164 qdict_put(qdict, qstring_get_str(key), type);
4165 QDECREF(key);
4166 if (args_type[i] == '\0') {
4167 goto out;
4169 type = qstring_new(); /* qdict has ref */
4170 cur_qs = key = qstring_new();
4171 break;
4172 case ':':
4173 cur_qs = type;
4174 break;
4175 default:
4176 qstring_append_chr(cur_qs, args_type[i]);
4177 break;
4181 out:
4182 return qdict;
4186 * Client argument checking rules:
4188 * 1. Client must provide all mandatory arguments
4189 * 2. Each argument provided by the client must be expected
4190 * 3. Each argument provided by the client must have the type expected
4191 * by the command
4193 static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4195 int flags, err;
4196 QDict *cmd_args;
4198 cmd_args = qdict_from_args_type(cmd->args_type);
4200 flags = 0;
4201 err = check_mandatory_args(cmd_args, client_args, &flags);
4202 if (err) {
4203 goto out;
4206 err = check_client_args_type(client_args, cmd_args, flags);
4208 out:
4209 QDECREF(cmd_args);
4210 return err;
4214 * Input object checking rules
4216 * 1. Input object must be a dict
4217 * 2. The "execute" key must exist
4218 * 3. The "execute" key must be a string
4219 * 4. If the "arguments" key exists, it must be a dict
4220 * 5. If the "id" key exists, it can be anything (ie. json-value)
4221 * 6. Any argument not listed above is considered invalid
4223 static QDict *qmp_check_input_obj(QObject *input_obj)
4225 const QDictEntry *ent;
4226 int has_exec_key = 0;
4227 QDict *input_dict;
4229 if (qobject_type(input_obj) != QTYPE_QDICT) {
4230 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4231 return NULL;
4234 input_dict = qobject_to_qdict(input_obj);
4236 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4237 const char *arg_name = qdict_entry_key(ent);
4238 const QObject *arg_obj = qdict_entry_value(ent);
4240 if (!strcmp(arg_name, "execute")) {
4241 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4242 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4243 "string");
4244 return NULL;
4246 has_exec_key = 1;
4247 } else if (!strcmp(arg_name, "arguments")) {
4248 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4249 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4250 "object");
4251 return NULL;
4253 } else if (!strcmp(arg_name, "id")) {
4254 /* FIXME: check duplicated IDs for async commands */
4255 } else {
4256 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4257 return NULL;
4261 if (!has_exec_key) {
4262 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4263 return NULL;
4266 return input_dict;
4269 static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4271 int err;
4272 QObject *obj;
4273 QDict *input, *args;
4274 const mon_cmd_t *cmd;
4275 Monitor *mon = cur_mon;
4276 const char *cmd_name, *info_item;
4278 args = input = NULL;
4280 obj = json_parser_parse(tokens, NULL);
4281 if (!obj) {
4282 // FIXME: should be triggered in json_parser_parse()
4283 qerror_report(QERR_JSON_PARSING);
4284 goto err_out;
4287 input = qmp_check_input_obj(obj);
4288 if (!input) {
4289 qobject_decref(obj);
4290 goto err_out;
4293 mon->mc->id = qdict_get(input, "id");
4294 qobject_incref(mon->mc->id);
4296 cmd_name = qdict_get_str(input, "execute");
4297 if (invalid_qmp_mode(mon, cmd_name)) {
4298 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4299 goto err_out;
4303 * XXX: We need this special case until we get info handlers
4304 * converted into 'query-' commands
4306 if (compare_cmd(cmd_name, "info")) {
4307 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4308 goto err_out;
4309 } else if (strstart(cmd_name, "query-", &info_item)) {
4310 cmd = monitor_find_command("info");
4311 qdict_put_obj(input, "arguments",
4312 qobject_from_jsonf("{ 'item': %s }", info_item));
4313 } else {
4314 cmd = monitor_find_command(cmd_name);
4315 if (!cmd || !monitor_handler_ported(cmd)
4316 || monitor_cmd_user_only(cmd)) {
4317 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4318 goto err_out;
4322 obj = qdict_get(input, "arguments");
4323 if (!obj) {
4324 args = qdict_new();
4325 } else {
4326 args = qobject_to_qdict(obj);
4327 QINCREF(args);
4330 err = qmp_check_client_args(cmd, args);
4331 if (err < 0) {
4332 goto err_out;
4335 if (monitor_handler_is_async(cmd)) {
4336 err = qmp_async_cmd_handler(mon, cmd, args);
4337 if (err) {
4338 /* emit the error response */
4339 goto err_out;
4341 } else {
4342 monitor_call_handler(mon, cmd, args);
4345 goto out;
4347 err_out:
4348 monitor_protocol_emitter(mon, NULL);
4349 out:
4350 QDECREF(input);
4351 QDECREF(args);
4355 * monitor_control_read(): Read and handle QMP input
4357 static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4359 Monitor *old_mon = cur_mon;
4361 cur_mon = opaque;
4363 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
4365 cur_mon = old_mon;
4368 static void monitor_read(void *opaque, const uint8_t *buf, int size)
4370 Monitor *old_mon = cur_mon;
4371 int i;
4373 cur_mon = opaque;
4375 if (cur_mon->rs) {
4376 for (i = 0; i < size; i++)
4377 readline_handle_byte(cur_mon->rs, buf[i]);
4378 } else {
4379 if (size == 0 || buf[size - 1] != 0)
4380 monitor_printf(cur_mon, "corrupted command\n");
4381 else
4382 handle_user_command(cur_mon, (char *)buf);
4385 cur_mon = old_mon;
4388 static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
4390 monitor_suspend(mon);
4391 handle_user_command(mon, cmdline);
4392 monitor_resume(mon);
4395 int monitor_suspend(Monitor *mon)
4397 if (!mon->rs)
4398 return -ENOTTY;
4399 mon->suspend_cnt++;
4400 return 0;
4403 void monitor_resume(Monitor *mon)
4405 if (!mon->rs)
4406 return;
4407 if (--mon->suspend_cnt == 0)
4408 readline_show_prompt(mon->rs);
4411 static QObject *get_qmp_greeting(void)
4413 QObject *ver;
4415 do_info_version(NULL, &ver);
4416 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4420 * monitor_control_event(): Print QMP gretting
4422 static void monitor_control_event(void *opaque, int event)
4424 QObject *data;
4425 Monitor *mon = opaque;
4427 switch (event) {
4428 case CHR_EVENT_OPENED:
4429 mon->mc->command_mode = 0;
4430 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
4431 data = get_qmp_greeting();
4432 monitor_json_emitter(mon, data);
4433 qobject_decref(data);
4434 break;
4435 case CHR_EVENT_CLOSED:
4436 json_message_parser_destroy(&mon->mc->parser);
4437 break;
4441 static void monitor_event(void *opaque, int event)
4443 Monitor *mon = opaque;
4445 switch (event) {
4446 case CHR_EVENT_MUX_IN:
4447 mon->mux_out = 0;
4448 if (mon->reset_seen) {
4449 readline_restart(mon->rs);
4450 monitor_resume(mon);
4451 monitor_flush(mon);
4452 } else {
4453 mon->suspend_cnt = 0;
4455 break;
4457 case CHR_EVENT_MUX_OUT:
4458 if (mon->reset_seen) {
4459 if (mon->suspend_cnt == 0) {
4460 monitor_printf(mon, "\n");
4462 monitor_flush(mon);
4463 monitor_suspend(mon);
4464 } else {
4465 mon->suspend_cnt++;
4467 mon->mux_out = 1;
4468 break;
4470 case CHR_EVENT_OPENED:
4471 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4472 "information\n", QEMU_VERSION);
4473 if (!mon->mux_out) {
4474 readline_show_prompt(mon->rs);
4476 mon->reset_seen = 1;
4477 break;
4483 * Local variables:
4484 * c-indent-level: 4
4485 * c-basic-offset: 4
4486 * tab-width: 8
4487 * End:
4490 void monitor_init(CharDriverState *chr, int flags)
4492 static int is_first_init = 1;
4493 Monitor *mon;
4495 if (is_first_init) {
4496 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
4497 is_first_init = 0;
4500 mon = qemu_mallocz(sizeof(*mon));
4502 mon->chr = chr;
4503 mon->flags = flags;
4504 if (flags & MONITOR_USE_READLINE) {
4505 mon->rs = readline_init(mon, monitor_find_completion);
4506 monitor_read_command(mon, 0);
4509 if (monitor_ctrl_mode(mon)) {
4510 mon->mc = qemu_mallocz(sizeof(MonitorControl));
4511 /* Control mode requires special handlers */
4512 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4513 monitor_control_event, mon);
4514 } else {
4515 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4516 monitor_event, mon);
4519 QLIST_INSERT_HEAD(&mon_list, mon, entry);
4520 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4521 default_mon = mon;
4524 static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
4526 BlockDriverState *bs = opaque;
4527 int ret = 0;
4529 if (bdrv_set_key(bs, password) != 0) {
4530 monitor_printf(mon, "invalid password\n");
4531 ret = -EPERM;
4533 if (mon->password_completion_cb)
4534 mon->password_completion_cb(mon->password_opaque, ret);
4536 monitor_read_command(mon, 1);
4539 int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4540 BlockDriverCompletionFunc *completion_cb,
4541 void *opaque)
4543 int err;
4545 if (!bdrv_key_required(bs)) {
4546 if (completion_cb)
4547 completion_cb(opaque, 0);
4548 return 0;
4551 if (monitor_ctrl_mode(mon)) {
4552 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
4553 return -1;
4556 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4557 bdrv_get_encrypted_filename(bs));
4559 mon->password_completion_cb = completion_cb;
4560 mon->password_opaque = opaque;
4562 err = monitor_read_password(mon, bdrv_password_cb, bs);
4564 if (err && completion_cb)
4565 completion_cb(opaque, err);
4567 return err;