qapi: Convert query-chardev
[qemu.git] / monitor.c
blob86a0dad2cbe67617cf741d484388fd8d6056afda
1 /*
2 * QEMU monitor
4 * Copyright (c) 2003-2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
24 #include <dirent.h>
25 #include "hw/hw.h"
26 #include "hw/qdev.h"
27 #include "hw/usb.h"
28 #include "hw/pcmcia.h"
29 #include "hw/pc.h"
30 #include "hw/pci.h"
31 #include "hw/watchdog.h"
32 #include "hw/loader.h"
33 #include "gdbstub.h"
34 #include "net.h"
35 #include "net/slirp.h"
36 #include "qemu-char.h"
37 #include "ui/qemu-spice.h"
38 #include "sysemu.h"
39 #include "monitor.h"
40 #include "readline.h"
41 #include "console.h"
42 #include "blockdev.h"
43 #include "audio/audio.h"
44 #include "disas.h"
45 #include "balloon.h"
46 #include "qemu-timer.h"
47 #include "migration.h"
48 #include "kvm.h"
49 #include "acl.h"
50 #include "qint.h"
51 #include "qfloat.h"
52 #include "qlist.h"
53 #include "qbool.h"
54 #include "qstring.h"
55 #include "qjson.h"
56 #include "json-streamer.h"
57 #include "json-parser.h"
58 #include "osdep.h"
59 #include "cpu.h"
60 #include "trace/control.h"
61 #ifdef CONFIG_TRACE_SIMPLE
62 #include "trace/simple.h"
63 #endif
64 #include "trace/control.h"
65 #include "ui/qemu-spice.h"
66 #include "memory.h"
67 #include "qmp-commands.h"
68 #include "hmp.h"
70 //#define DEBUG
71 //#define DEBUG_COMPLETION
74 * Supported types:
76 * 'F' filename
77 * 'B' block device name
78 * 's' string (accept optional quote)
79 * 'O' option string of the form NAME=VALUE,...
80 * parsed according to QemuOptsList given by its name
81 * Example: 'device:O' uses qemu_device_opts.
82 * Restriction: only lists with empty desc are supported
83 * TODO lift the restriction
84 * 'i' 32 bit integer
85 * 'l' target long (32 or 64 bit)
86 * 'M' just like 'l', except in user mode the value is
87 * multiplied by 2^20 (think Mebibyte)
88 * 'o' octets (aka bytes)
89 * user mode accepts an optional T, t, G, g, M, m, K, k
90 * suffix, which multiplies the value by 2^40 for
91 * suffixes T and t, 2^30 for suffixes G and g, 2^20 for
92 * M and m, 2^10 for K and k
93 * 'T' double
94 * user mode accepts an optional ms, us, ns suffix,
95 * which divides the value by 1e3, 1e6, 1e9, respectively
96 * '/' optional gdb-like print format (like "/10x")
98 * '?' optional type (for all types, except '/')
99 * '.' other form of optional type (for 'i' and 'l')
100 * 'b' boolean
101 * user mode accepts "on" or "off"
102 * '-' optional parameter (eg. '-f')
106 typedef struct MonitorCompletionData MonitorCompletionData;
107 struct MonitorCompletionData {
108 Monitor *mon;
109 void (*user_print)(Monitor *mon, const QObject *data);
112 typedef struct mon_cmd_t {
113 const char *name;
114 const char *args_type;
115 const char *params;
116 const char *help;
117 void (*user_print)(Monitor *mon, const QObject *data);
118 union {
119 void (*info)(Monitor *mon);
120 void (*info_new)(Monitor *mon, QObject **ret_data);
121 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
122 void (*cmd)(Monitor *mon, const QDict *qdict);
123 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
124 int (*cmd_async)(Monitor *mon, const QDict *params,
125 MonitorCompletion *cb, void *opaque);
126 } mhandler;
127 bool qapi;
128 int flags;
129 } mon_cmd_t;
131 /* file descriptors passed via SCM_RIGHTS */
132 typedef struct mon_fd_t mon_fd_t;
133 struct mon_fd_t {
134 char *name;
135 int fd;
136 QLIST_ENTRY(mon_fd_t) next;
139 typedef struct MonitorControl {
140 QObject *id;
141 JSONMessageParser parser;
142 int command_mode;
143 } MonitorControl;
145 struct Monitor {
146 CharDriverState *chr;
147 int mux_out;
148 int reset_seen;
149 int flags;
150 int suspend_cnt;
151 uint8_t outbuf[1024];
152 int outbuf_index;
153 ReadLineState *rs;
154 MonitorControl *mc;
155 CPUState *mon_cpu;
156 BlockDriverCompletionFunc *password_completion_cb;
157 void *password_opaque;
158 #ifdef CONFIG_DEBUG_MONITOR
159 int print_calls_nr;
160 #endif
161 QError *error;
162 QLIST_HEAD(,mon_fd_t) fds;
163 QLIST_ENTRY(Monitor) entry;
166 #ifdef CONFIG_DEBUG_MONITOR
167 #define MON_DEBUG(fmt, ...) do { \
168 fprintf(stderr, "Monitor: "); \
169 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
171 static inline void mon_print_count_inc(Monitor *mon)
173 mon->print_calls_nr++;
176 static inline void mon_print_count_init(Monitor *mon)
178 mon->print_calls_nr = 0;
181 static inline int mon_print_count_get(const Monitor *mon)
183 return mon->print_calls_nr;
186 #else /* !CONFIG_DEBUG_MONITOR */
187 #define MON_DEBUG(fmt, ...) do { } while (0)
188 static inline void mon_print_count_inc(Monitor *mon) { }
189 static inline void mon_print_count_init(Monitor *mon) { }
190 static inline int mon_print_count_get(const Monitor *mon) { return 0; }
191 #endif /* CONFIG_DEBUG_MONITOR */
193 /* QMP checker flags */
194 #define QMP_ACCEPT_UNKNOWNS 1
196 static QLIST_HEAD(mon_list, Monitor) mon_list;
198 static const mon_cmd_t mon_cmds[];
199 static const mon_cmd_t info_cmds[];
201 static const mon_cmd_t qmp_cmds[];
202 static const mon_cmd_t qmp_query_cmds[];
204 Monitor *cur_mon;
205 Monitor *default_mon;
207 static void monitor_command_cb(Monitor *mon, const char *cmdline,
208 void *opaque);
210 static inline int qmp_cmd_mode(const Monitor *mon)
212 return (mon->mc ? mon->mc->command_mode : 0);
215 /* Return true if in control mode, false otherwise */
216 static inline int monitor_ctrl_mode(const Monitor *mon)
218 return (mon->flags & MONITOR_USE_CONTROL);
221 /* Return non-zero iff we have a current monitor, and it is in QMP mode. */
222 int monitor_cur_is_qmp(void)
224 return cur_mon && monitor_ctrl_mode(cur_mon);
227 static void monitor_read_command(Monitor *mon, int show_prompt)
229 if (!mon->rs)
230 return;
232 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
233 if (show_prompt)
234 readline_show_prompt(mon->rs);
237 static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
238 void *opaque)
240 if (monitor_ctrl_mode(mon)) {
241 qerror_report(QERR_MISSING_PARAMETER, "password");
242 return -EINVAL;
243 } else if (mon->rs) {
244 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
245 /* prompt is printed on return from the command handler */
246 return 0;
247 } else {
248 monitor_printf(mon, "terminal does not support password prompting\n");
249 return -ENOTTY;
253 void monitor_flush(Monitor *mon)
255 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
256 qemu_chr_fe_write(mon->chr, mon->outbuf, mon->outbuf_index);
257 mon->outbuf_index = 0;
261 /* flush at every end of line or if the buffer is full */
262 static void monitor_puts(Monitor *mon, const char *str)
264 char c;
266 for(;;) {
267 c = *str++;
268 if (c == '\0')
269 break;
270 if (c == '\n')
271 mon->outbuf[mon->outbuf_index++] = '\r';
272 mon->outbuf[mon->outbuf_index++] = c;
273 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
274 || c == '\n')
275 monitor_flush(mon);
279 void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
281 char buf[4096];
283 if (!mon)
284 return;
286 mon_print_count_inc(mon);
288 if (monitor_ctrl_mode(mon)) {
289 return;
292 vsnprintf(buf, sizeof(buf), fmt, ap);
293 monitor_puts(mon, buf);
296 void monitor_printf(Monitor *mon, const char *fmt, ...)
298 va_list ap;
299 va_start(ap, fmt);
300 monitor_vprintf(mon, fmt, ap);
301 va_end(ap);
304 void monitor_print_filename(Monitor *mon, const char *filename)
306 int i;
308 for (i = 0; filename[i]; i++) {
309 switch (filename[i]) {
310 case ' ':
311 case '"':
312 case '\\':
313 monitor_printf(mon, "\\%c", filename[i]);
314 break;
315 case '\t':
316 monitor_printf(mon, "\\t");
317 break;
318 case '\r':
319 monitor_printf(mon, "\\r");
320 break;
321 case '\n':
322 monitor_printf(mon, "\\n");
323 break;
324 default:
325 monitor_printf(mon, "%c", filename[i]);
326 break;
331 static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
332 const char *fmt, ...)
334 va_list ap;
335 va_start(ap, fmt);
336 monitor_vprintf((Monitor *)stream, fmt, ap);
337 va_end(ap);
338 return 0;
341 static void monitor_user_noop(Monitor *mon, const QObject *data) { }
343 static inline int handler_is_qobject(const mon_cmd_t *cmd)
345 return cmd->user_print != NULL;
348 static inline bool handler_is_async(const mon_cmd_t *cmd)
350 return cmd->flags & MONITOR_CMD_ASYNC;
353 static inline int monitor_has_error(const Monitor *mon)
355 return mon->error != NULL;
358 static void monitor_json_emitter(Monitor *mon, const QObject *data)
360 QString *json;
362 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
363 qobject_to_json(data);
364 assert(json != NULL);
366 qstring_append_chr(json, '\n');
367 monitor_puts(mon, qstring_get_str(json));
369 QDECREF(json);
372 static void monitor_protocol_emitter(Monitor *mon, QObject *data)
374 QDict *qmp;
376 qmp = qdict_new();
378 if (!monitor_has_error(mon)) {
379 /* success response */
380 if (data) {
381 qobject_incref(data);
382 qdict_put_obj(qmp, "return", data);
383 } else {
384 /* return an empty QDict by default */
385 qdict_put(qmp, "return", qdict_new());
387 } else {
388 /* error response */
389 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
390 qdict_put(qmp, "error", mon->error->error);
391 QINCREF(mon->error->error);
392 QDECREF(mon->error);
393 mon->error = NULL;
396 if (mon->mc->id) {
397 qdict_put_obj(qmp, "id", mon->mc->id);
398 mon->mc->id = NULL;
401 monitor_json_emitter(mon, QOBJECT(qmp));
402 QDECREF(qmp);
405 static void timestamp_put(QDict *qdict)
407 int err;
408 QObject *obj;
409 qemu_timeval tv;
411 err = qemu_gettimeofday(&tv);
412 if (err < 0)
413 return;
415 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
416 "'microseconds': %" PRId64 " }",
417 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
418 qdict_put_obj(qdict, "timestamp", obj);
422 * monitor_protocol_event(): Generate a Monitor event
424 * Event-specific data can be emitted through the (optional) 'data' parameter.
426 void monitor_protocol_event(MonitorEvent event, QObject *data)
428 QDict *qmp;
429 const char *event_name;
430 Monitor *mon;
432 assert(event < QEVENT_MAX);
434 switch (event) {
435 case QEVENT_SHUTDOWN:
436 event_name = "SHUTDOWN";
437 break;
438 case QEVENT_RESET:
439 event_name = "RESET";
440 break;
441 case QEVENT_POWERDOWN:
442 event_name = "POWERDOWN";
443 break;
444 case QEVENT_STOP:
445 event_name = "STOP";
446 break;
447 case QEVENT_RESUME:
448 event_name = "RESUME";
449 break;
450 case QEVENT_VNC_CONNECTED:
451 event_name = "VNC_CONNECTED";
452 break;
453 case QEVENT_VNC_INITIALIZED:
454 event_name = "VNC_INITIALIZED";
455 break;
456 case QEVENT_VNC_DISCONNECTED:
457 event_name = "VNC_DISCONNECTED";
458 break;
459 case QEVENT_BLOCK_IO_ERROR:
460 event_name = "BLOCK_IO_ERROR";
461 break;
462 case QEVENT_RTC_CHANGE:
463 event_name = "RTC_CHANGE";
464 break;
465 case QEVENT_WATCHDOG:
466 event_name = "WATCHDOG";
467 break;
468 case QEVENT_SPICE_CONNECTED:
469 event_name = "SPICE_CONNECTED";
470 break;
471 case QEVENT_SPICE_INITIALIZED:
472 event_name = "SPICE_INITIALIZED";
473 break;
474 case QEVENT_SPICE_DISCONNECTED:
475 event_name = "SPICE_DISCONNECTED";
476 break;
477 default:
478 abort();
479 break;
482 qmp = qdict_new();
483 timestamp_put(qmp);
484 qdict_put(qmp, "event", qstring_from_str(event_name));
485 if (data) {
486 qobject_incref(data);
487 qdict_put_obj(qmp, "data", data);
490 QLIST_FOREACH(mon, &mon_list, entry) {
491 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
492 monitor_json_emitter(mon, QOBJECT(qmp));
495 QDECREF(qmp);
498 static int do_qmp_capabilities(Monitor *mon, const QDict *params,
499 QObject **ret_data)
501 /* Will setup QMP capabilities in the future */
502 if (monitor_ctrl_mode(mon)) {
503 mon->mc->command_mode = 1;
506 return 0;
509 static int mon_set_cpu(int cpu_index);
510 static void handle_user_command(Monitor *mon, const char *cmdline);
512 static int do_hmp_passthrough(Monitor *mon, const QDict *params,
513 QObject **ret_data)
515 int ret = 0;
516 Monitor *old_mon, hmp;
517 CharDriverState mchar;
519 memset(&hmp, 0, sizeof(hmp));
520 qemu_chr_init_mem(&mchar);
521 hmp.chr = &mchar;
523 old_mon = cur_mon;
524 cur_mon = &hmp;
526 if (qdict_haskey(params, "cpu-index")) {
527 ret = mon_set_cpu(qdict_get_int(params, "cpu-index"));
528 if (ret < 0) {
529 cur_mon = old_mon;
530 qerror_report(QERR_INVALID_PARAMETER_VALUE, "cpu-index", "a CPU number");
531 goto out;
535 handle_user_command(&hmp, qdict_get_str(params, "command-line"));
536 cur_mon = old_mon;
538 if (qemu_chr_mem_osize(hmp.chr) > 0) {
539 *ret_data = QOBJECT(qemu_chr_mem_to_qs(hmp.chr));
542 out:
543 qemu_chr_close_mem(hmp.chr);
544 return ret;
547 static int compare_cmd(const char *name, const char *list)
549 const char *p, *pstart;
550 int len;
551 len = strlen(name);
552 p = list;
553 for(;;) {
554 pstart = p;
555 p = strchr(p, '|');
556 if (!p)
557 p = pstart + strlen(pstart);
558 if ((p - pstart) == len && !memcmp(pstart, name, len))
559 return 1;
560 if (*p == '\0')
561 break;
562 p++;
564 return 0;
567 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
568 const char *prefix, const char *name)
570 const mon_cmd_t *cmd;
572 for(cmd = cmds; cmd->name != NULL; cmd++) {
573 if (!name || !strcmp(name, cmd->name))
574 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
575 cmd->params, cmd->help);
579 static void help_cmd(Monitor *mon, const char *name)
581 if (name && !strcmp(name, "info")) {
582 help_cmd_dump(mon, info_cmds, "info ", NULL);
583 } else {
584 help_cmd_dump(mon, mon_cmds, "", name);
585 if (name && !strcmp(name, "log")) {
586 const CPULogItem *item;
587 monitor_printf(mon, "Log items (comma separated):\n");
588 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
589 for(item = cpu_log_items; item->mask != 0; item++) {
590 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
596 static void do_help_cmd(Monitor *mon, const QDict *qdict)
598 help_cmd(mon, qdict_get_try_str(qdict, "name"));
601 static void do_trace_event_set_state(Monitor *mon, const QDict *qdict)
603 const char *tp_name = qdict_get_str(qdict, "name");
604 bool new_state = qdict_get_bool(qdict, "option");
605 int ret = trace_event_set_state(tp_name, new_state);
607 if (!ret) {
608 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
612 #ifdef CONFIG_SIMPLE_TRACE
613 static void do_trace_file(Monitor *mon, const QDict *qdict)
615 const char *op = qdict_get_try_str(qdict, "op");
616 const char *arg = qdict_get_try_str(qdict, "arg");
618 if (!op) {
619 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
620 } else if (!strcmp(op, "on")) {
621 st_set_trace_file_enabled(true);
622 } else if (!strcmp(op, "off")) {
623 st_set_trace_file_enabled(false);
624 } else if (!strcmp(op, "flush")) {
625 st_flush_trace_buffer();
626 } else if (!strcmp(op, "set")) {
627 if (arg) {
628 st_set_trace_file(arg);
630 } else {
631 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
632 help_cmd(mon, "trace-file");
635 #endif
637 static void user_monitor_complete(void *opaque, QObject *ret_data)
639 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
641 if (ret_data) {
642 data->user_print(data->mon, ret_data);
644 monitor_resume(data->mon);
645 g_free(data);
648 static void qmp_monitor_complete(void *opaque, QObject *ret_data)
650 monitor_protocol_emitter(opaque, ret_data);
653 static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
654 const QDict *params)
656 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
659 static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
661 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
664 static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
665 const QDict *params)
667 int ret;
669 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
670 cb_data->mon = mon;
671 cb_data->user_print = cmd->user_print;
672 monitor_suspend(mon);
673 ret = cmd->mhandler.cmd_async(mon, params,
674 user_monitor_complete, cb_data);
675 if (ret < 0) {
676 monitor_resume(mon);
677 g_free(cb_data);
681 static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
683 int ret;
685 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
686 cb_data->mon = mon;
687 cb_data->user_print = cmd->user_print;
688 monitor_suspend(mon);
689 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
690 if (ret < 0) {
691 monitor_resume(mon);
692 g_free(cb_data);
696 static void do_info(Monitor *mon, const QDict *qdict)
698 const mon_cmd_t *cmd;
699 const char *item = qdict_get_try_str(qdict, "item");
701 if (!item) {
702 goto help;
705 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
706 if (compare_cmd(item, cmd->name))
707 break;
710 if (cmd->name == NULL) {
711 goto help;
714 if (handler_is_async(cmd)) {
715 user_async_info_handler(mon, cmd);
716 } else if (handler_is_qobject(cmd)) {
717 QObject *info_data = NULL;
719 cmd->mhandler.info_new(mon, &info_data);
720 if (info_data) {
721 cmd->user_print(mon, info_data);
722 qobject_decref(info_data);
724 } else {
725 cmd->mhandler.info(mon);
728 return;
730 help:
731 help_cmd(mon, "info");
734 static QObject *get_cmd_dict(const char *name)
736 const char *p;
738 /* Remove '|' from some commands */
739 p = strchr(name, '|');
740 if (p) {
741 p++;
742 } else {
743 p = name;
746 return qobject_from_jsonf("{ 'name': %s }", p);
749 static void do_info_commands(Monitor *mon, QObject **ret_data)
751 QList *cmd_list;
752 const mon_cmd_t *cmd;
754 cmd_list = qlist_new();
756 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
757 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
760 for (cmd = qmp_query_cmds; cmd->name != NULL; cmd++) {
761 char buf[128];
762 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
763 qlist_append_obj(cmd_list, get_cmd_dict(buf));
766 *ret_data = QOBJECT(cmd_list);
769 /* get the current CPU defined by the user */
770 static int mon_set_cpu(int cpu_index)
772 CPUState *env;
774 for(env = first_cpu; env != NULL; env = env->next_cpu) {
775 if (env->cpu_index == cpu_index) {
776 cur_mon->mon_cpu = env;
777 return 0;
780 return -1;
783 static CPUState *mon_get_cpu(void)
785 if (!cur_mon->mon_cpu) {
786 mon_set_cpu(0);
788 cpu_synchronize_state(cur_mon->mon_cpu);
789 return cur_mon->mon_cpu;
792 static void do_info_registers(Monitor *mon)
794 CPUState *env;
795 env = mon_get_cpu();
796 #ifdef TARGET_I386
797 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
798 X86_DUMP_FPU);
799 #else
800 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
802 #endif
805 static void print_cpu_iter(QObject *obj, void *opaque)
807 QDict *cpu;
808 int active = ' ';
809 Monitor *mon = opaque;
811 assert(qobject_type(obj) == QTYPE_QDICT);
812 cpu = qobject_to_qdict(obj);
814 if (qdict_get_bool(cpu, "current")) {
815 active = '*';
818 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
820 #if defined(TARGET_I386)
821 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
822 (target_ulong) qdict_get_int(cpu, "pc"));
823 #elif defined(TARGET_PPC)
824 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
825 (target_long) qdict_get_int(cpu, "nip"));
826 #elif defined(TARGET_SPARC)
827 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
828 (target_long) qdict_get_int(cpu, "pc"));
829 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
830 (target_long) qdict_get_int(cpu, "npc"));
831 #elif defined(TARGET_MIPS)
832 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
833 (target_long) qdict_get_int(cpu, "PC"));
834 #endif
836 if (qdict_get_bool(cpu, "halted")) {
837 monitor_printf(mon, " (halted)");
840 monitor_printf(mon, " thread_id=%" PRId64 " ",
841 qdict_get_int(cpu, "thread_id"));
843 monitor_printf(mon, "\n");
846 static void monitor_print_cpus(Monitor *mon, const QObject *data)
848 QList *cpu_list;
850 assert(qobject_type(data) == QTYPE_QLIST);
851 cpu_list = qobject_to_qlist(data);
852 qlist_iter(cpu_list, print_cpu_iter, mon);
855 static void do_info_cpus(Monitor *mon, QObject **ret_data)
857 CPUState *env;
858 QList *cpu_list;
860 cpu_list = qlist_new();
862 /* just to set the default cpu if not already done */
863 mon_get_cpu();
865 for(env = first_cpu; env != NULL; env = env->next_cpu) {
866 QDict *cpu;
867 QObject *obj;
869 cpu_synchronize_state(env);
871 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
872 env->cpu_index, env == mon->mon_cpu,
873 env->halted);
875 cpu = qobject_to_qdict(obj);
877 #if defined(TARGET_I386)
878 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
879 #elif defined(TARGET_PPC)
880 qdict_put(cpu, "nip", qint_from_int(env->nip));
881 #elif defined(TARGET_SPARC)
882 qdict_put(cpu, "pc", qint_from_int(env->pc));
883 qdict_put(cpu, "npc", qint_from_int(env->npc));
884 #elif defined(TARGET_MIPS)
885 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
886 #endif
887 qdict_put(cpu, "thread_id", qint_from_int(env->thread_id));
889 qlist_append(cpu_list, cpu);
892 *ret_data = QOBJECT(cpu_list);
895 static int do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
897 int index = qdict_get_int(qdict, "index");
898 if (mon_set_cpu(index) < 0) {
899 qerror_report(QERR_INVALID_PARAMETER_VALUE, "index",
900 "a CPU number");
901 return -1;
903 return 0;
906 static void do_info_jit(Monitor *mon)
908 dump_exec_info((FILE *)mon, monitor_fprintf);
911 static void do_info_history(Monitor *mon)
913 int i;
914 const char *str;
916 if (!mon->rs)
917 return;
918 i = 0;
919 for(;;) {
920 str = readline_get_history(mon->rs, i);
921 if (!str)
922 break;
923 monitor_printf(mon, "%d: '%s'\n", i, str);
924 i++;
928 #if defined(TARGET_PPC)
929 /* XXX: not implemented in other targets */
930 static void do_info_cpu_stats(Monitor *mon)
932 CPUState *env;
934 env = mon_get_cpu();
935 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
937 #endif
939 #if defined(CONFIG_TRACE_SIMPLE)
940 static void do_info_trace(Monitor *mon)
942 st_print_trace((FILE *)mon, &monitor_fprintf);
944 #endif
946 static void do_trace_print_events(Monitor *mon)
948 trace_print_events((FILE *)mon, &monitor_fprintf);
952 * do_quit(): Quit QEMU execution
954 static int do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
956 monitor_suspend(mon);
957 no_shutdown = 0;
958 qemu_system_shutdown_request();
960 return 0;
963 #ifdef CONFIG_VNC
964 static int change_vnc_password(const char *password)
966 if (!password || !password[0]) {
967 if (vnc_display_disable_login(NULL)) {
968 qerror_report(QERR_SET_PASSWD_FAILED);
969 return -1;
971 return 0;
974 if (vnc_display_password(NULL, password) < 0) {
975 qerror_report(QERR_SET_PASSWD_FAILED);
976 return -1;
979 return 0;
982 static void change_vnc_password_cb(Monitor *mon, const char *password,
983 void *opaque)
985 change_vnc_password(password);
986 monitor_read_command(mon, 1);
989 static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
991 if (strcmp(target, "passwd") == 0 ||
992 strcmp(target, "password") == 0) {
993 if (arg) {
994 char password[9];
995 strncpy(password, arg, sizeof(password));
996 password[sizeof(password) - 1] = '\0';
997 return change_vnc_password(password);
998 } else {
999 return monitor_read_password(mon, change_vnc_password_cb, NULL);
1001 } else {
1002 if (vnc_display_open(NULL, target) < 0) {
1003 qerror_report(QERR_VNC_SERVER_FAILED, target);
1004 return -1;
1008 return 0;
1010 #else
1011 static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
1013 qerror_report(QERR_FEATURE_DISABLED, "vnc");
1014 return -ENODEV;
1016 #endif
1019 * do_change(): Change a removable medium, or VNC configuration
1021 static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
1023 const char *device = qdict_get_str(qdict, "device");
1024 const char *target = qdict_get_str(qdict, "target");
1025 const char *arg = qdict_get_try_str(qdict, "arg");
1026 int ret;
1028 if (strcmp(device, "vnc") == 0) {
1029 ret = do_change_vnc(mon, target, arg);
1030 } else {
1031 ret = do_change_block(mon, device, target, arg);
1034 return ret;
1037 static int set_password(Monitor *mon, const QDict *qdict, QObject **ret_data)
1039 const char *protocol = qdict_get_str(qdict, "protocol");
1040 const char *password = qdict_get_str(qdict, "password");
1041 const char *connected = qdict_get_try_str(qdict, "connected");
1042 int disconnect_if_connected = 0;
1043 int fail_if_connected = 0;
1044 int rc;
1046 if (connected) {
1047 if (strcmp(connected, "fail") == 0) {
1048 fail_if_connected = 1;
1049 } else if (strcmp(connected, "disconnect") == 0) {
1050 disconnect_if_connected = 1;
1051 } else if (strcmp(connected, "keep") == 0) {
1052 /* nothing */
1053 } else {
1054 qerror_report(QERR_INVALID_PARAMETER, "connected");
1055 return -1;
1059 if (strcmp(protocol, "spice") == 0) {
1060 if (!using_spice) {
1061 /* correct one? spice isn't a device ,,, */
1062 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1063 return -1;
1065 rc = qemu_spice_set_passwd(password, fail_if_connected,
1066 disconnect_if_connected);
1067 if (rc != 0) {
1068 qerror_report(QERR_SET_PASSWD_FAILED);
1069 return -1;
1071 return 0;
1074 if (strcmp(protocol, "vnc") == 0) {
1075 if (fail_if_connected || disconnect_if_connected) {
1076 /* vnc supports "connected=keep" only */
1077 qerror_report(QERR_INVALID_PARAMETER, "connected");
1078 return -1;
1080 /* Note that setting an empty password will not disable login through
1081 * this interface. */
1082 return vnc_display_password(NULL, password);
1085 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1086 return -1;
1089 static int expire_password(Monitor *mon, const QDict *qdict, QObject **ret_data)
1091 const char *protocol = qdict_get_str(qdict, "protocol");
1092 const char *whenstr = qdict_get_str(qdict, "time");
1093 time_t when;
1094 int rc;
1096 if (strcmp(whenstr, "now") == 0) {
1097 when = 0;
1098 } else if (strcmp(whenstr, "never") == 0) {
1099 when = TIME_MAX;
1100 } else if (whenstr[0] == '+') {
1101 when = time(NULL) + strtoull(whenstr+1, NULL, 10);
1102 } else {
1103 when = strtoull(whenstr, NULL, 10);
1106 if (strcmp(protocol, "spice") == 0) {
1107 if (!using_spice) {
1108 /* correct one? spice isn't a device ,,, */
1109 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1110 return -1;
1112 rc = qemu_spice_set_pw_expire(when);
1113 if (rc != 0) {
1114 qerror_report(QERR_SET_PASSWD_FAILED);
1115 return -1;
1117 return 0;
1120 if (strcmp(protocol, "vnc") == 0) {
1121 return vnc_display_pw_expire(NULL, when);
1124 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1125 return -1;
1128 static int add_graphics_client(Monitor *mon, const QDict *qdict, QObject **ret_data)
1130 const char *protocol = qdict_get_str(qdict, "protocol");
1131 const char *fdname = qdict_get_str(qdict, "fdname");
1132 CharDriverState *s;
1134 if (strcmp(protocol, "spice") == 0) {
1135 if (!using_spice) {
1136 /* correct one? spice isn't a device ,,, */
1137 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1138 return -1;
1140 qerror_report(QERR_ADD_CLIENT_FAILED);
1141 return -1;
1142 #ifdef CONFIG_VNC
1143 } else if (strcmp(protocol, "vnc") == 0) {
1144 int fd = monitor_get_fd(mon, fdname);
1145 int skipauth = qdict_get_try_bool(qdict, "skipauth", 0);
1146 vnc_display_add_client(NULL, fd, skipauth);
1147 return 0;
1148 #endif
1149 } else if ((s = qemu_chr_find(protocol)) != NULL) {
1150 int fd = monitor_get_fd(mon, fdname);
1151 if (qemu_chr_add_client(s, fd) < 0) {
1152 qerror_report(QERR_ADD_CLIENT_FAILED);
1153 return -1;
1155 return 0;
1158 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1159 return -1;
1162 static int client_migrate_info(Monitor *mon, const QDict *qdict, QObject **ret_data)
1164 const char *protocol = qdict_get_str(qdict, "protocol");
1165 const char *hostname = qdict_get_str(qdict, "hostname");
1166 const char *subject = qdict_get_try_str(qdict, "cert-subject");
1167 int port = qdict_get_try_int(qdict, "port", -1);
1168 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
1169 int ret;
1171 if (strcmp(protocol, "spice") == 0) {
1172 if (!using_spice) {
1173 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1174 return -1;
1177 ret = qemu_spice_migrate_info(hostname, port, tls_port, subject);
1178 if (ret != 0) {
1179 qerror_report(QERR_UNDEFINED_ERROR);
1180 return -1;
1182 return 0;
1185 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1186 return -1;
1189 static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
1191 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
1192 return 0;
1195 static void do_logfile(Monitor *mon, const QDict *qdict)
1197 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
1200 static void do_log(Monitor *mon, const QDict *qdict)
1202 int mask;
1203 const char *items = qdict_get_str(qdict, "items");
1205 if (!strcmp(items, "none")) {
1206 mask = 0;
1207 } else {
1208 mask = cpu_str_to_log_mask(items);
1209 if (!mask) {
1210 help_cmd(mon, "log");
1211 return;
1214 cpu_set_log(mask);
1217 static void do_singlestep(Monitor *mon, const QDict *qdict)
1219 const char *option = qdict_get_try_str(qdict, "option");
1220 if (!option || !strcmp(option, "on")) {
1221 singlestep = 1;
1222 } else if (!strcmp(option, "off")) {
1223 singlestep = 0;
1224 } else {
1225 monitor_printf(mon, "unexpected option %s\n", option);
1230 * do_stop(): Stop VM execution
1232 static int do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
1234 vm_stop(RUN_STATE_PAUSED);
1235 return 0;
1238 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
1240 struct bdrv_iterate_context {
1241 Monitor *mon;
1242 int err;
1246 * do_cont(): Resume emulation.
1248 static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
1250 struct bdrv_iterate_context context = { mon, 0 };
1252 if (runstate_check(RUN_STATE_INMIGRATE)) {
1253 qerror_report(QERR_MIGRATION_EXPECTED);
1254 return -1;
1255 } else if (runstate_check(RUN_STATE_INTERNAL_ERROR) ||
1256 runstate_check(RUN_STATE_SHUTDOWN)) {
1257 qerror_report(QERR_RESET_REQUIRED);
1258 return -1;
1261 bdrv_iterate(encrypted_bdrv_it, &context);
1262 /* only resume the vm if all keys are set and valid */
1263 if (!context.err) {
1264 vm_start();
1265 return 0;
1266 } else {
1267 return -1;
1271 static void bdrv_key_cb(void *opaque, int err)
1273 Monitor *mon = opaque;
1275 /* another key was set successfully, retry to continue */
1276 if (!err)
1277 do_cont(mon, NULL, NULL);
1280 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1282 struct bdrv_iterate_context *context = opaque;
1284 if (!context->err && bdrv_key_required(bs)) {
1285 context->err = -EBUSY;
1286 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1287 context->mon);
1291 static void do_gdbserver(Monitor *mon, const QDict *qdict)
1293 const char *device = qdict_get_try_str(qdict, "device");
1294 if (!device)
1295 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1296 if (gdbserver_start(device) < 0) {
1297 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1298 device);
1299 } else if (strcmp(device, "none") == 0) {
1300 monitor_printf(mon, "Disabled gdbserver\n");
1301 } else {
1302 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1303 device);
1307 static void do_watchdog_action(Monitor *mon, const QDict *qdict)
1309 const char *action = qdict_get_str(qdict, "action");
1310 if (select_watchdog_action(action) == -1) {
1311 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1315 static void monitor_printc(Monitor *mon, int c)
1317 monitor_printf(mon, "'");
1318 switch(c) {
1319 case '\'':
1320 monitor_printf(mon, "\\'");
1321 break;
1322 case '\\':
1323 monitor_printf(mon, "\\\\");
1324 break;
1325 case '\n':
1326 monitor_printf(mon, "\\n");
1327 break;
1328 case '\r':
1329 monitor_printf(mon, "\\r");
1330 break;
1331 default:
1332 if (c >= 32 && c <= 126) {
1333 monitor_printf(mon, "%c", c);
1334 } else {
1335 monitor_printf(mon, "\\x%02x", c);
1337 break;
1339 monitor_printf(mon, "'");
1342 static void memory_dump(Monitor *mon, int count, int format, int wsize,
1343 target_phys_addr_t addr, int is_physical)
1345 CPUState *env;
1346 int l, line_size, i, max_digits, len;
1347 uint8_t buf[16];
1348 uint64_t v;
1350 if (format == 'i') {
1351 int flags;
1352 flags = 0;
1353 env = mon_get_cpu();
1354 #ifdef TARGET_I386
1355 if (wsize == 2) {
1356 flags = 1;
1357 } else if (wsize == 4) {
1358 flags = 0;
1359 } else {
1360 /* as default we use the current CS size */
1361 flags = 0;
1362 if (env) {
1363 #ifdef TARGET_X86_64
1364 if ((env->efer & MSR_EFER_LMA) &&
1365 (env->segs[R_CS].flags & DESC_L_MASK))
1366 flags = 2;
1367 else
1368 #endif
1369 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1370 flags = 1;
1373 #endif
1374 monitor_disas(mon, env, addr, count, is_physical, flags);
1375 return;
1378 len = wsize * count;
1379 if (wsize == 1)
1380 line_size = 8;
1381 else
1382 line_size = 16;
1383 max_digits = 0;
1385 switch(format) {
1386 case 'o':
1387 max_digits = (wsize * 8 + 2) / 3;
1388 break;
1389 default:
1390 case 'x':
1391 max_digits = (wsize * 8) / 4;
1392 break;
1393 case 'u':
1394 case 'd':
1395 max_digits = (wsize * 8 * 10 + 32) / 33;
1396 break;
1397 case 'c':
1398 wsize = 1;
1399 break;
1402 while (len > 0) {
1403 if (is_physical)
1404 monitor_printf(mon, TARGET_FMT_plx ":", addr);
1405 else
1406 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
1407 l = len;
1408 if (l > line_size)
1409 l = line_size;
1410 if (is_physical) {
1411 cpu_physical_memory_read(addr, buf, l);
1412 } else {
1413 env = mon_get_cpu();
1414 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
1415 monitor_printf(mon, " Cannot access memory\n");
1416 break;
1419 i = 0;
1420 while (i < l) {
1421 switch(wsize) {
1422 default:
1423 case 1:
1424 v = ldub_raw(buf + i);
1425 break;
1426 case 2:
1427 v = lduw_raw(buf + i);
1428 break;
1429 case 4:
1430 v = (uint32_t)ldl_raw(buf + i);
1431 break;
1432 case 8:
1433 v = ldq_raw(buf + i);
1434 break;
1436 monitor_printf(mon, " ");
1437 switch(format) {
1438 case 'o':
1439 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
1440 break;
1441 case 'x':
1442 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
1443 break;
1444 case 'u':
1445 monitor_printf(mon, "%*" PRIu64, max_digits, v);
1446 break;
1447 case 'd':
1448 monitor_printf(mon, "%*" PRId64, max_digits, v);
1449 break;
1450 case 'c':
1451 monitor_printc(mon, v);
1452 break;
1454 i += wsize;
1456 monitor_printf(mon, "\n");
1457 addr += l;
1458 len -= l;
1462 static void do_memory_dump(Monitor *mon, const QDict *qdict)
1464 int count = qdict_get_int(qdict, "count");
1465 int format = qdict_get_int(qdict, "format");
1466 int size = qdict_get_int(qdict, "size");
1467 target_long addr = qdict_get_int(qdict, "addr");
1469 memory_dump(mon, count, format, size, addr, 0);
1472 static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
1474 int count = qdict_get_int(qdict, "count");
1475 int format = qdict_get_int(qdict, "format");
1476 int size = qdict_get_int(qdict, "size");
1477 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
1479 memory_dump(mon, count, format, size, addr, 1);
1482 static void do_print(Monitor *mon, const QDict *qdict)
1484 int format = qdict_get_int(qdict, "format");
1485 target_phys_addr_t val = qdict_get_int(qdict, "val");
1487 #if TARGET_PHYS_ADDR_BITS == 32
1488 switch(format) {
1489 case 'o':
1490 monitor_printf(mon, "%#o", val);
1491 break;
1492 case 'x':
1493 monitor_printf(mon, "%#x", val);
1494 break;
1495 case 'u':
1496 monitor_printf(mon, "%u", val);
1497 break;
1498 default:
1499 case 'd':
1500 monitor_printf(mon, "%d", val);
1501 break;
1502 case 'c':
1503 monitor_printc(mon, val);
1504 break;
1506 #else
1507 switch(format) {
1508 case 'o':
1509 monitor_printf(mon, "%#" PRIo64, val);
1510 break;
1511 case 'x':
1512 monitor_printf(mon, "%#" PRIx64, val);
1513 break;
1514 case 'u':
1515 monitor_printf(mon, "%" PRIu64, val);
1516 break;
1517 default:
1518 case 'd':
1519 monitor_printf(mon, "%" PRId64, val);
1520 break;
1521 case 'c':
1522 monitor_printc(mon, val);
1523 break;
1525 #endif
1526 monitor_printf(mon, "\n");
1529 static int do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
1531 FILE *f;
1532 uint32_t size = qdict_get_int(qdict, "size");
1533 const char *filename = qdict_get_str(qdict, "filename");
1534 target_long addr = qdict_get_int(qdict, "val");
1535 uint32_t l;
1536 CPUState *env;
1537 uint8_t buf[1024];
1538 int ret = -1;
1540 env = mon_get_cpu();
1542 f = fopen(filename, "wb");
1543 if (!f) {
1544 qerror_report(QERR_OPEN_FILE_FAILED, filename);
1545 return -1;
1547 while (size != 0) {
1548 l = sizeof(buf);
1549 if (l > size)
1550 l = size;
1551 cpu_memory_rw_debug(env, addr, buf, l, 0);
1552 if (fwrite(buf, 1, l, f) != l) {
1553 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1554 goto exit;
1556 addr += l;
1557 size -= l;
1560 ret = 0;
1562 exit:
1563 fclose(f);
1564 return ret;
1567 static int do_physical_memory_save(Monitor *mon, const QDict *qdict,
1568 QObject **ret_data)
1570 FILE *f;
1571 uint32_t l;
1572 uint8_t buf[1024];
1573 uint32_t size = qdict_get_int(qdict, "size");
1574 const char *filename = qdict_get_str(qdict, "filename");
1575 target_phys_addr_t addr = qdict_get_int(qdict, "val");
1576 int ret = -1;
1578 f = fopen(filename, "wb");
1579 if (!f) {
1580 qerror_report(QERR_OPEN_FILE_FAILED, filename);
1581 return -1;
1583 while (size != 0) {
1584 l = sizeof(buf);
1585 if (l > size)
1586 l = size;
1587 cpu_physical_memory_read(addr, buf, l);
1588 if (fwrite(buf, 1, l, f) != l) {
1589 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1590 goto exit;
1592 fflush(f);
1593 addr += l;
1594 size -= l;
1597 ret = 0;
1599 exit:
1600 fclose(f);
1601 return ret;
1604 static void do_sum(Monitor *mon, const QDict *qdict)
1606 uint32_t addr;
1607 uint16_t sum;
1608 uint32_t start = qdict_get_int(qdict, "start");
1609 uint32_t size = qdict_get_int(qdict, "size");
1611 sum = 0;
1612 for(addr = start; addr < (start + size); addr++) {
1613 uint8_t val = ldub_phys(addr);
1614 /* BSD sum algorithm ('sum' Unix command) */
1615 sum = (sum >> 1) | (sum << 15);
1616 sum += val;
1618 monitor_printf(mon, "%05d\n", sum);
1621 typedef struct {
1622 int keycode;
1623 const char *name;
1624 } KeyDef;
1626 static const KeyDef key_defs[] = {
1627 { 0x2a, "shift" },
1628 { 0x36, "shift_r" },
1630 { 0x38, "alt" },
1631 { 0xb8, "alt_r" },
1632 { 0x64, "altgr" },
1633 { 0xe4, "altgr_r" },
1634 { 0x1d, "ctrl" },
1635 { 0x9d, "ctrl_r" },
1637 { 0xdd, "menu" },
1639 { 0x01, "esc" },
1641 { 0x02, "1" },
1642 { 0x03, "2" },
1643 { 0x04, "3" },
1644 { 0x05, "4" },
1645 { 0x06, "5" },
1646 { 0x07, "6" },
1647 { 0x08, "7" },
1648 { 0x09, "8" },
1649 { 0x0a, "9" },
1650 { 0x0b, "0" },
1651 { 0x0c, "minus" },
1652 { 0x0d, "equal" },
1653 { 0x0e, "backspace" },
1655 { 0x0f, "tab" },
1656 { 0x10, "q" },
1657 { 0x11, "w" },
1658 { 0x12, "e" },
1659 { 0x13, "r" },
1660 { 0x14, "t" },
1661 { 0x15, "y" },
1662 { 0x16, "u" },
1663 { 0x17, "i" },
1664 { 0x18, "o" },
1665 { 0x19, "p" },
1666 { 0x1a, "bracket_left" },
1667 { 0x1b, "bracket_right" },
1668 { 0x1c, "ret" },
1670 { 0x1e, "a" },
1671 { 0x1f, "s" },
1672 { 0x20, "d" },
1673 { 0x21, "f" },
1674 { 0x22, "g" },
1675 { 0x23, "h" },
1676 { 0x24, "j" },
1677 { 0x25, "k" },
1678 { 0x26, "l" },
1679 { 0x27, "semicolon" },
1680 { 0x28, "apostrophe" },
1681 { 0x29, "grave_accent" },
1683 { 0x2b, "backslash" },
1684 { 0x2c, "z" },
1685 { 0x2d, "x" },
1686 { 0x2e, "c" },
1687 { 0x2f, "v" },
1688 { 0x30, "b" },
1689 { 0x31, "n" },
1690 { 0x32, "m" },
1691 { 0x33, "comma" },
1692 { 0x34, "dot" },
1693 { 0x35, "slash" },
1695 { 0x37, "asterisk" },
1697 { 0x39, "spc" },
1698 { 0x3a, "caps_lock" },
1699 { 0x3b, "f1" },
1700 { 0x3c, "f2" },
1701 { 0x3d, "f3" },
1702 { 0x3e, "f4" },
1703 { 0x3f, "f5" },
1704 { 0x40, "f6" },
1705 { 0x41, "f7" },
1706 { 0x42, "f8" },
1707 { 0x43, "f9" },
1708 { 0x44, "f10" },
1709 { 0x45, "num_lock" },
1710 { 0x46, "scroll_lock" },
1712 { 0xb5, "kp_divide" },
1713 { 0x37, "kp_multiply" },
1714 { 0x4a, "kp_subtract" },
1715 { 0x4e, "kp_add" },
1716 { 0x9c, "kp_enter" },
1717 { 0x53, "kp_decimal" },
1718 { 0x54, "sysrq" },
1720 { 0x52, "kp_0" },
1721 { 0x4f, "kp_1" },
1722 { 0x50, "kp_2" },
1723 { 0x51, "kp_3" },
1724 { 0x4b, "kp_4" },
1725 { 0x4c, "kp_5" },
1726 { 0x4d, "kp_6" },
1727 { 0x47, "kp_7" },
1728 { 0x48, "kp_8" },
1729 { 0x49, "kp_9" },
1731 { 0x56, "<" },
1733 { 0x57, "f11" },
1734 { 0x58, "f12" },
1736 { 0xb7, "print" },
1738 { 0xc7, "home" },
1739 { 0xc9, "pgup" },
1740 { 0xd1, "pgdn" },
1741 { 0xcf, "end" },
1743 { 0xcb, "left" },
1744 { 0xc8, "up" },
1745 { 0xd0, "down" },
1746 { 0xcd, "right" },
1748 { 0xd2, "insert" },
1749 { 0xd3, "delete" },
1750 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1751 { 0xf0, "stop" },
1752 { 0xf1, "again" },
1753 { 0xf2, "props" },
1754 { 0xf3, "undo" },
1755 { 0xf4, "front" },
1756 { 0xf5, "copy" },
1757 { 0xf6, "open" },
1758 { 0xf7, "paste" },
1759 { 0xf8, "find" },
1760 { 0xf9, "cut" },
1761 { 0xfa, "lf" },
1762 { 0xfb, "help" },
1763 { 0xfc, "meta_l" },
1764 { 0xfd, "meta_r" },
1765 { 0xfe, "compose" },
1766 #endif
1767 { 0, NULL },
1770 static int get_keycode(const char *key)
1772 const KeyDef *p;
1773 char *endp;
1774 int ret;
1776 for(p = key_defs; p->name != NULL; p++) {
1777 if (!strcmp(key, p->name))
1778 return p->keycode;
1780 if (strstart(key, "0x", NULL)) {
1781 ret = strtoul(key, &endp, 0);
1782 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1783 return ret;
1785 return -1;
1788 #define MAX_KEYCODES 16
1789 static uint8_t keycodes[MAX_KEYCODES];
1790 static int nb_pending_keycodes;
1791 static QEMUTimer *key_timer;
1793 static void release_keys(void *opaque)
1795 int keycode;
1797 while (nb_pending_keycodes > 0) {
1798 nb_pending_keycodes--;
1799 keycode = keycodes[nb_pending_keycodes];
1800 if (keycode & 0x80)
1801 kbd_put_keycode(0xe0);
1802 kbd_put_keycode(keycode | 0x80);
1806 static void do_sendkey(Monitor *mon, const QDict *qdict)
1808 char keyname_buf[16];
1809 char *separator;
1810 int keyname_len, keycode, i;
1811 const char *string = qdict_get_str(qdict, "string");
1812 int has_hold_time = qdict_haskey(qdict, "hold_time");
1813 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
1815 if (nb_pending_keycodes > 0) {
1816 qemu_del_timer(key_timer);
1817 release_keys(NULL);
1819 if (!has_hold_time)
1820 hold_time = 100;
1821 i = 0;
1822 while (1) {
1823 separator = strchr(string, '-');
1824 keyname_len = separator ? separator - string : strlen(string);
1825 if (keyname_len > 0) {
1826 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1827 if (keyname_len > sizeof(keyname_buf) - 1) {
1828 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
1829 return;
1831 if (i == MAX_KEYCODES) {
1832 monitor_printf(mon, "too many keys\n");
1833 return;
1835 keyname_buf[keyname_len] = 0;
1836 keycode = get_keycode(keyname_buf);
1837 if (keycode < 0) {
1838 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
1839 return;
1841 keycodes[i++] = keycode;
1843 if (!separator)
1844 break;
1845 string = separator + 1;
1847 nb_pending_keycodes = i;
1848 /* key down events */
1849 for (i = 0; i < nb_pending_keycodes; i++) {
1850 keycode = keycodes[i];
1851 if (keycode & 0x80)
1852 kbd_put_keycode(0xe0);
1853 kbd_put_keycode(keycode & 0x7f);
1855 /* delayed key up events */
1856 qemu_mod_timer(key_timer, qemu_get_clock_ns(vm_clock) +
1857 muldiv64(get_ticks_per_sec(), hold_time, 1000));
1860 static int mouse_button_state;
1862 static void do_mouse_move(Monitor *mon, const QDict *qdict)
1864 int dx, dy, dz;
1865 const char *dx_str = qdict_get_str(qdict, "dx_str");
1866 const char *dy_str = qdict_get_str(qdict, "dy_str");
1867 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1868 dx = strtol(dx_str, NULL, 0);
1869 dy = strtol(dy_str, NULL, 0);
1870 dz = 0;
1871 if (dz_str)
1872 dz = strtol(dz_str, NULL, 0);
1873 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1876 static void do_mouse_button(Monitor *mon, const QDict *qdict)
1878 int button_state = qdict_get_int(qdict, "button_state");
1879 mouse_button_state = button_state;
1880 kbd_mouse_event(0, 0, 0, mouse_button_state);
1883 static void do_ioport_read(Monitor *mon, const QDict *qdict)
1885 int size = qdict_get_int(qdict, "size");
1886 int addr = qdict_get_int(qdict, "addr");
1887 int has_index = qdict_haskey(qdict, "index");
1888 uint32_t val;
1889 int suffix;
1891 if (has_index) {
1892 int index = qdict_get_int(qdict, "index");
1893 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
1894 addr++;
1896 addr &= 0xffff;
1898 switch(size) {
1899 default:
1900 case 1:
1901 val = cpu_inb(addr);
1902 suffix = 'b';
1903 break;
1904 case 2:
1905 val = cpu_inw(addr);
1906 suffix = 'w';
1907 break;
1908 case 4:
1909 val = cpu_inl(addr);
1910 suffix = 'l';
1911 break;
1913 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1914 suffix, addr, size * 2, val);
1917 static void do_ioport_write(Monitor *mon, const QDict *qdict)
1919 int size = qdict_get_int(qdict, "size");
1920 int addr = qdict_get_int(qdict, "addr");
1921 int val = qdict_get_int(qdict, "val");
1923 addr &= IOPORTS_MASK;
1925 switch (size) {
1926 default:
1927 case 1:
1928 cpu_outb(addr, val);
1929 break;
1930 case 2:
1931 cpu_outw(addr, val);
1932 break;
1933 case 4:
1934 cpu_outl(addr, val);
1935 break;
1939 static void do_boot_set(Monitor *mon, const QDict *qdict)
1941 int res;
1942 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1944 res = qemu_boot_set(bootdevice);
1945 if (res == 0) {
1946 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1947 } else if (res > 0) {
1948 monitor_printf(mon, "setting boot device list failed\n");
1949 } else {
1950 monitor_printf(mon, "no function defined to set boot device list for "
1951 "this architecture\n");
1956 * do_system_reset(): Issue a machine reset
1958 static int do_system_reset(Monitor *mon, const QDict *qdict,
1959 QObject **ret_data)
1961 qemu_system_reset_request();
1962 return 0;
1966 * do_system_powerdown(): Issue a machine powerdown
1968 static int do_system_powerdown(Monitor *mon, const QDict *qdict,
1969 QObject **ret_data)
1971 qemu_system_powerdown_request();
1972 return 0;
1975 #if defined(TARGET_I386)
1976 static void print_pte(Monitor *mon, target_phys_addr_t addr,
1977 target_phys_addr_t pte,
1978 target_phys_addr_t mask)
1980 #ifdef TARGET_X86_64
1981 if (addr & (1ULL << 47)) {
1982 addr |= -1LL << 48;
1984 #endif
1985 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1986 " %c%c%c%c%c%c%c%c%c\n",
1987 addr,
1988 pte & mask,
1989 pte & PG_NX_MASK ? 'X' : '-',
1990 pte & PG_GLOBAL_MASK ? 'G' : '-',
1991 pte & PG_PSE_MASK ? 'P' : '-',
1992 pte & PG_DIRTY_MASK ? 'D' : '-',
1993 pte & PG_ACCESSED_MASK ? 'A' : '-',
1994 pte & PG_PCD_MASK ? 'C' : '-',
1995 pte & PG_PWT_MASK ? 'T' : '-',
1996 pte & PG_USER_MASK ? 'U' : '-',
1997 pte & PG_RW_MASK ? 'W' : '-');
2000 static void tlb_info_32(Monitor *mon, CPUState *env)
2002 unsigned int l1, l2;
2003 uint32_t pgd, pde, pte;
2005 pgd = env->cr[3] & ~0xfff;
2006 for(l1 = 0; l1 < 1024; l1++) {
2007 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
2008 pde = le32_to_cpu(pde);
2009 if (pde & PG_PRESENT_MASK) {
2010 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
2011 /* 4M pages */
2012 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
2013 } else {
2014 for(l2 = 0; l2 < 1024; l2++) {
2015 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
2016 pte = le32_to_cpu(pte);
2017 if (pte & PG_PRESENT_MASK) {
2018 print_pte(mon, (l1 << 22) + (l2 << 12),
2019 pte & ~PG_PSE_MASK,
2020 ~0xfff);
2028 static void tlb_info_pae32(Monitor *mon, CPUState *env)
2030 unsigned int l1, l2, l3;
2031 uint64_t pdpe, pde, pte;
2032 uint64_t pdp_addr, pd_addr, pt_addr;
2034 pdp_addr = env->cr[3] & ~0x1f;
2035 for (l1 = 0; l1 < 4; l1++) {
2036 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
2037 pdpe = le64_to_cpu(pdpe);
2038 if (pdpe & PG_PRESENT_MASK) {
2039 pd_addr = pdpe & 0x3fffffffff000ULL;
2040 for (l2 = 0; l2 < 512; l2++) {
2041 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
2042 pde = le64_to_cpu(pde);
2043 if (pde & PG_PRESENT_MASK) {
2044 if (pde & PG_PSE_MASK) {
2045 /* 2M pages with PAE, CR4.PSE is ignored */
2046 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
2047 ~((target_phys_addr_t)(1 << 20) - 1));
2048 } else {
2049 pt_addr = pde & 0x3fffffffff000ULL;
2050 for (l3 = 0; l3 < 512; l3++) {
2051 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
2052 pte = le64_to_cpu(pte);
2053 if (pte & PG_PRESENT_MASK) {
2054 print_pte(mon, (l1 << 30 ) + (l2 << 21)
2055 + (l3 << 12),
2056 pte & ~PG_PSE_MASK,
2057 ~(target_phys_addr_t)0xfff);
2067 #ifdef TARGET_X86_64
2068 static void tlb_info_64(Monitor *mon, CPUState *env)
2070 uint64_t l1, l2, l3, l4;
2071 uint64_t pml4e, pdpe, pde, pte;
2072 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
2074 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
2075 for (l1 = 0; l1 < 512; l1++) {
2076 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
2077 pml4e = le64_to_cpu(pml4e);
2078 if (pml4e & PG_PRESENT_MASK) {
2079 pdp_addr = pml4e & 0x3fffffffff000ULL;
2080 for (l2 = 0; l2 < 512; l2++) {
2081 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
2082 pdpe = le64_to_cpu(pdpe);
2083 if (pdpe & PG_PRESENT_MASK) {
2084 if (pdpe & PG_PSE_MASK) {
2085 /* 1G pages, CR4.PSE is ignored */
2086 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
2087 0x3ffffc0000000ULL);
2088 } else {
2089 pd_addr = pdpe & 0x3fffffffff000ULL;
2090 for (l3 = 0; l3 < 512; l3++) {
2091 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
2092 pde = le64_to_cpu(pde);
2093 if (pde & PG_PRESENT_MASK) {
2094 if (pde & PG_PSE_MASK) {
2095 /* 2M pages, CR4.PSE is ignored */
2096 print_pte(mon, (l1 << 39) + (l2 << 30) +
2097 (l3 << 21), pde,
2098 0x3ffffffe00000ULL);
2099 } else {
2100 pt_addr = pde & 0x3fffffffff000ULL;
2101 for (l4 = 0; l4 < 512; l4++) {
2102 cpu_physical_memory_read(pt_addr
2103 + l4 * 8,
2104 &pte, 8);
2105 pte = le64_to_cpu(pte);
2106 if (pte & PG_PRESENT_MASK) {
2107 print_pte(mon, (l1 << 39) +
2108 (l2 << 30) +
2109 (l3 << 21) + (l4 << 12),
2110 pte & ~PG_PSE_MASK,
2111 0x3fffffffff000ULL);
2123 #endif
2125 static void tlb_info(Monitor *mon)
2127 CPUState *env;
2129 env = mon_get_cpu();
2131 if (!(env->cr[0] & CR0_PG_MASK)) {
2132 monitor_printf(mon, "PG disabled\n");
2133 return;
2135 if (env->cr[4] & CR4_PAE_MASK) {
2136 #ifdef TARGET_X86_64
2137 if (env->hflags & HF_LMA_MASK) {
2138 tlb_info_64(mon, env);
2139 } else
2140 #endif
2142 tlb_info_pae32(mon, env);
2144 } else {
2145 tlb_info_32(mon, env);
2149 static void mem_print(Monitor *mon, target_phys_addr_t *pstart,
2150 int *plast_prot,
2151 target_phys_addr_t end, int prot)
2153 int prot1;
2154 prot1 = *plast_prot;
2155 if (prot != prot1) {
2156 if (*pstart != -1) {
2157 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
2158 TARGET_FMT_plx " %c%c%c\n",
2159 *pstart, end, end - *pstart,
2160 prot1 & PG_USER_MASK ? 'u' : '-',
2161 'r',
2162 prot1 & PG_RW_MASK ? 'w' : '-');
2164 if (prot != 0)
2165 *pstart = end;
2166 else
2167 *pstart = -1;
2168 *plast_prot = prot;
2172 static void mem_info_32(Monitor *mon, CPUState *env)
2174 unsigned int l1, l2;
2175 int prot, last_prot;
2176 uint32_t pgd, pde, pte;
2177 target_phys_addr_t start, end;
2179 pgd = env->cr[3] & ~0xfff;
2180 last_prot = 0;
2181 start = -1;
2182 for(l1 = 0; l1 < 1024; l1++) {
2183 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
2184 pde = le32_to_cpu(pde);
2185 end = l1 << 22;
2186 if (pde & PG_PRESENT_MASK) {
2187 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
2188 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
2189 mem_print(mon, &start, &last_prot, end, prot);
2190 } else {
2191 for(l2 = 0; l2 < 1024; l2++) {
2192 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
2193 pte = le32_to_cpu(pte);
2194 end = (l1 << 22) + (l2 << 12);
2195 if (pte & PG_PRESENT_MASK) {
2196 prot = pte & pde &
2197 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
2198 } else {
2199 prot = 0;
2201 mem_print(mon, &start, &last_prot, end, prot);
2204 } else {
2205 prot = 0;
2206 mem_print(mon, &start, &last_prot, end, prot);
2209 /* Flush last range */
2210 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
2213 static void mem_info_pae32(Monitor *mon, CPUState *env)
2215 unsigned int l1, l2, l3;
2216 int prot, last_prot;
2217 uint64_t pdpe, pde, pte;
2218 uint64_t pdp_addr, pd_addr, pt_addr;
2219 target_phys_addr_t start, end;
2221 pdp_addr = env->cr[3] & ~0x1f;
2222 last_prot = 0;
2223 start = -1;
2224 for (l1 = 0; l1 < 4; l1++) {
2225 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
2226 pdpe = le64_to_cpu(pdpe);
2227 end = l1 << 30;
2228 if (pdpe & PG_PRESENT_MASK) {
2229 pd_addr = pdpe & 0x3fffffffff000ULL;
2230 for (l2 = 0; l2 < 512; l2++) {
2231 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
2232 pde = le64_to_cpu(pde);
2233 end = (l1 << 30) + (l2 << 21);
2234 if (pde & PG_PRESENT_MASK) {
2235 if (pde & PG_PSE_MASK) {
2236 prot = pde & (PG_USER_MASK | PG_RW_MASK |
2237 PG_PRESENT_MASK);
2238 mem_print(mon, &start, &last_prot, end, prot);
2239 } else {
2240 pt_addr = pde & 0x3fffffffff000ULL;
2241 for (l3 = 0; l3 < 512; l3++) {
2242 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
2243 pte = le64_to_cpu(pte);
2244 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
2245 if (pte & PG_PRESENT_MASK) {
2246 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
2247 PG_PRESENT_MASK);
2248 } else {
2249 prot = 0;
2251 mem_print(mon, &start, &last_prot, end, prot);
2254 } else {
2255 prot = 0;
2256 mem_print(mon, &start, &last_prot, end, prot);
2259 } else {
2260 prot = 0;
2261 mem_print(mon, &start, &last_prot, end, prot);
2264 /* Flush last range */
2265 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
2269 #ifdef TARGET_X86_64
2270 static void mem_info_64(Monitor *mon, CPUState *env)
2272 int prot, last_prot;
2273 uint64_t l1, l2, l3, l4;
2274 uint64_t pml4e, pdpe, pde, pte;
2275 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
2277 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
2278 last_prot = 0;
2279 start = -1;
2280 for (l1 = 0; l1 < 512; l1++) {
2281 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
2282 pml4e = le64_to_cpu(pml4e);
2283 end = l1 << 39;
2284 if (pml4e & PG_PRESENT_MASK) {
2285 pdp_addr = pml4e & 0x3fffffffff000ULL;
2286 for (l2 = 0; l2 < 512; l2++) {
2287 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
2288 pdpe = le64_to_cpu(pdpe);
2289 end = (l1 << 39) + (l2 << 30);
2290 if (pdpe & PG_PRESENT_MASK) {
2291 if (pdpe & PG_PSE_MASK) {
2292 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
2293 PG_PRESENT_MASK);
2294 prot &= pml4e;
2295 mem_print(mon, &start, &last_prot, end, prot);
2296 } else {
2297 pd_addr = pdpe & 0x3fffffffff000ULL;
2298 for (l3 = 0; l3 < 512; l3++) {
2299 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
2300 pde = le64_to_cpu(pde);
2301 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
2302 if (pde & PG_PRESENT_MASK) {
2303 if (pde & PG_PSE_MASK) {
2304 prot = pde & (PG_USER_MASK | PG_RW_MASK |
2305 PG_PRESENT_MASK);
2306 prot &= pml4e & pdpe;
2307 mem_print(mon, &start, &last_prot, end, prot);
2308 } else {
2309 pt_addr = pde & 0x3fffffffff000ULL;
2310 for (l4 = 0; l4 < 512; l4++) {
2311 cpu_physical_memory_read(pt_addr
2312 + l4 * 8,
2313 &pte, 8);
2314 pte = le64_to_cpu(pte);
2315 end = (l1 << 39) + (l2 << 30) +
2316 (l3 << 21) + (l4 << 12);
2317 if (pte & PG_PRESENT_MASK) {
2318 prot = pte & (PG_USER_MASK | PG_RW_MASK |
2319 PG_PRESENT_MASK);
2320 prot &= pml4e & pdpe & pde;
2321 } else {
2322 prot = 0;
2324 mem_print(mon, &start, &last_prot, end, prot);
2327 } else {
2328 prot = 0;
2329 mem_print(mon, &start, &last_prot, end, prot);
2333 } else {
2334 prot = 0;
2335 mem_print(mon, &start, &last_prot, end, prot);
2338 } else {
2339 prot = 0;
2340 mem_print(mon, &start, &last_prot, end, prot);
2343 /* Flush last range */
2344 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 48, 0);
2346 #endif
2348 static void mem_info(Monitor *mon)
2350 CPUState *env;
2352 env = mon_get_cpu();
2354 if (!(env->cr[0] & CR0_PG_MASK)) {
2355 monitor_printf(mon, "PG disabled\n");
2356 return;
2358 if (env->cr[4] & CR4_PAE_MASK) {
2359 #ifdef TARGET_X86_64
2360 if (env->hflags & HF_LMA_MASK) {
2361 mem_info_64(mon, env);
2362 } else
2363 #endif
2365 mem_info_pae32(mon, env);
2367 } else {
2368 mem_info_32(mon, env);
2371 #endif
2373 #if defined(TARGET_SH4)
2375 static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
2377 monitor_printf(mon, " tlb%i:\t"
2378 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
2379 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
2380 "dirty=%hhu writethrough=%hhu\n",
2381 idx,
2382 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
2383 tlb->v, tlb->sh, tlb->c, tlb->pr,
2384 tlb->d, tlb->wt);
2387 static void tlb_info(Monitor *mon)
2389 CPUState *env = mon_get_cpu();
2390 int i;
2392 monitor_printf (mon, "ITLB:\n");
2393 for (i = 0 ; i < ITLB_SIZE ; i++)
2394 print_tlb (mon, i, &env->itlb[i]);
2395 monitor_printf (mon, "UTLB:\n");
2396 for (i = 0 ; i < UTLB_SIZE ; i++)
2397 print_tlb (mon, i, &env->utlb[i]);
2400 #endif
2402 #if defined(TARGET_SPARC)
2403 static void tlb_info(Monitor *mon)
2405 CPUState *env1 = mon_get_cpu();
2407 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
2409 #endif
2411 static void do_info_mtree(Monitor *mon)
2413 mtree_info((fprintf_function)monitor_printf, mon);
2416 static void do_info_numa(Monitor *mon)
2418 int i;
2419 CPUState *env;
2421 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2422 for (i = 0; i < nb_numa_nodes; i++) {
2423 monitor_printf(mon, "node %d cpus:", i);
2424 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2425 if (env->numa_node == i) {
2426 monitor_printf(mon, " %d", env->cpu_index);
2429 monitor_printf(mon, "\n");
2430 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2431 node_mem[i] >> 20);
2435 #ifdef CONFIG_PROFILER
2437 int64_t qemu_time;
2438 int64_t dev_time;
2440 static void do_info_profile(Monitor *mon)
2442 int64_t total;
2443 total = qemu_time;
2444 if (total == 0)
2445 total = 1;
2446 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
2447 dev_time, dev_time / (double)get_ticks_per_sec());
2448 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
2449 qemu_time, qemu_time / (double)get_ticks_per_sec());
2450 qemu_time = 0;
2451 dev_time = 0;
2453 #else
2454 static void do_info_profile(Monitor *mon)
2456 monitor_printf(mon, "Internal profiler not compiled\n");
2458 #endif
2460 /* Capture support */
2461 static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
2463 static void do_info_capture(Monitor *mon)
2465 int i;
2466 CaptureState *s;
2468 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2469 monitor_printf(mon, "[%d]: ", i);
2470 s->ops.info (s->opaque);
2474 #ifdef HAS_AUDIO
2475 static void do_stop_capture(Monitor *mon, const QDict *qdict)
2477 int i;
2478 int n = qdict_get_int(qdict, "n");
2479 CaptureState *s;
2481 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2482 if (i == n) {
2483 s->ops.destroy (s->opaque);
2484 QLIST_REMOVE (s, entries);
2485 g_free (s);
2486 return;
2491 static void do_wav_capture(Monitor *mon, const QDict *qdict)
2493 const char *path = qdict_get_str(qdict, "path");
2494 int has_freq = qdict_haskey(qdict, "freq");
2495 int freq = qdict_get_try_int(qdict, "freq", -1);
2496 int has_bits = qdict_haskey(qdict, "bits");
2497 int bits = qdict_get_try_int(qdict, "bits", -1);
2498 int has_channels = qdict_haskey(qdict, "nchannels");
2499 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
2500 CaptureState *s;
2502 s = g_malloc0 (sizeof (*s));
2504 freq = has_freq ? freq : 44100;
2505 bits = has_bits ? bits : 16;
2506 nchannels = has_channels ? nchannels : 2;
2508 if (wav_start_capture (s, path, freq, bits, nchannels)) {
2509 monitor_printf(mon, "Failed to add wave capture\n");
2510 g_free (s);
2511 return;
2513 QLIST_INSERT_HEAD (&capture_head, s, entries);
2515 #endif
2517 #if defined(TARGET_I386)
2518 static int do_inject_nmi(Monitor *mon, const QDict *qdict, QObject **ret_data)
2520 CPUState *env;
2522 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2523 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2526 return 0;
2528 #else
2529 static int do_inject_nmi(Monitor *mon, const QDict *qdict, QObject **ret_data)
2531 qerror_report(QERR_UNSUPPORTED);
2532 return -1;
2534 #endif
2536 static qemu_acl *find_acl(Monitor *mon, const char *name)
2538 qemu_acl *acl = qemu_acl_find(name);
2540 if (!acl) {
2541 monitor_printf(mon, "acl: unknown list '%s'\n", name);
2543 return acl;
2546 static void do_acl_show(Monitor *mon, const QDict *qdict)
2548 const char *aclname = qdict_get_str(qdict, "aclname");
2549 qemu_acl *acl = find_acl(mon, aclname);
2550 qemu_acl_entry *entry;
2551 int i = 0;
2553 if (acl) {
2554 monitor_printf(mon, "policy: %s\n",
2555 acl->defaultDeny ? "deny" : "allow");
2556 QTAILQ_FOREACH(entry, &acl->entries, next) {
2557 i++;
2558 monitor_printf(mon, "%d: %s %s\n", i,
2559 entry->deny ? "deny" : "allow", entry->match);
2564 static void do_acl_reset(Monitor *mon, const QDict *qdict)
2566 const char *aclname = qdict_get_str(qdict, "aclname");
2567 qemu_acl *acl = find_acl(mon, aclname);
2569 if (acl) {
2570 qemu_acl_reset(acl);
2571 monitor_printf(mon, "acl: removed all rules\n");
2575 static void do_acl_policy(Monitor *mon, const QDict *qdict)
2577 const char *aclname = qdict_get_str(qdict, "aclname");
2578 const char *policy = qdict_get_str(qdict, "policy");
2579 qemu_acl *acl = find_acl(mon, aclname);
2581 if (acl) {
2582 if (strcmp(policy, "allow") == 0) {
2583 acl->defaultDeny = 0;
2584 monitor_printf(mon, "acl: policy set to 'allow'\n");
2585 } else if (strcmp(policy, "deny") == 0) {
2586 acl->defaultDeny = 1;
2587 monitor_printf(mon, "acl: policy set to 'deny'\n");
2588 } else {
2589 monitor_printf(mon, "acl: unknown policy '%s', "
2590 "expected 'deny' or 'allow'\n", policy);
2595 static void do_acl_add(Monitor *mon, const QDict *qdict)
2597 const char *aclname = qdict_get_str(qdict, "aclname");
2598 const char *match = qdict_get_str(qdict, "match");
2599 const char *policy = qdict_get_str(qdict, "policy");
2600 int has_index = qdict_haskey(qdict, "index");
2601 int index = qdict_get_try_int(qdict, "index", -1);
2602 qemu_acl *acl = find_acl(mon, aclname);
2603 int deny, ret;
2605 if (acl) {
2606 if (strcmp(policy, "allow") == 0) {
2607 deny = 0;
2608 } else if (strcmp(policy, "deny") == 0) {
2609 deny = 1;
2610 } else {
2611 monitor_printf(mon, "acl: unknown policy '%s', "
2612 "expected 'deny' or 'allow'\n", policy);
2613 return;
2615 if (has_index)
2616 ret = qemu_acl_insert(acl, deny, match, index);
2617 else
2618 ret = qemu_acl_append(acl, deny, match);
2619 if (ret < 0)
2620 monitor_printf(mon, "acl: unable to add acl entry\n");
2621 else
2622 monitor_printf(mon, "acl: added rule at position %d\n", ret);
2626 static void do_acl_remove(Monitor *mon, const QDict *qdict)
2628 const char *aclname = qdict_get_str(qdict, "aclname");
2629 const char *match = qdict_get_str(qdict, "match");
2630 qemu_acl *acl = find_acl(mon, aclname);
2631 int ret;
2633 if (acl) {
2634 ret = qemu_acl_remove(acl, match);
2635 if (ret < 0)
2636 monitor_printf(mon, "acl: no matching acl entry\n");
2637 else
2638 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
2642 #if defined(TARGET_I386)
2643 static void do_inject_mce(Monitor *mon, const QDict *qdict)
2645 CPUState *cenv;
2646 int cpu_index = qdict_get_int(qdict, "cpu_index");
2647 int bank = qdict_get_int(qdict, "bank");
2648 uint64_t status = qdict_get_int(qdict, "status");
2649 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2650 uint64_t addr = qdict_get_int(qdict, "addr");
2651 uint64_t misc = qdict_get_int(qdict, "misc");
2652 int flags = MCE_INJECT_UNCOND_AO;
2654 if (qdict_get_try_bool(qdict, "broadcast", 0)) {
2655 flags |= MCE_INJECT_BROADCAST;
2657 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu) {
2658 if (cenv->cpu_index == cpu_index) {
2659 cpu_x86_inject_mce(mon, cenv, bank, status, mcg_status, addr, misc,
2660 flags);
2661 break;
2665 #endif
2667 static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2669 const char *fdname = qdict_get_str(qdict, "fdname");
2670 mon_fd_t *monfd;
2671 int fd;
2673 fd = qemu_chr_fe_get_msgfd(mon->chr);
2674 if (fd == -1) {
2675 qerror_report(QERR_FD_NOT_SUPPLIED);
2676 return -1;
2679 if (qemu_isdigit(fdname[0])) {
2680 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2681 "a name not starting with a digit");
2682 return -1;
2685 QLIST_FOREACH(monfd, &mon->fds, next) {
2686 if (strcmp(monfd->name, fdname) != 0) {
2687 continue;
2690 close(monfd->fd);
2691 monfd->fd = fd;
2692 return 0;
2695 monfd = g_malloc0(sizeof(mon_fd_t));
2696 monfd->name = g_strdup(fdname);
2697 monfd->fd = fd;
2699 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
2700 return 0;
2703 static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2705 const char *fdname = qdict_get_str(qdict, "fdname");
2706 mon_fd_t *monfd;
2708 QLIST_FOREACH(monfd, &mon->fds, next) {
2709 if (strcmp(monfd->name, fdname) != 0) {
2710 continue;
2713 QLIST_REMOVE(monfd, next);
2714 close(monfd->fd);
2715 g_free(monfd->name);
2716 g_free(monfd);
2717 return 0;
2720 qerror_report(QERR_FD_NOT_FOUND, fdname);
2721 return -1;
2724 static void do_loadvm(Monitor *mon, const QDict *qdict)
2726 int saved_vm_running = runstate_is_running();
2727 const char *name = qdict_get_str(qdict, "name");
2729 vm_stop(RUN_STATE_RESTORE_VM);
2731 if (load_vmstate(name) == 0 && saved_vm_running) {
2732 vm_start();
2736 int monitor_get_fd(Monitor *mon, const char *fdname)
2738 mon_fd_t *monfd;
2740 QLIST_FOREACH(monfd, &mon->fds, next) {
2741 int fd;
2743 if (strcmp(monfd->name, fdname) != 0) {
2744 continue;
2747 fd = monfd->fd;
2749 /* caller takes ownership of fd */
2750 QLIST_REMOVE(monfd, next);
2751 g_free(monfd->name);
2752 g_free(monfd);
2754 return fd;
2757 return -1;
2760 static const mon_cmd_t mon_cmds[] = {
2761 #include "hmp-commands.h"
2762 { NULL, NULL, },
2765 /* Please update hmp-commands.hx when adding or changing commands */
2766 static const mon_cmd_t info_cmds[] = {
2768 .name = "version",
2769 .args_type = "",
2770 .params = "",
2771 .help = "show the version of QEMU",
2772 .mhandler.info = hmp_info_version,
2775 .name = "network",
2776 .args_type = "",
2777 .params = "",
2778 .help = "show the network state",
2779 .mhandler.info = do_info_network,
2782 .name = "chardev",
2783 .args_type = "",
2784 .params = "",
2785 .help = "show the character devices",
2786 .mhandler.info = hmp_info_chardev,
2789 .name = "block",
2790 .args_type = "",
2791 .params = "",
2792 .help = "show the block devices",
2793 .user_print = bdrv_info_print,
2794 .mhandler.info_new = bdrv_info,
2797 .name = "blockstats",
2798 .args_type = "",
2799 .params = "",
2800 .help = "show block device statistics",
2801 .user_print = bdrv_stats_print,
2802 .mhandler.info_new = bdrv_info_stats,
2805 .name = "registers",
2806 .args_type = "",
2807 .params = "",
2808 .help = "show the cpu registers",
2809 .mhandler.info = do_info_registers,
2812 .name = "cpus",
2813 .args_type = "",
2814 .params = "",
2815 .help = "show infos for each CPU",
2816 .user_print = monitor_print_cpus,
2817 .mhandler.info_new = do_info_cpus,
2820 .name = "history",
2821 .args_type = "",
2822 .params = "",
2823 .help = "show the command line history",
2824 .mhandler.info = do_info_history,
2827 .name = "irq",
2828 .args_type = "",
2829 .params = "",
2830 .help = "show the interrupts statistics (if available)",
2831 .mhandler.info = irq_info,
2834 .name = "pic",
2835 .args_type = "",
2836 .params = "",
2837 .help = "show i8259 (PIC) state",
2838 .mhandler.info = pic_info,
2841 .name = "pci",
2842 .args_type = "",
2843 .params = "",
2844 .help = "show PCI info",
2845 .user_print = do_pci_info_print,
2846 .mhandler.info_new = do_pci_info,
2848 #if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC)
2850 .name = "tlb",
2851 .args_type = "",
2852 .params = "",
2853 .help = "show virtual to physical memory mappings",
2854 .mhandler.info = tlb_info,
2856 #endif
2857 #if defined(TARGET_I386)
2859 .name = "mem",
2860 .args_type = "",
2861 .params = "",
2862 .help = "show the active virtual memory mappings",
2863 .mhandler.info = mem_info,
2865 #endif
2867 .name = "mtree",
2868 .args_type = "",
2869 .params = "",
2870 .help = "show memory tree",
2871 .mhandler.info = do_info_mtree,
2874 .name = "jit",
2875 .args_type = "",
2876 .params = "",
2877 .help = "show dynamic compiler info",
2878 .mhandler.info = do_info_jit,
2881 .name = "kvm",
2882 .args_type = "",
2883 .params = "",
2884 .help = "show KVM information",
2885 .mhandler.info = hmp_info_kvm,
2888 .name = "numa",
2889 .args_type = "",
2890 .params = "",
2891 .help = "show NUMA information",
2892 .mhandler.info = do_info_numa,
2895 .name = "usb",
2896 .args_type = "",
2897 .params = "",
2898 .help = "show guest USB devices",
2899 .mhandler.info = usb_info,
2902 .name = "usbhost",
2903 .args_type = "",
2904 .params = "",
2905 .help = "show host USB devices",
2906 .mhandler.info = usb_host_info,
2909 .name = "profile",
2910 .args_type = "",
2911 .params = "",
2912 .help = "show profiling information",
2913 .mhandler.info = do_info_profile,
2916 .name = "capture",
2917 .args_type = "",
2918 .params = "",
2919 .help = "show capture information",
2920 .mhandler.info = do_info_capture,
2923 .name = "snapshots",
2924 .args_type = "",
2925 .params = "",
2926 .help = "show the currently saved VM snapshots",
2927 .mhandler.info = do_info_snapshots,
2930 .name = "status",
2931 .args_type = "",
2932 .params = "",
2933 .help = "show the current VM status (running|paused)",
2934 .mhandler.info = hmp_info_status,
2937 .name = "pcmcia",
2938 .args_type = "",
2939 .params = "",
2940 .help = "show guest PCMCIA status",
2941 .mhandler.info = pcmcia_info,
2944 .name = "mice",
2945 .args_type = "",
2946 .params = "",
2947 .help = "show which guest mouse is receiving events",
2948 .user_print = do_info_mice_print,
2949 .mhandler.info_new = do_info_mice,
2952 .name = "vnc",
2953 .args_type = "",
2954 .params = "",
2955 .help = "show the vnc server status",
2956 .user_print = do_info_vnc_print,
2957 .mhandler.info_new = do_info_vnc,
2959 #if defined(CONFIG_SPICE)
2961 .name = "spice",
2962 .args_type = "",
2963 .params = "",
2964 .help = "show the spice server status",
2965 .user_print = do_info_spice_print,
2966 .mhandler.info_new = do_info_spice,
2968 #endif
2970 .name = "name",
2971 .args_type = "",
2972 .params = "",
2973 .help = "show the current VM name",
2974 .mhandler.info = hmp_info_name,
2977 .name = "uuid",
2978 .args_type = "",
2979 .params = "",
2980 .help = "show the current VM UUID",
2981 .mhandler.info = hmp_info_uuid,
2983 #if defined(TARGET_PPC)
2985 .name = "cpustats",
2986 .args_type = "",
2987 .params = "",
2988 .help = "show CPU statistics",
2989 .mhandler.info = do_info_cpu_stats,
2991 #endif
2992 #if defined(CONFIG_SLIRP)
2994 .name = "usernet",
2995 .args_type = "",
2996 .params = "",
2997 .help = "show user network stack connection states",
2998 .mhandler.info = do_info_usernet,
3000 #endif
3002 .name = "migrate",
3003 .args_type = "",
3004 .params = "",
3005 .help = "show migration status",
3006 .user_print = do_info_migrate_print,
3007 .mhandler.info_new = do_info_migrate,
3010 .name = "balloon",
3011 .args_type = "",
3012 .params = "",
3013 .help = "show balloon information",
3014 .user_print = monitor_print_balloon,
3015 .mhandler.info_async = do_info_balloon,
3016 .flags = MONITOR_CMD_ASYNC,
3019 .name = "qtree",
3020 .args_type = "",
3021 .params = "",
3022 .help = "show device tree",
3023 .mhandler.info = do_info_qtree,
3026 .name = "qdm",
3027 .args_type = "",
3028 .params = "",
3029 .help = "show qdev device model list",
3030 .mhandler.info = do_info_qdm,
3033 .name = "roms",
3034 .args_type = "",
3035 .params = "",
3036 .help = "show roms",
3037 .mhandler.info = do_info_roms,
3039 #if defined(CONFIG_TRACE_SIMPLE)
3041 .name = "trace",
3042 .args_type = "",
3043 .params = "",
3044 .help = "show current contents of trace buffer",
3045 .mhandler.info = do_info_trace,
3047 #endif
3049 .name = "trace-events",
3050 .args_type = "",
3051 .params = "",
3052 .help = "show available trace-events & their state",
3053 .mhandler.info = do_trace_print_events,
3056 .name = NULL,
3060 static const mon_cmd_t qmp_cmds[] = {
3061 #include "qmp-commands-old.h"
3062 { /* NULL */ },
3065 static const mon_cmd_t qmp_query_cmds[] = {
3067 .name = "commands",
3068 .args_type = "",
3069 .params = "",
3070 .help = "list QMP available commands",
3071 .user_print = monitor_user_noop,
3072 .mhandler.info_new = do_info_commands,
3075 .name = "block",
3076 .args_type = "",
3077 .params = "",
3078 .help = "show the block devices",
3079 .user_print = bdrv_info_print,
3080 .mhandler.info_new = bdrv_info,
3083 .name = "blockstats",
3084 .args_type = "",
3085 .params = "",
3086 .help = "show block device statistics",
3087 .user_print = bdrv_stats_print,
3088 .mhandler.info_new = bdrv_info_stats,
3091 .name = "cpus",
3092 .args_type = "",
3093 .params = "",
3094 .help = "show infos for each CPU",
3095 .user_print = monitor_print_cpus,
3096 .mhandler.info_new = do_info_cpus,
3099 .name = "pci",
3100 .args_type = "",
3101 .params = "",
3102 .help = "show PCI info",
3103 .user_print = do_pci_info_print,
3104 .mhandler.info_new = do_pci_info,
3107 .name = "mice",
3108 .args_type = "",
3109 .params = "",
3110 .help = "show which guest mouse is receiving events",
3111 .user_print = do_info_mice_print,
3112 .mhandler.info_new = do_info_mice,
3115 .name = "vnc",
3116 .args_type = "",
3117 .params = "",
3118 .help = "show the vnc server status",
3119 .user_print = do_info_vnc_print,
3120 .mhandler.info_new = do_info_vnc,
3122 #if defined(CONFIG_SPICE)
3124 .name = "spice",
3125 .args_type = "",
3126 .params = "",
3127 .help = "show the spice server status",
3128 .user_print = do_info_spice_print,
3129 .mhandler.info_new = do_info_spice,
3131 #endif
3133 .name = "migrate",
3134 .args_type = "",
3135 .params = "",
3136 .help = "show migration status",
3137 .user_print = do_info_migrate_print,
3138 .mhandler.info_new = do_info_migrate,
3141 .name = "balloon",
3142 .args_type = "",
3143 .params = "",
3144 .help = "show balloon information",
3145 .user_print = monitor_print_balloon,
3146 .mhandler.info_async = do_info_balloon,
3147 .flags = MONITOR_CMD_ASYNC,
3149 { /* NULL */ },
3152 /*******************************************************************/
3154 static const char *pch;
3155 static jmp_buf expr_env;
3157 #define MD_TLONG 0
3158 #define MD_I32 1
3160 typedef struct MonitorDef {
3161 const char *name;
3162 int offset;
3163 target_long (*get_value)(const struct MonitorDef *md, int val);
3164 int type;
3165 } MonitorDef;
3167 #if defined(TARGET_I386)
3168 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
3170 CPUState *env = mon_get_cpu();
3171 return env->eip + env->segs[R_CS].base;
3173 #endif
3175 #if defined(TARGET_PPC)
3176 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
3178 CPUState *env = mon_get_cpu();
3179 unsigned int u;
3180 int i;
3182 u = 0;
3183 for (i = 0; i < 8; i++)
3184 u |= env->crf[i] << (32 - (4 * i));
3186 return u;
3189 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
3191 CPUState *env = mon_get_cpu();
3192 return env->msr;
3195 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
3197 CPUState *env = mon_get_cpu();
3198 return env->xer;
3201 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
3203 CPUState *env = mon_get_cpu();
3204 return cpu_ppc_load_decr(env);
3207 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
3209 CPUState *env = mon_get_cpu();
3210 return cpu_ppc_load_tbu(env);
3213 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
3215 CPUState *env = mon_get_cpu();
3216 return cpu_ppc_load_tbl(env);
3218 #endif
3220 #if defined(TARGET_SPARC)
3221 #ifndef TARGET_SPARC64
3222 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
3224 CPUState *env = mon_get_cpu();
3226 return cpu_get_psr(env);
3228 #endif
3230 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
3232 CPUState *env = mon_get_cpu();
3233 return env->regwptr[val];
3235 #endif
3237 static const MonitorDef monitor_defs[] = {
3238 #ifdef TARGET_I386
3240 #define SEG(name, seg) \
3241 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
3242 { name ".base", offsetof(CPUState, segs[seg].base) },\
3243 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
3245 { "eax", offsetof(CPUState, regs[0]) },
3246 { "ecx", offsetof(CPUState, regs[1]) },
3247 { "edx", offsetof(CPUState, regs[2]) },
3248 { "ebx", offsetof(CPUState, regs[3]) },
3249 { "esp|sp", offsetof(CPUState, regs[4]) },
3250 { "ebp|fp", offsetof(CPUState, regs[5]) },
3251 { "esi", offsetof(CPUState, regs[6]) },
3252 { "edi", offsetof(CPUState, regs[7]) },
3253 #ifdef TARGET_X86_64
3254 { "r8", offsetof(CPUState, regs[8]) },
3255 { "r9", offsetof(CPUState, regs[9]) },
3256 { "r10", offsetof(CPUState, regs[10]) },
3257 { "r11", offsetof(CPUState, regs[11]) },
3258 { "r12", offsetof(CPUState, regs[12]) },
3259 { "r13", offsetof(CPUState, regs[13]) },
3260 { "r14", offsetof(CPUState, regs[14]) },
3261 { "r15", offsetof(CPUState, regs[15]) },
3262 #endif
3263 { "eflags", offsetof(CPUState, eflags) },
3264 { "eip", offsetof(CPUState, eip) },
3265 SEG("cs", R_CS)
3266 SEG("ds", R_DS)
3267 SEG("es", R_ES)
3268 SEG("ss", R_SS)
3269 SEG("fs", R_FS)
3270 SEG("gs", R_GS)
3271 { "pc", 0, monitor_get_pc, },
3272 #elif defined(TARGET_PPC)
3273 /* General purpose registers */
3274 { "r0", offsetof(CPUState, gpr[0]) },
3275 { "r1", offsetof(CPUState, gpr[1]) },
3276 { "r2", offsetof(CPUState, gpr[2]) },
3277 { "r3", offsetof(CPUState, gpr[3]) },
3278 { "r4", offsetof(CPUState, gpr[4]) },
3279 { "r5", offsetof(CPUState, gpr[5]) },
3280 { "r6", offsetof(CPUState, gpr[6]) },
3281 { "r7", offsetof(CPUState, gpr[7]) },
3282 { "r8", offsetof(CPUState, gpr[8]) },
3283 { "r9", offsetof(CPUState, gpr[9]) },
3284 { "r10", offsetof(CPUState, gpr[10]) },
3285 { "r11", offsetof(CPUState, gpr[11]) },
3286 { "r12", offsetof(CPUState, gpr[12]) },
3287 { "r13", offsetof(CPUState, gpr[13]) },
3288 { "r14", offsetof(CPUState, gpr[14]) },
3289 { "r15", offsetof(CPUState, gpr[15]) },
3290 { "r16", offsetof(CPUState, gpr[16]) },
3291 { "r17", offsetof(CPUState, gpr[17]) },
3292 { "r18", offsetof(CPUState, gpr[18]) },
3293 { "r19", offsetof(CPUState, gpr[19]) },
3294 { "r20", offsetof(CPUState, gpr[20]) },
3295 { "r21", offsetof(CPUState, gpr[21]) },
3296 { "r22", offsetof(CPUState, gpr[22]) },
3297 { "r23", offsetof(CPUState, gpr[23]) },
3298 { "r24", offsetof(CPUState, gpr[24]) },
3299 { "r25", offsetof(CPUState, gpr[25]) },
3300 { "r26", offsetof(CPUState, gpr[26]) },
3301 { "r27", offsetof(CPUState, gpr[27]) },
3302 { "r28", offsetof(CPUState, gpr[28]) },
3303 { "r29", offsetof(CPUState, gpr[29]) },
3304 { "r30", offsetof(CPUState, gpr[30]) },
3305 { "r31", offsetof(CPUState, gpr[31]) },
3306 /* Floating point registers */
3307 { "f0", offsetof(CPUState, fpr[0]) },
3308 { "f1", offsetof(CPUState, fpr[1]) },
3309 { "f2", offsetof(CPUState, fpr[2]) },
3310 { "f3", offsetof(CPUState, fpr[3]) },
3311 { "f4", offsetof(CPUState, fpr[4]) },
3312 { "f5", offsetof(CPUState, fpr[5]) },
3313 { "f6", offsetof(CPUState, fpr[6]) },
3314 { "f7", offsetof(CPUState, fpr[7]) },
3315 { "f8", offsetof(CPUState, fpr[8]) },
3316 { "f9", offsetof(CPUState, fpr[9]) },
3317 { "f10", offsetof(CPUState, fpr[10]) },
3318 { "f11", offsetof(CPUState, fpr[11]) },
3319 { "f12", offsetof(CPUState, fpr[12]) },
3320 { "f13", offsetof(CPUState, fpr[13]) },
3321 { "f14", offsetof(CPUState, fpr[14]) },
3322 { "f15", offsetof(CPUState, fpr[15]) },
3323 { "f16", offsetof(CPUState, fpr[16]) },
3324 { "f17", offsetof(CPUState, fpr[17]) },
3325 { "f18", offsetof(CPUState, fpr[18]) },
3326 { "f19", offsetof(CPUState, fpr[19]) },
3327 { "f20", offsetof(CPUState, fpr[20]) },
3328 { "f21", offsetof(CPUState, fpr[21]) },
3329 { "f22", offsetof(CPUState, fpr[22]) },
3330 { "f23", offsetof(CPUState, fpr[23]) },
3331 { "f24", offsetof(CPUState, fpr[24]) },
3332 { "f25", offsetof(CPUState, fpr[25]) },
3333 { "f26", offsetof(CPUState, fpr[26]) },
3334 { "f27", offsetof(CPUState, fpr[27]) },
3335 { "f28", offsetof(CPUState, fpr[28]) },
3336 { "f29", offsetof(CPUState, fpr[29]) },
3337 { "f30", offsetof(CPUState, fpr[30]) },
3338 { "f31", offsetof(CPUState, fpr[31]) },
3339 { "fpscr", offsetof(CPUState, fpscr) },
3340 /* Next instruction pointer */
3341 { "nip|pc", offsetof(CPUState, nip) },
3342 { "lr", offsetof(CPUState, lr) },
3343 { "ctr", offsetof(CPUState, ctr) },
3344 { "decr", 0, &monitor_get_decr, },
3345 { "ccr", 0, &monitor_get_ccr, },
3346 /* Machine state register */
3347 { "msr", 0, &monitor_get_msr, },
3348 { "xer", 0, &monitor_get_xer, },
3349 { "tbu", 0, &monitor_get_tbu, },
3350 { "tbl", 0, &monitor_get_tbl, },
3351 #if defined(TARGET_PPC64)
3352 /* Address space register */
3353 { "asr", offsetof(CPUState, asr) },
3354 #endif
3355 /* Segment registers */
3356 { "sdr1", offsetof(CPUState, spr[SPR_SDR1]) },
3357 { "sr0", offsetof(CPUState, sr[0]) },
3358 { "sr1", offsetof(CPUState, sr[1]) },
3359 { "sr2", offsetof(CPUState, sr[2]) },
3360 { "sr3", offsetof(CPUState, sr[3]) },
3361 { "sr4", offsetof(CPUState, sr[4]) },
3362 { "sr5", offsetof(CPUState, sr[5]) },
3363 { "sr6", offsetof(CPUState, sr[6]) },
3364 { "sr7", offsetof(CPUState, sr[7]) },
3365 { "sr8", offsetof(CPUState, sr[8]) },
3366 { "sr9", offsetof(CPUState, sr[9]) },
3367 { "sr10", offsetof(CPUState, sr[10]) },
3368 { "sr11", offsetof(CPUState, sr[11]) },
3369 { "sr12", offsetof(CPUState, sr[12]) },
3370 { "sr13", offsetof(CPUState, sr[13]) },
3371 { "sr14", offsetof(CPUState, sr[14]) },
3372 { "sr15", offsetof(CPUState, sr[15]) },
3373 /* Too lazy to put BATs... */
3374 { "pvr", offsetof(CPUState, spr[SPR_PVR]) },
3376 { "srr0", offsetof(CPUState, spr[SPR_SRR0]) },
3377 { "srr1", offsetof(CPUState, spr[SPR_SRR1]) },
3378 { "sprg0", offsetof(CPUState, spr[SPR_SPRG0]) },
3379 { "sprg1", offsetof(CPUState, spr[SPR_SPRG1]) },
3380 { "sprg2", offsetof(CPUState, spr[SPR_SPRG2]) },
3381 { "sprg3", offsetof(CPUState, spr[SPR_SPRG3]) },
3382 { "sprg4", offsetof(CPUState, spr[SPR_SPRG4]) },
3383 { "sprg5", offsetof(CPUState, spr[SPR_SPRG5]) },
3384 { "sprg6", offsetof(CPUState, spr[SPR_SPRG6]) },
3385 { "sprg7", offsetof(CPUState, spr[SPR_SPRG7]) },
3386 { "pid", offsetof(CPUState, spr[SPR_BOOKE_PID]) },
3387 { "csrr0", offsetof(CPUState, spr[SPR_BOOKE_CSRR0]) },
3388 { "csrr1", offsetof(CPUState, spr[SPR_BOOKE_CSRR1]) },
3389 { "esr", offsetof(CPUState, spr[SPR_BOOKE_ESR]) },
3390 { "dear", offsetof(CPUState, spr[SPR_BOOKE_DEAR]) },
3391 { "mcsr", offsetof(CPUState, spr[SPR_BOOKE_MCSR]) },
3392 { "tsr", offsetof(CPUState, spr[SPR_BOOKE_TSR]) },
3393 { "tcr", offsetof(CPUState, spr[SPR_BOOKE_TCR]) },
3394 { "vrsave", offsetof(CPUState, spr[SPR_VRSAVE]) },
3395 { "pir", offsetof(CPUState, spr[SPR_BOOKE_PIR]) },
3396 { "mcsrr0", offsetof(CPUState, spr[SPR_BOOKE_MCSRR0]) },
3397 { "mcsrr1", offsetof(CPUState, spr[SPR_BOOKE_MCSRR1]) },
3398 { "decar", offsetof(CPUState, spr[SPR_BOOKE_DECAR]) },
3399 { "ivpr", offsetof(CPUState, spr[SPR_BOOKE_IVPR]) },
3400 { "epcr", offsetof(CPUState, spr[SPR_BOOKE_EPCR]) },
3401 { "sprg8", offsetof(CPUState, spr[SPR_BOOKE_SPRG8]) },
3402 { "ivor0", offsetof(CPUState, spr[SPR_BOOKE_IVOR0]) },
3403 { "ivor1", offsetof(CPUState, spr[SPR_BOOKE_IVOR1]) },
3404 { "ivor2", offsetof(CPUState, spr[SPR_BOOKE_IVOR2]) },
3405 { "ivor3", offsetof(CPUState, spr[SPR_BOOKE_IVOR3]) },
3406 { "ivor4", offsetof(CPUState, spr[SPR_BOOKE_IVOR4]) },
3407 { "ivor5", offsetof(CPUState, spr[SPR_BOOKE_IVOR5]) },
3408 { "ivor6", offsetof(CPUState, spr[SPR_BOOKE_IVOR6]) },
3409 { "ivor7", offsetof(CPUState, spr[SPR_BOOKE_IVOR7]) },
3410 { "ivor8", offsetof(CPUState, spr[SPR_BOOKE_IVOR8]) },
3411 { "ivor9", offsetof(CPUState, spr[SPR_BOOKE_IVOR9]) },
3412 { "ivor10", offsetof(CPUState, spr[SPR_BOOKE_IVOR10]) },
3413 { "ivor11", offsetof(CPUState, spr[SPR_BOOKE_IVOR11]) },
3414 { "ivor12", offsetof(CPUState, spr[SPR_BOOKE_IVOR12]) },
3415 { "ivor13", offsetof(CPUState, spr[SPR_BOOKE_IVOR13]) },
3416 { "ivor14", offsetof(CPUState, spr[SPR_BOOKE_IVOR14]) },
3417 { "ivor15", offsetof(CPUState, spr[SPR_BOOKE_IVOR15]) },
3418 { "ivor32", offsetof(CPUState, spr[SPR_BOOKE_IVOR32]) },
3419 { "ivor33", offsetof(CPUState, spr[SPR_BOOKE_IVOR33]) },
3420 { "ivor34", offsetof(CPUState, spr[SPR_BOOKE_IVOR34]) },
3421 { "ivor35", offsetof(CPUState, spr[SPR_BOOKE_IVOR35]) },
3422 { "ivor36", offsetof(CPUState, spr[SPR_BOOKE_IVOR36]) },
3423 { "ivor37", offsetof(CPUState, spr[SPR_BOOKE_IVOR37]) },
3424 { "mas0", offsetof(CPUState, spr[SPR_BOOKE_MAS0]) },
3425 { "mas1", offsetof(CPUState, spr[SPR_BOOKE_MAS1]) },
3426 { "mas2", offsetof(CPUState, spr[SPR_BOOKE_MAS2]) },
3427 { "mas3", offsetof(CPUState, spr[SPR_BOOKE_MAS3]) },
3428 { "mas4", offsetof(CPUState, spr[SPR_BOOKE_MAS4]) },
3429 { "mas6", offsetof(CPUState, spr[SPR_BOOKE_MAS6]) },
3430 { "mas7", offsetof(CPUState, spr[SPR_BOOKE_MAS7]) },
3431 { "mmucfg", offsetof(CPUState, spr[SPR_MMUCFG]) },
3432 { "tlb0cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB0CFG]) },
3433 { "tlb1cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB1CFG]) },
3434 { "epr", offsetof(CPUState, spr[SPR_BOOKE_EPR]) },
3435 { "eplc", offsetof(CPUState, spr[SPR_BOOKE_EPLC]) },
3436 { "epsc", offsetof(CPUState, spr[SPR_BOOKE_EPSC]) },
3437 { "svr", offsetof(CPUState, spr[SPR_E500_SVR]) },
3438 { "mcar", offsetof(CPUState, spr[SPR_Exxx_MCAR]) },
3439 { "pid1", offsetof(CPUState, spr[SPR_BOOKE_PID1]) },
3440 { "pid2", offsetof(CPUState, spr[SPR_BOOKE_PID2]) },
3441 { "hid0", offsetof(CPUState, spr[SPR_HID0]) },
3443 #elif defined(TARGET_SPARC)
3444 { "g0", offsetof(CPUState, gregs[0]) },
3445 { "g1", offsetof(CPUState, gregs[1]) },
3446 { "g2", offsetof(CPUState, gregs[2]) },
3447 { "g3", offsetof(CPUState, gregs[3]) },
3448 { "g4", offsetof(CPUState, gregs[4]) },
3449 { "g5", offsetof(CPUState, gregs[5]) },
3450 { "g6", offsetof(CPUState, gregs[6]) },
3451 { "g7", offsetof(CPUState, gregs[7]) },
3452 { "o0", 0, monitor_get_reg },
3453 { "o1", 1, monitor_get_reg },
3454 { "o2", 2, monitor_get_reg },
3455 { "o3", 3, monitor_get_reg },
3456 { "o4", 4, monitor_get_reg },
3457 { "o5", 5, monitor_get_reg },
3458 { "o6", 6, monitor_get_reg },
3459 { "o7", 7, monitor_get_reg },
3460 { "l0", 8, monitor_get_reg },
3461 { "l1", 9, monitor_get_reg },
3462 { "l2", 10, monitor_get_reg },
3463 { "l3", 11, monitor_get_reg },
3464 { "l4", 12, monitor_get_reg },
3465 { "l5", 13, monitor_get_reg },
3466 { "l6", 14, monitor_get_reg },
3467 { "l7", 15, monitor_get_reg },
3468 { "i0", 16, monitor_get_reg },
3469 { "i1", 17, monitor_get_reg },
3470 { "i2", 18, monitor_get_reg },
3471 { "i3", 19, monitor_get_reg },
3472 { "i4", 20, monitor_get_reg },
3473 { "i5", 21, monitor_get_reg },
3474 { "i6", 22, monitor_get_reg },
3475 { "i7", 23, monitor_get_reg },
3476 { "pc", offsetof(CPUState, pc) },
3477 { "npc", offsetof(CPUState, npc) },
3478 { "y", offsetof(CPUState, y) },
3479 #ifndef TARGET_SPARC64
3480 { "psr", 0, &monitor_get_psr, },
3481 { "wim", offsetof(CPUState, wim) },
3482 #endif
3483 { "tbr", offsetof(CPUState, tbr) },
3484 { "fsr", offsetof(CPUState, fsr) },
3485 { "f0", offsetof(CPUState, fpr[0]) },
3486 { "f1", offsetof(CPUState, fpr[1]) },
3487 { "f2", offsetof(CPUState, fpr[2]) },
3488 { "f3", offsetof(CPUState, fpr[3]) },
3489 { "f4", offsetof(CPUState, fpr[4]) },
3490 { "f5", offsetof(CPUState, fpr[5]) },
3491 { "f6", offsetof(CPUState, fpr[6]) },
3492 { "f7", offsetof(CPUState, fpr[7]) },
3493 { "f8", offsetof(CPUState, fpr[8]) },
3494 { "f9", offsetof(CPUState, fpr[9]) },
3495 { "f10", offsetof(CPUState, fpr[10]) },
3496 { "f11", offsetof(CPUState, fpr[11]) },
3497 { "f12", offsetof(CPUState, fpr[12]) },
3498 { "f13", offsetof(CPUState, fpr[13]) },
3499 { "f14", offsetof(CPUState, fpr[14]) },
3500 { "f15", offsetof(CPUState, fpr[15]) },
3501 { "f16", offsetof(CPUState, fpr[16]) },
3502 { "f17", offsetof(CPUState, fpr[17]) },
3503 { "f18", offsetof(CPUState, fpr[18]) },
3504 { "f19", offsetof(CPUState, fpr[19]) },
3505 { "f20", offsetof(CPUState, fpr[20]) },
3506 { "f21", offsetof(CPUState, fpr[21]) },
3507 { "f22", offsetof(CPUState, fpr[22]) },
3508 { "f23", offsetof(CPUState, fpr[23]) },
3509 { "f24", offsetof(CPUState, fpr[24]) },
3510 { "f25", offsetof(CPUState, fpr[25]) },
3511 { "f26", offsetof(CPUState, fpr[26]) },
3512 { "f27", offsetof(CPUState, fpr[27]) },
3513 { "f28", offsetof(CPUState, fpr[28]) },
3514 { "f29", offsetof(CPUState, fpr[29]) },
3515 { "f30", offsetof(CPUState, fpr[30]) },
3516 { "f31", offsetof(CPUState, fpr[31]) },
3517 #ifdef TARGET_SPARC64
3518 { "f32", offsetof(CPUState, fpr[32]) },
3519 { "f34", offsetof(CPUState, fpr[34]) },
3520 { "f36", offsetof(CPUState, fpr[36]) },
3521 { "f38", offsetof(CPUState, fpr[38]) },
3522 { "f40", offsetof(CPUState, fpr[40]) },
3523 { "f42", offsetof(CPUState, fpr[42]) },
3524 { "f44", offsetof(CPUState, fpr[44]) },
3525 { "f46", offsetof(CPUState, fpr[46]) },
3526 { "f48", offsetof(CPUState, fpr[48]) },
3527 { "f50", offsetof(CPUState, fpr[50]) },
3528 { "f52", offsetof(CPUState, fpr[52]) },
3529 { "f54", offsetof(CPUState, fpr[54]) },
3530 { "f56", offsetof(CPUState, fpr[56]) },
3531 { "f58", offsetof(CPUState, fpr[58]) },
3532 { "f60", offsetof(CPUState, fpr[60]) },
3533 { "f62", offsetof(CPUState, fpr[62]) },
3534 { "asi", offsetof(CPUState, asi) },
3535 { "pstate", offsetof(CPUState, pstate) },
3536 { "cansave", offsetof(CPUState, cansave) },
3537 { "canrestore", offsetof(CPUState, canrestore) },
3538 { "otherwin", offsetof(CPUState, otherwin) },
3539 { "wstate", offsetof(CPUState, wstate) },
3540 { "cleanwin", offsetof(CPUState, cleanwin) },
3541 { "fprs", offsetof(CPUState, fprs) },
3542 #endif
3543 #endif
3544 { NULL },
3547 static void expr_error(Monitor *mon, const char *msg)
3549 monitor_printf(mon, "%s\n", msg);
3550 longjmp(expr_env, 1);
3553 /* return 0 if OK, -1 if not found */
3554 static int get_monitor_def(target_long *pval, const char *name)
3556 const MonitorDef *md;
3557 void *ptr;
3559 for(md = monitor_defs; md->name != NULL; md++) {
3560 if (compare_cmd(name, md->name)) {
3561 if (md->get_value) {
3562 *pval = md->get_value(md, md->offset);
3563 } else {
3564 CPUState *env = mon_get_cpu();
3565 ptr = (uint8_t *)env + md->offset;
3566 switch(md->type) {
3567 case MD_I32:
3568 *pval = *(int32_t *)ptr;
3569 break;
3570 case MD_TLONG:
3571 *pval = *(target_long *)ptr;
3572 break;
3573 default:
3574 *pval = 0;
3575 break;
3578 return 0;
3581 return -1;
3584 static void next(void)
3586 if (*pch != '\0') {
3587 pch++;
3588 while (qemu_isspace(*pch))
3589 pch++;
3593 static int64_t expr_sum(Monitor *mon);
3595 static int64_t expr_unary(Monitor *mon)
3597 int64_t n;
3598 char *p;
3599 int ret;
3601 switch(*pch) {
3602 case '+':
3603 next();
3604 n = expr_unary(mon);
3605 break;
3606 case '-':
3607 next();
3608 n = -expr_unary(mon);
3609 break;
3610 case '~':
3611 next();
3612 n = ~expr_unary(mon);
3613 break;
3614 case '(':
3615 next();
3616 n = expr_sum(mon);
3617 if (*pch != ')') {
3618 expr_error(mon, "')' expected");
3620 next();
3621 break;
3622 case '\'':
3623 pch++;
3624 if (*pch == '\0')
3625 expr_error(mon, "character constant expected");
3626 n = *pch;
3627 pch++;
3628 if (*pch != '\'')
3629 expr_error(mon, "missing terminating \' character");
3630 next();
3631 break;
3632 case '$':
3634 char buf[128], *q;
3635 target_long reg=0;
3637 pch++;
3638 q = buf;
3639 while ((*pch >= 'a' && *pch <= 'z') ||
3640 (*pch >= 'A' && *pch <= 'Z') ||
3641 (*pch >= '0' && *pch <= '9') ||
3642 *pch == '_' || *pch == '.') {
3643 if ((q - buf) < sizeof(buf) - 1)
3644 *q++ = *pch;
3645 pch++;
3647 while (qemu_isspace(*pch))
3648 pch++;
3649 *q = 0;
3650 ret = get_monitor_def(&reg, buf);
3651 if (ret < 0)
3652 expr_error(mon, "unknown register");
3653 n = reg;
3655 break;
3656 case '\0':
3657 expr_error(mon, "unexpected end of expression");
3658 n = 0;
3659 break;
3660 default:
3661 #if TARGET_PHYS_ADDR_BITS > 32
3662 n = strtoull(pch, &p, 0);
3663 #else
3664 n = strtoul(pch, &p, 0);
3665 #endif
3666 if (pch == p) {
3667 expr_error(mon, "invalid char in expression");
3669 pch = p;
3670 while (qemu_isspace(*pch))
3671 pch++;
3672 break;
3674 return n;
3678 static int64_t expr_prod(Monitor *mon)
3680 int64_t val, val2;
3681 int op;
3683 val = expr_unary(mon);
3684 for(;;) {
3685 op = *pch;
3686 if (op != '*' && op != '/' && op != '%')
3687 break;
3688 next();
3689 val2 = expr_unary(mon);
3690 switch(op) {
3691 default:
3692 case '*':
3693 val *= val2;
3694 break;
3695 case '/':
3696 case '%':
3697 if (val2 == 0)
3698 expr_error(mon, "division by zero");
3699 if (op == '/')
3700 val /= val2;
3701 else
3702 val %= val2;
3703 break;
3706 return val;
3709 static int64_t expr_logic(Monitor *mon)
3711 int64_t val, val2;
3712 int op;
3714 val = expr_prod(mon);
3715 for(;;) {
3716 op = *pch;
3717 if (op != '&' && op != '|' && op != '^')
3718 break;
3719 next();
3720 val2 = expr_prod(mon);
3721 switch(op) {
3722 default:
3723 case '&':
3724 val &= val2;
3725 break;
3726 case '|':
3727 val |= val2;
3728 break;
3729 case '^':
3730 val ^= val2;
3731 break;
3734 return val;
3737 static int64_t expr_sum(Monitor *mon)
3739 int64_t val, val2;
3740 int op;
3742 val = expr_logic(mon);
3743 for(;;) {
3744 op = *pch;
3745 if (op != '+' && op != '-')
3746 break;
3747 next();
3748 val2 = expr_logic(mon);
3749 if (op == '+')
3750 val += val2;
3751 else
3752 val -= val2;
3754 return val;
3757 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
3759 pch = *pp;
3760 if (setjmp(expr_env)) {
3761 *pp = pch;
3762 return -1;
3764 while (qemu_isspace(*pch))
3765 pch++;
3766 *pval = expr_sum(mon);
3767 *pp = pch;
3768 return 0;
3771 static int get_double(Monitor *mon, double *pval, const char **pp)
3773 const char *p = *pp;
3774 char *tailp;
3775 double d;
3777 d = strtod(p, &tailp);
3778 if (tailp == p) {
3779 monitor_printf(mon, "Number expected\n");
3780 return -1;
3782 if (d != d || d - d != 0) {
3783 /* NaN or infinity */
3784 monitor_printf(mon, "Bad number\n");
3785 return -1;
3787 *pval = d;
3788 *pp = tailp;
3789 return 0;
3792 static int get_str(char *buf, int buf_size, const char **pp)
3794 const char *p;
3795 char *q;
3796 int c;
3798 q = buf;
3799 p = *pp;
3800 while (qemu_isspace(*p))
3801 p++;
3802 if (*p == '\0') {
3803 fail:
3804 *q = '\0';
3805 *pp = p;
3806 return -1;
3808 if (*p == '\"') {
3809 p++;
3810 while (*p != '\0' && *p != '\"') {
3811 if (*p == '\\') {
3812 p++;
3813 c = *p++;
3814 switch(c) {
3815 case 'n':
3816 c = '\n';
3817 break;
3818 case 'r':
3819 c = '\r';
3820 break;
3821 case '\\':
3822 case '\'':
3823 case '\"':
3824 break;
3825 default:
3826 qemu_printf("unsupported escape code: '\\%c'\n", c);
3827 goto fail;
3829 if ((q - buf) < buf_size - 1) {
3830 *q++ = c;
3832 } else {
3833 if ((q - buf) < buf_size - 1) {
3834 *q++ = *p;
3836 p++;
3839 if (*p != '\"') {
3840 qemu_printf("unterminated string\n");
3841 goto fail;
3843 p++;
3844 } else {
3845 while (*p != '\0' && !qemu_isspace(*p)) {
3846 if ((q - buf) < buf_size - 1) {
3847 *q++ = *p;
3849 p++;
3852 *q = '\0';
3853 *pp = p;
3854 return 0;
3858 * Store the command-name in cmdname, and return a pointer to
3859 * the remaining of the command string.
3861 static const char *get_command_name(const char *cmdline,
3862 char *cmdname, size_t nlen)
3864 size_t len;
3865 const char *p, *pstart;
3867 p = cmdline;
3868 while (qemu_isspace(*p))
3869 p++;
3870 if (*p == '\0')
3871 return NULL;
3872 pstart = p;
3873 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3874 p++;
3875 len = p - pstart;
3876 if (len > nlen - 1)
3877 len = nlen - 1;
3878 memcpy(cmdname, pstart, len);
3879 cmdname[len] = '\0';
3880 return p;
3884 * Read key of 'type' into 'key' and return the current
3885 * 'type' pointer.
3887 static char *key_get_info(const char *type, char **key)
3889 size_t len;
3890 char *p, *str;
3892 if (*type == ',')
3893 type++;
3895 p = strchr(type, ':');
3896 if (!p) {
3897 *key = NULL;
3898 return NULL;
3900 len = p - type;
3902 str = g_malloc(len + 1);
3903 memcpy(str, type, len);
3904 str[len] = '\0';
3906 *key = str;
3907 return ++p;
3910 static int default_fmt_format = 'x';
3911 static int default_fmt_size = 4;
3913 #define MAX_ARGS 16
3915 static int is_valid_option(const char *c, const char *typestr)
3917 char option[3];
3919 option[0] = '-';
3920 option[1] = *c;
3921 option[2] = '\0';
3923 typestr = strstr(typestr, option);
3924 return (typestr != NULL);
3927 static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3928 const char *cmdname)
3930 const mon_cmd_t *cmd;
3932 for (cmd = disp_table; cmd->name != NULL; cmd++) {
3933 if (compare_cmd(cmdname, cmd->name)) {
3934 return cmd;
3938 return NULL;
3941 static const mon_cmd_t *monitor_find_command(const char *cmdname)
3943 return search_dispatch_table(mon_cmds, cmdname);
3946 static const mon_cmd_t *qmp_find_query_cmd(const char *info_item)
3948 return search_dispatch_table(qmp_query_cmds, info_item);
3951 static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3953 return search_dispatch_table(qmp_cmds, cmdname);
3956 static const mon_cmd_t *monitor_parse_command(Monitor *mon,
3957 const char *cmdline,
3958 QDict *qdict)
3960 const char *p, *typestr;
3961 int c;
3962 const mon_cmd_t *cmd;
3963 char cmdname[256];
3964 char buf[1024];
3965 char *key;
3967 #ifdef DEBUG
3968 monitor_printf(mon, "command='%s'\n", cmdline);
3969 #endif
3971 /* extract the command name */
3972 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3973 if (!p)
3974 return NULL;
3976 cmd = monitor_find_command(cmdname);
3977 if (!cmd) {
3978 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
3979 return NULL;
3982 /* parse the parameters */
3983 typestr = cmd->args_type;
3984 for(;;) {
3985 typestr = key_get_info(typestr, &key);
3986 if (!typestr)
3987 break;
3988 c = *typestr;
3989 typestr++;
3990 switch(c) {
3991 case 'F':
3992 case 'B':
3993 case 's':
3995 int ret;
3997 while (qemu_isspace(*p))
3998 p++;
3999 if (*typestr == '?') {
4000 typestr++;
4001 if (*p == '\0') {
4002 /* no optional string: NULL argument */
4003 break;
4006 ret = get_str(buf, sizeof(buf), &p);
4007 if (ret < 0) {
4008 switch(c) {
4009 case 'F':
4010 monitor_printf(mon, "%s: filename expected\n",
4011 cmdname);
4012 break;
4013 case 'B':
4014 monitor_printf(mon, "%s: block device name expected\n",
4015 cmdname);
4016 break;
4017 default:
4018 monitor_printf(mon, "%s: string expected\n", cmdname);
4019 break;
4021 goto fail;
4023 qdict_put(qdict, key, qstring_from_str(buf));
4025 break;
4026 case 'O':
4028 QemuOptsList *opts_list;
4029 QemuOpts *opts;
4031 opts_list = qemu_find_opts(key);
4032 if (!opts_list || opts_list->desc->name) {
4033 goto bad_type;
4035 while (qemu_isspace(*p)) {
4036 p++;
4038 if (!*p)
4039 break;
4040 if (get_str(buf, sizeof(buf), &p) < 0) {
4041 goto fail;
4043 opts = qemu_opts_parse(opts_list, buf, 1);
4044 if (!opts) {
4045 goto fail;
4047 qemu_opts_to_qdict(opts, qdict);
4048 qemu_opts_del(opts);
4050 break;
4051 case '/':
4053 int count, format, size;
4055 while (qemu_isspace(*p))
4056 p++;
4057 if (*p == '/') {
4058 /* format found */
4059 p++;
4060 count = 1;
4061 if (qemu_isdigit(*p)) {
4062 count = 0;
4063 while (qemu_isdigit(*p)) {
4064 count = count * 10 + (*p - '0');
4065 p++;
4068 size = -1;
4069 format = -1;
4070 for(;;) {
4071 switch(*p) {
4072 case 'o':
4073 case 'd':
4074 case 'u':
4075 case 'x':
4076 case 'i':
4077 case 'c':
4078 format = *p++;
4079 break;
4080 case 'b':
4081 size = 1;
4082 p++;
4083 break;
4084 case 'h':
4085 size = 2;
4086 p++;
4087 break;
4088 case 'w':
4089 size = 4;
4090 p++;
4091 break;
4092 case 'g':
4093 case 'L':
4094 size = 8;
4095 p++;
4096 break;
4097 default:
4098 goto next;
4101 next:
4102 if (*p != '\0' && !qemu_isspace(*p)) {
4103 monitor_printf(mon, "invalid char in format: '%c'\n",
4104 *p);
4105 goto fail;
4107 if (format < 0)
4108 format = default_fmt_format;
4109 if (format != 'i') {
4110 /* for 'i', not specifying a size gives -1 as size */
4111 if (size < 0)
4112 size = default_fmt_size;
4113 default_fmt_size = size;
4115 default_fmt_format = format;
4116 } else {
4117 count = 1;
4118 format = default_fmt_format;
4119 if (format != 'i') {
4120 size = default_fmt_size;
4121 } else {
4122 size = -1;
4125 qdict_put(qdict, "count", qint_from_int(count));
4126 qdict_put(qdict, "format", qint_from_int(format));
4127 qdict_put(qdict, "size", qint_from_int(size));
4129 break;
4130 case 'i':
4131 case 'l':
4132 case 'M':
4134 int64_t val;
4136 while (qemu_isspace(*p))
4137 p++;
4138 if (*typestr == '?' || *typestr == '.') {
4139 if (*typestr == '?') {
4140 if (*p == '\0') {
4141 typestr++;
4142 break;
4144 } else {
4145 if (*p == '.') {
4146 p++;
4147 while (qemu_isspace(*p))
4148 p++;
4149 } else {
4150 typestr++;
4151 break;
4154 typestr++;
4156 if (get_expr(mon, &val, &p))
4157 goto fail;
4158 /* Check if 'i' is greater than 32-bit */
4159 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
4160 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
4161 monitor_printf(mon, "integer is for 32-bit values\n");
4162 goto fail;
4163 } else if (c == 'M') {
4164 val <<= 20;
4166 qdict_put(qdict, key, qint_from_int(val));
4168 break;
4169 case 'o':
4171 int64_t val;
4172 char *end;
4174 while (qemu_isspace(*p)) {
4175 p++;
4177 if (*typestr == '?') {
4178 typestr++;
4179 if (*p == '\0') {
4180 break;
4183 val = strtosz(p, &end);
4184 if (val < 0) {
4185 monitor_printf(mon, "invalid size\n");
4186 goto fail;
4188 qdict_put(qdict, key, qint_from_int(val));
4189 p = end;
4191 break;
4192 case 'T':
4194 double val;
4196 while (qemu_isspace(*p))
4197 p++;
4198 if (*typestr == '?') {
4199 typestr++;
4200 if (*p == '\0') {
4201 break;
4204 if (get_double(mon, &val, &p) < 0) {
4205 goto fail;
4207 if (p[0] && p[1] == 's') {
4208 switch (*p) {
4209 case 'm':
4210 val /= 1e3; p += 2; break;
4211 case 'u':
4212 val /= 1e6; p += 2; break;
4213 case 'n':
4214 val /= 1e9; p += 2; break;
4217 if (*p && !qemu_isspace(*p)) {
4218 monitor_printf(mon, "Unknown unit suffix\n");
4219 goto fail;
4221 qdict_put(qdict, key, qfloat_from_double(val));
4223 break;
4224 case 'b':
4226 const char *beg;
4227 int val;
4229 while (qemu_isspace(*p)) {
4230 p++;
4232 beg = p;
4233 while (qemu_isgraph(*p)) {
4234 p++;
4236 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
4237 val = 1;
4238 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
4239 val = 0;
4240 } else {
4241 monitor_printf(mon, "Expected 'on' or 'off'\n");
4242 goto fail;
4244 qdict_put(qdict, key, qbool_from_int(val));
4246 break;
4247 case '-':
4249 const char *tmp = p;
4250 int skip_key = 0;
4251 /* option */
4253 c = *typestr++;
4254 if (c == '\0')
4255 goto bad_type;
4256 while (qemu_isspace(*p))
4257 p++;
4258 if (*p == '-') {
4259 p++;
4260 if(c != *p) {
4261 if(!is_valid_option(p, typestr)) {
4263 monitor_printf(mon, "%s: unsupported option -%c\n",
4264 cmdname, *p);
4265 goto fail;
4266 } else {
4267 skip_key = 1;
4270 if(skip_key) {
4271 p = tmp;
4272 } else {
4273 /* has option */
4274 p++;
4275 qdict_put(qdict, key, qbool_from_int(1));
4279 break;
4280 default:
4281 bad_type:
4282 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
4283 goto fail;
4285 g_free(key);
4286 key = NULL;
4288 /* check that all arguments were parsed */
4289 while (qemu_isspace(*p))
4290 p++;
4291 if (*p != '\0') {
4292 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
4293 cmdname);
4294 goto fail;
4297 return cmd;
4299 fail:
4300 g_free(key);
4301 return NULL;
4304 void monitor_set_error(Monitor *mon, QError *qerror)
4306 /* report only the first error */
4307 if (!mon->error) {
4308 mon->error = qerror;
4309 } else {
4310 MON_DEBUG("Additional error report at %s:%d\n",
4311 qerror->file, qerror->linenr);
4312 QDECREF(qerror);
4316 static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
4318 if (ret && !monitor_has_error(mon)) {
4320 * If it returns failure, it must have passed on error.
4322 * Action: Report an internal error to the client if in QMP.
4324 qerror_report(QERR_UNDEFINED_ERROR);
4325 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
4326 cmd->name);
4329 #ifdef CONFIG_DEBUG_MONITOR
4330 if (!ret && monitor_has_error(mon)) {
4332 * If it returns success, it must not have passed an error.
4334 * Action: Report the passed error to the client.
4336 MON_DEBUG("command '%s' returned success but passed an error\n",
4337 cmd->name);
4340 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
4342 * Handlers should not call Monitor print functions.
4344 * Action: Ignore them in QMP.
4346 * (XXX: we don't check any 'info' or 'query' command here
4347 * because the user print function _is_ called by do_info(), hence
4348 * we will trigger this check. This problem will go away when we
4349 * make 'query' commands real and kill do_info())
4351 MON_DEBUG("command '%s' called print functions %d time(s)\n",
4352 cmd->name, mon_print_count_get(mon));
4354 #endif
4357 static void handle_user_command(Monitor *mon, const char *cmdline)
4359 QDict *qdict;
4360 const mon_cmd_t *cmd;
4362 qdict = qdict_new();
4364 cmd = monitor_parse_command(mon, cmdline, qdict);
4365 if (!cmd)
4366 goto out;
4368 if (handler_is_async(cmd)) {
4369 user_async_cmd_handler(mon, cmd, qdict);
4370 } else if (handler_is_qobject(cmd)) {
4371 QObject *data = NULL;
4373 /* XXX: ignores the error code */
4374 cmd->mhandler.cmd_new(mon, qdict, &data);
4375 assert(!monitor_has_error(mon));
4376 if (data) {
4377 cmd->user_print(mon, data);
4378 qobject_decref(data);
4380 } else {
4381 cmd->mhandler.cmd(mon, qdict);
4384 out:
4385 QDECREF(qdict);
4388 static void cmd_completion(const char *name, const char *list)
4390 const char *p, *pstart;
4391 char cmd[128];
4392 int len;
4394 p = list;
4395 for(;;) {
4396 pstart = p;
4397 p = strchr(p, '|');
4398 if (!p)
4399 p = pstart + strlen(pstart);
4400 len = p - pstart;
4401 if (len > sizeof(cmd) - 2)
4402 len = sizeof(cmd) - 2;
4403 memcpy(cmd, pstart, len);
4404 cmd[len] = '\0';
4405 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
4406 readline_add_completion(cur_mon->rs, cmd);
4408 if (*p == '\0')
4409 break;
4410 p++;
4414 static void file_completion(const char *input)
4416 DIR *ffs;
4417 struct dirent *d;
4418 char path[1024];
4419 char file[1024], file_prefix[1024];
4420 int input_path_len;
4421 const char *p;
4423 p = strrchr(input, '/');
4424 if (!p) {
4425 input_path_len = 0;
4426 pstrcpy(file_prefix, sizeof(file_prefix), input);
4427 pstrcpy(path, sizeof(path), ".");
4428 } else {
4429 input_path_len = p - input + 1;
4430 memcpy(path, input, input_path_len);
4431 if (input_path_len > sizeof(path) - 1)
4432 input_path_len = sizeof(path) - 1;
4433 path[input_path_len] = '\0';
4434 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4436 #ifdef DEBUG_COMPLETION
4437 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
4438 input, path, file_prefix);
4439 #endif
4440 ffs = opendir(path);
4441 if (!ffs)
4442 return;
4443 for(;;) {
4444 struct stat sb;
4445 d = readdir(ffs);
4446 if (!d)
4447 break;
4449 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4450 continue;
4453 if (strstart(d->d_name, file_prefix, NULL)) {
4454 memcpy(file, input, input_path_len);
4455 if (input_path_len < sizeof(file))
4456 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4457 d->d_name);
4458 /* stat the file to find out if it's a directory.
4459 * In that case add a slash to speed up typing long paths
4461 stat(file, &sb);
4462 if(S_ISDIR(sb.st_mode))
4463 pstrcat(file, sizeof(file), "/");
4464 readline_add_completion(cur_mon->rs, file);
4467 closedir(ffs);
4470 static void block_completion_it(void *opaque, BlockDriverState *bs)
4472 const char *name = bdrv_get_device_name(bs);
4473 const char *input = opaque;
4475 if (input[0] == '\0' ||
4476 !strncmp(name, (char *)input, strlen(input))) {
4477 readline_add_completion(cur_mon->rs, name);
4481 /* NOTE: this parser is an approximate form of the real command parser */
4482 static void parse_cmdline(const char *cmdline,
4483 int *pnb_args, char **args)
4485 const char *p;
4486 int nb_args, ret;
4487 char buf[1024];
4489 p = cmdline;
4490 nb_args = 0;
4491 for(;;) {
4492 while (qemu_isspace(*p))
4493 p++;
4494 if (*p == '\0')
4495 break;
4496 if (nb_args >= MAX_ARGS)
4497 break;
4498 ret = get_str(buf, sizeof(buf), &p);
4499 args[nb_args] = g_strdup(buf);
4500 nb_args++;
4501 if (ret < 0)
4502 break;
4504 *pnb_args = nb_args;
4507 static const char *next_arg_type(const char *typestr)
4509 const char *p = strchr(typestr, ':');
4510 return (p != NULL ? ++p : typestr);
4513 static void monitor_find_completion(const char *cmdline)
4515 const char *cmdname;
4516 char *args[MAX_ARGS];
4517 int nb_args, i, len;
4518 const char *ptype, *str;
4519 const mon_cmd_t *cmd;
4520 const KeyDef *key;
4522 parse_cmdline(cmdline, &nb_args, args);
4523 #ifdef DEBUG_COMPLETION
4524 for(i = 0; i < nb_args; i++) {
4525 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
4527 #endif
4529 /* if the line ends with a space, it means we want to complete the
4530 next arg */
4531 len = strlen(cmdline);
4532 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
4533 if (nb_args >= MAX_ARGS) {
4534 goto cleanup;
4536 args[nb_args++] = g_strdup("");
4538 if (nb_args <= 1) {
4539 /* command completion */
4540 if (nb_args == 0)
4541 cmdname = "";
4542 else
4543 cmdname = args[0];
4544 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
4545 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
4546 cmd_completion(cmdname, cmd->name);
4548 } else {
4549 /* find the command */
4550 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4551 if (compare_cmd(args[0], cmd->name)) {
4552 break;
4555 if (!cmd->name) {
4556 goto cleanup;
4559 ptype = next_arg_type(cmd->args_type);
4560 for(i = 0; i < nb_args - 2; i++) {
4561 if (*ptype != '\0') {
4562 ptype = next_arg_type(ptype);
4563 while (*ptype == '?')
4564 ptype = next_arg_type(ptype);
4567 str = args[nb_args - 1];
4568 if (*ptype == '-' && ptype[1] != '\0') {
4569 ptype = next_arg_type(ptype);
4571 switch(*ptype) {
4572 case 'F':
4573 /* file completion */
4574 readline_set_completion_index(cur_mon->rs, strlen(str));
4575 file_completion(str);
4576 break;
4577 case 'B':
4578 /* block device name completion */
4579 readline_set_completion_index(cur_mon->rs, strlen(str));
4580 bdrv_iterate(block_completion_it, (void *)str);
4581 break;
4582 case 's':
4583 /* XXX: more generic ? */
4584 if (!strcmp(cmd->name, "info")) {
4585 readline_set_completion_index(cur_mon->rs, strlen(str));
4586 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4587 cmd_completion(str, cmd->name);
4589 } else if (!strcmp(cmd->name, "sendkey")) {
4590 char *sep = strrchr(str, '-');
4591 if (sep)
4592 str = sep + 1;
4593 readline_set_completion_index(cur_mon->rs, strlen(str));
4594 for(key = key_defs; key->name != NULL; key++) {
4595 cmd_completion(str, key->name);
4597 } else if (!strcmp(cmd->name, "help|?")) {
4598 readline_set_completion_index(cur_mon->rs, strlen(str));
4599 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4600 cmd_completion(str, cmd->name);
4603 break;
4604 default:
4605 break;
4609 cleanup:
4610 for (i = 0; i < nb_args; i++) {
4611 g_free(args[i]);
4615 static int monitor_can_read(void *opaque)
4617 Monitor *mon = opaque;
4619 return (mon->suspend_cnt == 0) ? 1 : 0;
4622 static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4624 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4625 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4629 * Argument validation rules:
4631 * 1. The argument must exist in cmd_args qdict
4632 * 2. The argument type must be the expected one
4634 * Special case: If the argument doesn't exist in cmd_args and
4635 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4636 * checking is skipped for it.
4638 static int check_client_args_type(const QDict *client_args,
4639 const QDict *cmd_args, int flags)
4641 const QDictEntry *ent;
4643 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4644 QObject *obj;
4645 QString *arg_type;
4646 const QObject *client_arg = qdict_entry_value(ent);
4647 const char *client_arg_name = qdict_entry_key(ent);
4649 obj = qdict_get(cmd_args, client_arg_name);
4650 if (!obj) {
4651 if (flags & QMP_ACCEPT_UNKNOWNS) {
4652 /* handler accepts unknowns */
4653 continue;
4655 /* client arg doesn't exist */
4656 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4657 return -1;
4660 arg_type = qobject_to_qstring(obj);
4661 assert(arg_type != NULL);
4663 /* check if argument's type is correct */
4664 switch (qstring_get_str(arg_type)[0]) {
4665 case 'F':
4666 case 'B':
4667 case 's':
4668 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4669 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4670 "string");
4671 return -1;
4673 break;
4674 case 'i':
4675 case 'l':
4676 case 'M':
4677 case 'o':
4678 if (qobject_type(client_arg) != QTYPE_QINT) {
4679 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4680 "int");
4681 return -1;
4683 break;
4684 case 'T':
4685 if (qobject_type(client_arg) != QTYPE_QINT &&
4686 qobject_type(client_arg) != QTYPE_QFLOAT) {
4687 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4688 "number");
4689 return -1;
4691 break;
4692 case 'b':
4693 case '-':
4694 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4695 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4696 "bool");
4697 return -1;
4699 break;
4700 case 'O':
4701 assert(flags & QMP_ACCEPT_UNKNOWNS);
4702 break;
4703 case '/':
4704 case '.':
4706 * These types are not supported by QMP and thus are not
4707 * handled here. Fall through.
4709 default:
4710 abort();
4714 return 0;
4718 * - Check if the client has passed all mandatory args
4719 * - Set special flags for argument validation
4721 static int check_mandatory_args(const QDict *cmd_args,
4722 const QDict *client_args, int *flags)
4724 const QDictEntry *ent;
4726 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4727 const char *cmd_arg_name = qdict_entry_key(ent);
4728 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4729 assert(type != NULL);
4731 if (qstring_get_str(type)[0] == 'O') {
4732 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4733 *flags |= QMP_ACCEPT_UNKNOWNS;
4734 } else if (qstring_get_str(type)[0] != '-' &&
4735 qstring_get_str(type)[1] != '?' &&
4736 !qdict_haskey(client_args, cmd_arg_name)) {
4737 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4738 return -1;
4742 return 0;
4745 static QDict *qdict_from_args_type(const char *args_type)
4747 int i;
4748 QDict *qdict;
4749 QString *key, *type, *cur_qs;
4751 assert(args_type != NULL);
4753 qdict = qdict_new();
4755 if (args_type == NULL || args_type[0] == '\0') {
4756 /* no args, empty qdict */
4757 goto out;
4760 key = qstring_new();
4761 type = qstring_new();
4763 cur_qs = key;
4765 for (i = 0;; i++) {
4766 switch (args_type[i]) {
4767 case ',':
4768 case '\0':
4769 qdict_put(qdict, qstring_get_str(key), type);
4770 QDECREF(key);
4771 if (args_type[i] == '\0') {
4772 goto out;
4774 type = qstring_new(); /* qdict has ref */
4775 cur_qs = key = qstring_new();
4776 break;
4777 case ':':
4778 cur_qs = type;
4779 break;
4780 default:
4781 qstring_append_chr(cur_qs, args_type[i]);
4782 break;
4786 out:
4787 return qdict;
4791 * Client argument checking rules:
4793 * 1. Client must provide all mandatory arguments
4794 * 2. Each argument provided by the client must be expected
4795 * 3. Each argument provided by the client must have the type expected
4796 * by the command
4798 static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4800 int flags, err;
4801 QDict *cmd_args;
4803 cmd_args = qdict_from_args_type(cmd->args_type);
4805 flags = 0;
4806 err = check_mandatory_args(cmd_args, client_args, &flags);
4807 if (err) {
4808 goto out;
4811 err = check_client_args_type(client_args, cmd_args, flags);
4813 out:
4814 QDECREF(cmd_args);
4815 return err;
4819 * Input object checking rules
4821 * 1. Input object must be a dict
4822 * 2. The "execute" key must exist
4823 * 3. The "execute" key must be a string
4824 * 4. If the "arguments" key exists, it must be a dict
4825 * 5. If the "id" key exists, it can be anything (ie. json-value)
4826 * 6. Any argument not listed above is considered invalid
4828 static QDict *qmp_check_input_obj(QObject *input_obj)
4830 const QDictEntry *ent;
4831 int has_exec_key = 0;
4832 QDict *input_dict;
4834 if (qobject_type(input_obj) != QTYPE_QDICT) {
4835 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4836 return NULL;
4839 input_dict = qobject_to_qdict(input_obj);
4841 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4842 const char *arg_name = qdict_entry_key(ent);
4843 const QObject *arg_obj = qdict_entry_value(ent);
4845 if (!strcmp(arg_name, "execute")) {
4846 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4847 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4848 "string");
4849 return NULL;
4851 has_exec_key = 1;
4852 } else if (!strcmp(arg_name, "arguments")) {
4853 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4854 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4855 "object");
4856 return NULL;
4858 } else if (!strcmp(arg_name, "id")) {
4859 /* FIXME: check duplicated IDs for async commands */
4860 } else {
4861 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4862 return NULL;
4866 if (!has_exec_key) {
4867 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4868 return NULL;
4871 return input_dict;
4874 static void qmp_call_query_cmd(Monitor *mon, const mon_cmd_t *cmd)
4876 QObject *ret_data = NULL;
4878 if (handler_is_async(cmd)) {
4879 qmp_async_info_handler(mon, cmd);
4880 if (monitor_has_error(mon)) {
4881 monitor_protocol_emitter(mon, NULL);
4883 } else {
4884 cmd->mhandler.info_new(mon, &ret_data);
4885 monitor_protocol_emitter(mon, ret_data);
4886 qobject_decref(ret_data);
4890 static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4891 const QDict *params)
4893 int ret;
4894 QObject *data = NULL;
4896 mon_print_count_init(mon);
4898 ret = cmd->mhandler.cmd_new(mon, params, &data);
4899 handler_audit(mon, cmd, ret);
4900 monitor_protocol_emitter(mon, data);
4901 qobject_decref(data);
4904 static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4906 int err;
4907 QObject *obj;
4908 QDict *input, *args;
4909 const mon_cmd_t *cmd;
4910 Monitor *mon = cur_mon;
4911 const char *cmd_name, *query_cmd;
4913 query_cmd = NULL;
4914 args = input = NULL;
4916 obj = json_parser_parse(tokens, NULL);
4917 if (!obj) {
4918 // FIXME: should be triggered in json_parser_parse()
4919 qerror_report(QERR_JSON_PARSING);
4920 goto err_out;
4923 input = qmp_check_input_obj(obj);
4924 if (!input) {
4925 qobject_decref(obj);
4926 goto err_out;
4929 mon->mc->id = qdict_get(input, "id");
4930 qobject_incref(mon->mc->id);
4932 cmd_name = qdict_get_str(input, "execute");
4933 if (invalid_qmp_mode(mon, cmd_name)) {
4934 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4935 goto err_out;
4938 cmd = qmp_find_cmd(cmd_name);
4939 if (!cmd && strstart(cmd_name, "query-", &query_cmd)) {
4940 cmd = qmp_find_query_cmd(query_cmd);
4942 if (!cmd) {
4943 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4944 goto err_out;
4947 obj = qdict_get(input, "arguments");
4948 if (!obj) {
4949 args = qdict_new();
4950 } else {
4951 args = qobject_to_qdict(obj);
4952 QINCREF(args);
4955 err = qmp_check_client_args(cmd, args);
4956 if (err < 0) {
4957 goto err_out;
4960 if (query_cmd) {
4961 qmp_call_query_cmd(mon, cmd);
4962 } else if (handler_is_async(cmd)) {
4963 err = qmp_async_cmd_handler(mon, cmd, args);
4964 if (err) {
4965 /* emit the error response */
4966 goto err_out;
4968 } else {
4969 qmp_call_cmd(mon, cmd, args);
4972 goto out;
4974 err_out:
4975 monitor_protocol_emitter(mon, NULL);
4976 out:
4977 QDECREF(input);
4978 QDECREF(args);
4982 * monitor_control_read(): Read and handle QMP input
4984 static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4986 Monitor *old_mon = cur_mon;
4988 cur_mon = opaque;
4990 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
4992 cur_mon = old_mon;
4995 static void monitor_read(void *opaque, const uint8_t *buf, int size)
4997 Monitor *old_mon = cur_mon;
4998 int i;
5000 cur_mon = opaque;
5002 if (cur_mon->rs) {
5003 for (i = 0; i < size; i++)
5004 readline_handle_byte(cur_mon->rs, buf[i]);
5005 } else {
5006 if (size == 0 || buf[size - 1] != 0)
5007 monitor_printf(cur_mon, "corrupted command\n");
5008 else
5009 handle_user_command(cur_mon, (char *)buf);
5012 cur_mon = old_mon;
5015 static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
5017 monitor_suspend(mon);
5018 handle_user_command(mon, cmdline);
5019 monitor_resume(mon);
5022 int monitor_suspend(Monitor *mon)
5024 if (!mon->rs)
5025 return -ENOTTY;
5026 mon->suspend_cnt++;
5027 return 0;
5030 void monitor_resume(Monitor *mon)
5032 if (!mon->rs)
5033 return;
5034 if (--mon->suspend_cnt == 0)
5035 readline_show_prompt(mon->rs);
5038 static QObject *get_qmp_greeting(void)
5040 QObject *ver = NULL;
5042 qmp_marshal_input_query_version(NULL, NULL, &ver);
5043 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
5047 * monitor_control_event(): Print QMP gretting
5049 static void monitor_control_event(void *opaque, int event)
5051 QObject *data;
5052 Monitor *mon = opaque;
5054 switch (event) {
5055 case CHR_EVENT_OPENED:
5056 mon->mc->command_mode = 0;
5057 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
5058 data = get_qmp_greeting();
5059 monitor_json_emitter(mon, data);
5060 qobject_decref(data);
5061 break;
5062 case CHR_EVENT_CLOSED:
5063 json_message_parser_destroy(&mon->mc->parser);
5064 break;
5068 static void monitor_event(void *opaque, int event)
5070 Monitor *mon = opaque;
5072 switch (event) {
5073 case CHR_EVENT_MUX_IN:
5074 mon->mux_out = 0;
5075 if (mon->reset_seen) {
5076 readline_restart(mon->rs);
5077 monitor_resume(mon);
5078 monitor_flush(mon);
5079 } else {
5080 mon->suspend_cnt = 0;
5082 break;
5084 case CHR_EVENT_MUX_OUT:
5085 if (mon->reset_seen) {
5086 if (mon->suspend_cnt == 0) {
5087 monitor_printf(mon, "\n");
5089 monitor_flush(mon);
5090 monitor_suspend(mon);
5091 } else {
5092 mon->suspend_cnt++;
5094 mon->mux_out = 1;
5095 break;
5097 case CHR_EVENT_OPENED:
5098 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
5099 "information\n", QEMU_VERSION);
5100 if (!mon->mux_out) {
5101 readline_show_prompt(mon->rs);
5103 mon->reset_seen = 1;
5104 break;
5110 * Local variables:
5111 * c-indent-level: 4
5112 * c-basic-offset: 4
5113 * tab-width: 8
5114 * End:
5117 void monitor_init(CharDriverState *chr, int flags)
5119 static int is_first_init = 1;
5120 Monitor *mon;
5122 if (is_first_init) {
5123 key_timer = qemu_new_timer_ns(vm_clock, release_keys, NULL);
5124 is_first_init = 0;
5127 mon = g_malloc0(sizeof(*mon));
5129 mon->chr = chr;
5130 mon->flags = flags;
5131 if (flags & MONITOR_USE_READLINE) {
5132 mon->rs = readline_init(mon, monitor_find_completion);
5133 monitor_read_command(mon, 0);
5136 if (monitor_ctrl_mode(mon)) {
5137 mon->mc = g_malloc0(sizeof(MonitorControl));
5138 /* Control mode requires special handlers */
5139 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
5140 monitor_control_event, mon);
5141 qemu_chr_fe_set_echo(chr, true);
5142 } else {
5143 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
5144 monitor_event, mon);
5147 QLIST_INSERT_HEAD(&mon_list, mon, entry);
5148 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
5149 default_mon = mon;
5152 static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
5154 BlockDriverState *bs = opaque;
5155 int ret = 0;
5157 if (bdrv_set_key(bs, password) != 0) {
5158 monitor_printf(mon, "invalid password\n");
5159 ret = -EPERM;
5161 if (mon->password_completion_cb)
5162 mon->password_completion_cb(mon->password_opaque, ret);
5164 monitor_read_command(mon, 1);
5167 int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
5168 BlockDriverCompletionFunc *completion_cb,
5169 void *opaque)
5171 int err;
5173 if (!bdrv_key_required(bs)) {
5174 if (completion_cb)
5175 completion_cb(opaque, 0);
5176 return 0;
5179 if (monitor_ctrl_mode(mon)) {
5180 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
5181 return -1;
5184 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
5185 bdrv_get_encrypted_filename(bs));
5187 mon->password_completion_cb = completion_cb;
5188 mon->password_opaque = opaque;
5190 err = monitor_read_password(mon, bdrv_password_cb, bs);
5192 if (err && completion_cb)
5193 completion_cb(opaque, err);
5195 return err;