Merge commit 'f5e6fed879ae10b9f6494a6eed21c1979391d7cb' into upstream-merge
[qemu-kvm.git] / monitor.c
blobcb485bf08dca7caa4575b5db863dc7c27d7c7975
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 #ifdef CONFIG_SIMPLE_TRACE
61 #include "trace.h"
62 #endif
63 #include "ui/qemu-spice.h"
65 //#define DEBUG
66 //#define DEBUG_COMPLETION
69 * Supported types:
71 * 'F' filename
72 * 'B' block device name
73 * 's' string (accept optional quote)
74 * 'O' option string of the form NAME=VALUE,...
75 * parsed according to QemuOptsList given by its name
76 * Example: 'device:O' uses qemu_device_opts.
77 * Restriction: only lists with empty desc are supported
78 * TODO lift the restriction
79 * 'i' 32 bit integer
80 * 'l' target long (32 or 64 bit)
81 * 'M' just like 'l', except in user mode the value is
82 * multiplied by 2^20 (think Mebibyte)
83 * 'o' octets (aka bytes)
84 * user mode accepts an optional T, t, G, g, M, m, K, k
85 * suffix, which multiplies the value by 2^40 for
86 * suffixes T and t, 2^30 for suffixes G and g, 2^20 for
87 * M and m, 2^10 for K and k
88 * 'T' double
89 * user mode accepts an optional ms, us, ns suffix,
90 * which divides the value by 1e3, 1e6, 1e9, respectively
91 * '/' optional gdb-like print format (like "/10x")
93 * '?' optional type (for all types, except '/')
94 * '.' other form of optional type (for 'i' and 'l')
95 * 'b' boolean
96 * user mode accepts "on" or "off"
97 * '-' optional parameter (eg. '-f')
101 typedef struct MonitorCompletionData MonitorCompletionData;
102 struct MonitorCompletionData {
103 Monitor *mon;
104 void (*user_print)(Monitor *mon, const QObject *data);
107 typedef struct mon_cmd_t {
108 const char *name;
109 const char *args_type;
110 const char *params;
111 const char *help;
112 void (*user_print)(Monitor *mon, const QObject *data);
113 union {
114 void (*info)(Monitor *mon);
115 void (*info_new)(Monitor *mon, QObject **ret_data);
116 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
117 void (*cmd)(Monitor *mon, const QDict *qdict);
118 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
119 int (*cmd_async)(Monitor *mon, const QDict *params,
120 MonitorCompletion *cb, void *opaque);
121 } mhandler;
122 int flags;
123 } mon_cmd_t;
125 /* file descriptors passed via SCM_RIGHTS */
126 typedef struct mon_fd_t mon_fd_t;
127 struct mon_fd_t {
128 char *name;
129 int fd;
130 QLIST_ENTRY(mon_fd_t) next;
133 typedef struct MonitorControl {
134 QObject *id;
135 JSONMessageParser parser;
136 int command_mode;
137 } MonitorControl;
139 struct Monitor {
140 CharDriverState *chr;
141 int mux_out;
142 int reset_seen;
143 int flags;
144 int suspend_cnt;
145 uint8_t outbuf[1024];
146 int outbuf_index;
147 ReadLineState *rs;
148 MonitorControl *mc;
149 CPUState *mon_cpu;
150 BlockDriverCompletionFunc *password_completion_cb;
151 void *password_opaque;
152 #ifdef CONFIG_DEBUG_MONITOR
153 int print_calls_nr;
154 #endif
155 QError *error;
156 QLIST_HEAD(,mon_fd_t) fds;
157 QLIST_ENTRY(Monitor) entry;
160 #ifdef CONFIG_DEBUG_MONITOR
161 #define MON_DEBUG(fmt, ...) do { \
162 fprintf(stderr, "Monitor: "); \
163 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
165 static inline void mon_print_count_inc(Monitor *mon)
167 mon->print_calls_nr++;
170 static inline void mon_print_count_init(Monitor *mon)
172 mon->print_calls_nr = 0;
175 static inline int mon_print_count_get(const Monitor *mon)
177 return mon->print_calls_nr;
180 #else /* !CONFIG_DEBUG_MONITOR */
181 #define MON_DEBUG(fmt, ...) do { } while (0)
182 static inline void mon_print_count_inc(Monitor *mon) { }
183 static inline void mon_print_count_init(Monitor *mon) { }
184 static inline int mon_print_count_get(const Monitor *mon) { return 0; }
185 #endif /* CONFIG_DEBUG_MONITOR */
187 /* QMP checker flags */
188 #define QMP_ACCEPT_UNKNOWNS 1
190 static QLIST_HEAD(mon_list, Monitor) mon_list;
192 static const mon_cmd_t mon_cmds[];
193 static const mon_cmd_t info_cmds[];
195 static const mon_cmd_t qmp_cmds[];
196 static const mon_cmd_t qmp_query_cmds[];
198 Monitor *cur_mon;
199 Monitor *default_mon;
201 static void monitor_command_cb(Monitor *mon, const char *cmdline,
202 void *opaque);
204 static inline int qmp_cmd_mode(const Monitor *mon)
206 return (mon->mc ? mon->mc->command_mode : 0);
209 /* Return true if in control mode, false otherwise */
210 static inline int monitor_ctrl_mode(const Monitor *mon)
212 return (mon->flags & MONITOR_USE_CONTROL);
215 /* Return non-zero iff we have a current monitor, and it is in QMP mode. */
216 int monitor_cur_is_qmp(void)
218 return cur_mon && monitor_ctrl_mode(cur_mon);
221 static void monitor_read_command(Monitor *mon, int show_prompt)
223 if (!mon->rs)
224 return;
226 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
227 if (show_prompt)
228 readline_show_prompt(mon->rs);
231 static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
232 void *opaque)
234 if (monitor_ctrl_mode(mon)) {
235 qerror_report(QERR_MISSING_PARAMETER, "password");
236 return -EINVAL;
237 } else if (mon->rs) {
238 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
239 /* prompt is printed on return from the command handler */
240 return 0;
241 } else {
242 monitor_printf(mon, "terminal does not support password prompting\n");
243 return -ENOTTY;
247 void monitor_flush(Monitor *mon)
249 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
250 qemu_chr_fe_write(mon->chr, mon->outbuf, mon->outbuf_index);
251 mon->outbuf_index = 0;
255 /* flush at every end of line or if the buffer is full */
256 static void monitor_puts(Monitor *mon, const char *str)
258 char c;
260 for(;;) {
261 c = *str++;
262 if (c == '\0')
263 break;
264 if (c == '\n')
265 mon->outbuf[mon->outbuf_index++] = '\r';
266 mon->outbuf[mon->outbuf_index++] = c;
267 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
268 || c == '\n')
269 monitor_flush(mon);
273 void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
275 char buf[4096];
277 if (!mon)
278 return;
280 mon_print_count_inc(mon);
282 if (monitor_ctrl_mode(mon)) {
283 return;
286 vsnprintf(buf, sizeof(buf), fmt, ap);
287 monitor_puts(mon, buf);
290 void monitor_printf(Monitor *mon, const char *fmt, ...)
292 va_list ap;
293 va_start(ap, fmt);
294 monitor_vprintf(mon, fmt, ap);
295 va_end(ap);
298 void monitor_print_filename(Monitor *mon, const char *filename)
300 int i;
302 for (i = 0; filename[i]; i++) {
303 switch (filename[i]) {
304 case ' ':
305 case '"':
306 case '\\':
307 monitor_printf(mon, "\\%c", filename[i]);
308 break;
309 case '\t':
310 monitor_printf(mon, "\\t");
311 break;
312 case '\r':
313 monitor_printf(mon, "\\r");
314 break;
315 case '\n':
316 monitor_printf(mon, "\\n");
317 break;
318 default:
319 monitor_printf(mon, "%c", filename[i]);
320 break;
325 static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
326 const char *fmt, ...)
328 va_list ap;
329 va_start(ap, fmt);
330 monitor_vprintf((Monitor *)stream, fmt, ap);
331 va_end(ap);
332 return 0;
335 static void monitor_user_noop(Monitor *mon, const QObject *data) { }
337 static inline int handler_is_qobject(const mon_cmd_t *cmd)
339 return cmd->user_print != NULL;
342 static inline bool handler_is_async(const mon_cmd_t *cmd)
344 return cmd->flags & MONITOR_CMD_ASYNC;
347 static inline int monitor_has_error(const Monitor *mon)
349 return mon->error != NULL;
352 static void monitor_json_emitter(Monitor *mon, const QObject *data)
354 QString *json;
356 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
357 qobject_to_json(data);
358 assert(json != NULL);
360 qstring_append_chr(json, '\n');
361 monitor_puts(mon, qstring_get_str(json));
363 QDECREF(json);
366 static void monitor_protocol_emitter(Monitor *mon, QObject *data)
368 QDict *qmp;
370 qmp = qdict_new();
372 if (!monitor_has_error(mon)) {
373 /* success response */
374 if (data) {
375 qobject_incref(data);
376 qdict_put_obj(qmp, "return", data);
377 } else {
378 /* return an empty QDict by default */
379 qdict_put(qmp, "return", qdict_new());
381 } else {
382 /* error response */
383 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
384 qdict_put(qmp, "error", mon->error->error);
385 QINCREF(mon->error->error);
386 QDECREF(mon->error);
387 mon->error = NULL;
390 if (mon->mc->id) {
391 qdict_put_obj(qmp, "id", mon->mc->id);
392 mon->mc->id = NULL;
395 monitor_json_emitter(mon, QOBJECT(qmp));
396 QDECREF(qmp);
399 static void timestamp_put(QDict *qdict)
401 int err;
402 QObject *obj;
403 qemu_timeval tv;
405 err = qemu_gettimeofday(&tv);
406 if (err < 0)
407 return;
409 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
410 "'microseconds': %" PRId64 " }",
411 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
412 qdict_put_obj(qdict, "timestamp", obj);
416 * monitor_protocol_event(): Generate a Monitor event
418 * Event-specific data can be emitted through the (optional) 'data' parameter.
420 void monitor_protocol_event(MonitorEvent event, QObject *data)
422 QDict *qmp;
423 const char *event_name;
424 Monitor *mon;
426 assert(event < QEVENT_MAX);
428 switch (event) {
429 case QEVENT_SHUTDOWN:
430 event_name = "SHUTDOWN";
431 break;
432 case QEVENT_RESET:
433 event_name = "RESET";
434 break;
435 case QEVENT_POWERDOWN:
436 event_name = "POWERDOWN";
437 break;
438 case QEVENT_STOP:
439 event_name = "STOP";
440 break;
441 case QEVENT_RESUME:
442 event_name = "RESUME";
443 break;
444 case QEVENT_VNC_CONNECTED:
445 event_name = "VNC_CONNECTED";
446 break;
447 case QEVENT_VNC_INITIALIZED:
448 event_name = "VNC_INITIALIZED";
449 break;
450 case QEVENT_VNC_DISCONNECTED:
451 event_name = "VNC_DISCONNECTED";
452 break;
453 case QEVENT_BLOCK_IO_ERROR:
454 event_name = "BLOCK_IO_ERROR";
455 break;
456 case QEVENT_RTC_CHANGE:
457 event_name = "RTC_CHANGE";
458 break;
459 case QEVENT_WATCHDOG:
460 event_name = "WATCHDOG";
461 break;
462 case QEVENT_SPICE_CONNECTED:
463 event_name = "SPICE_CONNECTED";
464 break;
465 case QEVENT_SPICE_INITIALIZED:
466 event_name = "SPICE_INITIALIZED";
467 break;
468 case QEVENT_SPICE_DISCONNECTED:
469 event_name = "SPICE_DISCONNECTED";
470 break;
471 default:
472 abort();
473 break;
476 qmp = qdict_new();
477 timestamp_put(qmp);
478 qdict_put(qmp, "event", qstring_from_str(event_name));
479 if (data) {
480 qobject_incref(data);
481 qdict_put_obj(qmp, "data", data);
484 QLIST_FOREACH(mon, &mon_list, entry) {
485 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
486 monitor_json_emitter(mon, QOBJECT(qmp));
489 QDECREF(qmp);
492 static int do_qmp_capabilities(Monitor *mon, const QDict *params,
493 QObject **ret_data)
495 /* Will setup QMP capabilities in the future */
496 if (monitor_ctrl_mode(mon)) {
497 mon->mc->command_mode = 1;
500 return 0;
503 static int mon_set_cpu(int cpu_index);
504 static void handle_user_command(Monitor *mon, const char *cmdline);
506 static int do_hmp_passthrough(Monitor *mon, const QDict *params,
507 QObject **ret_data)
509 int ret = 0;
510 Monitor *old_mon, hmp;
511 CharDriverState mchar;
513 memset(&hmp, 0, sizeof(hmp));
514 qemu_chr_init_mem(&mchar);
515 hmp.chr = &mchar;
517 old_mon = cur_mon;
518 cur_mon = &hmp;
520 if (qdict_haskey(params, "cpu-index")) {
521 ret = mon_set_cpu(qdict_get_int(params, "cpu-index"));
522 if (ret < 0) {
523 cur_mon = old_mon;
524 qerror_report(QERR_INVALID_PARAMETER_VALUE, "cpu-index", "a CPU number");
525 goto out;
529 handle_user_command(&hmp, qdict_get_str(params, "command-line"));
530 cur_mon = old_mon;
532 if (qemu_chr_mem_osize(hmp.chr) > 0) {
533 *ret_data = QOBJECT(qemu_chr_mem_to_qs(hmp.chr));
536 out:
537 qemu_chr_close_mem(hmp.chr);
538 return ret;
541 static int compare_cmd(const char *name, const char *list)
543 const char *p, *pstart;
544 int len;
545 len = strlen(name);
546 p = list;
547 for(;;) {
548 pstart = p;
549 p = strchr(p, '|');
550 if (!p)
551 p = pstart + strlen(pstart);
552 if ((p - pstart) == len && !memcmp(pstart, name, len))
553 return 1;
554 if (*p == '\0')
555 break;
556 p++;
558 return 0;
561 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
562 const char *prefix, const char *name)
564 const mon_cmd_t *cmd;
566 for(cmd = cmds; cmd->name != NULL; cmd++) {
567 if (!name || !strcmp(name, cmd->name))
568 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
569 cmd->params, cmd->help);
573 static void help_cmd(Monitor *mon, const char *name)
575 if (name && !strcmp(name, "info")) {
576 help_cmd_dump(mon, info_cmds, "info ", NULL);
577 } else {
578 help_cmd_dump(mon, mon_cmds, "", name);
579 if (name && !strcmp(name, "log")) {
580 const CPULogItem *item;
581 monitor_printf(mon, "Log items (comma separated):\n");
582 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
583 for(item = cpu_log_items; item->mask != 0; item++) {
584 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
590 static void do_help_cmd(Monitor *mon, const QDict *qdict)
592 help_cmd(mon, qdict_get_try_str(qdict, "name"));
595 #ifdef CONFIG_SIMPLE_TRACE
596 static void do_change_trace_event_state(Monitor *mon, const QDict *qdict)
598 const char *tp_name = qdict_get_str(qdict, "name");
599 bool new_state = qdict_get_bool(qdict, "option");
600 int ret = st_change_trace_event_state(tp_name, new_state);
602 if (!ret) {
603 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
607 static void do_trace_file(Monitor *mon, const QDict *qdict)
609 const char *op = qdict_get_try_str(qdict, "op");
610 const char *arg = qdict_get_try_str(qdict, "arg");
612 if (!op) {
613 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
614 } else if (!strcmp(op, "on")) {
615 st_set_trace_file_enabled(true);
616 } else if (!strcmp(op, "off")) {
617 st_set_trace_file_enabled(false);
618 } else if (!strcmp(op, "flush")) {
619 st_flush_trace_buffer();
620 } else if (!strcmp(op, "set")) {
621 if (arg) {
622 st_set_trace_file(arg);
624 } else {
625 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
626 help_cmd(mon, "trace-file");
629 #endif
631 static void user_monitor_complete(void *opaque, QObject *ret_data)
633 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
635 if (ret_data) {
636 data->user_print(data->mon, ret_data);
638 monitor_resume(data->mon);
639 g_free(data);
642 static void qmp_monitor_complete(void *opaque, QObject *ret_data)
644 monitor_protocol_emitter(opaque, ret_data);
647 static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
648 const QDict *params)
650 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
653 static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
655 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
658 static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
659 const QDict *params)
661 int ret;
663 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
664 cb_data->mon = mon;
665 cb_data->user_print = cmd->user_print;
666 monitor_suspend(mon);
667 ret = cmd->mhandler.cmd_async(mon, params,
668 user_monitor_complete, cb_data);
669 if (ret < 0) {
670 monitor_resume(mon);
671 g_free(cb_data);
675 static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
677 int ret;
679 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
680 cb_data->mon = mon;
681 cb_data->user_print = cmd->user_print;
682 monitor_suspend(mon);
683 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
684 if (ret < 0) {
685 monitor_resume(mon);
686 g_free(cb_data);
690 static void do_info(Monitor *mon, const QDict *qdict)
692 const mon_cmd_t *cmd;
693 const char *item = qdict_get_try_str(qdict, "item");
695 if (!item) {
696 goto help;
699 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
700 if (compare_cmd(item, cmd->name))
701 break;
704 if (cmd->name == NULL) {
705 goto help;
708 if (handler_is_async(cmd)) {
709 user_async_info_handler(mon, cmd);
710 } else if (handler_is_qobject(cmd)) {
711 QObject *info_data = NULL;
713 cmd->mhandler.info_new(mon, &info_data);
714 if (info_data) {
715 cmd->user_print(mon, info_data);
716 qobject_decref(info_data);
718 } else {
719 cmd->mhandler.info(mon);
722 return;
724 help:
725 help_cmd(mon, "info");
728 static void do_info_version_print(Monitor *mon, const QObject *data)
730 QDict *qdict;
731 QDict *qemu;
733 qdict = qobject_to_qdict(data);
734 qemu = qdict_get_qdict(qdict, "qemu");
736 monitor_printf(mon, "%" PRId64 ".%" PRId64 ".%" PRId64 "%s\n",
737 qdict_get_int(qemu, "major"),
738 qdict_get_int(qemu, "minor"),
739 qdict_get_int(qemu, "micro"),
740 qdict_get_str(qdict, "package"));
743 static void do_info_version(Monitor *mon, QObject **ret_data)
745 const char *version = QEMU_VERSION;
746 int major = 0, minor = 0, micro = 0;
747 char *tmp;
749 major = strtol(version, &tmp, 10);
750 tmp++;
751 minor = strtol(tmp, &tmp, 10);
752 tmp++;
753 micro = strtol(tmp, &tmp, 10);
755 *ret_data = qobject_from_jsonf("{ 'qemu': { 'major': %d, 'minor': %d, \
756 'micro': %d }, 'package': %s }", major, minor, micro, QEMU_PKGVERSION);
759 static void do_info_name_print(Monitor *mon, const QObject *data)
761 QDict *qdict;
763 qdict = qobject_to_qdict(data);
764 if (qdict_size(qdict) == 0) {
765 return;
768 monitor_printf(mon, "%s\n", qdict_get_str(qdict, "name"));
771 static void do_info_name(Monitor *mon, QObject **ret_data)
773 *ret_data = qemu_name ? qobject_from_jsonf("{'name': %s }", qemu_name) :
774 qobject_from_jsonf("{}");
777 static QObject *get_cmd_dict(const char *name)
779 const char *p;
781 /* Remove '|' from some commands */
782 p = strchr(name, '|');
783 if (p) {
784 p++;
785 } else {
786 p = name;
789 return qobject_from_jsonf("{ 'name': %s }", p);
792 static void do_info_commands(Monitor *mon, QObject **ret_data)
794 QList *cmd_list;
795 const mon_cmd_t *cmd;
797 cmd_list = qlist_new();
799 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
800 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
803 for (cmd = qmp_query_cmds; cmd->name != NULL; cmd++) {
804 char buf[128];
805 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
806 qlist_append_obj(cmd_list, get_cmd_dict(buf));
809 *ret_data = QOBJECT(cmd_list);
812 static void do_info_uuid_print(Monitor *mon, const QObject *data)
814 monitor_printf(mon, "%s\n", qdict_get_str(qobject_to_qdict(data), "UUID"));
817 static void do_info_uuid(Monitor *mon, QObject **ret_data)
819 char uuid[64];
821 snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1],
822 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
823 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
824 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
825 qemu_uuid[14], qemu_uuid[15]);
826 *ret_data = qobject_from_jsonf("{ 'UUID': %s }", uuid);
829 /* get the current CPU defined by the user */
830 static int mon_set_cpu(int cpu_index)
832 CPUState *env;
834 for(env = first_cpu; env != NULL; env = env->next_cpu) {
835 if (env->cpu_index == cpu_index) {
836 cur_mon->mon_cpu = env;
837 return 0;
840 return -1;
843 static CPUState *mon_get_cpu(void)
845 if (!cur_mon->mon_cpu) {
846 mon_set_cpu(0);
848 cpu_synchronize_state(cur_mon->mon_cpu);
849 return cur_mon->mon_cpu;
852 static void do_info_registers(Monitor *mon)
854 CPUState *env;
855 env = mon_get_cpu();
856 #ifdef TARGET_I386
857 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
858 X86_DUMP_FPU);
859 #else
860 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
862 #endif
865 static void print_cpu_iter(QObject *obj, void *opaque)
867 QDict *cpu;
868 int active = ' ';
869 Monitor *mon = opaque;
871 assert(qobject_type(obj) == QTYPE_QDICT);
872 cpu = qobject_to_qdict(obj);
874 if (qdict_get_bool(cpu, "current")) {
875 active = '*';
878 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
880 #if defined(TARGET_I386)
881 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
882 (target_ulong) qdict_get_int(cpu, "pc"));
883 #elif defined(TARGET_PPC)
884 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
885 (target_long) qdict_get_int(cpu, "nip"));
886 #elif defined(TARGET_SPARC)
887 monitor_printf(mon, "pc=0x " TARGET_FMT_lx,
888 (target_long) qdict_get_int(cpu, "pc"));
889 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
890 (target_long) qdict_get_int(cpu, "npc"));
891 #elif defined(TARGET_MIPS)
892 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
893 (target_long) qdict_get_int(cpu, "PC"));
894 #endif
896 if (qdict_get_bool(cpu, "halted")) {
897 monitor_printf(mon, " (halted)");
900 monitor_printf(mon, " thread_id=%" PRId64 " ",
901 qdict_get_int(cpu, "thread_id"));
903 monitor_printf(mon, "\n");
906 static void monitor_print_cpus(Monitor *mon, const QObject *data)
908 QList *cpu_list;
910 assert(qobject_type(data) == QTYPE_QLIST);
911 cpu_list = qobject_to_qlist(data);
912 qlist_iter(cpu_list, print_cpu_iter, mon);
915 static void do_info_cpus(Monitor *mon, QObject **ret_data)
917 CPUState *env;
918 QList *cpu_list;
920 cpu_list = qlist_new();
922 /* just to set the default cpu if not already done */
923 mon_get_cpu();
925 for(env = first_cpu; env != NULL; env = env->next_cpu) {
926 QDict *cpu;
927 QObject *obj;
929 cpu_synchronize_state(env);
931 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
932 env->cpu_index, env == mon->mon_cpu,
933 env->halted);
935 cpu = qobject_to_qdict(obj);
937 #if defined(TARGET_I386)
938 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
939 #elif defined(TARGET_PPC)
940 qdict_put(cpu, "nip", qint_from_int(env->nip));
941 #elif defined(TARGET_SPARC)
942 qdict_put(cpu, "pc", qint_from_int(env->pc));
943 qdict_put(cpu, "npc", qint_from_int(env->npc));
944 #elif defined(TARGET_MIPS)
945 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
946 #endif
947 qdict_put(cpu, "thread_id", qint_from_int(env->thread_id));
949 qlist_append(cpu_list, cpu);
952 *ret_data = QOBJECT(cpu_list);
955 static int do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
957 int index = qdict_get_int(qdict, "index");
958 if (mon_set_cpu(index) < 0) {
959 qerror_report(QERR_INVALID_PARAMETER_VALUE, "index",
960 "a CPU number");
961 return -1;
963 return 0;
966 static void do_cpu_set_nr(Monitor *mon, const QDict *qdict)
968 int state, value;
969 const char *status;
971 status = qdict_get_str(qdict, "state");
972 value = qdict_get_int(qdict, "cpu");
974 if (!strcmp(status, "online"))
975 state = 1;
976 else if (!strcmp(status, "offline"))
977 state = 0;
978 else {
979 monitor_printf(mon, "invalid status: %s\n", status);
980 return;
982 #if defined(TARGET_I386) || defined(TARGET_X86_64)
983 qemu_system_cpu_hot_add(value, state);
984 #endif
987 static void do_info_jit(Monitor *mon)
989 dump_exec_info((FILE *)mon, monitor_fprintf);
992 static void do_info_history(Monitor *mon)
994 int i;
995 const char *str;
997 if (!mon->rs)
998 return;
999 i = 0;
1000 for(;;) {
1001 str = readline_get_history(mon->rs, i);
1002 if (!str)
1003 break;
1004 monitor_printf(mon, "%d: '%s'\n", i, str);
1005 i++;
1009 #if defined(TARGET_PPC)
1010 /* XXX: not implemented in other targets */
1011 static void do_info_cpu_stats(Monitor *mon)
1013 CPUState *env;
1015 env = mon_get_cpu();
1016 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
1018 #endif
1020 #if defined(CONFIG_SIMPLE_TRACE)
1021 static void do_info_trace(Monitor *mon)
1023 st_print_trace((FILE *)mon, &monitor_fprintf);
1026 static void do_info_trace_events(Monitor *mon)
1028 st_print_trace_events((FILE *)mon, &monitor_fprintf);
1030 #endif
1033 * do_quit(): Quit QEMU execution
1035 static int do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
1037 monitor_suspend(mon);
1038 no_shutdown = 0;
1039 qemu_system_shutdown_request();
1041 return 0;
1044 #ifdef CONFIG_VNC
1045 static int change_vnc_password(const char *password)
1047 if (!password || !password[0]) {
1048 if (vnc_display_disable_login(NULL)) {
1049 qerror_report(QERR_SET_PASSWD_FAILED);
1050 return -1;
1052 return 0;
1055 if (vnc_display_password(NULL, password) < 0) {
1056 qerror_report(QERR_SET_PASSWD_FAILED);
1057 return -1;
1060 return 0;
1063 static void change_vnc_password_cb(Monitor *mon, const char *password,
1064 void *opaque)
1066 change_vnc_password(password);
1067 monitor_read_command(mon, 1);
1070 static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
1072 if (strcmp(target, "passwd") == 0 ||
1073 strcmp(target, "password") == 0) {
1074 if (arg) {
1075 char password[9];
1076 strncpy(password, arg, sizeof(password));
1077 password[sizeof(password) - 1] = '\0';
1078 return change_vnc_password(password);
1079 } else {
1080 return monitor_read_password(mon, change_vnc_password_cb, NULL);
1082 } else {
1083 if (vnc_display_open(NULL, target) < 0) {
1084 qerror_report(QERR_VNC_SERVER_FAILED, target);
1085 return -1;
1089 return 0;
1091 #else
1092 static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
1094 qerror_report(QERR_FEATURE_DISABLED, "vnc");
1095 return -ENODEV;
1097 #endif
1100 * do_change(): Change a removable medium, or VNC configuration
1102 static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
1104 const char *device = qdict_get_str(qdict, "device");
1105 const char *target = qdict_get_str(qdict, "target");
1106 const char *arg = qdict_get_try_str(qdict, "arg");
1107 int ret;
1109 if (strcmp(device, "vnc") == 0) {
1110 ret = do_change_vnc(mon, target, arg);
1111 } else {
1112 ret = do_change_block(mon, device, target, arg);
1115 return ret;
1118 static int set_password(Monitor *mon, const QDict *qdict, QObject **ret_data)
1120 const char *protocol = qdict_get_str(qdict, "protocol");
1121 const char *password = qdict_get_str(qdict, "password");
1122 const char *connected = qdict_get_try_str(qdict, "connected");
1123 int disconnect_if_connected = 0;
1124 int fail_if_connected = 0;
1125 int rc;
1127 if (connected) {
1128 if (strcmp(connected, "fail") == 0) {
1129 fail_if_connected = 1;
1130 } else if (strcmp(connected, "disconnect") == 0) {
1131 disconnect_if_connected = 1;
1132 } else if (strcmp(connected, "keep") == 0) {
1133 /* nothing */
1134 } else {
1135 qerror_report(QERR_INVALID_PARAMETER, "connected");
1136 return -1;
1140 if (strcmp(protocol, "spice") == 0) {
1141 if (!using_spice) {
1142 /* correct one? spice isn't a device ,,, */
1143 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1144 return -1;
1146 rc = qemu_spice_set_passwd(password, fail_if_connected,
1147 disconnect_if_connected);
1148 if (rc != 0) {
1149 qerror_report(QERR_SET_PASSWD_FAILED);
1150 return -1;
1152 return 0;
1155 if (strcmp(protocol, "vnc") == 0) {
1156 if (fail_if_connected || disconnect_if_connected) {
1157 /* vnc supports "connected=keep" only */
1158 qerror_report(QERR_INVALID_PARAMETER, "connected");
1159 return -1;
1161 /* Note that setting an empty password will not disable login through
1162 * this interface. */
1163 return vnc_display_password(NULL, password);
1166 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1167 return -1;
1170 static int expire_password(Monitor *mon, const QDict *qdict, QObject **ret_data)
1172 const char *protocol = qdict_get_str(qdict, "protocol");
1173 const char *whenstr = qdict_get_str(qdict, "time");
1174 time_t when;
1175 int rc;
1177 if (strcmp(whenstr, "now") == 0) {
1178 when = 0;
1179 } else if (strcmp(whenstr, "never") == 0) {
1180 when = TIME_MAX;
1181 } else if (whenstr[0] == '+') {
1182 when = time(NULL) + strtoull(whenstr+1, NULL, 10);
1183 } else {
1184 when = strtoull(whenstr, NULL, 10);
1187 if (strcmp(protocol, "spice") == 0) {
1188 if (!using_spice) {
1189 /* correct one? spice isn't a device ,,, */
1190 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1191 return -1;
1193 rc = qemu_spice_set_pw_expire(when);
1194 if (rc != 0) {
1195 qerror_report(QERR_SET_PASSWD_FAILED);
1196 return -1;
1198 return 0;
1201 if (strcmp(protocol, "vnc") == 0) {
1202 return vnc_display_pw_expire(NULL, when);
1205 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1206 return -1;
1209 static int add_graphics_client(Monitor *mon, const QDict *qdict, QObject **ret_data)
1211 const char *protocol = qdict_get_str(qdict, "protocol");
1212 const char *fdname = qdict_get_str(qdict, "fdname");
1213 int skipauth = qdict_get_try_bool(qdict, "skipauth", 0);
1214 CharDriverState *s;
1216 if (strcmp(protocol, "spice") == 0) {
1217 if (!using_spice) {
1218 /* correct one? spice isn't a device ,,, */
1219 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1220 return -1;
1222 qerror_report(QERR_ADD_CLIENT_FAILED);
1223 return -1;
1224 #ifdef CONFIG_VNC
1225 } else if (strcmp(protocol, "vnc") == 0) {
1226 int fd = monitor_get_fd(mon, fdname);
1227 vnc_display_add_client(NULL, fd, skipauth);
1228 return 0;
1229 #endif
1230 } else if ((s = qemu_chr_find(protocol)) != NULL) {
1231 int fd = monitor_get_fd(mon, fdname);
1232 if (qemu_chr_add_client(s, fd) < 0) {
1233 qerror_report(QERR_ADD_CLIENT_FAILED);
1234 return -1;
1236 return 0;
1239 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1240 return -1;
1243 static int client_migrate_info(Monitor *mon, const QDict *qdict, QObject **ret_data)
1245 const char *protocol = qdict_get_str(qdict, "protocol");
1246 const char *hostname = qdict_get_str(qdict, "hostname");
1247 const char *subject = qdict_get_try_str(qdict, "cert-subject");
1248 int port = qdict_get_try_int(qdict, "port", -1);
1249 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
1250 int ret;
1252 if (strcmp(protocol, "spice") == 0) {
1253 if (!using_spice) {
1254 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1255 return -1;
1258 ret = qemu_spice_migrate_info(hostname, port, tls_port, subject);
1259 if (ret != 0) {
1260 qerror_report(QERR_UNDEFINED_ERROR);
1261 return -1;
1263 return 0;
1266 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1267 return -1;
1270 static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
1272 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
1273 return 0;
1276 static void do_logfile(Monitor *mon, const QDict *qdict)
1278 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
1281 static void do_log(Monitor *mon, const QDict *qdict)
1283 int mask;
1284 const char *items = qdict_get_str(qdict, "items");
1286 if (!strcmp(items, "none")) {
1287 mask = 0;
1288 } else {
1289 mask = cpu_str_to_log_mask(items);
1290 if (!mask) {
1291 help_cmd(mon, "log");
1292 return;
1295 cpu_set_log(mask);
1298 static void do_singlestep(Monitor *mon, const QDict *qdict)
1300 const char *option = qdict_get_try_str(qdict, "option");
1301 if (!option || !strcmp(option, "on")) {
1302 singlestep = 1;
1303 } else if (!strcmp(option, "off")) {
1304 singlestep = 0;
1305 } else {
1306 monitor_printf(mon, "unexpected option %s\n", option);
1311 * do_stop(): Stop VM execution
1313 static int do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
1315 vm_stop(VMSTOP_USER);
1316 return 0;
1319 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
1321 struct bdrv_iterate_context {
1322 Monitor *mon;
1323 int err;
1327 * do_cont(): Resume emulation.
1329 static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
1331 struct bdrv_iterate_context context = { mon, 0 };
1333 if (incoming_expected) {
1334 qerror_report(QERR_MIGRATION_EXPECTED);
1335 return -1;
1337 bdrv_iterate(encrypted_bdrv_it, &context);
1338 /* only resume the vm if all keys are set and valid */
1339 if (!context.err) {
1340 vm_start();
1341 return 0;
1342 } else {
1343 return -1;
1347 static void bdrv_key_cb(void *opaque, int err)
1349 Monitor *mon = opaque;
1351 /* another key was set successfully, retry to continue */
1352 if (!err)
1353 do_cont(mon, NULL, NULL);
1356 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1358 struct bdrv_iterate_context *context = opaque;
1360 if (!context->err && bdrv_key_required(bs)) {
1361 context->err = -EBUSY;
1362 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1363 context->mon);
1367 static void do_gdbserver(Monitor *mon, const QDict *qdict)
1369 const char *device = qdict_get_try_str(qdict, "device");
1370 if (!device)
1371 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1372 if (gdbserver_start(device) < 0) {
1373 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1374 device);
1375 } else if (strcmp(device, "none") == 0) {
1376 monitor_printf(mon, "Disabled gdbserver\n");
1377 } else {
1378 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1379 device);
1383 static void do_watchdog_action(Monitor *mon, const QDict *qdict)
1385 const char *action = qdict_get_str(qdict, "action");
1386 if (select_watchdog_action(action) == -1) {
1387 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1391 static void monitor_printc(Monitor *mon, int c)
1393 monitor_printf(mon, "'");
1394 switch(c) {
1395 case '\'':
1396 monitor_printf(mon, "\\'");
1397 break;
1398 case '\\':
1399 monitor_printf(mon, "\\\\");
1400 break;
1401 case '\n':
1402 monitor_printf(mon, "\\n");
1403 break;
1404 case '\r':
1405 monitor_printf(mon, "\\r");
1406 break;
1407 default:
1408 if (c >= 32 && c <= 126) {
1409 monitor_printf(mon, "%c", c);
1410 } else {
1411 monitor_printf(mon, "\\x%02x", c);
1413 break;
1415 monitor_printf(mon, "'");
1418 static void memory_dump(Monitor *mon, int count, int format, int wsize,
1419 target_phys_addr_t addr, int is_physical)
1421 CPUState *env;
1422 int l, line_size, i, max_digits, len;
1423 uint8_t buf[16];
1424 uint64_t v;
1426 if (format == 'i') {
1427 int flags;
1428 flags = 0;
1429 env = mon_get_cpu();
1430 #ifdef TARGET_I386
1431 if (wsize == 2) {
1432 flags = 1;
1433 } else if (wsize == 4) {
1434 flags = 0;
1435 } else {
1436 /* as default we use the current CS size */
1437 flags = 0;
1438 if (env) {
1439 #ifdef TARGET_X86_64
1440 if ((env->efer & MSR_EFER_LMA) &&
1441 (env->segs[R_CS].flags & DESC_L_MASK))
1442 flags = 2;
1443 else
1444 #endif
1445 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1446 flags = 1;
1449 #endif
1450 monitor_disas(mon, env, addr, count, is_physical, flags);
1451 return;
1454 len = wsize * count;
1455 if (wsize == 1)
1456 line_size = 8;
1457 else
1458 line_size = 16;
1459 max_digits = 0;
1461 switch(format) {
1462 case 'o':
1463 max_digits = (wsize * 8 + 2) / 3;
1464 break;
1465 default:
1466 case 'x':
1467 max_digits = (wsize * 8) / 4;
1468 break;
1469 case 'u':
1470 case 'd':
1471 max_digits = (wsize * 8 * 10 + 32) / 33;
1472 break;
1473 case 'c':
1474 wsize = 1;
1475 break;
1478 while (len > 0) {
1479 if (is_physical)
1480 monitor_printf(mon, TARGET_FMT_plx ":", addr);
1481 else
1482 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
1483 l = len;
1484 if (l > line_size)
1485 l = line_size;
1486 if (is_physical) {
1487 cpu_physical_memory_read(addr, buf, l);
1488 } else {
1489 env = mon_get_cpu();
1490 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
1491 monitor_printf(mon, " Cannot access memory\n");
1492 break;
1495 i = 0;
1496 while (i < l) {
1497 switch(wsize) {
1498 default:
1499 case 1:
1500 v = ldub_raw(buf + i);
1501 break;
1502 case 2:
1503 v = lduw_raw(buf + i);
1504 break;
1505 case 4:
1506 v = (uint32_t)ldl_raw(buf + i);
1507 break;
1508 case 8:
1509 v = ldq_raw(buf + i);
1510 break;
1512 monitor_printf(mon, " ");
1513 switch(format) {
1514 case 'o':
1515 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
1516 break;
1517 case 'x':
1518 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
1519 break;
1520 case 'u':
1521 monitor_printf(mon, "%*" PRIu64, max_digits, v);
1522 break;
1523 case 'd':
1524 monitor_printf(mon, "%*" PRId64, max_digits, v);
1525 break;
1526 case 'c':
1527 monitor_printc(mon, v);
1528 break;
1530 i += wsize;
1532 monitor_printf(mon, "\n");
1533 addr += l;
1534 len -= l;
1538 static void do_memory_dump(Monitor *mon, const QDict *qdict)
1540 int count = qdict_get_int(qdict, "count");
1541 int format = qdict_get_int(qdict, "format");
1542 int size = qdict_get_int(qdict, "size");
1543 target_long addr = qdict_get_int(qdict, "addr");
1545 memory_dump(mon, count, format, size, addr, 0);
1548 static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
1550 int count = qdict_get_int(qdict, "count");
1551 int format = qdict_get_int(qdict, "format");
1552 int size = qdict_get_int(qdict, "size");
1553 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
1555 memory_dump(mon, count, format, size, addr, 1);
1558 static void do_print(Monitor *mon, const QDict *qdict)
1560 int format = qdict_get_int(qdict, "format");
1561 target_phys_addr_t val = qdict_get_int(qdict, "val");
1563 #if TARGET_PHYS_ADDR_BITS == 32
1564 switch(format) {
1565 case 'o':
1566 monitor_printf(mon, "%#o", val);
1567 break;
1568 case 'x':
1569 monitor_printf(mon, "%#x", val);
1570 break;
1571 case 'u':
1572 monitor_printf(mon, "%u", val);
1573 break;
1574 default:
1575 case 'd':
1576 monitor_printf(mon, "%d", val);
1577 break;
1578 case 'c':
1579 monitor_printc(mon, val);
1580 break;
1582 #else
1583 switch(format) {
1584 case 'o':
1585 monitor_printf(mon, "%#" PRIo64, val);
1586 break;
1587 case 'x':
1588 monitor_printf(mon, "%#" PRIx64, val);
1589 break;
1590 case 'u':
1591 monitor_printf(mon, "%" PRIu64, val);
1592 break;
1593 default:
1594 case 'd':
1595 monitor_printf(mon, "%" PRId64, val);
1596 break;
1597 case 'c':
1598 monitor_printc(mon, val);
1599 break;
1601 #endif
1602 monitor_printf(mon, "\n");
1605 static int do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
1607 FILE *f;
1608 uint32_t size = qdict_get_int(qdict, "size");
1609 const char *filename = qdict_get_str(qdict, "filename");
1610 target_long addr = qdict_get_int(qdict, "val");
1611 uint32_t l;
1612 CPUState *env;
1613 uint8_t buf[1024];
1614 int ret = -1;
1616 env = mon_get_cpu();
1618 f = fopen(filename, "wb");
1619 if (!f) {
1620 qerror_report(QERR_OPEN_FILE_FAILED, filename);
1621 return -1;
1623 while (size != 0) {
1624 l = sizeof(buf);
1625 if (l > size)
1626 l = size;
1627 cpu_memory_rw_debug(env, addr, buf, l, 0);
1628 if (fwrite(buf, 1, l, f) != l) {
1629 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1630 goto exit;
1632 addr += l;
1633 size -= l;
1636 ret = 0;
1638 exit:
1639 fclose(f);
1640 return ret;
1643 static int do_physical_memory_save(Monitor *mon, const QDict *qdict,
1644 QObject **ret_data)
1646 FILE *f;
1647 uint32_t l;
1648 uint8_t buf[1024];
1649 uint32_t size = qdict_get_int(qdict, "size");
1650 const char *filename = qdict_get_str(qdict, "filename");
1651 target_phys_addr_t addr = qdict_get_int(qdict, "val");
1652 int ret = -1;
1654 f = fopen(filename, "wb");
1655 if (!f) {
1656 qerror_report(QERR_OPEN_FILE_FAILED, filename);
1657 return -1;
1659 while (size != 0) {
1660 l = sizeof(buf);
1661 if (l > size)
1662 l = size;
1663 cpu_physical_memory_read(addr, buf, l);
1664 if (fwrite(buf, 1, l, f) != l) {
1665 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1666 goto exit;
1668 fflush(f);
1669 addr += l;
1670 size -= l;
1673 ret = 0;
1675 exit:
1676 fclose(f);
1677 return ret;
1680 static void do_sum(Monitor *mon, const QDict *qdict)
1682 uint32_t addr;
1683 uint16_t sum;
1684 uint32_t start = qdict_get_int(qdict, "start");
1685 uint32_t size = qdict_get_int(qdict, "size");
1687 sum = 0;
1688 for(addr = start; addr < (start + size); addr++) {
1689 uint8_t val = ldub_phys(addr);
1690 /* BSD sum algorithm ('sum' Unix command) */
1691 sum = (sum >> 1) | (sum << 15);
1692 sum += val;
1694 monitor_printf(mon, "%05d\n", sum);
1697 typedef struct {
1698 int keycode;
1699 const char *name;
1700 } KeyDef;
1702 static const KeyDef key_defs[] = {
1703 { 0x2a, "shift" },
1704 { 0x36, "shift_r" },
1706 { 0x38, "alt" },
1707 { 0xb8, "alt_r" },
1708 { 0x64, "altgr" },
1709 { 0xe4, "altgr_r" },
1710 { 0x1d, "ctrl" },
1711 { 0x9d, "ctrl_r" },
1713 { 0xdd, "menu" },
1715 { 0x01, "esc" },
1717 { 0x02, "1" },
1718 { 0x03, "2" },
1719 { 0x04, "3" },
1720 { 0x05, "4" },
1721 { 0x06, "5" },
1722 { 0x07, "6" },
1723 { 0x08, "7" },
1724 { 0x09, "8" },
1725 { 0x0a, "9" },
1726 { 0x0b, "0" },
1727 { 0x0c, "minus" },
1728 { 0x0d, "equal" },
1729 { 0x0e, "backspace" },
1731 { 0x0f, "tab" },
1732 { 0x10, "q" },
1733 { 0x11, "w" },
1734 { 0x12, "e" },
1735 { 0x13, "r" },
1736 { 0x14, "t" },
1737 { 0x15, "y" },
1738 { 0x16, "u" },
1739 { 0x17, "i" },
1740 { 0x18, "o" },
1741 { 0x19, "p" },
1742 { 0x1a, "bracket_left" },
1743 { 0x1b, "bracket_right" },
1744 { 0x1c, "ret" },
1746 { 0x1e, "a" },
1747 { 0x1f, "s" },
1748 { 0x20, "d" },
1749 { 0x21, "f" },
1750 { 0x22, "g" },
1751 { 0x23, "h" },
1752 { 0x24, "j" },
1753 { 0x25, "k" },
1754 { 0x26, "l" },
1755 { 0x27, "semicolon" },
1756 { 0x28, "apostrophe" },
1757 { 0x29, "grave_accent" },
1759 { 0x2b, "backslash" },
1760 { 0x2c, "z" },
1761 { 0x2d, "x" },
1762 { 0x2e, "c" },
1763 { 0x2f, "v" },
1764 { 0x30, "b" },
1765 { 0x31, "n" },
1766 { 0x32, "m" },
1767 { 0x33, "comma" },
1768 { 0x34, "dot" },
1769 { 0x35, "slash" },
1771 { 0x37, "asterisk" },
1773 { 0x39, "spc" },
1774 { 0x3a, "caps_lock" },
1775 { 0x3b, "f1" },
1776 { 0x3c, "f2" },
1777 { 0x3d, "f3" },
1778 { 0x3e, "f4" },
1779 { 0x3f, "f5" },
1780 { 0x40, "f6" },
1781 { 0x41, "f7" },
1782 { 0x42, "f8" },
1783 { 0x43, "f9" },
1784 { 0x44, "f10" },
1785 { 0x45, "num_lock" },
1786 { 0x46, "scroll_lock" },
1788 { 0xb5, "kp_divide" },
1789 { 0x37, "kp_multiply" },
1790 { 0x4a, "kp_subtract" },
1791 { 0x4e, "kp_add" },
1792 { 0x9c, "kp_enter" },
1793 { 0x53, "kp_decimal" },
1794 { 0x54, "sysrq" },
1796 { 0x52, "kp_0" },
1797 { 0x4f, "kp_1" },
1798 { 0x50, "kp_2" },
1799 { 0x51, "kp_3" },
1800 { 0x4b, "kp_4" },
1801 { 0x4c, "kp_5" },
1802 { 0x4d, "kp_6" },
1803 { 0x47, "kp_7" },
1804 { 0x48, "kp_8" },
1805 { 0x49, "kp_9" },
1807 { 0x56, "<" },
1809 { 0x57, "f11" },
1810 { 0x58, "f12" },
1812 { 0xb7, "print" },
1814 { 0xc7, "home" },
1815 { 0xc9, "pgup" },
1816 { 0xd1, "pgdn" },
1817 { 0xcf, "end" },
1819 { 0xcb, "left" },
1820 { 0xc8, "up" },
1821 { 0xd0, "down" },
1822 { 0xcd, "right" },
1824 { 0xd2, "insert" },
1825 { 0xd3, "delete" },
1826 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1827 { 0xf0, "stop" },
1828 { 0xf1, "again" },
1829 { 0xf2, "props" },
1830 { 0xf3, "undo" },
1831 { 0xf4, "front" },
1832 { 0xf5, "copy" },
1833 { 0xf6, "open" },
1834 { 0xf7, "paste" },
1835 { 0xf8, "find" },
1836 { 0xf9, "cut" },
1837 { 0xfa, "lf" },
1838 { 0xfb, "help" },
1839 { 0xfc, "meta_l" },
1840 { 0xfd, "meta_r" },
1841 { 0xfe, "compose" },
1842 #endif
1843 { 0, NULL },
1846 static int get_keycode(const char *key)
1848 const KeyDef *p;
1849 char *endp;
1850 int ret;
1852 for(p = key_defs; p->name != NULL; p++) {
1853 if (!strcmp(key, p->name))
1854 return p->keycode;
1856 if (strstart(key, "0x", NULL)) {
1857 ret = strtoul(key, &endp, 0);
1858 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1859 return ret;
1861 return -1;
1864 #define MAX_KEYCODES 16
1865 static uint8_t keycodes[MAX_KEYCODES];
1866 static int nb_pending_keycodes;
1867 static QEMUTimer *key_timer;
1869 static void release_keys(void *opaque)
1871 int keycode;
1873 while (nb_pending_keycodes > 0) {
1874 nb_pending_keycodes--;
1875 keycode = keycodes[nb_pending_keycodes];
1876 if (keycode & 0x80)
1877 kbd_put_keycode(0xe0);
1878 kbd_put_keycode(keycode | 0x80);
1882 static void do_sendkey(Monitor *mon, const QDict *qdict)
1884 char keyname_buf[16];
1885 char *separator;
1886 int keyname_len, keycode, i;
1887 const char *string = qdict_get_str(qdict, "string");
1888 int has_hold_time = qdict_haskey(qdict, "hold_time");
1889 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
1891 if (nb_pending_keycodes > 0) {
1892 qemu_del_timer(key_timer);
1893 release_keys(NULL);
1895 if (!has_hold_time)
1896 hold_time = 100;
1897 i = 0;
1898 while (1) {
1899 separator = strchr(string, '-');
1900 keyname_len = separator ? separator - string : strlen(string);
1901 if (keyname_len > 0) {
1902 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1903 if (keyname_len > sizeof(keyname_buf) - 1) {
1904 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
1905 return;
1907 if (i == MAX_KEYCODES) {
1908 monitor_printf(mon, "too many keys\n");
1909 return;
1911 keyname_buf[keyname_len] = 0;
1912 keycode = get_keycode(keyname_buf);
1913 if (keycode < 0) {
1914 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
1915 return;
1917 keycodes[i++] = keycode;
1919 if (!separator)
1920 break;
1921 string = separator + 1;
1923 nb_pending_keycodes = i;
1924 /* key down events */
1925 for (i = 0; i < nb_pending_keycodes; i++) {
1926 keycode = keycodes[i];
1927 if (keycode & 0x80)
1928 kbd_put_keycode(0xe0);
1929 kbd_put_keycode(keycode & 0x7f);
1931 /* delayed key up events */
1932 qemu_mod_timer(key_timer, qemu_get_clock_ns(vm_clock) +
1933 muldiv64(get_ticks_per_sec(), hold_time, 1000));
1936 static int mouse_button_state;
1938 static void do_mouse_move(Monitor *mon, const QDict *qdict)
1940 int dx, dy, dz;
1941 const char *dx_str = qdict_get_str(qdict, "dx_str");
1942 const char *dy_str = qdict_get_str(qdict, "dy_str");
1943 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1944 dx = strtol(dx_str, NULL, 0);
1945 dy = strtol(dy_str, NULL, 0);
1946 dz = 0;
1947 if (dz_str)
1948 dz = strtol(dz_str, NULL, 0);
1949 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1952 static void do_mouse_button(Monitor *mon, const QDict *qdict)
1954 int button_state = qdict_get_int(qdict, "button_state");
1955 mouse_button_state = button_state;
1956 kbd_mouse_event(0, 0, 0, mouse_button_state);
1959 static void do_ioport_read(Monitor *mon, const QDict *qdict)
1961 int size = qdict_get_int(qdict, "size");
1962 int addr = qdict_get_int(qdict, "addr");
1963 int has_index = qdict_haskey(qdict, "index");
1964 uint32_t val;
1965 int suffix;
1967 if (has_index) {
1968 int index = qdict_get_int(qdict, "index");
1969 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
1970 addr++;
1972 addr &= 0xffff;
1974 switch(size) {
1975 default:
1976 case 1:
1977 val = cpu_inb(addr);
1978 suffix = 'b';
1979 break;
1980 case 2:
1981 val = cpu_inw(addr);
1982 suffix = 'w';
1983 break;
1984 case 4:
1985 val = cpu_inl(addr);
1986 suffix = 'l';
1987 break;
1989 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1990 suffix, addr, size * 2, val);
1993 static void do_ioport_write(Monitor *mon, const QDict *qdict)
1995 int size = qdict_get_int(qdict, "size");
1996 int addr = qdict_get_int(qdict, "addr");
1997 int val = qdict_get_int(qdict, "val");
1999 addr &= IOPORTS_MASK;
2001 switch (size) {
2002 default:
2003 case 1:
2004 cpu_outb(addr, val);
2005 break;
2006 case 2:
2007 cpu_outw(addr, val);
2008 break;
2009 case 4:
2010 cpu_outl(addr, val);
2011 break;
2015 static void do_boot_set(Monitor *mon, const QDict *qdict)
2017 int res;
2018 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
2020 res = qemu_boot_set(bootdevice);
2021 if (res == 0) {
2022 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
2023 } else if (res > 0) {
2024 monitor_printf(mon, "setting boot device list failed\n");
2025 } else {
2026 monitor_printf(mon, "no function defined to set boot device list for "
2027 "this architecture\n");
2032 * do_system_reset(): Issue a machine reset
2034 static int do_system_reset(Monitor *mon, const QDict *qdict,
2035 QObject **ret_data)
2037 qemu_system_reset_request();
2038 return 0;
2042 * do_system_powerdown(): Issue a machine powerdown
2044 static int do_system_powerdown(Monitor *mon, const QDict *qdict,
2045 QObject **ret_data)
2047 qemu_system_powerdown_request();
2048 return 0;
2051 #if defined(TARGET_I386)
2052 static void print_pte(Monitor *mon, target_phys_addr_t addr,
2053 target_phys_addr_t pte,
2054 target_phys_addr_t mask)
2056 #ifdef TARGET_X86_64
2057 if (addr & (1ULL << 47)) {
2058 addr |= -1LL << 48;
2060 #endif
2061 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
2062 " %c%c%c%c%c%c%c%c%c\n",
2063 addr,
2064 pte & mask,
2065 pte & PG_NX_MASK ? 'X' : '-',
2066 pte & PG_GLOBAL_MASK ? 'G' : '-',
2067 pte & PG_PSE_MASK ? 'P' : '-',
2068 pte & PG_DIRTY_MASK ? 'D' : '-',
2069 pte & PG_ACCESSED_MASK ? 'A' : '-',
2070 pte & PG_PCD_MASK ? 'C' : '-',
2071 pte & PG_PWT_MASK ? 'T' : '-',
2072 pte & PG_USER_MASK ? 'U' : '-',
2073 pte & PG_RW_MASK ? 'W' : '-');
2076 static void tlb_info_32(Monitor *mon, CPUState *env)
2078 unsigned int l1, l2;
2079 uint32_t pgd, pde, pte;
2081 pgd = env->cr[3] & ~0xfff;
2082 for(l1 = 0; l1 < 1024; l1++) {
2083 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
2084 pde = le32_to_cpu(pde);
2085 if (pde & PG_PRESENT_MASK) {
2086 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
2087 /* 4M pages */
2088 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
2089 } else {
2090 for(l2 = 0; l2 < 1024; l2++) {
2091 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
2092 pte = le32_to_cpu(pte);
2093 if (pte & PG_PRESENT_MASK) {
2094 print_pte(mon, (l1 << 22) + (l2 << 12),
2095 pte & ~PG_PSE_MASK,
2096 ~0xfff);
2104 static void tlb_info_pae32(Monitor *mon, CPUState *env)
2106 unsigned int l1, l2, l3;
2107 uint64_t pdpe, pde, pte;
2108 uint64_t pdp_addr, pd_addr, pt_addr;
2110 pdp_addr = env->cr[3] & ~0x1f;
2111 for (l1 = 0; l1 < 4; l1++) {
2112 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
2113 pdpe = le64_to_cpu(pdpe);
2114 if (pdpe & PG_PRESENT_MASK) {
2115 pd_addr = pdpe & 0x3fffffffff000ULL;
2116 for (l2 = 0; l2 < 512; l2++) {
2117 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
2118 pde = le64_to_cpu(pde);
2119 if (pde & PG_PRESENT_MASK) {
2120 if (pde & PG_PSE_MASK) {
2121 /* 2M pages with PAE, CR4.PSE is ignored */
2122 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
2123 ~((target_phys_addr_t)(1 << 20) - 1));
2124 } else {
2125 pt_addr = pde & 0x3fffffffff000ULL;
2126 for (l3 = 0; l3 < 512; l3++) {
2127 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
2128 pte = le64_to_cpu(pte);
2129 if (pte & PG_PRESENT_MASK) {
2130 print_pte(mon, (l1 << 30 ) + (l2 << 21)
2131 + (l3 << 12),
2132 pte & ~PG_PSE_MASK,
2133 ~(target_phys_addr_t)0xfff);
2143 #ifdef TARGET_X86_64
2144 static void tlb_info_64(Monitor *mon, CPUState *env)
2146 uint64_t l1, l2, l3, l4;
2147 uint64_t pml4e, pdpe, pde, pte;
2148 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
2150 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
2151 for (l1 = 0; l1 < 512; l1++) {
2152 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
2153 pml4e = le64_to_cpu(pml4e);
2154 if (pml4e & PG_PRESENT_MASK) {
2155 pdp_addr = pml4e & 0x3fffffffff000ULL;
2156 for (l2 = 0; l2 < 512; l2++) {
2157 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
2158 pdpe = le64_to_cpu(pdpe);
2159 if (pdpe & PG_PRESENT_MASK) {
2160 if (pdpe & PG_PSE_MASK) {
2161 /* 1G pages, CR4.PSE is ignored */
2162 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
2163 0x3ffffc0000000ULL);
2164 } else {
2165 pd_addr = pdpe & 0x3fffffffff000ULL;
2166 for (l3 = 0; l3 < 512; l3++) {
2167 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
2168 pde = le64_to_cpu(pde);
2169 if (pde & PG_PRESENT_MASK) {
2170 if (pde & PG_PSE_MASK) {
2171 /* 2M pages, CR4.PSE is ignored */
2172 print_pte(mon, (l1 << 39) + (l2 << 30) +
2173 (l3 << 21), pde,
2174 0x3ffffffe00000ULL);
2175 } else {
2176 pt_addr = pde & 0x3fffffffff000ULL;
2177 for (l4 = 0; l4 < 512; l4++) {
2178 cpu_physical_memory_read(pt_addr
2179 + l4 * 8,
2180 &pte, 8);
2181 pte = le64_to_cpu(pte);
2182 if (pte & PG_PRESENT_MASK) {
2183 print_pte(mon, (l1 << 39) +
2184 (l2 << 30) +
2185 (l3 << 21) + (l4 << 12),
2186 pte & ~PG_PSE_MASK,
2187 0x3fffffffff000ULL);
2199 #endif
2201 static void tlb_info(Monitor *mon)
2203 CPUState *env;
2205 env = mon_get_cpu();
2207 if (!(env->cr[0] & CR0_PG_MASK)) {
2208 monitor_printf(mon, "PG disabled\n");
2209 return;
2211 if (env->cr[4] & CR4_PAE_MASK) {
2212 #ifdef TARGET_X86_64
2213 if (env->hflags & HF_LMA_MASK) {
2214 tlb_info_64(mon, env);
2215 } else
2216 #endif
2218 tlb_info_pae32(mon, env);
2220 } else {
2221 tlb_info_32(mon, env);
2225 static void mem_print(Monitor *mon, target_phys_addr_t *pstart,
2226 int *plast_prot,
2227 target_phys_addr_t end, int prot)
2229 int prot1;
2230 prot1 = *plast_prot;
2231 if (prot != prot1) {
2232 if (*pstart != -1) {
2233 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
2234 TARGET_FMT_plx " %c%c%c\n",
2235 *pstart, end, end - *pstart,
2236 prot1 & PG_USER_MASK ? 'u' : '-',
2237 'r',
2238 prot1 & PG_RW_MASK ? 'w' : '-');
2240 if (prot != 0)
2241 *pstart = end;
2242 else
2243 *pstart = -1;
2244 *plast_prot = prot;
2248 static void mem_info_32(Monitor *mon, CPUState *env)
2250 unsigned int l1, l2;
2251 int prot, last_prot;
2252 uint32_t pgd, pde, pte;
2253 target_phys_addr_t start, end;
2255 pgd = env->cr[3] & ~0xfff;
2256 last_prot = 0;
2257 start = -1;
2258 for(l1 = 0; l1 < 1024; l1++) {
2259 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
2260 pde = le32_to_cpu(pde);
2261 end = l1 << 22;
2262 if (pde & PG_PRESENT_MASK) {
2263 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
2264 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
2265 mem_print(mon, &start, &last_prot, end, prot);
2266 } else {
2267 for(l2 = 0; l2 < 1024; l2++) {
2268 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
2269 pte = le32_to_cpu(pte);
2270 end = (l1 << 22) + (l2 << 12);
2271 if (pte & PG_PRESENT_MASK) {
2272 prot = pte & pde &
2273 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
2274 } else {
2275 prot = 0;
2277 mem_print(mon, &start, &last_prot, end, prot);
2280 } else {
2281 prot = 0;
2282 mem_print(mon, &start, &last_prot, end, prot);
2285 /* Flush last range */
2286 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
2289 static void mem_info_pae32(Monitor *mon, CPUState *env)
2291 unsigned int l1, l2, l3;
2292 int prot, last_prot;
2293 uint64_t pdpe, pde, pte;
2294 uint64_t pdp_addr, pd_addr, pt_addr;
2295 target_phys_addr_t start, end;
2297 pdp_addr = env->cr[3] & ~0x1f;
2298 last_prot = 0;
2299 start = -1;
2300 for (l1 = 0; l1 < 4; l1++) {
2301 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
2302 pdpe = le64_to_cpu(pdpe);
2303 end = l1 << 30;
2304 if (pdpe & PG_PRESENT_MASK) {
2305 pd_addr = pdpe & 0x3fffffffff000ULL;
2306 for (l2 = 0; l2 < 512; l2++) {
2307 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
2308 pde = le64_to_cpu(pde);
2309 end = (l1 << 30) + (l2 << 21);
2310 if (pde & PG_PRESENT_MASK) {
2311 if (pde & PG_PSE_MASK) {
2312 prot = pde & (PG_USER_MASK | PG_RW_MASK |
2313 PG_PRESENT_MASK);
2314 mem_print(mon, &start, &last_prot, end, prot);
2315 } else {
2316 pt_addr = pde & 0x3fffffffff000ULL;
2317 for (l3 = 0; l3 < 512; l3++) {
2318 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
2319 pte = le64_to_cpu(pte);
2320 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
2321 if (pte & PG_PRESENT_MASK) {
2322 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
2323 PG_PRESENT_MASK);
2324 } else {
2325 prot = 0;
2327 mem_print(mon, &start, &last_prot, end, prot);
2330 } else {
2331 prot = 0;
2332 mem_print(mon, &start, &last_prot, end, prot);
2335 } else {
2336 prot = 0;
2337 mem_print(mon, &start, &last_prot, end, prot);
2340 /* Flush last range */
2341 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
2345 #ifdef TARGET_X86_64
2346 static void mem_info_64(Monitor *mon, CPUState *env)
2348 int prot, last_prot;
2349 uint64_t l1, l2, l3, l4;
2350 uint64_t pml4e, pdpe, pde, pte;
2351 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
2353 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
2354 last_prot = 0;
2355 start = -1;
2356 for (l1 = 0; l1 < 512; l1++) {
2357 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
2358 pml4e = le64_to_cpu(pml4e);
2359 end = l1 << 39;
2360 if (pml4e & PG_PRESENT_MASK) {
2361 pdp_addr = pml4e & 0x3fffffffff000ULL;
2362 for (l2 = 0; l2 < 512; l2++) {
2363 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
2364 pdpe = le64_to_cpu(pdpe);
2365 end = (l1 << 39) + (l2 << 30);
2366 if (pdpe & PG_PRESENT_MASK) {
2367 if (pdpe & PG_PSE_MASK) {
2368 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
2369 PG_PRESENT_MASK);
2370 prot &= pml4e;
2371 mem_print(mon, &start, &last_prot, end, prot);
2372 } else {
2373 pd_addr = pdpe & 0x3fffffffff000ULL;
2374 for (l3 = 0; l3 < 512; l3++) {
2375 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
2376 pde = le64_to_cpu(pde);
2377 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
2378 if (pde & PG_PRESENT_MASK) {
2379 if (pde & PG_PSE_MASK) {
2380 prot = pde & (PG_USER_MASK | PG_RW_MASK |
2381 PG_PRESENT_MASK);
2382 prot &= pml4e & pdpe;
2383 mem_print(mon, &start, &last_prot, end, prot);
2384 } else {
2385 pt_addr = pde & 0x3fffffffff000ULL;
2386 for (l4 = 0; l4 < 512; l4++) {
2387 cpu_physical_memory_read(pt_addr
2388 + l4 * 8,
2389 &pte, 8);
2390 pte = le64_to_cpu(pte);
2391 end = (l1 << 39) + (l2 << 30) +
2392 (l3 << 21) + (l4 << 12);
2393 if (pte & PG_PRESENT_MASK) {
2394 prot = pte & (PG_USER_MASK | PG_RW_MASK |
2395 PG_PRESENT_MASK);
2396 prot &= pml4e & pdpe & pde;
2397 } else {
2398 prot = 0;
2400 mem_print(mon, &start, &last_prot, end, prot);
2403 } else {
2404 prot = 0;
2405 mem_print(mon, &start, &last_prot, end, prot);
2409 } else {
2410 prot = 0;
2411 mem_print(mon, &start, &last_prot, end, prot);
2414 } else {
2415 prot = 0;
2416 mem_print(mon, &start, &last_prot, end, prot);
2419 /* Flush last range */
2420 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 48, 0);
2422 #endif
2424 static void mem_info(Monitor *mon)
2426 CPUState *env;
2428 env = mon_get_cpu();
2430 if (!(env->cr[0] & CR0_PG_MASK)) {
2431 monitor_printf(mon, "PG disabled\n");
2432 return;
2434 if (env->cr[4] & CR4_PAE_MASK) {
2435 #ifdef TARGET_X86_64
2436 if (env->hflags & HF_LMA_MASK) {
2437 mem_info_64(mon, env);
2438 } else
2439 #endif
2441 mem_info_pae32(mon, env);
2443 } else {
2444 mem_info_32(mon, env);
2447 #endif
2449 #if defined(TARGET_SH4)
2451 static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
2453 monitor_printf(mon, " tlb%i:\t"
2454 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
2455 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
2456 "dirty=%hhu writethrough=%hhu\n",
2457 idx,
2458 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
2459 tlb->v, tlb->sh, tlb->c, tlb->pr,
2460 tlb->d, tlb->wt);
2463 static void tlb_info(Monitor *mon)
2465 CPUState *env = mon_get_cpu();
2466 int i;
2468 monitor_printf (mon, "ITLB:\n");
2469 for (i = 0 ; i < ITLB_SIZE ; i++)
2470 print_tlb (mon, i, &env->itlb[i]);
2471 monitor_printf (mon, "UTLB:\n");
2472 for (i = 0 ; i < UTLB_SIZE ; i++)
2473 print_tlb (mon, i, &env->utlb[i]);
2476 #endif
2478 #if defined(TARGET_SPARC)
2479 static void tlb_info(Monitor *mon)
2481 CPUState *env1 = mon_get_cpu();
2483 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
2485 #endif
2487 static void do_info_kvm_print(Monitor *mon, const QObject *data)
2489 QDict *qdict;
2491 qdict = qobject_to_qdict(data);
2493 monitor_printf(mon, "kvm support: ");
2494 if (qdict_get_bool(qdict, "present")) {
2495 monitor_printf(mon, "%s\n", qdict_get_bool(qdict, "enabled") ?
2496 "enabled" : "disabled");
2497 } else {
2498 monitor_printf(mon, "not compiled\n");
2502 static void do_info_kvm(Monitor *mon, QObject **ret_data)
2504 #ifdef CONFIG_KVM
2505 *ret_data = qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
2506 kvm_enabled());
2507 #else
2508 *ret_data = qobject_from_jsonf("{ 'enabled': false, 'present': false }");
2509 #endif
2512 static void do_info_numa(Monitor *mon)
2514 int i;
2515 CPUState *env;
2517 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2518 for (i = 0; i < nb_numa_nodes; i++) {
2519 monitor_printf(mon, "node %d cpus:", i);
2520 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2521 if (env->numa_node == i) {
2522 monitor_printf(mon, " %d", env->cpu_index);
2525 monitor_printf(mon, "\n");
2526 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2527 node_mem[i] >> 20);
2531 #ifdef CONFIG_PROFILER
2533 int64_t qemu_time;
2534 int64_t dev_time;
2536 static void do_info_profile(Monitor *mon)
2538 int64_t total;
2539 total = qemu_time;
2540 if (total == 0)
2541 total = 1;
2542 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
2543 dev_time, dev_time / (double)get_ticks_per_sec());
2544 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
2545 qemu_time, qemu_time / (double)get_ticks_per_sec());
2546 qemu_time = 0;
2547 dev_time = 0;
2549 #else
2550 static void do_info_profile(Monitor *mon)
2552 monitor_printf(mon, "Internal profiler not compiled\n");
2554 #endif
2556 /* Capture support */
2557 static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
2559 static void do_info_capture(Monitor *mon)
2561 int i;
2562 CaptureState *s;
2564 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2565 monitor_printf(mon, "[%d]: ", i);
2566 s->ops.info (s->opaque);
2570 #ifdef HAS_AUDIO
2571 static void do_stop_capture(Monitor *mon, const QDict *qdict)
2573 int i;
2574 int n = qdict_get_int(qdict, "n");
2575 CaptureState *s;
2577 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2578 if (i == n) {
2579 s->ops.destroy (s->opaque);
2580 QLIST_REMOVE (s, entries);
2581 g_free (s);
2582 return;
2587 static void do_wav_capture(Monitor *mon, const QDict *qdict)
2589 const char *path = qdict_get_str(qdict, "path");
2590 int has_freq = qdict_haskey(qdict, "freq");
2591 int freq = qdict_get_try_int(qdict, "freq", -1);
2592 int has_bits = qdict_haskey(qdict, "bits");
2593 int bits = qdict_get_try_int(qdict, "bits", -1);
2594 int has_channels = qdict_haskey(qdict, "nchannels");
2595 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
2596 CaptureState *s;
2598 s = g_malloc0 (sizeof (*s));
2600 freq = has_freq ? freq : 44100;
2601 bits = has_bits ? bits : 16;
2602 nchannels = has_channels ? nchannels : 2;
2604 if (wav_start_capture (s, path, freq, bits, nchannels)) {
2605 monitor_printf(mon, "Failed to add wave capture\n");
2606 g_free (s);
2607 return;
2609 QLIST_INSERT_HEAD (&capture_head, s, entries);
2611 #endif
2613 #if defined(TARGET_I386)
2614 static int do_inject_nmi(Monitor *mon, const QDict *qdict, QObject **ret_data)
2616 CPUState *env;
2618 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2619 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2622 return 0;
2624 #else
2625 static int do_inject_nmi(Monitor *mon, const QDict *qdict, QObject **ret_data)
2627 qerror_report(QERR_UNSUPPORTED);
2628 return -1;
2630 #endif
2632 static void do_info_status_print(Monitor *mon, const QObject *data)
2634 QDict *qdict;
2636 qdict = qobject_to_qdict(data);
2638 monitor_printf(mon, "VM status: ");
2639 if (qdict_get_bool(qdict, "running")) {
2640 monitor_printf(mon, "running");
2641 if (qdict_get_bool(qdict, "singlestep")) {
2642 monitor_printf(mon, " (single step mode)");
2644 } else {
2645 monitor_printf(mon, "paused");
2648 monitor_printf(mon, "\n");
2651 static void do_info_status(Monitor *mon, QObject **ret_data)
2653 *ret_data = qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2654 vm_running, singlestep);
2657 static qemu_acl *find_acl(Monitor *mon, const char *name)
2659 qemu_acl *acl = qemu_acl_find(name);
2661 if (!acl) {
2662 monitor_printf(mon, "acl: unknown list '%s'\n", name);
2664 return acl;
2667 static void do_acl_show(Monitor *mon, const QDict *qdict)
2669 const char *aclname = qdict_get_str(qdict, "aclname");
2670 qemu_acl *acl = find_acl(mon, aclname);
2671 qemu_acl_entry *entry;
2672 int i = 0;
2674 if (acl) {
2675 monitor_printf(mon, "policy: %s\n",
2676 acl->defaultDeny ? "deny" : "allow");
2677 QTAILQ_FOREACH(entry, &acl->entries, next) {
2678 i++;
2679 monitor_printf(mon, "%d: %s %s\n", i,
2680 entry->deny ? "deny" : "allow", entry->match);
2685 static void do_acl_reset(Monitor *mon, const QDict *qdict)
2687 const char *aclname = qdict_get_str(qdict, "aclname");
2688 qemu_acl *acl = find_acl(mon, aclname);
2690 if (acl) {
2691 qemu_acl_reset(acl);
2692 monitor_printf(mon, "acl: removed all rules\n");
2696 static void do_acl_policy(Monitor *mon, const QDict *qdict)
2698 const char *aclname = qdict_get_str(qdict, "aclname");
2699 const char *policy = qdict_get_str(qdict, "policy");
2700 qemu_acl *acl = find_acl(mon, aclname);
2702 if (acl) {
2703 if (strcmp(policy, "allow") == 0) {
2704 acl->defaultDeny = 0;
2705 monitor_printf(mon, "acl: policy set to 'allow'\n");
2706 } else if (strcmp(policy, "deny") == 0) {
2707 acl->defaultDeny = 1;
2708 monitor_printf(mon, "acl: policy set to 'deny'\n");
2709 } else {
2710 monitor_printf(mon, "acl: unknown policy '%s', "
2711 "expected 'deny' or 'allow'\n", policy);
2716 static void do_acl_add(Monitor *mon, const QDict *qdict)
2718 const char *aclname = qdict_get_str(qdict, "aclname");
2719 const char *match = qdict_get_str(qdict, "match");
2720 const char *policy = qdict_get_str(qdict, "policy");
2721 int has_index = qdict_haskey(qdict, "index");
2722 int index = qdict_get_try_int(qdict, "index", -1);
2723 qemu_acl *acl = find_acl(mon, aclname);
2724 int deny, ret;
2726 if (acl) {
2727 if (strcmp(policy, "allow") == 0) {
2728 deny = 0;
2729 } else if (strcmp(policy, "deny") == 0) {
2730 deny = 1;
2731 } else {
2732 monitor_printf(mon, "acl: unknown policy '%s', "
2733 "expected 'deny' or 'allow'\n", policy);
2734 return;
2736 if (has_index)
2737 ret = qemu_acl_insert(acl, deny, match, index);
2738 else
2739 ret = qemu_acl_append(acl, deny, match);
2740 if (ret < 0)
2741 monitor_printf(mon, "acl: unable to add acl entry\n");
2742 else
2743 monitor_printf(mon, "acl: added rule at position %d\n", ret);
2747 static void do_acl_remove(Monitor *mon, const QDict *qdict)
2749 const char *aclname = qdict_get_str(qdict, "aclname");
2750 const char *match = qdict_get_str(qdict, "match");
2751 qemu_acl *acl = find_acl(mon, aclname);
2752 int ret;
2754 if (acl) {
2755 ret = qemu_acl_remove(acl, match);
2756 if (ret < 0)
2757 monitor_printf(mon, "acl: no matching acl entry\n");
2758 else
2759 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
2763 #if defined(TARGET_I386)
2764 static void do_inject_mce(Monitor *mon, const QDict *qdict)
2766 CPUState *cenv;
2767 int cpu_index = qdict_get_int(qdict, "cpu_index");
2768 int bank = qdict_get_int(qdict, "bank");
2769 uint64_t status = qdict_get_int(qdict, "status");
2770 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2771 uint64_t addr = qdict_get_int(qdict, "addr");
2772 uint64_t misc = qdict_get_int(qdict, "misc");
2773 int flags = MCE_INJECT_UNCOND_AO;
2775 if (qdict_get_try_bool(qdict, "broadcast", 0)) {
2776 flags |= MCE_INJECT_BROADCAST;
2778 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu) {
2779 if (cenv->cpu_index == cpu_index) {
2780 cpu_x86_inject_mce(mon, cenv, bank, status, mcg_status, addr, misc,
2781 flags);
2782 break;
2786 #endif
2788 static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2790 const char *fdname = qdict_get_str(qdict, "fdname");
2791 mon_fd_t *monfd;
2792 int fd;
2794 fd = qemu_chr_fe_get_msgfd(mon->chr);
2795 if (fd == -1) {
2796 qerror_report(QERR_FD_NOT_SUPPLIED);
2797 return -1;
2800 if (qemu_isdigit(fdname[0])) {
2801 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2802 "a name not starting with a digit");
2803 return -1;
2806 QLIST_FOREACH(monfd, &mon->fds, next) {
2807 if (strcmp(monfd->name, fdname) != 0) {
2808 continue;
2811 close(monfd->fd);
2812 monfd->fd = fd;
2813 return 0;
2816 monfd = g_malloc0(sizeof(mon_fd_t));
2817 monfd->name = g_strdup(fdname);
2818 monfd->fd = fd;
2820 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
2821 return 0;
2824 static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2826 const char *fdname = qdict_get_str(qdict, "fdname");
2827 mon_fd_t *monfd;
2829 QLIST_FOREACH(monfd, &mon->fds, next) {
2830 if (strcmp(monfd->name, fdname) != 0) {
2831 continue;
2834 QLIST_REMOVE(monfd, next);
2835 close(monfd->fd);
2836 g_free(monfd->name);
2837 g_free(monfd);
2838 return 0;
2841 qerror_report(QERR_FD_NOT_FOUND, fdname);
2842 return -1;
2845 static void do_loadvm(Monitor *mon, const QDict *qdict)
2847 int saved_vm_running = vm_running;
2848 const char *name = qdict_get_str(qdict, "name");
2850 vm_stop(VMSTOP_LOADVM);
2852 if (load_vmstate(name) == 0 && saved_vm_running) {
2853 vm_start();
2857 int monitor_get_fd(Monitor *mon, const char *fdname)
2859 mon_fd_t *monfd;
2861 QLIST_FOREACH(monfd, &mon->fds, next) {
2862 int fd;
2864 if (strcmp(monfd->name, fdname) != 0) {
2865 continue;
2868 fd = monfd->fd;
2870 /* caller takes ownership of fd */
2871 QLIST_REMOVE(monfd, next);
2872 g_free(monfd->name);
2873 g_free(monfd);
2875 return fd;
2878 return -1;
2881 static const mon_cmd_t mon_cmds[] = {
2882 #include "hmp-commands.h"
2883 { NULL, NULL, },
2886 /* Please update hmp-commands.hx when adding or changing commands */
2887 static const mon_cmd_t info_cmds[] = {
2889 .name = "version",
2890 .args_type = "",
2891 .params = "",
2892 .help = "show the version of QEMU",
2893 .user_print = do_info_version_print,
2894 .mhandler.info_new = do_info_version,
2897 .name = "network",
2898 .args_type = "",
2899 .params = "",
2900 .help = "show the network state",
2901 .mhandler.info = do_info_network,
2904 .name = "chardev",
2905 .args_type = "",
2906 .params = "",
2907 .help = "show the character devices",
2908 .user_print = qemu_chr_info_print,
2909 .mhandler.info_new = qemu_chr_info,
2912 .name = "block",
2913 .args_type = "",
2914 .params = "",
2915 .help = "show the block devices",
2916 .user_print = bdrv_info_print,
2917 .mhandler.info_new = bdrv_info,
2920 .name = "blockstats",
2921 .args_type = "",
2922 .params = "",
2923 .help = "show block device statistics",
2924 .user_print = bdrv_stats_print,
2925 .mhandler.info_new = bdrv_info_stats,
2928 .name = "registers",
2929 .args_type = "",
2930 .params = "",
2931 .help = "show the cpu registers",
2932 .mhandler.info = do_info_registers,
2935 .name = "cpus",
2936 .args_type = "",
2937 .params = "",
2938 .help = "show infos for each CPU",
2939 .user_print = monitor_print_cpus,
2940 .mhandler.info_new = do_info_cpus,
2943 .name = "history",
2944 .args_type = "",
2945 .params = "",
2946 .help = "show the command line history",
2947 .mhandler.info = do_info_history,
2950 .name = "irq",
2951 .args_type = "",
2952 .params = "",
2953 .help = "show the interrupts statistics (if available)",
2954 .mhandler.info = irq_info,
2957 .name = "pic",
2958 .args_type = "",
2959 .params = "",
2960 .help = "show i8259 (PIC) state",
2961 .mhandler.info = pic_info,
2964 .name = "pci",
2965 .args_type = "",
2966 .params = "",
2967 .help = "show PCI info",
2968 .user_print = do_pci_info_print,
2969 .mhandler.info_new = do_pci_info,
2971 #if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC)
2973 .name = "tlb",
2974 .args_type = "",
2975 .params = "",
2976 .help = "show virtual to physical memory mappings",
2977 .mhandler.info = tlb_info,
2979 #endif
2980 #if defined(TARGET_I386)
2982 .name = "mem",
2983 .args_type = "",
2984 .params = "",
2985 .help = "show the active virtual memory mappings",
2986 .mhandler.info = mem_info,
2988 #endif
2990 .name = "jit",
2991 .args_type = "",
2992 .params = "",
2993 .help = "show dynamic compiler info",
2994 .mhandler.info = do_info_jit,
2997 .name = "kvm",
2998 .args_type = "",
2999 .params = "",
3000 .help = "show KVM information",
3001 .user_print = do_info_kvm_print,
3002 .mhandler.info_new = do_info_kvm,
3005 .name = "numa",
3006 .args_type = "",
3007 .params = "",
3008 .help = "show NUMA information",
3009 .mhandler.info = do_info_numa,
3012 .name = "usb",
3013 .args_type = "",
3014 .params = "",
3015 .help = "show guest USB devices",
3016 .mhandler.info = usb_info,
3019 .name = "usbhost",
3020 .args_type = "",
3021 .params = "",
3022 .help = "show host USB devices",
3023 .mhandler.info = usb_host_info,
3026 .name = "profile",
3027 .args_type = "",
3028 .params = "",
3029 .help = "show profiling information",
3030 .mhandler.info = do_info_profile,
3033 .name = "capture",
3034 .args_type = "",
3035 .params = "",
3036 .help = "show capture information",
3037 .mhandler.info = do_info_capture,
3040 .name = "snapshots",
3041 .args_type = "",
3042 .params = "",
3043 .help = "show the currently saved VM snapshots",
3044 .mhandler.info = do_info_snapshots,
3047 .name = "status",
3048 .args_type = "",
3049 .params = "",
3050 .help = "show the current VM status (running|paused)",
3051 .user_print = do_info_status_print,
3052 .mhandler.info_new = do_info_status,
3055 .name = "pcmcia",
3056 .args_type = "",
3057 .params = "",
3058 .help = "show guest PCMCIA status",
3059 .mhandler.info = pcmcia_info,
3062 .name = "mice",
3063 .args_type = "",
3064 .params = "",
3065 .help = "show which guest mouse is receiving events",
3066 .user_print = do_info_mice_print,
3067 .mhandler.info_new = do_info_mice,
3070 .name = "vnc",
3071 .args_type = "",
3072 .params = "",
3073 .help = "show the vnc server status",
3074 .user_print = do_info_vnc_print,
3075 .mhandler.info_new = do_info_vnc,
3077 #if defined(CONFIG_SPICE)
3079 .name = "spice",
3080 .args_type = "",
3081 .params = "",
3082 .help = "show the spice server status",
3083 .user_print = do_info_spice_print,
3084 .mhandler.info_new = do_info_spice,
3086 #endif
3088 .name = "name",
3089 .args_type = "",
3090 .params = "",
3091 .help = "show the current VM name",
3092 .user_print = do_info_name_print,
3093 .mhandler.info_new = do_info_name,
3096 .name = "uuid",
3097 .args_type = "",
3098 .params = "",
3099 .help = "show the current VM UUID",
3100 .user_print = do_info_uuid_print,
3101 .mhandler.info_new = do_info_uuid,
3103 #if defined(TARGET_PPC)
3105 .name = "cpustats",
3106 .args_type = "",
3107 .params = "",
3108 .help = "show CPU statistics",
3109 .mhandler.info = do_info_cpu_stats,
3111 #endif
3112 #if defined(CONFIG_SLIRP)
3114 .name = "usernet",
3115 .args_type = "",
3116 .params = "",
3117 .help = "show user network stack connection states",
3118 .mhandler.info = do_info_usernet,
3120 #endif
3122 .name = "migrate",
3123 .args_type = "",
3124 .params = "",
3125 .help = "show migration status",
3126 .user_print = do_info_migrate_print,
3127 .mhandler.info_new = do_info_migrate,
3130 .name = "balloon",
3131 .args_type = "",
3132 .params = "",
3133 .help = "show balloon information",
3134 .user_print = monitor_print_balloon,
3135 .mhandler.info_async = do_info_balloon,
3136 .flags = MONITOR_CMD_ASYNC,
3139 .name = "qtree",
3140 .args_type = "",
3141 .params = "",
3142 .help = "show device tree",
3143 .mhandler.info = do_info_qtree,
3146 .name = "qdm",
3147 .args_type = "",
3148 .params = "",
3149 .help = "show qdev device model list",
3150 .mhandler.info = do_info_qdm,
3153 .name = "roms",
3154 .args_type = "",
3155 .params = "",
3156 .help = "show roms",
3157 .mhandler.info = do_info_roms,
3159 #if defined(CONFIG_SIMPLE_TRACE)
3161 .name = "trace",
3162 .args_type = "",
3163 .params = "",
3164 .help = "show current contents of trace buffer",
3165 .mhandler.info = do_info_trace,
3168 .name = "trace-events",
3169 .args_type = "",
3170 .params = "",
3171 .help = "show available trace-events & their state",
3172 .mhandler.info = do_info_trace_events,
3174 #endif
3176 .name = NULL,
3180 static const mon_cmd_t qmp_cmds[] = {
3181 #include "qmp-commands.h"
3182 { /* NULL */ },
3185 static const mon_cmd_t qmp_query_cmds[] = {
3187 .name = "version",
3188 .args_type = "",
3189 .params = "",
3190 .help = "show the version of QEMU",
3191 .user_print = do_info_version_print,
3192 .mhandler.info_new = do_info_version,
3195 .name = "commands",
3196 .args_type = "",
3197 .params = "",
3198 .help = "list QMP available commands",
3199 .user_print = monitor_user_noop,
3200 .mhandler.info_new = do_info_commands,
3203 .name = "chardev",
3204 .args_type = "",
3205 .params = "",
3206 .help = "show the character devices",
3207 .user_print = qemu_chr_info_print,
3208 .mhandler.info_new = qemu_chr_info,
3211 .name = "block",
3212 .args_type = "",
3213 .params = "",
3214 .help = "show the block devices",
3215 .user_print = bdrv_info_print,
3216 .mhandler.info_new = bdrv_info,
3219 .name = "blockstats",
3220 .args_type = "",
3221 .params = "",
3222 .help = "show block device statistics",
3223 .user_print = bdrv_stats_print,
3224 .mhandler.info_new = bdrv_info_stats,
3227 .name = "cpus",
3228 .args_type = "",
3229 .params = "",
3230 .help = "show infos for each CPU",
3231 .user_print = monitor_print_cpus,
3232 .mhandler.info_new = do_info_cpus,
3235 .name = "pci",
3236 .args_type = "",
3237 .params = "",
3238 .help = "show PCI info",
3239 .user_print = do_pci_info_print,
3240 .mhandler.info_new = do_pci_info,
3243 .name = "kvm",
3244 .args_type = "",
3245 .params = "",
3246 .help = "show KVM information",
3247 .user_print = do_info_kvm_print,
3248 .mhandler.info_new = do_info_kvm,
3251 .name = "status",
3252 .args_type = "",
3253 .params = "",
3254 .help = "show the current VM status (running|paused)",
3255 .user_print = do_info_status_print,
3256 .mhandler.info_new = do_info_status,
3259 .name = "mice",
3260 .args_type = "",
3261 .params = "",
3262 .help = "show which guest mouse is receiving events",
3263 .user_print = do_info_mice_print,
3264 .mhandler.info_new = do_info_mice,
3267 .name = "vnc",
3268 .args_type = "",
3269 .params = "",
3270 .help = "show the vnc server status",
3271 .user_print = do_info_vnc_print,
3272 .mhandler.info_new = do_info_vnc,
3274 #if defined(CONFIG_SPICE)
3276 .name = "spice",
3277 .args_type = "",
3278 .params = "",
3279 .help = "show the spice server status",
3280 .user_print = do_info_spice_print,
3281 .mhandler.info_new = do_info_spice,
3283 #endif
3285 .name = "name",
3286 .args_type = "",
3287 .params = "",
3288 .help = "show the current VM name",
3289 .user_print = do_info_name_print,
3290 .mhandler.info_new = do_info_name,
3293 .name = "uuid",
3294 .args_type = "",
3295 .params = "",
3296 .help = "show the current VM UUID",
3297 .user_print = do_info_uuid_print,
3298 .mhandler.info_new = do_info_uuid,
3301 .name = "migrate",
3302 .args_type = "",
3303 .params = "",
3304 .help = "show migration status",
3305 .user_print = do_info_migrate_print,
3306 .mhandler.info_new = do_info_migrate,
3309 .name = "balloon",
3310 .args_type = "",
3311 .params = "",
3312 .help = "show balloon information",
3313 .user_print = monitor_print_balloon,
3314 .mhandler.info_async = do_info_balloon,
3315 .flags = MONITOR_CMD_ASYNC,
3317 { /* NULL */ },
3320 /*******************************************************************/
3322 static const char *pch;
3323 static jmp_buf expr_env;
3325 #define MD_TLONG 0
3326 #define MD_I32 1
3328 typedef struct MonitorDef {
3329 const char *name;
3330 int offset;
3331 target_long (*get_value)(const struct MonitorDef *md, int val);
3332 int type;
3333 } MonitorDef;
3335 #if defined(TARGET_I386)
3336 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
3338 CPUState *env = mon_get_cpu();
3339 return env->eip + env->segs[R_CS].base;
3341 #endif
3343 #if defined(TARGET_PPC)
3344 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
3346 CPUState *env = mon_get_cpu();
3347 unsigned int u;
3348 int i;
3350 u = 0;
3351 for (i = 0; i < 8; i++)
3352 u |= env->crf[i] << (32 - (4 * i));
3354 return u;
3357 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
3359 CPUState *env = mon_get_cpu();
3360 return env->msr;
3363 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
3365 CPUState *env = mon_get_cpu();
3366 return env->xer;
3369 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
3371 CPUState *env = mon_get_cpu();
3372 return cpu_ppc_load_decr(env);
3375 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
3377 CPUState *env = mon_get_cpu();
3378 return cpu_ppc_load_tbu(env);
3381 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
3383 CPUState *env = mon_get_cpu();
3384 return cpu_ppc_load_tbl(env);
3386 #endif
3388 #if defined(TARGET_SPARC)
3389 #ifndef TARGET_SPARC64
3390 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
3392 CPUState *env = mon_get_cpu();
3394 return cpu_get_psr(env);
3396 #endif
3398 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
3400 CPUState *env = mon_get_cpu();
3401 return env->regwptr[val];
3403 #endif
3405 static const MonitorDef monitor_defs[] = {
3406 #ifdef TARGET_I386
3408 #define SEG(name, seg) \
3409 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
3410 { name ".base", offsetof(CPUState, segs[seg].base) },\
3411 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
3413 { "eax", offsetof(CPUState, regs[0]) },
3414 { "ecx", offsetof(CPUState, regs[1]) },
3415 { "edx", offsetof(CPUState, regs[2]) },
3416 { "ebx", offsetof(CPUState, regs[3]) },
3417 { "esp|sp", offsetof(CPUState, regs[4]) },
3418 { "ebp|fp", offsetof(CPUState, regs[5]) },
3419 { "esi", offsetof(CPUState, regs[6]) },
3420 { "edi", offsetof(CPUState, regs[7]) },
3421 #ifdef TARGET_X86_64
3422 { "r8", offsetof(CPUState, regs[8]) },
3423 { "r9", offsetof(CPUState, regs[9]) },
3424 { "r10", offsetof(CPUState, regs[10]) },
3425 { "r11", offsetof(CPUState, regs[11]) },
3426 { "r12", offsetof(CPUState, regs[12]) },
3427 { "r13", offsetof(CPUState, regs[13]) },
3428 { "r14", offsetof(CPUState, regs[14]) },
3429 { "r15", offsetof(CPUState, regs[15]) },
3430 #endif
3431 { "eflags", offsetof(CPUState, eflags) },
3432 { "eip", offsetof(CPUState, eip) },
3433 SEG("cs", R_CS)
3434 SEG("ds", R_DS)
3435 SEG("es", R_ES)
3436 SEG("ss", R_SS)
3437 SEG("fs", R_FS)
3438 SEG("gs", R_GS)
3439 { "pc", 0, monitor_get_pc, },
3440 #elif defined(TARGET_PPC)
3441 /* General purpose registers */
3442 { "r0", offsetof(CPUState, gpr[0]) },
3443 { "r1", offsetof(CPUState, gpr[1]) },
3444 { "r2", offsetof(CPUState, gpr[2]) },
3445 { "r3", offsetof(CPUState, gpr[3]) },
3446 { "r4", offsetof(CPUState, gpr[4]) },
3447 { "r5", offsetof(CPUState, gpr[5]) },
3448 { "r6", offsetof(CPUState, gpr[6]) },
3449 { "r7", offsetof(CPUState, gpr[7]) },
3450 { "r8", offsetof(CPUState, gpr[8]) },
3451 { "r9", offsetof(CPUState, gpr[9]) },
3452 { "r10", offsetof(CPUState, gpr[10]) },
3453 { "r11", offsetof(CPUState, gpr[11]) },
3454 { "r12", offsetof(CPUState, gpr[12]) },
3455 { "r13", offsetof(CPUState, gpr[13]) },
3456 { "r14", offsetof(CPUState, gpr[14]) },
3457 { "r15", offsetof(CPUState, gpr[15]) },
3458 { "r16", offsetof(CPUState, gpr[16]) },
3459 { "r17", offsetof(CPUState, gpr[17]) },
3460 { "r18", offsetof(CPUState, gpr[18]) },
3461 { "r19", offsetof(CPUState, gpr[19]) },
3462 { "r20", offsetof(CPUState, gpr[20]) },
3463 { "r21", offsetof(CPUState, gpr[21]) },
3464 { "r22", offsetof(CPUState, gpr[22]) },
3465 { "r23", offsetof(CPUState, gpr[23]) },
3466 { "r24", offsetof(CPUState, gpr[24]) },
3467 { "r25", offsetof(CPUState, gpr[25]) },
3468 { "r26", offsetof(CPUState, gpr[26]) },
3469 { "r27", offsetof(CPUState, gpr[27]) },
3470 { "r28", offsetof(CPUState, gpr[28]) },
3471 { "r29", offsetof(CPUState, gpr[29]) },
3472 { "r30", offsetof(CPUState, gpr[30]) },
3473 { "r31", offsetof(CPUState, gpr[31]) },
3474 /* Floating point registers */
3475 { "f0", offsetof(CPUState, fpr[0]) },
3476 { "f1", offsetof(CPUState, fpr[1]) },
3477 { "f2", offsetof(CPUState, fpr[2]) },
3478 { "f3", offsetof(CPUState, fpr[3]) },
3479 { "f4", offsetof(CPUState, fpr[4]) },
3480 { "f5", offsetof(CPUState, fpr[5]) },
3481 { "f6", offsetof(CPUState, fpr[6]) },
3482 { "f7", offsetof(CPUState, fpr[7]) },
3483 { "f8", offsetof(CPUState, fpr[8]) },
3484 { "f9", offsetof(CPUState, fpr[9]) },
3485 { "f10", offsetof(CPUState, fpr[10]) },
3486 { "f11", offsetof(CPUState, fpr[11]) },
3487 { "f12", offsetof(CPUState, fpr[12]) },
3488 { "f13", offsetof(CPUState, fpr[13]) },
3489 { "f14", offsetof(CPUState, fpr[14]) },
3490 { "f15", offsetof(CPUState, fpr[15]) },
3491 { "f16", offsetof(CPUState, fpr[16]) },
3492 { "f17", offsetof(CPUState, fpr[17]) },
3493 { "f18", offsetof(CPUState, fpr[18]) },
3494 { "f19", offsetof(CPUState, fpr[19]) },
3495 { "f20", offsetof(CPUState, fpr[20]) },
3496 { "f21", offsetof(CPUState, fpr[21]) },
3497 { "f22", offsetof(CPUState, fpr[22]) },
3498 { "f23", offsetof(CPUState, fpr[23]) },
3499 { "f24", offsetof(CPUState, fpr[24]) },
3500 { "f25", offsetof(CPUState, fpr[25]) },
3501 { "f26", offsetof(CPUState, fpr[26]) },
3502 { "f27", offsetof(CPUState, fpr[27]) },
3503 { "f28", offsetof(CPUState, fpr[28]) },
3504 { "f29", offsetof(CPUState, fpr[29]) },
3505 { "f30", offsetof(CPUState, fpr[30]) },
3506 { "f31", offsetof(CPUState, fpr[31]) },
3507 { "fpscr", offsetof(CPUState, fpscr) },
3508 /* Next instruction pointer */
3509 { "nip|pc", offsetof(CPUState, nip) },
3510 { "lr", offsetof(CPUState, lr) },
3511 { "ctr", offsetof(CPUState, ctr) },
3512 { "decr", 0, &monitor_get_decr, },
3513 { "ccr", 0, &monitor_get_ccr, },
3514 /* Machine state register */
3515 { "msr", 0, &monitor_get_msr, },
3516 { "xer", 0, &monitor_get_xer, },
3517 { "tbu", 0, &monitor_get_tbu, },
3518 { "tbl", 0, &monitor_get_tbl, },
3519 #if defined(TARGET_PPC64)
3520 /* Address space register */
3521 { "asr", offsetof(CPUState, asr) },
3522 #endif
3523 /* Segment registers */
3524 { "sdr1", offsetof(CPUState, spr[SPR_SDR1]) },
3525 { "sr0", offsetof(CPUState, sr[0]) },
3526 { "sr1", offsetof(CPUState, sr[1]) },
3527 { "sr2", offsetof(CPUState, sr[2]) },
3528 { "sr3", offsetof(CPUState, sr[3]) },
3529 { "sr4", offsetof(CPUState, sr[4]) },
3530 { "sr5", offsetof(CPUState, sr[5]) },
3531 { "sr6", offsetof(CPUState, sr[6]) },
3532 { "sr7", offsetof(CPUState, sr[7]) },
3533 { "sr8", offsetof(CPUState, sr[8]) },
3534 { "sr9", offsetof(CPUState, sr[9]) },
3535 { "sr10", offsetof(CPUState, sr[10]) },
3536 { "sr11", offsetof(CPUState, sr[11]) },
3537 { "sr12", offsetof(CPUState, sr[12]) },
3538 { "sr13", offsetof(CPUState, sr[13]) },
3539 { "sr14", offsetof(CPUState, sr[14]) },
3540 { "sr15", offsetof(CPUState, sr[15]) },
3541 /* Too lazy to put BATs... */
3542 { "pvr", offsetof(CPUState, spr[SPR_PVR]) },
3544 { "srr0", offsetof(CPUState, spr[SPR_SRR0]) },
3545 { "srr1", offsetof(CPUState, spr[SPR_SRR1]) },
3546 { "sprg0", offsetof(CPUState, spr[SPR_SPRG0]) },
3547 { "sprg1", offsetof(CPUState, spr[SPR_SPRG1]) },
3548 { "sprg2", offsetof(CPUState, spr[SPR_SPRG2]) },
3549 { "sprg3", offsetof(CPUState, spr[SPR_SPRG3]) },
3550 { "sprg4", offsetof(CPUState, spr[SPR_SPRG4]) },
3551 { "sprg5", offsetof(CPUState, spr[SPR_SPRG5]) },
3552 { "sprg6", offsetof(CPUState, spr[SPR_SPRG6]) },
3553 { "sprg7", offsetof(CPUState, spr[SPR_SPRG7]) },
3554 { "pid", offsetof(CPUState, spr[SPR_BOOKE_PID]) },
3555 { "csrr0", offsetof(CPUState, spr[SPR_BOOKE_CSRR0]) },
3556 { "csrr1", offsetof(CPUState, spr[SPR_BOOKE_CSRR1]) },
3557 { "esr", offsetof(CPUState, spr[SPR_BOOKE_ESR]) },
3558 { "dear", offsetof(CPUState, spr[SPR_BOOKE_DEAR]) },
3559 { "mcsr", offsetof(CPUState, spr[SPR_BOOKE_MCSR]) },
3560 { "tsr", offsetof(CPUState, spr[SPR_BOOKE_TSR]) },
3561 { "tcr", offsetof(CPUState, spr[SPR_BOOKE_TCR]) },
3562 { "vrsave", offsetof(CPUState, spr[SPR_VRSAVE]) },
3563 { "pir", offsetof(CPUState, spr[SPR_BOOKE_PIR]) },
3564 { "mcsrr0", offsetof(CPUState, spr[SPR_BOOKE_MCSRR0]) },
3565 { "mcsrr1", offsetof(CPUState, spr[SPR_BOOKE_MCSRR1]) },
3566 { "decar", offsetof(CPUState, spr[SPR_BOOKE_DECAR]) },
3567 { "ivpr", offsetof(CPUState, spr[SPR_BOOKE_IVPR]) },
3568 { "epcr", offsetof(CPUState, spr[SPR_BOOKE_EPCR]) },
3569 { "sprg8", offsetof(CPUState, spr[SPR_BOOKE_SPRG8]) },
3570 { "ivor0", offsetof(CPUState, spr[SPR_BOOKE_IVOR0]) },
3571 { "ivor1", offsetof(CPUState, spr[SPR_BOOKE_IVOR1]) },
3572 { "ivor2", offsetof(CPUState, spr[SPR_BOOKE_IVOR2]) },
3573 { "ivor3", offsetof(CPUState, spr[SPR_BOOKE_IVOR3]) },
3574 { "ivor4", offsetof(CPUState, spr[SPR_BOOKE_IVOR4]) },
3575 { "ivor5", offsetof(CPUState, spr[SPR_BOOKE_IVOR5]) },
3576 { "ivor6", offsetof(CPUState, spr[SPR_BOOKE_IVOR6]) },
3577 { "ivor7", offsetof(CPUState, spr[SPR_BOOKE_IVOR7]) },
3578 { "ivor8", offsetof(CPUState, spr[SPR_BOOKE_IVOR8]) },
3579 { "ivor9", offsetof(CPUState, spr[SPR_BOOKE_IVOR9]) },
3580 { "ivor10", offsetof(CPUState, spr[SPR_BOOKE_IVOR10]) },
3581 { "ivor11", offsetof(CPUState, spr[SPR_BOOKE_IVOR11]) },
3582 { "ivor12", offsetof(CPUState, spr[SPR_BOOKE_IVOR12]) },
3583 { "ivor13", offsetof(CPUState, spr[SPR_BOOKE_IVOR13]) },
3584 { "ivor14", offsetof(CPUState, spr[SPR_BOOKE_IVOR14]) },
3585 { "ivor15", offsetof(CPUState, spr[SPR_BOOKE_IVOR15]) },
3586 { "ivor32", offsetof(CPUState, spr[SPR_BOOKE_IVOR32]) },
3587 { "ivor33", offsetof(CPUState, spr[SPR_BOOKE_IVOR33]) },
3588 { "ivor34", offsetof(CPUState, spr[SPR_BOOKE_IVOR34]) },
3589 { "ivor35", offsetof(CPUState, spr[SPR_BOOKE_IVOR35]) },
3590 { "ivor36", offsetof(CPUState, spr[SPR_BOOKE_IVOR36]) },
3591 { "ivor37", offsetof(CPUState, spr[SPR_BOOKE_IVOR37]) },
3592 { "mas0", offsetof(CPUState, spr[SPR_BOOKE_MAS0]) },
3593 { "mas1", offsetof(CPUState, spr[SPR_BOOKE_MAS1]) },
3594 { "mas2", offsetof(CPUState, spr[SPR_BOOKE_MAS2]) },
3595 { "mas3", offsetof(CPUState, spr[SPR_BOOKE_MAS3]) },
3596 { "mas4", offsetof(CPUState, spr[SPR_BOOKE_MAS4]) },
3597 { "mas6", offsetof(CPUState, spr[SPR_BOOKE_MAS6]) },
3598 { "mas7", offsetof(CPUState, spr[SPR_BOOKE_MAS7]) },
3599 { "mmucfg", offsetof(CPUState, spr[SPR_MMUCFG]) },
3600 { "tlb0cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB0CFG]) },
3601 { "tlb1cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB1CFG]) },
3602 { "epr", offsetof(CPUState, spr[SPR_BOOKE_EPR]) },
3603 { "eplc", offsetof(CPUState, spr[SPR_BOOKE_EPLC]) },
3604 { "epsc", offsetof(CPUState, spr[SPR_BOOKE_EPSC]) },
3605 { "svr", offsetof(CPUState, spr[SPR_E500_SVR]) },
3606 { "mcar", offsetof(CPUState, spr[SPR_Exxx_MCAR]) },
3607 { "pid1", offsetof(CPUState, spr[SPR_BOOKE_PID1]) },
3608 { "pid2", offsetof(CPUState, spr[SPR_BOOKE_PID2]) },
3609 { "hid0", offsetof(CPUState, spr[SPR_HID0]) },
3611 #elif defined(TARGET_SPARC)
3612 { "g0", offsetof(CPUState, gregs[0]) },
3613 { "g1", offsetof(CPUState, gregs[1]) },
3614 { "g2", offsetof(CPUState, gregs[2]) },
3615 { "g3", offsetof(CPUState, gregs[3]) },
3616 { "g4", offsetof(CPUState, gregs[4]) },
3617 { "g5", offsetof(CPUState, gregs[5]) },
3618 { "g6", offsetof(CPUState, gregs[6]) },
3619 { "g7", offsetof(CPUState, gregs[7]) },
3620 { "o0", 0, monitor_get_reg },
3621 { "o1", 1, monitor_get_reg },
3622 { "o2", 2, monitor_get_reg },
3623 { "o3", 3, monitor_get_reg },
3624 { "o4", 4, monitor_get_reg },
3625 { "o5", 5, monitor_get_reg },
3626 { "o6", 6, monitor_get_reg },
3627 { "o7", 7, monitor_get_reg },
3628 { "l0", 8, monitor_get_reg },
3629 { "l1", 9, monitor_get_reg },
3630 { "l2", 10, monitor_get_reg },
3631 { "l3", 11, monitor_get_reg },
3632 { "l4", 12, monitor_get_reg },
3633 { "l5", 13, monitor_get_reg },
3634 { "l6", 14, monitor_get_reg },
3635 { "l7", 15, monitor_get_reg },
3636 { "i0", 16, monitor_get_reg },
3637 { "i1", 17, monitor_get_reg },
3638 { "i2", 18, monitor_get_reg },
3639 { "i3", 19, monitor_get_reg },
3640 { "i4", 20, monitor_get_reg },
3641 { "i5", 21, monitor_get_reg },
3642 { "i6", 22, monitor_get_reg },
3643 { "i7", 23, monitor_get_reg },
3644 { "pc", offsetof(CPUState, pc) },
3645 { "npc", offsetof(CPUState, npc) },
3646 { "y", offsetof(CPUState, y) },
3647 #ifndef TARGET_SPARC64
3648 { "psr", 0, &monitor_get_psr, },
3649 { "wim", offsetof(CPUState, wim) },
3650 #endif
3651 { "tbr", offsetof(CPUState, tbr) },
3652 { "fsr", offsetof(CPUState, fsr) },
3653 { "f0", offsetof(CPUState, fpr[0]) },
3654 { "f1", offsetof(CPUState, fpr[1]) },
3655 { "f2", offsetof(CPUState, fpr[2]) },
3656 { "f3", offsetof(CPUState, fpr[3]) },
3657 { "f4", offsetof(CPUState, fpr[4]) },
3658 { "f5", offsetof(CPUState, fpr[5]) },
3659 { "f6", offsetof(CPUState, fpr[6]) },
3660 { "f7", offsetof(CPUState, fpr[7]) },
3661 { "f8", offsetof(CPUState, fpr[8]) },
3662 { "f9", offsetof(CPUState, fpr[9]) },
3663 { "f10", offsetof(CPUState, fpr[10]) },
3664 { "f11", offsetof(CPUState, fpr[11]) },
3665 { "f12", offsetof(CPUState, fpr[12]) },
3666 { "f13", offsetof(CPUState, fpr[13]) },
3667 { "f14", offsetof(CPUState, fpr[14]) },
3668 { "f15", offsetof(CPUState, fpr[15]) },
3669 { "f16", offsetof(CPUState, fpr[16]) },
3670 { "f17", offsetof(CPUState, fpr[17]) },
3671 { "f18", offsetof(CPUState, fpr[18]) },
3672 { "f19", offsetof(CPUState, fpr[19]) },
3673 { "f20", offsetof(CPUState, fpr[20]) },
3674 { "f21", offsetof(CPUState, fpr[21]) },
3675 { "f22", offsetof(CPUState, fpr[22]) },
3676 { "f23", offsetof(CPUState, fpr[23]) },
3677 { "f24", offsetof(CPUState, fpr[24]) },
3678 { "f25", offsetof(CPUState, fpr[25]) },
3679 { "f26", offsetof(CPUState, fpr[26]) },
3680 { "f27", offsetof(CPUState, fpr[27]) },
3681 { "f28", offsetof(CPUState, fpr[28]) },
3682 { "f29", offsetof(CPUState, fpr[29]) },
3683 { "f30", offsetof(CPUState, fpr[30]) },
3684 { "f31", offsetof(CPUState, fpr[31]) },
3685 #ifdef TARGET_SPARC64
3686 { "f32", offsetof(CPUState, fpr[32]) },
3687 { "f34", offsetof(CPUState, fpr[34]) },
3688 { "f36", offsetof(CPUState, fpr[36]) },
3689 { "f38", offsetof(CPUState, fpr[38]) },
3690 { "f40", offsetof(CPUState, fpr[40]) },
3691 { "f42", offsetof(CPUState, fpr[42]) },
3692 { "f44", offsetof(CPUState, fpr[44]) },
3693 { "f46", offsetof(CPUState, fpr[46]) },
3694 { "f48", offsetof(CPUState, fpr[48]) },
3695 { "f50", offsetof(CPUState, fpr[50]) },
3696 { "f52", offsetof(CPUState, fpr[52]) },
3697 { "f54", offsetof(CPUState, fpr[54]) },
3698 { "f56", offsetof(CPUState, fpr[56]) },
3699 { "f58", offsetof(CPUState, fpr[58]) },
3700 { "f60", offsetof(CPUState, fpr[60]) },
3701 { "f62", offsetof(CPUState, fpr[62]) },
3702 { "asi", offsetof(CPUState, asi) },
3703 { "pstate", offsetof(CPUState, pstate) },
3704 { "cansave", offsetof(CPUState, cansave) },
3705 { "canrestore", offsetof(CPUState, canrestore) },
3706 { "otherwin", offsetof(CPUState, otherwin) },
3707 { "wstate", offsetof(CPUState, wstate) },
3708 { "cleanwin", offsetof(CPUState, cleanwin) },
3709 { "fprs", offsetof(CPUState, fprs) },
3710 #endif
3711 #endif
3712 { NULL },
3715 static void expr_error(Monitor *mon, const char *msg)
3717 monitor_printf(mon, "%s\n", msg);
3718 longjmp(expr_env, 1);
3721 /* return 0 if OK, -1 if not found */
3722 static int get_monitor_def(target_long *pval, const char *name)
3724 const MonitorDef *md;
3725 void *ptr;
3727 for(md = monitor_defs; md->name != NULL; md++) {
3728 if (compare_cmd(name, md->name)) {
3729 if (md->get_value) {
3730 *pval = md->get_value(md, md->offset);
3731 } else {
3732 CPUState *env = mon_get_cpu();
3733 ptr = (uint8_t *)env + md->offset;
3734 switch(md->type) {
3735 case MD_I32:
3736 *pval = *(int32_t *)ptr;
3737 break;
3738 case MD_TLONG:
3739 *pval = *(target_long *)ptr;
3740 break;
3741 default:
3742 *pval = 0;
3743 break;
3746 return 0;
3749 return -1;
3752 static void next(void)
3754 if (*pch != '\0') {
3755 pch++;
3756 while (qemu_isspace(*pch))
3757 pch++;
3761 static int64_t expr_sum(Monitor *mon);
3763 static int64_t expr_unary(Monitor *mon)
3765 int64_t n;
3766 char *p;
3767 int ret;
3769 switch(*pch) {
3770 case '+':
3771 next();
3772 n = expr_unary(mon);
3773 break;
3774 case '-':
3775 next();
3776 n = -expr_unary(mon);
3777 break;
3778 case '~':
3779 next();
3780 n = ~expr_unary(mon);
3781 break;
3782 case '(':
3783 next();
3784 n = expr_sum(mon);
3785 if (*pch != ')') {
3786 expr_error(mon, "')' expected");
3788 next();
3789 break;
3790 case '\'':
3791 pch++;
3792 if (*pch == '\0')
3793 expr_error(mon, "character constant expected");
3794 n = *pch;
3795 pch++;
3796 if (*pch != '\'')
3797 expr_error(mon, "missing terminating \' character");
3798 next();
3799 break;
3800 case '$':
3802 char buf[128], *q;
3803 target_long reg=0;
3805 pch++;
3806 q = buf;
3807 while ((*pch >= 'a' && *pch <= 'z') ||
3808 (*pch >= 'A' && *pch <= 'Z') ||
3809 (*pch >= '0' && *pch <= '9') ||
3810 *pch == '_' || *pch == '.') {
3811 if ((q - buf) < sizeof(buf) - 1)
3812 *q++ = *pch;
3813 pch++;
3815 while (qemu_isspace(*pch))
3816 pch++;
3817 *q = 0;
3818 ret = get_monitor_def(&reg, buf);
3819 if (ret < 0)
3820 expr_error(mon, "unknown register");
3821 n = reg;
3823 break;
3824 case '\0':
3825 expr_error(mon, "unexpected end of expression");
3826 n = 0;
3827 break;
3828 default:
3829 #if TARGET_PHYS_ADDR_BITS > 32
3830 n = strtoull(pch, &p, 0);
3831 #else
3832 n = strtoul(pch, &p, 0);
3833 #endif
3834 if (pch == p) {
3835 expr_error(mon, "invalid char in expression");
3837 pch = p;
3838 while (qemu_isspace(*pch))
3839 pch++;
3840 break;
3842 return n;
3846 static int64_t expr_prod(Monitor *mon)
3848 int64_t val, val2;
3849 int op;
3851 val = expr_unary(mon);
3852 for(;;) {
3853 op = *pch;
3854 if (op != '*' && op != '/' && op != '%')
3855 break;
3856 next();
3857 val2 = expr_unary(mon);
3858 switch(op) {
3859 default:
3860 case '*':
3861 val *= val2;
3862 break;
3863 case '/':
3864 case '%':
3865 if (val2 == 0)
3866 expr_error(mon, "division by zero");
3867 if (op == '/')
3868 val /= val2;
3869 else
3870 val %= val2;
3871 break;
3874 return val;
3877 static int64_t expr_logic(Monitor *mon)
3879 int64_t val, val2;
3880 int op;
3882 val = expr_prod(mon);
3883 for(;;) {
3884 op = *pch;
3885 if (op != '&' && op != '|' && op != '^')
3886 break;
3887 next();
3888 val2 = expr_prod(mon);
3889 switch(op) {
3890 default:
3891 case '&':
3892 val &= val2;
3893 break;
3894 case '|':
3895 val |= val2;
3896 break;
3897 case '^':
3898 val ^= val2;
3899 break;
3902 return val;
3905 static int64_t expr_sum(Monitor *mon)
3907 int64_t val, val2;
3908 int op;
3910 val = expr_logic(mon);
3911 for(;;) {
3912 op = *pch;
3913 if (op != '+' && op != '-')
3914 break;
3915 next();
3916 val2 = expr_logic(mon);
3917 if (op == '+')
3918 val += val2;
3919 else
3920 val -= val2;
3922 return val;
3925 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
3927 pch = *pp;
3928 if (setjmp(expr_env)) {
3929 *pp = pch;
3930 return -1;
3932 while (qemu_isspace(*pch))
3933 pch++;
3934 *pval = expr_sum(mon);
3935 *pp = pch;
3936 return 0;
3939 static int get_double(Monitor *mon, double *pval, const char **pp)
3941 const char *p = *pp;
3942 char *tailp;
3943 double d;
3945 d = strtod(p, &tailp);
3946 if (tailp == p) {
3947 monitor_printf(mon, "Number expected\n");
3948 return -1;
3950 if (d != d || d - d != 0) {
3951 /* NaN or infinity */
3952 monitor_printf(mon, "Bad number\n");
3953 return -1;
3955 *pval = d;
3956 *pp = tailp;
3957 return 0;
3960 static int get_str(char *buf, int buf_size, const char **pp)
3962 const char *p;
3963 char *q;
3964 int c;
3966 q = buf;
3967 p = *pp;
3968 while (qemu_isspace(*p))
3969 p++;
3970 if (*p == '\0') {
3971 fail:
3972 *q = '\0';
3973 *pp = p;
3974 return -1;
3976 if (*p == '\"') {
3977 p++;
3978 while (*p != '\0' && *p != '\"') {
3979 if (*p == '\\') {
3980 p++;
3981 c = *p++;
3982 switch(c) {
3983 case 'n':
3984 c = '\n';
3985 break;
3986 case 'r':
3987 c = '\r';
3988 break;
3989 case '\\':
3990 case '\'':
3991 case '\"':
3992 break;
3993 default:
3994 qemu_printf("unsupported escape code: '\\%c'\n", c);
3995 goto fail;
3997 if ((q - buf) < buf_size - 1) {
3998 *q++ = c;
4000 } else {
4001 if ((q - buf) < buf_size - 1) {
4002 *q++ = *p;
4004 p++;
4007 if (*p != '\"') {
4008 qemu_printf("unterminated string\n");
4009 goto fail;
4011 p++;
4012 } else {
4013 while (*p != '\0' && !qemu_isspace(*p)) {
4014 if ((q - buf) < buf_size - 1) {
4015 *q++ = *p;
4017 p++;
4020 *q = '\0';
4021 *pp = p;
4022 return 0;
4026 * Store the command-name in cmdname, and return a pointer to
4027 * the remaining of the command string.
4029 static const char *get_command_name(const char *cmdline,
4030 char *cmdname, size_t nlen)
4032 size_t len;
4033 const char *p, *pstart;
4035 p = cmdline;
4036 while (qemu_isspace(*p))
4037 p++;
4038 if (*p == '\0')
4039 return NULL;
4040 pstart = p;
4041 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
4042 p++;
4043 len = p - pstart;
4044 if (len > nlen - 1)
4045 len = nlen - 1;
4046 memcpy(cmdname, pstart, len);
4047 cmdname[len] = '\0';
4048 return p;
4052 * Read key of 'type' into 'key' and return the current
4053 * 'type' pointer.
4055 static char *key_get_info(const char *type, char **key)
4057 size_t len;
4058 char *p, *str;
4060 if (*type == ',')
4061 type++;
4063 p = strchr(type, ':');
4064 if (!p) {
4065 *key = NULL;
4066 return NULL;
4068 len = p - type;
4070 str = g_malloc(len + 1);
4071 memcpy(str, type, len);
4072 str[len] = '\0';
4074 *key = str;
4075 return ++p;
4078 static int default_fmt_format = 'x';
4079 static int default_fmt_size = 4;
4081 #define MAX_ARGS 16
4083 static int is_valid_option(const char *c, const char *typestr)
4085 char option[3];
4087 option[0] = '-';
4088 option[1] = *c;
4089 option[2] = '\0';
4091 typestr = strstr(typestr, option);
4092 return (typestr != NULL);
4095 static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
4096 const char *cmdname)
4098 const mon_cmd_t *cmd;
4100 for (cmd = disp_table; cmd->name != NULL; cmd++) {
4101 if (compare_cmd(cmdname, cmd->name)) {
4102 return cmd;
4106 return NULL;
4109 static const mon_cmd_t *monitor_find_command(const char *cmdname)
4111 return search_dispatch_table(mon_cmds, cmdname);
4114 static const mon_cmd_t *qmp_find_query_cmd(const char *info_item)
4116 return search_dispatch_table(qmp_query_cmds, info_item);
4119 static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
4121 return search_dispatch_table(qmp_cmds, cmdname);
4124 static const mon_cmd_t *monitor_parse_command(Monitor *mon,
4125 const char *cmdline,
4126 QDict *qdict)
4128 const char *p, *typestr;
4129 int c;
4130 const mon_cmd_t *cmd;
4131 char cmdname[256];
4132 char buf[1024];
4133 char *key;
4135 #ifdef DEBUG
4136 monitor_printf(mon, "command='%s'\n", cmdline);
4137 #endif
4139 /* extract the command name */
4140 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
4141 if (!p)
4142 return NULL;
4144 cmd = monitor_find_command(cmdname);
4145 if (!cmd) {
4146 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
4147 return NULL;
4150 /* parse the parameters */
4151 typestr = cmd->args_type;
4152 for(;;) {
4153 typestr = key_get_info(typestr, &key);
4154 if (!typestr)
4155 break;
4156 c = *typestr;
4157 typestr++;
4158 switch(c) {
4159 case 'F':
4160 case 'B':
4161 case 's':
4163 int ret;
4165 while (qemu_isspace(*p))
4166 p++;
4167 if (*typestr == '?') {
4168 typestr++;
4169 if (*p == '\0') {
4170 /* no optional string: NULL argument */
4171 break;
4174 ret = get_str(buf, sizeof(buf), &p);
4175 if (ret < 0) {
4176 switch(c) {
4177 case 'F':
4178 monitor_printf(mon, "%s: filename expected\n",
4179 cmdname);
4180 break;
4181 case 'B':
4182 monitor_printf(mon, "%s: block device name expected\n",
4183 cmdname);
4184 break;
4185 default:
4186 monitor_printf(mon, "%s: string expected\n", cmdname);
4187 break;
4189 goto fail;
4191 qdict_put(qdict, key, qstring_from_str(buf));
4193 break;
4194 case 'O':
4196 QemuOptsList *opts_list;
4197 QemuOpts *opts;
4199 opts_list = qemu_find_opts(key);
4200 if (!opts_list || opts_list->desc->name) {
4201 goto bad_type;
4203 while (qemu_isspace(*p)) {
4204 p++;
4206 if (!*p)
4207 break;
4208 if (get_str(buf, sizeof(buf), &p) < 0) {
4209 goto fail;
4211 opts = qemu_opts_parse(opts_list, buf, 1);
4212 if (!opts) {
4213 goto fail;
4215 qemu_opts_to_qdict(opts, qdict);
4216 qemu_opts_del(opts);
4218 break;
4219 case '/':
4221 int count, format, size;
4223 while (qemu_isspace(*p))
4224 p++;
4225 if (*p == '/') {
4226 /* format found */
4227 p++;
4228 count = 1;
4229 if (qemu_isdigit(*p)) {
4230 count = 0;
4231 while (qemu_isdigit(*p)) {
4232 count = count * 10 + (*p - '0');
4233 p++;
4236 size = -1;
4237 format = -1;
4238 for(;;) {
4239 switch(*p) {
4240 case 'o':
4241 case 'd':
4242 case 'u':
4243 case 'x':
4244 case 'i':
4245 case 'c':
4246 format = *p++;
4247 break;
4248 case 'b':
4249 size = 1;
4250 p++;
4251 break;
4252 case 'h':
4253 size = 2;
4254 p++;
4255 break;
4256 case 'w':
4257 size = 4;
4258 p++;
4259 break;
4260 case 'g':
4261 case 'L':
4262 size = 8;
4263 p++;
4264 break;
4265 default:
4266 goto next;
4269 next:
4270 if (*p != '\0' && !qemu_isspace(*p)) {
4271 monitor_printf(mon, "invalid char in format: '%c'\n",
4272 *p);
4273 goto fail;
4275 if (format < 0)
4276 format = default_fmt_format;
4277 if (format != 'i') {
4278 /* for 'i', not specifying a size gives -1 as size */
4279 if (size < 0)
4280 size = default_fmt_size;
4281 default_fmt_size = size;
4283 default_fmt_format = format;
4284 } else {
4285 count = 1;
4286 format = default_fmt_format;
4287 if (format != 'i') {
4288 size = default_fmt_size;
4289 } else {
4290 size = -1;
4293 qdict_put(qdict, "count", qint_from_int(count));
4294 qdict_put(qdict, "format", qint_from_int(format));
4295 qdict_put(qdict, "size", qint_from_int(size));
4297 break;
4298 case 'i':
4299 case 'l':
4300 case 'M':
4302 int64_t val;
4304 while (qemu_isspace(*p))
4305 p++;
4306 if (*typestr == '?' || *typestr == '.') {
4307 if (*typestr == '?') {
4308 if (*p == '\0') {
4309 typestr++;
4310 break;
4312 } else {
4313 if (*p == '.') {
4314 p++;
4315 while (qemu_isspace(*p))
4316 p++;
4317 } else {
4318 typestr++;
4319 break;
4322 typestr++;
4324 if (get_expr(mon, &val, &p))
4325 goto fail;
4326 /* Check if 'i' is greater than 32-bit */
4327 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
4328 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
4329 monitor_printf(mon, "integer is for 32-bit values\n");
4330 goto fail;
4331 } else if (c == 'M') {
4332 val <<= 20;
4334 qdict_put(qdict, key, qint_from_int(val));
4336 break;
4337 case 'o':
4339 int64_t val;
4340 char *end;
4342 while (qemu_isspace(*p)) {
4343 p++;
4345 if (*typestr == '?') {
4346 typestr++;
4347 if (*p == '\0') {
4348 break;
4351 val = strtosz(p, &end);
4352 if (val < 0) {
4353 monitor_printf(mon, "invalid size\n");
4354 goto fail;
4356 qdict_put(qdict, key, qint_from_int(val));
4357 p = end;
4359 break;
4360 case 'T':
4362 double val;
4364 while (qemu_isspace(*p))
4365 p++;
4366 if (*typestr == '?') {
4367 typestr++;
4368 if (*p == '\0') {
4369 break;
4372 if (get_double(mon, &val, &p) < 0) {
4373 goto fail;
4375 if (p[0] && p[1] == 's') {
4376 switch (*p) {
4377 case 'm':
4378 val /= 1e3; p += 2; break;
4379 case 'u':
4380 val /= 1e6; p += 2; break;
4381 case 'n':
4382 val /= 1e9; p += 2; break;
4385 if (*p && !qemu_isspace(*p)) {
4386 monitor_printf(mon, "Unknown unit suffix\n");
4387 goto fail;
4389 qdict_put(qdict, key, qfloat_from_double(val));
4391 break;
4392 case 'b':
4394 const char *beg;
4395 int val;
4397 while (qemu_isspace(*p)) {
4398 p++;
4400 beg = p;
4401 while (qemu_isgraph(*p)) {
4402 p++;
4404 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
4405 val = 1;
4406 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
4407 val = 0;
4408 } else {
4409 monitor_printf(mon, "Expected 'on' or 'off'\n");
4410 goto fail;
4412 qdict_put(qdict, key, qbool_from_int(val));
4414 break;
4415 case '-':
4417 const char *tmp = p;
4418 int skip_key = 0;
4419 /* option */
4421 c = *typestr++;
4422 if (c == '\0')
4423 goto bad_type;
4424 while (qemu_isspace(*p))
4425 p++;
4426 if (*p == '-') {
4427 p++;
4428 if(c != *p) {
4429 if(!is_valid_option(p, typestr)) {
4431 monitor_printf(mon, "%s: unsupported option -%c\n",
4432 cmdname, *p);
4433 goto fail;
4434 } else {
4435 skip_key = 1;
4438 if(skip_key) {
4439 p = tmp;
4440 } else {
4441 /* has option */
4442 p++;
4443 qdict_put(qdict, key, qbool_from_int(1));
4447 break;
4448 default:
4449 bad_type:
4450 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
4451 goto fail;
4453 g_free(key);
4454 key = NULL;
4456 /* check that all arguments were parsed */
4457 while (qemu_isspace(*p))
4458 p++;
4459 if (*p != '\0') {
4460 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
4461 cmdname);
4462 goto fail;
4465 return cmd;
4467 fail:
4468 g_free(key);
4469 return NULL;
4472 void monitor_set_error(Monitor *mon, QError *qerror)
4474 /* report only the first error */
4475 if (!mon->error) {
4476 mon->error = qerror;
4477 } else {
4478 MON_DEBUG("Additional error report at %s:%d\n",
4479 qerror->file, qerror->linenr);
4480 QDECREF(qerror);
4484 static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
4486 if (ret && !monitor_has_error(mon)) {
4488 * If it returns failure, it must have passed on error.
4490 * Action: Report an internal error to the client if in QMP.
4492 qerror_report(QERR_UNDEFINED_ERROR);
4493 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
4494 cmd->name);
4497 #ifdef CONFIG_DEBUG_MONITOR
4498 if (!ret && monitor_has_error(mon)) {
4500 * If it returns success, it must not have passed an error.
4502 * Action: Report the passed error to the client.
4504 MON_DEBUG("command '%s' returned success but passed an error\n",
4505 cmd->name);
4508 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
4510 * Handlers should not call Monitor print functions.
4512 * Action: Ignore them in QMP.
4514 * (XXX: we don't check any 'info' or 'query' command here
4515 * because the user print function _is_ called by do_info(), hence
4516 * we will trigger this check. This problem will go away when we
4517 * make 'query' commands real and kill do_info())
4519 MON_DEBUG("command '%s' called print functions %d time(s)\n",
4520 cmd->name, mon_print_count_get(mon));
4522 #endif
4525 static void handle_user_command(Monitor *mon, const char *cmdline)
4527 QDict *qdict;
4528 const mon_cmd_t *cmd;
4530 qdict = qdict_new();
4532 cmd = monitor_parse_command(mon, cmdline, qdict);
4533 if (!cmd)
4534 goto out;
4536 if (handler_is_async(cmd)) {
4537 user_async_cmd_handler(mon, cmd, qdict);
4538 } else if (handler_is_qobject(cmd)) {
4539 QObject *data = NULL;
4541 /* XXX: ignores the error code */
4542 cmd->mhandler.cmd_new(mon, qdict, &data);
4543 assert(!monitor_has_error(mon));
4544 if (data) {
4545 cmd->user_print(mon, data);
4546 qobject_decref(data);
4548 } else {
4549 cmd->mhandler.cmd(mon, qdict);
4552 out:
4553 QDECREF(qdict);
4556 static void cmd_completion(const char *name, const char *list)
4558 const char *p, *pstart;
4559 char cmd[128];
4560 int len;
4562 p = list;
4563 for(;;) {
4564 pstart = p;
4565 p = strchr(p, '|');
4566 if (!p)
4567 p = pstart + strlen(pstart);
4568 len = p - pstart;
4569 if (len > sizeof(cmd) - 2)
4570 len = sizeof(cmd) - 2;
4571 memcpy(cmd, pstart, len);
4572 cmd[len] = '\0';
4573 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
4574 readline_add_completion(cur_mon->rs, cmd);
4576 if (*p == '\0')
4577 break;
4578 p++;
4582 static void file_completion(const char *input)
4584 DIR *ffs;
4585 struct dirent *d;
4586 char path[1024];
4587 char file[1024], file_prefix[1024];
4588 int input_path_len;
4589 const char *p;
4591 p = strrchr(input, '/');
4592 if (!p) {
4593 input_path_len = 0;
4594 pstrcpy(file_prefix, sizeof(file_prefix), input);
4595 pstrcpy(path, sizeof(path), ".");
4596 } else {
4597 input_path_len = p - input + 1;
4598 memcpy(path, input, input_path_len);
4599 if (input_path_len > sizeof(path) - 1)
4600 input_path_len = sizeof(path) - 1;
4601 path[input_path_len] = '\0';
4602 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4604 #ifdef DEBUG_COMPLETION
4605 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
4606 input, path, file_prefix);
4607 #endif
4608 ffs = opendir(path);
4609 if (!ffs)
4610 return;
4611 for(;;) {
4612 struct stat sb;
4613 d = readdir(ffs);
4614 if (!d)
4615 break;
4617 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4618 continue;
4621 if (strstart(d->d_name, file_prefix, NULL)) {
4622 memcpy(file, input, input_path_len);
4623 if (input_path_len < sizeof(file))
4624 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4625 d->d_name);
4626 /* stat the file to find out if it's a directory.
4627 * In that case add a slash to speed up typing long paths
4629 stat(file, &sb);
4630 if(S_ISDIR(sb.st_mode))
4631 pstrcat(file, sizeof(file), "/");
4632 readline_add_completion(cur_mon->rs, file);
4635 closedir(ffs);
4638 static void block_completion_it(void *opaque, BlockDriverState *bs)
4640 const char *name = bdrv_get_device_name(bs);
4641 const char *input = opaque;
4643 if (input[0] == '\0' ||
4644 !strncmp(name, (char *)input, strlen(input))) {
4645 readline_add_completion(cur_mon->rs, name);
4649 /* NOTE: this parser is an approximate form of the real command parser */
4650 static void parse_cmdline(const char *cmdline,
4651 int *pnb_args, char **args)
4653 const char *p;
4654 int nb_args, ret;
4655 char buf[1024];
4657 p = cmdline;
4658 nb_args = 0;
4659 for(;;) {
4660 while (qemu_isspace(*p))
4661 p++;
4662 if (*p == '\0')
4663 break;
4664 if (nb_args >= MAX_ARGS)
4665 break;
4666 ret = get_str(buf, sizeof(buf), &p);
4667 args[nb_args] = g_strdup(buf);
4668 nb_args++;
4669 if (ret < 0)
4670 break;
4672 *pnb_args = nb_args;
4675 static const char *next_arg_type(const char *typestr)
4677 const char *p = strchr(typestr, ':');
4678 return (p != NULL ? ++p : typestr);
4681 static void monitor_find_completion(const char *cmdline)
4683 const char *cmdname;
4684 char *args[MAX_ARGS];
4685 int nb_args, i, len;
4686 const char *ptype, *str;
4687 const mon_cmd_t *cmd;
4688 const KeyDef *key;
4690 parse_cmdline(cmdline, &nb_args, args);
4691 #ifdef DEBUG_COMPLETION
4692 for(i = 0; i < nb_args; i++) {
4693 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
4695 #endif
4697 /* if the line ends with a space, it means we want to complete the
4698 next arg */
4699 len = strlen(cmdline);
4700 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
4701 if (nb_args >= MAX_ARGS) {
4702 goto cleanup;
4704 args[nb_args++] = g_strdup("");
4706 if (nb_args <= 1) {
4707 /* command completion */
4708 if (nb_args == 0)
4709 cmdname = "";
4710 else
4711 cmdname = args[0];
4712 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
4713 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
4714 cmd_completion(cmdname, cmd->name);
4716 } else {
4717 /* find the command */
4718 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4719 if (compare_cmd(args[0], cmd->name)) {
4720 break;
4723 if (!cmd->name) {
4724 goto cleanup;
4727 ptype = next_arg_type(cmd->args_type);
4728 for(i = 0; i < nb_args - 2; i++) {
4729 if (*ptype != '\0') {
4730 ptype = next_arg_type(ptype);
4731 while (*ptype == '?')
4732 ptype = next_arg_type(ptype);
4735 str = args[nb_args - 1];
4736 if (*ptype == '-' && ptype[1] != '\0') {
4737 ptype = next_arg_type(ptype);
4739 switch(*ptype) {
4740 case 'F':
4741 /* file completion */
4742 readline_set_completion_index(cur_mon->rs, strlen(str));
4743 file_completion(str);
4744 break;
4745 case 'B':
4746 /* block device name completion */
4747 readline_set_completion_index(cur_mon->rs, strlen(str));
4748 bdrv_iterate(block_completion_it, (void *)str);
4749 break;
4750 case 's':
4751 /* XXX: more generic ? */
4752 if (!strcmp(cmd->name, "info")) {
4753 readline_set_completion_index(cur_mon->rs, strlen(str));
4754 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4755 cmd_completion(str, cmd->name);
4757 } else if (!strcmp(cmd->name, "sendkey")) {
4758 char *sep = strrchr(str, '-');
4759 if (sep)
4760 str = sep + 1;
4761 readline_set_completion_index(cur_mon->rs, strlen(str));
4762 for(key = key_defs; key->name != NULL; key++) {
4763 cmd_completion(str, key->name);
4765 } else if (!strcmp(cmd->name, "help|?")) {
4766 readline_set_completion_index(cur_mon->rs, strlen(str));
4767 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4768 cmd_completion(str, cmd->name);
4771 break;
4772 default:
4773 break;
4777 cleanup:
4778 for (i = 0; i < nb_args; i++) {
4779 g_free(args[i]);
4783 static int monitor_can_read(void *opaque)
4785 Monitor *mon = opaque;
4787 return (mon->suspend_cnt == 0) ? 1 : 0;
4790 static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4792 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4793 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4797 * Argument validation rules:
4799 * 1. The argument must exist in cmd_args qdict
4800 * 2. The argument type must be the expected one
4802 * Special case: If the argument doesn't exist in cmd_args and
4803 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4804 * checking is skipped for it.
4806 static int check_client_args_type(const QDict *client_args,
4807 const QDict *cmd_args, int flags)
4809 const QDictEntry *ent;
4811 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4812 QObject *obj;
4813 QString *arg_type;
4814 const QObject *client_arg = qdict_entry_value(ent);
4815 const char *client_arg_name = qdict_entry_key(ent);
4817 obj = qdict_get(cmd_args, client_arg_name);
4818 if (!obj) {
4819 if (flags & QMP_ACCEPT_UNKNOWNS) {
4820 /* handler accepts unknowns */
4821 continue;
4823 /* client arg doesn't exist */
4824 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4825 return -1;
4828 arg_type = qobject_to_qstring(obj);
4829 assert(arg_type != NULL);
4831 /* check if argument's type is correct */
4832 switch (qstring_get_str(arg_type)[0]) {
4833 case 'F':
4834 case 'B':
4835 case 's':
4836 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4837 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4838 "string");
4839 return -1;
4841 break;
4842 case 'i':
4843 case 'l':
4844 case 'M':
4845 case 'o':
4846 if (qobject_type(client_arg) != QTYPE_QINT) {
4847 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4848 "int");
4849 return -1;
4851 break;
4852 case 'T':
4853 if (qobject_type(client_arg) != QTYPE_QINT &&
4854 qobject_type(client_arg) != QTYPE_QFLOAT) {
4855 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4856 "number");
4857 return -1;
4859 break;
4860 case 'b':
4861 case '-':
4862 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4863 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4864 "bool");
4865 return -1;
4867 break;
4868 case 'O':
4869 assert(flags & QMP_ACCEPT_UNKNOWNS);
4870 break;
4871 case '/':
4872 case '.':
4874 * These types are not supported by QMP and thus are not
4875 * handled here. Fall through.
4877 default:
4878 abort();
4882 return 0;
4886 * - Check if the client has passed all mandatory args
4887 * - Set special flags for argument validation
4889 static int check_mandatory_args(const QDict *cmd_args,
4890 const QDict *client_args, int *flags)
4892 const QDictEntry *ent;
4894 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4895 const char *cmd_arg_name = qdict_entry_key(ent);
4896 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4897 assert(type != NULL);
4899 if (qstring_get_str(type)[0] == 'O') {
4900 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4901 *flags |= QMP_ACCEPT_UNKNOWNS;
4902 } else if (qstring_get_str(type)[0] != '-' &&
4903 qstring_get_str(type)[1] != '?' &&
4904 !qdict_haskey(client_args, cmd_arg_name)) {
4905 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4906 return -1;
4910 return 0;
4913 static QDict *qdict_from_args_type(const char *args_type)
4915 int i;
4916 QDict *qdict;
4917 QString *key, *type, *cur_qs;
4919 assert(args_type != NULL);
4921 qdict = qdict_new();
4923 if (args_type == NULL || args_type[0] == '\0') {
4924 /* no args, empty qdict */
4925 goto out;
4928 key = qstring_new();
4929 type = qstring_new();
4931 cur_qs = key;
4933 for (i = 0;; i++) {
4934 switch (args_type[i]) {
4935 case ',':
4936 case '\0':
4937 qdict_put(qdict, qstring_get_str(key), type);
4938 QDECREF(key);
4939 if (args_type[i] == '\0') {
4940 goto out;
4942 type = qstring_new(); /* qdict has ref */
4943 cur_qs = key = qstring_new();
4944 break;
4945 case ':':
4946 cur_qs = type;
4947 break;
4948 default:
4949 qstring_append_chr(cur_qs, args_type[i]);
4950 break;
4954 out:
4955 return qdict;
4959 * Client argument checking rules:
4961 * 1. Client must provide all mandatory arguments
4962 * 2. Each argument provided by the client must be expected
4963 * 3. Each argument provided by the client must have the type expected
4964 * by the command
4966 static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4968 int flags, err;
4969 QDict *cmd_args;
4971 cmd_args = qdict_from_args_type(cmd->args_type);
4973 flags = 0;
4974 err = check_mandatory_args(cmd_args, client_args, &flags);
4975 if (err) {
4976 goto out;
4979 err = check_client_args_type(client_args, cmd_args, flags);
4981 out:
4982 QDECREF(cmd_args);
4983 return err;
4987 * Input object checking rules
4989 * 1. Input object must be a dict
4990 * 2. The "execute" key must exist
4991 * 3. The "execute" key must be a string
4992 * 4. If the "arguments" key exists, it must be a dict
4993 * 5. If the "id" key exists, it can be anything (ie. json-value)
4994 * 6. Any argument not listed above is considered invalid
4996 static QDict *qmp_check_input_obj(QObject *input_obj)
4998 const QDictEntry *ent;
4999 int has_exec_key = 0;
5000 QDict *input_dict;
5002 if (qobject_type(input_obj) != QTYPE_QDICT) {
5003 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
5004 return NULL;
5007 input_dict = qobject_to_qdict(input_obj);
5009 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
5010 const char *arg_name = qdict_entry_key(ent);
5011 const QObject *arg_obj = qdict_entry_value(ent);
5013 if (!strcmp(arg_name, "execute")) {
5014 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
5015 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
5016 "string");
5017 return NULL;
5019 has_exec_key = 1;
5020 } else if (!strcmp(arg_name, "arguments")) {
5021 if (qobject_type(arg_obj) != QTYPE_QDICT) {
5022 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
5023 "object");
5024 return NULL;
5026 } else if (!strcmp(arg_name, "id")) {
5027 /* FIXME: check duplicated IDs for async commands */
5028 } else {
5029 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
5030 return NULL;
5034 if (!has_exec_key) {
5035 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
5036 return NULL;
5039 return input_dict;
5042 static void qmp_call_query_cmd(Monitor *mon, const mon_cmd_t *cmd)
5044 QObject *ret_data = NULL;
5046 if (handler_is_async(cmd)) {
5047 qmp_async_info_handler(mon, cmd);
5048 if (monitor_has_error(mon)) {
5049 monitor_protocol_emitter(mon, NULL);
5051 } else {
5052 cmd->mhandler.info_new(mon, &ret_data);
5053 monitor_protocol_emitter(mon, ret_data);
5054 qobject_decref(ret_data);
5058 static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
5059 const QDict *params)
5061 int ret;
5062 QObject *data = NULL;
5064 mon_print_count_init(mon);
5066 ret = cmd->mhandler.cmd_new(mon, params, &data);
5067 handler_audit(mon, cmd, ret);
5068 monitor_protocol_emitter(mon, data);
5069 qobject_decref(data);
5072 static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
5074 int err;
5075 QObject *obj;
5076 QDict *input, *args;
5077 const mon_cmd_t *cmd;
5078 Monitor *mon = cur_mon;
5079 const char *cmd_name, *query_cmd;
5081 query_cmd = NULL;
5082 args = input = NULL;
5084 obj = json_parser_parse(tokens, NULL);
5085 if (!obj) {
5086 // FIXME: should be triggered in json_parser_parse()
5087 qerror_report(QERR_JSON_PARSING);
5088 goto err_out;
5091 input = qmp_check_input_obj(obj);
5092 if (!input) {
5093 qobject_decref(obj);
5094 goto err_out;
5097 mon->mc->id = qdict_get(input, "id");
5098 qobject_incref(mon->mc->id);
5100 cmd_name = qdict_get_str(input, "execute");
5101 if (invalid_qmp_mode(mon, cmd_name)) {
5102 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
5103 goto err_out;
5106 if (strstart(cmd_name, "query-", &query_cmd)) {
5107 cmd = qmp_find_query_cmd(query_cmd);
5108 } else {
5109 cmd = qmp_find_cmd(cmd_name);
5112 if (!cmd) {
5113 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
5114 goto err_out;
5117 obj = qdict_get(input, "arguments");
5118 if (!obj) {
5119 args = qdict_new();
5120 } else {
5121 args = qobject_to_qdict(obj);
5122 QINCREF(args);
5125 err = qmp_check_client_args(cmd, args);
5126 if (err < 0) {
5127 goto err_out;
5130 if (query_cmd) {
5131 qmp_call_query_cmd(mon, cmd);
5132 } else if (handler_is_async(cmd)) {
5133 err = qmp_async_cmd_handler(mon, cmd, args);
5134 if (err) {
5135 /* emit the error response */
5136 goto err_out;
5138 } else {
5139 qmp_call_cmd(mon, cmd, args);
5142 goto out;
5144 err_out:
5145 monitor_protocol_emitter(mon, NULL);
5146 out:
5147 QDECREF(input);
5148 QDECREF(args);
5152 * monitor_control_read(): Read and handle QMP input
5154 static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
5156 Monitor *old_mon = cur_mon;
5158 cur_mon = opaque;
5160 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
5162 cur_mon = old_mon;
5165 static void monitor_read(void *opaque, const uint8_t *buf, int size)
5167 Monitor *old_mon = cur_mon;
5168 int i;
5170 cur_mon = opaque;
5172 if (cur_mon->rs) {
5173 for (i = 0; i < size; i++)
5174 readline_handle_byte(cur_mon->rs, buf[i]);
5175 } else {
5176 if (size == 0 || buf[size - 1] != 0)
5177 monitor_printf(cur_mon, "corrupted command\n");
5178 else
5179 handle_user_command(cur_mon, (char *)buf);
5182 cur_mon = old_mon;
5185 static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
5187 monitor_suspend(mon);
5188 handle_user_command(mon, cmdline);
5189 monitor_resume(mon);
5192 int monitor_suspend(Monitor *mon)
5194 if (!mon->rs)
5195 return -ENOTTY;
5196 mon->suspend_cnt++;
5197 return 0;
5200 void monitor_resume(Monitor *mon)
5202 if (!mon->rs)
5203 return;
5204 if (--mon->suspend_cnt == 0)
5205 readline_show_prompt(mon->rs);
5208 static QObject *get_qmp_greeting(void)
5210 QObject *ver;
5212 do_info_version(NULL, &ver);
5213 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
5217 * monitor_control_event(): Print QMP gretting
5219 static void monitor_control_event(void *opaque, int event)
5221 QObject *data;
5222 Monitor *mon = opaque;
5224 switch (event) {
5225 case CHR_EVENT_OPENED:
5226 mon->mc->command_mode = 0;
5227 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
5228 data = get_qmp_greeting();
5229 monitor_json_emitter(mon, data);
5230 qobject_decref(data);
5231 break;
5232 case CHR_EVENT_CLOSED:
5233 json_message_parser_destroy(&mon->mc->parser);
5234 break;
5238 static void monitor_event(void *opaque, int event)
5240 Monitor *mon = opaque;
5242 switch (event) {
5243 case CHR_EVENT_MUX_IN:
5244 mon->mux_out = 0;
5245 if (mon->reset_seen) {
5246 readline_restart(mon->rs);
5247 monitor_resume(mon);
5248 monitor_flush(mon);
5249 } else {
5250 mon->suspend_cnt = 0;
5252 break;
5254 case CHR_EVENT_MUX_OUT:
5255 if (mon->reset_seen) {
5256 if (mon->suspend_cnt == 0) {
5257 monitor_printf(mon, "\n");
5259 monitor_flush(mon);
5260 monitor_suspend(mon);
5261 } else {
5262 mon->suspend_cnt++;
5264 mon->mux_out = 1;
5265 break;
5267 case CHR_EVENT_OPENED:
5268 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
5269 "information\n", QEMU_VERSION);
5270 if (!mon->mux_out) {
5271 readline_show_prompt(mon->rs);
5273 mon->reset_seen = 1;
5274 break;
5280 * Local variables:
5281 * c-indent-level: 4
5282 * c-basic-offset: 4
5283 * tab-width: 8
5284 * End:
5287 void monitor_init(CharDriverState *chr, int flags)
5289 static int is_first_init = 1;
5290 Monitor *mon;
5292 if (is_first_init) {
5293 key_timer = qemu_new_timer_ns(vm_clock, release_keys, NULL);
5294 is_first_init = 0;
5297 mon = g_malloc0(sizeof(*mon));
5299 mon->chr = chr;
5300 mon->flags = flags;
5301 if (flags & MONITOR_USE_READLINE) {
5302 mon->rs = readline_init(mon, monitor_find_completion);
5303 monitor_read_command(mon, 0);
5306 if (monitor_ctrl_mode(mon)) {
5307 mon->mc = g_malloc0(sizeof(MonitorControl));
5308 /* Control mode requires special handlers */
5309 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
5310 monitor_control_event, mon);
5311 qemu_chr_fe_set_echo(chr, true);
5312 } else {
5313 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
5314 monitor_event, mon);
5317 QLIST_INSERT_HEAD(&mon_list, mon, entry);
5318 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
5319 default_mon = mon;
5322 static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
5324 BlockDriverState *bs = opaque;
5325 int ret = 0;
5327 if (bdrv_set_key(bs, password) != 0) {
5328 monitor_printf(mon, "invalid password\n");
5329 ret = -EPERM;
5331 if (mon->password_completion_cb)
5332 mon->password_completion_cb(mon->password_opaque, ret);
5334 monitor_read_command(mon, 1);
5337 int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
5338 BlockDriverCompletionFunc *completion_cb,
5339 void *opaque)
5341 int err;
5343 if (!bdrv_key_required(bs)) {
5344 if (completion_cb)
5345 completion_cb(opaque, 0);
5346 return 0;
5349 if (monitor_ctrl_mode(mon)) {
5350 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
5351 return -1;
5354 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
5355 bdrv_get_encrypted_filename(bs));
5357 mon->password_completion_cb = completion_cb;
5358 mon->password_opaque = opaque;
5360 err = monitor_read_password(mon, bdrv_password_cb, bs);
5362 if (err && completion_cb)
5363 completion_cb(opaque, err);
5365 return err;