qapi: Convert query-pci
[qemu/wangdongxu.git] / monitor.c
blobedcacdad1e4ab52a29d83a8f6613b4f14562097c
1 /*
2 * QEMU monitor
4 * Copyright (c) 2003-2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
24 #include <dirent.h>
25 #include "hw/hw.h"
26 #include "hw/qdev.h"
27 #include "hw/usb.h"
28 #include "hw/pcmcia.h"
29 #include "hw/pc.h"
30 #include "hw/pci.h"
31 #include "hw/watchdog.h"
32 #include "hw/loader.h"
33 #include "gdbstub.h"
34 #include "net.h"
35 #include "net/slirp.h"
36 #include "qemu-char.h"
37 #include "ui/qemu-spice.h"
38 #include "sysemu.h"
39 #include "monitor.h"
40 #include "readline.h"
41 #include "console.h"
42 #include "blockdev.h"
43 #include "audio/audio.h"
44 #include "disas.h"
45 #include "balloon.h"
46 #include "qemu-timer.h"
47 #include "migration.h"
48 #include "kvm.h"
49 #include "acl.h"
50 #include "qint.h"
51 #include "qfloat.h"
52 #include "qlist.h"
53 #include "qbool.h"
54 #include "qstring.h"
55 #include "qjson.h"
56 #include "json-streamer.h"
57 #include "json-parser.h"
58 #include "osdep.h"
59 #include "cpu.h"
60 #include "trace.h"
61 #include "trace/control.h"
62 #ifdef CONFIG_TRACE_SIMPLE
63 #include "trace/simple.h"
64 #endif
65 #include "ui/qemu-spice.h"
66 #include "memory.h"
67 #include "qmp-commands.h"
68 #include "hmp.h"
70 /* for pic/irq_info */
71 #if defined(TARGET_SPARC)
72 #include "hw/sun4m.h"
73 #endif
74 #include "hw/lm32_pic.h"
76 //#define DEBUG
77 //#define DEBUG_COMPLETION
80 * Supported types:
82 * 'F' filename
83 * 'B' block device name
84 * 's' string (accept optional quote)
85 * 'O' option string of the form NAME=VALUE,...
86 * parsed according to QemuOptsList given by its name
87 * Example: 'device:O' uses qemu_device_opts.
88 * Restriction: only lists with empty desc are supported
89 * TODO lift the restriction
90 * 'i' 32 bit integer
91 * 'l' target long (32 or 64 bit)
92 * 'M' just like 'l', except in user mode the value is
93 * multiplied by 2^20 (think Mebibyte)
94 * 'o' octets (aka bytes)
95 * user mode accepts an optional T, t, G, g, M, m, K, k
96 * suffix, which multiplies the value by 2^40 for
97 * suffixes T and t, 2^30 for suffixes G and g, 2^20 for
98 * M and m, 2^10 for K and k
99 * 'T' double
100 * user mode accepts an optional ms, us, ns suffix,
101 * which divides the value by 1e3, 1e6, 1e9, respectively
102 * '/' optional gdb-like print format (like "/10x")
104 * '?' optional type (for all types, except '/')
105 * '.' other form of optional type (for 'i' and 'l')
106 * 'b' boolean
107 * user mode accepts "on" or "off"
108 * '-' optional parameter (eg. '-f')
112 typedef struct MonitorCompletionData MonitorCompletionData;
113 struct MonitorCompletionData {
114 Monitor *mon;
115 void (*user_print)(Monitor *mon, const QObject *data);
118 typedef struct mon_cmd_t {
119 const char *name;
120 const char *args_type;
121 const char *params;
122 const char *help;
123 void (*user_print)(Monitor *mon, const QObject *data);
124 union {
125 void (*info)(Monitor *mon);
126 void (*info_new)(Monitor *mon, QObject **ret_data);
127 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
128 void (*cmd)(Monitor *mon, const QDict *qdict);
129 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
130 int (*cmd_async)(Monitor *mon, const QDict *params,
131 MonitorCompletion *cb, void *opaque);
132 } mhandler;
133 bool qapi;
134 int flags;
135 } mon_cmd_t;
137 /* file descriptors passed via SCM_RIGHTS */
138 typedef struct mon_fd_t mon_fd_t;
139 struct mon_fd_t {
140 char *name;
141 int fd;
142 QLIST_ENTRY(mon_fd_t) next;
145 typedef struct MonitorControl {
146 QObject *id;
147 JSONMessageParser parser;
148 int command_mode;
149 } MonitorControl;
151 struct Monitor {
152 CharDriverState *chr;
153 int mux_out;
154 int reset_seen;
155 int flags;
156 int suspend_cnt;
157 uint8_t outbuf[1024];
158 int outbuf_index;
159 ReadLineState *rs;
160 MonitorControl *mc;
161 CPUState *mon_cpu;
162 BlockDriverCompletionFunc *password_completion_cb;
163 void *password_opaque;
164 #ifdef CONFIG_DEBUG_MONITOR
165 int print_calls_nr;
166 #endif
167 QError *error;
168 QLIST_HEAD(,mon_fd_t) fds;
169 QLIST_ENTRY(Monitor) entry;
172 #ifdef CONFIG_DEBUG_MONITOR
173 #define MON_DEBUG(fmt, ...) do { \
174 fprintf(stderr, "Monitor: "); \
175 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
177 static inline void mon_print_count_inc(Monitor *mon)
179 mon->print_calls_nr++;
182 static inline void mon_print_count_init(Monitor *mon)
184 mon->print_calls_nr = 0;
187 static inline int mon_print_count_get(const Monitor *mon)
189 return mon->print_calls_nr;
192 #else /* !CONFIG_DEBUG_MONITOR */
193 #define MON_DEBUG(fmt, ...) do { } while (0)
194 static inline void mon_print_count_inc(Monitor *mon) { }
195 static inline void mon_print_count_init(Monitor *mon) { }
196 static inline int mon_print_count_get(const Monitor *mon) { return 0; }
197 #endif /* CONFIG_DEBUG_MONITOR */
199 /* QMP checker flags */
200 #define QMP_ACCEPT_UNKNOWNS 1
202 static QLIST_HEAD(mon_list, Monitor) mon_list;
204 static const mon_cmd_t mon_cmds[];
205 static const mon_cmd_t info_cmds[];
207 static const mon_cmd_t qmp_cmds[];
208 static const mon_cmd_t qmp_query_cmds[];
210 Monitor *cur_mon;
211 Monitor *default_mon;
213 static void monitor_command_cb(Monitor *mon, const char *cmdline,
214 void *opaque);
216 static inline int qmp_cmd_mode(const Monitor *mon)
218 return (mon->mc ? mon->mc->command_mode : 0);
221 /* Return true if in control mode, false otherwise */
222 static inline int monitor_ctrl_mode(const Monitor *mon)
224 return (mon->flags & MONITOR_USE_CONTROL);
227 /* Return non-zero iff we have a current monitor, and it is in QMP mode. */
228 int monitor_cur_is_qmp(void)
230 return cur_mon && monitor_ctrl_mode(cur_mon);
233 static void monitor_read_command(Monitor *mon, int show_prompt)
235 if (!mon->rs)
236 return;
238 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
239 if (show_prompt)
240 readline_show_prompt(mon->rs);
243 static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
244 void *opaque)
246 if (monitor_ctrl_mode(mon)) {
247 qerror_report(QERR_MISSING_PARAMETER, "password");
248 return -EINVAL;
249 } else if (mon->rs) {
250 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
251 /* prompt is printed on return from the command handler */
252 return 0;
253 } else {
254 monitor_printf(mon, "terminal does not support password prompting\n");
255 return -ENOTTY;
259 void monitor_flush(Monitor *mon)
261 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
262 qemu_chr_fe_write(mon->chr, mon->outbuf, mon->outbuf_index);
263 mon->outbuf_index = 0;
267 /* flush at every end of line or if the buffer is full */
268 static void monitor_puts(Monitor *mon, const char *str)
270 char c;
272 for(;;) {
273 c = *str++;
274 if (c == '\0')
275 break;
276 if (c == '\n')
277 mon->outbuf[mon->outbuf_index++] = '\r';
278 mon->outbuf[mon->outbuf_index++] = c;
279 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
280 || c == '\n')
281 monitor_flush(mon);
285 void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
287 char buf[4096];
289 if (!mon)
290 return;
292 mon_print_count_inc(mon);
294 if (monitor_ctrl_mode(mon)) {
295 return;
298 vsnprintf(buf, sizeof(buf), fmt, ap);
299 monitor_puts(mon, buf);
302 void monitor_printf(Monitor *mon, const char *fmt, ...)
304 va_list ap;
305 va_start(ap, fmt);
306 monitor_vprintf(mon, fmt, ap);
307 va_end(ap);
310 void monitor_print_filename(Monitor *mon, const char *filename)
312 int i;
314 for (i = 0; filename[i]; i++) {
315 switch (filename[i]) {
316 case ' ':
317 case '"':
318 case '\\':
319 monitor_printf(mon, "\\%c", filename[i]);
320 break;
321 case '\t':
322 monitor_printf(mon, "\\t");
323 break;
324 case '\r':
325 monitor_printf(mon, "\\r");
326 break;
327 case '\n':
328 monitor_printf(mon, "\\n");
329 break;
330 default:
331 monitor_printf(mon, "%c", filename[i]);
332 break;
337 static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
338 const char *fmt, ...)
340 va_list ap;
341 va_start(ap, fmt);
342 monitor_vprintf((Monitor *)stream, fmt, ap);
343 va_end(ap);
344 return 0;
347 static void monitor_user_noop(Monitor *mon, const QObject *data) { }
349 static inline int handler_is_qobject(const mon_cmd_t *cmd)
351 return cmd->user_print != NULL;
354 static inline bool handler_is_async(const mon_cmd_t *cmd)
356 return cmd->flags & MONITOR_CMD_ASYNC;
359 static inline int monitor_has_error(const Monitor *mon)
361 return mon->error != NULL;
364 static void monitor_json_emitter(Monitor *mon, const QObject *data)
366 QString *json;
368 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
369 qobject_to_json(data);
370 assert(json != NULL);
372 qstring_append_chr(json, '\n');
373 monitor_puts(mon, qstring_get_str(json));
375 QDECREF(json);
378 static void monitor_protocol_emitter(Monitor *mon, QObject *data)
380 QDict *qmp;
382 trace_monitor_protocol_emitter(mon);
384 qmp = qdict_new();
386 if (!monitor_has_error(mon)) {
387 /* success response */
388 if (data) {
389 qobject_incref(data);
390 qdict_put_obj(qmp, "return", data);
391 } else {
392 /* return an empty QDict by default */
393 qdict_put(qmp, "return", qdict_new());
395 } else {
396 /* error response */
397 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
398 qdict_put(qmp, "error", mon->error->error);
399 QINCREF(mon->error->error);
400 QDECREF(mon->error);
401 mon->error = NULL;
404 if (mon->mc->id) {
405 qdict_put_obj(qmp, "id", mon->mc->id);
406 mon->mc->id = NULL;
409 monitor_json_emitter(mon, QOBJECT(qmp));
410 QDECREF(qmp);
413 static void timestamp_put(QDict *qdict)
415 int err;
416 QObject *obj;
417 qemu_timeval tv;
419 err = qemu_gettimeofday(&tv);
420 if (err < 0)
421 return;
423 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
424 "'microseconds': %" PRId64 " }",
425 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
426 qdict_put_obj(qdict, "timestamp", obj);
430 * monitor_protocol_event(): Generate a Monitor event
432 * Event-specific data can be emitted through the (optional) 'data' parameter.
434 void monitor_protocol_event(MonitorEvent event, QObject *data)
436 QDict *qmp;
437 const char *event_name;
438 Monitor *mon;
440 assert(event < QEVENT_MAX);
442 switch (event) {
443 case QEVENT_SHUTDOWN:
444 event_name = "SHUTDOWN";
445 break;
446 case QEVENT_RESET:
447 event_name = "RESET";
448 break;
449 case QEVENT_POWERDOWN:
450 event_name = "POWERDOWN";
451 break;
452 case QEVENT_STOP:
453 event_name = "STOP";
454 break;
455 case QEVENT_RESUME:
456 event_name = "RESUME";
457 break;
458 case QEVENT_VNC_CONNECTED:
459 event_name = "VNC_CONNECTED";
460 break;
461 case QEVENT_VNC_INITIALIZED:
462 event_name = "VNC_INITIALIZED";
463 break;
464 case QEVENT_VNC_DISCONNECTED:
465 event_name = "VNC_DISCONNECTED";
466 break;
467 case QEVENT_BLOCK_IO_ERROR:
468 event_name = "BLOCK_IO_ERROR";
469 break;
470 case QEVENT_RTC_CHANGE:
471 event_name = "RTC_CHANGE";
472 break;
473 case QEVENT_WATCHDOG:
474 event_name = "WATCHDOG";
475 break;
476 case QEVENT_SPICE_CONNECTED:
477 event_name = "SPICE_CONNECTED";
478 break;
479 case QEVENT_SPICE_INITIALIZED:
480 event_name = "SPICE_INITIALIZED";
481 break;
482 case QEVENT_SPICE_DISCONNECTED:
483 event_name = "SPICE_DISCONNECTED";
484 break;
485 default:
486 abort();
487 break;
490 qmp = qdict_new();
491 timestamp_put(qmp);
492 qdict_put(qmp, "event", qstring_from_str(event_name));
493 if (data) {
494 qobject_incref(data);
495 qdict_put_obj(qmp, "data", data);
498 QLIST_FOREACH(mon, &mon_list, entry) {
499 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
500 monitor_json_emitter(mon, QOBJECT(qmp));
503 QDECREF(qmp);
506 static int do_qmp_capabilities(Monitor *mon, const QDict *params,
507 QObject **ret_data)
509 /* Will setup QMP capabilities in the future */
510 if (monitor_ctrl_mode(mon)) {
511 mon->mc->command_mode = 1;
514 return 0;
517 static void handle_user_command(Monitor *mon, const char *cmdline);
519 static int do_hmp_passthrough(Monitor *mon, const QDict *params,
520 QObject **ret_data)
522 int ret = 0;
523 Monitor *old_mon, hmp;
524 CharDriverState mchar;
526 memset(&hmp, 0, sizeof(hmp));
527 qemu_chr_init_mem(&mchar);
528 hmp.chr = &mchar;
530 old_mon = cur_mon;
531 cur_mon = &hmp;
533 if (qdict_haskey(params, "cpu-index")) {
534 ret = monitor_set_cpu(qdict_get_int(params, "cpu-index"));
535 if (ret < 0) {
536 cur_mon = old_mon;
537 qerror_report(QERR_INVALID_PARAMETER_VALUE, "cpu-index", "a CPU number");
538 goto out;
542 handle_user_command(&hmp, qdict_get_str(params, "command-line"));
543 cur_mon = old_mon;
545 if (qemu_chr_mem_osize(hmp.chr) > 0) {
546 *ret_data = QOBJECT(qemu_chr_mem_to_qs(hmp.chr));
549 out:
550 qemu_chr_close_mem(hmp.chr);
551 return ret;
554 static int compare_cmd(const char *name, const char *list)
556 const char *p, *pstart;
557 int len;
558 len = strlen(name);
559 p = list;
560 for(;;) {
561 pstart = p;
562 p = strchr(p, '|');
563 if (!p)
564 p = pstart + strlen(pstart);
565 if ((p - pstart) == len && !memcmp(pstart, name, len))
566 return 1;
567 if (*p == '\0')
568 break;
569 p++;
571 return 0;
574 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
575 const char *prefix, const char *name)
577 const mon_cmd_t *cmd;
579 for(cmd = cmds; cmd->name != NULL; cmd++) {
580 if (!name || !strcmp(name, cmd->name))
581 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
582 cmd->params, cmd->help);
586 static void help_cmd(Monitor *mon, const char *name)
588 if (name && !strcmp(name, "info")) {
589 help_cmd_dump(mon, info_cmds, "info ", NULL);
590 } else {
591 help_cmd_dump(mon, mon_cmds, "", name);
592 if (name && !strcmp(name, "log")) {
593 const CPULogItem *item;
594 monitor_printf(mon, "Log items (comma separated):\n");
595 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
596 for(item = cpu_log_items; item->mask != 0; item++) {
597 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
603 static void do_help_cmd(Monitor *mon, const QDict *qdict)
605 help_cmd(mon, qdict_get_try_str(qdict, "name"));
608 static void do_trace_event_set_state(Monitor *mon, const QDict *qdict)
610 const char *tp_name = qdict_get_str(qdict, "name");
611 bool new_state = qdict_get_bool(qdict, "option");
612 int ret = trace_event_set_state(tp_name, new_state);
614 if (!ret) {
615 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
619 #ifdef CONFIG_TRACE_SIMPLE
620 static void do_trace_file(Monitor *mon, const QDict *qdict)
622 const char *op = qdict_get_try_str(qdict, "op");
623 const char *arg = qdict_get_try_str(qdict, "arg");
625 if (!op) {
626 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
627 } else if (!strcmp(op, "on")) {
628 st_set_trace_file_enabled(true);
629 } else if (!strcmp(op, "off")) {
630 st_set_trace_file_enabled(false);
631 } else if (!strcmp(op, "flush")) {
632 st_flush_trace_buffer();
633 } else if (!strcmp(op, "set")) {
634 if (arg) {
635 st_set_trace_file(arg);
637 } else {
638 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
639 help_cmd(mon, "trace-file");
642 #endif
644 static void user_monitor_complete(void *opaque, QObject *ret_data)
646 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
648 if (ret_data) {
649 data->user_print(data->mon, ret_data);
651 monitor_resume(data->mon);
652 g_free(data);
655 static void qmp_monitor_complete(void *opaque, QObject *ret_data)
657 monitor_protocol_emitter(opaque, ret_data);
660 static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
661 const QDict *params)
663 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
666 static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
668 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
671 static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
672 const QDict *params)
674 int ret;
676 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
677 cb_data->mon = mon;
678 cb_data->user_print = cmd->user_print;
679 monitor_suspend(mon);
680 ret = cmd->mhandler.cmd_async(mon, params,
681 user_monitor_complete, cb_data);
682 if (ret < 0) {
683 monitor_resume(mon);
684 g_free(cb_data);
688 static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
690 int ret;
692 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
693 cb_data->mon = mon;
694 cb_data->user_print = cmd->user_print;
695 monitor_suspend(mon);
696 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
697 if (ret < 0) {
698 monitor_resume(mon);
699 g_free(cb_data);
703 static void do_info(Monitor *mon, const QDict *qdict)
705 const mon_cmd_t *cmd;
706 const char *item = qdict_get_try_str(qdict, "item");
708 if (!item) {
709 goto help;
712 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
713 if (compare_cmd(item, cmd->name))
714 break;
717 if (cmd->name == NULL) {
718 goto help;
721 if (handler_is_async(cmd)) {
722 user_async_info_handler(mon, cmd);
723 } else if (handler_is_qobject(cmd)) {
724 QObject *info_data = NULL;
726 cmd->mhandler.info_new(mon, &info_data);
727 if (info_data) {
728 cmd->user_print(mon, info_data);
729 qobject_decref(info_data);
731 } else {
732 cmd->mhandler.info(mon);
735 return;
737 help:
738 help_cmd(mon, "info");
741 static CommandInfoList *alloc_cmd_entry(const char *cmd_name)
743 CommandInfoList *info;
745 info = g_malloc0(sizeof(*info));
746 info->value = g_malloc0(sizeof(*info->value));
747 info->value->name = g_strdup(cmd_name);
749 return info;
752 CommandInfoList *qmp_query_commands(Error **errp)
754 CommandInfoList *info, *cmd_list = NULL;
755 const mon_cmd_t *cmd;
757 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
758 info = alloc_cmd_entry(cmd->name);
759 info->next = cmd_list;
760 cmd_list = info;
763 for (cmd = qmp_query_cmds; cmd->name != NULL; cmd++) {
764 char buf[128];
765 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
766 info = alloc_cmd_entry(buf);
767 info->next = cmd_list;
768 cmd_list = info;
771 return cmd_list;
774 /* set the current CPU defined by the user */
775 int monitor_set_cpu(int cpu_index)
777 CPUState *env;
779 for(env = first_cpu; env != NULL; env = env->next_cpu) {
780 if (env->cpu_index == cpu_index) {
781 cur_mon->mon_cpu = env;
782 return 0;
785 return -1;
788 static CPUState *mon_get_cpu(void)
790 if (!cur_mon->mon_cpu) {
791 monitor_set_cpu(0);
793 cpu_synchronize_state(cur_mon->mon_cpu);
794 return cur_mon->mon_cpu;
797 int monitor_get_cpu_index(void)
799 return mon_get_cpu()->cpu_index;
802 static void do_info_registers(Monitor *mon)
804 CPUState *env;
805 env = mon_get_cpu();
806 #ifdef TARGET_I386
807 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
808 X86_DUMP_FPU);
809 #else
810 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
812 #endif
815 static void do_info_jit(Monitor *mon)
817 dump_exec_info((FILE *)mon, monitor_fprintf);
820 static void do_info_history(Monitor *mon)
822 int i;
823 const char *str;
825 if (!mon->rs)
826 return;
827 i = 0;
828 for(;;) {
829 str = readline_get_history(mon->rs, i);
830 if (!str)
831 break;
832 monitor_printf(mon, "%d: '%s'\n", i, str);
833 i++;
837 #if defined(TARGET_PPC)
838 /* XXX: not implemented in other targets */
839 static void do_info_cpu_stats(Monitor *mon)
841 CPUState *env;
843 env = mon_get_cpu();
844 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
846 #endif
848 #if defined(CONFIG_TRACE_SIMPLE)
849 static void do_info_trace(Monitor *mon)
851 st_print_trace((FILE *)mon, &monitor_fprintf);
853 #endif
855 static void do_trace_print_events(Monitor *mon)
857 trace_print_events((FILE *)mon, &monitor_fprintf);
860 #ifdef CONFIG_VNC
861 static int change_vnc_password(const char *password)
863 if (!password || !password[0]) {
864 if (vnc_display_disable_login(NULL)) {
865 qerror_report(QERR_SET_PASSWD_FAILED);
866 return -1;
868 return 0;
871 if (vnc_display_password(NULL, password) < 0) {
872 qerror_report(QERR_SET_PASSWD_FAILED);
873 return -1;
876 return 0;
879 static void change_vnc_password_cb(Monitor *mon, const char *password,
880 void *opaque)
882 change_vnc_password(password);
883 monitor_read_command(mon, 1);
886 static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
888 if (strcmp(target, "passwd") == 0 ||
889 strcmp(target, "password") == 0) {
890 if (arg) {
891 char password[9];
892 strncpy(password, arg, sizeof(password));
893 password[sizeof(password) - 1] = '\0';
894 return change_vnc_password(password);
895 } else {
896 return monitor_read_password(mon, change_vnc_password_cb, NULL);
898 } else {
899 if (vnc_display_open(NULL, target) < 0) {
900 qerror_report(QERR_VNC_SERVER_FAILED, target);
901 return -1;
905 return 0;
907 #else
908 static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
910 qerror_report(QERR_FEATURE_DISABLED, "vnc");
911 return -ENODEV;
913 #endif
916 * do_change(): Change a removable medium, or VNC configuration
918 static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
920 const char *device = qdict_get_str(qdict, "device");
921 const char *target = qdict_get_str(qdict, "target");
922 const char *arg = qdict_get_try_str(qdict, "arg");
923 int ret;
925 if (strcmp(device, "vnc") == 0) {
926 ret = do_change_vnc(mon, target, arg);
927 } else {
928 ret = do_change_block(mon, device, target, arg);
931 return ret;
934 static int set_password(Monitor *mon, const QDict *qdict, QObject **ret_data)
936 const char *protocol = qdict_get_str(qdict, "protocol");
937 const char *password = qdict_get_str(qdict, "password");
938 const char *connected = qdict_get_try_str(qdict, "connected");
939 int disconnect_if_connected = 0;
940 int fail_if_connected = 0;
941 int rc;
943 if (connected) {
944 if (strcmp(connected, "fail") == 0) {
945 fail_if_connected = 1;
946 } else if (strcmp(connected, "disconnect") == 0) {
947 disconnect_if_connected = 1;
948 } else if (strcmp(connected, "keep") == 0) {
949 /* nothing */
950 } else {
951 qerror_report(QERR_INVALID_PARAMETER, "connected");
952 return -1;
956 if (strcmp(protocol, "spice") == 0) {
957 if (!using_spice) {
958 /* correct one? spice isn't a device ,,, */
959 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
960 return -1;
962 rc = qemu_spice_set_passwd(password, fail_if_connected,
963 disconnect_if_connected);
964 if (rc != 0) {
965 qerror_report(QERR_SET_PASSWD_FAILED);
966 return -1;
968 return 0;
971 if (strcmp(protocol, "vnc") == 0) {
972 if (fail_if_connected || disconnect_if_connected) {
973 /* vnc supports "connected=keep" only */
974 qerror_report(QERR_INVALID_PARAMETER, "connected");
975 return -1;
977 /* Note that setting an empty password will not disable login through
978 * this interface. */
979 return vnc_display_password(NULL, password);
982 qerror_report(QERR_INVALID_PARAMETER, "protocol");
983 return -1;
986 static int expire_password(Monitor *mon, const QDict *qdict, QObject **ret_data)
988 const char *protocol = qdict_get_str(qdict, "protocol");
989 const char *whenstr = qdict_get_str(qdict, "time");
990 time_t when;
991 int rc;
993 if (strcmp(whenstr, "now") == 0) {
994 when = 0;
995 } else if (strcmp(whenstr, "never") == 0) {
996 when = TIME_MAX;
997 } else if (whenstr[0] == '+') {
998 when = time(NULL) + strtoull(whenstr+1, NULL, 10);
999 } else {
1000 when = strtoull(whenstr, NULL, 10);
1003 if (strcmp(protocol, "spice") == 0) {
1004 if (!using_spice) {
1005 /* correct one? spice isn't a device ,,, */
1006 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1007 return -1;
1009 rc = qemu_spice_set_pw_expire(when);
1010 if (rc != 0) {
1011 qerror_report(QERR_SET_PASSWD_FAILED);
1012 return -1;
1014 return 0;
1017 if (strcmp(protocol, "vnc") == 0) {
1018 return vnc_display_pw_expire(NULL, when);
1021 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1022 return -1;
1025 static int add_graphics_client(Monitor *mon, const QDict *qdict, QObject **ret_data)
1027 const char *protocol = qdict_get_str(qdict, "protocol");
1028 const char *fdname = qdict_get_str(qdict, "fdname");
1029 CharDriverState *s;
1031 if (strcmp(protocol, "spice") == 0) {
1032 if (!using_spice) {
1033 /* correct one? spice isn't a device ,,, */
1034 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1035 return -1;
1037 qerror_report(QERR_ADD_CLIENT_FAILED);
1038 return -1;
1039 #ifdef CONFIG_VNC
1040 } else if (strcmp(protocol, "vnc") == 0) {
1041 int fd = monitor_get_fd(mon, fdname);
1042 int skipauth = qdict_get_try_bool(qdict, "skipauth", 0);
1043 vnc_display_add_client(NULL, fd, skipauth);
1044 return 0;
1045 #endif
1046 } else if ((s = qemu_chr_find(protocol)) != NULL) {
1047 int fd = monitor_get_fd(mon, fdname);
1048 if (qemu_chr_add_client(s, fd) < 0) {
1049 qerror_report(QERR_ADD_CLIENT_FAILED);
1050 return -1;
1052 return 0;
1055 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1056 return -1;
1059 static int client_migrate_info(Monitor *mon, const QDict *qdict, QObject **ret_data)
1061 const char *protocol = qdict_get_str(qdict, "protocol");
1062 const char *hostname = qdict_get_str(qdict, "hostname");
1063 const char *subject = qdict_get_try_str(qdict, "cert-subject");
1064 int port = qdict_get_try_int(qdict, "port", -1);
1065 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
1066 int ret;
1068 if (strcmp(protocol, "spice") == 0) {
1069 if (!using_spice) {
1070 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1071 return -1;
1074 ret = qemu_spice_migrate_info(hostname, port, tls_port, subject);
1075 if (ret != 0) {
1076 qerror_report(QERR_UNDEFINED_ERROR);
1077 return -1;
1079 return 0;
1082 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1083 return -1;
1086 static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
1088 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
1089 return 0;
1092 static void do_logfile(Monitor *mon, const QDict *qdict)
1094 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
1097 static void do_log(Monitor *mon, const QDict *qdict)
1099 int mask;
1100 const char *items = qdict_get_str(qdict, "items");
1102 if (!strcmp(items, "none")) {
1103 mask = 0;
1104 } else {
1105 mask = cpu_str_to_log_mask(items);
1106 if (!mask) {
1107 help_cmd(mon, "log");
1108 return;
1111 cpu_set_log(mask);
1114 static void do_singlestep(Monitor *mon, const QDict *qdict)
1116 const char *option = qdict_get_try_str(qdict, "option");
1117 if (!option || !strcmp(option, "on")) {
1118 singlestep = 1;
1119 } else if (!strcmp(option, "off")) {
1120 singlestep = 0;
1121 } else {
1122 monitor_printf(mon, "unexpected option %s\n", option);
1126 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
1128 struct bdrv_iterate_context {
1129 Monitor *mon;
1130 int err;
1133 static void iostatus_bdrv_it(void *opaque, BlockDriverState *bs)
1135 bdrv_iostatus_reset(bs);
1139 * do_cont(): Resume emulation.
1141 static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
1143 struct bdrv_iterate_context context = { mon, 0 };
1145 if (runstate_check(RUN_STATE_INMIGRATE)) {
1146 qerror_report(QERR_MIGRATION_EXPECTED);
1147 return -1;
1148 } else if (runstate_check(RUN_STATE_INTERNAL_ERROR) ||
1149 runstate_check(RUN_STATE_SHUTDOWN)) {
1150 qerror_report(QERR_RESET_REQUIRED);
1151 return -1;
1154 bdrv_iterate(iostatus_bdrv_it, NULL);
1155 bdrv_iterate(encrypted_bdrv_it, &context);
1156 /* only resume the vm if all keys are set and valid */
1157 if (!context.err) {
1158 vm_start();
1159 return 0;
1160 } else {
1161 return -1;
1165 static void bdrv_key_cb(void *opaque, int err)
1167 Monitor *mon = opaque;
1169 /* another key was set successfully, retry to continue */
1170 if (!err)
1171 do_cont(mon, NULL, NULL);
1174 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1176 struct bdrv_iterate_context *context = opaque;
1178 if (!context->err && bdrv_key_required(bs)) {
1179 context->err = -EBUSY;
1180 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1181 context->mon);
1185 static void do_gdbserver(Monitor *mon, const QDict *qdict)
1187 const char *device = qdict_get_try_str(qdict, "device");
1188 if (!device)
1189 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1190 if (gdbserver_start(device) < 0) {
1191 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1192 device);
1193 } else if (strcmp(device, "none") == 0) {
1194 monitor_printf(mon, "Disabled gdbserver\n");
1195 } else {
1196 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1197 device);
1201 static void do_watchdog_action(Monitor *mon, const QDict *qdict)
1203 const char *action = qdict_get_str(qdict, "action");
1204 if (select_watchdog_action(action) == -1) {
1205 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1209 static void monitor_printc(Monitor *mon, int c)
1211 monitor_printf(mon, "'");
1212 switch(c) {
1213 case '\'':
1214 monitor_printf(mon, "\\'");
1215 break;
1216 case '\\':
1217 monitor_printf(mon, "\\\\");
1218 break;
1219 case '\n':
1220 monitor_printf(mon, "\\n");
1221 break;
1222 case '\r':
1223 monitor_printf(mon, "\\r");
1224 break;
1225 default:
1226 if (c >= 32 && c <= 126) {
1227 monitor_printf(mon, "%c", c);
1228 } else {
1229 monitor_printf(mon, "\\x%02x", c);
1231 break;
1233 monitor_printf(mon, "'");
1236 static void memory_dump(Monitor *mon, int count, int format, int wsize,
1237 target_phys_addr_t addr, int is_physical)
1239 CPUState *env;
1240 int l, line_size, i, max_digits, len;
1241 uint8_t buf[16];
1242 uint64_t v;
1244 if (format == 'i') {
1245 int flags;
1246 flags = 0;
1247 env = mon_get_cpu();
1248 #ifdef TARGET_I386
1249 if (wsize == 2) {
1250 flags = 1;
1251 } else if (wsize == 4) {
1252 flags = 0;
1253 } else {
1254 /* as default we use the current CS size */
1255 flags = 0;
1256 if (env) {
1257 #ifdef TARGET_X86_64
1258 if ((env->efer & MSR_EFER_LMA) &&
1259 (env->segs[R_CS].flags & DESC_L_MASK))
1260 flags = 2;
1261 else
1262 #endif
1263 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1264 flags = 1;
1267 #endif
1268 monitor_disas(mon, env, addr, count, is_physical, flags);
1269 return;
1272 len = wsize * count;
1273 if (wsize == 1)
1274 line_size = 8;
1275 else
1276 line_size = 16;
1277 max_digits = 0;
1279 switch(format) {
1280 case 'o':
1281 max_digits = (wsize * 8 + 2) / 3;
1282 break;
1283 default:
1284 case 'x':
1285 max_digits = (wsize * 8) / 4;
1286 break;
1287 case 'u':
1288 case 'd':
1289 max_digits = (wsize * 8 * 10 + 32) / 33;
1290 break;
1291 case 'c':
1292 wsize = 1;
1293 break;
1296 while (len > 0) {
1297 if (is_physical)
1298 monitor_printf(mon, TARGET_FMT_plx ":", addr);
1299 else
1300 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
1301 l = len;
1302 if (l > line_size)
1303 l = line_size;
1304 if (is_physical) {
1305 cpu_physical_memory_read(addr, buf, l);
1306 } else {
1307 env = mon_get_cpu();
1308 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
1309 monitor_printf(mon, " Cannot access memory\n");
1310 break;
1313 i = 0;
1314 while (i < l) {
1315 switch(wsize) {
1316 default:
1317 case 1:
1318 v = ldub_raw(buf + i);
1319 break;
1320 case 2:
1321 v = lduw_raw(buf + i);
1322 break;
1323 case 4:
1324 v = (uint32_t)ldl_raw(buf + i);
1325 break;
1326 case 8:
1327 v = ldq_raw(buf + i);
1328 break;
1330 monitor_printf(mon, " ");
1331 switch(format) {
1332 case 'o':
1333 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
1334 break;
1335 case 'x':
1336 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
1337 break;
1338 case 'u':
1339 monitor_printf(mon, "%*" PRIu64, max_digits, v);
1340 break;
1341 case 'd':
1342 monitor_printf(mon, "%*" PRId64, max_digits, v);
1343 break;
1344 case 'c':
1345 monitor_printc(mon, v);
1346 break;
1348 i += wsize;
1350 monitor_printf(mon, "\n");
1351 addr += l;
1352 len -= l;
1356 static void do_memory_dump(Monitor *mon, const QDict *qdict)
1358 int count = qdict_get_int(qdict, "count");
1359 int format = qdict_get_int(qdict, "format");
1360 int size = qdict_get_int(qdict, "size");
1361 target_long addr = qdict_get_int(qdict, "addr");
1363 memory_dump(mon, count, format, size, addr, 0);
1366 static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
1368 int count = qdict_get_int(qdict, "count");
1369 int format = qdict_get_int(qdict, "format");
1370 int size = qdict_get_int(qdict, "size");
1371 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
1373 memory_dump(mon, count, format, size, addr, 1);
1376 static void do_print(Monitor *mon, const QDict *qdict)
1378 int format = qdict_get_int(qdict, "format");
1379 target_phys_addr_t val = qdict_get_int(qdict, "val");
1381 #if TARGET_PHYS_ADDR_BITS == 32
1382 switch(format) {
1383 case 'o':
1384 monitor_printf(mon, "%#o", val);
1385 break;
1386 case 'x':
1387 monitor_printf(mon, "%#x", val);
1388 break;
1389 case 'u':
1390 monitor_printf(mon, "%u", val);
1391 break;
1392 default:
1393 case 'd':
1394 monitor_printf(mon, "%d", val);
1395 break;
1396 case 'c':
1397 monitor_printc(mon, val);
1398 break;
1400 #else
1401 switch(format) {
1402 case 'o':
1403 monitor_printf(mon, "%#" PRIo64, val);
1404 break;
1405 case 'x':
1406 monitor_printf(mon, "%#" PRIx64, val);
1407 break;
1408 case 'u':
1409 monitor_printf(mon, "%" PRIu64, val);
1410 break;
1411 default:
1412 case 'd':
1413 monitor_printf(mon, "%" PRId64, val);
1414 break;
1415 case 'c':
1416 monitor_printc(mon, val);
1417 break;
1419 #endif
1420 monitor_printf(mon, "\n");
1423 static int do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
1425 FILE *f;
1426 uint32_t size = qdict_get_int(qdict, "size");
1427 const char *filename = qdict_get_str(qdict, "filename");
1428 target_long addr = qdict_get_int(qdict, "val");
1429 uint32_t l;
1430 CPUState *env;
1431 uint8_t buf[1024];
1432 int ret = -1;
1434 env = mon_get_cpu();
1436 f = fopen(filename, "wb");
1437 if (!f) {
1438 qerror_report(QERR_OPEN_FILE_FAILED, filename);
1439 return -1;
1441 while (size != 0) {
1442 l = sizeof(buf);
1443 if (l > size)
1444 l = size;
1445 cpu_memory_rw_debug(env, addr, buf, l, 0);
1446 if (fwrite(buf, 1, l, f) != l) {
1447 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1448 goto exit;
1450 addr += l;
1451 size -= l;
1454 ret = 0;
1456 exit:
1457 fclose(f);
1458 return ret;
1461 static int do_physical_memory_save(Monitor *mon, const QDict *qdict,
1462 QObject **ret_data)
1464 FILE *f;
1465 uint32_t l;
1466 uint8_t buf[1024];
1467 uint32_t size = qdict_get_int(qdict, "size");
1468 const char *filename = qdict_get_str(qdict, "filename");
1469 target_phys_addr_t addr = qdict_get_int(qdict, "val");
1470 int ret = -1;
1472 f = fopen(filename, "wb");
1473 if (!f) {
1474 qerror_report(QERR_OPEN_FILE_FAILED, filename);
1475 return -1;
1477 while (size != 0) {
1478 l = sizeof(buf);
1479 if (l > size)
1480 l = size;
1481 cpu_physical_memory_read(addr, buf, l);
1482 if (fwrite(buf, 1, l, f) != l) {
1483 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1484 goto exit;
1486 fflush(f);
1487 addr += l;
1488 size -= l;
1491 ret = 0;
1493 exit:
1494 fclose(f);
1495 return ret;
1498 static void do_sum(Monitor *mon, const QDict *qdict)
1500 uint32_t addr;
1501 uint16_t sum;
1502 uint32_t start = qdict_get_int(qdict, "start");
1503 uint32_t size = qdict_get_int(qdict, "size");
1505 sum = 0;
1506 for(addr = start; addr < (start + size); addr++) {
1507 uint8_t val = ldub_phys(addr);
1508 /* BSD sum algorithm ('sum' Unix command) */
1509 sum = (sum >> 1) | (sum << 15);
1510 sum += val;
1512 monitor_printf(mon, "%05d\n", sum);
1515 typedef struct {
1516 int keycode;
1517 const char *name;
1518 } KeyDef;
1520 static const KeyDef key_defs[] = {
1521 { 0x2a, "shift" },
1522 { 0x36, "shift_r" },
1524 { 0x38, "alt" },
1525 { 0xb8, "alt_r" },
1526 { 0x64, "altgr" },
1527 { 0xe4, "altgr_r" },
1528 { 0x1d, "ctrl" },
1529 { 0x9d, "ctrl_r" },
1531 { 0xdd, "menu" },
1533 { 0x01, "esc" },
1535 { 0x02, "1" },
1536 { 0x03, "2" },
1537 { 0x04, "3" },
1538 { 0x05, "4" },
1539 { 0x06, "5" },
1540 { 0x07, "6" },
1541 { 0x08, "7" },
1542 { 0x09, "8" },
1543 { 0x0a, "9" },
1544 { 0x0b, "0" },
1545 { 0x0c, "minus" },
1546 { 0x0d, "equal" },
1547 { 0x0e, "backspace" },
1549 { 0x0f, "tab" },
1550 { 0x10, "q" },
1551 { 0x11, "w" },
1552 { 0x12, "e" },
1553 { 0x13, "r" },
1554 { 0x14, "t" },
1555 { 0x15, "y" },
1556 { 0x16, "u" },
1557 { 0x17, "i" },
1558 { 0x18, "o" },
1559 { 0x19, "p" },
1560 { 0x1a, "bracket_left" },
1561 { 0x1b, "bracket_right" },
1562 { 0x1c, "ret" },
1564 { 0x1e, "a" },
1565 { 0x1f, "s" },
1566 { 0x20, "d" },
1567 { 0x21, "f" },
1568 { 0x22, "g" },
1569 { 0x23, "h" },
1570 { 0x24, "j" },
1571 { 0x25, "k" },
1572 { 0x26, "l" },
1573 { 0x27, "semicolon" },
1574 { 0x28, "apostrophe" },
1575 { 0x29, "grave_accent" },
1577 { 0x2b, "backslash" },
1578 { 0x2c, "z" },
1579 { 0x2d, "x" },
1580 { 0x2e, "c" },
1581 { 0x2f, "v" },
1582 { 0x30, "b" },
1583 { 0x31, "n" },
1584 { 0x32, "m" },
1585 { 0x33, "comma" },
1586 { 0x34, "dot" },
1587 { 0x35, "slash" },
1589 { 0x37, "asterisk" },
1591 { 0x39, "spc" },
1592 { 0x3a, "caps_lock" },
1593 { 0x3b, "f1" },
1594 { 0x3c, "f2" },
1595 { 0x3d, "f3" },
1596 { 0x3e, "f4" },
1597 { 0x3f, "f5" },
1598 { 0x40, "f6" },
1599 { 0x41, "f7" },
1600 { 0x42, "f8" },
1601 { 0x43, "f9" },
1602 { 0x44, "f10" },
1603 { 0x45, "num_lock" },
1604 { 0x46, "scroll_lock" },
1606 { 0xb5, "kp_divide" },
1607 { 0x37, "kp_multiply" },
1608 { 0x4a, "kp_subtract" },
1609 { 0x4e, "kp_add" },
1610 { 0x9c, "kp_enter" },
1611 { 0x53, "kp_decimal" },
1612 { 0x54, "sysrq" },
1614 { 0x52, "kp_0" },
1615 { 0x4f, "kp_1" },
1616 { 0x50, "kp_2" },
1617 { 0x51, "kp_3" },
1618 { 0x4b, "kp_4" },
1619 { 0x4c, "kp_5" },
1620 { 0x4d, "kp_6" },
1621 { 0x47, "kp_7" },
1622 { 0x48, "kp_8" },
1623 { 0x49, "kp_9" },
1625 { 0x56, "<" },
1627 { 0x57, "f11" },
1628 { 0x58, "f12" },
1630 { 0xb7, "print" },
1632 { 0xc7, "home" },
1633 { 0xc9, "pgup" },
1634 { 0xd1, "pgdn" },
1635 { 0xcf, "end" },
1637 { 0xcb, "left" },
1638 { 0xc8, "up" },
1639 { 0xd0, "down" },
1640 { 0xcd, "right" },
1642 { 0xd2, "insert" },
1643 { 0xd3, "delete" },
1644 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1645 { 0xf0, "stop" },
1646 { 0xf1, "again" },
1647 { 0xf2, "props" },
1648 { 0xf3, "undo" },
1649 { 0xf4, "front" },
1650 { 0xf5, "copy" },
1651 { 0xf6, "open" },
1652 { 0xf7, "paste" },
1653 { 0xf8, "find" },
1654 { 0xf9, "cut" },
1655 { 0xfa, "lf" },
1656 { 0xfb, "help" },
1657 { 0xfc, "meta_l" },
1658 { 0xfd, "meta_r" },
1659 { 0xfe, "compose" },
1660 #endif
1661 { 0, NULL },
1664 static int get_keycode(const char *key)
1666 const KeyDef *p;
1667 char *endp;
1668 int ret;
1670 for(p = key_defs; p->name != NULL; p++) {
1671 if (!strcmp(key, p->name))
1672 return p->keycode;
1674 if (strstart(key, "0x", NULL)) {
1675 ret = strtoul(key, &endp, 0);
1676 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1677 return ret;
1679 return -1;
1682 #define MAX_KEYCODES 16
1683 static uint8_t keycodes[MAX_KEYCODES];
1684 static int nb_pending_keycodes;
1685 static QEMUTimer *key_timer;
1687 static void release_keys(void *opaque)
1689 int keycode;
1691 while (nb_pending_keycodes > 0) {
1692 nb_pending_keycodes--;
1693 keycode = keycodes[nb_pending_keycodes];
1694 if (keycode & 0x80)
1695 kbd_put_keycode(0xe0);
1696 kbd_put_keycode(keycode | 0x80);
1700 static void do_sendkey(Monitor *mon, const QDict *qdict)
1702 char keyname_buf[16];
1703 char *separator;
1704 int keyname_len, keycode, i;
1705 const char *string = qdict_get_str(qdict, "string");
1706 int has_hold_time = qdict_haskey(qdict, "hold_time");
1707 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
1709 if (nb_pending_keycodes > 0) {
1710 qemu_del_timer(key_timer);
1711 release_keys(NULL);
1713 if (!has_hold_time)
1714 hold_time = 100;
1715 i = 0;
1716 while (1) {
1717 separator = strchr(string, '-');
1718 keyname_len = separator ? separator - string : strlen(string);
1719 if (keyname_len > 0) {
1720 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1721 if (keyname_len > sizeof(keyname_buf) - 1) {
1722 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
1723 return;
1725 if (i == MAX_KEYCODES) {
1726 monitor_printf(mon, "too many keys\n");
1727 return;
1729 keyname_buf[keyname_len] = 0;
1730 keycode = get_keycode(keyname_buf);
1731 if (keycode < 0) {
1732 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
1733 return;
1735 keycodes[i++] = keycode;
1737 if (!separator)
1738 break;
1739 string = separator + 1;
1741 nb_pending_keycodes = i;
1742 /* key down events */
1743 for (i = 0; i < nb_pending_keycodes; i++) {
1744 keycode = keycodes[i];
1745 if (keycode & 0x80)
1746 kbd_put_keycode(0xe0);
1747 kbd_put_keycode(keycode & 0x7f);
1749 /* delayed key up events */
1750 qemu_mod_timer(key_timer, qemu_get_clock_ns(vm_clock) +
1751 muldiv64(get_ticks_per_sec(), hold_time, 1000));
1754 static int mouse_button_state;
1756 static void do_mouse_move(Monitor *mon, const QDict *qdict)
1758 int dx, dy, dz;
1759 const char *dx_str = qdict_get_str(qdict, "dx_str");
1760 const char *dy_str = qdict_get_str(qdict, "dy_str");
1761 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1762 dx = strtol(dx_str, NULL, 0);
1763 dy = strtol(dy_str, NULL, 0);
1764 dz = 0;
1765 if (dz_str)
1766 dz = strtol(dz_str, NULL, 0);
1767 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1770 static void do_mouse_button(Monitor *mon, const QDict *qdict)
1772 int button_state = qdict_get_int(qdict, "button_state");
1773 mouse_button_state = button_state;
1774 kbd_mouse_event(0, 0, 0, mouse_button_state);
1777 static void do_ioport_read(Monitor *mon, const QDict *qdict)
1779 int size = qdict_get_int(qdict, "size");
1780 int addr = qdict_get_int(qdict, "addr");
1781 int has_index = qdict_haskey(qdict, "index");
1782 uint32_t val;
1783 int suffix;
1785 if (has_index) {
1786 int index = qdict_get_int(qdict, "index");
1787 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
1788 addr++;
1790 addr &= 0xffff;
1792 switch(size) {
1793 default:
1794 case 1:
1795 val = cpu_inb(addr);
1796 suffix = 'b';
1797 break;
1798 case 2:
1799 val = cpu_inw(addr);
1800 suffix = 'w';
1801 break;
1802 case 4:
1803 val = cpu_inl(addr);
1804 suffix = 'l';
1805 break;
1807 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1808 suffix, addr, size * 2, val);
1811 static void do_ioport_write(Monitor *mon, const QDict *qdict)
1813 int size = qdict_get_int(qdict, "size");
1814 int addr = qdict_get_int(qdict, "addr");
1815 int val = qdict_get_int(qdict, "val");
1817 addr &= IOPORTS_MASK;
1819 switch (size) {
1820 default:
1821 case 1:
1822 cpu_outb(addr, val);
1823 break;
1824 case 2:
1825 cpu_outw(addr, val);
1826 break;
1827 case 4:
1828 cpu_outl(addr, val);
1829 break;
1833 static void do_boot_set(Monitor *mon, const QDict *qdict)
1835 int res;
1836 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1838 res = qemu_boot_set(bootdevice);
1839 if (res == 0) {
1840 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1841 } else if (res > 0) {
1842 monitor_printf(mon, "setting boot device list failed\n");
1843 } else {
1844 monitor_printf(mon, "no function defined to set boot device list for "
1845 "this architecture\n");
1850 * do_system_powerdown(): Issue a machine powerdown
1852 static int do_system_powerdown(Monitor *mon, const QDict *qdict,
1853 QObject **ret_data)
1855 qemu_system_powerdown_request();
1856 return 0;
1859 #if defined(TARGET_I386)
1860 static void print_pte(Monitor *mon, target_phys_addr_t addr,
1861 target_phys_addr_t pte,
1862 target_phys_addr_t mask)
1864 #ifdef TARGET_X86_64
1865 if (addr & (1ULL << 47)) {
1866 addr |= -1LL << 48;
1868 #endif
1869 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1870 " %c%c%c%c%c%c%c%c%c\n",
1871 addr,
1872 pte & mask,
1873 pte & PG_NX_MASK ? 'X' : '-',
1874 pte & PG_GLOBAL_MASK ? 'G' : '-',
1875 pte & PG_PSE_MASK ? 'P' : '-',
1876 pte & PG_DIRTY_MASK ? 'D' : '-',
1877 pte & PG_ACCESSED_MASK ? 'A' : '-',
1878 pte & PG_PCD_MASK ? 'C' : '-',
1879 pte & PG_PWT_MASK ? 'T' : '-',
1880 pte & PG_USER_MASK ? 'U' : '-',
1881 pte & PG_RW_MASK ? 'W' : '-');
1884 static void tlb_info_32(Monitor *mon, CPUState *env)
1886 unsigned int l1, l2;
1887 uint32_t pgd, pde, pte;
1889 pgd = env->cr[3] & ~0xfff;
1890 for(l1 = 0; l1 < 1024; l1++) {
1891 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
1892 pde = le32_to_cpu(pde);
1893 if (pde & PG_PRESENT_MASK) {
1894 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1895 /* 4M pages */
1896 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
1897 } else {
1898 for(l2 = 0; l2 < 1024; l2++) {
1899 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
1900 pte = le32_to_cpu(pte);
1901 if (pte & PG_PRESENT_MASK) {
1902 print_pte(mon, (l1 << 22) + (l2 << 12),
1903 pte & ~PG_PSE_MASK,
1904 ~0xfff);
1912 static void tlb_info_pae32(Monitor *mon, CPUState *env)
1914 unsigned int l1, l2, l3;
1915 uint64_t pdpe, pde, pte;
1916 uint64_t pdp_addr, pd_addr, pt_addr;
1918 pdp_addr = env->cr[3] & ~0x1f;
1919 for (l1 = 0; l1 < 4; l1++) {
1920 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
1921 pdpe = le64_to_cpu(pdpe);
1922 if (pdpe & PG_PRESENT_MASK) {
1923 pd_addr = pdpe & 0x3fffffffff000ULL;
1924 for (l2 = 0; l2 < 512; l2++) {
1925 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
1926 pde = le64_to_cpu(pde);
1927 if (pde & PG_PRESENT_MASK) {
1928 if (pde & PG_PSE_MASK) {
1929 /* 2M pages with PAE, CR4.PSE is ignored */
1930 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
1931 ~((target_phys_addr_t)(1 << 20) - 1));
1932 } else {
1933 pt_addr = pde & 0x3fffffffff000ULL;
1934 for (l3 = 0; l3 < 512; l3++) {
1935 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
1936 pte = le64_to_cpu(pte);
1937 if (pte & PG_PRESENT_MASK) {
1938 print_pte(mon, (l1 << 30 ) + (l2 << 21)
1939 + (l3 << 12),
1940 pte & ~PG_PSE_MASK,
1941 ~(target_phys_addr_t)0xfff);
1951 #ifdef TARGET_X86_64
1952 static void tlb_info_64(Monitor *mon, CPUState *env)
1954 uint64_t l1, l2, l3, l4;
1955 uint64_t pml4e, pdpe, pde, pte;
1956 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
1958 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1959 for (l1 = 0; l1 < 512; l1++) {
1960 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
1961 pml4e = le64_to_cpu(pml4e);
1962 if (pml4e & PG_PRESENT_MASK) {
1963 pdp_addr = pml4e & 0x3fffffffff000ULL;
1964 for (l2 = 0; l2 < 512; l2++) {
1965 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
1966 pdpe = le64_to_cpu(pdpe);
1967 if (pdpe & PG_PRESENT_MASK) {
1968 if (pdpe & PG_PSE_MASK) {
1969 /* 1G pages, CR4.PSE is ignored */
1970 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
1971 0x3ffffc0000000ULL);
1972 } else {
1973 pd_addr = pdpe & 0x3fffffffff000ULL;
1974 for (l3 = 0; l3 < 512; l3++) {
1975 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
1976 pde = le64_to_cpu(pde);
1977 if (pde & PG_PRESENT_MASK) {
1978 if (pde & PG_PSE_MASK) {
1979 /* 2M pages, CR4.PSE is ignored */
1980 print_pte(mon, (l1 << 39) + (l2 << 30) +
1981 (l3 << 21), pde,
1982 0x3ffffffe00000ULL);
1983 } else {
1984 pt_addr = pde & 0x3fffffffff000ULL;
1985 for (l4 = 0; l4 < 512; l4++) {
1986 cpu_physical_memory_read(pt_addr
1987 + l4 * 8,
1988 &pte, 8);
1989 pte = le64_to_cpu(pte);
1990 if (pte & PG_PRESENT_MASK) {
1991 print_pte(mon, (l1 << 39) +
1992 (l2 << 30) +
1993 (l3 << 21) + (l4 << 12),
1994 pte & ~PG_PSE_MASK,
1995 0x3fffffffff000ULL);
2007 #endif
2009 static void tlb_info(Monitor *mon)
2011 CPUState *env;
2013 env = mon_get_cpu();
2015 if (!(env->cr[0] & CR0_PG_MASK)) {
2016 monitor_printf(mon, "PG disabled\n");
2017 return;
2019 if (env->cr[4] & CR4_PAE_MASK) {
2020 #ifdef TARGET_X86_64
2021 if (env->hflags & HF_LMA_MASK) {
2022 tlb_info_64(mon, env);
2023 } else
2024 #endif
2026 tlb_info_pae32(mon, env);
2028 } else {
2029 tlb_info_32(mon, env);
2033 static void mem_print(Monitor *mon, target_phys_addr_t *pstart,
2034 int *plast_prot,
2035 target_phys_addr_t end, int prot)
2037 int prot1;
2038 prot1 = *plast_prot;
2039 if (prot != prot1) {
2040 if (*pstart != -1) {
2041 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
2042 TARGET_FMT_plx " %c%c%c\n",
2043 *pstart, end, end - *pstart,
2044 prot1 & PG_USER_MASK ? 'u' : '-',
2045 'r',
2046 prot1 & PG_RW_MASK ? 'w' : '-');
2048 if (prot != 0)
2049 *pstart = end;
2050 else
2051 *pstart = -1;
2052 *plast_prot = prot;
2056 static void mem_info_32(Monitor *mon, CPUState *env)
2058 unsigned int l1, l2;
2059 int prot, last_prot;
2060 uint32_t pgd, pde, pte;
2061 target_phys_addr_t start, end;
2063 pgd = env->cr[3] & ~0xfff;
2064 last_prot = 0;
2065 start = -1;
2066 for(l1 = 0; l1 < 1024; l1++) {
2067 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
2068 pde = le32_to_cpu(pde);
2069 end = l1 << 22;
2070 if (pde & PG_PRESENT_MASK) {
2071 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
2072 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
2073 mem_print(mon, &start, &last_prot, end, prot);
2074 } else {
2075 for(l2 = 0; l2 < 1024; l2++) {
2076 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
2077 pte = le32_to_cpu(pte);
2078 end = (l1 << 22) + (l2 << 12);
2079 if (pte & PG_PRESENT_MASK) {
2080 prot = pte & pde &
2081 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
2082 } else {
2083 prot = 0;
2085 mem_print(mon, &start, &last_prot, end, prot);
2088 } else {
2089 prot = 0;
2090 mem_print(mon, &start, &last_prot, end, prot);
2093 /* Flush last range */
2094 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
2097 static void mem_info_pae32(Monitor *mon, CPUState *env)
2099 unsigned int l1, l2, l3;
2100 int prot, last_prot;
2101 uint64_t pdpe, pde, pte;
2102 uint64_t pdp_addr, pd_addr, pt_addr;
2103 target_phys_addr_t start, end;
2105 pdp_addr = env->cr[3] & ~0x1f;
2106 last_prot = 0;
2107 start = -1;
2108 for (l1 = 0; l1 < 4; l1++) {
2109 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
2110 pdpe = le64_to_cpu(pdpe);
2111 end = l1 << 30;
2112 if (pdpe & PG_PRESENT_MASK) {
2113 pd_addr = pdpe & 0x3fffffffff000ULL;
2114 for (l2 = 0; l2 < 512; l2++) {
2115 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
2116 pde = le64_to_cpu(pde);
2117 end = (l1 << 30) + (l2 << 21);
2118 if (pde & PG_PRESENT_MASK) {
2119 if (pde & PG_PSE_MASK) {
2120 prot = pde & (PG_USER_MASK | PG_RW_MASK |
2121 PG_PRESENT_MASK);
2122 mem_print(mon, &start, &last_prot, end, prot);
2123 } else {
2124 pt_addr = pde & 0x3fffffffff000ULL;
2125 for (l3 = 0; l3 < 512; l3++) {
2126 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
2127 pte = le64_to_cpu(pte);
2128 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
2129 if (pte & PG_PRESENT_MASK) {
2130 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
2131 PG_PRESENT_MASK);
2132 } else {
2133 prot = 0;
2135 mem_print(mon, &start, &last_prot, end, prot);
2138 } else {
2139 prot = 0;
2140 mem_print(mon, &start, &last_prot, end, prot);
2143 } else {
2144 prot = 0;
2145 mem_print(mon, &start, &last_prot, end, prot);
2148 /* Flush last range */
2149 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
2153 #ifdef TARGET_X86_64
2154 static void mem_info_64(Monitor *mon, CPUState *env)
2156 int prot, last_prot;
2157 uint64_t l1, l2, l3, l4;
2158 uint64_t pml4e, pdpe, pde, pte;
2159 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
2161 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
2162 last_prot = 0;
2163 start = -1;
2164 for (l1 = 0; l1 < 512; l1++) {
2165 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
2166 pml4e = le64_to_cpu(pml4e);
2167 end = l1 << 39;
2168 if (pml4e & PG_PRESENT_MASK) {
2169 pdp_addr = pml4e & 0x3fffffffff000ULL;
2170 for (l2 = 0; l2 < 512; l2++) {
2171 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
2172 pdpe = le64_to_cpu(pdpe);
2173 end = (l1 << 39) + (l2 << 30);
2174 if (pdpe & PG_PRESENT_MASK) {
2175 if (pdpe & PG_PSE_MASK) {
2176 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
2177 PG_PRESENT_MASK);
2178 prot &= pml4e;
2179 mem_print(mon, &start, &last_prot, end, prot);
2180 } else {
2181 pd_addr = pdpe & 0x3fffffffff000ULL;
2182 for (l3 = 0; l3 < 512; l3++) {
2183 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
2184 pde = le64_to_cpu(pde);
2185 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
2186 if (pde & PG_PRESENT_MASK) {
2187 if (pde & PG_PSE_MASK) {
2188 prot = pde & (PG_USER_MASK | PG_RW_MASK |
2189 PG_PRESENT_MASK);
2190 prot &= pml4e & pdpe;
2191 mem_print(mon, &start, &last_prot, end, prot);
2192 } else {
2193 pt_addr = pde & 0x3fffffffff000ULL;
2194 for (l4 = 0; l4 < 512; l4++) {
2195 cpu_physical_memory_read(pt_addr
2196 + l4 * 8,
2197 &pte, 8);
2198 pte = le64_to_cpu(pte);
2199 end = (l1 << 39) + (l2 << 30) +
2200 (l3 << 21) + (l4 << 12);
2201 if (pte & PG_PRESENT_MASK) {
2202 prot = pte & (PG_USER_MASK | PG_RW_MASK |
2203 PG_PRESENT_MASK);
2204 prot &= pml4e & pdpe & pde;
2205 } else {
2206 prot = 0;
2208 mem_print(mon, &start, &last_prot, end, prot);
2211 } else {
2212 prot = 0;
2213 mem_print(mon, &start, &last_prot, end, prot);
2217 } else {
2218 prot = 0;
2219 mem_print(mon, &start, &last_prot, end, prot);
2222 } else {
2223 prot = 0;
2224 mem_print(mon, &start, &last_prot, end, prot);
2227 /* Flush last range */
2228 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 48, 0);
2230 #endif
2232 static void mem_info(Monitor *mon)
2234 CPUState *env;
2236 env = mon_get_cpu();
2238 if (!(env->cr[0] & CR0_PG_MASK)) {
2239 monitor_printf(mon, "PG disabled\n");
2240 return;
2242 if (env->cr[4] & CR4_PAE_MASK) {
2243 #ifdef TARGET_X86_64
2244 if (env->hflags & HF_LMA_MASK) {
2245 mem_info_64(mon, env);
2246 } else
2247 #endif
2249 mem_info_pae32(mon, env);
2251 } else {
2252 mem_info_32(mon, env);
2255 #endif
2257 #if defined(TARGET_SH4)
2259 static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
2261 monitor_printf(mon, " tlb%i:\t"
2262 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
2263 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
2264 "dirty=%hhu writethrough=%hhu\n",
2265 idx,
2266 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
2267 tlb->v, tlb->sh, tlb->c, tlb->pr,
2268 tlb->d, tlb->wt);
2271 static void tlb_info(Monitor *mon)
2273 CPUState *env = mon_get_cpu();
2274 int i;
2276 monitor_printf (mon, "ITLB:\n");
2277 for (i = 0 ; i < ITLB_SIZE ; i++)
2278 print_tlb (mon, i, &env->itlb[i]);
2279 monitor_printf (mon, "UTLB:\n");
2280 for (i = 0 ; i < UTLB_SIZE ; i++)
2281 print_tlb (mon, i, &env->utlb[i]);
2284 #endif
2286 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
2287 static void tlb_info(Monitor *mon)
2289 CPUState *env1 = mon_get_cpu();
2291 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
2293 #endif
2295 static void do_info_mtree(Monitor *mon)
2297 mtree_info((fprintf_function)monitor_printf, mon);
2300 static void do_info_numa(Monitor *mon)
2302 int i;
2303 CPUState *env;
2305 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2306 for (i = 0; i < nb_numa_nodes; i++) {
2307 monitor_printf(mon, "node %d cpus:", i);
2308 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2309 if (env->numa_node == i) {
2310 monitor_printf(mon, " %d", env->cpu_index);
2313 monitor_printf(mon, "\n");
2314 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2315 node_mem[i] >> 20);
2319 #ifdef CONFIG_PROFILER
2321 int64_t qemu_time;
2322 int64_t dev_time;
2324 static void do_info_profile(Monitor *mon)
2326 int64_t total;
2327 total = qemu_time;
2328 if (total == 0)
2329 total = 1;
2330 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
2331 dev_time, dev_time / (double)get_ticks_per_sec());
2332 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
2333 qemu_time, qemu_time / (double)get_ticks_per_sec());
2334 qemu_time = 0;
2335 dev_time = 0;
2337 #else
2338 static void do_info_profile(Monitor *mon)
2340 monitor_printf(mon, "Internal profiler not compiled\n");
2342 #endif
2344 /* Capture support */
2345 static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
2347 static void do_info_capture(Monitor *mon)
2349 int i;
2350 CaptureState *s;
2352 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2353 monitor_printf(mon, "[%d]: ", i);
2354 s->ops.info (s->opaque);
2358 #ifdef HAS_AUDIO
2359 static void do_stop_capture(Monitor *mon, const QDict *qdict)
2361 int i;
2362 int n = qdict_get_int(qdict, "n");
2363 CaptureState *s;
2365 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2366 if (i == n) {
2367 s->ops.destroy (s->opaque);
2368 QLIST_REMOVE (s, entries);
2369 g_free (s);
2370 return;
2375 static void do_wav_capture(Monitor *mon, const QDict *qdict)
2377 const char *path = qdict_get_str(qdict, "path");
2378 int has_freq = qdict_haskey(qdict, "freq");
2379 int freq = qdict_get_try_int(qdict, "freq", -1);
2380 int has_bits = qdict_haskey(qdict, "bits");
2381 int bits = qdict_get_try_int(qdict, "bits", -1);
2382 int has_channels = qdict_haskey(qdict, "nchannels");
2383 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
2384 CaptureState *s;
2386 s = g_malloc0 (sizeof (*s));
2388 freq = has_freq ? freq : 44100;
2389 bits = has_bits ? bits : 16;
2390 nchannels = has_channels ? nchannels : 2;
2392 if (wav_start_capture (s, path, freq, bits, nchannels)) {
2393 monitor_printf(mon, "Failed to add wave capture\n");
2394 g_free (s);
2395 return;
2397 QLIST_INSERT_HEAD (&capture_head, s, entries);
2399 #endif
2401 #if defined(TARGET_I386)
2402 static int do_inject_nmi(Monitor *mon, const QDict *qdict, QObject **ret_data)
2404 CPUState *env;
2406 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2407 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2410 return 0;
2412 #else
2413 static int do_inject_nmi(Monitor *mon, const QDict *qdict, QObject **ret_data)
2415 qerror_report(QERR_UNSUPPORTED);
2416 return -1;
2418 #endif
2420 static qemu_acl *find_acl(Monitor *mon, const char *name)
2422 qemu_acl *acl = qemu_acl_find(name);
2424 if (!acl) {
2425 monitor_printf(mon, "acl: unknown list '%s'\n", name);
2427 return acl;
2430 static void do_acl_show(Monitor *mon, const QDict *qdict)
2432 const char *aclname = qdict_get_str(qdict, "aclname");
2433 qemu_acl *acl = find_acl(mon, aclname);
2434 qemu_acl_entry *entry;
2435 int i = 0;
2437 if (acl) {
2438 monitor_printf(mon, "policy: %s\n",
2439 acl->defaultDeny ? "deny" : "allow");
2440 QTAILQ_FOREACH(entry, &acl->entries, next) {
2441 i++;
2442 monitor_printf(mon, "%d: %s %s\n", i,
2443 entry->deny ? "deny" : "allow", entry->match);
2448 static void do_acl_reset(Monitor *mon, const QDict *qdict)
2450 const char *aclname = qdict_get_str(qdict, "aclname");
2451 qemu_acl *acl = find_acl(mon, aclname);
2453 if (acl) {
2454 qemu_acl_reset(acl);
2455 monitor_printf(mon, "acl: removed all rules\n");
2459 static void do_acl_policy(Monitor *mon, const QDict *qdict)
2461 const char *aclname = qdict_get_str(qdict, "aclname");
2462 const char *policy = qdict_get_str(qdict, "policy");
2463 qemu_acl *acl = find_acl(mon, aclname);
2465 if (acl) {
2466 if (strcmp(policy, "allow") == 0) {
2467 acl->defaultDeny = 0;
2468 monitor_printf(mon, "acl: policy set to 'allow'\n");
2469 } else if (strcmp(policy, "deny") == 0) {
2470 acl->defaultDeny = 1;
2471 monitor_printf(mon, "acl: policy set to 'deny'\n");
2472 } else {
2473 monitor_printf(mon, "acl: unknown policy '%s', "
2474 "expected 'deny' or 'allow'\n", policy);
2479 static void do_acl_add(Monitor *mon, const QDict *qdict)
2481 const char *aclname = qdict_get_str(qdict, "aclname");
2482 const char *match = qdict_get_str(qdict, "match");
2483 const char *policy = qdict_get_str(qdict, "policy");
2484 int has_index = qdict_haskey(qdict, "index");
2485 int index = qdict_get_try_int(qdict, "index", -1);
2486 qemu_acl *acl = find_acl(mon, aclname);
2487 int deny, ret;
2489 if (acl) {
2490 if (strcmp(policy, "allow") == 0) {
2491 deny = 0;
2492 } else if (strcmp(policy, "deny") == 0) {
2493 deny = 1;
2494 } else {
2495 monitor_printf(mon, "acl: unknown policy '%s', "
2496 "expected 'deny' or 'allow'\n", policy);
2497 return;
2499 if (has_index)
2500 ret = qemu_acl_insert(acl, deny, match, index);
2501 else
2502 ret = qemu_acl_append(acl, deny, match);
2503 if (ret < 0)
2504 monitor_printf(mon, "acl: unable to add acl entry\n");
2505 else
2506 monitor_printf(mon, "acl: added rule at position %d\n", ret);
2510 static void do_acl_remove(Monitor *mon, const QDict *qdict)
2512 const char *aclname = qdict_get_str(qdict, "aclname");
2513 const char *match = qdict_get_str(qdict, "match");
2514 qemu_acl *acl = find_acl(mon, aclname);
2515 int ret;
2517 if (acl) {
2518 ret = qemu_acl_remove(acl, match);
2519 if (ret < 0)
2520 monitor_printf(mon, "acl: no matching acl entry\n");
2521 else
2522 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
2526 #if defined(TARGET_I386)
2527 static void do_inject_mce(Monitor *mon, const QDict *qdict)
2529 CPUState *cenv;
2530 int cpu_index = qdict_get_int(qdict, "cpu_index");
2531 int bank = qdict_get_int(qdict, "bank");
2532 uint64_t status = qdict_get_int(qdict, "status");
2533 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2534 uint64_t addr = qdict_get_int(qdict, "addr");
2535 uint64_t misc = qdict_get_int(qdict, "misc");
2536 int flags = MCE_INJECT_UNCOND_AO;
2538 if (qdict_get_try_bool(qdict, "broadcast", 0)) {
2539 flags |= MCE_INJECT_BROADCAST;
2541 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu) {
2542 if (cenv->cpu_index == cpu_index) {
2543 cpu_x86_inject_mce(mon, cenv, bank, status, mcg_status, addr, misc,
2544 flags);
2545 break;
2549 #endif
2551 static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2553 const char *fdname = qdict_get_str(qdict, "fdname");
2554 mon_fd_t *monfd;
2555 int fd;
2557 fd = qemu_chr_fe_get_msgfd(mon->chr);
2558 if (fd == -1) {
2559 qerror_report(QERR_FD_NOT_SUPPLIED);
2560 return -1;
2563 if (qemu_isdigit(fdname[0])) {
2564 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2565 "a name not starting with a digit");
2566 return -1;
2569 QLIST_FOREACH(monfd, &mon->fds, next) {
2570 if (strcmp(monfd->name, fdname) != 0) {
2571 continue;
2574 close(monfd->fd);
2575 monfd->fd = fd;
2576 return 0;
2579 monfd = g_malloc0(sizeof(mon_fd_t));
2580 monfd->name = g_strdup(fdname);
2581 monfd->fd = fd;
2583 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
2584 return 0;
2587 static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2589 const char *fdname = qdict_get_str(qdict, "fdname");
2590 mon_fd_t *monfd;
2592 QLIST_FOREACH(monfd, &mon->fds, next) {
2593 if (strcmp(monfd->name, fdname) != 0) {
2594 continue;
2597 QLIST_REMOVE(monfd, next);
2598 close(monfd->fd);
2599 g_free(monfd->name);
2600 g_free(monfd);
2601 return 0;
2604 qerror_report(QERR_FD_NOT_FOUND, fdname);
2605 return -1;
2608 static void do_loadvm(Monitor *mon, const QDict *qdict)
2610 int saved_vm_running = runstate_is_running();
2611 const char *name = qdict_get_str(qdict, "name");
2613 vm_stop(RUN_STATE_RESTORE_VM);
2615 if (load_vmstate(name) == 0 && saved_vm_running) {
2616 vm_start();
2620 int monitor_get_fd(Monitor *mon, const char *fdname)
2622 mon_fd_t *monfd;
2624 QLIST_FOREACH(monfd, &mon->fds, next) {
2625 int fd;
2627 if (strcmp(monfd->name, fdname) != 0) {
2628 continue;
2631 fd = monfd->fd;
2633 /* caller takes ownership of fd */
2634 QLIST_REMOVE(monfd, next);
2635 g_free(monfd->name);
2636 g_free(monfd);
2638 return fd;
2641 return -1;
2644 static const mon_cmd_t mon_cmds[] = {
2645 #include "hmp-commands.h"
2646 { NULL, NULL, },
2649 /* Please update hmp-commands.hx when adding or changing commands */
2650 static const mon_cmd_t info_cmds[] = {
2652 .name = "version",
2653 .args_type = "",
2654 .params = "",
2655 .help = "show the version of QEMU",
2656 .mhandler.info = hmp_info_version,
2659 .name = "network",
2660 .args_type = "",
2661 .params = "",
2662 .help = "show the network state",
2663 .mhandler.info = do_info_network,
2666 .name = "chardev",
2667 .args_type = "",
2668 .params = "",
2669 .help = "show the character devices",
2670 .mhandler.info = hmp_info_chardev,
2673 .name = "block",
2674 .args_type = "",
2675 .params = "",
2676 .help = "show the block devices",
2677 .mhandler.info = hmp_info_block,
2680 .name = "blockstats",
2681 .args_type = "",
2682 .params = "",
2683 .help = "show block device statistics",
2684 .mhandler.info = hmp_info_blockstats,
2687 .name = "registers",
2688 .args_type = "",
2689 .params = "",
2690 .help = "show the cpu registers",
2691 .mhandler.info = do_info_registers,
2694 .name = "cpus",
2695 .args_type = "",
2696 .params = "",
2697 .help = "show infos for each CPU",
2698 .mhandler.info = hmp_info_cpus,
2701 .name = "history",
2702 .args_type = "",
2703 .params = "",
2704 .help = "show the command line history",
2705 .mhandler.info = do_info_history,
2707 #if defined(TARGET_I386) || defined(TARGET_PPC) || defined(TARGET_MIPS) || \
2708 defined(TARGET_LM32) || (defined(TARGET_SPARC) && !defined(TARGET_SPARC64))
2710 .name = "irq",
2711 .args_type = "",
2712 .params = "",
2713 .help = "show the interrupts statistics (if available)",
2714 #ifdef TARGET_SPARC
2715 .mhandler.info = sun4m_irq_info,
2716 #elif defined(TARGET_LM32)
2717 .mhandler.info = lm32_irq_info,
2718 #else
2719 .mhandler.info = irq_info,
2720 #endif
2723 .name = "pic",
2724 .args_type = "",
2725 .params = "",
2726 .help = "show i8259 (PIC) state",
2727 #ifdef TARGET_SPARC
2728 .mhandler.info = sun4m_pic_info,
2729 #elif defined(TARGET_LM32)
2730 .mhandler.info = lm32_do_pic_info,
2731 #else
2732 .mhandler.info = pic_info,
2733 #endif
2735 #endif
2737 .name = "pci",
2738 .args_type = "",
2739 .params = "",
2740 .help = "show PCI info",
2741 .mhandler.info = hmp_info_pci,
2743 #if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \
2744 defined(TARGET_PPC)
2746 .name = "tlb",
2747 .args_type = "",
2748 .params = "",
2749 .help = "show virtual to physical memory mappings",
2750 .mhandler.info = tlb_info,
2752 #endif
2753 #if defined(TARGET_I386)
2755 .name = "mem",
2756 .args_type = "",
2757 .params = "",
2758 .help = "show the active virtual memory mappings",
2759 .mhandler.info = mem_info,
2761 #endif
2763 .name = "mtree",
2764 .args_type = "",
2765 .params = "",
2766 .help = "show memory tree",
2767 .mhandler.info = do_info_mtree,
2770 .name = "jit",
2771 .args_type = "",
2772 .params = "",
2773 .help = "show dynamic compiler info",
2774 .mhandler.info = do_info_jit,
2777 .name = "kvm",
2778 .args_type = "",
2779 .params = "",
2780 .help = "show KVM information",
2781 .mhandler.info = hmp_info_kvm,
2784 .name = "numa",
2785 .args_type = "",
2786 .params = "",
2787 .help = "show NUMA information",
2788 .mhandler.info = do_info_numa,
2791 .name = "usb",
2792 .args_type = "",
2793 .params = "",
2794 .help = "show guest USB devices",
2795 .mhandler.info = usb_info,
2798 .name = "usbhost",
2799 .args_type = "",
2800 .params = "",
2801 .help = "show host USB devices",
2802 .mhandler.info = usb_host_info,
2805 .name = "profile",
2806 .args_type = "",
2807 .params = "",
2808 .help = "show profiling information",
2809 .mhandler.info = do_info_profile,
2812 .name = "capture",
2813 .args_type = "",
2814 .params = "",
2815 .help = "show capture information",
2816 .mhandler.info = do_info_capture,
2819 .name = "snapshots",
2820 .args_type = "",
2821 .params = "",
2822 .help = "show the currently saved VM snapshots",
2823 .mhandler.info = do_info_snapshots,
2826 .name = "status",
2827 .args_type = "",
2828 .params = "",
2829 .help = "show the current VM status (running|paused)",
2830 .mhandler.info = hmp_info_status,
2833 .name = "pcmcia",
2834 .args_type = "",
2835 .params = "",
2836 .help = "show guest PCMCIA status",
2837 .mhandler.info = pcmcia_info,
2840 .name = "mice",
2841 .args_type = "",
2842 .params = "",
2843 .help = "show which guest mouse is receiving events",
2844 .mhandler.info = hmp_info_mice,
2847 .name = "vnc",
2848 .args_type = "",
2849 .params = "",
2850 .help = "show the vnc server status",
2851 .mhandler.info = hmp_info_vnc,
2853 #if defined(CONFIG_SPICE)
2855 .name = "spice",
2856 .args_type = "",
2857 .params = "",
2858 .help = "show the spice server status",
2859 .mhandler.info = hmp_info_spice,
2861 #endif
2863 .name = "name",
2864 .args_type = "",
2865 .params = "",
2866 .help = "show the current VM name",
2867 .mhandler.info = hmp_info_name,
2870 .name = "uuid",
2871 .args_type = "",
2872 .params = "",
2873 .help = "show the current VM UUID",
2874 .mhandler.info = hmp_info_uuid,
2876 #if defined(TARGET_PPC)
2878 .name = "cpustats",
2879 .args_type = "",
2880 .params = "",
2881 .help = "show CPU statistics",
2882 .mhandler.info = do_info_cpu_stats,
2884 #endif
2885 #if defined(CONFIG_SLIRP)
2887 .name = "usernet",
2888 .args_type = "",
2889 .params = "",
2890 .help = "show user network stack connection states",
2891 .mhandler.info = do_info_usernet,
2893 #endif
2895 .name = "migrate",
2896 .args_type = "",
2897 .params = "",
2898 .help = "show migration status",
2899 .mhandler.info = hmp_info_migrate,
2902 .name = "balloon",
2903 .args_type = "",
2904 .params = "",
2905 .help = "show balloon information",
2906 .mhandler.info = hmp_info_balloon,
2909 .name = "qtree",
2910 .args_type = "",
2911 .params = "",
2912 .help = "show device tree",
2913 .mhandler.info = do_info_qtree,
2916 .name = "qdm",
2917 .args_type = "",
2918 .params = "",
2919 .help = "show qdev device model list",
2920 .mhandler.info = do_info_qdm,
2923 .name = "roms",
2924 .args_type = "",
2925 .params = "",
2926 .help = "show roms",
2927 .mhandler.info = do_info_roms,
2929 #if defined(CONFIG_TRACE_SIMPLE)
2931 .name = "trace",
2932 .args_type = "",
2933 .params = "",
2934 .help = "show current contents of trace buffer",
2935 .mhandler.info = do_info_trace,
2937 #endif
2939 .name = "trace-events",
2940 .args_type = "",
2941 .params = "",
2942 .help = "show available trace-events & their state",
2943 .mhandler.info = do_trace_print_events,
2946 .name = NULL,
2950 static const mon_cmd_t qmp_cmds[] = {
2951 #include "qmp-commands-old.h"
2952 { /* NULL */ },
2955 static const mon_cmd_t qmp_query_cmds[] = {
2956 { /* NULL */ },
2959 /*******************************************************************/
2961 static const char *pch;
2962 static jmp_buf expr_env;
2964 #define MD_TLONG 0
2965 #define MD_I32 1
2967 typedef struct MonitorDef {
2968 const char *name;
2969 int offset;
2970 target_long (*get_value)(const struct MonitorDef *md, int val);
2971 int type;
2972 } MonitorDef;
2974 #if defined(TARGET_I386)
2975 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
2977 CPUState *env = mon_get_cpu();
2978 return env->eip + env->segs[R_CS].base;
2980 #endif
2982 #if defined(TARGET_PPC)
2983 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
2985 CPUState *env = mon_get_cpu();
2986 unsigned int u;
2987 int i;
2989 u = 0;
2990 for (i = 0; i < 8; i++)
2991 u |= env->crf[i] << (32 - (4 * i));
2993 return u;
2996 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
2998 CPUState *env = mon_get_cpu();
2999 return env->msr;
3002 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
3004 CPUState *env = mon_get_cpu();
3005 return env->xer;
3008 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
3010 CPUState *env = mon_get_cpu();
3011 return cpu_ppc_load_decr(env);
3014 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
3016 CPUState *env = mon_get_cpu();
3017 return cpu_ppc_load_tbu(env);
3020 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
3022 CPUState *env = mon_get_cpu();
3023 return cpu_ppc_load_tbl(env);
3025 #endif
3027 #if defined(TARGET_SPARC)
3028 #ifndef TARGET_SPARC64
3029 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
3031 CPUState *env = mon_get_cpu();
3033 return cpu_get_psr(env);
3035 #endif
3037 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
3039 CPUState *env = mon_get_cpu();
3040 return env->regwptr[val];
3042 #endif
3044 static const MonitorDef monitor_defs[] = {
3045 #ifdef TARGET_I386
3047 #define SEG(name, seg) \
3048 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
3049 { name ".base", offsetof(CPUState, segs[seg].base) },\
3050 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
3052 { "eax", offsetof(CPUState, regs[0]) },
3053 { "ecx", offsetof(CPUState, regs[1]) },
3054 { "edx", offsetof(CPUState, regs[2]) },
3055 { "ebx", offsetof(CPUState, regs[3]) },
3056 { "esp|sp", offsetof(CPUState, regs[4]) },
3057 { "ebp|fp", offsetof(CPUState, regs[5]) },
3058 { "esi", offsetof(CPUState, regs[6]) },
3059 { "edi", offsetof(CPUState, regs[7]) },
3060 #ifdef TARGET_X86_64
3061 { "r8", offsetof(CPUState, regs[8]) },
3062 { "r9", offsetof(CPUState, regs[9]) },
3063 { "r10", offsetof(CPUState, regs[10]) },
3064 { "r11", offsetof(CPUState, regs[11]) },
3065 { "r12", offsetof(CPUState, regs[12]) },
3066 { "r13", offsetof(CPUState, regs[13]) },
3067 { "r14", offsetof(CPUState, regs[14]) },
3068 { "r15", offsetof(CPUState, regs[15]) },
3069 #endif
3070 { "eflags", offsetof(CPUState, eflags) },
3071 { "eip", offsetof(CPUState, eip) },
3072 SEG("cs", R_CS)
3073 SEG("ds", R_DS)
3074 SEG("es", R_ES)
3075 SEG("ss", R_SS)
3076 SEG("fs", R_FS)
3077 SEG("gs", R_GS)
3078 { "pc", 0, monitor_get_pc, },
3079 #elif defined(TARGET_PPC)
3080 /* General purpose registers */
3081 { "r0", offsetof(CPUState, gpr[0]) },
3082 { "r1", offsetof(CPUState, gpr[1]) },
3083 { "r2", offsetof(CPUState, gpr[2]) },
3084 { "r3", offsetof(CPUState, gpr[3]) },
3085 { "r4", offsetof(CPUState, gpr[4]) },
3086 { "r5", offsetof(CPUState, gpr[5]) },
3087 { "r6", offsetof(CPUState, gpr[6]) },
3088 { "r7", offsetof(CPUState, gpr[7]) },
3089 { "r8", offsetof(CPUState, gpr[8]) },
3090 { "r9", offsetof(CPUState, gpr[9]) },
3091 { "r10", offsetof(CPUState, gpr[10]) },
3092 { "r11", offsetof(CPUState, gpr[11]) },
3093 { "r12", offsetof(CPUState, gpr[12]) },
3094 { "r13", offsetof(CPUState, gpr[13]) },
3095 { "r14", offsetof(CPUState, gpr[14]) },
3096 { "r15", offsetof(CPUState, gpr[15]) },
3097 { "r16", offsetof(CPUState, gpr[16]) },
3098 { "r17", offsetof(CPUState, gpr[17]) },
3099 { "r18", offsetof(CPUState, gpr[18]) },
3100 { "r19", offsetof(CPUState, gpr[19]) },
3101 { "r20", offsetof(CPUState, gpr[20]) },
3102 { "r21", offsetof(CPUState, gpr[21]) },
3103 { "r22", offsetof(CPUState, gpr[22]) },
3104 { "r23", offsetof(CPUState, gpr[23]) },
3105 { "r24", offsetof(CPUState, gpr[24]) },
3106 { "r25", offsetof(CPUState, gpr[25]) },
3107 { "r26", offsetof(CPUState, gpr[26]) },
3108 { "r27", offsetof(CPUState, gpr[27]) },
3109 { "r28", offsetof(CPUState, gpr[28]) },
3110 { "r29", offsetof(CPUState, gpr[29]) },
3111 { "r30", offsetof(CPUState, gpr[30]) },
3112 { "r31", offsetof(CPUState, gpr[31]) },
3113 /* Floating point registers */
3114 { "f0", offsetof(CPUState, fpr[0]) },
3115 { "f1", offsetof(CPUState, fpr[1]) },
3116 { "f2", offsetof(CPUState, fpr[2]) },
3117 { "f3", offsetof(CPUState, fpr[3]) },
3118 { "f4", offsetof(CPUState, fpr[4]) },
3119 { "f5", offsetof(CPUState, fpr[5]) },
3120 { "f6", offsetof(CPUState, fpr[6]) },
3121 { "f7", offsetof(CPUState, fpr[7]) },
3122 { "f8", offsetof(CPUState, fpr[8]) },
3123 { "f9", offsetof(CPUState, fpr[9]) },
3124 { "f10", offsetof(CPUState, fpr[10]) },
3125 { "f11", offsetof(CPUState, fpr[11]) },
3126 { "f12", offsetof(CPUState, fpr[12]) },
3127 { "f13", offsetof(CPUState, fpr[13]) },
3128 { "f14", offsetof(CPUState, fpr[14]) },
3129 { "f15", offsetof(CPUState, fpr[15]) },
3130 { "f16", offsetof(CPUState, fpr[16]) },
3131 { "f17", offsetof(CPUState, fpr[17]) },
3132 { "f18", offsetof(CPUState, fpr[18]) },
3133 { "f19", offsetof(CPUState, fpr[19]) },
3134 { "f20", offsetof(CPUState, fpr[20]) },
3135 { "f21", offsetof(CPUState, fpr[21]) },
3136 { "f22", offsetof(CPUState, fpr[22]) },
3137 { "f23", offsetof(CPUState, fpr[23]) },
3138 { "f24", offsetof(CPUState, fpr[24]) },
3139 { "f25", offsetof(CPUState, fpr[25]) },
3140 { "f26", offsetof(CPUState, fpr[26]) },
3141 { "f27", offsetof(CPUState, fpr[27]) },
3142 { "f28", offsetof(CPUState, fpr[28]) },
3143 { "f29", offsetof(CPUState, fpr[29]) },
3144 { "f30", offsetof(CPUState, fpr[30]) },
3145 { "f31", offsetof(CPUState, fpr[31]) },
3146 { "fpscr", offsetof(CPUState, fpscr) },
3147 /* Next instruction pointer */
3148 { "nip|pc", offsetof(CPUState, nip) },
3149 { "lr", offsetof(CPUState, lr) },
3150 { "ctr", offsetof(CPUState, ctr) },
3151 { "decr", 0, &monitor_get_decr, },
3152 { "ccr", 0, &monitor_get_ccr, },
3153 /* Machine state register */
3154 { "msr", 0, &monitor_get_msr, },
3155 { "xer", 0, &monitor_get_xer, },
3156 { "tbu", 0, &monitor_get_tbu, },
3157 { "tbl", 0, &monitor_get_tbl, },
3158 #if defined(TARGET_PPC64)
3159 /* Address space register */
3160 { "asr", offsetof(CPUState, asr) },
3161 #endif
3162 /* Segment registers */
3163 { "sdr1", offsetof(CPUState, spr[SPR_SDR1]) },
3164 { "sr0", offsetof(CPUState, sr[0]) },
3165 { "sr1", offsetof(CPUState, sr[1]) },
3166 { "sr2", offsetof(CPUState, sr[2]) },
3167 { "sr3", offsetof(CPUState, sr[3]) },
3168 { "sr4", offsetof(CPUState, sr[4]) },
3169 { "sr5", offsetof(CPUState, sr[5]) },
3170 { "sr6", offsetof(CPUState, sr[6]) },
3171 { "sr7", offsetof(CPUState, sr[7]) },
3172 { "sr8", offsetof(CPUState, sr[8]) },
3173 { "sr9", offsetof(CPUState, sr[9]) },
3174 { "sr10", offsetof(CPUState, sr[10]) },
3175 { "sr11", offsetof(CPUState, sr[11]) },
3176 { "sr12", offsetof(CPUState, sr[12]) },
3177 { "sr13", offsetof(CPUState, sr[13]) },
3178 { "sr14", offsetof(CPUState, sr[14]) },
3179 { "sr15", offsetof(CPUState, sr[15]) },
3180 /* Too lazy to put BATs... */
3181 { "pvr", offsetof(CPUState, spr[SPR_PVR]) },
3183 { "srr0", offsetof(CPUState, spr[SPR_SRR0]) },
3184 { "srr1", offsetof(CPUState, spr[SPR_SRR1]) },
3185 { "sprg0", offsetof(CPUState, spr[SPR_SPRG0]) },
3186 { "sprg1", offsetof(CPUState, spr[SPR_SPRG1]) },
3187 { "sprg2", offsetof(CPUState, spr[SPR_SPRG2]) },
3188 { "sprg3", offsetof(CPUState, spr[SPR_SPRG3]) },
3189 { "sprg4", offsetof(CPUState, spr[SPR_SPRG4]) },
3190 { "sprg5", offsetof(CPUState, spr[SPR_SPRG5]) },
3191 { "sprg6", offsetof(CPUState, spr[SPR_SPRG6]) },
3192 { "sprg7", offsetof(CPUState, spr[SPR_SPRG7]) },
3193 { "pid", offsetof(CPUState, spr[SPR_BOOKE_PID]) },
3194 { "csrr0", offsetof(CPUState, spr[SPR_BOOKE_CSRR0]) },
3195 { "csrr1", offsetof(CPUState, spr[SPR_BOOKE_CSRR1]) },
3196 { "esr", offsetof(CPUState, spr[SPR_BOOKE_ESR]) },
3197 { "dear", offsetof(CPUState, spr[SPR_BOOKE_DEAR]) },
3198 { "mcsr", offsetof(CPUState, spr[SPR_BOOKE_MCSR]) },
3199 { "tsr", offsetof(CPUState, spr[SPR_BOOKE_TSR]) },
3200 { "tcr", offsetof(CPUState, spr[SPR_BOOKE_TCR]) },
3201 { "vrsave", offsetof(CPUState, spr[SPR_VRSAVE]) },
3202 { "pir", offsetof(CPUState, spr[SPR_BOOKE_PIR]) },
3203 { "mcsrr0", offsetof(CPUState, spr[SPR_BOOKE_MCSRR0]) },
3204 { "mcsrr1", offsetof(CPUState, spr[SPR_BOOKE_MCSRR1]) },
3205 { "decar", offsetof(CPUState, spr[SPR_BOOKE_DECAR]) },
3206 { "ivpr", offsetof(CPUState, spr[SPR_BOOKE_IVPR]) },
3207 { "epcr", offsetof(CPUState, spr[SPR_BOOKE_EPCR]) },
3208 { "sprg8", offsetof(CPUState, spr[SPR_BOOKE_SPRG8]) },
3209 { "ivor0", offsetof(CPUState, spr[SPR_BOOKE_IVOR0]) },
3210 { "ivor1", offsetof(CPUState, spr[SPR_BOOKE_IVOR1]) },
3211 { "ivor2", offsetof(CPUState, spr[SPR_BOOKE_IVOR2]) },
3212 { "ivor3", offsetof(CPUState, spr[SPR_BOOKE_IVOR3]) },
3213 { "ivor4", offsetof(CPUState, spr[SPR_BOOKE_IVOR4]) },
3214 { "ivor5", offsetof(CPUState, spr[SPR_BOOKE_IVOR5]) },
3215 { "ivor6", offsetof(CPUState, spr[SPR_BOOKE_IVOR6]) },
3216 { "ivor7", offsetof(CPUState, spr[SPR_BOOKE_IVOR7]) },
3217 { "ivor8", offsetof(CPUState, spr[SPR_BOOKE_IVOR8]) },
3218 { "ivor9", offsetof(CPUState, spr[SPR_BOOKE_IVOR9]) },
3219 { "ivor10", offsetof(CPUState, spr[SPR_BOOKE_IVOR10]) },
3220 { "ivor11", offsetof(CPUState, spr[SPR_BOOKE_IVOR11]) },
3221 { "ivor12", offsetof(CPUState, spr[SPR_BOOKE_IVOR12]) },
3222 { "ivor13", offsetof(CPUState, spr[SPR_BOOKE_IVOR13]) },
3223 { "ivor14", offsetof(CPUState, spr[SPR_BOOKE_IVOR14]) },
3224 { "ivor15", offsetof(CPUState, spr[SPR_BOOKE_IVOR15]) },
3225 { "ivor32", offsetof(CPUState, spr[SPR_BOOKE_IVOR32]) },
3226 { "ivor33", offsetof(CPUState, spr[SPR_BOOKE_IVOR33]) },
3227 { "ivor34", offsetof(CPUState, spr[SPR_BOOKE_IVOR34]) },
3228 { "ivor35", offsetof(CPUState, spr[SPR_BOOKE_IVOR35]) },
3229 { "ivor36", offsetof(CPUState, spr[SPR_BOOKE_IVOR36]) },
3230 { "ivor37", offsetof(CPUState, spr[SPR_BOOKE_IVOR37]) },
3231 { "mas0", offsetof(CPUState, spr[SPR_BOOKE_MAS0]) },
3232 { "mas1", offsetof(CPUState, spr[SPR_BOOKE_MAS1]) },
3233 { "mas2", offsetof(CPUState, spr[SPR_BOOKE_MAS2]) },
3234 { "mas3", offsetof(CPUState, spr[SPR_BOOKE_MAS3]) },
3235 { "mas4", offsetof(CPUState, spr[SPR_BOOKE_MAS4]) },
3236 { "mas6", offsetof(CPUState, spr[SPR_BOOKE_MAS6]) },
3237 { "mas7", offsetof(CPUState, spr[SPR_BOOKE_MAS7]) },
3238 { "mmucfg", offsetof(CPUState, spr[SPR_MMUCFG]) },
3239 { "tlb0cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB0CFG]) },
3240 { "tlb1cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB1CFG]) },
3241 { "epr", offsetof(CPUState, spr[SPR_BOOKE_EPR]) },
3242 { "eplc", offsetof(CPUState, spr[SPR_BOOKE_EPLC]) },
3243 { "epsc", offsetof(CPUState, spr[SPR_BOOKE_EPSC]) },
3244 { "svr", offsetof(CPUState, spr[SPR_E500_SVR]) },
3245 { "mcar", offsetof(CPUState, spr[SPR_Exxx_MCAR]) },
3246 { "pid1", offsetof(CPUState, spr[SPR_BOOKE_PID1]) },
3247 { "pid2", offsetof(CPUState, spr[SPR_BOOKE_PID2]) },
3248 { "hid0", offsetof(CPUState, spr[SPR_HID0]) },
3250 #elif defined(TARGET_SPARC)
3251 { "g0", offsetof(CPUState, gregs[0]) },
3252 { "g1", offsetof(CPUState, gregs[1]) },
3253 { "g2", offsetof(CPUState, gregs[2]) },
3254 { "g3", offsetof(CPUState, gregs[3]) },
3255 { "g4", offsetof(CPUState, gregs[4]) },
3256 { "g5", offsetof(CPUState, gregs[5]) },
3257 { "g6", offsetof(CPUState, gregs[6]) },
3258 { "g7", offsetof(CPUState, gregs[7]) },
3259 { "o0", 0, monitor_get_reg },
3260 { "o1", 1, monitor_get_reg },
3261 { "o2", 2, monitor_get_reg },
3262 { "o3", 3, monitor_get_reg },
3263 { "o4", 4, monitor_get_reg },
3264 { "o5", 5, monitor_get_reg },
3265 { "o6", 6, monitor_get_reg },
3266 { "o7", 7, monitor_get_reg },
3267 { "l0", 8, monitor_get_reg },
3268 { "l1", 9, monitor_get_reg },
3269 { "l2", 10, monitor_get_reg },
3270 { "l3", 11, monitor_get_reg },
3271 { "l4", 12, monitor_get_reg },
3272 { "l5", 13, monitor_get_reg },
3273 { "l6", 14, monitor_get_reg },
3274 { "l7", 15, monitor_get_reg },
3275 { "i0", 16, monitor_get_reg },
3276 { "i1", 17, monitor_get_reg },
3277 { "i2", 18, monitor_get_reg },
3278 { "i3", 19, monitor_get_reg },
3279 { "i4", 20, monitor_get_reg },
3280 { "i5", 21, monitor_get_reg },
3281 { "i6", 22, monitor_get_reg },
3282 { "i7", 23, monitor_get_reg },
3283 { "pc", offsetof(CPUState, pc) },
3284 { "npc", offsetof(CPUState, npc) },
3285 { "y", offsetof(CPUState, y) },
3286 #ifndef TARGET_SPARC64
3287 { "psr", 0, &monitor_get_psr, },
3288 { "wim", offsetof(CPUState, wim) },
3289 #endif
3290 { "tbr", offsetof(CPUState, tbr) },
3291 { "fsr", offsetof(CPUState, fsr) },
3292 { "f0", offsetof(CPUState, fpr[0]) },
3293 { "f1", offsetof(CPUState, fpr[1]) },
3294 { "f2", offsetof(CPUState, fpr[2]) },
3295 { "f3", offsetof(CPUState, fpr[3]) },
3296 { "f4", offsetof(CPUState, fpr[4]) },
3297 { "f5", offsetof(CPUState, fpr[5]) },
3298 { "f6", offsetof(CPUState, fpr[6]) },
3299 { "f7", offsetof(CPUState, fpr[7]) },
3300 { "f8", offsetof(CPUState, fpr[8]) },
3301 { "f9", offsetof(CPUState, fpr[9]) },
3302 { "f10", offsetof(CPUState, fpr[10]) },
3303 { "f11", offsetof(CPUState, fpr[11]) },
3304 { "f12", offsetof(CPUState, fpr[12]) },
3305 { "f13", offsetof(CPUState, fpr[13]) },
3306 { "f14", offsetof(CPUState, fpr[14]) },
3307 { "f15", offsetof(CPUState, fpr[15]) },
3308 { "f16", offsetof(CPUState, fpr[16]) },
3309 { "f17", offsetof(CPUState, fpr[17]) },
3310 { "f18", offsetof(CPUState, fpr[18]) },
3311 { "f19", offsetof(CPUState, fpr[19]) },
3312 { "f20", offsetof(CPUState, fpr[20]) },
3313 { "f21", offsetof(CPUState, fpr[21]) },
3314 { "f22", offsetof(CPUState, fpr[22]) },
3315 { "f23", offsetof(CPUState, fpr[23]) },
3316 { "f24", offsetof(CPUState, fpr[24]) },
3317 { "f25", offsetof(CPUState, fpr[25]) },
3318 { "f26", offsetof(CPUState, fpr[26]) },
3319 { "f27", offsetof(CPUState, fpr[27]) },
3320 { "f28", offsetof(CPUState, fpr[28]) },
3321 { "f29", offsetof(CPUState, fpr[29]) },
3322 { "f30", offsetof(CPUState, fpr[30]) },
3323 { "f31", offsetof(CPUState, fpr[31]) },
3324 #ifdef TARGET_SPARC64
3325 { "f32", offsetof(CPUState, fpr[32]) },
3326 { "f34", offsetof(CPUState, fpr[34]) },
3327 { "f36", offsetof(CPUState, fpr[36]) },
3328 { "f38", offsetof(CPUState, fpr[38]) },
3329 { "f40", offsetof(CPUState, fpr[40]) },
3330 { "f42", offsetof(CPUState, fpr[42]) },
3331 { "f44", offsetof(CPUState, fpr[44]) },
3332 { "f46", offsetof(CPUState, fpr[46]) },
3333 { "f48", offsetof(CPUState, fpr[48]) },
3334 { "f50", offsetof(CPUState, fpr[50]) },
3335 { "f52", offsetof(CPUState, fpr[52]) },
3336 { "f54", offsetof(CPUState, fpr[54]) },
3337 { "f56", offsetof(CPUState, fpr[56]) },
3338 { "f58", offsetof(CPUState, fpr[58]) },
3339 { "f60", offsetof(CPUState, fpr[60]) },
3340 { "f62", offsetof(CPUState, fpr[62]) },
3341 { "asi", offsetof(CPUState, asi) },
3342 { "pstate", offsetof(CPUState, pstate) },
3343 { "cansave", offsetof(CPUState, cansave) },
3344 { "canrestore", offsetof(CPUState, canrestore) },
3345 { "otherwin", offsetof(CPUState, otherwin) },
3346 { "wstate", offsetof(CPUState, wstate) },
3347 { "cleanwin", offsetof(CPUState, cleanwin) },
3348 { "fprs", offsetof(CPUState, fprs) },
3349 #endif
3350 #endif
3351 { NULL },
3354 static void expr_error(Monitor *mon, const char *msg)
3356 monitor_printf(mon, "%s\n", msg);
3357 longjmp(expr_env, 1);
3360 /* return 0 if OK, -1 if not found */
3361 static int get_monitor_def(target_long *pval, const char *name)
3363 const MonitorDef *md;
3364 void *ptr;
3366 for(md = monitor_defs; md->name != NULL; md++) {
3367 if (compare_cmd(name, md->name)) {
3368 if (md->get_value) {
3369 *pval = md->get_value(md, md->offset);
3370 } else {
3371 CPUState *env = mon_get_cpu();
3372 ptr = (uint8_t *)env + md->offset;
3373 switch(md->type) {
3374 case MD_I32:
3375 *pval = *(int32_t *)ptr;
3376 break;
3377 case MD_TLONG:
3378 *pval = *(target_long *)ptr;
3379 break;
3380 default:
3381 *pval = 0;
3382 break;
3385 return 0;
3388 return -1;
3391 static void next(void)
3393 if (*pch != '\0') {
3394 pch++;
3395 while (qemu_isspace(*pch))
3396 pch++;
3400 static int64_t expr_sum(Monitor *mon);
3402 static int64_t expr_unary(Monitor *mon)
3404 int64_t n;
3405 char *p;
3406 int ret;
3408 switch(*pch) {
3409 case '+':
3410 next();
3411 n = expr_unary(mon);
3412 break;
3413 case '-':
3414 next();
3415 n = -expr_unary(mon);
3416 break;
3417 case '~':
3418 next();
3419 n = ~expr_unary(mon);
3420 break;
3421 case '(':
3422 next();
3423 n = expr_sum(mon);
3424 if (*pch != ')') {
3425 expr_error(mon, "')' expected");
3427 next();
3428 break;
3429 case '\'':
3430 pch++;
3431 if (*pch == '\0')
3432 expr_error(mon, "character constant expected");
3433 n = *pch;
3434 pch++;
3435 if (*pch != '\'')
3436 expr_error(mon, "missing terminating \' character");
3437 next();
3438 break;
3439 case '$':
3441 char buf[128], *q;
3442 target_long reg=0;
3444 pch++;
3445 q = buf;
3446 while ((*pch >= 'a' && *pch <= 'z') ||
3447 (*pch >= 'A' && *pch <= 'Z') ||
3448 (*pch >= '0' && *pch <= '9') ||
3449 *pch == '_' || *pch == '.') {
3450 if ((q - buf) < sizeof(buf) - 1)
3451 *q++ = *pch;
3452 pch++;
3454 while (qemu_isspace(*pch))
3455 pch++;
3456 *q = 0;
3457 ret = get_monitor_def(&reg, buf);
3458 if (ret < 0)
3459 expr_error(mon, "unknown register");
3460 n = reg;
3462 break;
3463 case '\0':
3464 expr_error(mon, "unexpected end of expression");
3465 n = 0;
3466 break;
3467 default:
3468 #if TARGET_PHYS_ADDR_BITS > 32
3469 n = strtoull(pch, &p, 0);
3470 #else
3471 n = strtoul(pch, &p, 0);
3472 #endif
3473 if (pch == p) {
3474 expr_error(mon, "invalid char in expression");
3476 pch = p;
3477 while (qemu_isspace(*pch))
3478 pch++;
3479 break;
3481 return n;
3485 static int64_t expr_prod(Monitor *mon)
3487 int64_t val, val2;
3488 int op;
3490 val = expr_unary(mon);
3491 for(;;) {
3492 op = *pch;
3493 if (op != '*' && op != '/' && op != '%')
3494 break;
3495 next();
3496 val2 = expr_unary(mon);
3497 switch(op) {
3498 default:
3499 case '*':
3500 val *= val2;
3501 break;
3502 case '/':
3503 case '%':
3504 if (val2 == 0)
3505 expr_error(mon, "division by zero");
3506 if (op == '/')
3507 val /= val2;
3508 else
3509 val %= val2;
3510 break;
3513 return val;
3516 static int64_t expr_logic(Monitor *mon)
3518 int64_t val, val2;
3519 int op;
3521 val = expr_prod(mon);
3522 for(;;) {
3523 op = *pch;
3524 if (op != '&' && op != '|' && op != '^')
3525 break;
3526 next();
3527 val2 = expr_prod(mon);
3528 switch(op) {
3529 default:
3530 case '&':
3531 val &= val2;
3532 break;
3533 case '|':
3534 val |= val2;
3535 break;
3536 case '^':
3537 val ^= val2;
3538 break;
3541 return val;
3544 static int64_t expr_sum(Monitor *mon)
3546 int64_t val, val2;
3547 int op;
3549 val = expr_logic(mon);
3550 for(;;) {
3551 op = *pch;
3552 if (op != '+' && op != '-')
3553 break;
3554 next();
3555 val2 = expr_logic(mon);
3556 if (op == '+')
3557 val += val2;
3558 else
3559 val -= val2;
3561 return val;
3564 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
3566 pch = *pp;
3567 if (setjmp(expr_env)) {
3568 *pp = pch;
3569 return -1;
3571 while (qemu_isspace(*pch))
3572 pch++;
3573 *pval = expr_sum(mon);
3574 *pp = pch;
3575 return 0;
3578 static int get_double(Monitor *mon, double *pval, const char **pp)
3580 const char *p = *pp;
3581 char *tailp;
3582 double d;
3584 d = strtod(p, &tailp);
3585 if (tailp == p) {
3586 monitor_printf(mon, "Number expected\n");
3587 return -1;
3589 if (d != d || d - d != 0) {
3590 /* NaN or infinity */
3591 monitor_printf(mon, "Bad number\n");
3592 return -1;
3594 *pval = d;
3595 *pp = tailp;
3596 return 0;
3599 static int get_str(char *buf, int buf_size, const char **pp)
3601 const char *p;
3602 char *q;
3603 int c;
3605 q = buf;
3606 p = *pp;
3607 while (qemu_isspace(*p))
3608 p++;
3609 if (*p == '\0') {
3610 fail:
3611 *q = '\0';
3612 *pp = p;
3613 return -1;
3615 if (*p == '\"') {
3616 p++;
3617 while (*p != '\0' && *p != '\"') {
3618 if (*p == '\\') {
3619 p++;
3620 c = *p++;
3621 switch(c) {
3622 case 'n':
3623 c = '\n';
3624 break;
3625 case 'r':
3626 c = '\r';
3627 break;
3628 case '\\':
3629 case '\'':
3630 case '\"':
3631 break;
3632 default:
3633 qemu_printf("unsupported escape code: '\\%c'\n", c);
3634 goto fail;
3636 if ((q - buf) < buf_size - 1) {
3637 *q++ = c;
3639 } else {
3640 if ((q - buf) < buf_size - 1) {
3641 *q++ = *p;
3643 p++;
3646 if (*p != '\"') {
3647 qemu_printf("unterminated string\n");
3648 goto fail;
3650 p++;
3651 } else {
3652 while (*p != '\0' && !qemu_isspace(*p)) {
3653 if ((q - buf) < buf_size - 1) {
3654 *q++ = *p;
3656 p++;
3659 *q = '\0';
3660 *pp = p;
3661 return 0;
3665 * Store the command-name in cmdname, and return a pointer to
3666 * the remaining of the command string.
3668 static const char *get_command_name(const char *cmdline,
3669 char *cmdname, size_t nlen)
3671 size_t len;
3672 const char *p, *pstart;
3674 p = cmdline;
3675 while (qemu_isspace(*p))
3676 p++;
3677 if (*p == '\0')
3678 return NULL;
3679 pstart = p;
3680 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3681 p++;
3682 len = p - pstart;
3683 if (len > nlen - 1)
3684 len = nlen - 1;
3685 memcpy(cmdname, pstart, len);
3686 cmdname[len] = '\0';
3687 return p;
3691 * Read key of 'type' into 'key' and return the current
3692 * 'type' pointer.
3694 static char *key_get_info(const char *type, char **key)
3696 size_t len;
3697 char *p, *str;
3699 if (*type == ',')
3700 type++;
3702 p = strchr(type, ':');
3703 if (!p) {
3704 *key = NULL;
3705 return NULL;
3707 len = p - type;
3709 str = g_malloc(len + 1);
3710 memcpy(str, type, len);
3711 str[len] = '\0';
3713 *key = str;
3714 return ++p;
3717 static int default_fmt_format = 'x';
3718 static int default_fmt_size = 4;
3720 #define MAX_ARGS 16
3722 static int is_valid_option(const char *c, const char *typestr)
3724 char option[3];
3726 option[0] = '-';
3727 option[1] = *c;
3728 option[2] = '\0';
3730 typestr = strstr(typestr, option);
3731 return (typestr != NULL);
3734 static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3735 const char *cmdname)
3737 const mon_cmd_t *cmd;
3739 for (cmd = disp_table; cmd->name != NULL; cmd++) {
3740 if (compare_cmd(cmdname, cmd->name)) {
3741 return cmd;
3745 return NULL;
3748 static const mon_cmd_t *monitor_find_command(const char *cmdname)
3750 return search_dispatch_table(mon_cmds, cmdname);
3753 static const mon_cmd_t *qmp_find_query_cmd(const char *info_item)
3755 return search_dispatch_table(qmp_query_cmds, info_item);
3758 static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3760 return search_dispatch_table(qmp_cmds, cmdname);
3763 static const mon_cmd_t *monitor_parse_command(Monitor *mon,
3764 const char *cmdline,
3765 QDict *qdict)
3767 const char *p, *typestr;
3768 int c;
3769 const mon_cmd_t *cmd;
3770 char cmdname[256];
3771 char buf[1024];
3772 char *key;
3774 #ifdef DEBUG
3775 monitor_printf(mon, "command='%s'\n", cmdline);
3776 #endif
3778 /* extract the command name */
3779 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3780 if (!p)
3781 return NULL;
3783 cmd = monitor_find_command(cmdname);
3784 if (!cmd) {
3785 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
3786 return NULL;
3789 /* parse the parameters */
3790 typestr = cmd->args_type;
3791 for(;;) {
3792 typestr = key_get_info(typestr, &key);
3793 if (!typestr)
3794 break;
3795 c = *typestr;
3796 typestr++;
3797 switch(c) {
3798 case 'F':
3799 case 'B':
3800 case 's':
3802 int ret;
3804 while (qemu_isspace(*p))
3805 p++;
3806 if (*typestr == '?') {
3807 typestr++;
3808 if (*p == '\0') {
3809 /* no optional string: NULL argument */
3810 break;
3813 ret = get_str(buf, sizeof(buf), &p);
3814 if (ret < 0) {
3815 switch(c) {
3816 case 'F':
3817 monitor_printf(mon, "%s: filename expected\n",
3818 cmdname);
3819 break;
3820 case 'B':
3821 monitor_printf(mon, "%s: block device name expected\n",
3822 cmdname);
3823 break;
3824 default:
3825 monitor_printf(mon, "%s: string expected\n", cmdname);
3826 break;
3828 goto fail;
3830 qdict_put(qdict, key, qstring_from_str(buf));
3832 break;
3833 case 'O':
3835 QemuOptsList *opts_list;
3836 QemuOpts *opts;
3838 opts_list = qemu_find_opts(key);
3839 if (!opts_list || opts_list->desc->name) {
3840 goto bad_type;
3842 while (qemu_isspace(*p)) {
3843 p++;
3845 if (!*p)
3846 break;
3847 if (get_str(buf, sizeof(buf), &p) < 0) {
3848 goto fail;
3850 opts = qemu_opts_parse(opts_list, buf, 1);
3851 if (!opts) {
3852 goto fail;
3854 qemu_opts_to_qdict(opts, qdict);
3855 qemu_opts_del(opts);
3857 break;
3858 case '/':
3860 int count, format, size;
3862 while (qemu_isspace(*p))
3863 p++;
3864 if (*p == '/') {
3865 /* format found */
3866 p++;
3867 count = 1;
3868 if (qemu_isdigit(*p)) {
3869 count = 0;
3870 while (qemu_isdigit(*p)) {
3871 count = count * 10 + (*p - '0');
3872 p++;
3875 size = -1;
3876 format = -1;
3877 for(;;) {
3878 switch(*p) {
3879 case 'o':
3880 case 'd':
3881 case 'u':
3882 case 'x':
3883 case 'i':
3884 case 'c':
3885 format = *p++;
3886 break;
3887 case 'b':
3888 size = 1;
3889 p++;
3890 break;
3891 case 'h':
3892 size = 2;
3893 p++;
3894 break;
3895 case 'w':
3896 size = 4;
3897 p++;
3898 break;
3899 case 'g':
3900 case 'L':
3901 size = 8;
3902 p++;
3903 break;
3904 default:
3905 goto next;
3908 next:
3909 if (*p != '\0' && !qemu_isspace(*p)) {
3910 monitor_printf(mon, "invalid char in format: '%c'\n",
3911 *p);
3912 goto fail;
3914 if (format < 0)
3915 format = default_fmt_format;
3916 if (format != 'i') {
3917 /* for 'i', not specifying a size gives -1 as size */
3918 if (size < 0)
3919 size = default_fmt_size;
3920 default_fmt_size = size;
3922 default_fmt_format = format;
3923 } else {
3924 count = 1;
3925 format = default_fmt_format;
3926 if (format != 'i') {
3927 size = default_fmt_size;
3928 } else {
3929 size = -1;
3932 qdict_put(qdict, "count", qint_from_int(count));
3933 qdict_put(qdict, "format", qint_from_int(format));
3934 qdict_put(qdict, "size", qint_from_int(size));
3936 break;
3937 case 'i':
3938 case 'l':
3939 case 'M':
3941 int64_t val;
3943 while (qemu_isspace(*p))
3944 p++;
3945 if (*typestr == '?' || *typestr == '.') {
3946 if (*typestr == '?') {
3947 if (*p == '\0') {
3948 typestr++;
3949 break;
3951 } else {
3952 if (*p == '.') {
3953 p++;
3954 while (qemu_isspace(*p))
3955 p++;
3956 } else {
3957 typestr++;
3958 break;
3961 typestr++;
3963 if (get_expr(mon, &val, &p))
3964 goto fail;
3965 /* Check if 'i' is greater than 32-bit */
3966 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3967 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3968 monitor_printf(mon, "integer is for 32-bit values\n");
3969 goto fail;
3970 } else if (c == 'M') {
3971 val <<= 20;
3973 qdict_put(qdict, key, qint_from_int(val));
3975 break;
3976 case 'o':
3978 int64_t val;
3979 char *end;
3981 while (qemu_isspace(*p)) {
3982 p++;
3984 if (*typestr == '?') {
3985 typestr++;
3986 if (*p == '\0') {
3987 break;
3990 val = strtosz(p, &end);
3991 if (val < 0) {
3992 monitor_printf(mon, "invalid size\n");
3993 goto fail;
3995 qdict_put(qdict, key, qint_from_int(val));
3996 p = end;
3998 break;
3999 case 'T':
4001 double val;
4003 while (qemu_isspace(*p))
4004 p++;
4005 if (*typestr == '?') {
4006 typestr++;
4007 if (*p == '\0') {
4008 break;
4011 if (get_double(mon, &val, &p) < 0) {
4012 goto fail;
4014 if (p[0] && p[1] == 's') {
4015 switch (*p) {
4016 case 'm':
4017 val /= 1e3; p += 2; break;
4018 case 'u':
4019 val /= 1e6; p += 2; break;
4020 case 'n':
4021 val /= 1e9; p += 2; break;
4024 if (*p && !qemu_isspace(*p)) {
4025 monitor_printf(mon, "Unknown unit suffix\n");
4026 goto fail;
4028 qdict_put(qdict, key, qfloat_from_double(val));
4030 break;
4031 case 'b':
4033 const char *beg;
4034 int val;
4036 while (qemu_isspace(*p)) {
4037 p++;
4039 beg = p;
4040 while (qemu_isgraph(*p)) {
4041 p++;
4043 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
4044 val = 1;
4045 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
4046 val = 0;
4047 } else {
4048 monitor_printf(mon, "Expected 'on' or 'off'\n");
4049 goto fail;
4051 qdict_put(qdict, key, qbool_from_int(val));
4053 break;
4054 case '-':
4056 const char *tmp = p;
4057 int skip_key = 0;
4058 /* option */
4060 c = *typestr++;
4061 if (c == '\0')
4062 goto bad_type;
4063 while (qemu_isspace(*p))
4064 p++;
4065 if (*p == '-') {
4066 p++;
4067 if(c != *p) {
4068 if(!is_valid_option(p, typestr)) {
4070 monitor_printf(mon, "%s: unsupported option -%c\n",
4071 cmdname, *p);
4072 goto fail;
4073 } else {
4074 skip_key = 1;
4077 if(skip_key) {
4078 p = tmp;
4079 } else {
4080 /* has option */
4081 p++;
4082 qdict_put(qdict, key, qbool_from_int(1));
4086 break;
4087 default:
4088 bad_type:
4089 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
4090 goto fail;
4092 g_free(key);
4093 key = NULL;
4095 /* check that all arguments were parsed */
4096 while (qemu_isspace(*p))
4097 p++;
4098 if (*p != '\0') {
4099 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
4100 cmdname);
4101 goto fail;
4104 return cmd;
4106 fail:
4107 g_free(key);
4108 return NULL;
4111 void monitor_set_error(Monitor *mon, QError *qerror)
4113 /* report only the first error */
4114 if (!mon->error) {
4115 mon->error = qerror;
4116 } else {
4117 MON_DEBUG("Additional error report at %s:%d\n",
4118 qerror->file, qerror->linenr);
4119 QDECREF(qerror);
4123 static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
4125 if (ret && !monitor_has_error(mon)) {
4127 * If it returns failure, it must have passed on error.
4129 * Action: Report an internal error to the client if in QMP.
4131 qerror_report(QERR_UNDEFINED_ERROR);
4132 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
4133 cmd->name);
4136 #ifdef CONFIG_DEBUG_MONITOR
4137 if (!ret && monitor_has_error(mon)) {
4139 * If it returns success, it must not have passed an error.
4141 * Action: Report the passed error to the client.
4143 MON_DEBUG("command '%s' returned success but passed an error\n",
4144 cmd->name);
4147 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
4149 * Handlers should not call Monitor print functions.
4151 * Action: Ignore them in QMP.
4153 * (XXX: we don't check any 'info' or 'query' command here
4154 * because the user print function _is_ called by do_info(), hence
4155 * we will trigger this check. This problem will go away when we
4156 * make 'query' commands real and kill do_info())
4158 MON_DEBUG("command '%s' called print functions %d time(s)\n",
4159 cmd->name, mon_print_count_get(mon));
4161 #endif
4164 static void handle_user_command(Monitor *mon, const char *cmdline)
4166 QDict *qdict;
4167 const mon_cmd_t *cmd;
4169 qdict = qdict_new();
4171 cmd = monitor_parse_command(mon, cmdline, qdict);
4172 if (!cmd)
4173 goto out;
4175 if (handler_is_async(cmd)) {
4176 user_async_cmd_handler(mon, cmd, qdict);
4177 } else if (handler_is_qobject(cmd)) {
4178 QObject *data = NULL;
4180 /* XXX: ignores the error code */
4181 cmd->mhandler.cmd_new(mon, qdict, &data);
4182 assert(!monitor_has_error(mon));
4183 if (data) {
4184 cmd->user_print(mon, data);
4185 qobject_decref(data);
4187 } else {
4188 cmd->mhandler.cmd(mon, qdict);
4191 out:
4192 QDECREF(qdict);
4195 static void cmd_completion(const char *name, const char *list)
4197 const char *p, *pstart;
4198 char cmd[128];
4199 int len;
4201 p = list;
4202 for(;;) {
4203 pstart = p;
4204 p = strchr(p, '|');
4205 if (!p)
4206 p = pstart + strlen(pstart);
4207 len = p - pstart;
4208 if (len > sizeof(cmd) - 2)
4209 len = sizeof(cmd) - 2;
4210 memcpy(cmd, pstart, len);
4211 cmd[len] = '\0';
4212 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
4213 readline_add_completion(cur_mon->rs, cmd);
4215 if (*p == '\0')
4216 break;
4217 p++;
4221 static void file_completion(const char *input)
4223 DIR *ffs;
4224 struct dirent *d;
4225 char path[1024];
4226 char file[1024], file_prefix[1024];
4227 int input_path_len;
4228 const char *p;
4230 p = strrchr(input, '/');
4231 if (!p) {
4232 input_path_len = 0;
4233 pstrcpy(file_prefix, sizeof(file_prefix), input);
4234 pstrcpy(path, sizeof(path), ".");
4235 } else {
4236 input_path_len = p - input + 1;
4237 memcpy(path, input, input_path_len);
4238 if (input_path_len > sizeof(path) - 1)
4239 input_path_len = sizeof(path) - 1;
4240 path[input_path_len] = '\0';
4241 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4243 #ifdef DEBUG_COMPLETION
4244 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
4245 input, path, file_prefix);
4246 #endif
4247 ffs = opendir(path);
4248 if (!ffs)
4249 return;
4250 for(;;) {
4251 struct stat sb;
4252 d = readdir(ffs);
4253 if (!d)
4254 break;
4256 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4257 continue;
4260 if (strstart(d->d_name, file_prefix, NULL)) {
4261 memcpy(file, input, input_path_len);
4262 if (input_path_len < sizeof(file))
4263 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4264 d->d_name);
4265 /* stat the file to find out if it's a directory.
4266 * In that case add a slash to speed up typing long paths
4268 stat(file, &sb);
4269 if(S_ISDIR(sb.st_mode))
4270 pstrcat(file, sizeof(file), "/");
4271 readline_add_completion(cur_mon->rs, file);
4274 closedir(ffs);
4277 static void block_completion_it(void *opaque, BlockDriverState *bs)
4279 const char *name = bdrv_get_device_name(bs);
4280 const char *input = opaque;
4282 if (input[0] == '\0' ||
4283 !strncmp(name, (char *)input, strlen(input))) {
4284 readline_add_completion(cur_mon->rs, name);
4288 /* NOTE: this parser is an approximate form of the real command parser */
4289 static void parse_cmdline(const char *cmdline,
4290 int *pnb_args, char **args)
4292 const char *p;
4293 int nb_args, ret;
4294 char buf[1024];
4296 p = cmdline;
4297 nb_args = 0;
4298 for(;;) {
4299 while (qemu_isspace(*p))
4300 p++;
4301 if (*p == '\0')
4302 break;
4303 if (nb_args >= MAX_ARGS)
4304 break;
4305 ret = get_str(buf, sizeof(buf), &p);
4306 args[nb_args] = g_strdup(buf);
4307 nb_args++;
4308 if (ret < 0)
4309 break;
4311 *pnb_args = nb_args;
4314 static const char *next_arg_type(const char *typestr)
4316 const char *p = strchr(typestr, ':');
4317 return (p != NULL ? ++p : typestr);
4320 static void monitor_find_completion(const char *cmdline)
4322 const char *cmdname;
4323 char *args[MAX_ARGS];
4324 int nb_args, i, len;
4325 const char *ptype, *str;
4326 const mon_cmd_t *cmd;
4327 const KeyDef *key;
4329 parse_cmdline(cmdline, &nb_args, args);
4330 #ifdef DEBUG_COMPLETION
4331 for(i = 0; i < nb_args; i++) {
4332 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
4334 #endif
4336 /* if the line ends with a space, it means we want to complete the
4337 next arg */
4338 len = strlen(cmdline);
4339 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
4340 if (nb_args >= MAX_ARGS) {
4341 goto cleanup;
4343 args[nb_args++] = g_strdup("");
4345 if (nb_args <= 1) {
4346 /* command completion */
4347 if (nb_args == 0)
4348 cmdname = "";
4349 else
4350 cmdname = args[0];
4351 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
4352 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
4353 cmd_completion(cmdname, cmd->name);
4355 } else {
4356 /* find the command */
4357 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4358 if (compare_cmd(args[0], cmd->name)) {
4359 break;
4362 if (!cmd->name) {
4363 goto cleanup;
4366 ptype = next_arg_type(cmd->args_type);
4367 for(i = 0; i < nb_args - 2; i++) {
4368 if (*ptype != '\0') {
4369 ptype = next_arg_type(ptype);
4370 while (*ptype == '?')
4371 ptype = next_arg_type(ptype);
4374 str = args[nb_args - 1];
4375 if (*ptype == '-' && ptype[1] != '\0') {
4376 ptype = next_arg_type(ptype);
4378 switch(*ptype) {
4379 case 'F':
4380 /* file completion */
4381 readline_set_completion_index(cur_mon->rs, strlen(str));
4382 file_completion(str);
4383 break;
4384 case 'B':
4385 /* block device name completion */
4386 readline_set_completion_index(cur_mon->rs, strlen(str));
4387 bdrv_iterate(block_completion_it, (void *)str);
4388 break;
4389 case 's':
4390 /* XXX: more generic ? */
4391 if (!strcmp(cmd->name, "info")) {
4392 readline_set_completion_index(cur_mon->rs, strlen(str));
4393 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4394 cmd_completion(str, cmd->name);
4396 } else if (!strcmp(cmd->name, "sendkey")) {
4397 char *sep = strrchr(str, '-');
4398 if (sep)
4399 str = sep + 1;
4400 readline_set_completion_index(cur_mon->rs, strlen(str));
4401 for(key = key_defs; key->name != NULL; key++) {
4402 cmd_completion(str, key->name);
4404 } else if (!strcmp(cmd->name, "help|?")) {
4405 readline_set_completion_index(cur_mon->rs, strlen(str));
4406 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4407 cmd_completion(str, cmd->name);
4410 break;
4411 default:
4412 break;
4416 cleanup:
4417 for (i = 0; i < nb_args; i++) {
4418 g_free(args[i]);
4422 static int monitor_can_read(void *opaque)
4424 Monitor *mon = opaque;
4426 return (mon->suspend_cnt == 0) ? 1 : 0;
4429 static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4431 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4432 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4436 * Argument validation rules:
4438 * 1. The argument must exist in cmd_args qdict
4439 * 2. The argument type must be the expected one
4441 * Special case: If the argument doesn't exist in cmd_args and
4442 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4443 * checking is skipped for it.
4445 static int check_client_args_type(const QDict *client_args,
4446 const QDict *cmd_args, int flags)
4448 const QDictEntry *ent;
4450 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4451 QObject *obj;
4452 QString *arg_type;
4453 const QObject *client_arg = qdict_entry_value(ent);
4454 const char *client_arg_name = qdict_entry_key(ent);
4456 obj = qdict_get(cmd_args, client_arg_name);
4457 if (!obj) {
4458 if (flags & QMP_ACCEPT_UNKNOWNS) {
4459 /* handler accepts unknowns */
4460 continue;
4462 /* client arg doesn't exist */
4463 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4464 return -1;
4467 arg_type = qobject_to_qstring(obj);
4468 assert(arg_type != NULL);
4470 /* check if argument's type is correct */
4471 switch (qstring_get_str(arg_type)[0]) {
4472 case 'F':
4473 case 'B':
4474 case 's':
4475 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4476 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4477 "string");
4478 return -1;
4480 break;
4481 case 'i':
4482 case 'l':
4483 case 'M':
4484 case 'o':
4485 if (qobject_type(client_arg) != QTYPE_QINT) {
4486 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4487 "int");
4488 return -1;
4490 break;
4491 case 'T':
4492 if (qobject_type(client_arg) != QTYPE_QINT &&
4493 qobject_type(client_arg) != QTYPE_QFLOAT) {
4494 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4495 "number");
4496 return -1;
4498 break;
4499 case 'b':
4500 case '-':
4501 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4502 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4503 "bool");
4504 return -1;
4506 break;
4507 case 'O':
4508 assert(flags & QMP_ACCEPT_UNKNOWNS);
4509 break;
4510 case '/':
4511 case '.':
4513 * These types are not supported by QMP and thus are not
4514 * handled here. Fall through.
4516 default:
4517 abort();
4521 return 0;
4525 * - Check if the client has passed all mandatory args
4526 * - Set special flags for argument validation
4528 static int check_mandatory_args(const QDict *cmd_args,
4529 const QDict *client_args, int *flags)
4531 const QDictEntry *ent;
4533 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4534 const char *cmd_arg_name = qdict_entry_key(ent);
4535 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4536 assert(type != NULL);
4538 if (qstring_get_str(type)[0] == 'O') {
4539 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4540 *flags |= QMP_ACCEPT_UNKNOWNS;
4541 } else if (qstring_get_str(type)[0] != '-' &&
4542 qstring_get_str(type)[1] != '?' &&
4543 !qdict_haskey(client_args, cmd_arg_name)) {
4544 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4545 return -1;
4549 return 0;
4552 static QDict *qdict_from_args_type(const char *args_type)
4554 int i;
4555 QDict *qdict;
4556 QString *key, *type, *cur_qs;
4558 assert(args_type != NULL);
4560 qdict = qdict_new();
4562 if (args_type == NULL || args_type[0] == '\0') {
4563 /* no args, empty qdict */
4564 goto out;
4567 key = qstring_new();
4568 type = qstring_new();
4570 cur_qs = key;
4572 for (i = 0;; i++) {
4573 switch (args_type[i]) {
4574 case ',':
4575 case '\0':
4576 qdict_put(qdict, qstring_get_str(key), type);
4577 QDECREF(key);
4578 if (args_type[i] == '\0') {
4579 goto out;
4581 type = qstring_new(); /* qdict has ref */
4582 cur_qs = key = qstring_new();
4583 break;
4584 case ':':
4585 cur_qs = type;
4586 break;
4587 default:
4588 qstring_append_chr(cur_qs, args_type[i]);
4589 break;
4593 out:
4594 return qdict;
4598 * Client argument checking rules:
4600 * 1. Client must provide all mandatory arguments
4601 * 2. Each argument provided by the client must be expected
4602 * 3. Each argument provided by the client must have the type expected
4603 * by the command
4605 static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4607 int flags, err;
4608 QDict *cmd_args;
4610 cmd_args = qdict_from_args_type(cmd->args_type);
4612 flags = 0;
4613 err = check_mandatory_args(cmd_args, client_args, &flags);
4614 if (err) {
4615 goto out;
4618 err = check_client_args_type(client_args, cmd_args, flags);
4620 out:
4621 QDECREF(cmd_args);
4622 return err;
4626 * Input object checking rules
4628 * 1. Input object must be a dict
4629 * 2. The "execute" key must exist
4630 * 3. The "execute" key must be a string
4631 * 4. If the "arguments" key exists, it must be a dict
4632 * 5. If the "id" key exists, it can be anything (ie. json-value)
4633 * 6. Any argument not listed above is considered invalid
4635 static QDict *qmp_check_input_obj(QObject *input_obj)
4637 const QDictEntry *ent;
4638 int has_exec_key = 0;
4639 QDict *input_dict;
4641 if (qobject_type(input_obj) != QTYPE_QDICT) {
4642 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4643 return NULL;
4646 input_dict = qobject_to_qdict(input_obj);
4648 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4649 const char *arg_name = qdict_entry_key(ent);
4650 const QObject *arg_obj = qdict_entry_value(ent);
4652 if (!strcmp(arg_name, "execute")) {
4653 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4654 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4655 "string");
4656 return NULL;
4658 has_exec_key = 1;
4659 } else if (!strcmp(arg_name, "arguments")) {
4660 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4661 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4662 "object");
4663 return NULL;
4665 } else if (!strcmp(arg_name, "id")) {
4666 /* FIXME: check duplicated IDs for async commands */
4667 } else {
4668 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4669 return NULL;
4673 if (!has_exec_key) {
4674 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4675 return NULL;
4678 return input_dict;
4681 static void qmp_call_query_cmd(Monitor *mon, const mon_cmd_t *cmd)
4683 QObject *ret_data = NULL;
4685 if (handler_is_async(cmd)) {
4686 qmp_async_info_handler(mon, cmd);
4687 if (monitor_has_error(mon)) {
4688 monitor_protocol_emitter(mon, NULL);
4690 } else {
4691 cmd->mhandler.info_new(mon, &ret_data);
4692 monitor_protocol_emitter(mon, ret_data);
4693 qobject_decref(ret_data);
4697 static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4698 const QDict *params)
4700 int ret;
4701 QObject *data = NULL;
4703 mon_print_count_init(mon);
4705 ret = cmd->mhandler.cmd_new(mon, params, &data);
4706 handler_audit(mon, cmd, ret);
4707 monitor_protocol_emitter(mon, data);
4708 qobject_decref(data);
4711 static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4713 int err;
4714 QObject *obj;
4715 QDict *input, *args;
4716 const mon_cmd_t *cmd;
4717 Monitor *mon = cur_mon;
4718 const char *cmd_name, *query_cmd;
4720 query_cmd = NULL;
4721 args = input = NULL;
4723 obj = json_parser_parse(tokens, NULL);
4724 if (!obj) {
4725 // FIXME: should be triggered in json_parser_parse()
4726 qerror_report(QERR_JSON_PARSING);
4727 goto err_out;
4730 input = qmp_check_input_obj(obj);
4731 if (!input) {
4732 qobject_decref(obj);
4733 goto err_out;
4736 mon->mc->id = qdict_get(input, "id");
4737 qobject_incref(mon->mc->id);
4739 cmd_name = qdict_get_str(input, "execute");
4740 trace_handle_qmp_command(mon, cmd_name);
4741 if (invalid_qmp_mode(mon, cmd_name)) {
4742 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4743 goto err_out;
4746 cmd = qmp_find_cmd(cmd_name);
4747 if (!cmd && strstart(cmd_name, "query-", &query_cmd)) {
4748 cmd = qmp_find_query_cmd(query_cmd);
4750 if (!cmd) {
4751 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4752 goto err_out;
4755 obj = qdict_get(input, "arguments");
4756 if (!obj) {
4757 args = qdict_new();
4758 } else {
4759 args = qobject_to_qdict(obj);
4760 QINCREF(args);
4763 err = qmp_check_client_args(cmd, args);
4764 if (err < 0) {
4765 goto err_out;
4768 if (query_cmd) {
4769 qmp_call_query_cmd(mon, cmd);
4770 } else if (handler_is_async(cmd)) {
4771 err = qmp_async_cmd_handler(mon, cmd, args);
4772 if (err) {
4773 /* emit the error response */
4774 goto err_out;
4776 } else {
4777 qmp_call_cmd(mon, cmd, args);
4780 goto out;
4782 err_out:
4783 monitor_protocol_emitter(mon, NULL);
4784 out:
4785 QDECREF(input);
4786 QDECREF(args);
4790 * monitor_control_read(): Read and handle QMP input
4792 static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4794 Monitor *old_mon = cur_mon;
4796 cur_mon = opaque;
4798 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
4800 cur_mon = old_mon;
4803 static void monitor_read(void *opaque, const uint8_t *buf, int size)
4805 Monitor *old_mon = cur_mon;
4806 int i;
4808 cur_mon = opaque;
4810 if (cur_mon->rs) {
4811 for (i = 0; i < size; i++)
4812 readline_handle_byte(cur_mon->rs, buf[i]);
4813 } else {
4814 if (size == 0 || buf[size - 1] != 0)
4815 monitor_printf(cur_mon, "corrupted command\n");
4816 else
4817 handle_user_command(cur_mon, (char *)buf);
4820 cur_mon = old_mon;
4823 static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
4825 monitor_suspend(mon);
4826 handle_user_command(mon, cmdline);
4827 monitor_resume(mon);
4830 int monitor_suspend(Monitor *mon)
4832 if (!mon->rs)
4833 return -ENOTTY;
4834 mon->suspend_cnt++;
4835 return 0;
4838 void monitor_resume(Monitor *mon)
4840 if (!mon->rs)
4841 return;
4842 if (--mon->suspend_cnt == 0)
4843 readline_show_prompt(mon->rs);
4846 static QObject *get_qmp_greeting(void)
4848 QObject *ver = NULL;
4850 qmp_marshal_input_query_version(NULL, NULL, &ver);
4851 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4855 * monitor_control_event(): Print QMP gretting
4857 static void monitor_control_event(void *opaque, int event)
4859 QObject *data;
4860 Monitor *mon = opaque;
4862 switch (event) {
4863 case CHR_EVENT_OPENED:
4864 mon->mc->command_mode = 0;
4865 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
4866 data = get_qmp_greeting();
4867 monitor_json_emitter(mon, data);
4868 qobject_decref(data);
4869 break;
4870 case CHR_EVENT_CLOSED:
4871 json_message_parser_destroy(&mon->mc->parser);
4872 break;
4876 static void monitor_event(void *opaque, int event)
4878 Monitor *mon = opaque;
4880 switch (event) {
4881 case CHR_EVENT_MUX_IN:
4882 mon->mux_out = 0;
4883 if (mon->reset_seen) {
4884 readline_restart(mon->rs);
4885 monitor_resume(mon);
4886 monitor_flush(mon);
4887 } else {
4888 mon->suspend_cnt = 0;
4890 break;
4892 case CHR_EVENT_MUX_OUT:
4893 if (mon->reset_seen) {
4894 if (mon->suspend_cnt == 0) {
4895 monitor_printf(mon, "\n");
4897 monitor_flush(mon);
4898 monitor_suspend(mon);
4899 } else {
4900 mon->suspend_cnt++;
4902 mon->mux_out = 1;
4903 break;
4905 case CHR_EVENT_OPENED:
4906 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4907 "information\n", QEMU_VERSION);
4908 if (!mon->mux_out) {
4909 readline_show_prompt(mon->rs);
4911 mon->reset_seen = 1;
4912 break;
4918 * Local variables:
4919 * c-indent-level: 4
4920 * c-basic-offset: 4
4921 * tab-width: 8
4922 * End:
4925 void monitor_init(CharDriverState *chr, int flags)
4927 static int is_first_init = 1;
4928 Monitor *mon;
4930 if (is_first_init) {
4931 key_timer = qemu_new_timer_ns(vm_clock, release_keys, NULL);
4932 is_first_init = 0;
4935 mon = g_malloc0(sizeof(*mon));
4937 mon->chr = chr;
4938 mon->flags = flags;
4939 if (flags & MONITOR_USE_READLINE) {
4940 mon->rs = readline_init(mon, monitor_find_completion);
4941 monitor_read_command(mon, 0);
4944 if (monitor_ctrl_mode(mon)) {
4945 mon->mc = g_malloc0(sizeof(MonitorControl));
4946 /* Control mode requires special handlers */
4947 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4948 monitor_control_event, mon);
4949 qemu_chr_fe_set_echo(chr, true);
4950 } else {
4951 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4952 monitor_event, mon);
4955 QLIST_INSERT_HEAD(&mon_list, mon, entry);
4956 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4957 default_mon = mon;
4960 static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
4962 BlockDriverState *bs = opaque;
4963 int ret = 0;
4965 if (bdrv_set_key(bs, password) != 0) {
4966 monitor_printf(mon, "invalid password\n");
4967 ret = -EPERM;
4969 if (mon->password_completion_cb)
4970 mon->password_completion_cb(mon->password_opaque, ret);
4972 monitor_read_command(mon, 1);
4975 int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4976 BlockDriverCompletionFunc *completion_cb,
4977 void *opaque)
4979 int err;
4981 if (!bdrv_key_required(bs)) {
4982 if (completion_cb)
4983 completion_cb(opaque, 0);
4984 return 0;
4987 if (monitor_ctrl_mode(mon)) {
4988 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
4989 return -1;
4992 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4993 bdrv_get_encrypted_filename(bs));
4995 mon->password_completion_cb = completion_cb;
4996 mon->password_opaque = opaque;
4998 err = monitor_read_password(mon, bdrv_password_cb, bs);
5000 if (err && completion_cb)
5001 completion_cb(opaque, err);
5003 return err;