pci: Remove capability specific handlers
[qemu-kvm/stefanha.git] / monitor.c
blobba45fb50f6c520986fe611ed630a45ce1529670a
1 /*
2 * QEMU monitor
4 * Copyright (c) 2003-2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
24 #include <dirent.h>
25 #include "hw/hw.h"
26 #include "hw/qdev.h"
27 #include "hw/usb.h"
28 #include "hw/pcmcia.h"
29 #include "hw/pc.h"
30 #include "hw/pci.h"
31 #include "hw/watchdog.h"
32 #include "hw/loader.h"
33 #include "gdbstub.h"
34 #include "net.h"
35 #include "net/slirp.h"
36 #include "qemu-char.h"
37 #include "sysemu.h"
38 #include "monitor.h"
39 #include "readline.h"
40 #include "console.h"
41 #include "blockdev.h"
42 #include "audio/audio.h"
43 #include "disas.h"
44 #include "balloon.h"
45 #include "qemu-timer.h"
46 #include "migration.h"
47 #include "kvm.h"
48 #include "acl.h"
49 #include "qint.h"
50 #include "qfloat.h"
51 #include "qlist.h"
52 #include "qbool.h"
53 #include "qstring.h"
54 #include "qjson.h"
55 #include "json-streamer.h"
56 #include "json-parser.h"
57 #include "osdep.h"
58 #include "exec-all.h"
59 #ifdef CONFIG_SIMPLE_TRACE
60 #include "trace.h"
61 #endif
62 #include "qemu-kvm.h"
64 //#define DEBUG
65 //#define DEBUG_COMPLETION
68 * Supported types:
70 * 'F' filename
71 * 'B' block device name
72 * 's' string (accept optional quote)
73 * 'O' option string of the form NAME=VALUE,...
74 * parsed according to QemuOptsList given by its name
75 * Example: 'device:O' uses qemu_device_opts.
76 * Restriction: only lists with empty desc are supported
77 * TODO lift the restriction
78 * 'i' 32 bit integer
79 * 'l' target long (32 or 64 bit)
80 * 'M' just like 'l', except in user mode the value is
81 * multiplied by 2^20 (think Mebibyte)
82 * 'o' octets (aka bytes)
83 * user mode accepts an optional T, t, G, g, M, m, K, k
84 * suffix, which multiplies the value by 2^40 for
85 * suffixes T and t, 2^30 for suffixes G and g, 2^20 for
86 * M and m, 2^10 for K and k
87 * 'T' double
88 * user mode accepts an optional ms, us, ns suffix,
89 * which divides the value by 1e3, 1e6, 1e9, respectively
90 * '/' optional gdb-like print format (like "/10x")
92 * '?' optional type (for all types, except '/')
93 * '.' other form of optional type (for 'i' and 'l')
94 * 'b' boolean
95 * user mode accepts "on" or "off"
96 * '-' optional parameter (eg. '-f')
100 typedef struct MonitorCompletionData MonitorCompletionData;
101 struct MonitorCompletionData {
102 Monitor *mon;
103 void (*user_print)(Monitor *mon, const QObject *data);
106 typedef struct mon_cmd_t {
107 const char *name;
108 const char *args_type;
109 const char *params;
110 const char *help;
111 void (*user_print)(Monitor *mon, const QObject *data);
112 union {
113 void (*info)(Monitor *mon);
114 void (*info_new)(Monitor *mon, QObject **ret_data);
115 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
116 void (*cmd)(Monitor *mon, const QDict *qdict);
117 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
118 int (*cmd_async)(Monitor *mon, const QDict *params,
119 MonitorCompletion *cb, void *opaque);
120 } mhandler;
121 int flags;
122 } mon_cmd_t;
124 /* file descriptors passed via SCM_RIGHTS */
125 typedef struct mon_fd_t mon_fd_t;
126 struct mon_fd_t {
127 char *name;
128 int fd;
129 QLIST_ENTRY(mon_fd_t) next;
132 typedef struct MonitorControl {
133 QObject *id;
134 JSONMessageParser parser;
135 int command_mode;
136 } MonitorControl;
138 struct Monitor {
139 CharDriverState *chr;
140 int mux_out;
141 int reset_seen;
142 int flags;
143 int suspend_cnt;
144 uint8_t outbuf[1024];
145 int outbuf_index;
146 ReadLineState *rs;
147 MonitorControl *mc;
148 CPUState *mon_cpu;
149 BlockDriverCompletionFunc *password_completion_cb;
150 void *password_opaque;
151 #ifdef CONFIG_DEBUG_MONITOR
152 int print_calls_nr;
153 #endif
154 QError *error;
155 QLIST_HEAD(,mon_fd_t) fds;
156 QLIST_ENTRY(Monitor) entry;
159 #ifdef CONFIG_DEBUG_MONITOR
160 #define MON_DEBUG(fmt, ...) do { \
161 fprintf(stderr, "Monitor: "); \
162 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
164 static inline void mon_print_count_inc(Monitor *mon)
166 mon->print_calls_nr++;
169 static inline void mon_print_count_init(Monitor *mon)
171 mon->print_calls_nr = 0;
174 static inline int mon_print_count_get(const Monitor *mon)
176 return mon->print_calls_nr;
179 #else /* !CONFIG_DEBUG_MONITOR */
180 #define MON_DEBUG(fmt, ...) do { } while (0)
181 static inline void mon_print_count_inc(Monitor *mon) { }
182 static inline void mon_print_count_init(Monitor *mon) { }
183 static inline int mon_print_count_get(const Monitor *mon) { return 0; }
184 #endif /* CONFIG_DEBUG_MONITOR */
186 /* QMP checker flags */
187 #define QMP_ACCEPT_UNKNOWNS 1
189 static QLIST_HEAD(mon_list, Monitor) mon_list;
191 static const mon_cmd_t mon_cmds[];
192 static const mon_cmd_t info_cmds[];
194 static const mon_cmd_t qmp_cmds[];
195 static const mon_cmd_t qmp_query_cmds[];
197 Monitor *cur_mon;
198 Monitor *default_mon;
200 static void monitor_command_cb(Monitor *mon, const char *cmdline,
201 void *opaque);
203 static inline int qmp_cmd_mode(const Monitor *mon)
205 return (mon->mc ? mon->mc->command_mode : 0);
208 /* Return true if in control mode, false otherwise */
209 static inline int monitor_ctrl_mode(const Monitor *mon)
211 return (mon->flags & MONITOR_USE_CONTROL);
214 /* Return non-zero iff we have a current monitor, and it is in QMP mode. */
215 int monitor_cur_is_qmp(void)
217 return cur_mon && monitor_ctrl_mode(cur_mon);
220 static void monitor_read_command(Monitor *mon, int show_prompt)
222 if (!mon->rs)
223 return;
225 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
226 if (show_prompt)
227 readline_show_prompt(mon->rs);
230 static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
231 void *opaque)
233 if (monitor_ctrl_mode(mon)) {
234 qerror_report(QERR_MISSING_PARAMETER, "password");
235 return -EINVAL;
236 } else if (mon->rs) {
237 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
238 /* prompt is printed on return from the command handler */
239 return 0;
240 } else {
241 monitor_printf(mon, "terminal does not support password prompting\n");
242 return -ENOTTY;
246 void monitor_flush(Monitor *mon)
248 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
249 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
250 mon->outbuf_index = 0;
254 /* flush at every end of line or if the buffer is full */
255 static void monitor_puts(Monitor *mon, const char *str)
257 char c;
259 for(;;) {
260 c = *str++;
261 if (c == '\0')
262 break;
263 if (c == '\n')
264 mon->outbuf[mon->outbuf_index++] = '\r';
265 mon->outbuf[mon->outbuf_index++] = c;
266 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
267 || c == '\n')
268 monitor_flush(mon);
272 void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
274 char buf[4096];
276 if (!mon)
277 return;
279 mon_print_count_inc(mon);
281 if (monitor_ctrl_mode(mon)) {
282 return;
285 vsnprintf(buf, sizeof(buf), fmt, ap);
286 monitor_puts(mon, buf);
289 void monitor_printf(Monitor *mon, const char *fmt, ...)
291 va_list ap;
292 va_start(ap, fmt);
293 monitor_vprintf(mon, fmt, ap);
294 va_end(ap);
297 void monitor_print_filename(Monitor *mon, const char *filename)
299 int i;
301 for (i = 0; filename[i]; i++) {
302 switch (filename[i]) {
303 case ' ':
304 case '"':
305 case '\\':
306 monitor_printf(mon, "\\%c", filename[i]);
307 break;
308 case '\t':
309 monitor_printf(mon, "\\t");
310 break;
311 case '\r':
312 monitor_printf(mon, "\\r");
313 break;
314 case '\n':
315 monitor_printf(mon, "\\n");
316 break;
317 default:
318 monitor_printf(mon, "%c", filename[i]);
319 break;
324 static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
325 const char *fmt, ...)
327 va_list ap;
328 va_start(ap, fmt);
329 monitor_vprintf((Monitor *)stream, fmt, ap);
330 va_end(ap);
331 return 0;
334 static void monitor_user_noop(Monitor *mon, const QObject *data) { }
336 static inline int handler_is_qobject(const mon_cmd_t *cmd)
338 return cmd->user_print != NULL;
341 static inline bool handler_is_async(const mon_cmd_t *cmd)
343 return cmd->flags & MONITOR_CMD_ASYNC;
346 static inline int monitor_has_error(const Monitor *mon)
348 return mon->error != NULL;
351 static void monitor_json_emitter(Monitor *mon, const QObject *data)
353 QString *json;
355 if (mon->flags & MONITOR_USE_PRETTY)
356 json = qobject_to_json_pretty(data);
357 else
358 json = qobject_to_json(data);
359 assert(json != NULL);
361 qstring_append_chr(json, '\n');
362 monitor_puts(mon, qstring_get_str(json));
364 QDECREF(json);
367 static void monitor_protocol_emitter(Monitor *mon, QObject *data)
369 QDict *qmp;
371 qmp = qdict_new();
373 if (!monitor_has_error(mon)) {
374 /* success response */
375 if (data) {
376 qobject_incref(data);
377 qdict_put_obj(qmp, "return", data);
378 } else {
379 /* return an empty QDict by default */
380 qdict_put(qmp, "return", qdict_new());
382 } else {
383 /* error response */
384 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
385 qdict_put(qmp, "error", mon->error->error);
386 QINCREF(mon->error->error);
387 QDECREF(mon->error);
388 mon->error = NULL;
391 if (mon->mc->id) {
392 qdict_put_obj(qmp, "id", mon->mc->id);
393 mon->mc->id = NULL;
396 monitor_json_emitter(mon, QOBJECT(qmp));
397 QDECREF(qmp);
400 static void timestamp_put(QDict *qdict)
402 int err;
403 QObject *obj;
404 qemu_timeval tv;
406 err = qemu_gettimeofday(&tv);
407 if (err < 0)
408 return;
410 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
411 "'microseconds': %" PRId64 " }",
412 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
413 qdict_put_obj(qdict, "timestamp", obj);
417 * monitor_protocol_event(): Generate a Monitor event
419 * Event-specific data can be emitted through the (optional) 'data' parameter.
421 void monitor_protocol_event(MonitorEvent event, QObject *data)
423 QDict *qmp;
424 const char *event_name;
425 Monitor *mon;
427 assert(event < QEVENT_MAX);
429 switch (event) {
430 case QEVENT_SHUTDOWN:
431 event_name = "SHUTDOWN";
432 break;
433 case QEVENT_RESET:
434 event_name = "RESET";
435 break;
436 case QEVENT_POWERDOWN:
437 event_name = "POWERDOWN";
438 break;
439 case QEVENT_STOP:
440 event_name = "STOP";
441 break;
442 case QEVENT_RESUME:
443 event_name = "RESUME";
444 break;
445 case QEVENT_VNC_CONNECTED:
446 event_name = "VNC_CONNECTED";
447 break;
448 case QEVENT_VNC_INITIALIZED:
449 event_name = "VNC_INITIALIZED";
450 break;
451 case QEVENT_VNC_DISCONNECTED:
452 event_name = "VNC_DISCONNECTED";
453 break;
454 case QEVENT_BLOCK_IO_ERROR:
455 event_name = "BLOCK_IO_ERROR";
456 break;
457 case QEVENT_RTC_CHANGE:
458 event_name = "RTC_CHANGE";
459 break;
460 case QEVENT_WATCHDOG:
461 event_name = "WATCHDOG";
462 break;
463 default:
464 abort();
465 break;
468 qmp = qdict_new();
469 timestamp_put(qmp);
470 qdict_put(qmp, "event", qstring_from_str(event_name));
471 if (data) {
472 qobject_incref(data);
473 qdict_put_obj(qmp, "data", data);
476 QLIST_FOREACH(mon, &mon_list, entry) {
477 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
478 monitor_json_emitter(mon, QOBJECT(qmp));
481 QDECREF(qmp);
484 static int do_qmp_capabilities(Monitor *mon, const QDict *params,
485 QObject **ret_data)
487 /* Will setup QMP capabilities in the future */
488 if (monitor_ctrl_mode(mon)) {
489 mon->mc->command_mode = 1;
492 return 0;
495 static int compare_cmd(const char *name, const char *list)
497 const char *p, *pstart;
498 int len;
499 len = strlen(name);
500 p = list;
501 for(;;) {
502 pstart = p;
503 p = strchr(p, '|');
504 if (!p)
505 p = pstart + strlen(pstart);
506 if ((p - pstart) == len && !memcmp(pstart, name, len))
507 return 1;
508 if (*p == '\0')
509 break;
510 p++;
512 return 0;
515 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
516 const char *prefix, const char *name)
518 const mon_cmd_t *cmd;
520 for(cmd = cmds; cmd->name != NULL; cmd++) {
521 if (!name || !strcmp(name, cmd->name))
522 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
523 cmd->params, cmd->help);
527 static void help_cmd(Monitor *mon, const char *name)
529 if (name && !strcmp(name, "info")) {
530 help_cmd_dump(mon, info_cmds, "info ", NULL);
531 } else {
532 help_cmd_dump(mon, mon_cmds, "", name);
533 if (name && !strcmp(name, "log")) {
534 const CPULogItem *item;
535 monitor_printf(mon, "Log items (comma separated):\n");
536 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
537 for(item = cpu_log_items; item->mask != 0; item++) {
538 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
544 static void do_help_cmd(Monitor *mon, const QDict *qdict)
546 help_cmd(mon, qdict_get_try_str(qdict, "name"));
549 #ifdef CONFIG_SIMPLE_TRACE
550 static void do_change_trace_event_state(Monitor *mon, const QDict *qdict)
552 const char *tp_name = qdict_get_str(qdict, "name");
553 bool new_state = qdict_get_bool(qdict, "option");
554 int ret = st_change_trace_event_state(tp_name, new_state);
556 if (!ret) {
557 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
561 static void do_trace_file(Monitor *mon, const QDict *qdict)
563 const char *op = qdict_get_try_str(qdict, "op");
564 const char *arg = qdict_get_try_str(qdict, "arg");
566 if (!op) {
567 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
568 } else if (!strcmp(op, "on")) {
569 st_set_trace_file_enabled(true);
570 } else if (!strcmp(op, "off")) {
571 st_set_trace_file_enabled(false);
572 } else if (!strcmp(op, "flush")) {
573 st_flush_trace_buffer();
574 } else if (!strcmp(op, "set")) {
575 if (arg) {
576 st_set_trace_file(arg);
578 } else {
579 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
580 help_cmd(mon, "trace-file");
583 #endif
585 static void user_monitor_complete(void *opaque, QObject *ret_data)
587 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
589 if (ret_data) {
590 data->user_print(data->mon, ret_data);
592 monitor_resume(data->mon);
593 qemu_free(data);
596 static void qmp_monitor_complete(void *opaque, QObject *ret_data)
598 monitor_protocol_emitter(opaque, ret_data);
601 static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
602 const QDict *params)
604 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
607 static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
609 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
612 static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
613 const QDict *params)
615 int ret;
617 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
618 cb_data->mon = mon;
619 cb_data->user_print = cmd->user_print;
620 monitor_suspend(mon);
621 ret = cmd->mhandler.cmd_async(mon, params,
622 user_monitor_complete, cb_data);
623 if (ret < 0) {
624 monitor_resume(mon);
625 qemu_free(cb_data);
629 static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
631 int ret;
633 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
634 cb_data->mon = mon;
635 cb_data->user_print = cmd->user_print;
636 monitor_suspend(mon);
637 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
638 if (ret < 0) {
639 monitor_resume(mon);
640 qemu_free(cb_data);
644 static void do_info(Monitor *mon, const QDict *qdict)
646 const mon_cmd_t *cmd;
647 const char *item = qdict_get_try_str(qdict, "item");
649 if (!item) {
650 goto help;
653 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
654 if (compare_cmd(item, cmd->name))
655 break;
658 if (cmd->name == NULL) {
659 goto help;
662 if (handler_is_async(cmd)) {
663 user_async_info_handler(mon, cmd);
664 } else if (handler_is_qobject(cmd)) {
665 QObject *info_data = NULL;
667 cmd->mhandler.info_new(mon, &info_data);
668 if (info_data) {
669 cmd->user_print(mon, info_data);
670 qobject_decref(info_data);
672 } else {
673 cmd->mhandler.info(mon);
676 return;
678 help:
679 help_cmd(mon, "info");
682 static void do_info_version_print(Monitor *mon, const QObject *data)
684 QDict *qdict;
685 QDict *qemu;
687 qdict = qobject_to_qdict(data);
688 qemu = qdict_get_qdict(qdict, "qemu");
690 monitor_printf(mon, "%" PRId64 ".%" PRId64 ".%" PRId64 "%s\n",
691 qdict_get_int(qemu, "major"),
692 qdict_get_int(qemu, "minor"),
693 qdict_get_int(qemu, "micro"),
694 qdict_get_str(qdict, "package"));
697 static void do_info_version(Monitor *mon, QObject **ret_data)
699 const char *version = QEMU_VERSION;
700 int major = 0, minor = 0, micro = 0;
701 char *tmp;
703 major = strtol(version, &tmp, 10);
704 tmp++;
705 minor = strtol(tmp, &tmp, 10);
706 tmp++;
707 micro = strtol(tmp, &tmp, 10);
709 *ret_data = qobject_from_jsonf("{ 'qemu': { 'major': %d, 'minor': %d, \
710 'micro': %d }, 'package': %s }", major, minor, micro, QEMU_PKGVERSION);
713 static void do_info_name_print(Monitor *mon, const QObject *data)
715 QDict *qdict;
717 qdict = qobject_to_qdict(data);
718 if (qdict_size(qdict) == 0) {
719 return;
722 monitor_printf(mon, "%s\n", qdict_get_str(qdict, "name"));
725 static void do_info_name(Monitor *mon, QObject **ret_data)
727 *ret_data = qemu_name ? qobject_from_jsonf("{'name': %s }", qemu_name) :
728 qobject_from_jsonf("{}");
731 static QObject *get_cmd_dict(const char *name)
733 const char *p;
735 /* Remove '|' from some commands */
736 p = strchr(name, '|');
737 if (p) {
738 p++;
739 } else {
740 p = name;
743 return qobject_from_jsonf("{ 'name': %s }", p);
746 static void do_info_commands(Monitor *mon, QObject **ret_data)
748 QList *cmd_list;
749 const mon_cmd_t *cmd;
751 cmd_list = qlist_new();
753 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
754 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
757 for (cmd = qmp_query_cmds; cmd->name != NULL; cmd++) {
758 char buf[128];
759 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
760 qlist_append_obj(cmd_list, get_cmd_dict(buf));
763 *ret_data = QOBJECT(cmd_list);
766 static void do_info_uuid_print(Monitor *mon, const QObject *data)
768 monitor_printf(mon, "%s\n", qdict_get_str(qobject_to_qdict(data), "UUID"));
771 static void do_info_uuid(Monitor *mon, QObject **ret_data)
773 char uuid[64];
775 snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1],
776 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
777 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
778 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
779 qemu_uuid[14], qemu_uuid[15]);
780 *ret_data = qobject_from_jsonf("{ 'UUID': %s }", uuid);
783 /* get the current CPU defined by the user */
784 static int mon_set_cpu(int cpu_index)
786 CPUState *env;
788 for(env = first_cpu; env != NULL; env = env->next_cpu) {
789 if (env->cpu_index == cpu_index) {
790 cur_mon->mon_cpu = env;
791 return 0;
794 return -1;
797 static CPUState *mon_get_cpu(void)
799 if (!cur_mon->mon_cpu) {
800 mon_set_cpu(0);
802 cpu_synchronize_state(cur_mon->mon_cpu);
803 return cur_mon->mon_cpu;
806 static void do_info_registers(Monitor *mon)
808 CPUState *env;
809 env = mon_get_cpu();
810 #ifdef TARGET_I386
811 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
812 X86_DUMP_FPU);
813 #else
814 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
816 #endif
819 static void print_cpu_iter(QObject *obj, void *opaque)
821 QDict *cpu;
822 int active = ' ';
823 Monitor *mon = opaque;
825 assert(qobject_type(obj) == QTYPE_QDICT);
826 cpu = qobject_to_qdict(obj);
828 if (qdict_get_bool(cpu, "current")) {
829 active = '*';
832 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
834 #if defined(TARGET_I386)
835 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
836 (target_ulong) qdict_get_int(cpu, "pc"));
837 #elif defined(TARGET_PPC)
838 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
839 (target_long) qdict_get_int(cpu, "nip"));
840 #elif defined(TARGET_SPARC)
841 monitor_printf(mon, "pc=0x " TARGET_FMT_lx,
842 (target_long) qdict_get_int(cpu, "pc"));
843 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
844 (target_long) qdict_get_int(cpu, "npc"));
845 #elif defined(TARGET_MIPS)
846 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
847 (target_long) qdict_get_int(cpu, "PC"));
848 #endif
850 if (qdict_get_bool(cpu, "halted")) {
851 monitor_printf(mon, " (halted)");
854 monitor_printf(mon, " thread_id=%" PRId64 " ",
855 qdict_get_int(cpu, "thread_id"));
857 monitor_printf(mon, "\n");
860 static void monitor_print_cpus(Monitor *mon, const QObject *data)
862 QList *cpu_list;
864 assert(qobject_type(data) == QTYPE_QLIST);
865 cpu_list = qobject_to_qlist(data);
866 qlist_iter(cpu_list, print_cpu_iter, mon);
869 static void do_info_cpus(Monitor *mon, QObject **ret_data)
871 CPUState *env;
872 QList *cpu_list;
874 cpu_list = qlist_new();
876 /* just to set the default cpu if not already done */
877 mon_get_cpu();
879 for(env = first_cpu; env != NULL; env = env->next_cpu) {
880 QDict *cpu;
881 QObject *obj;
883 cpu_synchronize_state(env);
885 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
886 env->cpu_index, env == mon->mon_cpu,
887 env->halted);
889 cpu = qobject_to_qdict(obj);
891 #if defined(TARGET_I386)
892 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
893 #elif defined(TARGET_PPC)
894 qdict_put(cpu, "nip", qint_from_int(env->nip));
895 #elif defined(TARGET_SPARC)
896 qdict_put(cpu, "pc", qint_from_int(env->pc));
897 qdict_put(cpu, "npc", qint_from_int(env->npc));
898 #elif defined(TARGET_MIPS)
899 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
900 #endif
901 qdict_put(cpu, "thread_id", qint_from_int(env->thread_id));
903 qlist_append(cpu_list, cpu);
906 *ret_data = QOBJECT(cpu_list);
909 static int do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
911 int index = qdict_get_int(qdict, "index");
912 if (mon_set_cpu(index) < 0) {
913 qerror_report(QERR_INVALID_PARAMETER_VALUE, "index",
914 "a CPU number");
915 return -1;
917 return 0;
920 static void do_cpu_set_nr(Monitor *mon, const QDict *qdict)
922 int state, value;
923 const char *status;
925 status = qdict_get_str(qdict, "state");
926 value = qdict_get_int(qdict, "cpu");
928 if (!strcmp(status, "online"))
929 state = 1;
930 else if (!strcmp(status, "offline"))
931 state = 0;
932 else {
933 monitor_printf(mon, "invalid status: %s\n", status);
934 return;
936 #if defined(TARGET_I386) || defined(TARGET_X86_64)
937 qemu_system_cpu_hot_add(value, state);
938 #endif
941 static void do_info_jit(Monitor *mon)
943 dump_exec_info((FILE *)mon, monitor_fprintf);
946 static void do_info_history(Monitor *mon)
948 int i;
949 const char *str;
951 if (!mon->rs)
952 return;
953 i = 0;
954 for(;;) {
955 str = readline_get_history(mon->rs, i);
956 if (!str)
957 break;
958 monitor_printf(mon, "%d: '%s'\n", i, str);
959 i++;
963 #if defined(TARGET_PPC)
964 /* XXX: not implemented in other targets */
965 static void do_info_cpu_stats(Monitor *mon)
967 CPUState *env;
969 env = mon_get_cpu();
970 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
972 #endif
974 #if defined(CONFIG_SIMPLE_TRACE)
975 static void do_info_trace(Monitor *mon)
977 st_print_trace((FILE *)mon, &monitor_fprintf);
980 static void do_info_trace_events(Monitor *mon)
982 st_print_trace_events((FILE *)mon, &monitor_fprintf);
984 #endif
987 * do_quit(): Quit QEMU execution
989 static int do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
991 monitor_suspend(mon);
992 no_shutdown = 0;
993 qemu_system_shutdown_request();
995 return 0;
998 static int change_vnc_password(const char *password)
1000 if (vnc_display_password(NULL, password) < 0) {
1001 qerror_report(QERR_SET_PASSWD_FAILED);
1002 return -1;
1005 return 0;
1008 static void change_vnc_password_cb(Monitor *mon, const char *password,
1009 void *opaque)
1011 change_vnc_password(password);
1012 monitor_read_command(mon, 1);
1015 static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
1017 if (strcmp(target, "passwd") == 0 ||
1018 strcmp(target, "password") == 0) {
1019 if (arg) {
1020 char password[9];
1021 strncpy(password, arg, sizeof(password));
1022 password[sizeof(password) - 1] = '\0';
1023 return change_vnc_password(password);
1024 } else {
1025 return monitor_read_password(mon, change_vnc_password_cb, NULL);
1027 } else {
1028 if (vnc_display_open(NULL, target) < 0) {
1029 qerror_report(QERR_VNC_SERVER_FAILED, target);
1030 return -1;
1034 return 0;
1038 * do_change(): Change a removable medium, or VNC configuration
1040 static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
1042 const char *device = qdict_get_str(qdict, "device");
1043 const char *target = qdict_get_str(qdict, "target");
1044 const char *arg = qdict_get_try_str(qdict, "arg");
1045 int ret;
1047 if (strcmp(device, "vnc") == 0) {
1048 ret = do_change_vnc(mon, target, arg);
1049 } else {
1050 ret = do_change_block(mon, device, target, arg);
1053 return ret;
1056 static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
1058 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
1059 return 0;
1062 static void do_logfile(Monitor *mon, const QDict *qdict)
1064 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
1067 static void do_log(Monitor *mon, const QDict *qdict)
1069 int mask;
1070 const char *items = qdict_get_str(qdict, "items");
1072 if (!strcmp(items, "none")) {
1073 mask = 0;
1074 } else {
1075 mask = cpu_str_to_log_mask(items);
1076 if (!mask) {
1077 help_cmd(mon, "log");
1078 return;
1081 cpu_set_log(mask);
1084 static void do_singlestep(Monitor *mon, const QDict *qdict)
1086 const char *option = qdict_get_try_str(qdict, "option");
1087 if (!option || !strcmp(option, "on")) {
1088 singlestep = 1;
1089 } else if (!strcmp(option, "off")) {
1090 singlestep = 0;
1091 } else {
1092 monitor_printf(mon, "unexpected option %s\n", option);
1097 * do_stop(): Stop VM execution
1099 static int do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
1101 vm_stop(EXCP_INTERRUPT);
1102 return 0;
1105 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
1107 struct bdrv_iterate_context {
1108 Monitor *mon;
1109 int err;
1113 * do_cont(): Resume emulation.
1115 static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
1117 struct bdrv_iterate_context context = { mon, 0 };
1119 if (incoming_expected) {
1120 qerror_report(QERR_MIGRATION_EXPECTED);
1121 return -1;
1123 bdrv_iterate(encrypted_bdrv_it, &context);
1124 /* only resume the vm if all keys are set and valid */
1125 if (!context.err) {
1126 vm_start();
1127 return 0;
1128 } else {
1129 return -1;
1133 static void bdrv_key_cb(void *opaque, int err)
1135 Monitor *mon = opaque;
1137 /* another key was set successfully, retry to continue */
1138 if (!err)
1139 do_cont(mon, NULL, NULL);
1142 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1144 struct bdrv_iterate_context *context = opaque;
1146 if (!context->err && bdrv_key_required(bs)) {
1147 context->err = -EBUSY;
1148 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1149 context->mon);
1153 static void do_gdbserver(Monitor *mon, const QDict *qdict)
1155 const char *device = qdict_get_try_str(qdict, "device");
1156 if (!device)
1157 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1158 if (gdbserver_start(device) < 0) {
1159 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1160 device);
1161 } else if (strcmp(device, "none") == 0) {
1162 monitor_printf(mon, "Disabled gdbserver\n");
1163 } else {
1164 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1165 device);
1169 static void do_watchdog_action(Monitor *mon, const QDict *qdict)
1171 const char *action = qdict_get_str(qdict, "action");
1172 if (select_watchdog_action(action) == -1) {
1173 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1177 static void monitor_printc(Monitor *mon, int c)
1179 monitor_printf(mon, "'");
1180 switch(c) {
1181 case '\'':
1182 monitor_printf(mon, "\\'");
1183 break;
1184 case '\\':
1185 monitor_printf(mon, "\\\\");
1186 break;
1187 case '\n':
1188 monitor_printf(mon, "\\n");
1189 break;
1190 case '\r':
1191 monitor_printf(mon, "\\r");
1192 break;
1193 default:
1194 if (c >= 32 && c <= 126) {
1195 monitor_printf(mon, "%c", c);
1196 } else {
1197 monitor_printf(mon, "\\x%02x", c);
1199 break;
1201 monitor_printf(mon, "'");
1204 static void memory_dump(Monitor *mon, int count, int format, int wsize,
1205 target_phys_addr_t addr, int is_physical)
1207 CPUState *env;
1208 int l, line_size, i, max_digits, len;
1209 uint8_t buf[16];
1210 uint64_t v;
1212 if (format == 'i') {
1213 int flags;
1214 flags = 0;
1215 env = mon_get_cpu();
1216 #ifdef TARGET_I386
1217 if (wsize == 2) {
1218 flags = 1;
1219 } else if (wsize == 4) {
1220 flags = 0;
1221 } else {
1222 /* as default we use the current CS size */
1223 flags = 0;
1224 if (env) {
1225 #ifdef TARGET_X86_64
1226 if ((env->efer & MSR_EFER_LMA) &&
1227 (env->segs[R_CS].flags & DESC_L_MASK))
1228 flags = 2;
1229 else
1230 #endif
1231 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1232 flags = 1;
1235 #endif
1236 monitor_disas(mon, env, addr, count, is_physical, flags);
1237 return;
1240 len = wsize * count;
1241 if (wsize == 1)
1242 line_size = 8;
1243 else
1244 line_size = 16;
1245 max_digits = 0;
1247 switch(format) {
1248 case 'o':
1249 max_digits = (wsize * 8 + 2) / 3;
1250 break;
1251 default:
1252 case 'x':
1253 max_digits = (wsize * 8) / 4;
1254 break;
1255 case 'u':
1256 case 'd':
1257 max_digits = (wsize * 8 * 10 + 32) / 33;
1258 break;
1259 case 'c':
1260 wsize = 1;
1261 break;
1264 while (len > 0) {
1265 if (is_physical)
1266 monitor_printf(mon, TARGET_FMT_plx ":", addr);
1267 else
1268 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
1269 l = len;
1270 if (l > line_size)
1271 l = line_size;
1272 if (is_physical) {
1273 cpu_physical_memory_rw(addr, buf, l, 0);
1274 } else {
1275 env = mon_get_cpu();
1276 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
1277 monitor_printf(mon, " Cannot access memory\n");
1278 break;
1281 i = 0;
1282 while (i < l) {
1283 switch(wsize) {
1284 default:
1285 case 1:
1286 v = ldub_raw(buf + i);
1287 break;
1288 case 2:
1289 v = lduw_raw(buf + i);
1290 break;
1291 case 4:
1292 v = (uint32_t)ldl_raw(buf + i);
1293 break;
1294 case 8:
1295 v = ldq_raw(buf + i);
1296 break;
1298 monitor_printf(mon, " ");
1299 switch(format) {
1300 case 'o':
1301 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
1302 break;
1303 case 'x':
1304 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
1305 break;
1306 case 'u':
1307 monitor_printf(mon, "%*" PRIu64, max_digits, v);
1308 break;
1309 case 'd':
1310 monitor_printf(mon, "%*" PRId64, max_digits, v);
1311 break;
1312 case 'c':
1313 monitor_printc(mon, v);
1314 break;
1316 i += wsize;
1318 monitor_printf(mon, "\n");
1319 addr += l;
1320 len -= l;
1324 static void do_memory_dump(Monitor *mon, const QDict *qdict)
1326 int count = qdict_get_int(qdict, "count");
1327 int format = qdict_get_int(qdict, "format");
1328 int size = qdict_get_int(qdict, "size");
1329 target_long addr = qdict_get_int(qdict, "addr");
1331 memory_dump(mon, count, format, size, addr, 0);
1334 static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
1336 int count = qdict_get_int(qdict, "count");
1337 int format = qdict_get_int(qdict, "format");
1338 int size = qdict_get_int(qdict, "size");
1339 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
1341 memory_dump(mon, count, format, size, addr, 1);
1344 static void do_print(Monitor *mon, const QDict *qdict)
1346 int format = qdict_get_int(qdict, "format");
1347 target_phys_addr_t val = qdict_get_int(qdict, "val");
1349 #if TARGET_PHYS_ADDR_BITS == 32
1350 switch(format) {
1351 case 'o':
1352 monitor_printf(mon, "%#o", val);
1353 break;
1354 case 'x':
1355 monitor_printf(mon, "%#x", val);
1356 break;
1357 case 'u':
1358 monitor_printf(mon, "%u", val);
1359 break;
1360 default:
1361 case 'd':
1362 monitor_printf(mon, "%d", val);
1363 break;
1364 case 'c':
1365 monitor_printc(mon, val);
1366 break;
1368 #else
1369 switch(format) {
1370 case 'o':
1371 monitor_printf(mon, "%#" PRIo64, val);
1372 break;
1373 case 'x':
1374 monitor_printf(mon, "%#" PRIx64, val);
1375 break;
1376 case 'u':
1377 monitor_printf(mon, "%" PRIu64, val);
1378 break;
1379 default:
1380 case 'd':
1381 monitor_printf(mon, "%" PRId64, val);
1382 break;
1383 case 'c':
1384 monitor_printc(mon, val);
1385 break;
1387 #endif
1388 monitor_printf(mon, "\n");
1391 static int do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
1393 FILE *f;
1394 uint32_t size = qdict_get_int(qdict, "size");
1395 const char *filename = qdict_get_str(qdict, "filename");
1396 target_long addr = qdict_get_int(qdict, "val");
1397 uint32_t l;
1398 CPUState *env;
1399 uint8_t buf[1024];
1400 int ret = -1;
1402 env = mon_get_cpu();
1404 f = fopen(filename, "wb");
1405 if (!f) {
1406 qerror_report(QERR_OPEN_FILE_FAILED, filename);
1407 return -1;
1409 while (size != 0) {
1410 l = sizeof(buf);
1411 if (l > size)
1412 l = size;
1413 cpu_memory_rw_debug(env, addr, buf, l, 0);
1414 if (fwrite(buf, 1, l, f) != l) {
1415 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1416 goto exit;
1418 addr += l;
1419 size -= l;
1422 ret = 0;
1424 exit:
1425 fclose(f);
1426 return ret;
1429 static int do_physical_memory_save(Monitor *mon, const QDict *qdict,
1430 QObject **ret_data)
1432 FILE *f;
1433 uint32_t l;
1434 uint8_t buf[1024];
1435 uint32_t size = qdict_get_int(qdict, "size");
1436 const char *filename = qdict_get_str(qdict, "filename");
1437 target_phys_addr_t addr = qdict_get_int(qdict, "val");
1438 int ret = -1;
1440 f = fopen(filename, "wb");
1441 if (!f) {
1442 qerror_report(QERR_OPEN_FILE_FAILED, filename);
1443 return -1;
1445 while (size != 0) {
1446 l = sizeof(buf);
1447 if (l > size)
1448 l = size;
1449 cpu_physical_memory_rw(addr, buf, l, 0);
1450 if (fwrite(buf, 1, l, f) != l) {
1451 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1452 goto exit;
1454 fflush(f);
1455 addr += l;
1456 size -= l;
1459 ret = 0;
1461 exit:
1462 fclose(f);
1463 return ret;
1466 static void do_sum(Monitor *mon, const QDict *qdict)
1468 uint32_t addr;
1469 uint8_t buf[1];
1470 uint16_t sum;
1471 uint32_t start = qdict_get_int(qdict, "start");
1472 uint32_t size = qdict_get_int(qdict, "size");
1474 sum = 0;
1475 for(addr = start; addr < (start + size); addr++) {
1476 cpu_physical_memory_rw(addr, buf, 1, 0);
1477 /* BSD sum algorithm ('sum' Unix command) */
1478 sum = (sum >> 1) | (sum << 15);
1479 sum += buf[0];
1481 monitor_printf(mon, "%05d\n", sum);
1484 typedef struct {
1485 int keycode;
1486 const char *name;
1487 } KeyDef;
1489 static const KeyDef key_defs[] = {
1490 { 0x2a, "shift" },
1491 { 0x36, "shift_r" },
1493 { 0x38, "alt" },
1494 { 0xb8, "alt_r" },
1495 { 0x64, "altgr" },
1496 { 0xe4, "altgr_r" },
1497 { 0x1d, "ctrl" },
1498 { 0x9d, "ctrl_r" },
1500 { 0xdd, "menu" },
1502 { 0x01, "esc" },
1504 { 0x02, "1" },
1505 { 0x03, "2" },
1506 { 0x04, "3" },
1507 { 0x05, "4" },
1508 { 0x06, "5" },
1509 { 0x07, "6" },
1510 { 0x08, "7" },
1511 { 0x09, "8" },
1512 { 0x0a, "9" },
1513 { 0x0b, "0" },
1514 { 0x0c, "minus" },
1515 { 0x0d, "equal" },
1516 { 0x0e, "backspace" },
1518 { 0x0f, "tab" },
1519 { 0x10, "q" },
1520 { 0x11, "w" },
1521 { 0x12, "e" },
1522 { 0x13, "r" },
1523 { 0x14, "t" },
1524 { 0x15, "y" },
1525 { 0x16, "u" },
1526 { 0x17, "i" },
1527 { 0x18, "o" },
1528 { 0x19, "p" },
1529 { 0x1a, "bracket_left" },
1530 { 0x1b, "bracket_right" },
1531 { 0x1c, "ret" },
1533 { 0x1e, "a" },
1534 { 0x1f, "s" },
1535 { 0x20, "d" },
1536 { 0x21, "f" },
1537 { 0x22, "g" },
1538 { 0x23, "h" },
1539 { 0x24, "j" },
1540 { 0x25, "k" },
1541 { 0x26, "l" },
1542 { 0x27, "semicolon" },
1543 { 0x28, "apostrophe" },
1544 { 0x29, "grave_accent" },
1546 { 0x2b, "backslash" },
1547 { 0x2c, "z" },
1548 { 0x2d, "x" },
1549 { 0x2e, "c" },
1550 { 0x2f, "v" },
1551 { 0x30, "b" },
1552 { 0x31, "n" },
1553 { 0x32, "m" },
1554 { 0x33, "comma" },
1555 { 0x34, "dot" },
1556 { 0x35, "slash" },
1558 { 0x37, "asterisk" },
1560 { 0x39, "spc" },
1561 { 0x3a, "caps_lock" },
1562 { 0x3b, "f1" },
1563 { 0x3c, "f2" },
1564 { 0x3d, "f3" },
1565 { 0x3e, "f4" },
1566 { 0x3f, "f5" },
1567 { 0x40, "f6" },
1568 { 0x41, "f7" },
1569 { 0x42, "f8" },
1570 { 0x43, "f9" },
1571 { 0x44, "f10" },
1572 { 0x45, "num_lock" },
1573 { 0x46, "scroll_lock" },
1575 { 0xb5, "kp_divide" },
1576 { 0x37, "kp_multiply" },
1577 { 0x4a, "kp_subtract" },
1578 { 0x4e, "kp_add" },
1579 { 0x9c, "kp_enter" },
1580 { 0x53, "kp_decimal" },
1581 { 0x54, "sysrq" },
1583 { 0x52, "kp_0" },
1584 { 0x4f, "kp_1" },
1585 { 0x50, "kp_2" },
1586 { 0x51, "kp_3" },
1587 { 0x4b, "kp_4" },
1588 { 0x4c, "kp_5" },
1589 { 0x4d, "kp_6" },
1590 { 0x47, "kp_7" },
1591 { 0x48, "kp_8" },
1592 { 0x49, "kp_9" },
1594 { 0x56, "<" },
1596 { 0x57, "f11" },
1597 { 0x58, "f12" },
1599 { 0xb7, "print" },
1601 { 0xc7, "home" },
1602 { 0xc9, "pgup" },
1603 { 0xd1, "pgdn" },
1604 { 0xcf, "end" },
1606 { 0xcb, "left" },
1607 { 0xc8, "up" },
1608 { 0xd0, "down" },
1609 { 0xcd, "right" },
1611 { 0xd2, "insert" },
1612 { 0xd3, "delete" },
1613 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1614 { 0xf0, "stop" },
1615 { 0xf1, "again" },
1616 { 0xf2, "props" },
1617 { 0xf3, "undo" },
1618 { 0xf4, "front" },
1619 { 0xf5, "copy" },
1620 { 0xf6, "open" },
1621 { 0xf7, "paste" },
1622 { 0xf8, "find" },
1623 { 0xf9, "cut" },
1624 { 0xfa, "lf" },
1625 { 0xfb, "help" },
1626 { 0xfc, "meta_l" },
1627 { 0xfd, "meta_r" },
1628 { 0xfe, "compose" },
1629 #endif
1630 { 0, NULL },
1633 static int get_keycode(const char *key)
1635 const KeyDef *p;
1636 char *endp;
1637 int ret;
1639 for(p = key_defs; p->name != NULL; p++) {
1640 if (!strcmp(key, p->name))
1641 return p->keycode;
1643 if (strstart(key, "0x", NULL)) {
1644 ret = strtoul(key, &endp, 0);
1645 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1646 return ret;
1648 return -1;
1651 #define MAX_KEYCODES 16
1652 static uint8_t keycodes[MAX_KEYCODES];
1653 static int nb_pending_keycodes;
1654 static QEMUTimer *key_timer;
1656 static void release_keys(void *opaque)
1658 int keycode;
1660 while (nb_pending_keycodes > 0) {
1661 nb_pending_keycodes--;
1662 keycode = keycodes[nb_pending_keycodes];
1663 if (keycode & 0x80)
1664 kbd_put_keycode(0xe0);
1665 kbd_put_keycode(keycode | 0x80);
1669 static void do_sendkey(Monitor *mon, const QDict *qdict)
1671 char keyname_buf[16];
1672 char *separator;
1673 int keyname_len, keycode, i;
1674 const char *string = qdict_get_str(qdict, "string");
1675 int has_hold_time = qdict_haskey(qdict, "hold_time");
1676 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
1678 if (nb_pending_keycodes > 0) {
1679 qemu_del_timer(key_timer);
1680 release_keys(NULL);
1682 if (!has_hold_time)
1683 hold_time = 100;
1684 i = 0;
1685 while (1) {
1686 separator = strchr(string, '-');
1687 keyname_len = separator ? separator - string : strlen(string);
1688 if (keyname_len > 0) {
1689 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1690 if (keyname_len > sizeof(keyname_buf) - 1) {
1691 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
1692 return;
1694 if (i == MAX_KEYCODES) {
1695 monitor_printf(mon, "too many keys\n");
1696 return;
1698 keyname_buf[keyname_len] = 0;
1699 keycode = get_keycode(keyname_buf);
1700 if (keycode < 0) {
1701 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
1702 return;
1704 keycodes[i++] = keycode;
1706 if (!separator)
1707 break;
1708 string = separator + 1;
1710 nb_pending_keycodes = i;
1711 /* key down events */
1712 for (i = 0; i < nb_pending_keycodes; i++) {
1713 keycode = keycodes[i];
1714 if (keycode & 0x80)
1715 kbd_put_keycode(0xe0);
1716 kbd_put_keycode(keycode & 0x7f);
1718 /* delayed key up events */
1719 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
1720 muldiv64(get_ticks_per_sec(), hold_time, 1000));
1723 static int mouse_button_state;
1725 static void do_mouse_move(Monitor *mon, const QDict *qdict)
1727 int dx, dy, dz;
1728 const char *dx_str = qdict_get_str(qdict, "dx_str");
1729 const char *dy_str = qdict_get_str(qdict, "dy_str");
1730 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1731 dx = strtol(dx_str, NULL, 0);
1732 dy = strtol(dy_str, NULL, 0);
1733 dz = 0;
1734 if (dz_str)
1735 dz = strtol(dz_str, NULL, 0);
1736 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1739 static void do_mouse_button(Monitor *mon, const QDict *qdict)
1741 int button_state = qdict_get_int(qdict, "button_state");
1742 mouse_button_state = button_state;
1743 kbd_mouse_event(0, 0, 0, mouse_button_state);
1746 static void do_ioport_read(Monitor *mon, const QDict *qdict)
1748 int size = qdict_get_int(qdict, "size");
1749 int addr = qdict_get_int(qdict, "addr");
1750 int has_index = qdict_haskey(qdict, "index");
1751 uint32_t val;
1752 int suffix;
1754 if (has_index) {
1755 int index = qdict_get_int(qdict, "index");
1756 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
1757 addr++;
1759 addr &= 0xffff;
1761 switch(size) {
1762 default:
1763 case 1:
1764 val = cpu_inb(addr);
1765 suffix = 'b';
1766 break;
1767 case 2:
1768 val = cpu_inw(addr);
1769 suffix = 'w';
1770 break;
1771 case 4:
1772 val = cpu_inl(addr);
1773 suffix = 'l';
1774 break;
1776 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1777 suffix, addr, size * 2, val);
1780 static void do_ioport_write(Monitor *mon, const QDict *qdict)
1782 int size = qdict_get_int(qdict, "size");
1783 int addr = qdict_get_int(qdict, "addr");
1784 int val = qdict_get_int(qdict, "val");
1786 addr &= IOPORTS_MASK;
1788 switch (size) {
1789 default:
1790 case 1:
1791 cpu_outb(addr, val);
1792 break;
1793 case 2:
1794 cpu_outw(addr, val);
1795 break;
1796 case 4:
1797 cpu_outl(addr, val);
1798 break;
1802 static void do_boot_set(Monitor *mon, const QDict *qdict)
1804 int res;
1805 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1807 res = qemu_boot_set(bootdevice);
1808 if (res == 0) {
1809 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1810 } else if (res > 0) {
1811 monitor_printf(mon, "setting boot device list failed\n");
1812 } else {
1813 monitor_printf(mon, "no function defined to set boot device list for "
1814 "this architecture\n");
1819 * do_system_reset(): Issue a machine reset
1821 static int do_system_reset(Monitor *mon, const QDict *qdict,
1822 QObject **ret_data)
1824 qemu_system_reset_request();
1825 return 0;
1829 * do_system_powerdown(): Issue a machine powerdown
1831 static int do_system_powerdown(Monitor *mon, const QDict *qdict,
1832 QObject **ret_data)
1834 qemu_system_powerdown_request();
1835 return 0;
1838 #if defined(TARGET_I386)
1839 static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
1841 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1842 addr,
1843 pte & mask,
1844 pte & PG_GLOBAL_MASK ? 'G' : '-',
1845 pte & PG_PSE_MASK ? 'P' : '-',
1846 pte & PG_DIRTY_MASK ? 'D' : '-',
1847 pte & PG_ACCESSED_MASK ? 'A' : '-',
1848 pte & PG_PCD_MASK ? 'C' : '-',
1849 pte & PG_PWT_MASK ? 'T' : '-',
1850 pte & PG_USER_MASK ? 'U' : '-',
1851 pte & PG_RW_MASK ? 'W' : '-');
1854 static void tlb_info(Monitor *mon)
1856 CPUState *env;
1857 int l1, l2;
1858 uint32_t pgd, pde, pte;
1860 env = mon_get_cpu();
1862 if (!(env->cr[0] & CR0_PG_MASK)) {
1863 monitor_printf(mon, "PG disabled\n");
1864 return;
1866 pgd = env->cr[3] & ~0xfff;
1867 for(l1 = 0; l1 < 1024; l1++) {
1868 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1869 pde = le32_to_cpu(pde);
1870 if (pde & PG_PRESENT_MASK) {
1871 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1872 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
1873 } else {
1874 for(l2 = 0; l2 < 1024; l2++) {
1875 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
1876 (uint8_t *)&pte, 4);
1877 pte = le32_to_cpu(pte);
1878 if (pte & PG_PRESENT_MASK) {
1879 print_pte(mon, (l1 << 22) + (l2 << 12),
1880 pte & ~PG_PSE_MASK,
1881 ~0xfff);
1889 static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
1890 uint32_t end, int prot)
1892 int prot1;
1893 prot1 = *plast_prot;
1894 if (prot != prot1) {
1895 if (*pstart != -1) {
1896 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1897 *pstart, end, end - *pstart,
1898 prot1 & PG_USER_MASK ? 'u' : '-',
1899 'r',
1900 prot1 & PG_RW_MASK ? 'w' : '-');
1902 if (prot != 0)
1903 *pstart = end;
1904 else
1905 *pstart = -1;
1906 *plast_prot = prot;
1910 static void mem_info(Monitor *mon)
1912 CPUState *env;
1913 int l1, l2, prot, last_prot;
1914 uint32_t pgd, pde, pte, start, end;
1916 env = mon_get_cpu();
1918 if (!(env->cr[0] & CR0_PG_MASK)) {
1919 monitor_printf(mon, "PG disabled\n");
1920 return;
1922 pgd = env->cr[3] & ~0xfff;
1923 last_prot = 0;
1924 start = -1;
1925 for(l1 = 0; l1 < 1024; l1++) {
1926 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1927 pde = le32_to_cpu(pde);
1928 end = l1 << 22;
1929 if (pde & PG_PRESENT_MASK) {
1930 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1931 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1932 mem_print(mon, &start, &last_prot, end, prot);
1933 } else {
1934 for(l2 = 0; l2 < 1024; l2++) {
1935 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
1936 (uint8_t *)&pte, 4);
1937 pte = le32_to_cpu(pte);
1938 end = (l1 << 22) + (l2 << 12);
1939 if (pte & PG_PRESENT_MASK) {
1940 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1941 } else {
1942 prot = 0;
1944 mem_print(mon, &start, &last_prot, end, prot);
1947 } else {
1948 prot = 0;
1949 mem_print(mon, &start, &last_prot, end, prot);
1953 #endif
1955 #if defined(TARGET_SH4)
1957 static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
1959 monitor_printf(mon, " tlb%i:\t"
1960 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1961 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1962 "dirty=%hhu writethrough=%hhu\n",
1963 idx,
1964 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1965 tlb->v, tlb->sh, tlb->c, tlb->pr,
1966 tlb->d, tlb->wt);
1969 static void tlb_info(Monitor *mon)
1971 CPUState *env = mon_get_cpu();
1972 int i;
1974 monitor_printf (mon, "ITLB:\n");
1975 for (i = 0 ; i < ITLB_SIZE ; i++)
1976 print_tlb (mon, i, &env->itlb[i]);
1977 monitor_printf (mon, "UTLB:\n");
1978 for (i = 0 ; i < UTLB_SIZE ; i++)
1979 print_tlb (mon, i, &env->utlb[i]);
1982 #endif
1984 static void do_info_kvm_print(Monitor *mon, const QObject *data)
1986 QDict *qdict;
1988 qdict = qobject_to_qdict(data);
1990 monitor_printf(mon, "kvm support: ");
1991 if (qdict_get_bool(qdict, "present")) {
1992 monitor_printf(mon, "%s\n", qdict_get_bool(qdict, "enabled") ?
1993 "enabled" : "disabled");
1994 } else {
1995 monitor_printf(mon, "not compiled\n");
1999 static void do_info_kvm(Monitor *mon, QObject **ret_data)
2001 #ifdef CONFIG_KVM
2002 *ret_data = qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
2003 kvm_enabled());
2004 #else
2005 *ret_data = qobject_from_jsonf("{ 'enabled': false, 'present': false }");
2006 #endif
2009 static void do_info_numa(Monitor *mon)
2011 int i;
2012 CPUState *env;
2014 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2015 for (i = 0; i < nb_numa_nodes; i++) {
2016 monitor_printf(mon, "node %d cpus:", i);
2017 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2018 if (env->numa_node == i) {
2019 monitor_printf(mon, " %d", env->cpu_index);
2022 monitor_printf(mon, "\n");
2023 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2024 node_mem[i] >> 20);
2028 #ifdef CONFIG_PROFILER
2030 int64_t qemu_time;
2031 int64_t dev_time;
2033 static void do_info_profile(Monitor *mon)
2035 int64_t total;
2036 total = qemu_time;
2037 if (total == 0)
2038 total = 1;
2039 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
2040 dev_time, dev_time / (double)get_ticks_per_sec());
2041 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
2042 qemu_time, qemu_time / (double)get_ticks_per_sec());
2043 qemu_time = 0;
2044 dev_time = 0;
2046 #else
2047 static void do_info_profile(Monitor *mon)
2049 monitor_printf(mon, "Internal profiler not compiled\n");
2051 #endif
2053 /* Capture support */
2054 static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
2056 static void do_info_capture(Monitor *mon)
2058 int i;
2059 CaptureState *s;
2061 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2062 monitor_printf(mon, "[%d]: ", i);
2063 s->ops.info (s->opaque);
2067 #ifdef HAS_AUDIO
2068 static void do_stop_capture(Monitor *mon, const QDict *qdict)
2070 int i;
2071 int n = qdict_get_int(qdict, "n");
2072 CaptureState *s;
2074 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2075 if (i == n) {
2076 s->ops.destroy (s->opaque);
2077 QLIST_REMOVE (s, entries);
2078 qemu_free (s);
2079 return;
2084 static void do_wav_capture(Monitor *mon, const QDict *qdict)
2086 const char *path = qdict_get_str(qdict, "path");
2087 int has_freq = qdict_haskey(qdict, "freq");
2088 int freq = qdict_get_try_int(qdict, "freq", -1);
2089 int has_bits = qdict_haskey(qdict, "bits");
2090 int bits = qdict_get_try_int(qdict, "bits", -1);
2091 int has_channels = qdict_haskey(qdict, "nchannels");
2092 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
2093 CaptureState *s;
2095 s = qemu_mallocz (sizeof (*s));
2097 freq = has_freq ? freq : 44100;
2098 bits = has_bits ? bits : 16;
2099 nchannels = has_channels ? nchannels : 2;
2101 if (wav_start_capture (s, path, freq, bits, nchannels)) {
2102 monitor_printf(mon, "Faied to add wave capture\n");
2103 qemu_free (s);
2105 QLIST_INSERT_HEAD (&capture_head, s, entries);
2107 #endif
2109 #if defined(TARGET_I386)
2110 static void do_inject_nmi(Monitor *mon, const QDict *qdict)
2112 CPUState *env;
2113 int cpu_index = qdict_get_int(qdict, "cpu_index");
2115 for (env = first_cpu; env != NULL; env = env->next_cpu)
2116 if (env->cpu_index == cpu_index) {
2117 if (kvm_enabled())
2118 kvm_inject_interrupt(env, CPU_INTERRUPT_NMI);
2119 else
2120 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2121 break;
2124 #endif
2126 static void do_info_status_print(Monitor *mon, const QObject *data)
2128 QDict *qdict;
2130 qdict = qobject_to_qdict(data);
2132 monitor_printf(mon, "VM status: ");
2133 if (qdict_get_bool(qdict, "running")) {
2134 monitor_printf(mon, "running");
2135 if (qdict_get_bool(qdict, "singlestep")) {
2136 monitor_printf(mon, " (single step mode)");
2138 } else {
2139 monitor_printf(mon, "paused");
2142 monitor_printf(mon, "\n");
2145 static void do_info_status(Monitor *mon, QObject **ret_data)
2147 *ret_data = qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2148 vm_running, singlestep);
2151 static qemu_acl *find_acl(Monitor *mon, const char *name)
2153 qemu_acl *acl = qemu_acl_find(name);
2155 if (!acl) {
2156 monitor_printf(mon, "acl: unknown list '%s'\n", name);
2158 return acl;
2161 static void do_acl_show(Monitor *mon, const QDict *qdict)
2163 const char *aclname = qdict_get_str(qdict, "aclname");
2164 qemu_acl *acl = find_acl(mon, aclname);
2165 qemu_acl_entry *entry;
2166 int i = 0;
2168 if (acl) {
2169 monitor_printf(mon, "policy: %s\n",
2170 acl->defaultDeny ? "deny" : "allow");
2171 QTAILQ_FOREACH(entry, &acl->entries, next) {
2172 i++;
2173 monitor_printf(mon, "%d: %s %s\n", i,
2174 entry->deny ? "deny" : "allow", entry->match);
2179 static void do_acl_reset(Monitor *mon, const QDict *qdict)
2181 const char *aclname = qdict_get_str(qdict, "aclname");
2182 qemu_acl *acl = find_acl(mon, aclname);
2184 if (acl) {
2185 qemu_acl_reset(acl);
2186 monitor_printf(mon, "acl: removed all rules\n");
2190 static void do_acl_policy(Monitor *mon, const QDict *qdict)
2192 const char *aclname = qdict_get_str(qdict, "aclname");
2193 const char *policy = qdict_get_str(qdict, "policy");
2194 qemu_acl *acl = find_acl(mon, aclname);
2196 if (acl) {
2197 if (strcmp(policy, "allow") == 0) {
2198 acl->defaultDeny = 0;
2199 monitor_printf(mon, "acl: policy set to 'allow'\n");
2200 } else if (strcmp(policy, "deny") == 0) {
2201 acl->defaultDeny = 1;
2202 monitor_printf(mon, "acl: policy set to 'deny'\n");
2203 } else {
2204 monitor_printf(mon, "acl: unknown policy '%s', "
2205 "expected 'deny' or 'allow'\n", policy);
2210 static void do_acl_add(Monitor *mon, const QDict *qdict)
2212 const char *aclname = qdict_get_str(qdict, "aclname");
2213 const char *match = qdict_get_str(qdict, "match");
2214 const char *policy = qdict_get_str(qdict, "policy");
2215 int has_index = qdict_haskey(qdict, "index");
2216 int index = qdict_get_try_int(qdict, "index", -1);
2217 qemu_acl *acl = find_acl(mon, aclname);
2218 int deny, ret;
2220 if (acl) {
2221 if (strcmp(policy, "allow") == 0) {
2222 deny = 0;
2223 } else if (strcmp(policy, "deny") == 0) {
2224 deny = 1;
2225 } else {
2226 monitor_printf(mon, "acl: unknown policy '%s', "
2227 "expected 'deny' or 'allow'\n", policy);
2228 return;
2230 if (has_index)
2231 ret = qemu_acl_insert(acl, deny, match, index);
2232 else
2233 ret = qemu_acl_append(acl, deny, match);
2234 if (ret < 0)
2235 monitor_printf(mon, "acl: unable to add acl entry\n");
2236 else
2237 monitor_printf(mon, "acl: added rule at position %d\n", ret);
2241 static void do_acl_remove(Monitor *mon, const QDict *qdict)
2243 const char *aclname = qdict_get_str(qdict, "aclname");
2244 const char *match = qdict_get_str(qdict, "match");
2245 qemu_acl *acl = find_acl(mon, aclname);
2246 int ret;
2248 if (acl) {
2249 ret = qemu_acl_remove(acl, match);
2250 if (ret < 0)
2251 monitor_printf(mon, "acl: no matching acl entry\n");
2252 else
2253 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
2257 #if defined(TARGET_I386)
2258 static void do_inject_mce(Monitor *mon, const QDict *qdict)
2260 CPUState *cenv;
2261 int cpu_index = qdict_get_int(qdict, "cpu_index");
2262 int bank = qdict_get_int(qdict, "bank");
2263 uint64_t status = qdict_get_int(qdict, "status");
2264 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2265 uint64_t addr = qdict_get_int(qdict, "addr");
2266 uint64_t misc = qdict_get_int(qdict, "misc");
2268 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
2269 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
2270 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
2271 break;
2274 #endif
2276 static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2278 const char *fdname = qdict_get_str(qdict, "fdname");
2279 mon_fd_t *monfd;
2280 int fd;
2282 fd = qemu_chr_get_msgfd(mon->chr);
2283 if (fd == -1) {
2284 qerror_report(QERR_FD_NOT_SUPPLIED);
2285 return -1;
2288 if (qemu_isdigit(fdname[0])) {
2289 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2290 "a name not starting with a digit");
2291 return -1;
2294 QLIST_FOREACH(monfd, &mon->fds, next) {
2295 if (strcmp(monfd->name, fdname) != 0) {
2296 continue;
2299 close(monfd->fd);
2300 monfd->fd = fd;
2301 return 0;
2304 monfd = qemu_mallocz(sizeof(mon_fd_t));
2305 monfd->name = qemu_strdup(fdname);
2306 monfd->fd = fd;
2308 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
2309 return 0;
2312 static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2314 const char *fdname = qdict_get_str(qdict, "fdname");
2315 mon_fd_t *monfd;
2317 QLIST_FOREACH(monfd, &mon->fds, next) {
2318 if (strcmp(monfd->name, fdname) != 0) {
2319 continue;
2322 QLIST_REMOVE(monfd, next);
2323 close(monfd->fd);
2324 qemu_free(monfd->name);
2325 qemu_free(monfd);
2326 return 0;
2329 qerror_report(QERR_FD_NOT_FOUND, fdname);
2330 return -1;
2333 static void do_loadvm(Monitor *mon, const QDict *qdict)
2335 int saved_vm_running = vm_running;
2336 const char *name = qdict_get_str(qdict, "name");
2338 vm_stop(0);
2340 if (load_vmstate(name) == 0 && saved_vm_running) {
2341 vm_start();
2345 int monitor_get_fd(Monitor *mon, const char *fdname)
2347 mon_fd_t *monfd;
2349 QLIST_FOREACH(monfd, &mon->fds, next) {
2350 int fd;
2352 if (strcmp(monfd->name, fdname) != 0) {
2353 continue;
2356 fd = monfd->fd;
2358 /* caller takes ownership of fd */
2359 QLIST_REMOVE(monfd, next);
2360 qemu_free(monfd->name);
2361 qemu_free(monfd);
2363 return fd;
2366 return -1;
2369 static const mon_cmd_t mon_cmds[] = {
2370 #include "hmp-commands.h"
2371 { NULL, NULL, },
2374 /* Please update hmp-commands.hx when adding or changing commands */
2375 static const mon_cmd_t info_cmds[] = {
2377 .name = "version",
2378 .args_type = "",
2379 .params = "",
2380 .help = "show the version of QEMU",
2381 .user_print = do_info_version_print,
2382 .mhandler.info_new = do_info_version,
2385 .name = "network",
2386 .args_type = "",
2387 .params = "",
2388 .help = "show the network state",
2389 .mhandler.info = do_info_network,
2392 .name = "chardev",
2393 .args_type = "",
2394 .params = "",
2395 .help = "show the character devices",
2396 .user_print = qemu_chr_info_print,
2397 .mhandler.info_new = qemu_chr_info,
2400 .name = "block",
2401 .args_type = "",
2402 .params = "",
2403 .help = "show the block devices",
2404 .user_print = bdrv_info_print,
2405 .mhandler.info_new = bdrv_info,
2408 .name = "blockstats",
2409 .args_type = "",
2410 .params = "",
2411 .help = "show block device statistics",
2412 .user_print = bdrv_stats_print,
2413 .mhandler.info_new = bdrv_info_stats,
2416 .name = "registers",
2417 .args_type = "",
2418 .params = "",
2419 .help = "show the cpu registers",
2420 .mhandler.info = do_info_registers,
2423 .name = "cpus",
2424 .args_type = "",
2425 .params = "",
2426 .help = "show infos for each CPU",
2427 .user_print = monitor_print_cpus,
2428 .mhandler.info_new = do_info_cpus,
2431 .name = "history",
2432 .args_type = "",
2433 .params = "",
2434 .help = "show the command line history",
2435 .mhandler.info = do_info_history,
2438 .name = "irq",
2439 .args_type = "",
2440 .params = "",
2441 .help = "show the interrupts statistics (if available)",
2442 .mhandler.info = irq_info,
2445 .name = "pic",
2446 .args_type = "",
2447 .params = "",
2448 .help = "show i8259 (PIC) state",
2449 .mhandler.info = pic_info,
2452 .name = "pci",
2453 .args_type = "",
2454 .params = "",
2455 .help = "show PCI info",
2456 .user_print = do_pci_info_print,
2457 .mhandler.info_new = do_pci_info,
2459 #if defined(TARGET_I386) || defined(TARGET_SH4)
2461 .name = "tlb",
2462 .args_type = "",
2463 .params = "",
2464 .help = "show virtual to physical memory mappings",
2465 .mhandler.info = tlb_info,
2467 #endif
2468 #if defined(TARGET_I386)
2470 .name = "mem",
2471 .args_type = "",
2472 .params = "",
2473 .help = "show the active virtual memory mappings",
2474 .mhandler.info = mem_info,
2476 #endif
2478 .name = "jit",
2479 .args_type = "",
2480 .params = "",
2481 .help = "show dynamic compiler info",
2482 .mhandler.info = do_info_jit,
2485 .name = "kvm",
2486 .args_type = "",
2487 .params = "",
2488 .help = "show KVM information",
2489 .user_print = do_info_kvm_print,
2490 .mhandler.info_new = do_info_kvm,
2493 .name = "numa",
2494 .args_type = "",
2495 .params = "",
2496 .help = "show NUMA information",
2497 .mhandler.info = do_info_numa,
2500 .name = "usb",
2501 .args_type = "",
2502 .params = "",
2503 .help = "show guest USB devices",
2504 .mhandler.info = usb_info,
2507 .name = "usbhost",
2508 .args_type = "",
2509 .params = "",
2510 .help = "show host USB devices",
2511 .mhandler.info = usb_host_info,
2514 .name = "profile",
2515 .args_type = "",
2516 .params = "",
2517 .help = "show profiling information",
2518 .mhandler.info = do_info_profile,
2521 .name = "capture",
2522 .args_type = "",
2523 .params = "",
2524 .help = "show capture information",
2525 .mhandler.info = do_info_capture,
2528 .name = "snapshots",
2529 .args_type = "",
2530 .params = "",
2531 .help = "show the currently saved VM snapshots",
2532 .mhandler.info = do_info_snapshots,
2535 .name = "status",
2536 .args_type = "",
2537 .params = "",
2538 .help = "show the current VM status (running|paused)",
2539 .user_print = do_info_status_print,
2540 .mhandler.info_new = do_info_status,
2543 .name = "pcmcia",
2544 .args_type = "",
2545 .params = "",
2546 .help = "show guest PCMCIA status",
2547 .mhandler.info = pcmcia_info,
2550 .name = "mice",
2551 .args_type = "",
2552 .params = "",
2553 .help = "show which guest mouse is receiving events",
2554 .user_print = do_info_mice_print,
2555 .mhandler.info_new = do_info_mice,
2558 .name = "vnc",
2559 .args_type = "",
2560 .params = "",
2561 .help = "show the vnc server status",
2562 .user_print = do_info_vnc_print,
2563 .mhandler.info_new = do_info_vnc,
2566 .name = "name",
2567 .args_type = "",
2568 .params = "",
2569 .help = "show the current VM name",
2570 .user_print = do_info_name_print,
2571 .mhandler.info_new = do_info_name,
2574 .name = "uuid",
2575 .args_type = "",
2576 .params = "",
2577 .help = "show the current VM UUID",
2578 .user_print = do_info_uuid_print,
2579 .mhandler.info_new = do_info_uuid,
2581 #if defined(TARGET_PPC)
2583 .name = "cpustats",
2584 .args_type = "",
2585 .params = "",
2586 .help = "show CPU statistics",
2587 .mhandler.info = do_info_cpu_stats,
2589 #endif
2590 #if defined(CONFIG_SLIRP)
2592 .name = "usernet",
2593 .args_type = "",
2594 .params = "",
2595 .help = "show user network stack connection states",
2596 .mhandler.info = do_info_usernet,
2598 #endif
2600 .name = "migrate",
2601 .args_type = "",
2602 .params = "",
2603 .help = "show migration status",
2604 .user_print = do_info_migrate_print,
2605 .mhandler.info_new = do_info_migrate,
2608 .name = "balloon",
2609 .args_type = "",
2610 .params = "",
2611 .help = "show balloon information",
2612 .user_print = monitor_print_balloon,
2613 .mhandler.info_async = do_info_balloon,
2614 .flags = MONITOR_CMD_ASYNC,
2617 .name = "qtree",
2618 .args_type = "",
2619 .params = "",
2620 .help = "show device tree",
2621 .mhandler.info = do_info_qtree,
2624 .name = "qdm",
2625 .args_type = "",
2626 .params = "",
2627 .help = "show qdev device model list",
2628 .mhandler.info = do_info_qdm,
2631 .name = "roms",
2632 .args_type = "",
2633 .params = "",
2634 .help = "show roms",
2635 .mhandler.info = do_info_roms,
2637 #if defined(CONFIG_SIMPLE_TRACE)
2639 .name = "trace",
2640 .args_type = "",
2641 .params = "",
2642 .help = "show current contents of trace buffer",
2643 .mhandler.info = do_info_trace,
2646 .name = "trace-events",
2647 .args_type = "",
2648 .params = "",
2649 .help = "show available trace-events & their state",
2650 .mhandler.info = do_info_trace_events,
2652 #endif
2654 .name = NULL,
2658 static const mon_cmd_t qmp_cmds[] = {
2659 #include "qmp-commands.h"
2660 { /* NULL */ },
2663 static const mon_cmd_t qmp_query_cmds[] = {
2665 .name = "version",
2666 .args_type = "",
2667 .params = "",
2668 .help = "show the version of QEMU",
2669 .user_print = do_info_version_print,
2670 .mhandler.info_new = do_info_version,
2673 .name = "commands",
2674 .args_type = "",
2675 .params = "",
2676 .help = "list QMP available commands",
2677 .user_print = monitor_user_noop,
2678 .mhandler.info_new = do_info_commands,
2681 .name = "chardev",
2682 .args_type = "",
2683 .params = "",
2684 .help = "show the character devices",
2685 .user_print = qemu_chr_info_print,
2686 .mhandler.info_new = qemu_chr_info,
2689 .name = "block",
2690 .args_type = "",
2691 .params = "",
2692 .help = "show the block devices",
2693 .user_print = bdrv_info_print,
2694 .mhandler.info_new = bdrv_info,
2697 .name = "blockstats",
2698 .args_type = "",
2699 .params = "",
2700 .help = "show block device statistics",
2701 .user_print = bdrv_stats_print,
2702 .mhandler.info_new = bdrv_info_stats,
2705 .name = "cpus",
2706 .args_type = "",
2707 .params = "",
2708 .help = "show infos for each CPU",
2709 .user_print = monitor_print_cpus,
2710 .mhandler.info_new = do_info_cpus,
2713 .name = "pci",
2714 .args_type = "",
2715 .params = "",
2716 .help = "show PCI info",
2717 .user_print = do_pci_info_print,
2718 .mhandler.info_new = do_pci_info,
2721 .name = "kvm",
2722 .args_type = "",
2723 .params = "",
2724 .help = "show KVM information",
2725 .user_print = do_info_kvm_print,
2726 .mhandler.info_new = do_info_kvm,
2729 .name = "status",
2730 .args_type = "",
2731 .params = "",
2732 .help = "show the current VM status (running|paused)",
2733 .user_print = do_info_status_print,
2734 .mhandler.info_new = do_info_status,
2737 .name = "mice",
2738 .args_type = "",
2739 .params = "",
2740 .help = "show which guest mouse is receiving events",
2741 .user_print = do_info_mice_print,
2742 .mhandler.info_new = do_info_mice,
2745 .name = "vnc",
2746 .args_type = "",
2747 .params = "",
2748 .help = "show the vnc server status",
2749 .user_print = do_info_vnc_print,
2750 .mhandler.info_new = do_info_vnc,
2753 .name = "name",
2754 .args_type = "",
2755 .params = "",
2756 .help = "show the current VM name",
2757 .user_print = do_info_name_print,
2758 .mhandler.info_new = do_info_name,
2761 .name = "uuid",
2762 .args_type = "",
2763 .params = "",
2764 .help = "show the current VM UUID",
2765 .user_print = do_info_uuid_print,
2766 .mhandler.info_new = do_info_uuid,
2769 .name = "migrate",
2770 .args_type = "",
2771 .params = "",
2772 .help = "show migration status",
2773 .user_print = do_info_migrate_print,
2774 .mhandler.info_new = do_info_migrate,
2777 .name = "balloon",
2778 .args_type = "",
2779 .params = "",
2780 .help = "show balloon information",
2781 .user_print = monitor_print_balloon,
2782 .mhandler.info_async = do_info_balloon,
2783 .flags = MONITOR_CMD_ASYNC,
2785 { /* NULL */ },
2788 /*******************************************************************/
2790 static const char *pch;
2791 static jmp_buf expr_env;
2793 #define MD_TLONG 0
2794 #define MD_I32 1
2796 typedef struct MonitorDef {
2797 const char *name;
2798 int offset;
2799 target_long (*get_value)(const struct MonitorDef *md, int val);
2800 int type;
2801 } MonitorDef;
2803 #if defined(TARGET_I386)
2804 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
2806 CPUState *env = mon_get_cpu();
2807 return env->eip + env->segs[R_CS].base;
2809 #endif
2811 #if defined(TARGET_PPC)
2812 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
2814 CPUState *env = mon_get_cpu();
2815 unsigned int u;
2816 int i;
2818 u = 0;
2819 for (i = 0; i < 8; i++)
2820 u |= env->crf[i] << (32 - (4 * i));
2822 return u;
2825 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
2827 CPUState *env = mon_get_cpu();
2828 return env->msr;
2831 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
2833 CPUState *env = mon_get_cpu();
2834 return env->xer;
2837 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
2839 CPUState *env = mon_get_cpu();
2840 return cpu_ppc_load_decr(env);
2843 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
2845 CPUState *env = mon_get_cpu();
2846 return cpu_ppc_load_tbu(env);
2849 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
2851 CPUState *env = mon_get_cpu();
2852 return cpu_ppc_load_tbl(env);
2854 #endif
2856 #if defined(TARGET_SPARC)
2857 #ifndef TARGET_SPARC64
2858 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
2860 CPUState *env = mon_get_cpu();
2862 return cpu_get_psr(env);
2864 #endif
2866 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
2868 CPUState *env = mon_get_cpu();
2869 return env->regwptr[val];
2871 #endif
2873 static const MonitorDef monitor_defs[] = {
2874 #ifdef TARGET_I386
2876 #define SEG(name, seg) \
2877 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
2878 { name ".base", offsetof(CPUState, segs[seg].base) },\
2879 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
2881 { "eax", offsetof(CPUState, regs[0]) },
2882 { "ecx", offsetof(CPUState, regs[1]) },
2883 { "edx", offsetof(CPUState, regs[2]) },
2884 { "ebx", offsetof(CPUState, regs[3]) },
2885 { "esp|sp", offsetof(CPUState, regs[4]) },
2886 { "ebp|fp", offsetof(CPUState, regs[5]) },
2887 { "esi", offsetof(CPUState, regs[6]) },
2888 { "edi", offsetof(CPUState, regs[7]) },
2889 #ifdef TARGET_X86_64
2890 { "r8", offsetof(CPUState, regs[8]) },
2891 { "r9", offsetof(CPUState, regs[9]) },
2892 { "r10", offsetof(CPUState, regs[10]) },
2893 { "r11", offsetof(CPUState, regs[11]) },
2894 { "r12", offsetof(CPUState, regs[12]) },
2895 { "r13", offsetof(CPUState, regs[13]) },
2896 { "r14", offsetof(CPUState, regs[14]) },
2897 { "r15", offsetof(CPUState, regs[15]) },
2898 #endif
2899 { "eflags", offsetof(CPUState, eflags) },
2900 { "eip", offsetof(CPUState, eip) },
2901 SEG("cs", R_CS)
2902 SEG("ds", R_DS)
2903 SEG("es", R_ES)
2904 SEG("ss", R_SS)
2905 SEG("fs", R_FS)
2906 SEG("gs", R_GS)
2907 { "pc", 0, monitor_get_pc, },
2908 #elif defined(TARGET_PPC)
2909 /* General purpose registers */
2910 { "r0", offsetof(CPUState, gpr[0]) },
2911 { "r1", offsetof(CPUState, gpr[1]) },
2912 { "r2", offsetof(CPUState, gpr[2]) },
2913 { "r3", offsetof(CPUState, gpr[3]) },
2914 { "r4", offsetof(CPUState, gpr[4]) },
2915 { "r5", offsetof(CPUState, gpr[5]) },
2916 { "r6", offsetof(CPUState, gpr[6]) },
2917 { "r7", offsetof(CPUState, gpr[7]) },
2918 { "r8", offsetof(CPUState, gpr[8]) },
2919 { "r9", offsetof(CPUState, gpr[9]) },
2920 { "r10", offsetof(CPUState, gpr[10]) },
2921 { "r11", offsetof(CPUState, gpr[11]) },
2922 { "r12", offsetof(CPUState, gpr[12]) },
2923 { "r13", offsetof(CPUState, gpr[13]) },
2924 { "r14", offsetof(CPUState, gpr[14]) },
2925 { "r15", offsetof(CPUState, gpr[15]) },
2926 { "r16", offsetof(CPUState, gpr[16]) },
2927 { "r17", offsetof(CPUState, gpr[17]) },
2928 { "r18", offsetof(CPUState, gpr[18]) },
2929 { "r19", offsetof(CPUState, gpr[19]) },
2930 { "r20", offsetof(CPUState, gpr[20]) },
2931 { "r21", offsetof(CPUState, gpr[21]) },
2932 { "r22", offsetof(CPUState, gpr[22]) },
2933 { "r23", offsetof(CPUState, gpr[23]) },
2934 { "r24", offsetof(CPUState, gpr[24]) },
2935 { "r25", offsetof(CPUState, gpr[25]) },
2936 { "r26", offsetof(CPUState, gpr[26]) },
2937 { "r27", offsetof(CPUState, gpr[27]) },
2938 { "r28", offsetof(CPUState, gpr[28]) },
2939 { "r29", offsetof(CPUState, gpr[29]) },
2940 { "r30", offsetof(CPUState, gpr[30]) },
2941 { "r31", offsetof(CPUState, gpr[31]) },
2942 /* Floating point registers */
2943 { "f0", offsetof(CPUState, fpr[0]) },
2944 { "f1", offsetof(CPUState, fpr[1]) },
2945 { "f2", offsetof(CPUState, fpr[2]) },
2946 { "f3", offsetof(CPUState, fpr[3]) },
2947 { "f4", offsetof(CPUState, fpr[4]) },
2948 { "f5", offsetof(CPUState, fpr[5]) },
2949 { "f6", offsetof(CPUState, fpr[6]) },
2950 { "f7", offsetof(CPUState, fpr[7]) },
2951 { "f8", offsetof(CPUState, fpr[8]) },
2952 { "f9", offsetof(CPUState, fpr[9]) },
2953 { "f10", offsetof(CPUState, fpr[10]) },
2954 { "f11", offsetof(CPUState, fpr[11]) },
2955 { "f12", offsetof(CPUState, fpr[12]) },
2956 { "f13", offsetof(CPUState, fpr[13]) },
2957 { "f14", offsetof(CPUState, fpr[14]) },
2958 { "f15", offsetof(CPUState, fpr[15]) },
2959 { "f16", offsetof(CPUState, fpr[16]) },
2960 { "f17", offsetof(CPUState, fpr[17]) },
2961 { "f18", offsetof(CPUState, fpr[18]) },
2962 { "f19", offsetof(CPUState, fpr[19]) },
2963 { "f20", offsetof(CPUState, fpr[20]) },
2964 { "f21", offsetof(CPUState, fpr[21]) },
2965 { "f22", offsetof(CPUState, fpr[22]) },
2966 { "f23", offsetof(CPUState, fpr[23]) },
2967 { "f24", offsetof(CPUState, fpr[24]) },
2968 { "f25", offsetof(CPUState, fpr[25]) },
2969 { "f26", offsetof(CPUState, fpr[26]) },
2970 { "f27", offsetof(CPUState, fpr[27]) },
2971 { "f28", offsetof(CPUState, fpr[28]) },
2972 { "f29", offsetof(CPUState, fpr[29]) },
2973 { "f30", offsetof(CPUState, fpr[30]) },
2974 { "f31", offsetof(CPUState, fpr[31]) },
2975 { "fpscr", offsetof(CPUState, fpscr) },
2976 /* Next instruction pointer */
2977 { "nip|pc", offsetof(CPUState, nip) },
2978 { "lr", offsetof(CPUState, lr) },
2979 { "ctr", offsetof(CPUState, ctr) },
2980 { "decr", 0, &monitor_get_decr, },
2981 { "ccr", 0, &monitor_get_ccr, },
2982 /* Machine state register */
2983 { "msr", 0, &monitor_get_msr, },
2984 { "xer", 0, &monitor_get_xer, },
2985 { "tbu", 0, &monitor_get_tbu, },
2986 { "tbl", 0, &monitor_get_tbl, },
2987 #if defined(TARGET_PPC64)
2988 /* Address space register */
2989 { "asr", offsetof(CPUState, asr) },
2990 #endif
2991 /* Segment registers */
2992 { "sdr1", offsetof(CPUState, sdr1) },
2993 { "sr0", offsetof(CPUState, sr[0]) },
2994 { "sr1", offsetof(CPUState, sr[1]) },
2995 { "sr2", offsetof(CPUState, sr[2]) },
2996 { "sr3", offsetof(CPUState, sr[3]) },
2997 { "sr4", offsetof(CPUState, sr[4]) },
2998 { "sr5", offsetof(CPUState, sr[5]) },
2999 { "sr6", offsetof(CPUState, sr[6]) },
3000 { "sr7", offsetof(CPUState, sr[7]) },
3001 { "sr8", offsetof(CPUState, sr[8]) },
3002 { "sr9", offsetof(CPUState, sr[9]) },
3003 { "sr10", offsetof(CPUState, sr[10]) },
3004 { "sr11", offsetof(CPUState, sr[11]) },
3005 { "sr12", offsetof(CPUState, sr[12]) },
3006 { "sr13", offsetof(CPUState, sr[13]) },
3007 { "sr14", offsetof(CPUState, sr[14]) },
3008 { "sr15", offsetof(CPUState, sr[15]) },
3009 /* Too lazy to put BATs and SPRs ... */
3010 #elif defined(TARGET_SPARC)
3011 { "g0", offsetof(CPUState, gregs[0]) },
3012 { "g1", offsetof(CPUState, gregs[1]) },
3013 { "g2", offsetof(CPUState, gregs[2]) },
3014 { "g3", offsetof(CPUState, gregs[3]) },
3015 { "g4", offsetof(CPUState, gregs[4]) },
3016 { "g5", offsetof(CPUState, gregs[5]) },
3017 { "g6", offsetof(CPUState, gregs[6]) },
3018 { "g7", offsetof(CPUState, gregs[7]) },
3019 { "o0", 0, monitor_get_reg },
3020 { "o1", 1, monitor_get_reg },
3021 { "o2", 2, monitor_get_reg },
3022 { "o3", 3, monitor_get_reg },
3023 { "o4", 4, monitor_get_reg },
3024 { "o5", 5, monitor_get_reg },
3025 { "o6", 6, monitor_get_reg },
3026 { "o7", 7, monitor_get_reg },
3027 { "l0", 8, monitor_get_reg },
3028 { "l1", 9, monitor_get_reg },
3029 { "l2", 10, monitor_get_reg },
3030 { "l3", 11, monitor_get_reg },
3031 { "l4", 12, monitor_get_reg },
3032 { "l5", 13, monitor_get_reg },
3033 { "l6", 14, monitor_get_reg },
3034 { "l7", 15, monitor_get_reg },
3035 { "i0", 16, monitor_get_reg },
3036 { "i1", 17, monitor_get_reg },
3037 { "i2", 18, monitor_get_reg },
3038 { "i3", 19, monitor_get_reg },
3039 { "i4", 20, monitor_get_reg },
3040 { "i5", 21, monitor_get_reg },
3041 { "i6", 22, monitor_get_reg },
3042 { "i7", 23, monitor_get_reg },
3043 { "pc", offsetof(CPUState, pc) },
3044 { "npc", offsetof(CPUState, npc) },
3045 { "y", offsetof(CPUState, y) },
3046 #ifndef TARGET_SPARC64
3047 { "psr", 0, &monitor_get_psr, },
3048 { "wim", offsetof(CPUState, wim) },
3049 #endif
3050 { "tbr", offsetof(CPUState, tbr) },
3051 { "fsr", offsetof(CPUState, fsr) },
3052 { "f0", offsetof(CPUState, fpr[0]) },
3053 { "f1", offsetof(CPUState, fpr[1]) },
3054 { "f2", offsetof(CPUState, fpr[2]) },
3055 { "f3", offsetof(CPUState, fpr[3]) },
3056 { "f4", offsetof(CPUState, fpr[4]) },
3057 { "f5", offsetof(CPUState, fpr[5]) },
3058 { "f6", offsetof(CPUState, fpr[6]) },
3059 { "f7", offsetof(CPUState, fpr[7]) },
3060 { "f8", offsetof(CPUState, fpr[8]) },
3061 { "f9", offsetof(CPUState, fpr[9]) },
3062 { "f10", offsetof(CPUState, fpr[10]) },
3063 { "f11", offsetof(CPUState, fpr[11]) },
3064 { "f12", offsetof(CPUState, fpr[12]) },
3065 { "f13", offsetof(CPUState, fpr[13]) },
3066 { "f14", offsetof(CPUState, fpr[14]) },
3067 { "f15", offsetof(CPUState, fpr[15]) },
3068 { "f16", offsetof(CPUState, fpr[16]) },
3069 { "f17", offsetof(CPUState, fpr[17]) },
3070 { "f18", offsetof(CPUState, fpr[18]) },
3071 { "f19", offsetof(CPUState, fpr[19]) },
3072 { "f20", offsetof(CPUState, fpr[20]) },
3073 { "f21", offsetof(CPUState, fpr[21]) },
3074 { "f22", offsetof(CPUState, fpr[22]) },
3075 { "f23", offsetof(CPUState, fpr[23]) },
3076 { "f24", offsetof(CPUState, fpr[24]) },
3077 { "f25", offsetof(CPUState, fpr[25]) },
3078 { "f26", offsetof(CPUState, fpr[26]) },
3079 { "f27", offsetof(CPUState, fpr[27]) },
3080 { "f28", offsetof(CPUState, fpr[28]) },
3081 { "f29", offsetof(CPUState, fpr[29]) },
3082 { "f30", offsetof(CPUState, fpr[30]) },
3083 { "f31", offsetof(CPUState, fpr[31]) },
3084 #ifdef TARGET_SPARC64
3085 { "f32", offsetof(CPUState, fpr[32]) },
3086 { "f34", offsetof(CPUState, fpr[34]) },
3087 { "f36", offsetof(CPUState, fpr[36]) },
3088 { "f38", offsetof(CPUState, fpr[38]) },
3089 { "f40", offsetof(CPUState, fpr[40]) },
3090 { "f42", offsetof(CPUState, fpr[42]) },
3091 { "f44", offsetof(CPUState, fpr[44]) },
3092 { "f46", offsetof(CPUState, fpr[46]) },
3093 { "f48", offsetof(CPUState, fpr[48]) },
3094 { "f50", offsetof(CPUState, fpr[50]) },
3095 { "f52", offsetof(CPUState, fpr[52]) },
3096 { "f54", offsetof(CPUState, fpr[54]) },
3097 { "f56", offsetof(CPUState, fpr[56]) },
3098 { "f58", offsetof(CPUState, fpr[58]) },
3099 { "f60", offsetof(CPUState, fpr[60]) },
3100 { "f62", offsetof(CPUState, fpr[62]) },
3101 { "asi", offsetof(CPUState, asi) },
3102 { "pstate", offsetof(CPUState, pstate) },
3103 { "cansave", offsetof(CPUState, cansave) },
3104 { "canrestore", offsetof(CPUState, canrestore) },
3105 { "otherwin", offsetof(CPUState, otherwin) },
3106 { "wstate", offsetof(CPUState, wstate) },
3107 { "cleanwin", offsetof(CPUState, cleanwin) },
3108 { "fprs", offsetof(CPUState, fprs) },
3109 #endif
3110 #endif
3111 { NULL },
3114 static void expr_error(Monitor *mon, const char *msg)
3116 monitor_printf(mon, "%s\n", msg);
3117 longjmp(expr_env, 1);
3120 /* return 0 if OK, -1 if not found */
3121 static int get_monitor_def(target_long *pval, const char *name)
3123 const MonitorDef *md;
3124 void *ptr;
3126 for(md = monitor_defs; md->name != NULL; md++) {
3127 if (compare_cmd(name, md->name)) {
3128 if (md->get_value) {
3129 *pval = md->get_value(md, md->offset);
3130 } else {
3131 CPUState *env = mon_get_cpu();
3132 ptr = (uint8_t *)env + md->offset;
3133 switch(md->type) {
3134 case MD_I32:
3135 *pval = *(int32_t *)ptr;
3136 break;
3137 case MD_TLONG:
3138 *pval = *(target_long *)ptr;
3139 break;
3140 default:
3141 *pval = 0;
3142 break;
3145 return 0;
3148 return -1;
3151 static void next(void)
3153 if (*pch != '\0') {
3154 pch++;
3155 while (qemu_isspace(*pch))
3156 pch++;
3160 static int64_t expr_sum(Monitor *mon);
3162 static int64_t expr_unary(Monitor *mon)
3164 int64_t n;
3165 char *p;
3166 int ret;
3168 switch(*pch) {
3169 case '+':
3170 next();
3171 n = expr_unary(mon);
3172 break;
3173 case '-':
3174 next();
3175 n = -expr_unary(mon);
3176 break;
3177 case '~':
3178 next();
3179 n = ~expr_unary(mon);
3180 break;
3181 case '(':
3182 next();
3183 n = expr_sum(mon);
3184 if (*pch != ')') {
3185 expr_error(mon, "')' expected");
3187 next();
3188 break;
3189 case '\'':
3190 pch++;
3191 if (*pch == '\0')
3192 expr_error(mon, "character constant expected");
3193 n = *pch;
3194 pch++;
3195 if (*pch != '\'')
3196 expr_error(mon, "missing terminating \' character");
3197 next();
3198 break;
3199 case '$':
3201 char buf[128], *q;
3202 target_long reg=0;
3204 pch++;
3205 q = buf;
3206 while ((*pch >= 'a' && *pch <= 'z') ||
3207 (*pch >= 'A' && *pch <= 'Z') ||
3208 (*pch >= '0' && *pch <= '9') ||
3209 *pch == '_' || *pch == '.') {
3210 if ((q - buf) < sizeof(buf) - 1)
3211 *q++ = *pch;
3212 pch++;
3214 while (qemu_isspace(*pch))
3215 pch++;
3216 *q = 0;
3217 ret = get_monitor_def(&reg, buf);
3218 if (ret < 0)
3219 expr_error(mon, "unknown register");
3220 n = reg;
3222 break;
3223 case '\0':
3224 expr_error(mon, "unexpected end of expression");
3225 n = 0;
3226 break;
3227 default:
3228 #if TARGET_PHYS_ADDR_BITS > 32
3229 n = strtoull(pch, &p, 0);
3230 #else
3231 n = strtoul(pch, &p, 0);
3232 #endif
3233 if (pch == p) {
3234 expr_error(mon, "invalid char in expression");
3236 pch = p;
3237 while (qemu_isspace(*pch))
3238 pch++;
3239 break;
3241 return n;
3245 static int64_t expr_prod(Monitor *mon)
3247 int64_t val, val2;
3248 int op;
3250 val = expr_unary(mon);
3251 for(;;) {
3252 op = *pch;
3253 if (op != '*' && op != '/' && op != '%')
3254 break;
3255 next();
3256 val2 = expr_unary(mon);
3257 switch(op) {
3258 default:
3259 case '*':
3260 val *= val2;
3261 break;
3262 case '/':
3263 case '%':
3264 if (val2 == 0)
3265 expr_error(mon, "division by zero");
3266 if (op == '/')
3267 val /= val2;
3268 else
3269 val %= val2;
3270 break;
3273 return val;
3276 static int64_t expr_logic(Monitor *mon)
3278 int64_t val, val2;
3279 int op;
3281 val = expr_prod(mon);
3282 for(;;) {
3283 op = *pch;
3284 if (op != '&' && op != '|' && op != '^')
3285 break;
3286 next();
3287 val2 = expr_prod(mon);
3288 switch(op) {
3289 default:
3290 case '&':
3291 val &= val2;
3292 break;
3293 case '|':
3294 val |= val2;
3295 break;
3296 case '^':
3297 val ^= val2;
3298 break;
3301 return val;
3304 static int64_t expr_sum(Monitor *mon)
3306 int64_t val, val2;
3307 int op;
3309 val = expr_logic(mon);
3310 for(;;) {
3311 op = *pch;
3312 if (op != '+' && op != '-')
3313 break;
3314 next();
3315 val2 = expr_logic(mon);
3316 if (op == '+')
3317 val += val2;
3318 else
3319 val -= val2;
3321 return val;
3324 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
3326 pch = *pp;
3327 if (setjmp(expr_env)) {
3328 *pp = pch;
3329 return -1;
3331 while (qemu_isspace(*pch))
3332 pch++;
3333 *pval = expr_sum(mon);
3334 *pp = pch;
3335 return 0;
3338 static int get_double(Monitor *mon, double *pval, const char **pp)
3340 const char *p = *pp;
3341 char *tailp;
3342 double d;
3344 d = strtod(p, &tailp);
3345 if (tailp == p) {
3346 monitor_printf(mon, "Number expected\n");
3347 return -1;
3349 if (d != d || d - d != 0) {
3350 /* NaN or infinity */
3351 monitor_printf(mon, "Bad number\n");
3352 return -1;
3354 *pval = d;
3355 *pp = tailp;
3356 return 0;
3359 static int get_str(char *buf, int buf_size, const char **pp)
3361 const char *p;
3362 char *q;
3363 int c;
3365 q = buf;
3366 p = *pp;
3367 while (qemu_isspace(*p))
3368 p++;
3369 if (*p == '\0') {
3370 fail:
3371 *q = '\0';
3372 *pp = p;
3373 return -1;
3375 if (*p == '\"') {
3376 p++;
3377 while (*p != '\0' && *p != '\"') {
3378 if (*p == '\\') {
3379 p++;
3380 c = *p++;
3381 switch(c) {
3382 case 'n':
3383 c = '\n';
3384 break;
3385 case 'r':
3386 c = '\r';
3387 break;
3388 case '\\':
3389 case '\'':
3390 case '\"':
3391 break;
3392 default:
3393 qemu_printf("unsupported escape code: '\\%c'\n", c);
3394 goto fail;
3396 if ((q - buf) < buf_size - 1) {
3397 *q++ = c;
3399 } else {
3400 if ((q - buf) < buf_size - 1) {
3401 *q++ = *p;
3403 p++;
3406 if (*p != '\"') {
3407 qemu_printf("unterminated string\n");
3408 goto fail;
3410 p++;
3411 } else {
3412 while (*p != '\0' && !qemu_isspace(*p)) {
3413 if ((q - buf) < buf_size - 1) {
3414 *q++ = *p;
3416 p++;
3419 *q = '\0';
3420 *pp = p;
3421 return 0;
3425 * Store the command-name in cmdname, and return a pointer to
3426 * the remaining of the command string.
3428 static const char *get_command_name(const char *cmdline,
3429 char *cmdname, size_t nlen)
3431 size_t len;
3432 const char *p, *pstart;
3434 p = cmdline;
3435 while (qemu_isspace(*p))
3436 p++;
3437 if (*p == '\0')
3438 return NULL;
3439 pstart = p;
3440 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3441 p++;
3442 len = p - pstart;
3443 if (len > nlen - 1)
3444 len = nlen - 1;
3445 memcpy(cmdname, pstart, len);
3446 cmdname[len] = '\0';
3447 return p;
3451 * Read key of 'type' into 'key' and return the current
3452 * 'type' pointer.
3454 static char *key_get_info(const char *type, char **key)
3456 size_t len;
3457 char *p, *str;
3459 if (*type == ',')
3460 type++;
3462 p = strchr(type, ':');
3463 if (!p) {
3464 *key = NULL;
3465 return NULL;
3467 len = p - type;
3469 str = qemu_malloc(len + 1);
3470 memcpy(str, type, len);
3471 str[len] = '\0';
3473 *key = str;
3474 return ++p;
3477 static int default_fmt_format = 'x';
3478 static int default_fmt_size = 4;
3480 #define MAX_ARGS 16
3482 static int is_valid_option(const char *c, const char *typestr)
3484 char option[3];
3486 option[0] = '-';
3487 option[1] = *c;
3488 option[2] = '\0';
3490 typestr = strstr(typestr, option);
3491 return (typestr != NULL);
3494 static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3495 const char *cmdname)
3497 const mon_cmd_t *cmd;
3499 for (cmd = disp_table; cmd->name != NULL; cmd++) {
3500 if (compare_cmd(cmdname, cmd->name)) {
3501 return cmd;
3505 return NULL;
3508 static const mon_cmd_t *monitor_find_command(const char *cmdname)
3510 return search_dispatch_table(mon_cmds, cmdname);
3513 static const mon_cmd_t *qmp_find_query_cmd(const char *info_item)
3515 return search_dispatch_table(qmp_query_cmds, info_item);
3518 static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3520 return search_dispatch_table(qmp_cmds, cmdname);
3523 static const mon_cmd_t *monitor_parse_command(Monitor *mon,
3524 const char *cmdline,
3525 QDict *qdict)
3527 const char *p, *typestr;
3528 int c;
3529 const mon_cmd_t *cmd;
3530 char cmdname[256];
3531 char buf[1024];
3532 char *key;
3534 #ifdef DEBUG
3535 monitor_printf(mon, "command='%s'\n", cmdline);
3536 #endif
3538 /* extract the command name */
3539 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3540 if (!p)
3541 return NULL;
3543 cmd = monitor_find_command(cmdname);
3544 if (!cmd) {
3545 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
3546 return NULL;
3549 /* parse the parameters */
3550 typestr = cmd->args_type;
3551 for(;;) {
3552 typestr = key_get_info(typestr, &key);
3553 if (!typestr)
3554 break;
3555 c = *typestr;
3556 typestr++;
3557 switch(c) {
3558 case 'F':
3559 case 'B':
3560 case 's':
3562 int ret;
3564 while (qemu_isspace(*p))
3565 p++;
3566 if (*typestr == '?') {
3567 typestr++;
3568 if (*p == '\0') {
3569 /* no optional string: NULL argument */
3570 break;
3573 ret = get_str(buf, sizeof(buf), &p);
3574 if (ret < 0) {
3575 switch(c) {
3576 case 'F':
3577 monitor_printf(mon, "%s: filename expected\n",
3578 cmdname);
3579 break;
3580 case 'B':
3581 monitor_printf(mon, "%s: block device name expected\n",
3582 cmdname);
3583 break;
3584 default:
3585 monitor_printf(mon, "%s: string expected\n", cmdname);
3586 break;
3588 goto fail;
3590 qdict_put(qdict, key, qstring_from_str(buf));
3592 break;
3593 case 'O':
3595 QemuOptsList *opts_list;
3596 QemuOpts *opts;
3598 opts_list = qemu_find_opts(key);
3599 if (!opts_list || opts_list->desc->name) {
3600 goto bad_type;
3602 while (qemu_isspace(*p)) {
3603 p++;
3605 if (!*p)
3606 break;
3607 if (get_str(buf, sizeof(buf), &p) < 0) {
3608 goto fail;
3610 opts = qemu_opts_parse(opts_list, buf, 1);
3611 if (!opts) {
3612 goto fail;
3614 qemu_opts_to_qdict(opts, qdict);
3615 qemu_opts_del(opts);
3617 break;
3618 case '/':
3620 int count, format, size;
3622 while (qemu_isspace(*p))
3623 p++;
3624 if (*p == '/') {
3625 /* format found */
3626 p++;
3627 count = 1;
3628 if (qemu_isdigit(*p)) {
3629 count = 0;
3630 while (qemu_isdigit(*p)) {
3631 count = count * 10 + (*p - '0');
3632 p++;
3635 size = -1;
3636 format = -1;
3637 for(;;) {
3638 switch(*p) {
3639 case 'o':
3640 case 'd':
3641 case 'u':
3642 case 'x':
3643 case 'i':
3644 case 'c':
3645 format = *p++;
3646 break;
3647 case 'b':
3648 size = 1;
3649 p++;
3650 break;
3651 case 'h':
3652 size = 2;
3653 p++;
3654 break;
3655 case 'w':
3656 size = 4;
3657 p++;
3658 break;
3659 case 'g':
3660 case 'L':
3661 size = 8;
3662 p++;
3663 break;
3664 default:
3665 goto next;
3668 next:
3669 if (*p != '\0' && !qemu_isspace(*p)) {
3670 monitor_printf(mon, "invalid char in format: '%c'\n",
3671 *p);
3672 goto fail;
3674 if (format < 0)
3675 format = default_fmt_format;
3676 if (format != 'i') {
3677 /* for 'i', not specifying a size gives -1 as size */
3678 if (size < 0)
3679 size = default_fmt_size;
3680 default_fmt_size = size;
3682 default_fmt_format = format;
3683 } else {
3684 count = 1;
3685 format = default_fmt_format;
3686 if (format != 'i') {
3687 size = default_fmt_size;
3688 } else {
3689 size = -1;
3692 qdict_put(qdict, "count", qint_from_int(count));
3693 qdict_put(qdict, "format", qint_from_int(format));
3694 qdict_put(qdict, "size", qint_from_int(size));
3696 break;
3697 case 'i':
3698 case 'l':
3699 case 'M':
3701 int64_t val;
3703 while (qemu_isspace(*p))
3704 p++;
3705 if (*typestr == '?' || *typestr == '.') {
3706 if (*typestr == '?') {
3707 if (*p == '\0') {
3708 typestr++;
3709 break;
3711 } else {
3712 if (*p == '.') {
3713 p++;
3714 while (qemu_isspace(*p))
3715 p++;
3716 } else {
3717 typestr++;
3718 break;
3721 typestr++;
3723 if (get_expr(mon, &val, &p))
3724 goto fail;
3725 /* Check if 'i' is greater than 32-bit */
3726 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3727 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3728 monitor_printf(mon, "integer is for 32-bit values\n");
3729 goto fail;
3730 } else if (c == 'M') {
3731 val <<= 20;
3733 qdict_put(qdict, key, qint_from_int(val));
3735 break;
3736 case 'o':
3738 ssize_t val;
3739 char *end;
3741 while (qemu_isspace(*p)) {
3742 p++;
3744 if (*typestr == '?') {
3745 typestr++;
3746 if (*p == '\0') {
3747 break;
3750 val = strtosz(p, &end);
3751 if (val < 0) {
3752 monitor_printf(mon, "invalid size\n");
3753 goto fail;
3755 qdict_put(qdict, key, qint_from_int(val));
3756 p = end;
3758 break;
3759 case 'T':
3761 double val;
3763 while (qemu_isspace(*p))
3764 p++;
3765 if (*typestr == '?') {
3766 typestr++;
3767 if (*p == '\0') {
3768 break;
3771 if (get_double(mon, &val, &p) < 0) {
3772 goto fail;
3774 if (p[0] && p[1] == 's') {
3775 switch (*p) {
3776 case 'm':
3777 val /= 1e3; p += 2; break;
3778 case 'u':
3779 val /= 1e6; p += 2; break;
3780 case 'n':
3781 val /= 1e9; p += 2; break;
3784 if (*p && !qemu_isspace(*p)) {
3785 monitor_printf(mon, "Unknown unit suffix\n");
3786 goto fail;
3788 qdict_put(qdict, key, qfloat_from_double(val));
3790 break;
3791 case 'b':
3793 const char *beg;
3794 int val;
3796 while (qemu_isspace(*p)) {
3797 p++;
3799 beg = p;
3800 while (qemu_isgraph(*p)) {
3801 p++;
3803 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3804 val = 1;
3805 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3806 val = 0;
3807 } else {
3808 monitor_printf(mon, "Expected 'on' or 'off'\n");
3809 goto fail;
3811 qdict_put(qdict, key, qbool_from_int(val));
3813 break;
3814 case '-':
3816 const char *tmp = p;
3817 int skip_key = 0;
3818 /* option */
3820 c = *typestr++;
3821 if (c == '\0')
3822 goto bad_type;
3823 while (qemu_isspace(*p))
3824 p++;
3825 if (*p == '-') {
3826 p++;
3827 if(c != *p) {
3828 if(!is_valid_option(p, typestr)) {
3830 monitor_printf(mon, "%s: unsupported option -%c\n",
3831 cmdname, *p);
3832 goto fail;
3833 } else {
3834 skip_key = 1;
3837 if(skip_key) {
3838 p = tmp;
3839 } else {
3840 /* has option */
3841 p++;
3842 qdict_put(qdict, key, qbool_from_int(1));
3846 break;
3847 default:
3848 bad_type:
3849 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
3850 goto fail;
3852 qemu_free(key);
3853 key = NULL;
3855 /* check that all arguments were parsed */
3856 while (qemu_isspace(*p))
3857 p++;
3858 if (*p != '\0') {
3859 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3860 cmdname);
3861 goto fail;
3864 return cmd;
3866 fail:
3867 qemu_free(key);
3868 return NULL;
3871 void monitor_set_error(Monitor *mon, QError *qerror)
3873 /* report only the first error */
3874 if (!mon->error) {
3875 mon->error = qerror;
3876 } else {
3877 MON_DEBUG("Additional error report at %s:%d\n",
3878 qerror->file, qerror->linenr);
3879 QDECREF(qerror);
3883 static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3885 if (monitor_ctrl_mode(mon)) {
3886 if (ret && !monitor_has_error(mon)) {
3888 * If it returns failure, it must have passed on error.
3890 * Action: Report an internal error to the client if in QMP.
3892 qerror_report(QERR_UNDEFINED_ERROR);
3893 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
3894 cmd->name);
3897 #ifdef CONFIG_DEBUG_MONITOR
3898 if (!ret && monitor_has_error(mon)) {
3900 * If it returns success, it must not have passed an error.
3902 * Action: Report the passed error to the client.
3904 MON_DEBUG("command '%s' returned success but passed an error\n",
3905 cmd->name);
3908 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
3910 * Handlers should not call Monitor print functions.
3912 * Action: Ignore them in QMP.
3914 * (XXX: we don't check any 'info' or 'query' command here
3915 * because the user print function _is_ called by do_info(), hence
3916 * we will trigger this check. This problem will go away when we
3917 * make 'query' commands real and kill do_info())
3919 MON_DEBUG("command '%s' called print functions %d time(s)\n",
3920 cmd->name, mon_print_count_get(mon));
3922 #endif
3923 } else {
3924 assert(!monitor_has_error(mon));
3925 QDECREF(mon->error);
3926 mon->error = NULL;
3930 static void handle_user_command(Monitor *mon, const char *cmdline)
3932 QDict *qdict;
3933 const mon_cmd_t *cmd;
3935 qdict = qdict_new();
3937 cmd = monitor_parse_command(mon, cmdline, qdict);
3938 if (!cmd)
3939 goto out;
3941 if (handler_is_async(cmd)) {
3942 user_async_cmd_handler(mon, cmd, qdict);
3943 } else if (handler_is_qobject(cmd)) {
3944 QObject *data = NULL;
3946 /* XXX: ignores the error code */
3947 cmd->mhandler.cmd_new(mon, qdict, &data);
3948 assert(!monitor_has_error(mon));
3949 if (data) {
3950 cmd->user_print(mon, data);
3951 qobject_decref(data);
3953 } else {
3954 cmd->mhandler.cmd(mon, qdict);
3957 out:
3958 QDECREF(qdict);
3961 static void cmd_completion(const char *name, const char *list)
3963 const char *p, *pstart;
3964 char cmd[128];
3965 int len;
3967 p = list;
3968 for(;;) {
3969 pstart = p;
3970 p = strchr(p, '|');
3971 if (!p)
3972 p = pstart + strlen(pstart);
3973 len = p - pstart;
3974 if (len > sizeof(cmd) - 2)
3975 len = sizeof(cmd) - 2;
3976 memcpy(cmd, pstart, len);
3977 cmd[len] = '\0';
3978 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
3979 readline_add_completion(cur_mon->rs, cmd);
3981 if (*p == '\0')
3982 break;
3983 p++;
3987 static void file_completion(const char *input)
3989 DIR *ffs;
3990 struct dirent *d;
3991 char path[1024];
3992 char file[1024], file_prefix[1024];
3993 int input_path_len;
3994 const char *p;
3996 p = strrchr(input, '/');
3997 if (!p) {
3998 input_path_len = 0;
3999 pstrcpy(file_prefix, sizeof(file_prefix), input);
4000 pstrcpy(path, sizeof(path), ".");
4001 } else {
4002 input_path_len = p - input + 1;
4003 memcpy(path, input, input_path_len);
4004 if (input_path_len > sizeof(path) - 1)
4005 input_path_len = sizeof(path) - 1;
4006 path[input_path_len] = '\0';
4007 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4009 #ifdef DEBUG_COMPLETION
4010 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
4011 input, path, file_prefix);
4012 #endif
4013 ffs = opendir(path);
4014 if (!ffs)
4015 return;
4016 for(;;) {
4017 struct stat sb;
4018 d = readdir(ffs);
4019 if (!d)
4020 break;
4022 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4023 continue;
4026 if (strstart(d->d_name, file_prefix, NULL)) {
4027 memcpy(file, input, input_path_len);
4028 if (input_path_len < sizeof(file))
4029 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4030 d->d_name);
4031 /* stat the file to find out if it's a directory.
4032 * In that case add a slash to speed up typing long paths
4034 stat(file, &sb);
4035 if(S_ISDIR(sb.st_mode))
4036 pstrcat(file, sizeof(file), "/");
4037 readline_add_completion(cur_mon->rs, file);
4040 closedir(ffs);
4043 static void block_completion_it(void *opaque, BlockDriverState *bs)
4045 const char *name = bdrv_get_device_name(bs);
4046 const char *input = opaque;
4048 if (input[0] == '\0' ||
4049 !strncmp(name, (char *)input, strlen(input))) {
4050 readline_add_completion(cur_mon->rs, name);
4054 /* NOTE: this parser is an approximate form of the real command parser */
4055 static void parse_cmdline(const char *cmdline,
4056 int *pnb_args, char **args)
4058 const char *p;
4059 int nb_args, ret;
4060 char buf[1024];
4062 p = cmdline;
4063 nb_args = 0;
4064 for(;;) {
4065 while (qemu_isspace(*p))
4066 p++;
4067 if (*p == '\0')
4068 break;
4069 if (nb_args >= MAX_ARGS)
4070 break;
4071 ret = get_str(buf, sizeof(buf), &p);
4072 args[nb_args] = qemu_strdup(buf);
4073 nb_args++;
4074 if (ret < 0)
4075 break;
4077 *pnb_args = nb_args;
4080 static const char *next_arg_type(const char *typestr)
4082 const char *p = strchr(typestr, ':');
4083 return (p != NULL ? ++p : typestr);
4086 static void monitor_find_completion(const char *cmdline)
4088 const char *cmdname;
4089 char *args[MAX_ARGS];
4090 int nb_args, i, len;
4091 const char *ptype, *str;
4092 const mon_cmd_t *cmd;
4093 const KeyDef *key;
4095 parse_cmdline(cmdline, &nb_args, args);
4096 #ifdef DEBUG_COMPLETION
4097 for(i = 0; i < nb_args; i++) {
4098 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
4100 #endif
4102 /* if the line ends with a space, it means we want to complete the
4103 next arg */
4104 len = strlen(cmdline);
4105 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
4106 if (nb_args >= MAX_ARGS) {
4107 goto cleanup;
4109 args[nb_args++] = qemu_strdup("");
4111 if (nb_args <= 1) {
4112 /* command completion */
4113 if (nb_args == 0)
4114 cmdname = "";
4115 else
4116 cmdname = args[0];
4117 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
4118 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
4119 cmd_completion(cmdname, cmd->name);
4121 } else {
4122 /* find the command */
4123 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4124 if (compare_cmd(args[0], cmd->name)) {
4125 break;
4128 if (!cmd->name) {
4129 goto cleanup;
4132 ptype = next_arg_type(cmd->args_type);
4133 for(i = 0; i < nb_args - 2; i++) {
4134 if (*ptype != '\0') {
4135 ptype = next_arg_type(ptype);
4136 while (*ptype == '?')
4137 ptype = next_arg_type(ptype);
4140 str = args[nb_args - 1];
4141 if (*ptype == '-' && ptype[1] != '\0') {
4142 ptype = next_arg_type(ptype);
4144 switch(*ptype) {
4145 case 'F':
4146 /* file completion */
4147 readline_set_completion_index(cur_mon->rs, strlen(str));
4148 file_completion(str);
4149 break;
4150 case 'B':
4151 /* block device name completion */
4152 readline_set_completion_index(cur_mon->rs, strlen(str));
4153 bdrv_iterate(block_completion_it, (void *)str);
4154 break;
4155 case 's':
4156 /* XXX: more generic ? */
4157 if (!strcmp(cmd->name, "info")) {
4158 readline_set_completion_index(cur_mon->rs, strlen(str));
4159 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4160 cmd_completion(str, cmd->name);
4162 } else if (!strcmp(cmd->name, "sendkey")) {
4163 char *sep = strrchr(str, '-');
4164 if (sep)
4165 str = sep + 1;
4166 readline_set_completion_index(cur_mon->rs, strlen(str));
4167 for(key = key_defs; key->name != NULL; key++) {
4168 cmd_completion(str, key->name);
4170 } else if (!strcmp(cmd->name, "help|?")) {
4171 readline_set_completion_index(cur_mon->rs, strlen(str));
4172 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4173 cmd_completion(str, cmd->name);
4176 break;
4177 default:
4178 break;
4182 cleanup:
4183 for (i = 0; i < nb_args; i++) {
4184 qemu_free(args[i]);
4188 static int monitor_can_read(void *opaque)
4190 Monitor *mon = opaque;
4192 return (mon->suspend_cnt == 0) ? 1 : 0;
4195 static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4197 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4198 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4202 * Argument validation rules:
4204 * 1. The argument must exist in cmd_args qdict
4205 * 2. The argument type must be the expected one
4207 * Special case: If the argument doesn't exist in cmd_args and
4208 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4209 * checking is skipped for it.
4211 static int check_client_args_type(const QDict *client_args,
4212 const QDict *cmd_args, int flags)
4214 const QDictEntry *ent;
4216 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4217 QObject *obj;
4218 QString *arg_type;
4219 const QObject *client_arg = qdict_entry_value(ent);
4220 const char *client_arg_name = qdict_entry_key(ent);
4222 obj = qdict_get(cmd_args, client_arg_name);
4223 if (!obj) {
4224 if (flags & QMP_ACCEPT_UNKNOWNS) {
4225 /* handler accepts unknowns */
4226 continue;
4228 /* client arg doesn't exist */
4229 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4230 return -1;
4233 arg_type = qobject_to_qstring(obj);
4234 assert(arg_type != NULL);
4236 /* check if argument's type is correct */
4237 switch (qstring_get_str(arg_type)[0]) {
4238 case 'F':
4239 case 'B':
4240 case 's':
4241 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4242 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4243 "string");
4244 return -1;
4246 break;
4247 case 'i':
4248 case 'l':
4249 case 'M':
4250 case 'o':
4251 if (qobject_type(client_arg) != QTYPE_QINT) {
4252 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4253 "int");
4254 return -1;
4256 break;
4257 case 'T':
4258 if (qobject_type(client_arg) != QTYPE_QINT &&
4259 qobject_type(client_arg) != QTYPE_QFLOAT) {
4260 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4261 "number");
4262 return -1;
4264 break;
4265 case 'b':
4266 case '-':
4267 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4268 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4269 "bool");
4270 return -1;
4272 break;
4273 case 'O':
4274 assert(flags & QMP_ACCEPT_UNKNOWNS);
4275 break;
4276 case '/':
4277 case '.':
4279 * These types are not supported by QMP and thus are not
4280 * handled here. Fall through.
4282 default:
4283 abort();
4287 return 0;
4291 * - Check if the client has passed all mandatory args
4292 * - Set special flags for argument validation
4294 static int check_mandatory_args(const QDict *cmd_args,
4295 const QDict *client_args, int *flags)
4297 const QDictEntry *ent;
4299 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4300 const char *cmd_arg_name = qdict_entry_key(ent);
4301 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4302 assert(type != NULL);
4304 if (qstring_get_str(type)[0] == 'O') {
4305 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4306 *flags |= QMP_ACCEPT_UNKNOWNS;
4307 } else if (qstring_get_str(type)[0] != '-' &&
4308 qstring_get_str(type)[1] != '?' &&
4309 !qdict_haskey(client_args, cmd_arg_name)) {
4310 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4311 return -1;
4315 return 0;
4318 static QDict *qdict_from_args_type(const char *args_type)
4320 int i;
4321 QDict *qdict;
4322 QString *key, *type, *cur_qs;
4324 assert(args_type != NULL);
4326 qdict = qdict_new();
4328 if (args_type == NULL || args_type[0] == '\0') {
4329 /* no args, empty qdict */
4330 goto out;
4333 key = qstring_new();
4334 type = qstring_new();
4336 cur_qs = key;
4338 for (i = 0;; i++) {
4339 switch (args_type[i]) {
4340 case ',':
4341 case '\0':
4342 qdict_put(qdict, qstring_get_str(key), type);
4343 QDECREF(key);
4344 if (args_type[i] == '\0') {
4345 goto out;
4347 type = qstring_new(); /* qdict has ref */
4348 cur_qs = key = qstring_new();
4349 break;
4350 case ':':
4351 cur_qs = type;
4352 break;
4353 default:
4354 qstring_append_chr(cur_qs, args_type[i]);
4355 break;
4359 out:
4360 return qdict;
4364 * Client argument checking rules:
4366 * 1. Client must provide all mandatory arguments
4367 * 2. Each argument provided by the client must be expected
4368 * 3. Each argument provided by the client must have the type expected
4369 * by the command
4371 static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4373 int flags, err;
4374 QDict *cmd_args;
4376 cmd_args = qdict_from_args_type(cmd->args_type);
4378 flags = 0;
4379 err = check_mandatory_args(cmd_args, client_args, &flags);
4380 if (err) {
4381 goto out;
4384 err = check_client_args_type(client_args, cmd_args, flags);
4386 out:
4387 QDECREF(cmd_args);
4388 return err;
4392 * Input object checking rules
4394 * 1. Input object must be a dict
4395 * 2. The "execute" key must exist
4396 * 3. The "execute" key must be a string
4397 * 4. If the "arguments" key exists, it must be a dict
4398 * 5. If the "id" key exists, it can be anything (ie. json-value)
4399 * 6. Any argument not listed above is considered invalid
4401 static QDict *qmp_check_input_obj(QObject *input_obj)
4403 const QDictEntry *ent;
4404 int has_exec_key = 0;
4405 QDict *input_dict;
4407 if (qobject_type(input_obj) != QTYPE_QDICT) {
4408 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4409 return NULL;
4412 input_dict = qobject_to_qdict(input_obj);
4414 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4415 const char *arg_name = qdict_entry_key(ent);
4416 const QObject *arg_obj = qdict_entry_value(ent);
4418 if (!strcmp(arg_name, "execute")) {
4419 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4420 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4421 "string");
4422 return NULL;
4424 has_exec_key = 1;
4425 } else if (!strcmp(arg_name, "arguments")) {
4426 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4427 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4428 "object");
4429 return NULL;
4431 } else if (!strcmp(arg_name, "id")) {
4432 /* FIXME: check duplicated IDs for async commands */
4433 } else {
4434 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4435 return NULL;
4439 if (!has_exec_key) {
4440 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4441 return NULL;
4444 return input_dict;
4447 static void qmp_call_query_cmd(Monitor *mon, const mon_cmd_t *cmd)
4449 QObject *ret_data = NULL;
4451 if (handler_is_async(cmd)) {
4452 qmp_async_info_handler(mon, cmd);
4453 if (monitor_has_error(mon)) {
4454 monitor_protocol_emitter(mon, NULL);
4456 } else {
4457 cmd->mhandler.info_new(mon, &ret_data);
4458 if (ret_data) {
4459 monitor_protocol_emitter(mon, ret_data);
4460 qobject_decref(ret_data);
4465 static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4466 const QDict *params)
4468 int ret;
4469 QObject *data = NULL;
4471 mon_print_count_init(mon);
4473 ret = cmd->mhandler.cmd_new(mon, params, &data);
4474 handler_audit(mon, cmd, ret);
4475 monitor_protocol_emitter(mon, data);
4476 qobject_decref(data);
4479 static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4481 int err;
4482 QObject *obj;
4483 QDict *input, *args;
4484 const mon_cmd_t *cmd;
4485 Monitor *mon = cur_mon;
4486 const char *cmd_name, *query_cmd;
4488 query_cmd = NULL;
4489 args = input = NULL;
4491 obj = json_parser_parse(tokens, NULL);
4492 if (!obj) {
4493 // FIXME: should be triggered in json_parser_parse()
4494 qerror_report(QERR_JSON_PARSING);
4495 goto err_out;
4498 input = qmp_check_input_obj(obj);
4499 if (!input) {
4500 qobject_decref(obj);
4501 goto err_out;
4504 mon->mc->id = qdict_get(input, "id");
4505 qobject_incref(mon->mc->id);
4507 cmd_name = qdict_get_str(input, "execute");
4508 if (invalid_qmp_mode(mon, cmd_name)) {
4509 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4510 goto err_out;
4513 if (strstart(cmd_name, "query-", &query_cmd)) {
4514 cmd = qmp_find_query_cmd(query_cmd);
4515 } else {
4516 cmd = qmp_find_cmd(cmd_name);
4519 if (!cmd) {
4520 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4521 goto err_out;
4524 obj = qdict_get(input, "arguments");
4525 if (!obj) {
4526 args = qdict_new();
4527 } else {
4528 args = qobject_to_qdict(obj);
4529 QINCREF(args);
4532 err = qmp_check_client_args(cmd, args);
4533 if (err < 0) {
4534 goto err_out;
4537 if (query_cmd) {
4538 qmp_call_query_cmd(mon, cmd);
4539 } else if (handler_is_async(cmd)) {
4540 err = qmp_async_cmd_handler(mon, cmd, args);
4541 if (err) {
4542 /* emit the error response */
4543 goto err_out;
4545 } else {
4546 qmp_call_cmd(mon, cmd, args);
4549 goto out;
4551 err_out:
4552 monitor_protocol_emitter(mon, NULL);
4553 out:
4554 QDECREF(input);
4555 QDECREF(args);
4559 * monitor_control_read(): Read and handle QMP input
4561 static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4563 Monitor *old_mon = cur_mon;
4565 cur_mon = opaque;
4567 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
4569 cur_mon = old_mon;
4572 static void monitor_read(void *opaque, const uint8_t *buf, int size)
4574 Monitor *old_mon = cur_mon;
4575 int i;
4577 cur_mon = opaque;
4579 if (cur_mon->rs) {
4580 for (i = 0; i < size; i++)
4581 readline_handle_byte(cur_mon->rs, buf[i]);
4582 } else {
4583 if (size == 0 || buf[size - 1] != 0)
4584 monitor_printf(cur_mon, "corrupted command\n");
4585 else
4586 handle_user_command(cur_mon, (char *)buf);
4589 cur_mon = old_mon;
4592 static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
4594 monitor_suspend(mon);
4595 handle_user_command(mon, cmdline);
4596 monitor_resume(mon);
4599 int monitor_suspend(Monitor *mon)
4601 if (!mon->rs)
4602 return -ENOTTY;
4603 mon->suspend_cnt++;
4604 return 0;
4607 void monitor_resume(Monitor *mon)
4609 if (!mon->rs)
4610 return;
4611 if (--mon->suspend_cnt == 0)
4612 readline_show_prompt(mon->rs);
4615 static QObject *get_qmp_greeting(void)
4617 QObject *ver;
4619 do_info_version(NULL, &ver);
4620 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4624 * monitor_control_event(): Print QMP gretting
4626 static void monitor_control_event(void *opaque, int event)
4628 QObject *data;
4629 Monitor *mon = opaque;
4631 switch (event) {
4632 case CHR_EVENT_OPENED:
4633 mon->mc->command_mode = 0;
4634 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
4635 data = get_qmp_greeting();
4636 monitor_json_emitter(mon, data);
4637 qobject_decref(data);
4638 break;
4639 case CHR_EVENT_CLOSED:
4640 json_message_parser_destroy(&mon->mc->parser);
4641 break;
4645 static void monitor_event(void *opaque, int event)
4647 Monitor *mon = opaque;
4649 switch (event) {
4650 case CHR_EVENT_MUX_IN:
4651 mon->mux_out = 0;
4652 if (mon->reset_seen) {
4653 readline_restart(mon->rs);
4654 monitor_resume(mon);
4655 monitor_flush(mon);
4656 } else {
4657 mon->suspend_cnt = 0;
4659 break;
4661 case CHR_EVENT_MUX_OUT:
4662 if (mon->reset_seen) {
4663 if (mon->suspend_cnt == 0) {
4664 monitor_printf(mon, "\n");
4666 monitor_flush(mon);
4667 monitor_suspend(mon);
4668 } else {
4669 mon->suspend_cnt++;
4671 mon->mux_out = 1;
4672 break;
4674 case CHR_EVENT_OPENED:
4675 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4676 "information\n", QEMU_VERSION);
4677 if (!mon->mux_out) {
4678 readline_show_prompt(mon->rs);
4680 mon->reset_seen = 1;
4681 break;
4687 * Local variables:
4688 * c-indent-level: 4
4689 * c-basic-offset: 4
4690 * tab-width: 8
4691 * End:
4694 void monitor_init(CharDriverState *chr, int flags)
4696 static int is_first_init = 1;
4697 Monitor *mon;
4699 if (is_first_init) {
4700 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
4701 is_first_init = 0;
4704 mon = qemu_mallocz(sizeof(*mon));
4706 mon->chr = chr;
4707 mon->flags = flags;
4708 if (flags & MONITOR_USE_READLINE) {
4709 mon->rs = readline_init(mon, monitor_find_completion);
4710 monitor_read_command(mon, 0);
4713 if (monitor_ctrl_mode(mon)) {
4714 mon->mc = qemu_mallocz(sizeof(MonitorControl));
4715 /* Control mode requires special handlers */
4716 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4717 monitor_control_event, mon);
4718 } else {
4719 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4720 monitor_event, mon);
4723 QLIST_INSERT_HEAD(&mon_list, mon, entry);
4724 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4725 default_mon = mon;
4728 static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
4730 BlockDriverState *bs = opaque;
4731 int ret = 0;
4733 if (bdrv_set_key(bs, password) != 0) {
4734 monitor_printf(mon, "invalid password\n");
4735 ret = -EPERM;
4737 if (mon->password_completion_cb)
4738 mon->password_completion_cb(mon->password_opaque, ret);
4740 monitor_read_command(mon, 1);
4743 int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4744 BlockDriverCompletionFunc *completion_cb,
4745 void *opaque)
4747 int err;
4749 if (!bdrv_key_required(bs)) {
4750 if (completion_cb)
4751 completion_cb(opaque, 0);
4752 return 0;
4755 if (monitor_ctrl_mode(mon)) {
4756 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
4757 return -1;
4760 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4761 bdrv_get_encrypted_filename(bs));
4763 mon->password_completion_cb = completion_cb;
4764 mon->password_opaque = opaque;
4766 err = monitor_read_password(mon, bdrv_password_cb, bs);
4768 if (err && completion_cb)
4769 completion_cb(opaque, err);
4771 return err;