qapi: Convert quit
[qemu/kevin.git] / monitor.c
blob6e13ef6571687c3a30e00e082205a4c038ef582c
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 CommandInfoList *alloc_cmd_entry(const char *cmd_name)
736 CommandInfoList *info;
738 info = g_malloc0(sizeof(*info));
739 info->value = g_malloc0(sizeof(*info->value));
740 info->value->name = g_strdup(cmd_name);
742 return info;
745 CommandInfoList *qmp_query_commands(Error **errp)
747 CommandInfoList *info, *cmd_list = NULL;
748 const mon_cmd_t *cmd;
750 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
751 info = alloc_cmd_entry(cmd->name);
752 info->next = cmd_list;
753 cmd_list = info;
756 for (cmd = qmp_query_cmds; cmd->name != NULL; cmd++) {
757 char buf[128];
758 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
759 info = alloc_cmd_entry(buf);
760 info->next = cmd_list;
761 cmd_list = info;
764 return cmd_list;
767 /* get the current CPU defined by the user */
768 static int mon_set_cpu(int cpu_index)
770 CPUState *env;
772 for(env = first_cpu; env != NULL; env = env->next_cpu) {
773 if (env->cpu_index == cpu_index) {
774 cur_mon->mon_cpu = env;
775 return 0;
778 return -1;
781 static CPUState *mon_get_cpu(void)
783 if (!cur_mon->mon_cpu) {
784 mon_set_cpu(0);
786 cpu_synchronize_state(cur_mon->mon_cpu);
787 return cur_mon->mon_cpu;
790 static void do_info_registers(Monitor *mon)
792 CPUState *env;
793 env = mon_get_cpu();
794 #ifdef TARGET_I386
795 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
796 X86_DUMP_FPU);
797 #else
798 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
800 #endif
803 static void print_cpu_iter(QObject *obj, void *opaque)
805 QDict *cpu;
806 int active = ' ';
807 Monitor *mon = opaque;
809 assert(qobject_type(obj) == QTYPE_QDICT);
810 cpu = qobject_to_qdict(obj);
812 if (qdict_get_bool(cpu, "current")) {
813 active = '*';
816 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
818 #if defined(TARGET_I386)
819 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
820 (target_ulong) qdict_get_int(cpu, "pc"));
821 #elif defined(TARGET_PPC)
822 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
823 (target_long) qdict_get_int(cpu, "nip"));
824 #elif defined(TARGET_SPARC)
825 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
826 (target_long) qdict_get_int(cpu, "pc"));
827 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
828 (target_long) qdict_get_int(cpu, "npc"));
829 #elif defined(TARGET_MIPS)
830 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
831 (target_long) qdict_get_int(cpu, "PC"));
832 #endif
834 if (qdict_get_bool(cpu, "halted")) {
835 monitor_printf(mon, " (halted)");
838 monitor_printf(mon, " thread_id=%" PRId64 " ",
839 qdict_get_int(cpu, "thread_id"));
841 monitor_printf(mon, "\n");
844 static void monitor_print_cpus(Monitor *mon, const QObject *data)
846 QList *cpu_list;
848 assert(qobject_type(data) == QTYPE_QLIST);
849 cpu_list = qobject_to_qlist(data);
850 qlist_iter(cpu_list, print_cpu_iter, mon);
853 static void do_info_cpus(Monitor *mon, QObject **ret_data)
855 CPUState *env;
856 QList *cpu_list;
858 cpu_list = qlist_new();
860 /* just to set the default cpu if not already done */
861 mon_get_cpu();
863 for(env = first_cpu; env != NULL; env = env->next_cpu) {
864 QDict *cpu;
865 QObject *obj;
867 cpu_synchronize_state(env);
869 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
870 env->cpu_index, env == mon->mon_cpu,
871 env->halted);
873 cpu = qobject_to_qdict(obj);
875 #if defined(TARGET_I386)
876 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
877 #elif defined(TARGET_PPC)
878 qdict_put(cpu, "nip", qint_from_int(env->nip));
879 #elif defined(TARGET_SPARC)
880 qdict_put(cpu, "pc", qint_from_int(env->pc));
881 qdict_put(cpu, "npc", qint_from_int(env->npc));
882 #elif defined(TARGET_MIPS)
883 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
884 #endif
885 qdict_put(cpu, "thread_id", qint_from_int(env->thread_id));
887 qlist_append(cpu_list, cpu);
890 *ret_data = QOBJECT(cpu_list);
893 static int do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
895 int index = qdict_get_int(qdict, "index");
896 if (mon_set_cpu(index) < 0) {
897 qerror_report(QERR_INVALID_PARAMETER_VALUE, "index",
898 "a CPU number");
899 return -1;
901 return 0;
904 static void do_info_jit(Monitor *mon)
906 dump_exec_info((FILE *)mon, monitor_fprintf);
909 static void do_info_history(Monitor *mon)
911 int i;
912 const char *str;
914 if (!mon->rs)
915 return;
916 i = 0;
917 for(;;) {
918 str = readline_get_history(mon->rs, i);
919 if (!str)
920 break;
921 monitor_printf(mon, "%d: '%s'\n", i, str);
922 i++;
926 #if defined(TARGET_PPC)
927 /* XXX: not implemented in other targets */
928 static void do_info_cpu_stats(Monitor *mon)
930 CPUState *env;
932 env = mon_get_cpu();
933 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
935 #endif
937 #if defined(CONFIG_TRACE_SIMPLE)
938 static void do_info_trace(Monitor *mon)
940 st_print_trace((FILE *)mon, &monitor_fprintf);
942 #endif
944 static void do_trace_print_events(Monitor *mon)
946 trace_print_events((FILE *)mon, &monitor_fprintf);
949 #ifdef CONFIG_VNC
950 static int change_vnc_password(const char *password)
952 if (!password || !password[0]) {
953 if (vnc_display_disable_login(NULL)) {
954 qerror_report(QERR_SET_PASSWD_FAILED);
955 return -1;
957 return 0;
960 if (vnc_display_password(NULL, password) < 0) {
961 qerror_report(QERR_SET_PASSWD_FAILED);
962 return -1;
965 return 0;
968 static void change_vnc_password_cb(Monitor *mon, const char *password,
969 void *opaque)
971 change_vnc_password(password);
972 monitor_read_command(mon, 1);
975 static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
977 if (strcmp(target, "passwd") == 0 ||
978 strcmp(target, "password") == 0) {
979 if (arg) {
980 char password[9];
981 strncpy(password, arg, sizeof(password));
982 password[sizeof(password) - 1] = '\0';
983 return change_vnc_password(password);
984 } else {
985 return monitor_read_password(mon, change_vnc_password_cb, NULL);
987 } else {
988 if (vnc_display_open(NULL, target) < 0) {
989 qerror_report(QERR_VNC_SERVER_FAILED, target);
990 return -1;
994 return 0;
996 #else
997 static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
999 qerror_report(QERR_FEATURE_DISABLED, "vnc");
1000 return -ENODEV;
1002 #endif
1005 * do_change(): Change a removable medium, or VNC configuration
1007 static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
1009 const char *device = qdict_get_str(qdict, "device");
1010 const char *target = qdict_get_str(qdict, "target");
1011 const char *arg = qdict_get_try_str(qdict, "arg");
1012 int ret;
1014 if (strcmp(device, "vnc") == 0) {
1015 ret = do_change_vnc(mon, target, arg);
1016 } else {
1017 ret = do_change_block(mon, device, target, arg);
1020 return ret;
1023 static int set_password(Monitor *mon, const QDict *qdict, QObject **ret_data)
1025 const char *protocol = qdict_get_str(qdict, "protocol");
1026 const char *password = qdict_get_str(qdict, "password");
1027 const char *connected = qdict_get_try_str(qdict, "connected");
1028 int disconnect_if_connected = 0;
1029 int fail_if_connected = 0;
1030 int rc;
1032 if (connected) {
1033 if (strcmp(connected, "fail") == 0) {
1034 fail_if_connected = 1;
1035 } else if (strcmp(connected, "disconnect") == 0) {
1036 disconnect_if_connected = 1;
1037 } else if (strcmp(connected, "keep") == 0) {
1038 /* nothing */
1039 } else {
1040 qerror_report(QERR_INVALID_PARAMETER, "connected");
1041 return -1;
1045 if (strcmp(protocol, "spice") == 0) {
1046 if (!using_spice) {
1047 /* correct one? spice isn't a device ,,, */
1048 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1049 return -1;
1051 rc = qemu_spice_set_passwd(password, fail_if_connected,
1052 disconnect_if_connected);
1053 if (rc != 0) {
1054 qerror_report(QERR_SET_PASSWD_FAILED);
1055 return -1;
1057 return 0;
1060 if (strcmp(protocol, "vnc") == 0) {
1061 if (fail_if_connected || disconnect_if_connected) {
1062 /* vnc supports "connected=keep" only */
1063 qerror_report(QERR_INVALID_PARAMETER, "connected");
1064 return -1;
1066 /* Note that setting an empty password will not disable login through
1067 * this interface. */
1068 return vnc_display_password(NULL, password);
1071 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1072 return -1;
1075 static int expire_password(Monitor *mon, const QDict *qdict, QObject **ret_data)
1077 const char *protocol = qdict_get_str(qdict, "protocol");
1078 const char *whenstr = qdict_get_str(qdict, "time");
1079 time_t when;
1080 int rc;
1082 if (strcmp(whenstr, "now") == 0) {
1083 when = 0;
1084 } else if (strcmp(whenstr, "never") == 0) {
1085 when = TIME_MAX;
1086 } else if (whenstr[0] == '+') {
1087 when = time(NULL) + strtoull(whenstr+1, NULL, 10);
1088 } else {
1089 when = strtoull(whenstr, NULL, 10);
1092 if (strcmp(protocol, "spice") == 0) {
1093 if (!using_spice) {
1094 /* correct one? spice isn't a device ,,, */
1095 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1096 return -1;
1098 rc = qemu_spice_set_pw_expire(when);
1099 if (rc != 0) {
1100 qerror_report(QERR_SET_PASSWD_FAILED);
1101 return -1;
1103 return 0;
1106 if (strcmp(protocol, "vnc") == 0) {
1107 return vnc_display_pw_expire(NULL, when);
1110 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1111 return -1;
1114 static int add_graphics_client(Monitor *mon, const QDict *qdict, QObject **ret_data)
1116 const char *protocol = qdict_get_str(qdict, "protocol");
1117 const char *fdname = qdict_get_str(qdict, "fdname");
1118 CharDriverState *s;
1120 if (strcmp(protocol, "spice") == 0) {
1121 if (!using_spice) {
1122 /* correct one? spice isn't a device ,,, */
1123 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1124 return -1;
1126 qerror_report(QERR_ADD_CLIENT_FAILED);
1127 return -1;
1128 #ifdef CONFIG_VNC
1129 } else if (strcmp(protocol, "vnc") == 0) {
1130 int fd = monitor_get_fd(mon, fdname);
1131 int skipauth = qdict_get_try_bool(qdict, "skipauth", 0);
1132 vnc_display_add_client(NULL, fd, skipauth);
1133 return 0;
1134 #endif
1135 } else if ((s = qemu_chr_find(protocol)) != NULL) {
1136 int fd = monitor_get_fd(mon, fdname);
1137 if (qemu_chr_add_client(s, fd) < 0) {
1138 qerror_report(QERR_ADD_CLIENT_FAILED);
1139 return -1;
1141 return 0;
1144 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1145 return -1;
1148 static int client_migrate_info(Monitor *mon, const QDict *qdict, QObject **ret_data)
1150 const char *protocol = qdict_get_str(qdict, "protocol");
1151 const char *hostname = qdict_get_str(qdict, "hostname");
1152 const char *subject = qdict_get_try_str(qdict, "cert-subject");
1153 int port = qdict_get_try_int(qdict, "port", -1);
1154 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
1155 int ret;
1157 if (strcmp(protocol, "spice") == 0) {
1158 if (!using_spice) {
1159 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1160 return -1;
1163 ret = qemu_spice_migrate_info(hostname, port, tls_port, subject);
1164 if (ret != 0) {
1165 qerror_report(QERR_UNDEFINED_ERROR);
1166 return -1;
1168 return 0;
1171 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1172 return -1;
1175 static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
1177 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
1178 return 0;
1181 static void do_logfile(Monitor *mon, const QDict *qdict)
1183 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
1186 static void do_log(Monitor *mon, const QDict *qdict)
1188 int mask;
1189 const char *items = qdict_get_str(qdict, "items");
1191 if (!strcmp(items, "none")) {
1192 mask = 0;
1193 } else {
1194 mask = cpu_str_to_log_mask(items);
1195 if (!mask) {
1196 help_cmd(mon, "log");
1197 return;
1200 cpu_set_log(mask);
1203 static void do_singlestep(Monitor *mon, const QDict *qdict)
1205 const char *option = qdict_get_try_str(qdict, "option");
1206 if (!option || !strcmp(option, "on")) {
1207 singlestep = 1;
1208 } else if (!strcmp(option, "off")) {
1209 singlestep = 0;
1210 } else {
1211 monitor_printf(mon, "unexpected option %s\n", option);
1216 * do_stop(): Stop VM execution
1218 static int do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
1220 vm_stop(RUN_STATE_PAUSED);
1221 return 0;
1224 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
1226 struct bdrv_iterate_context {
1227 Monitor *mon;
1228 int err;
1232 * do_cont(): Resume emulation.
1234 static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
1236 struct bdrv_iterate_context context = { mon, 0 };
1238 if (runstate_check(RUN_STATE_INMIGRATE)) {
1239 qerror_report(QERR_MIGRATION_EXPECTED);
1240 return -1;
1241 } else if (runstate_check(RUN_STATE_INTERNAL_ERROR) ||
1242 runstate_check(RUN_STATE_SHUTDOWN)) {
1243 qerror_report(QERR_RESET_REQUIRED);
1244 return -1;
1247 bdrv_iterate(encrypted_bdrv_it, &context);
1248 /* only resume the vm if all keys are set and valid */
1249 if (!context.err) {
1250 vm_start();
1251 return 0;
1252 } else {
1253 return -1;
1257 static void bdrv_key_cb(void *opaque, int err)
1259 Monitor *mon = opaque;
1261 /* another key was set successfully, retry to continue */
1262 if (!err)
1263 do_cont(mon, NULL, NULL);
1266 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1268 struct bdrv_iterate_context *context = opaque;
1270 if (!context->err && bdrv_key_required(bs)) {
1271 context->err = -EBUSY;
1272 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1273 context->mon);
1277 static void do_gdbserver(Monitor *mon, const QDict *qdict)
1279 const char *device = qdict_get_try_str(qdict, "device");
1280 if (!device)
1281 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1282 if (gdbserver_start(device) < 0) {
1283 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1284 device);
1285 } else if (strcmp(device, "none") == 0) {
1286 monitor_printf(mon, "Disabled gdbserver\n");
1287 } else {
1288 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1289 device);
1293 static void do_watchdog_action(Monitor *mon, const QDict *qdict)
1295 const char *action = qdict_get_str(qdict, "action");
1296 if (select_watchdog_action(action) == -1) {
1297 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1301 static void monitor_printc(Monitor *mon, int c)
1303 monitor_printf(mon, "'");
1304 switch(c) {
1305 case '\'':
1306 monitor_printf(mon, "\\'");
1307 break;
1308 case '\\':
1309 monitor_printf(mon, "\\\\");
1310 break;
1311 case '\n':
1312 monitor_printf(mon, "\\n");
1313 break;
1314 case '\r':
1315 monitor_printf(mon, "\\r");
1316 break;
1317 default:
1318 if (c >= 32 && c <= 126) {
1319 monitor_printf(mon, "%c", c);
1320 } else {
1321 monitor_printf(mon, "\\x%02x", c);
1323 break;
1325 monitor_printf(mon, "'");
1328 static void memory_dump(Monitor *mon, int count, int format, int wsize,
1329 target_phys_addr_t addr, int is_physical)
1331 CPUState *env;
1332 int l, line_size, i, max_digits, len;
1333 uint8_t buf[16];
1334 uint64_t v;
1336 if (format == 'i') {
1337 int flags;
1338 flags = 0;
1339 env = mon_get_cpu();
1340 #ifdef TARGET_I386
1341 if (wsize == 2) {
1342 flags = 1;
1343 } else if (wsize == 4) {
1344 flags = 0;
1345 } else {
1346 /* as default we use the current CS size */
1347 flags = 0;
1348 if (env) {
1349 #ifdef TARGET_X86_64
1350 if ((env->efer & MSR_EFER_LMA) &&
1351 (env->segs[R_CS].flags & DESC_L_MASK))
1352 flags = 2;
1353 else
1354 #endif
1355 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1356 flags = 1;
1359 #endif
1360 monitor_disas(mon, env, addr, count, is_physical, flags);
1361 return;
1364 len = wsize * count;
1365 if (wsize == 1)
1366 line_size = 8;
1367 else
1368 line_size = 16;
1369 max_digits = 0;
1371 switch(format) {
1372 case 'o':
1373 max_digits = (wsize * 8 + 2) / 3;
1374 break;
1375 default:
1376 case 'x':
1377 max_digits = (wsize * 8) / 4;
1378 break;
1379 case 'u':
1380 case 'd':
1381 max_digits = (wsize * 8 * 10 + 32) / 33;
1382 break;
1383 case 'c':
1384 wsize = 1;
1385 break;
1388 while (len > 0) {
1389 if (is_physical)
1390 monitor_printf(mon, TARGET_FMT_plx ":", addr);
1391 else
1392 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
1393 l = len;
1394 if (l > line_size)
1395 l = line_size;
1396 if (is_physical) {
1397 cpu_physical_memory_read(addr, buf, l);
1398 } else {
1399 env = mon_get_cpu();
1400 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
1401 monitor_printf(mon, " Cannot access memory\n");
1402 break;
1405 i = 0;
1406 while (i < l) {
1407 switch(wsize) {
1408 default:
1409 case 1:
1410 v = ldub_raw(buf + i);
1411 break;
1412 case 2:
1413 v = lduw_raw(buf + i);
1414 break;
1415 case 4:
1416 v = (uint32_t)ldl_raw(buf + i);
1417 break;
1418 case 8:
1419 v = ldq_raw(buf + i);
1420 break;
1422 monitor_printf(mon, " ");
1423 switch(format) {
1424 case 'o':
1425 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
1426 break;
1427 case 'x':
1428 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
1429 break;
1430 case 'u':
1431 monitor_printf(mon, "%*" PRIu64, max_digits, v);
1432 break;
1433 case 'd':
1434 monitor_printf(mon, "%*" PRId64, max_digits, v);
1435 break;
1436 case 'c':
1437 monitor_printc(mon, v);
1438 break;
1440 i += wsize;
1442 monitor_printf(mon, "\n");
1443 addr += l;
1444 len -= l;
1448 static void do_memory_dump(Monitor *mon, const QDict *qdict)
1450 int count = qdict_get_int(qdict, "count");
1451 int format = qdict_get_int(qdict, "format");
1452 int size = qdict_get_int(qdict, "size");
1453 target_long addr = qdict_get_int(qdict, "addr");
1455 memory_dump(mon, count, format, size, addr, 0);
1458 static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
1460 int count = qdict_get_int(qdict, "count");
1461 int format = qdict_get_int(qdict, "format");
1462 int size = qdict_get_int(qdict, "size");
1463 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
1465 memory_dump(mon, count, format, size, addr, 1);
1468 static void do_print(Monitor *mon, const QDict *qdict)
1470 int format = qdict_get_int(qdict, "format");
1471 target_phys_addr_t val = qdict_get_int(qdict, "val");
1473 #if TARGET_PHYS_ADDR_BITS == 32
1474 switch(format) {
1475 case 'o':
1476 monitor_printf(mon, "%#o", val);
1477 break;
1478 case 'x':
1479 monitor_printf(mon, "%#x", val);
1480 break;
1481 case 'u':
1482 monitor_printf(mon, "%u", val);
1483 break;
1484 default:
1485 case 'd':
1486 monitor_printf(mon, "%d", val);
1487 break;
1488 case 'c':
1489 monitor_printc(mon, val);
1490 break;
1492 #else
1493 switch(format) {
1494 case 'o':
1495 monitor_printf(mon, "%#" PRIo64, val);
1496 break;
1497 case 'x':
1498 monitor_printf(mon, "%#" PRIx64, val);
1499 break;
1500 case 'u':
1501 monitor_printf(mon, "%" PRIu64, val);
1502 break;
1503 default:
1504 case 'd':
1505 monitor_printf(mon, "%" PRId64, val);
1506 break;
1507 case 'c':
1508 monitor_printc(mon, val);
1509 break;
1511 #endif
1512 monitor_printf(mon, "\n");
1515 static int do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
1517 FILE *f;
1518 uint32_t size = qdict_get_int(qdict, "size");
1519 const char *filename = qdict_get_str(qdict, "filename");
1520 target_long addr = qdict_get_int(qdict, "val");
1521 uint32_t l;
1522 CPUState *env;
1523 uint8_t buf[1024];
1524 int ret = -1;
1526 env = mon_get_cpu();
1528 f = fopen(filename, "wb");
1529 if (!f) {
1530 qerror_report(QERR_OPEN_FILE_FAILED, filename);
1531 return -1;
1533 while (size != 0) {
1534 l = sizeof(buf);
1535 if (l > size)
1536 l = size;
1537 cpu_memory_rw_debug(env, addr, buf, l, 0);
1538 if (fwrite(buf, 1, l, f) != l) {
1539 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1540 goto exit;
1542 addr += l;
1543 size -= l;
1546 ret = 0;
1548 exit:
1549 fclose(f);
1550 return ret;
1553 static int do_physical_memory_save(Monitor *mon, const QDict *qdict,
1554 QObject **ret_data)
1556 FILE *f;
1557 uint32_t l;
1558 uint8_t buf[1024];
1559 uint32_t size = qdict_get_int(qdict, "size");
1560 const char *filename = qdict_get_str(qdict, "filename");
1561 target_phys_addr_t addr = qdict_get_int(qdict, "val");
1562 int ret = -1;
1564 f = fopen(filename, "wb");
1565 if (!f) {
1566 qerror_report(QERR_OPEN_FILE_FAILED, filename);
1567 return -1;
1569 while (size != 0) {
1570 l = sizeof(buf);
1571 if (l > size)
1572 l = size;
1573 cpu_physical_memory_read(addr, buf, l);
1574 if (fwrite(buf, 1, l, f) != l) {
1575 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1576 goto exit;
1578 fflush(f);
1579 addr += l;
1580 size -= l;
1583 ret = 0;
1585 exit:
1586 fclose(f);
1587 return ret;
1590 static void do_sum(Monitor *mon, const QDict *qdict)
1592 uint32_t addr;
1593 uint16_t sum;
1594 uint32_t start = qdict_get_int(qdict, "start");
1595 uint32_t size = qdict_get_int(qdict, "size");
1597 sum = 0;
1598 for(addr = start; addr < (start + size); addr++) {
1599 uint8_t val = ldub_phys(addr);
1600 /* BSD sum algorithm ('sum' Unix command) */
1601 sum = (sum >> 1) | (sum << 15);
1602 sum += val;
1604 monitor_printf(mon, "%05d\n", sum);
1607 typedef struct {
1608 int keycode;
1609 const char *name;
1610 } KeyDef;
1612 static const KeyDef key_defs[] = {
1613 { 0x2a, "shift" },
1614 { 0x36, "shift_r" },
1616 { 0x38, "alt" },
1617 { 0xb8, "alt_r" },
1618 { 0x64, "altgr" },
1619 { 0xe4, "altgr_r" },
1620 { 0x1d, "ctrl" },
1621 { 0x9d, "ctrl_r" },
1623 { 0xdd, "menu" },
1625 { 0x01, "esc" },
1627 { 0x02, "1" },
1628 { 0x03, "2" },
1629 { 0x04, "3" },
1630 { 0x05, "4" },
1631 { 0x06, "5" },
1632 { 0x07, "6" },
1633 { 0x08, "7" },
1634 { 0x09, "8" },
1635 { 0x0a, "9" },
1636 { 0x0b, "0" },
1637 { 0x0c, "minus" },
1638 { 0x0d, "equal" },
1639 { 0x0e, "backspace" },
1641 { 0x0f, "tab" },
1642 { 0x10, "q" },
1643 { 0x11, "w" },
1644 { 0x12, "e" },
1645 { 0x13, "r" },
1646 { 0x14, "t" },
1647 { 0x15, "y" },
1648 { 0x16, "u" },
1649 { 0x17, "i" },
1650 { 0x18, "o" },
1651 { 0x19, "p" },
1652 { 0x1a, "bracket_left" },
1653 { 0x1b, "bracket_right" },
1654 { 0x1c, "ret" },
1656 { 0x1e, "a" },
1657 { 0x1f, "s" },
1658 { 0x20, "d" },
1659 { 0x21, "f" },
1660 { 0x22, "g" },
1661 { 0x23, "h" },
1662 { 0x24, "j" },
1663 { 0x25, "k" },
1664 { 0x26, "l" },
1665 { 0x27, "semicolon" },
1666 { 0x28, "apostrophe" },
1667 { 0x29, "grave_accent" },
1669 { 0x2b, "backslash" },
1670 { 0x2c, "z" },
1671 { 0x2d, "x" },
1672 { 0x2e, "c" },
1673 { 0x2f, "v" },
1674 { 0x30, "b" },
1675 { 0x31, "n" },
1676 { 0x32, "m" },
1677 { 0x33, "comma" },
1678 { 0x34, "dot" },
1679 { 0x35, "slash" },
1681 { 0x37, "asterisk" },
1683 { 0x39, "spc" },
1684 { 0x3a, "caps_lock" },
1685 { 0x3b, "f1" },
1686 { 0x3c, "f2" },
1687 { 0x3d, "f3" },
1688 { 0x3e, "f4" },
1689 { 0x3f, "f5" },
1690 { 0x40, "f6" },
1691 { 0x41, "f7" },
1692 { 0x42, "f8" },
1693 { 0x43, "f9" },
1694 { 0x44, "f10" },
1695 { 0x45, "num_lock" },
1696 { 0x46, "scroll_lock" },
1698 { 0xb5, "kp_divide" },
1699 { 0x37, "kp_multiply" },
1700 { 0x4a, "kp_subtract" },
1701 { 0x4e, "kp_add" },
1702 { 0x9c, "kp_enter" },
1703 { 0x53, "kp_decimal" },
1704 { 0x54, "sysrq" },
1706 { 0x52, "kp_0" },
1707 { 0x4f, "kp_1" },
1708 { 0x50, "kp_2" },
1709 { 0x51, "kp_3" },
1710 { 0x4b, "kp_4" },
1711 { 0x4c, "kp_5" },
1712 { 0x4d, "kp_6" },
1713 { 0x47, "kp_7" },
1714 { 0x48, "kp_8" },
1715 { 0x49, "kp_9" },
1717 { 0x56, "<" },
1719 { 0x57, "f11" },
1720 { 0x58, "f12" },
1722 { 0xb7, "print" },
1724 { 0xc7, "home" },
1725 { 0xc9, "pgup" },
1726 { 0xd1, "pgdn" },
1727 { 0xcf, "end" },
1729 { 0xcb, "left" },
1730 { 0xc8, "up" },
1731 { 0xd0, "down" },
1732 { 0xcd, "right" },
1734 { 0xd2, "insert" },
1735 { 0xd3, "delete" },
1736 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1737 { 0xf0, "stop" },
1738 { 0xf1, "again" },
1739 { 0xf2, "props" },
1740 { 0xf3, "undo" },
1741 { 0xf4, "front" },
1742 { 0xf5, "copy" },
1743 { 0xf6, "open" },
1744 { 0xf7, "paste" },
1745 { 0xf8, "find" },
1746 { 0xf9, "cut" },
1747 { 0xfa, "lf" },
1748 { 0xfb, "help" },
1749 { 0xfc, "meta_l" },
1750 { 0xfd, "meta_r" },
1751 { 0xfe, "compose" },
1752 #endif
1753 { 0, NULL },
1756 static int get_keycode(const char *key)
1758 const KeyDef *p;
1759 char *endp;
1760 int ret;
1762 for(p = key_defs; p->name != NULL; p++) {
1763 if (!strcmp(key, p->name))
1764 return p->keycode;
1766 if (strstart(key, "0x", NULL)) {
1767 ret = strtoul(key, &endp, 0);
1768 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1769 return ret;
1771 return -1;
1774 #define MAX_KEYCODES 16
1775 static uint8_t keycodes[MAX_KEYCODES];
1776 static int nb_pending_keycodes;
1777 static QEMUTimer *key_timer;
1779 static void release_keys(void *opaque)
1781 int keycode;
1783 while (nb_pending_keycodes > 0) {
1784 nb_pending_keycodes--;
1785 keycode = keycodes[nb_pending_keycodes];
1786 if (keycode & 0x80)
1787 kbd_put_keycode(0xe0);
1788 kbd_put_keycode(keycode | 0x80);
1792 static void do_sendkey(Monitor *mon, const QDict *qdict)
1794 char keyname_buf[16];
1795 char *separator;
1796 int keyname_len, keycode, i;
1797 const char *string = qdict_get_str(qdict, "string");
1798 int has_hold_time = qdict_haskey(qdict, "hold_time");
1799 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
1801 if (nb_pending_keycodes > 0) {
1802 qemu_del_timer(key_timer);
1803 release_keys(NULL);
1805 if (!has_hold_time)
1806 hold_time = 100;
1807 i = 0;
1808 while (1) {
1809 separator = strchr(string, '-');
1810 keyname_len = separator ? separator - string : strlen(string);
1811 if (keyname_len > 0) {
1812 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1813 if (keyname_len > sizeof(keyname_buf) - 1) {
1814 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
1815 return;
1817 if (i == MAX_KEYCODES) {
1818 monitor_printf(mon, "too many keys\n");
1819 return;
1821 keyname_buf[keyname_len] = 0;
1822 keycode = get_keycode(keyname_buf);
1823 if (keycode < 0) {
1824 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
1825 return;
1827 keycodes[i++] = keycode;
1829 if (!separator)
1830 break;
1831 string = separator + 1;
1833 nb_pending_keycodes = i;
1834 /* key down events */
1835 for (i = 0; i < nb_pending_keycodes; i++) {
1836 keycode = keycodes[i];
1837 if (keycode & 0x80)
1838 kbd_put_keycode(0xe0);
1839 kbd_put_keycode(keycode & 0x7f);
1841 /* delayed key up events */
1842 qemu_mod_timer(key_timer, qemu_get_clock_ns(vm_clock) +
1843 muldiv64(get_ticks_per_sec(), hold_time, 1000));
1846 static int mouse_button_state;
1848 static void do_mouse_move(Monitor *mon, const QDict *qdict)
1850 int dx, dy, dz;
1851 const char *dx_str = qdict_get_str(qdict, "dx_str");
1852 const char *dy_str = qdict_get_str(qdict, "dy_str");
1853 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1854 dx = strtol(dx_str, NULL, 0);
1855 dy = strtol(dy_str, NULL, 0);
1856 dz = 0;
1857 if (dz_str)
1858 dz = strtol(dz_str, NULL, 0);
1859 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1862 static void do_mouse_button(Monitor *mon, const QDict *qdict)
1864 int button_state = qdict_get_int(qdict, "button_state");
1865 mouse_button_state = button_state;
1866 kbd_mouse_event(0, 0, 0, mouse_button_state);
1869 static void do_ioport_read(Monitor *mon, const QDict *qdict)
1871 int size = qdict_get_int(qdict, "size");
1872 int addr = qdict_get_int(qdict, "addr");
1873 int has_index = qdict_haskey(qdict, "index");
1874 uint32_t val;
1875 int suffix;
1877 if (has_index) {
1878 int index = qdict_get_int(qdict, "index");
1879 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
1880 addr++;
1882 addr &= 0xffff;
1884 switch(size) {
1885 default:
1886 case 1:
1887 val = cpu_inb(addr);
1888 suffix = 'b';
1889 break;
1890 case 2:
1891 val = cpu_inw(addr);
1892 suffix = 'w';
1893 break;
1894 case 4:
1895 val = cpu_inl(addr);
1896 suffix = 'l';
1897 break;
1899 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1900 suffix, addr, size * 2, val);
1903 static void do_ioport_write(Monitor *mon, const QDict *qdict)
1905 int size = qdict_get_int(qdict, "size");
1906 int addr = qdict_get_int(qdict, "addr");
1907 int val = qdict_get_int(qdict, "val");
1909 addr &= IOPORTS_MASK;
1911 switch (size) {
1912 default:
1913 case 1:
1914 cpu_outb(addr, val);
1915 break;
1916 case 2:
1917 cpu_outw(addr, val);
1918 break;
1919 case 4:
1920 cpu_outl(addr, val);
1921 break;
1925 static void do_boot_set(Monitor *mon, const QDict *qdict)
1927 int res;
1928 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1930 res = qemu_boot_set(bootdevice);
1931 if (res == 0) {
1932 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1933 } else if (res > 0) {
1934 monitor_printf(mon, "setting boot device list failed\n");
1935 } else {
1936 monitor_printf(mon, "no function defined to set boot device list for "
1937 "this architecture\n");
1942 * do_system_reset(): Issue a machine reset
1944 static int do_system_reset(Monitor *mon, const QDict *qdict,
1945 QObject **ret_data)
1947 qemu_system_reset_request();
1948 return 0;
1952 * do_system_powerdown(): Issue a machine powerdown
1954 static int do_system_powerdown(Monitor *mon, const QDict *qdict,
1955 QObject **ret_data)
1957 qemu_system_powerdown_request();
1958 return 0;
1961 #if defined(TARGET_I386)
1962 static void print_pte(Monitor *mon, target_phys_addr_t addr,
1963 target_phys_addr_t pte,
1964 target_phys_addr_t mask)
1966 #ifdef TARGET_X86_64
1967 if (addr & (1ULL << 47)) {
1968 addr |= -1LL << 48;
1970 #endif
1971 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1972 " %c%c%c%c%c%c%c%c%c\n",
1973 addr,
1974 pte & mask,
1975 pte & PG_NX_MASK ? 'X' : '-',
1976 pte & PG_GLOBAL_MASK ? 'G' : '-',
1977 pte & PG_PSE_MASK ? 'P' : '-',
1978 pte & PG_DIRTY_MASK ? 'D' : '-',
1979 pte & PG_ACCESSED_MASK ? 'A' : '-',
1980 pte & PG_PCD_MASK ? 'C' : '-',
1981 pte & PG_PWT_MASK ? 'T' : '-',
1982 pte & PG_USER_MASK ? 'U' : '-',
1983 pte & PG_RW_MASK ? 'W' : '-');
1986 static void tlb_info_32(Monitor *mon, CPUState *env)
1988 unsigned int l1, l2;
1989 uint32_t pgd, pde, pte;
1991 pgd = env->cr[3] & ~0xfff;
1992 for(l1 = 0; l1 < 1024; l1++) {
1993 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
1994 pde = le32_to_cpu(pde);
1995 if (pde & PG_PRESENT_MASK) {
1996 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1997 /* 4M pages */
1998 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
1999 } else {
2000 for(l2 = 0; l2 < 1024; l2++) {
2001 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
2002 pte = le32_to_cpu(pte);
2003 if (pte & PG_PRESENT_MASK) {
2004 print_pte(mon, (l1 << 22) + (l2 << 12),
2005 pte & ~PG_PSE_MASK,
2006 ~0xfff);
2014 static void tlb_info_pae32(Monitor *mon, CPUState *env)
2016 unsigned int l1, l2, l3;
2017 uint64_t pdpe, pde, pte;
2018 uint64_t pdp_addr, pd_addr, pt_addr;
2020 pdp_addr = env->cr[3] & ~0x1f;
2021 for (l1 = 0; l1 < 4; l1++) {
2022 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
2023 pdpe = le64_to_cpu(pdpe);
2024 if (pdpe & PG_PRESENT_MASK) {
2025 pd_addr = pdpe & 0x3fffffffff000ULL;
2026 for (l2 = 0; l2 < 512; l2++) {
2027 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
2028 pde = le64_to_cpu(pde);
2029 if (pde & PG_PRESENT_MASK) {
2030 if (pde & PG_PSE_MASK) {
2031 /* 2M pages with PAE, CR4.PSE is ignored */
2032 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
2033 ~((target_phys_addr_t)(1 << 20) - 1));
2034 } else {
2035 pt_addr = pde & 0x3fffffffff000ULL;
2036 for (l3 = 0; l3 < 512; l3++) {
2037 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
2038 pte = le64_to_cpu(pte);
2039 if (pte & PG_PRESENT_MASK) {
2040 print_pte(mon, (l1 << 30 ) + (l2 << 21)
2041 + (l3 << 12),
2042 pte & ~PG_PSE_MASK,
2043 ~(target_phys_addr_t)0xfff);
2053 #ifdef TARGET_X86_64
2054 static void tlb_info_64(Monitor *mon, CPUState *env)
2056 uint64_t l1, l2, l3, l4;
2057 uint64_t pml4e, pdpe, pde, pte;
2058 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
2060 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
2061 for (l1 = 0; l1 < 512; l1++) {
2062 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
2063 pml4e = le64_to_cpu(pml4e);
2064 if (pml4e & PG_PRESENT_MASK) {
2065 pdp_addr = pml4e & 0x3fffffffff000ULL;
2066 for (l2 = 0; l2 < 512; l2++) {
2067 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
2068 pdpe = le64_to_cpu(pdpe);
2069 if (pdpe & PG_PRESENT_MASK) {
2070 if (pdpe & PG_PSE_MASK) {
2071 /* 1G pages, CR4.PSE is ignored */
2072 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
2073 0x3ffffc0000000ULL);
2074 } else {
2075 pd_addr = pdpe & 0x3fffffffff000ULL;
2076 for (l3 = 0; l3 < 512; l3++) {
2077 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
2078 pde = le64_to_cpu(pde);
2079 if (pde & PG_PRESENT_MASK) {
2080 if (pde & PG_PSE_MASK) {
2081 /* 2M pages, CR4.PSE is ignored */
2082 print_pte(mon, (l1 << 39) + (l2 << 30) +
2083 (l3 << 21), pde,
2084 0x3ffffffe00000ULL);
2085 } else {
2086 pt_addr = pde & 0x3fffffffff000ULL;
2087 for (l4 = 0; l4 < 512; l4++) {
2088 cpu_physical_memory_read(pt_addr
2089 + l4 * 8,
2090 &pte, 8);
2091 pte = le64_to_cpu(pte);
2092 if (pte & PG_PRESENT_MASK) {
2093 print_pte(mon, (l1 << 39) +
2094 (l2 << 30) +
2095 (l3 << 21) + (l4 << 12),
2096 pte & ~PG_PSE_MASK,
2097 0x3fffffffff000ULL);
2109 #endif
2111 static void tlb_info(Monitor *mon)
2113 CPUState *env;
2115 env = mon_get_cpu();
2117 if (!(env->cr[0] & CR0_PG_MASK)) {
2118 monitor_printf(mon, "PG disabled\n");
2119 return;
2121 if (env->cr[4] & CR4_PAE_MASK) {
2122 #ifdef TARGET_X86_64
2123 if (env->hflags & HF_LMA_MASK) {
2124 tlb_info_64(mon, env);
2125 } else
2126 #endif
2128 tlb_info_pae32(mon, env);
2130 } else {
2131 tlb_info_32(mon, env);
2135 static void mem_print(Monitor *mon, target_phys_addr_t *pstart,
2136 int *plast_prot,
2137 target_phys_addr_t end, int prot)
2139 int prot1;
2140 prot1 = *plast_prot;
2141 if (prot != prot1) {
2142 if (*pstart != -1) {
2143 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
2144 TARGET_FMT_plx " %c%c%c\n",
2145 *pstart, end, end - *pstart,
2146 prot1 & PG_USER_MASK ? 'u' : '-',
2147 'r',
2148 prot1 & PG_RW_MASK ? 'w' : '-');
2150 if (prot != 0)
2151 *pstart = end;
2152 else
2153 *pstart = -1;
2154 *plast_prot = prot;
2158 static void mem_info_32(Monitor *mon, CPUState *env)
2160 unsigned int l1, l2;
2161 int prot, last_prot;
2162 uint32_t pgd, pde, pte;
2163 target_phys_addr_t start, end;
2165 pgd = env->cr[3] & ~0xfff;
2166 last_prot = 0;
2167 start = -1;
2168 for(l1 = 0; l1 < 1024; l1++) {
2169 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
2170 pde = le32_to_cpu(pde);
2171 end = l1 << 22;
2172 if (pde & PG_PRESENT_MASK) {
2173 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
2174 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
2175 mem_print(mon, &start, &last_prot, end, prot);
2176 } else {
2177 for(l2 = 0; l2 < 1024; l2++) {
2178 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
2179 pte = le32_to_cpu(pte);
2180 end = (l1 << 22) + (l2 << 12);
2181 if (pte & PG_PRESENT_MASK) {
2182 prot = pte & pde &
2183 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
2184 } else {
2185 prot = 0;
2187 mem_print(mon, &start, &last_prot, end, prot);
2190 } else {
2191 prot = 0;
2192 mem_print(mon, &start, &last_prot, end, prot);
2195 /* Flush last range */
2196 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
2199 static void mem_info_pae32(Monitor *mon, CPUState *env)
2201 unsigned int l1, l2, l3;
2202 int prot, last_prot;
2203 uint64_t pdpe, pde, pte;
2204 uint64_t pdp_addr, pd_addr, pt_addr;
2205 target_phys_addr_t start, end;
2207 pdp_addr = env->cr[3] & ~0x1f;
2208 last_prot = 0;
2209 start = -1;
2210 for (l1 = 0; l1 < 4; l1++) {
2211 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
2212 pdpe = le64_to_cpu(pdpe);
2213 end = l1 << 30;
2214 if (pdpe & PG_PRESENT_MASK) {
2215 pd_addr = pdpe & 0x3fffffffff000ULL;
2216 for (l2 = 0; l2 < 512; l2++) {
2217 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
2218 pde = le64_to_cpu(pde);
2219 end = (l1 << 30) + (l2 << 21);
2220 if (pde & PG_PRESENT_MASK) {
2221 if (pde & PG_PSE_MASK) {
2222 prot = pde & (PG_USER_MASK | PG_RW_MASK |
2223 PG_PRESENT_MASK);
2224 mem_print(mon, &start, &last_prot, end, prot);
2225 } else {
2226 pt_addr = pde & 0x3fffffffff000ULL;
2227 for (l3 = 0; l3 < 512; l3++) {
2228 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
2229 pte = le64_to_cpu(pte);
2230 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
2231 if (pte & PG_PRESENT_MASK) {
2232 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
2233 PG_PRESENT_MASK);
2234 } else {
2235 prot = 0;
2237 mem_print(mon, &start, &last_prot, end, prot);
2240 } else {
2241 prot = 0;
2242 mem_print(mon, &start, &last_prot, end, prot);
2245 } else {
2246 prot = 0;
2247 mem_print(mon, &start, &last_prot, end, prot);
2250 /* Flush last range */
2251 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
2255 #ifdef TARGET_X86_64
2256 static void mem_info_64(Monitor *mon, CPUState *env)
2258 int prot, last_prot;
2259 uint64_t l1, l2, l3, l4;
2260 uint64_t pml4e, pdpe, pde, pte;
2261 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
2263 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
2264 last_prot = 0;
2265 start = -1;
2266 for (l1 = 0; l1 < 512; l1++) {
2267 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
2268 pml4e = le64_to_cpu(pml4e);
2269 end = l1 << 39;
2270 if (pml4e & PG_PRESENT_MASK) {
2271 pdp_addr = pml4e & 0x3fffffffff000ULL;
2272 for (l2 = 0; l2 < 512; l2++) {
2273 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
2274 pdpe = le64_to_cpu(pdpe);
2275 end = (l1 << 39) + (l2 << 30);
2276 if (pdpe & PG_PRESENT_MASK) {
2277 if (pdpe & PG_PSE_MASK) {
2278 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
2279 PG_PRESENT_MASK);
2280 prot &= pml4e;
2281 mem_print(mon, &start, &last_prot, end, prot);
2282 } else {
2283 pd_addr = pdpe & 0x3fffffffff000ULL;
2284 for (l3 = 0; l3 < 512; l3++) {
2285 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
2286 pde = le64_to_cpu(pde);
2287 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
2288 if (pde & PG_PRESENT_MASK) {
2289 if (pde & PG_PSE_MASK) {
2290 prot = pde & (PG_USER_MASK | PG_RW_MASK |
2291 PG_PRESENT_MASK);
2292 prot &= pml4e & pdpe;
2293 mem_print(mon, &start, &last_prot, end, prot);
2294 } else {
2295 pt_addr = pde & 0x3fffffffff000ULL;
2296 for (l4 = 0; l4 < 512; l4++) {
2297 cpu_physical_memory_read(pt_addr
2298 + l4 * 8,
2299 &pte, 8);
2300 pte = le64_to_cpu(pte);
2301 end = (l1 << 39) + (l2 << 30) +
2302 (l3 << 21) + (l4 << 12);
2303 if (pte & PG_PRESENT_MASK) {
2304 prot = pte & (PG_USER_MASK | PG_RW_MASK |
2305 PG_PRESENT_MASK);
2306 prot &= pml4e & pdpe & pde;
2307 } else {
2308 prot = 0;
2310 mem_print(mon, &start, &last_prot, end, prot);
2313 } else {
2314 prot = 0;
2315 mem_print(mon, &start, &last_prot, end, prot);
2319 } else {
2320 prot = 0;
2321 mem_print(mon, &start, &last_prot, end, prot);
2324 } else {
2325 prot = 0;
2326 mem_print(mon, &start, &last_prot, end, prot);
2329 /* Flush last range */
2330 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 48, 0);
2332 #endif
2334 static void mem_info(Monitor *mon)
2336 CPUState *env;
2338 env = mon_get_cpu();
2340 if (!(env->cr[0] & CR0_PG_MASK)) {
2341 monitor_printf(mon, "PG disabled\n");
2342 return;
2344 if (env->cr[4] & CR4_PAE_MASK) {
2345 #ifdef TARGET_X86_64
2346 if (env->hflags & HF_LMA_MASK) {
2347 mem_info_64(mon, env);
2348 } else
2349 #endif
2351 mem_info_pae32(mon, env);
2353 } else {
2354 mem_info_32(mon, env);
2357 #endif
2359 #if defined(TARGET_SH4)
2361 static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
2363 monitor_printf(mon, " tlb%i:\t"
2364 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
2365 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
2366 "dirty=%hhu writethrough=%hhu\n",
2367 idx,
2368 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
2369 tlb->v, tlb->sh, tlb->c, tlb->pr,
2370 tlb->d, tlb->wt);
2373 static void tlb_info(Monitor *mon)
2375 CPUState *env = mon_get_cpu();
2376 int i;
2378 monitor_printf (mon, "ITLB:\n");
2379 for (i = 0 ; i < ITLB_SIZE ; i++)
2380 print_tlb (mon, i, &env->itlb[i]);
2381 monitor_printf (mon, "UTLB:\n");
2382 for (i = 0 ; i < UTLB_SIZE ; i++)
2383 print_tlb (mon, i, &env->utlb[i]);
2386 #endif
2388 #if defined(TARGET_SPARC)
2389 static void tlb_info(Monitor *mon)
2391 CPUState *env1 = mon_get_cpu();
2393 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
2395 #endif
2397 static void do_info_mtree(Monitor *mon)
2399 mtree_info((fprintf_function)monitor_printf, mon);
2402 static void do_info_numa(Monitor *mon)
2404 int i;
2405 CPUState *env;
2407 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2408 for (i = 0; i < nb_numa_nodes; i++) {
2409 monitor_printf(mon, "node %d cpus:", i);
2410 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2411 if (env->numa_node == i) {
2412 monitor_printf(mon, " %d", env->cpu_index);
2415 monitor_printf(mon, "\n");
2416 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2417 node_mem[i] >> 20);
2421 #ifdef CONFIG_PROFILER
2423 int64_t qemu_time;
2424 int64_t dev_time;
2426 static void do_info_profile(Monitor *mon)
2428 int64_t total;
2429 total = qemu_time;
2430 if (total == 0)
2431 total = 1;
2432 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
2433 dev_time, dev_time / (double)get_ticks_per_sec());
2434 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
2435 qemu_time, qemu_time / (double)get_ticks_per_sec());
2436 qemu_time = 0;
2437 dev_time = 0;
2439 #else
2440 static void do_info_profile(Monitor *mon)
2442 monitor_printf(mon, "Internal profiler not compiled\n");
2444 #endif
2446 /* Capture support */
2447 static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
2449 static void do_info_capture(Monitor *mon)
2451 int i;
2452 CaptureState *s;
2454 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2455 monitor_printf(mon, "[%d]: ", i);
2456 s->ops.info (s->opaque);
2460 #ifdef HAS_AUDIO
2461 static void do_stop_capture(Monitor *mon, const QDict *qdict)
2463 int i;
2464 int n = qdict_get_int(qdict, "n");
2465 CaptureState *s;
2467 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2468 if (i == n) {
2469 s->ops.destroy (s->opaque);
2470 QLIST_REMOVE (s, entries);
2471 g_free (s);
2472 return;
2477 static void do_wav_capture(Monitor *mon, const QDict *qdict)
2479 const char *path = qdict_get_str(qdict, "path");
2480 int has_freq = qdict_haskey(qdict, "freq");
2481 int freq = qdict_get_try_int(qdict, "freq", -1);
2482 int has_bits = qdict_haskey(qdict, "bits");
2483 int bits = qdict_get_try_int(qdict, "bits", -1);
2484 int has_channels = qdict_haskey(qdict, "nchannels");
2485 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
2486 CaptureState *s;
2488 s = g_malloc0 (sizeof (*s));
2490 freq = has_freq ? freq : 44100;
2491 bits = has_bits ? bits : 16;
2492 nchannels = has_channels ? nchannels : 2;
2494 if (wav_start_capture (s, path, freq, bits, nchannels)) {
2495 monitor_printf(mon, "Failed to add wave capture\n");
2496 g_free (s);
2497 return;
2499 QLIST_INSERT_HEAD (&capture_head, s, entries);
2501 #endif
2503 #if defined(TARGET_I386)
2504 static int do_inject_nmi(Monitor *mon, const QDict *qdict, QObject **ret_data)
2506 CPUState *env;
2508 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2509 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2512 return 0;
2514 #else
2515 static int do_inject_nmi(Monitor *mon, const QDict *qdict, QObject **ret_data)
2517 qerror_report(QERR_UNSUPPORTED);
2518 return -1;
2520 #endif
2522 static qemu_acl *find_acl(Monitor *mon, const char *name)
2524 qemu_acl *acl = qemu_acl_find(name);
2526 if (!acl) {
2527 monitor_printf(mon, "acl: unknown list '%s'\n", name);
2529 return acl;
2532 static void do_acl_show(Monitor *mon, const QDict *qdict)
2534 const char *aclname = qdict_get_str(qdict, "aclname");
2535 qemu_acl *acl = find_acl(mon, aclname);
2536 qemu_acl_entry *entry;
2537 int i = 0;
2539 if (acl) {
2540 monitor_printf(mon, "policy: %s\n",
2541 acl->defaultDeny ? "deny" : "allow");
2542 QTAILQ_FOREACH(entry, &acl->entries, next) {
2543 i++;
2544 monitor_printf(mon, "%d: %s %s\n", i,
2545 entry->deny ? "deny" : "allow", entry->match);
2550 static void do_acl_reset(Monitor *mon, const QDict *qdict)
2552 const char *aclname = qdict_get_str(qdict, "aclname");
2553 qemu_acl *acl = find_acl(mon, aclname);
2555 if (acl) {
2556 qemu_acl_reset(acl);
2557 monitor_printf(mon, "acl: removed all rules\n");
2561 static void do_acl_policy(Monitor *mon, const QDict *qdict)
2563 const char *aclname = qdict_get_str(qdict, "aclname");
2564 const char *policy = qdict_get_str(qdict, "policy");
2565 qemu_acl *acl = find_acl(mon, aclname);
2567 if (acl) {
2568 if (strcmp(policy, "allow") == 0) {
2569 acl->defaultDeny = 0;
2570 monitor_printf(mon, "acl: policy set to 'allow'\n");
2571 } else if (strcmp(policy, "deny") == 0) {
2572 acl->defaultDeny = 1;
2573 monitor_printf(mon, "acl: policy set to 'deny'\n");
2574 } else {
2575 monitor_printf(mon, "acl: unknown policy '%s', "
2576 "expected 'deny' or 'allow'\n", policy);
2581 static void do_acl_add(Monitor *mon, const QDict *qdict)
2583 const char *aclname = qdict_get_str(qdict, "aclname");
2584 const char *match = qdict_get_str(qdict, "match");
2585 const char *policy = qdict_get_str(qdict, "policy");
2586 int has_index = qdict_haskey(qdict, "index");
2587 int index = qdict_get_try_int(qdict, "index", -1);
2588 qemu_acl *acl = find_acl(mon, aclname);
2589 int deny, ret;
2591 if (acl) {
2592 if (strcmp(policy, "allow") == 0) {
2593 deny = 0;
2594 } else if (strcmp(policy, "deny") == 0) {
2595 deny = 1;
2596 } else {
2597 monitor_printf(mon, "acl: unknown policy '%s', "
2598 "expected 'deny' or 'allow'\n", policy);
2599 return;
2601 if (has_index)
2602 ret = qemu_acl_insert(acl, deny, match, index);
2603 else
2604 ret = qemu_acl_append(acl, deny, match);
2605 if (ret < 0)
2606 monitor_printf(mon, "acl: unable to add acl entry\n");
2607 else
2608 monitor_printf(mon, "acl: added rule at position %d\n", ret);
2612 static void do_acl_remove(Monitor *mon, const QDict *qdict)
2614 const char *aclname = qdict_get_str(qdict, "aclname");
2615 const char *match = qdict_get_str(qdict, "match");
2616 qemu_acl *acl = find_acl(mon, aclname);
2617 int ret;
2619 if (acl) {
2620 ret = qemu_acl_remove(acl, match);
2621 if (ret < 0)
2622 monitor_printf(mon, "acl: no matching acl entry\n");
2623 else
2624 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
2628 #if defined(TARGET_I386)
2629 static void do_inject_mce(Monitor *mon, const QDict *qdict)
2631 CPUState *cenv;
2632 int cpu_index = qdict_get_int(qdict, "cpu_index");
2633 int bank = qdict_get_int(qdict, "bank");
2634 uint64_t status = qdict_get_int(qdict, "status");
2635 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2636 uint64_t addr = qdict_get_int(qdict, "addr");
2637 uint64_t misc = qdict_get_int(qdict, "misc");
2638 int flags = MCE_INJECT_UNCOND_AO;
2640 if (qdict_get_try_bool(qdict, "broadcast", 0)) {
2641 flags |= MCE_INJECT_BROADCAST;
2643 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu) {
2644 if (cenv->cpu_index == cpu_index) {
2645 cpu_x86_inject_mce(mon, cenv, bank, status, mcg_status, addr, misc,
2646 flags);
2647 break;
2651 #endif
2653 static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2655 const char *fdname = qdict_get_str(qdict, "fdname");
2656 mon_fd_t *monfd;
2657 int fd;
2659 fd = qemu_chr_fe_get_msgfd(mon->chr);
2660 if (fd == -1) {
2661 qerror_report(QERR_FD_NOT_SUPPLIED);
2662 return -1;
2665 if (qemu_isdigit(fdname[0])) {
2666 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2667 "a name not starting with a digit");
2668 return -1;
2671 QLIST_FOREACH(monfd, &mon->fds, next) {
2672 if (strcmp(monfd->name, fdname) != 0) {
2673 continue;
2676 close(monfd->fd);
2677 monfd->fd = fd;
2678 return 0;
2681 monfd = g_malloc0(sizeof(mon_fd_t));
2682 monfd->name = g_strdup(fdname);
2683 monfd->fd = fd;
2685 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
2686 return 0;
2689 static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2691 const char *fdname = qdict_get_str(qdict, "fdname");
2692 mon_fd_t *monfd;
2694 QLIST_FOREACH(monfd, &mon->fds, next) {
2695 if (strcmp(monfd->name, fdname) != 0) {
2696 continue;
2699 QLIST_REMOVE(monfd, next);
2700 close(monfd->fd);
2701 g_free(monfd->name);
2702 g_free(monfd);
2703 return 0;
2706 qerror_report(QERR_FD_NOT_FOUND, fdname);
2707 return -1;
2710 static void do_loadvm(Monitor *mon, const QDict *qdict)
2712 int saved_vm_running = runstate_is_running();
2713 const char *name = qdict_get_str(qdict, "name");
2715 vm_stop(RUN_STATE_RESTORE_VM);
2717 if (load_vmstate(name) == 0 && saved_vm_running) {
2718 vm_start();
2722 int monitor_get_fd(Monitor *mon, const char *fdname)
2724 mon_fd_t *monfd;
2726 QLIST_FOREACH(monfd, &mon->fds, next) {
2727 int fd;
2729 if (strcmp(monfd->name, fdname) != 0) {
2730 continue;
2733 fd = monfd->fd;
2735 /* caller takes ownership of fd */
2736 QLIST_REMOVE(monfd, next);
2737 g_free(monfd->name);
2738 g_free(monfd);
2740 return fd;
2743 return -1;
2746 static const mon_cmd_t mon_cmds[] = {
2747 #include "hmp-commands.h"
2748 { NULL, NULL, },
2751 /* Please update hmp-commands.hx when adding or changing commands */
2752 static const mon_cmd_t info_cmds[] = {
2754 .name = "version",
2755 .args_type = "",
2756 .params = "",
2757 .help = "show the version of QEMU",
2758 .mhandler.info = hmp_info_version,
2761 .name = "network",
2762 .args_type = "",
2763 .params = "",
2764 .help = "show the network state",
2765 .mhandler.info = do_info_network,
2768 .name = "chardev",
2769 .args_type = "",
2770 .params = "",
2771 .help = "show the character devices",
2772 .mhandler.info = hmp_info_chardev,
2775 .name = "block",
2776 .args_type = "",
2777 .params = "",
2778 .help = "show the block devices",
2779 .user_print = bdrv_info_print,
2780 .mhandler.info_new = bdrv_info,
2783 .name = "blockstats",
2784 .args_type = "",
2785 .params = "",
2786 .help = "show block device statistics",
2787 .user_print = bdrv_stats_print,
2788 .mhandler.info_new = bdrv_info_stats,
2791 .name = "registers",
2792 .args_type = "",
2793 .params = "",
2794 .help = "show the cpu registers",
2795 .mhandler.info = do_info_registers,
2798 .name = "cpus",
2799 .args_type = "",
2800 .params = "",
2801 .help = "show infos for each CPU",
2802 .user_print = monitor_print_cpus,
2803 .mhandler.info_new = do_info_cpus,
2806 .name = "history",
2807 .args_type = "",
2808 .params = "",
2809 .help = "show the command line history",
2810 .mhandler.info = do_info_history,
2813 .name = "irq",
2814 .args_type = "",
2815 .params = "",
2816 .help = "show the interrupts statistics (if available)",
2817 .mhandler.info = irq_info,
2820 .name = "pic",
2821 .args_type = "",
2822 .params = "",
2823 .help = "show i8259 (PIC) state",
2824 .mhandler.info = pic_info,
2827 .name = "pci",
2828 .args_type = "",
2829 .params = "",
2830 .help = "show PCI info",
2831 .user_print = do_pci_info_print,
2832 .mhandler.info_new = do_pci_info,
2834 #if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC)
2836 .name = "tlb",
2837 .args_type = "",
2838 .params = "",
2839 .help = "show virtual to physical memory mappings",
2840 .mhandler.info = tlb_info,
2842 #endif
2843 #if defined(TARGET_I386)
2845 .name = "mem",
2846 .args_type = "",
2847 .params = "",
2848 .help = "show the active virtual memory mappings",
2849 .mhandler.info = mem_info,
2851 #endif
2853 .name = "mtree",
2854 .args_type = "",
2855 .params = "",
2856 .help = "show memory tree",
2857 .mhandler.info = do_info_mtree,
2860 .name = "jit",
2861 .args_type = "",
2862 .params = "",
2863 .help = "show dynamic compiler info",
2864 .mhandler.info = do_info_jit,
2867 .name = "kvm",
2868 .args_type = "",
2869 .params = "",
2870 .help = "show KVM information",
2871 .mhandler.info = hmp_info_kvm,
2874 .name = "numa",
2875 .args_type = "",
2876 .params = "",
2877 .help = "show NUMA information",
2878 .mhandler.info = do_info_numa,
2881 .name = "usb",
2882 .args_type = "",
2883 .params = "",
2884 .help = "show guest USB devices",
2885 .mhandler.info = usb_info,
2888 .name = "usbhost",
2889 .args_type = "",
2890 .params = "",
2891 .help = "show host USB devices",
2892 .mhandler.info = usb_host_info,
2895 .name = "profile",
2896 .args_type = "",
2897 .params = "",
2898 .help = "show profiling information",
2899 .mhandler.info = do_info_profile,
2902 .name = "capture",
2903 .args_type = "",
2904 .params = "",
2905 .help = "show capture information",
2906 .mhandler.info = do_info_capture,
2909 .name = "snapshots",
2910 .args_type = "",
2911 .params = "",
2912 .help = "show the currently saved VM snapshots",
2913 .mhandler.info = do_info_snapshots,
2916 .name = "status",
2917 .args_type = "",
2918 .params = "",
2919 .help = "show the current VM status (running|paused)",
2920 .mhandler.info = hmp_info_status,
2923 .name = "pcmcia",
2924 .args_type = "",
2925 .params = "",
2926 .help = "show guest PCMCIA status",
2927 .mhandler.info = pcmcia_info,
2930 .name = "mice",
2931 .args_type = "",
2932 .params = "",
2933 .help = "show which guest mouse is receiving events",
2934 .user_print = do_info_mice_print,
2935 .mhandler.info_new = do_info_mice,
2938 .name = "vnc",
2939 .args_type = "",
2940 .params = "",
2941 .help = "show the vnc server status",
2942 .user_print = do_info_vnc_print,
2943 .mhandler.info_new = do_info_vnc,
2945 #if defined(CONFIG_SPICE)
2947 .name = "spice",
2948 .args_type = "",
2949 .params = "",
2950 .help = "show the spice server status",
2951 .user_print = do_info_spice_print,
2952 .mhandler.info_new = do_info_spice,
2954 #endif
2956 .name = "name",
2957 .args_type = "",
2958 .params = "",
2959 .help = "show the current VM name",
2960 .mhandler.info = hmp_info_name,
2963 .name = "uuid",
2964 .args_type = "",
2965 .params = "",
2966 .help = "show the current VM UUID",
2967 .mhandler.info = hmp_info_uuid,
2969 #if defined(TARGET_PPC)
2971 .name = "cpustats",
2972 .args_type = "",
2973 .params = "",
2974 .help = "show CPU statistics",
2975 .mhandler.info = do_info_cpu_stats,
2977 #endif
2978 #if defined(CONFIG_SLIRP)
2980 .name = "usernet",
2981 .args_type = "",
2982 .params = "",
2983 .help = "show user network stack connection states",
2984 .mhandler.info = do_info_usernet,
2986 #endif
2988 .name = "migrate",
2989 .args_type = "",
2990 .params = "",
2991 .help = "show migration status",
2992 .user_print = do_info_migrate_print,
2993 .mhandler.info_new = do_info_migrate,
2996 .name = "balloon",
2997 .args_type = "",
2998 .params = "",
2999 .help = "show balloon information",
3000 .user_print = monitor_print_balloon,
3001 .mhandler.info_async = do_info_balloon,
3002 .flags = MONITOR_CMD_ASYNC,
3005 .name = "qtree",
3006 .args_type = "",
3007 .params = "",
3008 .help = "show device tree",
3009 .mhandler.info = do_info_qtree,
3012 .name = "qdm",
3013 .args_type = "",
3014 .params = "",
3015 .help = "show qdev device model list",
3016 .mhandler.info = do_info_qdm,
3019 .name = "roms",
3020 .args_type = "",
3021 .params = "",
3022 .help = "show roms",
3023 .mhandler.info = do_info_roms,
3025 #if defined(CONFIG_TRACE_SIMPLE)
3027 .name = "trace",
3028 .args_type = "",
3029 .params = "",
3030 .help = "show current contents of trace buffer",
3031 .mhandler.info = do_info_trace,
3033 #endif
3035 .name = "trace-events",
3036 .args_type = "",
3037 .params = "",
3038 .help = "show available trace-events & their state",
3039 .mhandler.info = do_trace_print_events,
3042 .name = NULL,
3046 static const mon_cmd_t qmp_cmds[] = {
3047 #include "qmp-commands-old.h"
3048 { /* NULL */ },
3051 static const mon_cmd_t qmp_query_cmds[] = {
3053 .name = "block",
3054 .args_type = "",
3055 .params = "",
3056 .help = "show the block devices",
3057 .user_print = bdrv_info_print,
3058 .mhandler.info_new = bdrv_info,
3061 .name = "blockstats",
3062 .args_type = "",
3063 .params = "",
3064 .help = "show block device statistics",
3065 .user_print = bdrv_stats_print,
3066 .mhandler.info_new = bdrv_info_stats,
3069 .name = "cpus",
3070 .args_type = "",
3071 .params = "",
3072 .help = "show infos for each CPU",
3073 .user_print = monitor_print_cpus,
3074 .mhandler.info_new = do_info_cpus,
3077 .name = "pci",
3078 .args_type = "",
3079 .params = "",
3080 .help = "show PCI info",
3081 .user_print = do_pci_info_print,
3082 .mhandler.info_new = do_pci_info,
3085 .name = "mice",
3086 .args_type = "",
3087 .params = "",
3088 .help = "show which guest mouse is receiving events",
3089 .user_print = do_info_mice_print,
3090 .mhandler.info_new = do_info_mice,
3093 .name = "vnc",
3094 .args_type = "",
3095 .params = "",
3096 .help = "show the vnc server status",
3097 .user_print = do_info_vnc_print,
3098 .mhandler.info_new = do_info_vnc,
3100 #if defined(CONFIG_SPICE)
3102 .name = "spice",
3103 .args_type = "",
3104 .params = "",
3105 .help = "show the spice server status",
3106 .user_print = do_info_spice_print,
3107 .mhandler.info_new = do_info_spice,
3109 #endif
3111 .name = "migrate",
3112 .args_type = "",
3113 .params = "",
3114 .help = "show migration status",
3115 .user_print = do_info_migrate_print,
3116 .mhandler.info_new = do_info_migrate,
3119 .name = "balloon",
3120 .args_type = "",
3121 .params = "",
3122 .help = "show balloon information",
3123 .user_print = monitor_print_balloon,
3124 .mhandler.info_async = do_info_balloon,
3125 .flags = MONITOR_CMD_ASYNC,
3127 { /* NULL */ },
3130 /*******************************************************************/
3132 static const char *pch;
3133 static jmp_buf expr_env;
3135 #define MD_TLONG 0
3136 #define MD_I32 1
3138 typedef struct MonitorDef {
3139 const char *name;
3140 int offset;
3141 target_long (*get_value)(const struct MonitorDef *md, int val);
3142 int type;
3143 } MonitorDef;
3145 #if defined(TARGET_I386)
3146 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
3148 CPUState *env = mon_get_cpu();
3149 return env->eip + env->segs[R_CS].base;
3151 #endif
3153 #if defined(TARGET_PPC)
3154 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
3156 CPUState *env = mon_get_cpu();
3157 unsigned int u;
3158 int i;
3160 u = 0;
3161 for (i = 0; i < 8; i++)
3162 u |= env->crf[i] << (32 - (4 * i));
3164 return u;
3167 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
3169 CPUState *env = mon_get_cpu();
3170 return env->msr;
3173 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
3175 CPUState *env = mon_get_cpu();
3176 return env->xer;
3179 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
3181 CPUState *env = mon_get_cpu();
3182 return cpu_ppc_load_decr(env);
3185 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
3187 CPUState *env = mon_get_cpu();
3188 return cpu_ppc_load_tbu(env);
3191 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
3193 CPUState *env = mon_get_cpu();
3194 return cpu_ppc_load_tbl(env);
3196 #endif
3198 #if defined(TARGET_SPARC)
3199 #ifndef TARGET_SPARC64
3200 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
3202 CPUState *env = mon_get_cpu();
3204 return cpu_get_psr(env);
3206 #endif
3208 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
3210 CPUState *env = mon_get_cpu();
3211 return env->regwptr[val];
3213 #endif
3215 static const MonitorDef monitor_defs[] = {
3216 #ifdef TARGET_I386
3218 #define SEG(name, seg) \
3219 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
3220 { name ".base", offsetof(CPUState, segs[seg].base) },\
3221 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
3223 { "eax", offsetof(CPUState, regs[0]) },
3224 { "ecx", offsetof(CPUState, regs[1]) },
3225 { "edx", offsetof(CPUState, regs[2]) },
3226 { "ebx", offsetof(CPUState, regs[3]) },
3227 { "esp|sp", offsetof(CPUState, regs[4]) },
3228 { "ebp|fp", offsetof(CPUState, regs[5]) },
3229 { "esi", offsetof(CPUState, regs[6]) },
3230 { "edi", offsetof(CPUState, regs[7]) },
3231 #ifdef TARGET_X86_64
3232 { "r8", offsetof(CPUState, regs[8]) },
3233 { "r9", offsetof(CPUState, regs[9]) },
3234 { "r10", offsetof(CPUState, regs[10]) },
3235 { "r11", offsetof(CPUState, regs[11]) },
3236 { "r12", offsetof(CPUState, regs[12]) },
3237 { "r13", offsetof(CPUState, regs[13]) },
3238 { "r14", offsetof(CPUState, regs[14]) },
3239 { "r15", offsetof(CPUState, regs[15]) },
3240 #endif
3241 { "eflags", offsetof(CPUState, eflags) },
3242 { "eip", offsetof(CPUState, eip) },
3243 SEG("cs", R_CS)
3244 SEG("ds", R_DS)
3245 SEG("es", R_ES)
3246 SEG("ss", R_SS)
3247 SEG("fs", R_FS)
3248 SEG("gs", R_GS)
3249 { "pc", 0, monitor_get_pc, },
3250 #elif defined(TARGET_PPC)
3251 /* General purpose registers */
3252 { "r0", offsetof(CPUState, gpr[0]) },
3253 { "r1", offsetof(CPUState, gpr[1]) },
3254 { "r2", offsetof(CPUState, gpr[2]) },
3255 { "r3", offsetof(CPUState, gpr[3]) },
3256 { "r4", offsetof(CPUState, gpr[4]) },
3257 { "r5", offsetof(CPUState, gpr[5]) },
3258 { "r6", offsetof(CPUState, gpr[6]) },
3259 { "r7", offsetof(CPUState, gpr[7]) },
3260 { "r8", offsetof(CPUState, gpr[8]) },
3261 { "r9", offsetof(CPUState, gpr[9]) },
3262 { "r10", offsetof(CPUState, gpr[10]) },
3263 { "r11", offsetof(CPUState, gpr[11]) },
3264 { "r12", offsetof(CPUState, gpr[12]) },
3265 { "r13", offsetof(CPUState, gpr[13]) },
3266 { "r14", offsetof(CPUState, gpr[14]) },
3267 { "r15", offsetof(CPUState, gpr[15]) },
3268 { "r16", offsetof(CPUState, gpr[16]) },
3269 { "r17", offsetof(CPUState, gpr[17]) },
3270 { "r18", offsetof(CPUState, gpr[18]) },
3271 { "r19", offsetof(CPUState, gpr[19]) },
3272 { "r20", offsetof(CPUState, gpr[20]) },
3273 { "r21", offsetof(CPUState, gpr[21]) },
3274 { "r22", offsetof(CPUState, gpr[22]) },
3275 { "r23", offsetof(CPUState, gpr[23]) },
3276 { "r24", offsetof(CPUState, gpr[24]) },
3277 { "r25", offsetof(CPUState, gpr[25]) },
3278 { "r26", offsetof(CPUState, gpr[26]) },
3279 { "r27", offsetof(CPUState, gpr[27]) },
3280 { "r28", offsetof(CPUState, gpr[28]) },
3281 { "r29", offsetof(CPUState, gpr[29]) },
3282 { "r30", offsetof(CPUState, gpr[30]) },
3283 { "r31", offsetof(CPUState, gpr[31]) },
3284 /* Floating point registers */
3285 { "f0", offsetof(CPUState, fpr[0]) },
3286 { "f1", offsetof(CPUState, fpr[1]) },
3287 { "f2", offsetof(CPUState, fpr[2]) },
3288 { "f3", offsetof(CPUState, fpr[3]) },
3289 { "f4", offsetof(CPUState, fpr[4]) },
3290 { "f5", offsetof(CPUState, fpr[5]) },
3291 { "f6", offsetof(CPUState, fpr[6]) },
3292 { "f7", offsetof(CPUState, fpr[7]) },
3293 { "f8", offsetof(CPUState, fpr[8]) },
3294 { "f9", offsetof(CPUState, fpr[9]) },
3295 { "f10", offsetof(CPUState, fpr[10]) },
3296 { "f11", offsetof(CPUState, fpr[11]) },
3297 { "f12", offsetof(CPUState, fpr[12]) },
3298 { "f13", offsetof(CPUState, fpr[13]) },
3299 { "f14", offsetof(CPUState, fpr[14]) },
3300 { "f15", offsetof(CPUState, fpr[15]) },
3301 { "f16", offsetof(CPUState, fpr[16]) },
3302 { "f17", offsetof(CPUState, fpr[17]) },
3303 { "f18", offsetof(CPUState, fpr[18]) },
3304 { "f19", offsetof(CPUState, fpr[19]) },
3305 { "f20", offsetof(CPUState, fpr[20]) },
3306 { "f21", offsetof(CPUState, fpr[21]) },
3307 { "f22", offsetof(CPUState, fpr[22]) },
3308 { "f23", offsetof(CPUState, fpr[23]) },
3309 { "f24", offsetof(CPUState, fpr[24]) },
3310 { "f25", offsetof(CPUState, fpr[25]) },
3311 { "f26", offsetof(CPUState, fpr[26]) },
3312 { "f27", offsetof(CPUState, fpr[27]) },
3313 { "f28", offsetof(CPUState, fpr[28]) },
3314 { "f29", offsetof(CPUState, fpr[29]) },
3315 { "f30", offsetof(CPUState, fpr[30]) },
3316 { "f31", offsetof(CPUState, fpr[31]) },
3317 { "fpscr", offsetof(CPUState, fpscr) },
3318 /* Next instruction pointer */
3319 { "nip|pc", offsetof(CPUState, nip) },
3320 { "lr", offsetof(CPUState, lr) },
3321 { "ctr", offsetof(CPUState, ctr) },
3322 { "decr", 0, &monitor_get_decr, },
3323 { "ccr", 0, &monitor_get_ccr, },
3324 /* Machine state register */
3325 { "msr", 0, &monitor_get_msr, },
3326 { "xer", 0, &monitor_get_xer, },
3327 { "tbu", 0, &monitor_get_tbu, },
3328 { "tbl", 0, &monitor_get_tbl, },
3329 #if defined(TARGET_PPC64)
3330 /* Address space register */
3331 { "asr", offsetof(CPUState, asr) },
3332 #endif
3333 /* Segment registers */
3334 { "sdr1", offsetof(CPUState, spr[SPR_SDR1]) },
3335 { "sr0", offsetof(CPUState, sr[0]) },
3336 { "sr1", offsetof(CPUState, sr[1]) },
3337 { "sr2", offsetof(CPUState, sr[2]) },
3338 { "sr3", offsetof(CPUState, sr[3]) },
3339 { "sr4", offsetof(CPUState, sr[4]) },
3340 { "sr5", offsetof(CPUState, sr[5]) },
3341 { "sr6", offsetof(CPUState, sr[6]) },
3342 { "sr7", offsetof(CPUState, sr[7]) },
3343 { "sr8", offsetof(CPUState, sr[8]) },
3344 { "sr9", offsetof(CPUState, sr[9]) },
3345 { "sr10", offsetof(CPUState, sr[10]) },
3346 { "sr11", offsetof(CPUState, sr[11]) },
3347 { "sr12", offsetof(CPUState, sr[12]) },
3348 { "sr13", offsetof(CPUState, sr[13]) },
3349 { "sr14", offsetof(CPUState, sr[14]) },
3350 { "sr15", offsetof(CPUState, sr[15]) },
3351 /* Too lazy to put BATs... */
3352 { "pvr", offsetof(CPUState, spr[SPR_PVR]) },
3354 { "srr0", offsetof(CPUState, spr[SPR_SRR0]) },
3355 { "srr1", offsetof(CPUState, spr[SPR_SRR1]) },
3356 { "sprg0", offsetof(CPUState, spr[SPR_SPRG0]) },
3357 { "sprg1", offsetof(CPUState, spr[SPR_SPRG1]) },
3358 { "sprg2", offsetof(CPUState, spr[SPR_SPRG2]) },
3359 { "sprg3", offsetof(CPUState, spr[SPR_SPRG3]) },
3360 { "sprg4", offsetof(CPUState, spr[SPR_SPRG4]) },
3361 { "sprg5", offsetof(CPUState, spr[SPR_SPRG5]) },
3362 { "sprg6", offsetof(CPUState, spr[SPR_SPRG6]) },
3363 { "sprg7", offsetof(CPUState, spr[SPR_SPRG7]) },
3364 { "pid", offsetof(CPUState, spr[SPR_BOOKE_PID]) },
3365 { "csrr0", offsetof(CPUState, spr[SPR_BOOKE_CSRR0]) },
3366 { "csrr1", offsetof(CPUState, spr[SPR_BOOKE_CSRR1]) },
3367 { "esr", offsetof(CPUState, spr[SPR_BOOKE_ESR]) },
3368 { "dear", offsetof(CPUState, spr[SPR_BOOKE_DEAR]) },
3369 { "mcsr", offsetof(CPUState, spr[SPR_BOOKE_MCSR]) },
3370 { "tsr", offsetof(CPUState, spr[SPR_BOOKE_TSR]) },
3371 { "tcr", offsetof(CPUState, spr[SPR_BOOKE_TCR]) },
3372 { "vrsave", offsetof(CPUState, spr[SPR_VRSAVE]) },
3373 { "pir", offsetof(CPUState, spr[SPR_BOOKE_PIR]) },
3374 { "mcsrr0", offsetof(CPUState, spr[SPR_BOOKE_MCSRR0]) },
3375 { "mcsrr1", offsetof(CPUState, spr[SPR_BOOKE_MCSRR1]) },
3376 { "decar", offsetof(CPUState, spr[SPR_BOOKE_DECAR]) },
3377 { "ivpr", offsetof(CPUState, spr[SPR_BOOKE_IVPR]) },
3378 { "epcr", offsetof(CPUState, spr[SPR_BOOKE_EPCR]) },
3379 { "sprg8", offsetof(CPUState, spr[SPR_BOOKE_SPRG8]) },
3380 { "ivor0", offsetof(CPUState, spr[SPR_BOOKE_IVOR0]) },
3381 { "ivor1", offsetof(CPUState, spr[SPR_BOOKE_IVOR1]) },
3382 { "ivor2", offsetof(CPUState, spr[SPR_BOOKE_IVOR2]) },
3383 { "ivor3", offsetof(CPUState, spr[SPR_BOOKE_IVOR3]) },
3384 { "ivor4", offsetof(CPUState, spr[SPR_BOOKE_IVOR4]) },
3385 { "ivor5", offsetof(CPUState, spr[SPR_BOOKE_IVOR5]) },
3386 { "ivor6", offsetof(CPUState, spr[SPR_BOOKE_IVOR6]) },
3387 { "ivor7", offsetof(CPUState, spr[SPR_BOOKE_IVOR7]) },
3388 { "ivor8", offsetof(CPUState, spr[SPR_BOOKE_IVOR8]) },
3389 { "ivor9", offsetof(CPUState, spr[SPR_BOOKE_IVOR9]) },
3390 { "ivor10", offsetof(CPUState, spr[SPR_BOOKE_IVOR10]) },
3391 { "ivor11", offsetof(CPUState, spr[SPR_BOOKE_IVOR11]) },
3392 { "ivor12", offsetof(CPUState, spr[SPR_BOOKE_IVOR12]) },
3393 { "ivor13", offsetof(CPUState, spr[SPR_BOOKE_IVOR13]) },
3394 { "ivor14", offsetof(CPUState, spr[SPR_BOOKE_IVOR14]) },
3395 { "ivor15", offsetof(CPUState, spr[SPR_BOOKE_IVOR15]) },
3396 { "ivor32", offsetof(CPUState, spr[SPR_BOOKE_IVOR32]) },
3397 { "ivor33", offsetof(CPUState, spr[SPR_BOOKE_IVOR33]) },
3398 { "ivor34", offsetof(CPUState, spr[SPR_BOOKE_IVOR34]) },
3399 { "ivor35", offsetof(CPUState, spr[SPR_BOOKE_IVOR35]) },
3400 { "ivor36", offsetof(CPUState, spr[SPR_BOOKE_IVOR36]) },
3401 { "ivor37", offsetof(CPUState, spr[SPR_BOOKE_IVOR37]) },
3402 { "mas0", offsetof(CPUState, spr[SPR_BOOKE_MAS0]) },
3403 { "mas1", offsetof(CPUState, spr[SPR_BOOKE_MAS1]) },
3404 { "mas2", offsetof(CPUState, spr[SPR_BOOKE_MAS2]) },
3405 { "mas3", offsetof(CPUState, spr[SPR_BOOKE_MAS3]) },
3406 { "mas4", offsetof(CPUState, spr[SPR_BOOKE_MAS4]) },
3407 { "mas6", offsetof(CPUState, spr[SPR_BOOKE_MAS6]) },
3408 { "mas7", offsetof(CPUState, spr[SPR_BOOKE_MAS7]) },
3409 { "mmucfg", offsetof(CPUState, spr[SPR_MMUCFG]) },
3410 { "tlb0cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB0CFG]) },
3411 { "tlb1cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB1CFG]) },
3412 { "epr", offsetof(CPUState, spr[SPR_BOOKE_EPR]) },
3413 { "eplc", offsetof(CPUState, spr[SPR_BOOKE_EPLC]) },
3414 { "epsc", offsetof(CPUState, spr[SPR_BOOKE_EPSC]) },
3415 { "svr", offsetof(CPUState, spr[SPR_E500_SVR]) },
3416 { "mcar", offsetof(CPUState, spr[SPR_Exxx_MCAR]) },
3417 { "pid1", offsetof(CPUState, spr[SPR_BOOKE_PID1]) },
3418 { "pid2", offsetof(CPUState, spr[SPR_BOOKE_PID2]) },
3419 { "hid0", offsetof(CPUState, spr[SPR_HID0]) },
3421 #elif defined(TARGET_SPARC)
3422 { "g0", offsetof(CPUState, gregs[0]) },
3423 { "g1", offsetof(CPUState, gregs[1]) },
3424 { "g2", offsetof(CPUState, gregs[2]) },
3425 { "g3", offsetof(CPUState, gregs[3]) },
3426 { "g4", offsetof(CPUState, gregs[4]) },
3427 { "g5", offsetof(CPUState, gregs[5]) },
3428 { "g6", offsetof(CPUState, gregs[6]) },
3429 { "g7", offsetof(CPUState, gregs[7]) },
3430 { "o0", 0, monitor_get_reg },
3431 { "o1", 1, monitor_get_reg },
3432 { "o2", 2, monitor_get_reg },
3433 { "o3", 3, monitor_get_reg },
3434 { "o4", 4, monitor_get_reg },
3435 { "o5", 5, monitor_get_reg },
3436 { "o6", 6, monitor_get_reg },
3437 { "o7", 7, monitor_get_reg },
3438 { "l0", 8, monitor_get_reg },
3439 { "l1", 9, monitor_get_reg },
3440 { "l2", 10, monitor_get_reg },
3441 { "l3", 11, monitor_get_reg },
3442 { "l4", 12, monitor_get_reg },
3443 { "l5", 13, monitor_get_reg },
3444 { "l6", 14, monitor_get_reg },
3445 { "l7", 15, monitor_get_reg },
3446 { "i0", 16, monitor_get_reg },
3447 { "i1", 17, monitor_get_reg },
3448 { "i2", 18, monitor_get_reg },
3449 { "i3", 19, monitor_get_reg },
3450 { "i4", 20, monitor_get_reg },
3451 { "i5", 21, monitor_get_reg },
3452 { "i6", 22, monitor_get_reg },
3453 { "i7", 23, monitor_get_reg },
3454 { "pc", offsetof(CPUState, pc) },
3455 { "npc", offsetof(CPUState, npc) },
3456 { "y", offsetof(CPUState, y) },
3457 #ifndef TARGET_SPARC64
3458 { "psr", 0, &monitor_get_psr, },
3459 { "wim", offsetof(CPUState, wim) },
3460 #endif
3461 { "tbr", offsetof(CPUState, tbr) },
3462 { "fsr", offsetof(CPUState, fsr) },
3463 { "f0", offsetof(CPUState, fpr[0]) },
3464 { "f1", offsetof(CPUState, fpr[1]) },
3465 { "f2", offsetof(CPUState, fpr[2]) },
3466 { "f3", offsetof(CPUState, fpr[3]) },
3467 { "f4", offsetof(CPUState, fpr[4]) },
3468 { "f5", offsetof(CPUState, fpr[5]) },
3469 { "f6", offsetof(CPUState, fpr[6]) },
3470 { "f7", offsetof(CPUState, fpr[7]) },
3471 { "f8", offsetof(CPUState, fpr[8]) },
3472 { "f9", offsetof(CPUState, fpr[9]) },
3473 { "f10", offsetof(CPUState, fpr[10]) },
3474 { "f11", offsetof(CPUState, fpr[11]) },
3475 { "f12", offsetof(CPUState, fpr[12]) },
3476 { "f13", offsetof(CPUState, fpr[13]) },
3477 { "f14", offsetof(CPUState, fpr[14]) },
3478 { "f15", offsetof(CPUState, fpr[15]) },
3479 { "f16", offsetof(CPUState, fpr[16]) },
3480 { "f17", offsetof(CPUState, fpr[17]) },
3481 { "f18", offsetof(CPUState, fpr[18]) },
3482 { "f19", offsetof(CPUState, fpr[19]) },
3483 { "f20", offsetof(CPUState, fpr[20]) },
3484 { "f21", offsetof(CPUState, fpr[21]) },
3485 { "f22", offsetof(CPUState, fpr[22]) },
3486 { "f23", offsetof(CPUState, fpr[23]) },
3487 { "f24", offsetof(CPUState, fpr[24]) },
3488 { "f25", offsetof(CPUState, fpr[25]) },
3489 { "f26", offsetof(CPUState, fpr[26]) },
3490 { "f27", offsetof(CPUState, fpr[27]) },
3491 { "f28", offsetof(CPUState, fpr[28]) },
3492 { "f29", offsetof(CPUState, fpr[29]) },
3493 { "f30", offsetof(CPUState, fpr[30]) },
3494 { "f31", offsetof(CPUState, fpr[31]) },
3495 #ifdef TARGET_SPARC64
3496 { "f32", offsetof(CPUState, fpr[32]) },
3497 { "f34", offsetof(CPUState, fpr[34]) },
3498 { "f36", offsetof(CPUState, fpr[36]) },
3499 { "f38", offsetof(CPUState, fpr[38]) },
3500 { "f40", offsetof(CPUState, fpr[40]) },
3501 { "f42", offsetof(CPUState, fpr[42]) },
3502 { "f44", offsetof(CPUState, fpr[44]) },
3503 { "f46", offsetof(CPUState, fpr[46]) },
3504 { "f48", offsetof(CPUState, fpr[48]) },
3505 { "f50", offsetof(CPUState, fpr[50]) },
3506 { "f52", offsetof(CPUState, fpr[52]) },
3507 { "f54", offsetof(CPUState, fpr[54]) },
3508 { "f56", offsetof(CPUState, fpr[56]) },
3509 { "f58", offsetof(CPUState, fpr[58]) },
3510 { "f60", offsetof(CPUState, fpr[60]) },
3511 { "f62", offsetof(CPUState, fpr[62]) },
3512 { "asi", offsetof(CPUState, asi) },
3513 { "pstate", offsetof(CPUState, pstate) },
3514 { "cansave", offsetof(CPUState, cansave) },
3515 { "canrestore", offsetof(CPUState, canrestore) },
3516 { "otherwin", offsetof(CPUState, otherwin) },
3517 { "wstate", offsetof(CPUState, wstate) },
3518 { "cleanwin", offsetof(CPUState, cleanwin) },
3519 { "fprs", offsetof(CPUState, fprs) },
3520 #endif
3521 #endif
3522 { NULL },
3525 static void expr_error(Monitor *mon, const char *msg)
3527 monitor_printf(mon, "%s\n", msg);
3528 longjmp(expr_env, 1);
3531 /* return 0 if OK, -1 if not found */
3532 static int get_monitor_def(target_long *pval, const char *name)
3534 const MonitorDef *md;
3535 void *ptr;
3537 for(md = monitor_defs; md->name != NULL; md++) {
3538 if (compare_cmd(name, md->name)) {
3539 if (md->get_value) {
3540 *pval = md->get_value(md, md->offset);
3541 } else {
3542 CPUState *env = mon_get_cpu();
3543 ptr = (uint8_t *)env + md->offset;
3544 switch(md->type) {
3545 case MD_I32:
3546 *pval = *(int32_t *)ptr;
3547 break;
3548 case MD_TLONG:
3549 *pval = *(target_long *)ptr;
3550 break;
3551 default:
3552 *pval = 0;
3553 break;
3556 return 0;
3559 return -1;
3562 static void next(void)
3564 if (*pch != '\0') {
3565 pch++;
3566 while (qemu_isspace(*pch))
3567 pch++;
3571 static int64_t expr_sum(Monitor *mon);
3573 static int64_t expr_unary(Monitor *mon)
3575 int64_t n;
3576 char *p;
3577 int ret;
3579 switch(*pch) {
3580 case '+':
3581 next();
3582 n = expr_unary(mon);
3583 break;
3584 case '-':
3585 next();
3586 n = -expr_unary(mon);
3587 break;
3588 case '~':
3589 next();
3590 n = ~expr_unary(mon);
3591 break;
3592 case '(':
3593 next();
3594 n = expr_sum(mon);
3595 if (*pch != ')') {
3596 expr_error(mon, "')' expected");
3598 next();
3599 break;
3600 case '\'':
3601 pch++;
3602 if (*pch == '\0')
3603 expr_error(mon, "character constant expected");
3604 n = *pch;
3605 pch++;
3606 if (*pch != '\'')
3607 expr_error(mon, "missing terminating \' character");
3608 next();
3609 break;
3610 case '$':
3612 char buf[128], *q;
3613 target_long reg=0;
3615 pch++;
3616 q = buf;
3617 while ((*pch >= 'a' && *pch <= 'z') ||
3618 (*pch >= 'A' && *pch <= 'Z') ||
3619 (*pch >= '0' && *pch <= '9') ||
3620 *pch == '_' || *pch == '.') {
3621 if ((q - buf) < sizeof(buf) - 1)
3622 *q++ = *pch;
3623 pch++;
3625 while (qemu_isspace(*pch))
3626 pch++;
3627 *q = 0;
3628 ret = get_monitor_def(&reg, buf);
3629 if (ret < 0)
3630 expr_error(mon, "unknown register");
3631 n = reg;
3633 break;
3634 case '\0':
3635 expr_error(mon, "unexpected end of expression");
3636 n = 0;
3637 break;
3638 default:
3639 #if TARGET_PHYS_ADDR_BITS > 32
3640 n = strtoull(pch, &p, 0);
3641 #else
3642 n = strtoul(pch, &p, 0);
3643 #endif
3644 if (pch == p) {
3645 expr_error(mon, "invalid char in expression");
3647 pch = p;
3648 while (qemu_isspace(*pch))
3649 pch++;
3650 break;
3652 return n;
3656 static int64_t expr_prod(Monitor *mon)
3658 int64_t val, val2;
3659 int op;
3661 val = expr_unary(mon);
3662 for(;;) {
3663 op = *pch;
3664 if (op != '*' && op != '/' && op != '%')
3665 break;
3666 next();
3667 val2 = expr_unary(mon);
3668 switch(op) {
3669 default:
3670 case '*':
3671 val *= val2;
3672 break;
3673 case '/':
3674 case '%':
3675 if (val2 == 0)
3676 expr_error(mon, "division by zero");
3677 if (op == '/')
3678 val /= val2;
3679 else
3680 val %= val2;
3681 break;
3684 return val;
3687 static int64_t expr_logic(Monitor *mon)
3689 int64_t val, val2;
3690 int op;
3692 val = expr_prod(mon);
3693 for(;;) {
3694 op = *pch;
3695 if (op != '&' && op != '|' && op != '^')
3696 break;
3697 next();
3698 val2 = expr_prod(mon);
3699 switch(op) {
3700 default:
3701 case '&':
3702 val &= val2;
3703 break;
3704 case '|':
3705 val |= val2;
3706 break;
3707 case '^':
3708 val ^= val2;
3709 break;
3712 return val;
3715 static int64_t expr_sum(Monitor *mon)
3717 int64_t val, val2;
3718 int op;
3720 val = expr_logic(mon);
3721 for(;;) {
3722 op = *pch;
3723 if (op != '+' && op != '-')
3724 break;
3725 next();
3726 val2 = expr_logic(mon);
3727 if (op == '+')
3728 val += val2;
3729 else
3730 val -= val2;
3732 return val;
3735 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
3737 pch = *pp;
3738 if (setjmp(expr_env)) {
3739 *pp = pch;
3740 return -1;
3742 while (qemu_isspace(*pch))
3743 pch++;
3744 *pval = expr_sum(mon);
3745 *pp = pch;
3746 return 0;
3749 static int get_double(Monitor *mon, double *pval, const char **pp)
3751 const char *p = *pp;
3752 char *tailp;
3753 double d;
3755 d = strtod(p, &tailp);
3756 if (tailp == p) {
3757 monitor_printf(mon, "Number expected\n");
3758 return -1;
3760 if (d != d || d - d != 0) {
3761 /* NaN or infinity */
3762 monitor_printf(mon, "Bad number\n");
3763 return -1;
3765 *pval = d;
3766 *pp = tailp;
3767 return 0;
3770 static int get_str(char *buf, int buf_size, const char **pp)
3772 const char *p;
3773 char *q;
3774 int c;
3776 q = buf;
3777 p = *pp;
3778 while (qemu_isspace(*p))
3779 p++;
3780 if (*p == '\0') {
3781 fail:
3782 *q = '\0';
3783 *pp = p;
3784 return -1;
3786 if (*p == '\"') {
3787 p++;
3788 while (*p != '\0' && *p != '\"') {
3789 if (*p == '\\') {
3790 p++;
3791 c = *p++;
3792 switch(c) {
3793 case 'n':
3794 c = '\n';
3795 break;
3796 case 'r':
3797 c = '\r';
3798 break;
3799 case '\\':
3800 case '\'':
3801 case '\"':
3802 break;
3803 default:
3804 qemu_printf("unsupported escape code: '\\%c'\n", c);
3805 goto fail;
3807 if ((q - buf) < buf_size - 1) {
3808 *q++ = c;
3810 } else {
3811 if ((q - buf) < buf_size - 1) {
3812 *q++ = *p;
3814 p++;
3817 if (*p != '\"') {
3818 qemu_printf("unterminated string\n");
3819 goto fail;
3821 p++;
3822 } else {
3823 while (*p != '\0' && !qemu_isspace(*p)) {
3824 if ((q - buf) < buf_size - 1) {
3825 *q++ = *p;
3827 p++;
3830 *q = '\0';
3831 *pp = p;
3832 return 0;
3836 * Store the command-name in cmdname, and return a pointer to
3837 * the remaining of the command string.
3839 static const char *get_command_name(const char *cmdline,
3840 char *cmdname, size_t nlen)
3842 size_t len;
3843 const char *p, *pstart;
3845 p = cmdline;
3846 while (qemu_isspace(*p))
3847 p++;
3848 if (*p == '\0')
3849 return NULL;
3850 pstart = p;
3851 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3852 p++;
3853 len = p - pstart;
3854 if (len > nlen - 1)
3855 len = nlen - 1;
3856 memcpy(cmdname, pstart, len);
3857 cmdname[len] = '\0';
3858 return p;
3862 * Read key of 'type' into 'key' and return the current
3863 * 'type' pointer.
3865 static char *key_get_info(const char *type, char **key)
3867 size_t len;
3868 char *p, *str;
3870 if (*type == ',')
3871 type++;
3873 p = strchr(type, ':');
3874 if (!p) {
3875 *key = NULL;
3876 return NULL;
3878 len = p - type;
3880 str = g_malloc(len + 1);
3881 memcpy(str, type, len);
3882 str[len] = '\0';
3884 *key = str;
3885 return ++p;
3888 static int default_fmt_format = 'x';
3889 static int default_fmt_size = 4;
3891 #define MAX_ARGS 16
3893 static int is_valid_option(const char *c, const char *typestr)
3895 char option[3];
3897 option[0] = '-';
3898 option[1] = *c;
3899 option[2] = '\0';
3901 typestr = strstr(typestr, option);
3902 return (typestr != NULL);
3905 static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3906 const char *cmdname)
3908 const mon_cmd_t *cmd;
3910 for (cmd = disp_table; cmd->name != NULL; cmd++) {
3911 if (compare_cmd(cmdname, cmd->name)) {
3912 return cmd;
3916 return NULL;
3919 static const mon_cmd_t *monitor_find_command(const char *cmdname)
3921 return search_dispatch_table(mon_cmds, cmdname);
3924 static const mon_cmd_t *qmp_find_query_cmd(const char *info_item)
3926 return search_dispatch_table(qmp_query_cmds, info_item);
3929 static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3931 return search_dispatch_table(qmp_cmds, cmdname);
3934 static const mon_cmd_t *monitor_parse_command(Monitor *mon,
3935 const char *cmdline,
3936 QDict *qdict)
3938 const char *p, *typestr;
3939 int c;
3940 const mon_cmd_t *cmd;
3941 char cmdname[256];
3942 char buf[1024];
3943 char *key;
3945 #ifdef DEBUG
3946 monitor_printf(mon, "command='%s'\n", cmdline);
3947 #endif
3949 /* extract the command name */
3950 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3951 if (!p)
3952 return NULL;
3954 cmd = monitor_find_command(cmdname);
3955 if (!cmd) {
3956 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
3957 return NULL;
3960 /* parse the parameters */
3961 typestr = cmd->args_type;
3962 for(;;) {
3963 typestr = key_get_info(typestr, &key);
3964 if (!typestr)
3965 break;
3966 c = *typestr;
3967 typestr++;
3968 switch(c) {
3969 case 'F':
3970 case 'B':
3971 case 's':
3973 int ret;
3975 while (qemu_isspace(*p))
3976 p++;
3977 if (*typestr == '?') {
3978 typestr++;
3979 if (*p == '\0') {
3980 /* no optional string: NULL argument */
3981 break;
3984 ret = get_str(buf, sizeof(buf), &p);
3985 if (ret < 0) {
3986 switch(c) {
3987 case 'F':
3988 monitor_printf(mon, "%s: filename expected\n",
3989 cmdname);
3990 break;
3991 case 'B':
3992 monitor_printf(mon, "%s: block device name expected\n",
3993 cmdname);
3994 break;
3995 default:
3996 monitor_printf(mon, "%s: string expected\n", cmdname);
3997 break;
3999 goto fail;
4001 qdict_put(qdict, key, qstring_from_str(buf));
4003 break;
4004 case 'O':
4006 QemuOptsList *opts_list;
4007 QemuOpts *opts;
4009 opts_list = qemu_find_opts(key);
4010 if (!opts_list || opts_list->desc->name) {
4011 goto bad_type;
4013 while (qemu_isspace(*p)) {
4014 p++;
4016 if (!*p)
4017 break;
4018 if (get_str(buf, sizeof(buf), &p) < 0) {
4019 goto fail;
4021 opts = qemu_opts_parse(opts_list, buf, 1);
4022 if (!opts) {
4023 goto fail;
4025 qemu_opts_to_qdict(opts, qdict);
4026 qemu_opts_del(opts);
4028 break;
4029 case '/':
4031 int count, format, size;
4033 while (qemu_isspace(*p))
4034 p++;
4035 if (*p == '/') {
4036 /* format found */
4037 p++;
4038 count = 1;
4039 if (qemu_isdigit(*p)) {
4040 count = 0;
4041 while (qemu_isdigit(*p)) {
4042 count = count * 10 + (*p - '0');
4043 p++;
4046 size = -1;
4047 format = -1;
4048 for(;;) {
4049 switch(*p) {
4050 case 'o':
4051 case 'd':
4052 case 'u':
4053 case 'x':
4054 case 'i':
4055 case 'c':
4056 format = *p++;
4057 break;
4058 case 'b':
4059 size = 1;
4060 p++;
4061 break;
4062 case 'h':
4063 size = 2;
4064 p++;
4065 break;
4066 case 'w':
4067 size = 4;
4068 p++;
4069 break;
4070 case 'g':
4071 case 'L':
4072 size = 8;
4073 p++;
4074 break;
4075 default:
4076 goto next;
4079 next:
4080 if (*p != '\0' && !qemu_isspace(*p)) {
4081 monitor_printf(mon, "invalid char in format: '%c'\n",
4082 *p);
4083 goto fail;
4085 if (format < 0)
4086 format = default_fmt_format;
4087 if (format != 'i') {
4088 /* for 'i', not specifying a size gives -1 as size */
4089 if (size < 0)
4090 size = default_fmt_size;
4091 default_fmt_size = size;
4093 default_fmt_format = format;
4094 } else {
4095 count = 1;
4096 format = default_fmt_format;
4097 if (format != 'i') {
4098 size = default_fmt_size;
4099 } else {
4100 size = -1;
4103 qdict_put(qdict, "count", qint_from_int(count));
4104 qdict_put(qdict, "format", qint_from_int(format));
4105 qdict_put(qdict, "size", qint_from_int(size));
4107 break;
4108 case 'i':
4109 case 'l':
4110 case 'M':
4112 int64_t val;
4114 while (qemu_isspace(*p))
4115 p++;
4116 if (*typestr == '?' || *typestr == '.') {
4117 if (*typestr == '?') {
4118 if (*p == '\0') {
4119 typestr++;
4120 break;
4122 } else {
4123 if (*p == '.') {
4124 p++;
4125 while (qemu_isspace(*p))
4126 p++;
4127 } else {
4128 typestr++;
4129 break;
4132 typestr++;
4134 if (get_expr(mon, &val, &p))
4135 goto fail;
4136 /* Check if 'i' is greater than 32-bit */
4137 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
4138 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
4139 monitor_printf(mon, "integer is for 32-bit values\n");
4140 goto fail;
4141 } else if (c == 'M') {
4142 val <<= 20;
4144 qdict_put(qdict, key, qint_from_int(val));
4146 break;
4147 case 'o':
4149 int64_t val;
4150 char *end;
4152 while (qemu_isspace(*p)) {
4153 p++;
4155 if (*typestr == '?') {
4156 typestr++;
4157 if (*p == '\0') {
4158 break;
4161 val = strtosz(p, &end);
4162 if (val < 0) {
4163 monitor_printf(mon, "invalid size\n");
4164 goto fail;
4166 qdict_put(qdict, key, qint_from_int(val));
4167 p = end;
4169 break;
4170 case 'T':
4172 double val;
4174 while (qemu_isspace(*p))
4175 p++;
4176 if (*typestr == '?') {
4177 typestr++;
4178 if (*p == '\0') {
4179 break;
4182 if (get_double(mon, &val, &p) < 0) {
4183 goto fail;
4185 if (p[0] && p[1] == 's') {
4186 switch (*p) {
4187 case 'm':
4188 val /= 1e3; p += 2; break;
4189 case 'u':
4190 val /= 1e6; p += 2; break;
4191 case 'n':
4192 val /= 1e9; p += 2; break;
4195 if (*p && !qemu_isspace(*p)) {
4196 monitor_printf(mon, "Unknown unit suffix\n");
4197 goto fail;
4199 qdict_put(qdict, key, qfloat_from_double(val));
4201 break;
4202 case 'b':
4204 const char *beg;
4205 int val;
4207 while (qemu_isspace(*p)) {
4208 p++;
4210 beg = p;
4211 while (qemu_isgraph(*p)) {
4212 p++;
4214 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
4215 val = 1;
4216 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
4217 val = 0;
4218 } else {
4219 monitor_printf(mon, "Expected 'on' or 'off'\n");
4220 goto fail;
4222 qdict_put(qdict, key, qbool_from_int(val));
4224 break;
4225 case '-':
4227 const char *tmp = p;
4228 int skip_key = 0;
4229 /* option */
4231 c = *typestr++;
4232 if (c == '\0')
4233 goto bad_type;
4234 while (qemu_isspace(*p))
4235 p++;
4236 if (*p == '-') {
4237 p++;
4238 if(c != *p) {
4239 if(!is_valid_option(p, typestr)) {
4241 monitor_printf(mon, "%s: unsupported option -%c\n",
4242 cmdname, *p);
4243 goto fail;
4244 } else {
4245 skip_key = 1;
4248 if(skip_key) {
4249 p = tmp;
4250 } else {
4251 /* has option */
4252 p++;
4253 qdict_put(qdict, key, qbool_from_int(1));
4257 break;
4258 default:
4259 bad_type:
4260 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
4261 goto fail;
4263 g_free(key);
4264 key = NULL;
4266 /* check that all arguments were parsed */
4267 while (qemu_isspace(*p))
4268 p++;
4269 if (*p != '\0') {
4270 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
4271 cmdname);
4272 goto fail;
4275 return cmd;
4277 fail:
4278 g_free(key);
4279 return NULL;
4282 void monitor_set_error(Monitor *mon, QError *qerror)
4284 /* report only the first error */
4285 if (!mon->error) {
4286 mon->error = qerror;
4287 } else {
4288 MON_DEBUG("Additional error report at %s:%d\n",
4289 qerror->file, qerror->linenr);
4290 QDECREF(qerror);
4294 static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
4296 if (ret && !monitor_has_error(mon)) {
4298 * If it returns failure, it must have passed on error.
4300 * Action: Report an internal error to the client if in QMP.
4302 qerror_report(QERR_UNDEFINED_ERROR);
4303 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
4304 cmd->name);
4307 #ifdef CONFIG_DEBUG_MONITOR
4308 if (!ret && monitor_has_error(mon)) {
4310 * If it returns success, it must not have passed an error.
4312 * Action: Report the passed error to the client.
4314 MON_DEBUG("command '%s' returned success but passed an error\n",
4315 cmd->name);
4318 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
4320 * Handlers should not call Monitor print functions.
4322 * Action: Ignore them in QMP.
4324 * (XXX: we don't check any 'info' or 'query' command here
4325 * because the user print function _is_ called by do_info(), hence
4326 * we will trigger this check. This problem will go away when we
4327 * make 'query' commands real and kill do_info())
4329 MON_DEBUG("command '%s' called print functions %d time(s)\n",
4330 cmd->name, mon_print_count_get(mon));
4332 #endif
4335 static void handle_user_command(Monitor *mon, const char *cmdline)
4337 QDict *qdict;
4338 const mon_cmd_t *cmd;
4340 qdict = qdict_new();
4342 cmd = monitor_parse_command(mon, cmdline, qdict);
4343 if (!cmd)
4344 goto out;
4346 if (handler_is_async(cmd)) {
4347 user_async_cmd_handler(mon, cmd, qdict);
4348 } else if (handler_is_qobject(cmd)) {
4349 QObject *data = NULL;
4351 /* XXX: ignores the error code */
4352 cmd->mhandler.cmd_new(mon, qdict, &data);
4353 assert(!monitor_has_error(mon));
4354 if (data) {
4355 cmd->user_print(mon, data);
4356 qobject_decref(data);
4358 } else {
4359 cmd->mhandler.cmd(mon, qdict);
4362 out:
4363 QDECREF(qdict);
4366 static void cmd_completion(const char *name, const char *list)
4368 const char *p, *pstart;
4369 char cmd[128];
4370 int len;
4372 p = list;
4373 for(;;) {
4374 pstart = p;
4375 p = strchr(p, '|');
4376 if (!p)
4377 p = pstart + strlen(pstart);
4378 len = p - pstart;
4379 if (len > sizeof(cmd) - 2)
4380 len = sizeof(cmd) - 2;
4381 memcpy(cmd, pstart, len);
4382 cmd[len] = '\0';
4383 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
4384 readline_add_completion(cur_mon->rs, cmd);
4386 if (*p == '\0')
4387 break;
4388 p++;
4392 static void file_completion(const char *input)
4394 DIR *ffs;
4395 struct dirent *d;
4396 char path[1024];
4397 char file[1024], file_prefix[1024];
4398 int input_path_len;
4399 const char *p;
4401 p = strrchr(input, '/');
4402 if (!p) {
4403 input_path_len = 0;
4404 pstrcpy(file_prefix, sizeof(file_prefix), input);
4405 pstrcpy(path, sizeof(path), ".");
4406 } else {
4407 input_path_len = p - input + 1;
4408 memcpy(path, input, input_path_len);
4409 if (input_path_len > sizeof(path) - 1)
4410 input_path_len = sizeof(path) - 1;
4411 path[input_path_len] = '\0';
4412 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4414 #ifdef DEBUG_COMPLETION
4415 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
4416 input, path, file_prefix);
4417 #endif
4418 ffs = opendir(path);
4419 if (!ffs)
4420 return;
4421 for(;;) {
4422 struct stat sb;
4423 d = readdir(ffs);
4424 if (!d)
4425 break;
4427 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4428 continue;
4431 if (strstart(d->d_name, file_prefix, NULL)) {
4432 memcpy(file, input, input_path_len);
4433 if (input_path_len < sizeof(file))
4434 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4435 d->d_name);
4436 /* stat the file to find out if it's a directory.
4437 * In that case add a slash to speed up typing long paths
4439 stat(file, &sb);
4440 if(S_ISDIR(sb.st_mode))
4441 pstrcat(file, sizeof(file), "/");
4442 readline_add_completion(cur_mon->rs, file);
4445 closedir(ffs);
4448 static void block_completion_it(void *opaque, BlockDriverState *bs)
4450 const char *name = bdrv_get_device_name(bs);
4451 const char *input = opaque;
4453 if (input[0] == '\0' ||
4454 !strncmp(name, (char *)input, strlen(input))) {
4455 readline_add_completion(cur_mon->rs, name);
4459 /* NOTE: this parser is an approximate form of the real command parser */
4460 static void parse_cmdline(const char *cmdline,
4461 int *pnb_args, char **args)
4463 const char *p;
4464 int nb_args, ret;
4465 char buf[1024];
4467 p = cmdline;
4468 nb_args = 0;
4469 for(;;) {
4470 while (qemu_isspace(*p))
4471 p++;
4472 if (*p == '\0')
4473 break;
4474 if (nb_args >= MAX_ARGS)
4475 break;
4476 ret = get_str(buf, sizeof(buf), &p);
4477 args[nb_args] = g_strdup(buf);
4478 nb_args++;
4479 if (ret < 0)
4480 break;
4482 *pnb_args = nb_args;
4485 static const char *next_arg_type(const char *typestr)
4487 const char *p = strchr(typestr, ':');
4488 return (p != NULL ? ++p : typestr);
4491 static void monitor_find_completion(const char *cmdline)
4493 const char *cmdname;
4494 char *args[MAX_ARGS];
4495 int nb_args, i, len;
4496 const char *ptype, *str;
4497 const mon_cmd_t *cmd;
4498 const KeyDef *key;
4500 parse_cmdline(cmdline, &nb_args, args);
4501 #ifdef DEBUG_COMPLETION
4502 for(i = 0; i < nb_args; i++) {
4503 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
4505 #endif
4507 /* if the line ends with a space, it means we want to complete the
4508 next arg */
4509 len = strlen(cmdline);
4510 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
4511 if (nb_args >= MAX_ARGS) {
4512 goto cleanup;
4514 args[nb_args++] = g_strdup("");
4516 if (nb_args <= 1) {
4517 /* command completion */
4518 if (nb_args == 0)
4519 cmdname = "";
4520 else
4521 cmdname = args[0];
4522 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
4523 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
4524 cmd_completion(cmdname, cmd->name);
4526 } else {
4527 /* find the command */
4528 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4529 if (compare_cmd(args[0], cmd->name)) {
4530 break;
4533 if (!cmd->name) {
4534 goto cleanup;
4537 ptype = next_arg_type(cmd->args_type);
4538 for(i = 0; i < nb_args - 2; i++) {
4539 if (*ptype != '\0') {
4540 ptype = next_arg_type(ptype);
4541 while (*ptype == '?')
4542 ptype = next_arg_type(ptype);
4545 str = args[nb_args - 1];
4546 if (*ptype == '-' && ptype[1] != '\0') {
4547 ptype = next_arg_type(ptype);
4549 switch(*ptype) {
4550 case 'F':
4551 /* file completion */
4552 readline_set_completion_index(cur_mon->rs, strlen(str));
4553 file_completion(str);
4554 break;
4555 case 'B':
4556 /* block device name completion */
4557 readline_set_completion_index(cur_mon->rs, strlen(str));
4558 bdrv_iterate(block_completion_it, (void *)str);
4559 break;
4560 case 's':
4561 /* XXX: more generic ? */
4562 if (!strcmp(cmd->name, "info")) {
4563 readline_set_completion_index(cur_mon->rs, strlen(str));
4564 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4565 cmd_completion(str, cmd->name);
4567 } else if (!strcmp(cmd->name, "sendkey")) {
4568 char *sep = strrchr(str, '-');
4569 if (sep)
4570 str = sep + 1;
4571 readline_set_completion_index(cur_mon->rs, strlen(str));
4572 for(key = key_defs; key->name != NULL; key++) {
4573 cmd_completion(str, key->name);
4575 } else if (!strcmp(cmd->name, "help|?")) {
4576 readline_set_completion_index(cur_mon->rs, strlen(str));
4577 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4578 cmd_completion(str, cmd->name);
4581 break;
4582 default:
4583 break;
4587 cleanup:
4588 for (i = 0; i < nb_args; i++) {
4589 g_free(args[i]);
4593 static int monitor_can_read(void *opaque)
4595 Monitor *mon = opaque;
4597 return (mon->suspend_cnt == 0) ? 1 : 0;
4600 static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4602 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4603 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4607 * Argument validation rules:
4609 * 1. The argument must exist in cmd_args qdict
4610 * 2. The argument type must be the expected one
4612 * Special case: If the argument doesn't exist in cmd_args and
4613 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4614 * checking is skipped for it.
4616 static int check_client_args_type(const QDict *client_args,
4617 const QDict *cmd_args, int flags)
4619 const QDictEntry *ent;
4621 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4622 QObject *obj;
4623 QString *arg_type;
4624 const QObject *client_arg = qdict_entry_value(ent);
4625 const char *client_arg_name = qdict_entry_key(ent);
4627 obj = qdict_get(cmd_args, client_arg_name);
4628 if (!obj) {
4629 if (flags & QMP_ACCEPT_UNKNOWNS) {
4630 /* handler accepts unknowns */
4631 continue;
4633 /* client arg doesn't exist */
4634 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4635 return -1;
4638 arg_type = qobject_to_qstring(obj);
4639 assert(arg_type != NULL);
4641 /* check if argument's type is correct */
4642 switch (qstring_get_str(arg_type)[0]) {
4643 case 'F':
4644 case 'B':
4645 case 's':
4646 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4647 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4648 "string");
4649 return -1;
4651 break;
4652 case 'i':
4653 case 'l':
4654 case 'M':
4655 case 'o':
4656 if (qobject_type(client_arg) != QTYPE_QINT) {
4657 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4658 "int");
4659 return -1;
4661 break;
4662 case 'T':
4663 if (qobject_type(client_arg) != QTYPE_QINT &&
4664 qobject_type(client_arg) != QTYPE_QFLOAT) {
4665 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4666 "number");
4667 return -1;
4669 break;
4670 case 'b':
4671 case '-':
4672 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4673 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4674 "bool");
4675 return -1;
4677 break;
4678 case 'O':
4679 assert(flags & QMP_ACCEPT_UNKNOWNS);
4680 break;
4681 case '/':
4682 case '.':
4684 * These types are not supported by QMP and thus are not
4685 * handled here. Fall through.
4687 default:
4688 abort();
4692 return 0;
4696 * - Check if the client has passed all mandatory args
4697 * - Set special flags for argument validation
4699 static int check_mandatory_args(const QDict *cmd_args,
4700 const QDict *client_args, int *flags)
4702 const QDictEntry *ent;
4704 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4705 const char *cmd_arg_name = qdict_entry_key(ent);
4706 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4707 assert(type != NULL);
4709 if (qstring_get_str(type)[0] == 'O') {
4710 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4711 *flags |= QMP_ACCEPT_UNKNOWNS;
4712 } else if (qstring_get_str(type)[0] != '-' &&
4713 qstring_get_str(type)[1] != '?' &&
4714 !qdict_haskey(client_args, cmd_arg_name)) {
4715 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4716 return -1;
4720 return 0;
4723 static QDict *qdict_from_args_type(const char *args_type)
4725 int i;
4726 QDict *qdict;
4727 QString *key, *type, *cur_qs;
4729 assert(args_type != NULL);
4731 qdict = qdict_new();
4733 if (args_type == NULL || args_type[0] == '\0') {
4734 /* no args, empty qdict */
4735 goto out;
4738 key = qstring_new();
4739 type = qstring_new();
4741 cur_qs = key;
4743 for (i = 0;; i++) {
4744 switch (args_type[i]) {
4745 case ',':
4746 case '\0':
4747 qdict_put(qdict, qstring_get_str(key), type);
4748 QDECREF(key);
4749 if (args_type[i] == '\0') {
4750 goto out;
4752 type = qstring_new(); /* qdict has ref */
4753 cur_qs = key = qstring_new();
4754 break;
4755 case ':':
4756 cur_qs = type;
4757 break;
4758 default:
4759 qstring_append_chr(cur_qs, args_type[i]);
4760 break;
4764 out:
4765 return qdict;
4769 * Client argument checking rules:
4771 * 1. Client must provide all mandatory arguments
4772 * 2. Each argument provided by the client must be expected
4773 * 3. Each argument provided by the client must have the type expected
4774 * by the command
4776 static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4778 int flags, err;
4779 QDict *cmd_args;
4781 cmd_args = qdict_from_args_type(cmd->args_type);
4783 flags = 0;
4784 err = check_mandatory_args(cmd_args, client_args, &flags);
4785 if (err) {
4786 goto out;
4789 err = check_client_args_type(client_args, cmd_args, flags);
4791 out:
4792 QDECREF(cmd_args);
4793 return err;
4797 * Input object checking rules
4799 * 1. Input object must be a dict
4800 * 2. The "execute" key must exist
4801 * 3. The "execute" key must be a string
4802 * 4. If the "arguments" key exists, it must be a dict
4803 * 5. If the "id" key exists, it can be anything (ie. json-value)
4804 * 6. Any argument not listed above is considered invalid
4806 static QDict *qmp_check_input_obj(QObject *input_obj)
4808 const QDictEntry *ent;
4809 int has_exec_key = 0;
4810 QDict *input_dict;
4812 if (qobject_type(input_obj) != QTYPE_QDICT) {
4813 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4814 return NULL;
4817 input_dict = qobject_to_qdict(input_obj);
4819 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4820 const char *arg_name = qdict_entry_key(ent);
4821 const QObject *arg_obj = qdict_entry_value(ent);
4823 if (!strcmp(arg_name, "execute")) {
4824 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4825 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4826 "string");
4827 return NULL;
4829 has_exec_key = 1;
4830 } else if (!strcmp(arg_name, "arguments")) {
4831 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4832 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4833 "object");
4834 return NULL;
4836 } else if (!strcmp(arg_name, "id")) {
4837 /* FIXME: check duplicated IDs for async commands */
4838 } else {
4839 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4840 return NULL;
4844 if (!has_exec_key) {
4845 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4846 return NULL;
4849 return input_dict;
4852 static void qmp_call_query_cmd(Monitor *mon, const mon_cmd_t *cmd)
4854 QObject *ret_data = NULL;
4856 if (handler_is_async(cmd)) {
4857 qmp_async_info_handler(mon, cmd);
4858 if (monitor_has_error(mon)) {
4859 monitor_protocol_emitter(mon, NULL);
4861 } else {
4862 cmd->mhandler.info_new(mon, &ret_data);
4863 monitor_protocol_emitter(mon, ret_data);
4864 qobject_decref(ret_data);
4868 static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4869 const QDict *params)
4871 int ret;
4872 QObject *data = NULL;
4874 mon_print_count_init(mon);
4876 ret = cmd->mhandler.cmd_new(mon, params, &data);
4877 handler_audit(mon, cmd, ret);
4878 monitor_protocol_emitter(mon, data);
4879 qobject_decref(data);
4882 static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4884 int err;
4885 QObject *obj;
4886 QDict *input, *args;
4887 const mon_cmd_t *cmd;
4888 Monitor *mon = cur_mon;
4889 const char *cmd_name, *query_cmd;
4891 query_cmd = NULL;
4892 args = input = NULL;
4894 obj = json_parser_parse(tokens, NULL);
4895 if (!obj) {
4896 // FIXME: should be triggered in json_parser_parse()
4897 qerror_report(QERR_JSON_PARSING);
4898 goto err_out;
4901 input = qmp_check_input_obj(obj);
4902 if (!input) {
4903 qobject_decref(obj);
4904 goto err_out;
4907 mon->mc->id = qdict_get(input, "id");
4908 qobject_incref(mon->mc->id);
4910 cmd_name = qdict_get_str(input, "execute");
4911 if (invalid_qmp_mode(mon, cmd_name)) {
4912 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4913 goto err_out;
4916 cmd = qmp_find_cmd(cmd_name);
4917 if (!cmd && strstart(cmd_name, "query-", &query_cmd)) {
4918 cmd = qmp_find_query_cmd(query_cmd);
4920 if (!cmd) {
4921 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4922 goto err_out;
4925 obj = qdict_get(input, "arguments");
4926 if (!obj) {
4927 args = qdict_new();
4928 } else {
4929 args = qobject_to_qdict(obj);
4930 QINCREF(args);
4933 err = qmp_check_client_args(cmd, args);
4934 if (err < 0) {
4935 goto err_out;
4938 if (query_cmd) {
4939 qmp_call_query_cmd(mon, cmd);
4940 } else if (handler_is_async(cmd)) {
4941 err = qmp_async_cmd_handler(mon, cmd, args);
4942 if (err) {
4943 /* emit the error response */
4944 goto err_out;
4946 } else {
4947 qmp_call_cmd(mon, cmd, args);
4950 goto out;
4952 err_out:
4953 monitor_protocol_emitter(mon, NULL);
4954 out:
4955 QDECREF(input);
4956 QDECREF(args);
4960 * monitor_control_read(): Read and handle QMP input
4962 static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4964 Monitor *old_mon = cur_mon;
4966 cur_mon = opaque;
4968 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
4970 cur_mon = old_mon;
4973 static void monitor_read(void *opaque, const uint8_t *buf, int size)
4975 Monitor *old_mon = cur_mon;
4976 int i;
4978 cur_mon = opaque;
4980 if (cur_mon->rs) {
4981 for (i = 0; i < size; i++)
4982 readline_handle_byte(cur_mon->rs, buf[i]);
4983 } else {
4984 if (size == 0 || buf[size - 1] != 0)
4985 monitor_printf(cur_mon, "corrupted command\n");
4986 else
4987 handle_user_command(cur_mon, (char *)buf);
4990 cur_mon = old_mon;
4993 static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
4995 monitor_suspend(mon);
4996 handle_user_command(mon, cmdline);
4997 monitor_resume(mon);
5000 int monitor_suspend(Monitor *mon)
5002 if (!mon->rs)
5003 return -ENOTTY;
5004 mon->suspend_cnt++;
5005 return 0;
5008 void monitor_resume(Monitor *mon)
5010 if (!mon->rs)
5011 return;
5012 if (--mon->suspend_cnt == 0)
5013 readline_show_prompt(mon->rs);
5016 static QObject *get_qmp_greeting(void)
5018 QObject *ver = NULL;
5020 qmp_marshal_input_query_version(NULL, NULL, &ver);
5021 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
5025 * monitor_control_event(): Print QMP gretting
5027 static void monitor_control_event(void *opaque, int event)
5029 QObject *data;
5030 Monitor *mon = opaque;
5032 switch (event) {
5033 case CHR_EVENT_OPENED:
5034 mon->mc->command_mode = 0;
5035 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
5036 data = get_qmp_greeting();
5037 monitor_json_emitter(mon, data);
5038 qobject_decref(data);
5039 break;
5040 case CHR_EVENT_CLOSED:
5041 json_message_parser_destroy(&mon->mc->parser);
5042 break;
5046 static void monitor_event(void *opaque, int event)
5048 Monitor *mon = opaque;
5050 switch (event) {
5051 case CHR_EVENT_MUX_IN:
5052 mon->mux_out = 0;
5053 if (mon->reset_seen) {
5054 readline_restart(mon->rs);
5055 monitor_resume(mon);
5056 monitor_flush(mon);
5057 } else {
5058 mon->suspend_cnt = 0;
5060 break;
5062 case CHR_EVENT_MUX_OUT:
5063 if (mon->reset_seen) {
5064 if (mon->suspend_cnt == 0) {
5065 monitor_printf(mon, "\n");
5067 monitor_flush(mon);
5068 monitor_suspend(mon);
5069 } else {
5070 mon->suspend_cnt++;
5072 mon->mux_out = 1;
5073 break;
5075 case CHR_EVENT_OPENED:
5076 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
5077 "information\n", QEMU_VERSION);
5078 if (!mon->mux_out) {
5079 readline_show_prompt(mon->rs);
5081 mon->reset_seen = 1;
5082 break;
5088 * Local variables:
5089 * c-indent-level: 4
5090 * c-basic-offset: 4
5091 * tab-width: 8
5092 * End:
5095 void monitor_init(CharDriverState *chr, int flags)
5097 static int is_first_init = 1;
5098 Monitor *mon;
5100 if (is_first_init) {
5101 key_timer = qemu_new_timer_ns(vm_clock, release_keys, NULL);
5102 is_first_init = 0;
5105 mon = g_malloc0(sizeof(*mon));
5107 mon->chr = chr;
5108 mon->flags = flags;
5109 if (flags & MONITOR_USE_READLINE) {
5110 mon->rs = readline_init(mon, monitor_find_completion);
5111 monitor_read_command(mon, 0);
5114 if (monitor_ctrl_mode(mon)) {
5115 mon->mc = g_malloc0(sizeof(MonitorControl));
5116 /* Control mode requires special handlers */
5117 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
5118 monitor_control_event, mon);
5119 qemu_chr_fe_set_echo(chr, true);
5120 } else {
5121 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
5122 monitor_event, mon);
5125 QLIST_INSERT_HEAD(&mon_list, mon, entry);
5126 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
5127 default_mon = mon;
5130 static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
5132 BlockDriverState *bs = opaque;
5133 int ret = 0;
5135 if (bdrv_set_key(bs, password) != 0) {
5136 monitor_printf(mon, "invalid password\n");
5137 ret = -EPERM;
5139 if (mon->password_completion_cb)
5140 mon->password_completion_cb(mon->password_opaque, ret);
5142 monitor_read_command(mon, 1);
5145 int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
5146 BlockDriverCompletionFunc *completion_cb,
5147 void *opaque)
5149 int err;
5151 if (!bdrv_key_required(bs)) {
5152 if (completion_cb)
5153 completion_cb(opaque, 0);
5154 return 0;
5157 if (monitor_ctrl_mode(mon)) {
5158 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
5159 return -1;
5162 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
5163 bdrv_get_encrypted_filename(bs));
5165 mon->password_completion_cb = completion_cb;
5166 mon->password_opaque = opaque;
5168 err = monitor_read_password(mon, bdrv_password_cb, bs);
5170 if (err && completion_cb)
5171 completion_cb(opaque, err);
5173 return err;