virtio-net: fix network stall under load
[qemu/aliguori-queue.git] / monitor.c
blob6a0f1826471f2cdfd93357f1e4f9d9e5a653e484
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 "block.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 "qdict.h"
53 #include "qbool.h"
54 #include "qstring.h"
55 #include "qerror.h"
56 #include "qjson.h"
57 #include "json-streamer.h"
58 #include "json-parser.h"
59 #include "osdep.h"
61 //#define DEBUG
62 //#define DEBUG_COMPLETION
65 * Supported types:
67 * 'F' filename
68 * 'B' block device name
69 * 's' string (accept optional quote)
70 * 'i' 32 bit integer
71 * 'l' target long (32 or 64 bit)
72 * 'M' just like 'l', except in user mode the value is
73 * multiplied by 2^20 (think Mebibyte)
74 * 'b' double
75 * user mode accepts an optional G, g, M, m, K, k suffix,
76 * which multiplies the value by 2^30 for suffixes G and
77 * g, 2^20 for M and m, 2^10 for K and k
78 * 'T' double
79 * user mode accepts an optional ms, us, ns suffix,
80 * which divides the value by 1e3, 1e6, 1e9, respectively
81 * '/' optional gdb-like print format (like "/10x")
83 * '?' optional type (for all types, except '/')
84 * '.' other form of optional type (for 'i' and 'l')
85 * '-' optional parameter (eg. '-f')
89 typedef struct MonitorCompletionData MonitorCompletionData;
90 struct MonitorCompletionData {
91 Monitor *mon;
92 void (*user_print)(Monitor *mon, const QObject *data);
95 typedef struct mon_cmd_t {
96 const char *name;
97 const char *args_type;
98 const char *params;
99 const char *help;
100 void (*user_print)(Monitor *mon, const QObject *data);
101 union {
102 void (*info)(Monitor *mon);
103 void (*info_new)(Monitor *mon, QObject **ret_data);
104 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
105 void (*cmd)(Monitor *mon, const QDict *qdict);
106 void (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
107 int (*cmd_async)(Monitor *mon, const QDict *params,
108 MonitorCompletion *cb, void *opaque);
109 } mhandler;
110 int async;
111 } mon_cmd_t;
113 /* file descriptors passed via SCM_RIGHTS */
114 typedef struct mon_fd_t mon_fd_t;
115 struct mon_fd_t {
116 char *name;
117 int fd;
118 QLIST_ENTRY(mon_fd_t) next;
121 typedef struct MonitorControl {
122 QObject *id;
123 int print_enabled;
124 JSONMessageParser parser;
125 int command_mode;
126 } MonitorControl;
128 struct Monitor {
129 CharDriverState *chr;
130 int mux_out;
131 int reset_seen;
132 int flags;
133 int suspend_cnt;
134 uint8_t outbuf[1024];
135 int outbuf_index;
136 ReadLineState *rs;
137 MonitorControl *mc;
138 CPUState *mon_cpu;
139 BlockDriverCompletionFunc *password_completion_cb;
140 void *password_opaque;
141 QError *error;
142 QLIST_HEAD(,mon_fd_t) fds;
143 QLIST_ENTRY(Monitor) entry;
146 static QLIST_HEAD(mon_list, Monitor) mon_list;
148 static const mon_cmd_t mon_cmds[];
149 static const mon_cmd_t info_cmds[];
151 Monitor *cur_mon = NULL;
153 static void monitor_command_cb(Monitor *mon, const char *cmdline,
154 void *opaque);
156 static inline int qmp_cmd_mode(const Monitor *mon)
158 return (mon->mc ? mon->mc->command_mode : 0);
161 /* Return true if in control mode, false otherwise */
162 static inline int monitor_ctrl_mode(const Monitor *mon)
164 return (mon->flags & MONITOR_USE_CONTROL);
167 static void monitor_read_command(Monitor *mon, int show_prompt)
169 if (!mon->rs)
170 return;
172 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
173 if (show_prompt)
174 readline_show_prompt(mon->rs);
177 static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
178 void *opaque)
180 if (monitor_ctrl_mode(mon)) {
181 qemu_error_new(QERR_MISSING_PARAMETER, "password");
182 return -EINVAL;
183 } else if (mon->rs) {
184 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
185 /* prompt is printed on return from the command handler */
186 return 0;
187 } else {
188 monitor_printf(mon, "terminal does not support password prompting\n");
189 return -ENOTTY;
193 void monitor_flush(Monitor *mon)
195 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
196 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
197 mon->outbuf_index = 0;
201 /* flush at every end of line or if the buffer is full */
202 static void monitor_puts(Monitor *mon, const char *str)
204 char c;
206 for(;;) {
207 c = *str++;
208 if (c == '\0')
209 break;
210 if (c == '\n')
211 mon->outbuf[mon->outbuf_index++] = '\r';
212 mon->outbuf[mon->outbuf_index++] = c;
213 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
214 || c == '\n')
215 monitor_flush(mon);
219 void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
221 if (!mon)
222 return;
224 if (mon->mc && !mon->mc->print_enabled) {
225 qemu_error_new(QERR_UNDEFINED_ERROR);
226 } else {
227 char buf[4096];
228 vsnprintf(buf, sizeof(buf), fmt, ap);
229 monitor_puts(mon, buf);
233 void monitor_printf(Monitor *mon, const char *fmt, ...)
235 va_list ap;
236 va_start(ap, fmt);
237 monitor_vprintf(mon, fmt, ap);
238 va_end(ap);
241 void monitor_print_filename(Monitor *mon, const char *filename)
243 int i;
245 for (i = 0; filename[i]; i++) {
246 switch (filename[i]) {
247 case ' ':
248 case '"':
249 case '\\':
250 monitor_printf(mon, "\\%c", filename[i]);
251 break;
252 case '\t':
253 monitor_printf(mon, "\\t");
254 break;
255 case '\r':
256 monitor_printf(mon, "\\r");
257 break;
258 case '\n':
259 monitor_printf(mon, "\\n");
260 break;
261 default:
262 monitor_printf(mon, "%c", filename[i]);
263 break;
268 static int monitor_fprintf(FILE *stream, const char *fmt, ...)
270 va_list ap;
271 va_start(ap, fmt);
272 monitor_vprintf((Monitor *)stream, fmt, ap);
273 va_end(ap);
274 return 0;
277 static void monitor_user_noop(Monitor *mon, const QObject *data) { }
279 static inline int monitor_handler_ported(const mon_cmd_t *cmd)
281 return cmd->user_print != NULL;
284 static inline bool monitor_handler_is_async(const mon_cmd_t *cmd)
286 return cmd->async != 0;
289 static inline int monitor_has_error(const Monitor *mon)
291 return mon->error != NULL;
294 static void monitor_json_emitter(Monitor *mon, const QObject *data)
296 QString *json;
298 json = qobject_to_json(data);
299 assert(json != NULL);
301 mon->mc->print_enabled = 1;
302 monitor_printf(mon, "%s\n", qstring_get_str(json));
303 mon->mc->print_enabled = 0;
305 QDECREF(json);
308 static void monitor_protocol_emitter(Monitor *mon, QObject *data)
310 QDict *qmp;
312 qmp = qdict_new();
314 if (!monitor_has_error(mon)) {
315 /* success response */
316 if (data) {
317 qobject_incref(data);
318 qdict_put_obj(qmp, "return", data);
319 } else {
320 /* return an empty QDict by default */
321 qdict_put(qmp, "return", qdict_new());
323 } else {
324 /* error response */
325 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
326 qdict_put(qmp, "error", mon->error->error);
327 QINCREF(mon->error->error);
328 QDECREF(mon->error);
329 mon->error = NULL;
332 if (mon->mc->id) {
333 qdict_put_obj(qmp, "id", mon->mc->id);
334 mon->mc->id = NULL;
337 monitor_json_emitter(mon, QOBJECT(qmp));
338 QDECREF(qmp);
341 static void timestamp_put(QDict *qdict)
343 int err;
344 QObject *obj;
345 qemu_timeval tv;
347 err = qemu_gettimeofday(&tv);
348 if (err < 0)
349 return;
351 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
352 "'microseconds': %" PRId64 " }",
353 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
354 assert(obj != NULL);
356 qdict_put_obj(qdict, "timestamp", obj);
360 * monitor_protocol_event(): Generate a Monitor event
362 * Event-specific data can be emitted through the (optional) 'data' parameter.
364 void monitor_protocol_event(MonitorEvent event, QObject *data)
366 QDict *qmp;
367 const char *event_name;
368 Monitor *mon;
370 assert(event < QEVENT_MAX);
372 switch (event) {
373 case QEVENT_DEBUG:
374 event_name = "DEBUG";
375 break;
376 case QEVENT_SHUTDOWN:
377 event_name = "SHUTDOWN";
378 break;
379 case QEVENT_RESET:
380 event_name = "RESET";
381 break;
382 case QEVENT_POWERDOWN:
383 event_name = "POWERDOWN";
384 break;
385 case QEVENT_STOP:
386 event_name = "STOP";
387 break;
388 case QEVENT_VNC_CONNECTED:
389 event_name = "VNC_CONNECTED";
390 break;
391 case QEVENT_VNC_INITIALIZED:
392 event_name = "VNC_INITIALIZED";
393 break;
394 case QEVENT_VNC_DISCONNECTED:
395 event_name = "VNC_DISCONNECTED";
396 break;
397 case QEVENT_BLOCK_IO_ERROR:
398 event_name = "BLOCK_IO_ERROR";
399 break;
400 default:
401 abort();
402 break;
405 qmp = qdict_new();
406 timestamp_put(qmp);
407 qdict_put(qmp, "event", qstring_from_str(event_name));
408 if (data) {
409 qobject_incref(data);
410 qdict_put_obj(qmp, "data", data);
413 QLIST_FOREACH(mon, &mon_list, entry) {
414 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
415 monitor_json_emitter(mon, QOBJECT(qmp));
418 QDECREF(qmp);
421 static void do_qmp_capabilities(Monitor *mon, const QDict *params,
422 QObject **ret_data)
424 /* Will setup QMP capabilities in the future */
425 if (monitor_ctrl_mode(mon)) {
426 mon->mc->command_mode = 1;
430 static int compare_cmd(const char *name, const char *list)
432 const char *p, *pstart;
433 int len;
434 len = strlen(name);
435 p = list;
436 for(;;) {
437 pstart = p;
438 p = strchr(p, '|');
439 if (!p)
440 p = pstart + strlen(pstart);
441 if ((p - pstart) == len && !memcmp(pstart, name, len))
442 return 1;
443 if (*p == '\0')
444 break;
445 p++;
447 return 0;
450 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
451 const char *prefix, const char *name)
453 const mon_cmd_t *cmd;
455 for(cmd = cmds; cmd->name != NULL; cmd++) {
456 if (!name || !strcmp(name, cmd->name))
457 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
458 cmd->params, cmd->help);
462 static void help_cmd(Monitor *mon, const char *name)
464 if (name && !strcmp(name, "info")) {
465 help_cmd_dump(mon, info_cmds, "info ", NULL);
466 } else {
467 help_cmd_dump(mon, mon_cmds, "", name);
468 if (name && !strcmp(name, "log")) {
469 const CPULogItem *item;
470 monitor_printf(mon, "Log items (comma separated):\n");
471 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
472 for(item = cpu_log_items; item->mask != 0; item++) {
473 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
479 static void do_help_cmd(Monitor *mon, const QDict *qdict)
481 help_cmd(mon, qdict_get_try_str(qdict, "name"));
484 static void do_commit(Monitor *mon, const QDict *qdict)
486 int all_devices;
487 DriveInfo *dinfo;
488 const char *device = qdict_get_str(qdict, "device");
490 all_devices = !strcmp(device, "all");
491 QTAILQ_FOREACH(dinfo, &drives, next) {
492 if (!all_devices)
493 if (strcmp(bdrv_get_device_name(dinfo->bdrv), device))
494 continue;
495 bdrv_commit(dinfo->bdrv);
499 static void user_monitor_complete(void *opaque, QObject *ret_data)
501 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
503 if (ret_data) {
504 data->user_print(data->mon, ret_data);
506 monitor_resume(data->mon);
507 qemu_free(data);
510 static void qmp_monitor_complete(void *opaque, QObject *ret_data)
512 monitor_protocol_emitter(opaque, ret_data);
515 static void qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
516 const QDict *params)
518 cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
521 static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
523 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
526 static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
527 const QDict *params)
529 int ret;
531 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
532 cb_data->mon = mon;
533 cb_data->user_print = cmd->user_print;
534 monitor_suspend(mon);
535 ret = cmd->mhandler.cmd_async(mon, params,
536 user_monitor_complete, cb_data);
537 if (ret < 0) {
538 monitor_resume(mon);
539 qemu_free(cb_data);
543 static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
545 int ret;
547 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
548 cb_data->mon = mon;
549 cb_data->user_print = cmd->user_print;
550 monitor_suspend(mon);
551 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
552 if (ret < 0) {
553 monitor_resume(mon);
554 qemu_free(cb_data);
558 static void do_info(Monitor *mon, const QDict *qdict, QObject **ret_data)
560 const mon_cmd_t *cmd;
561 const char *item = qdict_get_try_str(qdict, "item");
563 if (!item) {
564 assert(monitor_ctrl_mode(mon) == 0);
565 goto help;
568 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
569 if (compare_cmd(item, cmd->name))
570 break;
573 if (cmd->name == NULL) {
574 if (monitor_ctrl_mode(mon)) {
575 qemu_error_new(QERR_COMMAND_NOT_FOUND, item);
576 return;
578 goto help;
581 if (monitor_handler_is_async(cmd)) {
582 if (monitor_ctrl_mode(mon)) {
583 qmp_async_info_handler(mon, cmd);
584 } else {
585 user_async_info_handler(mon, cmd);
588 * Indicate that this command is asynchronous and will not return any
589 * data (not even empty). Instead, the data will be returned via a
590 * completion callback.
592 *ret_data = qobject_from_jsonf("{ '__mon_async': 'return' }");
593 } else if (monitor_handler_ported(cmd)) {
594 cmd->mhandler.info_new(mon, ret_data);
596 if (!monitor_ctrl_mode(mon)) {
598 * User Protocol function is called here, Monitor Protocol is
599 * handled by monitor_call_handler()
601 if (*ret_data)
602 cmd->user_print(mon, *ret_data);
604 } else {
605 if (monitor_ctrl_mode(mon)) {
606 /* handler not converted yet */
607 qemu_error_new(QERR_COMMAND_NOT_FOUND, item);
608 } else {
609 cmd->mhandler.info(mon);
613 return;
615 help:
616 help_cmd(mon, "info");
619 static void do_info_version_print(Monitor *mon, const QObject *data)
621 QDict *qdict;
623 qdict = qobject_to_qdict(data);
625 monitor_printf(mon, "%s%s\n", qdict_get_str(qdict, "qemu"),
626 qdict_get_str(qdict, "package"));
630 * do_info_version(): Show QEMU version
632 * Return a QDict with the following information:
634 * - "qemu": QEMU's version
635 * - "package": package's version
637 * Example:
639 * { "qemu": "0.11.50", "package": "" }
641 static void do_info_version(Monitor *mon, QObject **ret_data)
643 *ret_data = qobject_from_jsonf("{ 'qemu': %s, 'package': %s }",
644 QEMU_VERSION, QEMU_PKGVERSION);
647 static void do_info_name_print(Monitor *mon, const QObject *data)
649 QDict *qdict;
651 qdict = qobject_to_qdict(data);
652 if (qdict_size(qdict) == 0) {
653 return;
656 monitor_printf(mon, "%s\n", qdict_get_str(qdict, "name"));
660 * do_info_name(): Show VM name
662 * Return a QDict with the following information:
664 * - "name": VM's name (optional)
666 * Example:
668 * { "name": "qemu-name" }
670 static void do_info_name(Monitor *mon, QObject **ret_data)
672 *ret_data = qemu_name ? qobject_from_jsonf("{'name': %s }", qemu_name) :
673 qobject_from_jsonf("{}");
676 static QObject *get_cmd_dict(const char *name)
678 const char *p;
680 /* Remove '|' from some commands */
681 p = strchr(name, '|');
682 if (p) {
683 p++;
684 } else {
685 p = name;
688 return qobject_from_jsonf("{ 'name': %s }", p);
692 * do_info_commands(): List QMP available commands
694 * Each command is represented by a QDict, the returned QObject is a QList
695 * of all commands.
697 * The QDict contains:
699 * - "name": command's name
701 * Example:
703 * { [ { "name": "query-balloon" }, { "name": "system_powerdown" } ] }
705 static void do_info_commands(Monitor *mon, QObject **ret_data)
707 QList *cmd_list;
708 const mon_cmd_t *cmd;
710 cmd_list = qlist_new();
712 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
713 if (monitor_handler_ported(cmd) && !compare_cmd(cmd->name, "info")) {
714 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
718 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
719 if (monitor_handler_ported(cmd)) {
720 char buf[128];
721 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
722 qlist_append_obj(cmd_list, get_cmd_dict(buf));
726 *ret_data = QOBJECT(cmd_list);
729 #if defined(TARGET_I386)
730 static void do_info_hpet_print(Monitor *mon, const QObject *data)
732 monitor_printf(mon, "HPET is %s by QEMU\n",
733 qdict_get_bool(qobject_to_qdict(data), "enabled") ?
734 "enabled" : "disabled");
738 * do_info_hpet(): Show HPET state
740 * Return a QDict with the following information:
742 * - "enabled": true if hpet if enabled, false otherwise
744 * Example:
746 * { "enabled": true }
748 static void do_info_hpet(Monitor *mon, QObject **ret_data)
750 *ret_data = qobject_from_jsonf("{ 'enabled': %i }", !no_hpet);
752 #endif
754 static void do_info_uuid_print(Monitor *mon, const QObject *data)
756 monitor_printf(mon, "%s\n", qdict_get_str(qobject_to_qdict(data), "UUID"));
760 * do_info_uuid(): Show VM UUID
762 * Return a QDict with the following information:
764 * - "UUID": Universally Unique Identifier
766 * Example:
768 * { "UUID": "550e8400-e29b-41d4-a716-446655440000" }
770 static void do_info_uuid(Monitor *mon, QObject **ret_data)
772 char uuid[64];
774 snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1],
775 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
776 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
777 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
778 qemu_uuid[14], qemu_uuid[15]);
779 *ret_data = qobject_from_jsonf("{ 'UUID': %s }", uuid);
782 /* get the current CPU defined by the user */
783 static int mon_set_cpu(int cpu_index)
785 CPUState *env;
787 for(env = first_cpu; env != NULL; env = env->next_cpu) {
788 if (env->cpu_index == cpu_index) {
789 cur_mon->mon_cpu = env;
790 return 0;
793 return -1;
796 static CPUState *mon_get_cpu(void)
798 if (!cur_mon->mon_cpu) {
799 mon_set_cpu(0);
801 cpu_synchronize_state(cur_mon->mon_cpu);
802 return cur_mon->mon_cpu;
805 static void do_info_registers(Monitor *mon)
807 CPUState *env;
808 env = mon_get_cpu();
809 #ifdef TARGET_I386
810 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
811 X86_DUMP_FPU);
812 #else
813 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
815 #endif
818 static void print_cpu_iter(QObject *obj, void *opaque)
820 QDict *cpu;
821 int active = ' ';
822 Monitor *mon = opaque;
824 assert(qobject_type(obj) == QTYPE_QDICT);
825 cpu = qobject_to_qdict(obj);
827 if (qdict_get_bool(cpu, "current")) {
828 active = '*';
831 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
833 #if defined(TARGET_I386)
834 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
835 (target_ulong) qdict_get_int(cpu, "pc"));
836 #elif defined(TARGET_PPC)
837 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
838 (target_long) qdict_get_int(cpu, "nip"));
839 #elif defined(TARGET_SPARC)
840 monitor_printf(mon, "pc=0x " TARGET_FMT_lx,
841 (target_long) qdict_get_int(cpu, "pc"));
842 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
843 (target_long) qdict_get_int(cpu, "npc"));
844 #elif defined(TARGET_MIPS)
845 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
846 (target_long) qdict_get_int(cpu, "PC"));
847 #endif
849 if (qdict_get_bool(cpu, "halted")) {
850 monitor_printf(mon, " (halted)");
853 monitor_printf(mon, "\n");
856 static void monitor_print_cpus(Monitor *mon, const QObject *data)
858 QList *cpu_list;
860 assert(qobject_type(data) == QTYPE_QLIST);
861 cpu_list = qobject_to_qlist(data);
862 qlist_iter(cpu_list, print_cpu_iter, mon);
866 * do_info_cpus(): Show CPU information
868 * Return a QList. Each CPU is represented by a QDict, which contains:
870 * - "cpu": CPU index
871 * - "current": true if this is the current CPU, false otherwise
872 * - "halted": true if the cpu is halted, false otherwise
873 * - Current program counter. The key's name depends on the architecture:
874 * "pc": i386/x86)64
875 * "nip": PPC
876 * "pc" and "npc": sparc
877 * "PC": mips
879 * Example:
881 * [ { "CPU": 0, "current": true, "halted": false, "pc": 3227107138 },
882 * { "CPU": 1, "current": false, "halted": true, "pc": 7108165 } ]
884 static void do_info_cpus(Monitor *mon, QObject **ret_data)
886 CPUState *env;
887 QList *cpu_list;
889 cpu_list = qlist_new();
891 /* just to set the default cpu if not already done */
892 mon_get_cpu();
894 for(env = first_cpu; env != NULL; env = env->next_cpu) {
895 QDict *cpu;
896 QObject *obj;
898 cpu_synchronize_state(env);
900 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
901 env->cpu_index, env == mon->mon_cpu,
902 env->halted);
903 assert(obj != NULL);
905 cpu = qobject_to_qdict(obj);
907 #if defined(TARGET_I386)
908 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
909 #elif defined(TARGET_PPC)
910 qdict_put(cpu, "nip", qint_from_int(env->nip));
911 #elif defined(TARGET_SPARC)
912 qdict_put(cpu, "pc", qint_from_int(env->pc));
913 qdict_put(cpu, "npc", qint_from_int(env->npc));
914 #elif defined(TARGET_MIPS)
915 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
916 #endif
918 qlist_append(cpu_list, cpu);
921 *ret_data = QOBJECT(cpu_list);
924 static void do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
926 int index = qdict_get_int(qdict, "index");
927 if (mon_set_cpu(index) < 0)
928 qemu_error_new(QERR_INVALID_PARAMETER, "index");
931 static void do_info_jit(Monitor *mon)
933 dump_exec_info((FILE *)mon, monitor_fprintf);
936 static void do_info_history(Monitor *mon)
938 int i;
939 const char *str;
941 if (!mon->rs)
942 return;
943 i = 0;
944 for(;;) {
945 str = readline_get_history(mon->rs, i);
946 if (!str)
947 break;
948 monitor_printf(mon, "%d: '%s'\n", i, str);
949 i++;
953 #if defined(TARGET_PPC)
954 /* XXX: not implemented in other targets */
955 static void do_info_cpu_stats(Monitor *mon)
957 CPUState *env;
959 env = mon_get_cpu();
960 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
962 #endif
965 * do_quit(): Quit QEMU execution
967 static void do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
969 exit(0);
972 static int eject_device(Monitor *mon, BlockDriverState *bs, int force)
974 if (bdrv_is_inserted(bs)) {
975 if (!force) {
976 if (!bdrv_is_removable(bs)) {
977 qemu_error_new(QERR_DEVICE_NOT_REMOVABLE,
978 bdrv_get_device_name(bs));
979 return -1;
981 if (bdrv_is_locked(bs)) {
982 qemu_error_new(QERR_DEVICE_LOCKED, bdrv_get_device_name(bs));
983 return -1;
986 bdrv_close(bs);
988 return 0;
991 static void do_eject(Monitor *mon, const QDict *qdict, QObject **ret_data)
993 BlockDriverState *bs;
994 int force = qdict_get_int(qdict, "force");
995 const char *filename = qdict_get_str(qdict, "device");
997 bs = bdrv_find(filename);
998 if (!bs) {
999 qemu_error_new(QERR_DEVICE_NOT_FOUND, filename);
1000 return;
1002 eject_device(mon, bs, force);
1005 static void do_block_set_passwd(Monitor *mon, const QDict *qdict,
1006 QObject **ret_data)
1008 BlockDriverState *bs;
1010 bs = bdrv_find(qdict_get_str(qdict, "device"));
1011 if (!bs) {
1012 qemu_error_new(QERR_DEVICE_NOT_FOUND, qdict_get_str(qdict, "device"));
1013 return;
1016 if (bdrv_set_key(bs, qdict_get_str(qdict, "password")) < 0) {
1017 qemu_error_new(QERR_INVALID_PASSWORD);
1021 static void do_change_block(Monitor *mon, const char *device,
1022 const char *filename, const char *fmt)
1024 BlockDriverState *bs;
1025 BlockDriver *drv = NULL;
1027 bs = bdrv_find(device);
1028 if (!bs) {
1029 qemu_error_new(QERR_DEVICE_NOT_FOUND, device);
1030 return;
1032 if (fmt) {
1033 drv = bdrv_find_whitelisted_format(fmt);
1034 if (!drv) {
1035 qemu_error_new(QERR_INVALID_BLOCK_FORMAT, fmt);
1036 return;
1039 if (eject_device(mon, bs, 0) < 0)
1040 return;
1041 bdrv_open2(bs, filename, BDRV_O_RDWR, drv);
1042 monitor_read_bdrv_key_start(mon, bs, NULL, NULL);
1045 static void change_vnc_password(const char *password)
1047 if (vnc_display_password(NULL, password) < 0)
1048 qemu_error_new(QERR_SET_PASSWD_FAILED);
1052 static void change_vnc_password_cb(Monitor *mon, const char *password,
1053 void *opaque)
1055 change_vnc_password(password);
1056 monitor_read_command(mon, 1);
1059 static void do_change_vnc(Monitor *mon, const char *target, const char *arg)
1061 if (strcmp(target, "passwd") == 0 ||
1062 strcmp(target, "password") == 0) {
1063 if (arg) {
1064 char password[9];
1065 strncpy(password, arg, sizeof(password));
1066 password[sizeof(password) - 1] = '\0';
1067 change_vnc_password(password);
1068 } else {
1069 monitor_read_password(mon, change_vnc_password_cb, NULL);
1071 } else {
1072 if (vnc_display_open(NULL, target) < 0)
1073 qemu_error_new(QERR_VNC_SERVER_FAILED, target);
1078 * do_change(): Change a removable medium, or VNC configuration
1080 static void do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
1082 const char *device = qdict_get_str(qdict, "device");
1083 const char *target = qdict_get_str(qdict, "target");
1084 const char *arg = qdict_get_try_str(qdict, "arg");
1085 if (strcmp(device, "vnc") == 0) {
1086 do_change_vnc(mon, target, arg);
1087 } else {
1088 do_change_block(mon, device, target, arg);
1092 static void do_screen_dump(Monitor *mon, const QDict *qdict)
1094 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
1097 static void do_logfile(Monitor *mon, const QDict *qdict)
1099 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
1102 static void do_log(Monitor *mon, const QDict *qdict)
1104 int mask;
1105 const char *items = qdict_get_str(qdict, "items");
1107 if (!strcmp(items, "none")) {
1108 mask = 0;
1109 } else {
1110 mask = cpu_str_to_log_mask(items);
1111 if (!mask) {
1112 help_cmd(mon, "log");
1113 return;
1116 cpu_set_log(mask);
1119 static void do_singlestep(Monitor *mon, const QDict *qdict)
1121 const char *option = qdict_get_try_str(qdict, "option");
1122 if (!option || !strcmp(option, "on")) {
1123 singlestep = 1;
1124 } else if (!strcmp(option, "off")) {
1125 singlestep = 0;
1126 } else {
1127 monitor_printf(mon, "unexpected option %s\n", option);
1132 * do_stop(): Stop VM execution
1134 static void do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
1136 vm_stop(EXCP_INTERRUPT);
1139 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
1141 struct bdrv_iterate_context {
1142 Monitor *mon;
1143 int err;
1147 * do_cont(): Resume emulation.
1149 static void do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
1151 struct bdrv_iterate_context context = { mon, 0 };
1153 bdrv_iterate(encrypted_bdrv_it, &context);
1154 /* only resume the vm if all keys are set and valid */
1155 if (!context.err)
1156 vm_start();
1159 static void bdrv_key_cb(void *opaque, int err)
1161 Monitor *mon = opaque;
1163 /* another key was set successfully, retry to continue */
1164 if (!err)
1165 do_cont(mon, NULL, NULL);
1168 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1170 struct bdrv_iterate_context *context = opaque;
1172 if (!context->err && bdrv_key_required(bs)) {
1173 context->err = -EBUSY;
1174 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1175 context->mon);
1179 static void do_gdbserver(Monitor *mon, const QDict *qdict)
1181 const char *device = qdict_get_try_str(qdict, "device");
1182 if (!device)
1183 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1184 if (gdbserver_start(device) < 0) {
1185 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1186 device);
1187 } else if (strcmp(device, "none") == 0) {
1188 monitor_printf(mon, "Disabled gdbserver\n");
1189 } else {
1190 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1191 device);
1195 static void do_watchdog_action(Monitor *mon, const QDict *qdict)
1197 const char *action = qdict_get_str(qdict, "action");
1198 if (select_watchdog_action(action) == -1) {
1199 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1203 static void monitor_printc(Monitor *mon, int c)
1205 monitor_printf(mon, "'");
1206 switch(c) {
1207 case '\'':
1208 monitor_printf(mon, "\\'");
1209 break;
1210 case '\\':
1211 monitor_printf(mon, "\\\\");
1212 break;
1213 case '\n':
1214 monitor_printf(mon, "\\n");
1215 break;
1216 case '\r':
1217 monitor_printf(mon, "\\r");
1218 break;
1219 default:
1220 if (c >= 32 && c <= 126) {
1221 monitor_printf(mon, "%c", c);
1222 } else {
1223 monitor_printf(mon, "\\x%02x", c);
1225 break;
1227 monitor_printf(mon, "'");
1230 static void memory_dump(Monitor *mon, int count, int format, int wsize,
1231 target_phys_addr_t addr, int is_physical)
1233 CPUState *env;
1234 int l, line_size, i, max_digits, len;
1235 uint8_t buf[16];
1236 uint64_t v;
1238 if (format == 'i') {
1239 int flags;
1240 flags = 0;
1241 env = mon_get_cpu();
1242 if (!is_physical)
1243 return;
1244 #ifdef TARGET_I386
1245 if (wsize == 2) {
1246 flags = 1;
1247 } else if (wsize == 4) {
1248 flags = 0;
1249 } else {
1250 /* as default we use the current CS size */
1251 flags = 0;
1252 if (env) {
1253 #ifdef TARGET_X86_64
1254 if ((env->efer & MSR_EFER_LMA) &&
1255 (env->segs[R_CS].flags & DESC_L_MASK))
1256 flags = 2;
1257 else
1258 #endif
1259 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1260 flags = 1;
1263 #endif
1264 monitor_disas(mon, env, addr, count, is_physical, flags);
1265 return;
1268 len = wsize * count;
1269 if (wsize == 1)
1270 line_size = 8;
1271 else
1272 line_size = 16;
1273 max_digits = 0;
1275 switch(format) {
1276 case 'o':
1277 max_digits = (wsize * 8 + 2) / 3;
1278 break;
1279 default:
1280 case 'x':
1281 max_digits = (wsize * 8) / 4;
1282 break;
1283 case 'u':
1284 case 'd':
1285 max_digits = (wsize * 8 * 10 + 32) / 33;
1286 break;
1287 case 'c':
1288 wsize = 1;
1289 break;
1292 while (len > 0) {
1293 if (is_physical)
1294 monitor_printf(mon, TARGET_FMT_plx ":", addr);
1295 else
1296 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
1297 l = len;
1298 if (l > line_size)
1299 l = line_size;
1300 if (is_physical) {
1301 cpu_physical_memory_rw(addr, buf, l, 0);
1302 } else {
1303 env = mon_get_cpu();
1304 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
1305 monitor_printf(mon, " Cannot access memory\n");
1306 break;
1309 i = 0;
1310 while (i < l) {
1311 switch(wsize) {
1312 default:
1313 case 1:
1314 v = ldub_raw(buf + i);
1315 break;
1316 case 2:
1317 v = lduw_raw(buf + i);
1318 break;
1319 case 4:
1320 v = (uint32_t)ldl_raw(buf + i);
1321 break;
1322 case 8:
1323 v = ldq_raw(buf + i);
1324 break;
1326 monitor_printf(mon, " ");
1327 switch(format) {
1328 case 'o':
1329 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
1330 break;
1331 case 'x':
1332 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
1333 break;
1334 case 'u':
1335 monitor_printf(mon, "%*" PRIu64, max_digits, v);
1336 break;
1337 case 'd':
1338 monitor_printf(mon, "%*" PRId64, max_digits, v);
1339 break;
1340 case 'c':
1341 monitor_printc(mon, v);
1342 break;
1344 i += wsize;
1346 monitor_printf(mon, "\n");
1347 addr += l;
1348 len -= l;
1352 static void do_memory_dump(Monitor *mon, const QDict *qdict)
1354 int count = qdict_get_int(qdict, "count");
1355 int format = qdict_get_int(qdict, "format");
1356 int size = qdict_get_int(qdict, "size");
1357 target_long addr = qdict_get_int(qdict, "addr");
1359 memory_dump(mon, count, format, size, addr, 0);
1362 static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
1364 int count = qdict_get_int(qdict, "count");
1365 int format = qdict_get_int(qdict, "format");
1366 int size = qdict_get_int(qdict, "size");
1367 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
1369 memory_dump(mon, count, format, size, addr, 1);
1372 static void do_print(Monitor *mon, const QDict *qdict)
1374 int format = qdict_get_int(qdict, "format");
1375 target_phys_addr_t val = qdict_get_int(qdict, "val");
1377 #if TARGET_PHYS_ADDR_BITS == 32
1378 switch(format) {
1379 case 'o':
1380 monitor_printf(mon, "%#o", val);
1381 break;
1382 case 'x':
1383 monitor_printf(mon, "%#x", val);
1384 break;
1385 case 'u':
1386 monitor_printf(mon, "%u", val);
1387 break;
1388 default:
1389 case 'd':
1390 monitor_printf(mon, "%d", val);
1391 break;
1392 case 'c':
1393 monitor_printc(mon, val);
1394 break;
1396 #else
1397 switch(format) {
1398 case 'o':
1399 monitor_printf(mon, "%#" PRIo64, val);
1400 break;
1401 case 'x':
1402 monitor_printf(mon, "%#" PRIx64, val);
1403 break;
1404 case 'u':
1405 monitor_printf(mon, "%" PRIu64, val);
1406 break;
1407 default:
1408 case 'd':
1409 monitor_printf(mon, "%" PRId64, val);
1410 break;
1411 case 'c':
1412 monitor_printc(mon, val);
1413 break;
1415 #endif
1416 monitor_printf(mon, "\n");
1419 static void do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
1421 FILE *f;
1422 uint32_t size = qdict_get_int(qdict, "size");
1423 const char *filename = qdict_get_str(qdict, "filename");
1424 target_long addr = qdict_get_int(qdict, "val");
1425 uint32_t l;
1426 CPUState *env;
1427 uint8_t buf[1024];
1429 env = mon_get_cpu();
1431 f = fopen(filename, "wb");
1432 if (!f) {
1433 qemu_error_new(QERR_OPEN_FILE_FAILED, filename);
1434 return;
1436 while (size != 0) {
1437 l = sizeof(buf);
1438 if (l > size)
1439 l = size;
1440 cpu_memory_rw_debug(env, addr, buf, l, 0);
1441 if (fwrite(buf, 1, l, f) != l) {
1442 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1443 goto exit;
1445 addr += l;
1446 size -= l;
1448 exit:
1449 fclose(f);
1452 static void do_physical_memory_save(Monitor *mon, const QDict *qdict,
1453 QObject **ret_data)
1455 FILE *f;
1456 uint32_t l;
1457 uint8_t buf[1024];
1458 uint32_t size = qdict_get_int(qdict, "size");
1459 const char *filename = qdict_get_str(qdict, "filename");
1460 target_phys_addr_t addr = qdict_get_int(qdict, "val");
1462 f = fopen(filename, "wb");
1463 if (!f) {
1464 qemu_error_new(QERR_OPEN_FILE_FAILED, filename);
1465 return;
1467 while (size != 0) {
1468 l = sizeof(buf);
1469 if (l > size)
1470 l = size;
1471 cpu_physical_memory_rw(addr, buf, l, 0);
1472 if (fwrite(buf, 1, l, f) != l) {
1473 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1474 goto exit;
1476 fflush(f);
1477 addr += l;
1478 size -= l;
1480 exit:
1481 fclose(f);
1484 static void do_sum(Monitor *mon, const QDict *qdict)
1486 uint32_t addr;
1487 uint8_t buf[1];
1488 uint16_t sum;
1489 uint32_t start = qdict_get_int(qdict, "start");
1490 uint32_t size = qdict_get_int(qdict, "size");
1492 sum = 0;
1493 for(addr = start; addr < (start + size); addr++) {
1494 cpu_physical_memory_rw(addr, buf, 1, 0);
1495 /* BSD sum algorithm ('sum' Unix command) */
1496 sum = (sum >> 1) | (sum << 15);
1497 sum += buf[0];
1499 monitor_printf(mon, "%05d\n", sum);
1502 typedef struct {
1503 int keycode;
1504 const char *name;
1505 } KeyDef;
1507 static const KeyDef key_defs[] = {
1508 { 0x2a, "shift" },
1509 { 0x36, "shift_r" },
1511 { 0x38, "alt" },
1512 { 0xb8, "alt_r" },
1513 { 0x64, "altgr" },
1514 { 0xe4, "altgr_r" },
1515 { 0x1d, "ctrl" },
1516 { 0x9d, "ctrl_r" },
1518 { 0xdd, "menu" },
1520 { 0x01, "esc" },
1522 { 0x02, "1" },
1523 { 0x03, "2" },
1524 { 0x04, "3" },
1525 { 0x05, "4" },
1526 { 0x06, "5" },
1527 { 0x07, "6" },
1528 { 0x08, "7" },
1529 { 0x09, "8" },
1530 { 0x0a, "9" },
1531 { 0x0b, "0" },
1532 { 0x0c, "minus" },
1533 { 0x0d, "equal" },
1534 { 0x0e, "backspace" },
1536 { 0x0f, "tab" },
1537 { 0x10, "q" },
1538 { 0x11, "w" },
1539 { 0x12, "e" },
1540 { 0x13, "r" },
1541 { 0x14, "t" },
1542 { 0x15, "y" },
1543 { 0x16, "u" },
1544 { 0x17, "i" },
1545 { 0x18, "o" },
1546 { 0x19, "p" },
1548 { 0x1c, "ret" },
1550 { 0x1e, "a" },
1551 { 0x1f, "s" },
1552 { 0x20, "d" },
1553 { 0x21, "f" },
1554 { 0x22, "g" },
1555 { 0x23, "h" },
1556 { 0x24, "j" },
1557 { 0x25, "k" },
1558 { 0x26, "l" },
1560 { 0x2c, "z" },
1561 { 0x2d, "x" },
1562 { 0x2e, "c" },
1563 { 0x2f, "v" },
1564 { 0x30, "b" },
1565 { 0x31, "n" },
1566 { 0x32, "m" },
1567 { 0x33, "comma" },
1568 { 0x34, "dot" },
1569 { 0x35, "slash" },
1571 { 0x37, "asterisk" },
1573 { 0x39, "spc" },
1574 { 0x3a, "caps_lock" },
1575 { 0x3b, "f1" },
1576 { 0x3c, "f2" },
1577 { 0x3d, "f3" },
1578 { 0x3e, "f4" },
1579 { 0x3f, "f5" },
1580 { 0x40, "f6" },
1581 { 0x41, "f7" },
1582 { 0x42, "f8" },
1583 { 0x43, "f9" },
1584 { 0x44, "f10" },
1585 { 0x45, "num_lock" },
1586 { 0x46, "scroll_lock" },
1588 { 0xb5, "kp_divide" },
1589 { 0x37, "kp_multiply" },
1590 { 0x4a, "kp_subtract" },
1591 { 0x4e, "kp_add" },
1592 { 0x9c, "kp_enter" },
1593 { 0x53, "kp_decimal" },
1594 { 0x54, "sysrq" },
1596 { 0x52, "kp_0" },
1597 { 0x4f, "kp_1" },
1598 { 0x50, "kp_2" },
1599 { 0x51, "kp_3" },
1600 { 0x4b, "kp_4" },
1601 { 0x4c, "kp_5" },
1602 { 0x4d, "kp_6" },
1603 { 0x47, "kp_7" },
1604 { 0x48, "kp_8" },
1605 { 0x49, "kp_9" },
1607 { 0x56, "<" },
1609 { 0x57, "f11" },
1610 { 0x58, "f12" },
1612 { 0xb7, "print" },
1614 { 0xc7, "home" },
1615 { 0xc9, "pgup" },
1616 { 0xd1, "pgdn" },
1617 { 0xcf, "end" },
1619 { 0xcb, "left" },
1620 { 0xc8, "up" },
1621 { 0xd0, "down" },
1622 { 0xcd, "right" },
1624 { 0xd2, "insert" },
1625 { 0xd3, "delete" },
1626 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1627 { 0xf0, "stop" },
1628 { 0xf1, "again" },
1629 { 0xf2, "props" },
1630 { 0xf3, "undo" },
1631 { 0xf4, "front" },
1632 { 0xf5, "copy" },
1633 { 0xf6, "open" },
1634 { 0xf7, "paste" },
1635 { 0xf8, "find" },
1636 { 0xf9, "cut" },
1637 { 0xfa, "lf" },
1638 { 0xfb, "help" },
1639 { 0xfc, "meta_l" },
1640 { 0xfd, "meta_r" },
1641 { 0xfe, "compose" },
1642 #endif
1643 { 0, NULL },
1646 static int get_keycode(const char *key)
1648 const KeyDef *p;
1649 char *endp;
1650 int ret;
1652 for(p = key_defs; p->name != NULL; p++) {
1653 if (!strcmp(key, p->name))
1654 return p->keycode;
1656 if (strstart(key, "0x", NULL)) {
1657 ret = strtoul(key, &endp, 0);
1658 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1659 return ret;
1661 return -1;
1664 #define MAX_KEYCODES 16
1665 static uint8_t keycodes[MAX_KEYCODES];
1666 static int nb_pending_keycodes;
1667 static QEMUTimer *key_timer;
1669 static void release_keys(void *opaque)
1671 int keycode;
1673 while (nb_pending_keycodes > 0) {
1674 nb_pending_keycodes--;
1675 keycode = keycodes[nb_pending_keycodes];
1676 if (keycode & 0x80)
1677 kbd_put_keycode(0xe0);
1678 kbd_put_keycode(keycode | 0x80);
1682 static void do_sendkey(Monitor *mon, const QDict *qdict)
1684 char keyname_buf[16];
1685 char *separator;
1686 int keyname_len, keycode, i;
1687 const char *string = qdict_get_str(qdict, "string");
1688 int has_hold_time = qdict_haskey(qdict, "hold_time");
1689 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
1691 if (nb_pending_keycodes > 0) {
1692 qemu_del_timer(key_timer);
1693 release_keys(NULL);
1695 if (!has_hold_time)
1696 hold_time = 100;
1697 i = 0;
1698 while (1) {
1699 separator = strchr(string, '-');
1700 keyname_len = separator ? separator - string : strlen(string);
1701 if (keyname_len > 0) {
1702 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1703 if (keyname_len > sizeof(keyname_buf) - 1) {
1704 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
1705 return;
1707 if (i == MAX_KEYCODES) {
1708 monitor_printf(mon, "too many keys\n");
1709 return;
1711 keyname_buf[keyname_len] = 0;
1712 keycode = get_keycode(keyname_buf);
1713 if (keycode < 0) {
1714 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
1715 return;
1717 keycodes[i++] = keycode;
1719 if (!separator)
1720 break;
1721 string = separator + 1;
1723 nb_pending_keycodes = i;
1724 /* key down events */
1725 for (i = 0; i < nb_pending_keycodes; i++) {
1726 keycode = keycodes[i];
1727 if (keycode & 0x80)
1728 kbd_put_keycode(0xe0);
1729 kbd_put_keycode(keycode & 0x7f);
1731 /* delayed key up events */
1732 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
1733 muldiv64(get_ticks_per_sec(), hold_time, 1000));
1736 static int mouse_button_state;
1738 static void do_mouse_move(Monitor *mon, const QDict *qdict)
1740 int dx, dy, dz;
1741 const char *dx_str = qdict_get_str(qdict, "dx_str");
1742 const char *dy_str = qdict_get_str(qdict, "dy_str");
1743 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1744 dx = strtol(dx_str, NULL, 0);
1745 dy = strtol(dy_str, NULL, 0);
1746 dz = 0;
1747 if (dz_str)
1748 dz = strtol(dz_str, NULL, 0);
1749 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1752 static void do_mouse_button(Monitor *mon, const QDict *qdict)
1754 int button_state = qdict_get_int(qdict, "button_state");
1755 mouse_button_state = button_state;
1756 kbd_mouse_event(0, 0, 0, mouse_button_state);
1759 static void do_ioport_read(Monitor *mon, const QDict *qdict)
1761 int size = qdict_get_int(qdict, "size");
1762 int addr = qdict_get_int(qdict, "addr");
1763 int has_index = qdict_haskey(qdict, "index");
1764 uint32_t val;
1765 int suffix;
1767 if (has_index) {
1768 int index = qdict_get_int(qdict, "index");
1769 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
1770 addr++;
1772 addr &= 0xffff;
1774 switch(size) {
1775 default:
1776 case 1:
1777 val = cpu_inb(addr);
1778 suffix = 'b';
1779 break;
1780 case 2:
1781 val = cpu_inw(addr);
1782 suffix = 'w';
1783 break;
1784 case 4:
1785 val = cpu_inl(addr);
1786 suffix = 'l';
1787 break;
1789 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1790 suffix, addr, size * 2, val);
1793 static void do_ioport_write(Monitor *mon, const QDict *qdict)
1795 int size = qdict_get_int(qdict, "size");
1796 int addr = qdict_get_int(qdict, "addr");
1797 int val = qdict_get_int(qdict, "val");
1799 addr &= IOPORTS_MASK;
1801 switch (size) {
1802 default:
1803 case 1:
1804 cpu_outb(addr, val);
1805 break;
1806 case 2:
1807 cpu_outw(addr, val);
1808 break;
1809 case 4:
1810 cpu_outl(addr, val);
1811 break;
1815 static void do_boot_set(Monitor *mon, const QDict *qdict)
1817 int res;
1818 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1820 res = qemu_boot_set(bootdevice);
1821 if (res == 0) {
1822 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1823 } else if (res > 0) {
1824 monitor_printf(mon, "setting boot device list failed\n");
1825 } else {
1826 monitor_printf(mon, "no function defined to set boot device list for "
1827 "this architecture\n");
1832 * do_system_reset(): Issue a machine reset
1834 static void do_system_reset(Monitor *mon, const QDict *qdict,
1835 QObject **ret_data)
1837 qemu_system_reset_request();
1841 * do_system_powerdown(): Issue a machine powerdown
1843 static void do_system_powerdown(Monitor *mon, const QDict *qdict,
1844 QObject **ret_data)
1846 qemu_system_powerdown_request();
1849 #if defined(TARGET_I386)
1850 static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
1852 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1853 addr,
1854 pte & mask,
1855 pte & PG_GLOBAL_MASK ? 'G' : '-',
1856 pte & PG_PSE_MASK ? 'P' : '-',
1857 pte & PG_DIRTY_MASK ? 'D' : '-',
1858 pte & PG_ACCESSED_MASK ? 'A' : '-',
1859 pte & PG_PCD_MASK ? 'C' : '-',
1860 pte & PG_PWT_MASK ? 'T' : '-',
1861 pte & PG_USER_MASK ? 'U' : '-',
1862 pte & PG_RW_MASK ? 'W' : '-');
1865 static void tlb_info(Monitor *mon)
1867 CPUState *env;
1868 int l1, l2;
1869 uint32_t pgd, pde, pte;
1871 env = mon_get_cpu();
1873 if (!(env->cr[0] & CR0_PG_MASK)) {
1874 monitor_printf(mon, "PG disabled\n");
1875 return;
1877 pgd = env->cr[3] & ~0xfff;
1878 for(l1 = 0; l1 < 1024; l1++) {
1879 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1880 pde = le32_to_cpu(pde);
1881 if (pde & PG_PRESENT_MASK) {
1882 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1883 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
1884 } else {
1885 for(l2 = 0; l2 < 1024; l2++) {
1886 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
1887 (uint8_t *)&pte, 4);
1888 pte = le32_to_cpu(pte);
1889 if (pte & PG_PRESENT_MASK) {
1890 print_pte(mon, (l1 << 22) + (l2 << 12),
1891 pte & ~PG_PSE_MASK,
1892 ~0xfff);
1900 static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
1901 uint32_t end, int prot)
1903 int prot1;
1904 prot1 = *plast_prot;
1905 if (prot != prot1) {
1906 if (*pstart != -1) {
1907 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1908 *pstart, end, end - *pstart,
1909 prot1 & PG_USER_MASK ? 'u' : '-',
1910 'r',
1911 prot1 & PG_RW_MASK ? 'w' : '-');
1913 if (prot != 0)
1914 *pstart = end;
1915 else
1916 *pstart = -1;
1917 *plast_prot = prot;
1921 static void mem_info(Monitor *mon)
1923 CPUState *env;
1924 int l1, l2, prot, last_prot;
1925 uint32_t pgd, pde, pte, start, end;
1927 env = mon_get_cpu();
1929 if (!(env->cr[0] & CR0_PG_MASK)) {
1930 monitor_printf(mon, "PG disabled\n");
1931 return;
1933 pgd = env->cr[3] & ~0xfff;
1934 last_prot = 0;
1935 start = -1;
1936 for(l1 = 0; l1 < 1024; l1++) {
1937 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1938 pde = le32_to_cpu(pde);
1939 end = l1 << 22;
1940 if (pde & PG_PRESENT_MASK) {
1941 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1942 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1943 mem_print(mon, &start, &last_prot, end, prot);
1944 } else {
1945 for(l2 = 0; l2 < 1024; l2++) {
1946 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
1947 (uint8_t *)&pte, 4);
1948 pte = le32_to_cpu(pte);
1949 end = (l1 << 22) + (l2 << 12);
1950 if (pte & PG_PRESENT_MASK) {
1951 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1952 } else {
1953 prot = 0;
1955 mem_print(mon, &start, &last_prot, end, prot);
1958 } else {
1959 prot = 0;
1960 mem_print(mon, &start, &last_prot, end, prot);
1964 #endif
1966 #if defined(TARGET_SH4)
1968 static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
1970 monitor_printf(mon, " tlb%i:\t"
1971 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1972 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1973 "dirty=%hhu writethrough=%hhu\n",
1974 idx,
1975 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1976 tlb->v, tlb->sh, tlb->c, tlb->pr,
1977 tlb->d, tlb->wt);
1980 static void tlb_info(Monitor *mon)
1982 CPUState *env = mon_get_cpu();
1983 int i;
1985 monitor_printf (mon, "ITLB:\n");
1986 for (i = 0 ; i < ITLB_SIZE ; i++)
1987 print_tlb (mon, i, &env->itlb[i]);
1988 monitor_printf (mon, "UTLB:\n");
1989 for (i = 0 ; i < UTLB_SIZE ; i++)
1990 print_tlb (mon, i, &env->utlb[i]);
1993 #endif
1995 static void do_info_kvm_print(Monitor *mon, const QObject *data)
1997 QDict *qdict;
1999 qdict = qobject_to_qdict(data);
2001 monitor_printf(mon, "kvm support: ");
2002 if (qdict_get_bool(qdict, "present")) {
2003 monitor_printf(mon, "%s\n", qdict_get_bool(qdict, "enabled") ?
2004 "enabled" : "disabled");
2005 } else {
2006 monitor_printf(mon, "not compiled\n");
2011 * do_info_kvm(): Show KVM information
2013 * Return a QDict with the following information:
2015 * - "enabled": true if KVM support is enabled, false otherwise
2016 * - "present": true if QEMU has KVM support, false otherwise
2018 * Example:
2020 * { "enabled": true, "present": true }
2022 static void do_info_kvm(Monitor *mon, QObject **ret_data)
2024 #ifdef CONFIG_KVM
2025 *ret_data = qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
2026 kvm_enabled());
2027 #else
2028 *ret_data = qobject_from_jsonf("{ 'enabled': false, 'present': false }");
2029 #endif
2032 static void do_info_numa(Monitor *mon)
2034 int i;
2035 CPUState *env;
2037 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2038 for (i = 0; i < nb_numa_nodes; i++) {
2039 monitor_printf(mon, "node %d cpus:", i);
2040 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2041 if (env->numa_node == i) {
2042 monitor_printf(mon, " %d", env->cpu_index);
2045 monitor_printf(mon, "\n");
2046 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2047 node_mem[i] >> 20);
2051 #ifdef CONFIG_PROFILER
2053 int64_t qemu_time;
2054 int64_t dev_time;
2056 static void do_info_profile(Monitor *mon)
2058 int64_t total;
2059 total = qemu_time;
2060 if (total == 0)
2061 total = 1;
2062 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
2063 dev_time, dev_time / (double)get_ticks_per_sec());
2064 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
2065 qemu_time, qemu_time / (double)get_ticks_per_sec());
2066 qemu_time = 0;
2067 dev_time = 0;
2069 #else
2070 static void do_info_profile(Monitor *mon)
2072 monitor_printf(mon, "Internal profiler not compiled\n");
2074 #endif
2076 /* Capture support */
2077 static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
2079 static void do_info_capture(Monitor *mon)
2081 int i;
2082 CaptureState *s;
2084 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2085 monitor_printf(mon, "[%d]: ", i);
2086 s->ops.info (s->opaque);
2090 #ifdef HAS_AUDIO
2091 static void do_stop_capture(Monitor *mon, const QDict *qdict)
2093 int i;
2094 int n = qdict_get_int(qdict, "n");
2095 CaptureState *s;
2097 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2098 if (i == n) {
2099 s->ops.destroy (s->opaque);
2100 QLIST_REMOVE (s, entries);
2101 qemu_free (s);
2102 return;
2107 static void do_wav_capture(Monitor *mon, const QDict *qdict)
2109 const char *path = qdict_get_str(qdict, "path");
2110 int has_freq = qdict_haskey(qdict, "freq");
2111 int freq = qdict_get_try_int(qdict, "freq", -1);
2112 int has_bits = qdict_haskey(qdict, "bits");
2113 int bits = qdict_get_try_int(qdict, "bits", -1);
2114 int has_channels = qdict_haskey(qdict, "nchannels");
2115 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
2116 CaptureState *s;
2118 s = qemu_mallocz (sizeof (*s));
2120 freq = has_freq ? freq : 44100;
2121 bits = has_bits ? bits : 16;
2122 nchannels = has_channels ? nchannels : 2;
2124 if (wav_start_capture (s, path, freq, bits, nchannels)) {
2125 monitor_printf(mon, "Faied to add wave capture\n");
2126 qemu_free (s);
2128 QLIST_INSERT_HEAD (&capture_head, s, entries);
2130 #endif
2132 #if defined(TARGET_I386)
2133 static void do_inject_nmi(Monitor *mon, const QDict *qdict)
2135 CPUState *env;
2136 int cpu_index = qdict_get_int(qdict, "cpu_index");
2138 for (env = first_cpu; env != NULL; env = env->next_cpu)
2139 if (env->cpu_index == cpu_index) {
2140 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2141 break;
2144 #endif
2146 static void do_info_status_print(Monitor *mon, const QObject *data)
2148 QDict *qdict;
2150 qdict = qobject_to_qdict(data);
2152 monitor_printf(mon, "VM status: ");
2153 if (qdict_get_bool(qdict, "running")) {
2154 monitor_printf(mon, "running");
2155 if (qdict_get_bool(qdict, "singlestep")) {
2156 monitor_printf(mon, " (single step mode)");
2158 } else {
2159 monitor_printf(mon, "paused");
2162 monitor_printf(mon, "\n");
2166 * do_info_status(): VM status
2168 * Return a QDict with the following information:
2170 * - "running": true if the VM is running, or false if it is paused
2171 * - "singlestep": true if the VM is in single step mode, false otherwise
2173 * Example:
2175 * { "running": true, "singlestep": false }
2177 static void do_info_status(Monitor *mon, QObject **ret_data)
2179 *ret_data = qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2180 vm_running, singlestep);
2183 static void print_balloon_stat(const char *key, QObject *obj, void *opaque)
2185 Monitor *mon = opaque;
2187 if (strcmp(key, "actual"))
2188 monitor_printf(mon, ",%s=%" PRId64, key,
2189 qint_get_int(qobject_to_qint(obj)));
2192 static void monitor_print_balloon(Monitor *mon, const QObject *data)
2194 QDict *qdict;
2196 qdict = qobject_to_qdict(data);
2197 if (!qdict_haskey(qdict, "actual"))
2198 return;
2200 monitor_printf(mon, "balloon: actual=%" PRId64,
2201 qdict_get_int(qdict, "actual") >> 20);
2202 qdict_iter(qdict, print_balloon_stat, mon);
2203 monitor_printf(mon, "\n");
2207 * do_info_balloon(): Balloon information
2209 * Make an asynchronous request for balloon info. When the request completes
2210 * a QDict will be returned according to the following specification:
2212 * - "actual": current balloon value in bytes
2213 * The following fields may or may not be present:
2214 * - "mem_swapped_in": Amount of memory swapped in (bytes)
2215 * - "mem_swapped_out": Amount of memory swapped out (bytes)
2216 * - "major_page_faults": Number of major faults
2217 * - "minor_page_faults": Number of minor faults
2218 * - "free_mem": Total amount of free and unused memory (bytes)
2219 * - "total_mem": Total amount of available memory (bytes)
2221 * Example:
2223 * { "actual": 1073741824, "mem_swapped_in": 0, "mem_swapped_out": 0,
2224 * "major_page_faults": 142, "minor_page_faults": 239245,
2225 * "free_mem": 1014185984, "total_mem": 1044668416 }
2227 static int do_info_balloon(Monitor *mon, MonitorCompletion cb, void *opaque)
2229 int ret;
2231 if (kvm_enabled() && !kvm_has_sync_mmu()) {
2232 qemu_error_new(QERR_KVM_MISSING_CAP, "synchronous MMU", "balloon");
2233 return -1;
2236 ret = qemu_balloon_status(cb, opaque);
2237 if (!ret) {
2238 qemu_error_new(QERR_DEVICE_NOT_ACTIVE, "balloon");
2239 return -1;
2242 return 0;
2246 * do_balloon(): Request VM to change its memory allocation
2248 static int do_balloon(Monitor *mon, const QDict *params,
2249 MonitorCompletion cb, void *opaque)
2251 int ret;
2253 if (kvm_enabled() && !kvm_has_sync_mmu()) {
2254 qemu_error_new(QERR_KVM_MISSING_CAP, "synchronous MMU", "balloon");
2255 return -1;
2258 ret = qemu_balloon(qdict_get_int(params, "value"), cb, opaque);
2259 if (ret == 0) {
2260 qemu_error_new(QERR_DEVICE_NOT_ACTIVE, "balloon");
2261 return -1;
2264 return 0;
2267 static qemu_acl *find_acl(Monitor *mon, const char *name)
2269 qemu_acl *acl = qemu_acl_find(name);
2271 if (!acl) {
2272 monitor_printf(mon, "acl: unknown list '%s'\n", name);
2274 return acl;
2277 static void do_acl_show(Monitor *mon, const QDict *qdict)
2279 const char *aclname = qdict_get_str(qdict, "aclname");
2280 qemu_acl *acl = find_acl(mon, aclname);
2281 qemu_acl_entry *entry;
2282 int i = 0;
2284 if (acl) {
2285 monitor_printf(mon, "policy: %s\n",
2286 acl->defaultDeny ? "deny" : "allow");
2287 QTAILQ_FOREACH(entry, &acl->entries, next) {
2288 i++;
2289 monitor_printf(mon, "%d: %s %s\n", i,
2290 entry->deny ? "deny" : "allow", entry->match);
2295 static void do_acl_reset(Monitor *mon, const QDict *qdict)
2297 const char *aclname = qdict_get_str(qdict, "aclname");
2298 qemu_acl *acl = find_acl(mon, aclname);
2300 if (acl) {
2301 qemu_acl_reset(acl);
2302 monitor_printf(mon, "acl: removed all rules\n");
2306 static void do_acl_policy(Monitor *mon, const QDict *qdict)
2308 const char *aclname = qdict_get_str(qdict, "aclname");
2309 const char *policy = qdict_get_str(qdict, "policy");
2310 qemu_acl *acl = find_acl(mon, aclname);
2312 if (acl) {
2313 if (strcmp(policy, "allow") == 0) {
2314 acl->defaultDeny = 0;
2315 monitor_printf(mon, "acl: policy set to 'allow'\n");
2316 } else if (strcmp(policy, "deny") == 0) {
2317 acl->defaultDeny = 1;
2318 monitor_printf(mon, "acl: policy set to 'deny'\n");
2319 } else {
2320 monitor_printf(mon, "acl: unknown policy '%s', "
2321 "expected 'deny' or 'allow'\n", policy);
2326 static void do_acl_add(Monitor *mon, const QDict *qdict)
2328 const char *aclname = qdict_get_str(qdict, "aclname");
2329 const char *match = qdict_get_str(qdict, "match");
2330 const char *policy = qdict_get_str(qdict, "policy");
2331 int has_index = qdict_haskey(qdict, "index");
2332 int index = qdict_get_try_int(qdict, "index", -1);
2333 qemu_acl *acl = find_acl(mon, aclname);
2334 int deny, ret;
2336 if (acl) {
2337 if (strcmp(policy, "allow") == 0) {
2338 deny = 0;
2339 } else if (strcmp(policy, "deny") == 0) {
2340 deny = 1;
2341 } else {
2342 monitor_printf(mon, "acl: unknown policy '%s', "
2343 "expected 'deny' or 'allow'\n", policy);
2344 return;
2346 if (has_index)
2347 ret = qemu_acl_insert(acl, deny, match, index);
2348 else
2349 ret = qemu_acl_append(acl, deny, match);
2350 if (ret < 0)
2351 monitor_printf(mon, "acl: unable to add acl entry\n");
2352 else
2353 monitor_printf(mon, "acl: added rule at position %d\n", ret);
2357 static void do_acl_remove(Monitor *mon, const QDict *qdict)
2359 const char *aclname = qdict_get_str(qdict, "aclname");
2360 const char *match = qdict_get_str(qdict, "match");
2361 qemu_acl *acl = find_acl(mon, aclname);
2362 int ret;
2364 if (acl) {
2365 ret = qemu_acl_remove(acl, match);
2366 if (ret < 0)
2367 monitor_printf(mon, "acl: no matching acl entry\n");
2368 else
2369 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
2373 #if defined(TARGET_I386)
2374 static void do_inject_mce(Monitor *mon, const QDict *qdict)
2376 CPUState *cenv;
2377 int cpu_index = qdict_get_int(qdict, "cpu_index");
2378 int bank = qdict_get_int(qdict, "bank");
2379 uint64_t status = qdict_get_int(qdict, "status");
2380 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2381 uint64_t addr = qdict_get_int(qdict, "addr");
2382 uint64_t misc = qdict_get_int(qdict, "misc");
2384 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
2385 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
2386 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
2387 break;
2390 #endif
2392 static void do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2394 const char *fdname = qdict_get_str(qdict, "fdname");
2395 mon_fd_t *monfd;
2396 int fd;
2398 fd = qemu_chr_get_msgfd(mon->chr);
2399 if (fd == -1) {
2400 qemu_error_new(QERR_FD_NOT_SUPPLIED);
2401 return;
2404 if (qemu_isdigit(fdname[0])) {
2405 qemu_error_new(QERR_INVALID_PARAMETER, "fdname");
2406 return;
2409 fd = dup(fd);
2410 if (fd == -1) {
2411 if (errno == EMFILE)
2412 qemu_error_new(QERR_TOO_MANY_FILES);
2413 else
2414 qemu_error_new(QERR_UNDEFINED_ERROR);
2415 return;
2418 QLIST_FOREACH(monfd, &mon->fds, next) {
2419 if (strcmp(monfd->name, fdname) != 0) {
2420 continue;
2423 close(monfd->fd);
2424 monfd->fd = fd;
2425 return;
2428 monfd = qemu_mallocz(sizeof(mon_fd_t));
2429 monfd->name = qemu_strdup(fdname);
2430 monfd->fd = fd;
2432 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
2435 static void do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2437 const char *fdname = qdict_get_str(qdict, "fdname");
2438 mon_fd_t *monfd;
2440 QLIST_FOREACH(monfd, &mon->fds, next) {
2441 if (strcmp(monfd->name, fdname) != 0) {
2442 continue;
2445 QLIST_REMOVE(monfd, next);
2446 close(monfd->fd);
2447 qemu_free(monfd->name);
2448 qemu_free(monfd);
2449 return;
2452 qemu_error_new(QERR_FD_NOT_FOUND, fdname);
2455 static void do_loadvm(Monitor *mon, const QDict *qdict)
2457 int saved_vm_running = vm_running;
2458 const char *name = qdict_get_str(qdict, "name");
2460 vm_stop(0);
2462 if (load_vmstate(mon, name) >= 0 && saved_vm_running)
2463 vm_start();
2466 int monitor_get_fd(Monitor *mon, const char *fdname)
2468 mon_fd_t *monfd;
2470 QLIST_FOREACH(monfd, &mon->fds, next) {
2471 int fd;
2473 if (strcmp(monfd->name, fdname) != 0) {
2474 continue;
2477 fd = monfd->fd;
2479 /* caller takes ownership of fd */
2480 QLIST_REMOVE(monfd, next);
2481 qemu_free(monfd->name);
2482 qemu_free(monfd);
2484 return fd;
2487 return -1;
2490 static const mon_cmd_t mon_cmds[] = {
2491 #include "qemu-monitor.h"
2492 { NULL, NULL, },
2495 /* Please update qemu-monitor.hx when adding or changing commands */
2496 static const mon_cmd_t info_cmds[] = {
2498 .name = "version",
2499 .args_type = "",
2500 .params = "",
2501 .help = "show the version of QEMU",
2502 .user_print = do_info_version_print,
2503 .mhandler.info_new = do_info_version,
2506 .name = "commands",
2507 .args_type = "",
2508 .params = "",
2509 .help = "list QMP available commands",
2510 .user_print = monitor_user_noop,
2511 .mhandler.info_new = do_info_commands,
2514 .name = "network",
2515 .args_type = "",
2516 .params = "",
2517 .help = "show the network state",
2518 .mhandler.info = do_info_network,
2521 .name = "chardev",
2522 .args_type = "",
2523 .params = "",
2524 .help = "show the character devices",
2525 .user_print = qemu_chr_info_print,
2526 .mhandler.info_new = qemu_chr_info,
2529 .name = "block",
2530 .args_type = "",
2531 .params = "",
2532 .help = "show the block devices",
2533 .user_print = bdrv_info_print,
2534 .mhandler.info_new = bdrv_info,
2537 .name = "blockstats",
2538 .args_type = "",
2539 .params = "",
2540 .help = "show block device statistics",
2541 .user_print = bdrv_stats_print,
2542 .mhandler.info_new = bdrv_info_stats,
2545 .name = "registers",
2546 .args_type = "",
2547 .params = "",
2548 .help = "show the cpu registers",
2549 .mhandler.info = do_info_registers,
2552 .name = "cpus",
2553 .args_type = "",
2554 .params = "",
2555 .help = "show infos for each CPU",
2556 .user_print = monitor_print_cpus,
2557 .mhandler.info_new = do_info_cpus,
2560 .name = "history",
2561 .args_type = "",
2562 .params = "",
2563 .help = "show the command line history",
2564 .mhandler.info = do_info_history,
2567 .name = "irq",
2568 .args_type = "",
2569 .params = "",
2570 .help = "show the interrupts statistics (if available)",
2571 .mhandler.info = irq_info,
2574 .name = "pic",
2575 .args_type = "",
2576 .params = "",
2577 .help = "show i8259 (PIC) state",
2578 .mhandler.info = pic_info,
2581 .name = "pci",
2582 .args_type = "",
2583 .params = "",
2584 .help = "show PCI info",
2585 .user_print = do_pci_info_print,
2586 .mhandler.info_new = do_pci_info,
2588 #if defined(TARGET_I386) || defined(TARGET_SH4)
2590 .name = "tlb",
2591 .args_type = "",
2592 .params = "",
2593 .help = "show virtual to physical memory mappings",
2594 .mhandler.info = tlb_info,
2596 #endif
2597 #if defined(TARGET_I386)
2599 .name = "mem",
2600 .args_type = "",
2601 .params = "",
2602 .help = "show the active virtual memory mappings",
2603 .mhandler.info = mem_info,
2606 .name = "hpet",
2607 .args_type = "",
2608 .params = "",
2609 .help = "show state of HPET",
2610 .user_print = do_info_hpet_print,
2611 .mhandler.info_new = do_info_hpet,
2613 #endif
2615 .name = "jit",
2616 .args_type = "",
2617 .params = "",
2618 .help = "show dynamic compiler info",
2619 .mhandler.info = do_info_jit,
2622 .name = "kvm",
2623 .args_type = "",
2624 .params = "",
2625 .help = "show KVM information",
2626 .user_print = do_info_kvm_print,
2627 .mhandler.info_new = do_info_kvm,
2630 .name = "numa",
2631 .args_type = "",
2632 .params = "",
2633 .help = "show NUMA information",
2634 .mhandler.info = do_info_numa,
2637 .name = "usb",
2638 .args_type = "",
2639 .params = "",
2640 .help = "show guest USB devices",
2641 .mhandler.info = usb_info,
2644 .name = "usbhost",
2645 .args_type = "",
2646 .params = "",
2647 .help = "show host USB devices",
2648 .mhandler.info = usb_host_info,
2651 .name = "profile",
2652 .args_type = "",
2653 .params = "",
2654 .help = "show profiling information",
2655 .mhandler.info = do_info_profile,
2658 .name = "capture",
2659 .args_type = "",
2660 .params = "",
2661 .help = "show capture information",
2662 .mhandler.info = do_info_capture,
2665 .name = "snapshots",
2666 .args_type = "",
2667 .params = "",
2668 .help = "show the currently saved VM snapshots",
2669 .mhandler.info = do_info_snapshots,
2672 .name = "status",
2673 .args_type = "",
2674 .params = "",
2675 .help = "show the current VM status (running|paused)",
2676 .user_print = do_info_status_print,
2677 .mhandler.info_new = do_info_status,
2680 .name = "pcmcia",
2681 .args_type = "",
2682 .params = "",
2683 .help = "show guest PCMCIA status",
2684 .mhandler.info = pcmcia_info,
2687 .name = "mice",
2688 .args_type = "",
2689 .params = "",
2690 .help = "show which guest mouse is receiving events",
2691 .user_print = do_info_mice_print,
2692 .mhandler.info_new = do_info_mice,
2695 .name = "vnc",
2696 .args_type = "",
2697 .params = "",
2698 .help = "show the vnc server status",
2699 .user_print = do_info_vnc_print,
2700 .mhandler.info_new = do_info_vnc,
2703 .name = "name",
2704 .args_type = "",
2705 .params = "",
2706 .help = "show the current VM name",
2707 .user_print = do_info_name_print,
2708 .mhandler.info_new = do_info_name,
2711 .name = "uuid",
2712 .args_type = "",
2713 .params = "",
2714 .help = "show the current VM UUID",
2715 .user_print = do_info_uuid_print,
2716 .mhandler.info_new = do_info_uuid,
2718 #if defined(TARGET_PPC)
2720 .name = "cpustats",
2721 .args_type = "",
2722 .params = "",
2723 .help = "show CPU statistics",
2724 .mhandler.info = do_info_cpu_stats,
2726 #endif
2727 #if defined(CONFIG_SLIRP)
2729 .name = "usernet",
2730 .args_type = "",
2731 .params = "",
2732 .help = "show user network stack connection states",
2733 .mhandler.info = do_info_usernet,
2735 #endif
2737 .name = "migrate",
2738 .args_type = "",
2739 .params = "",
2740 .help = "show migration status",
2741 .user_print = do_info_migrate_print,
2742 .mhandler.info_new = do_info_migrate,
2745 .name = "balloon",
2746 .args_type = "",
2747 .params = "",
2748 .help = "show balloon information",
2749 .user_print = monitor_print_balloon,
2750 .mhandler.info_async = do_info_balloon,
2751 .async = 1,
2754 .name = "qtree",
2755 .args_type = "",
2756 .params = "",
2757 .help = "show device tree",
2758 .mhandler.info = do_info_qtree,
2761 .name = "qdm",
2762 .args_type = "",
2763 .params = "",
2764 .help = "show qdev device model list",
2765 .mhandler.info = do_info_qdm,
2768 .name = "roms",
2769 .args_type = "",
2770 .params = "",
2771 .help = "show roms",
2772 .mhandler.info = do_info_roms,
2775 .name = NULL,
2779 /*******************************************************************/
2781 static const char *pch;
2782 static jmp_buf expr_env;
2784 #define MD_TLONG 0
2785 #define MD_I32 1
2787 typedef struct MonitorDef {
2788 const char *name;
2789 int offset;
2790 target_long (*get_value)(const struct MonitorDef *md, int val);
2791 int type;
2792 } MonitorDef;
2794 #if defined(TARGET_I386)
2795 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
2797 CPUState *env = mon_get_cpu();
2798 return env->eip + env->segs[R_CS].base;
2800 #endif
2802 #if defined(TARGET_PPC)
2803 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
2805 CPUState *env = mon_get_cpu();
2806 unsigned int u;
2807 int i;
2809 u = 0;
2810 for (i = 0; i < 8; i++)
2811 u |= env->crf[i] << (32 - (4 * i));
2813 return u;
2816 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
2818 CPUState *env = mon_get_cpu();
2819 return env->msr;
2822 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
2824 CPUState *env = mon_get_cpu();
2825 return env->xer;
2828 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
2830 CPUState *env = mon_get_cpu();
2831 return cpu_ppc_load_decr(env);
2834 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
2836 CPUState *env = mon_get_cpu();
2837 return cpu_ppc_load_tbu(env);
2840 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
2842 CPUState *env = mon_get_cpu();
2843 return cpu_ppc_load_tbl(env);
2845 #endif
2847 #if defined(TARGET_SPARC)
2848 #ifndef TARGET_SPARC64
2849 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
2851 CPUState *env = mon_get_cpu();
2852 return GET_PSR(env);
2854 #endif
2856 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
2858 CPUState *env = mon_get_cpu();
2859 return env->regwptr[val];
2861 #endif
2863 static const MonitorDef monitor_defs[] = {
2864 #ifdef TARGET_I386
2866 #define SEG(name, seg) \
2867 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
2868 { name ".base", offsetof(CPUState, segs[seg].base) },\
2869 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
2871 { "eax", offsetof(CPUState, regs[0]) },
2872 { "ecx", offsetof(CPUState, regs[1]) },
2873 { "edx", offsetof(CPUState, regs[2]) },
2874 { "ebx", offsetof(CPUState, regs[3]) },
2875 { "esp|sp", offsetof(CPUState, regs[4]) },
2876 { "ebp|fp", offsetof(CPUState, regs[5]) },
2877 { "esi", offsetof(CPUState, regs[6]) },
2878 { "edi", offsetof(CPUState, regs[7]) },
2879 #ifdef TARGET_X86_64
2880 { "r8", offsetof(CPUState, regs[8]) },
2881 { "r9", offsetof(CPUState, regs[9]) },
2882 { "r10", offsetof(CPUState, regs[10]) },
2883 { "r11", offsetof(CPUState, regs[11]) },
2884 { "r12", offsetof(CPUState, regs[12]) },
2885 { "r13", offsetof(CPUState, regs[13]) },
2886 { "r14", offsetof(CPUState, regs[14]) },
2887 { "r15", offsetof(CPUState, regs[15]) },
2888 #endif
2889 { "eflags", offsetof(CPUState, eflags) },
2890 { "eip", offsetof(CPUState, eip) },
2891 SEG("cs", R_CS)
2892 SEG("ds", R_DS)
2893 SEG("es", R_ES)
2894 SEG("ss", R_SS)
2895 SEG("fs", R_FS)
2896 SEG("gs", R_GS)
2897 { "pc", 0, monitor_get_pc, },
2898 #elif defined(TARGET_PPC)
2899 /* General purpose registers */
2900 { "r0", offsetof(CPUState, gpr[0]) },
2901 { "r1", offsetof(CPUState, gpr[1]) },
2902 { "r2", offsetof(CPUState, gpr[2]) },
2903 { "r3", offsetof(CPUState, gpr[3]) },
2904 { "r4", offsetof(CPUState, gpr[4]) },
2905 { "r5", offsetof(CPUState, gpr[5]) },
2906 { "r6", offsetof(CPUState, gpr[6]) },
2907 { "r7", offsetof(CPUState, gpr[7]) },
2908 { "r8", offsetof(CPUState, gpr[8]) },
2909 { "r9", offsetof(CPUState, gpr[9]) },
2910 { "r10", offsetof(CPUState, gpr[10]) },
2911 { "r11", offsetof(CPUState, gpr[11]) },
2912 { "r12", offsetof(CPUState, gpr[12]) },
2913 { "r13", offsetof(CPUState, gpr[13]) },
2914 { "r14", offsetof(CPUState, gpr[14]) },
2915 { "r15", offsetof(CPUState, gpr[15]) },
2916 { "r16", offsetof(CPUState, gpr[16]) },
2917 { "r17", offsetof(CPUState, gpr[17]) },
2918 { "r18", offsetof(CPUState, gpr[18]) },
2919 { "r19", offsetof(CPUState, gpr[19]) },
2920 { "r20", offsetof(CPUState, gpr[20]) },
2921 { "r21", offsetof(CPUState, gpr[21]) },
2922 { "r22", offsetof(CPUState, gpr[22]) },
2923 { "r23", offsetof(CPUState, gpr[23]) },
2924 { "r24", offsetof(CPUState, gpr[24]) },
2925 { "r25", offsetof(CPUState, gpr[25]) },
2926 { "r26", offsetof(CPUState, gpr[26]) },
2927 { "r27", offsetof(CPUState, gpr[27]) },
2928 { "r28", offsetof(CPUState, gpr[28]) },
2929 { "r29", offsetof(CPUState, gpr[29]) },
2930 { "r30", offsetof(CPUState, gpr[30]) },
2931 { "r31", offsetof(CPUState, gpr[31]) },
2932 /* Floating point registers */
2933 { "f0", offsetof(CPUState, fpr[0]) },
2934 { "f1", offsetof(CPUState, fpr[1]) },
2935 { "f2", offsetof(CPUState, fpr[2]) },
2936 { "f3", offsetof(CPUState, fpr[3]) },
2937 { "f4", offsetof(CPUState, fpr[4]) },
2938 { "f5", offsetof(CPUState, fpr[5]) },
2939 { "f6", offsetof(CPUState, fpr[6]) },
2940 { "f7", offsetof(CPUState, fpr[7]) },
2941 { "f8", offsetof(CPUState, fpr[8]) },
2942 { "f9", offsetof(CPUState, fpr[9]) },
2943 { "f10", offsetof(CPUState, fpr[10]) },
2944 { "f11", offsetof(CPUState, fpr[11]) },
2945 { "f12", offsetof(CPUState, fpr[12]) },
2946 { "f13", offsetof(CPUState, fpr[13]) },
2947 { "f14", offsetof(CPUState, fpr[14]) },
2948 { "f15", offsetof(CPUState, fpr[15]) },
2949 { "f16", offsetof(CPUState, fpr[16]) },
2950 { "f17", offsetof(CPUState, fpr[17]) },
2951 { "f18", offsetof(CPUState, fpr[18]) },
2952 { "f19", offsetof(CPUState, fpr[19]) },
2953 { "f20", offsetof(CPUState, fpr[20]) },
2954 { "f21", offsetof(CPUState, fpr[21]) },
2955 { "f22", offsetof(CPUState, fpr[22]) },
2956 { "f23", offsetof(CPUState, fpr[23]) },
2957 { "f24", offsetof(CPUState, fpr[24]) },
2958 { "f25", offsetof(CPUState, fpr[25]) },
2959 { "f26", offsetof(CPUState, fpr[26]) },
2960 { "f27", offsetof(CPUState, fpr[27]) },
2961 { "f28", offsetof(CPUState, fpr[28]) },
2962 { "f29", offsetof(CPUState, fpr[29]) },
2963 { "f30", offsetof(CPUState, fpr[30]) },
2964 { "f31", offsetof(CPUState, fpr[31]) },
2965 { "fpscr", offsetof(CPUState, fpscr) },
2966 /* Next instruction pointer */
2967 { "nip|pc", offsetof(CPUState, nip) },
2968 { "lr", offsetof(CPUState, lr) },
2969 { "ctr", offsetof(CPUState, ctr) },
2970 { "decr", 0, &monitor_get_decr, },
2971 { "ccr", 0, &monitor_get_ccr, },
2972 /* Machine state register */
2973 { "msr", 0, &monitor_get_msr, },
2974 { "xer", 0, &monitor_get_xer, },
2975 { "tbu", 0, &monitor_get_tbu, },
2976 { "tbl", 0, &monitor_get_tbl, },
2977 #if defined(TARGET_PPC64)
2978 /* Address space register */
2979 { "asr", offsetof(CPUState, asr) },
2980 #endif
2981 /* Segment registers */
2982 { "sdr1", offsetof(CPUState, sdr1) },
2983 { "sr0", offsetof(CPUState, sr[0]) },
2984 { "sr1", offsetof(CPUState, sr[1]) },
2985 { "sr2", offsetof(CPUState, sr[2]) },
2986 { "sr3", offsetof(CPUState, sr[3]) },
2987 { "sr4", offsetof(CPUState, sr[4]) },
2988 { "sr5", offsetof(CPUState, sr[5]) },
2989 { "sr6", offsetof(CPUState, sr[6]) },
2990 { "sr7", offsetof(CPUState, sr[7]) },
2991 { "sr8", offsetof(CPUState, sr[8]) },
2992 { "sr9", offsetof(CPUState, sr[9]) },
2993 { "sr10", offsetof(CPUState, sr[10]) },
2994 { "sr11", offsetof(CPUState, sr[11]) },
2995 { "sr12", offsetof(CPUState, sr[12]) },
2996 { "sr13", offsetof(CPUState, sr[13]) },
2997 { "sr14", offsetof(CPUState, sr[14]) },
2998 { "sr15", offsetof(CPUState, sr[15]) },
2999 /* Too lazy to put BATs and SPRs ... */
3000 #elif defined(TARGET_SPARC)
3001 { "g0", offsetof(CPUState, gregs[0]) },
3002 { "g1", offsetof(CPUState, gregs[1]) },
3003 { "g2", offsetof(CPUState, gregs[2]) },
3004 { "g3", offsetof(CPUState, gregs[3]) },
3005 { "g4", offsetof(CPUState, gregs[4]) },
3006 { "g5", offsetof(CPUState, gregs[5]) },
3007 { "g6", offsetof(CPUState, gregs[6]) },
3008 { "g7", offsetof(CPUState, gregs[7]) },
3009 { "o0", 0, monitor_get_reg },
3010 { "o1", 1, monitor_get_reg },
3011 { "o2", 2, monitor_get_reg },
3012 { "o3", 3, monitor_get_reg },
3013 { "o4", 4, monitor_get_reg },
3014 { "o5", 5, monitor_get_reg },
3015 { "o6", 6, monitor_get_reg },
3016 { "o7", 7, monitor_get_reg },
3017 { "l0", 8, monitor_get_reg },
3018 { "l1", 9, monitor_get_reg },
3019 { "l2", 10, monitor_get_reg },
3020 { "l3", 11, monitor_get_reg },
3021 { "l4", 12, monitor_get_reg },
3022 { "l5", 13, monitor_get_reg },
3023 { "l6", 14, monitor_get_reg },
3024 { "l7", 15, monitor_get_reg },
3025 { "i0", 16, monitor_get_reg },
3026 { "i1", 17, monitor_get_reg },
3027 { "i2", 18, monitor_get_reg },
3028 { "i3", 19, monitor_get_reg },
3029 { "i4", 20, monitor_get_reg },
3030 { "i5", 21, monitor_get_reg },
3031 { "i6", 22, monitor_get_reg },
3032 { "i7", 23, monitor_get_reg },
3033 { "pc", offsetof(CPUState, pc) },
3034 { "npc", offsetof(CPUState, npc) },
3035 { "y", offsetof(CPUState, y) },
3036 #ifndef TARGET_SPARC64
3037 { "psr", 0, &monitor_get_psr, },
3038 { "wim", offsetof(CPUState, wim) },
3039 #endif
3040 { "tbr", offsetof(CPUState, tbr) },
3041 { "fsr", offsetof(CPUState, fsr) },
3042 { "f0", offsetof(CPUState, fpr[0]) },
3043 { "f1", offsetof(CPUState, fpr[1]) },
3044 { "f2", offsetof(CPUState, fpr[2]) },
3045 { "f3", offsetof(CPUState, fpr[3]) },
3046 { "f4", offsetof(CPUState, fpr[4]) },
3047 { "f5", offsetof(CPUState, fpr[5]) },
3048 { "f6", offsetof(CPUState, fpr[6]) },
3049 { "f7", offsetof(CPUState, fpr[7]) },
3050 { "f8", offsetof(CPUState, fpr[8]) },
3051 { "f9", offsetof(CPUState, fpr[9]) },
3052 { "f10", offsetof(CPUState, fpr[10]) },
3053 { "f11", offsetof(CPUState, fpr[11]) },
3054 { "f12", offsetof(CPUState, fpr[12]) },
3055 { "f13", offsetof(CPUState, fpr[13]) },
3056 { "f14", offsetof(CPUState, fpr[14]) },
3057 { "f15", offsetof(CPUState, fpr[15]) },
3058 { "f16", offsetof(CPUState, fpr[16]) },
3059 { "f17", offsetof(CPUState, fpr[17]) },
3060 { "f18", offsetof(CPUState, fpr[18]) },
3061 { "f19", offsetof(CPUState, fpr[19]) },
3062 { "f20", offsetof(CPUState, fpr[20]) },
3063 { "f21", offsetof(CPUState, fpr[21]) },
3064 { "f22", offsetof(CPUState, fpr[22]) },
3065 { "f23", offsetof(CPUState, fpr[23]) },
3066 { "f24", offsetof(CPUState, fpr[24]) },
3067 { "f25", offsetof(CPUState, fpr[25]) },
3068 { "f26", offsetof(CPUState, fpr[26]) },
3069 { "f27", offsetof(CPUState, fpr[27]) },
3070 { "f28", offsetof(CPUState, fpr[28]) },
3071 { "f29", offsetof(CPUState, fpr[29]) },
3072 { "f30", offsetof(CPUState, fpr[30]) },
3073 { "f31", offsetof(CPUState, fpr[31]) },
3074 #ifdef TARGET_SPARC64
3075 { "f32", offsetof(CPUState, fpr[32]) },
3076 { "f34", offsetof(CPUState, fpr[34]) },
3077 { "f36", offsetof(CPUState, fpr[36]) },
3078 { "f38", offsetof(CPUState, fpr[38]) },
3079 { "f40", offsetof(CPUState, fpr[40]) },
3080 { "f42", offsetof(CPUState, fpr[42]) },
3081 { "f44", offsetof(CPUState, fpr[44]) },
3082 { "f46", offsetof(CPUState, fpr[46]) },
3083 { "f48", offsetof(CPUState, fpr[48]) },
3084 { "f50", offsetof(CPUState, fpr[50]) },
3085 { "f52", offsetof(CPUState, fpr[52]) },
3086 { "f54", offsetof(CPUState, fpr[54]) },
3087 { "f56", offsetof(CPUState, fpr[56]) },
3088 { "f58", offsetof(CPUState, fpr[58]) },
3089 { "f60", offsetof(CPUState, fpr[60]) },
3090 { "f62", offsetof(CPUState, fpr[62]) },
3091 { "asi", offsetof(CPUState, asi) },
3092 { "pstate", offsetof(CPUState, pstate) },
3093 { "cansave", offsetof(CPUState, cansave) },
3094 { "canrestore", offsetof(CPUState, canrestore) },
3095 { "otherwin", offsetof(CPUState, otherwin) },
3096 { "wstate", offsetof(CPUState, wstate) },
3097 { "cleanwin", offsetof(CPUState, cleanwin) },
3098 { "fprs", offsetof(CPUState, fprs) },
3099 #endif
3100 #endif
3101 { NULL },
3104 static void expr_error(Monitor *mon, const char *msg)
3106 monitor_printf(mon, "%s\n", msg);
3107 longjmp(expr_env, 1);
3110 /* return 0 if OK, -1 if not found */
3111 static int get_monitor_def(target_long *pval, const char *name)
3113 const MonitorDef *md;
3114 void *ptr;
3116 for(md = monitor_defs; md->name != NULL; md++) {
3117 if (compare_cmd(name, md->name)) {
3118 if (md->get_value) {
3119 *pval = md->get_value(md, md->offset);
3120 } else {
3121 CPUState *env = mon_get_cpu();
3122 ptr = (uint8_t *)env + md->offset;
3123 switch(md->type) {
3124 case MD_I32:
3125 *pval = *(int32_t *)ptr;
3126 break;
3127 case MD_TLONG:
3128 *pval = *(target_long *)ptr;
3129 break;
3130 default:
3131 *pval = 0;
3132 break;
3135 return 0;
3138 return -1;
3141 static void next(void)
3143 if (*pch != '\0') {
3144 pch++;
3145 while (qemu_isspace(*pch))
3146 pch++;
3150 static int64_t expr_sum(Monitor *mon);
3152 static int64_t expr_unary(Monitor *mon)
3154 int64_t n;
3155 char *p;
3156 int ret;
3158 switch(*pch) {
3159 case '+':
3160 next();
3161 n = expr_unary(mon);
3162 break;
3163 case '-':
3164 next();
3165 n = -expr_unary(mon);
3166 break;
3167 case '~':
3168 next();
3169 n = ~expr_unary(mon);
3170 break;
3171 case '(':
3172 next();
3173 n = expr_sum(mon);
3174 if (*pch != ')') {
3175 expr_error(mon, "')' expected");
3177 next();
3178 break;
3179 case '\'':
3180 pch++;
3181 if (*pch == '\0')
3182 expr_error(mon, "character constant expected");
3183 n = *pch;
3184 pch++;
3185 if (*pch != '\'')
3186 expr_error(mon, "missing terminating \' character");
3187 next();
3188 break;
3189 case '$':
3191 char buf[128], *q;
3192 target_long reg=0;
3194 pch++;
3195 q = buf;
3196 while ((*pch >= 'a' && *pch <= 'z') ||
3197 (*pch >= 'A' && *pch <= 'Z') ||
3198 (*pch >= '0' && *pch <= '9') ||
3199 *pch == '_' || *pch == '.') {
3200 if ((q - buf) < sizeof(buf) - 1)
3201 *q++ = *pch;
3202 pch++;
3204 while (qemu_isspace(*pch))
3205 pch++;
3206 *q = 0;
3207 ret = get_monitor_def(&reg, buf);
3208 if (ret < 0)
3209 expr_error(mon, "unknown register");
3210 n = reg;
3212 break;
3213 case '\0':
3214 expr_error(mon, "unexpected end of expression");
3215 n = 0;
3216 break;
3217 default:
3218 #if TARGET_PHYS_ADDR_BITS > 32
3219 n = strtoull(pch, &p, 0);
3220 #else
3221 n = strtoul(pch, &p, 0);
3222 #endif
3223 if (pch == p) {
3224 expr_error(mon, "invalid char in expression");
3226 pch = p;
3227 while (qemu_isspace(*pch))
3228 pch++;
3229 break;
3231 return n;
3235 static int64_t expr_prod(Monitor *mon)
3237 int64_t val, val2;
3238 int op;
3240 val = expr_unary(mon);
3241 for(;;) {
3242 op = *pch;
3243 if (op != '*' && op != '/' && op != '%')
3244 break;
3245 next();
3246 val2 = expr_unary(mon);
3247 switch(op) {
3248 default:
3249 case '*':
3250 val *= val2;
3251 break;
3252 case '/':
3253 case '%':
3254 if (val2 == 0)
3255 expr_error(mon, "division by zero");
3256 if (op == '/')
3257 val /= val2;
3258 else
3259 val %= val2;
3260 break;
3263 return val;
3266 static int64_t expr_logic(Monitor *mon)
3268 int64_t val, val2;
3269 int op;
3271 val = expr_prod(mon);
3272 for(;;) {
3273 op = *pch;
3274 if (op != '&' && op != '|' && op != '^')
3275 break;
3276 next();
3277 val2 = expr_prod(mon);
3278 switch(op) {
3279 default:
3280 case '&':
3281 val &= val2;
3282 break;
3283 case '|':
3284 val |= val2;
3285 break;
3286 case '^':
3287 val ^= val2;
3288 break;
3291 return val;
3294 static int64_t expr_sum(Monitor *mon)
3296 int64_t val, val2;
3297 int op;
3299 val = expr_logic(mon);
3300 for(;;) {
3301 op = *pch;
3302 if (op != '+' && op != '-')
3303 break;
3304 next();
3305 val2 = expr_logic(mon);
3306 if (op == '+')
3307 val += val2;
3308 else
3309 val -= val2;
3311 return val;
3314 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
3316 pch = *pp;
3317 if (setjmp(expr_env)) {
3318 *pp = pch;
3319 return -1;
3321 while (qemu_isspace(*pch))
3322 pch++;
3323 *pval = expr_sum(mon);
3324 *pp = pch;
3325 return 0;
3328 static int get_double(Monitor *mon, double *pval, const char **pp)
3330 const char *p = *pp;
3331 char *tailp;
3332 double d;
3334 d = strtod(p, &tailp);
3335 if (tailp == p) {
3336 monitor_printf(mon, "Number expected\n");
3337 return -1;
3339 if (d != d || d - d != 0) {
3340 /* NaN or infinity */
3341 monitor_printf(mon, "Bad number\n");
3342 return -1;
3344 *pval = d;
3345 *pp = tailp;
3346 return 0;
3349 static int get_str(char *buf, int buf_size, const char **pp)
3351 const char *p;
3352 char *q;
3353 int c;
3355 q = buf;
3356 p = *pp;
3357 while (qemu_isspace(*p))
3358 p++;
3359 if (*p == '\0') {
3360 fail:
3361 *q = '\0';
3362 *pp = p;
3363 return -1;
3365 if (*p == '\"') {
3366 p++;
3367 while (*p != '\0' && *p != '\"') {
3368 if (*p == '\\') {
3369 p++;
3370 c = *p++;
3371 switch(c) {
3372 case 'n':
3373 c = '\n';
3374 break;
3375 case 'r':
3376 c = '\r';
3377 break;
3378 case '\\':
3379 case '\'':
3380 case '\"':
3381 break;
3382 default:
3383 qemu_printf("unsupported escape code: '\\%c'\n", c);
3384 goto fail;
3386 if ((q - buf) < buf_size - 1) {
3387 *q++ = c;
3389 } else {
3390 if ((q - buf) < buf_size - 1) {
3391 *q++ = *p;
3393 p++;
3396 if (*p != '\"') {
3397 qemu_printf("unterminated string\n");
3398 goto fail;
3400 p++;
3401 } else {
3402 while (*p != '\0' && !qemu_isspace(*p)) {
3403 if ((q - buf) < buf_size - 1) {
3404 *q++ = *p;
3406 p++;
3409 *q = '\0';
3410 *pp = p;
3411 return 0;
3415 * Store the command-name in cmdname, and return a pointer to
3416 * the remaining of the command string.
3418 static const char *get_command_name(const char *cmdline,
3419 char *cmdname, size_t nlen)
3421 size_t len;
3422 const char *p, *pstart;
3424 p = cmdline;
3425 while (qemu_isspace(*p))
3426 p++;
3427 if (*p == '\0')
3428 return NULL;
3429 pstart = p;
3430 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3431 p++;
3432 len = p - pstart;
3433 if (len > nlen - 1)
3434 len = nlen - 1;
3435 memcpy(cmdname, pstart, len);
3436 cmdname[len] = '\0';
3437 return p;
3441 * Read key of 'type' into 'key' and return the current
3442 * 'type' pointer.
3444 static char *key_get_info(const char *type, char **key)
3446 size_t len;
3447 char *p, *str;
3449 if (*type == ',')
3450 type++;
3452 p = strchr(type, ':');
3453 if (!p) {
3454 *key = NULL;
3455 return NULL;
3457 len = p - type;
3459 str = qemu_malloc(len + 1);
3460 memcpy(str, type, len);
3461 str[len] = '\0';
3463 *key = str;
3464 return ++p;
3467 static int default_fmt_format = 'x';
3468 static int default_fmt_size = 4;
3470 #define MAX_ARGS 16
3472 static int is_valid_option(const char *c, const char *typestr)
3474 char option[3];
3476 option[0] = '-';
3477 option[1] = *c;
3478 option[2] = '\0';
3480 typestr = strstr(typestr, option);
3481 return (typestr != NULL);
3484 static const mon_cmd_t *monitor_find_command(const char *cmdname)
3486 const mon_cmd_t *cmd;
3488 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
3489 if (compare_cmd(cmdname, cmd->name)) {
3490 return cmd;
3494 return NULL;
3497 static const mon_cmd_t *monitor_parse_command(Monitor *mon,
3498 const char *cmdline,
3499 QDict *qdict)
3501 const char *p, *typestr;
3502 int c;
3503 const mon_cmd_t *cmd;
3504 char cmdname[256];
3505 char buf[1024];
3506 char *key;
3508 #ifdef DEBUG
3509 monitor_printf(mon, "command='%s'\n", cmdline);
3510 #endif
3512 /* extract the command name */
3513 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3514 if (!p)
3515 return NULL;
3517 cmd = monitor_find_command(cmdname);
3518 if (!cmd) {
3519 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
3520 return NULL;
3523 /* parse the parameters */
3524 typestr = cmd->args_type;
3525 for(;;) {
3526 typestr = key_get_info(typestr, &key);
3527 if (!typestr)
3528 break;
3529 c = *typestr;
3530 typestr++;
3531 switch(c) {
3532 case 'F':
3533 case 'B':
3534 case 's':
3536 int ret;
3538 while (qemu_isspace(*p))
3539 p++;
3540 if (*typestr == '?') {
3541 typestr++;
3542 if (*p == '\0') {
3543 /* no optional string: NULL argument */
3544 break;
3547 ret = get_str(buf, sizeof(buf), &p);
3548 if (ret < 0) {
3549 switch(c) {
3550 case 'F':
3551 monitor_printf(mon, "%s: filename expected\n",
3552 cmdname);
3553 break;
3554 case 'B':
3555 monitor_printf(mon, "%s: block device name expected\n",
3556 cmdname);
3557 break;
3558 default:
3559 monitor_printf(mon, "%s: string expected\n", cmdname);
3560 break;
3562 goto fail;
3564 qdict_put(qdict, key, qstring_from_str(buf));
3566 break;
3567 case '/':
3569 int count, format, size;
3571 while (qemu_isspace(*p))
3572 p++;
3573 if (*p == '/') {
3574 /* format found */
3575 p++;
3576 count = 1;
3577 if (qemu_isdigit(*p)) {
3578 count = 0;
3579 while (qemu_isdigit(*p)) {
3580 count = count * 10 + (*p - '0');
3581 p++;
3584 size = -1;
3585 format = -1;
3586 for(;;) {
3587 switch(*p) {
3588 case 'o':
3589 case 'd':
3590 case 'u':
3591 case 'x':
3592 case 'i':
3593 case 'c':
3594 format = *p++;
3595 break;
3596 case 'b':
3597 size = 1;
3598 p++;
3599 break;
3600 case 'h':
3601 size = 2;
3602 p++;
3603 break;
3604 case 'w':
3605 size = 4;
3606 p++;
3607 break;
3608 case 'g':
3609 case 'L':
3610 size = 8;
3611 p++;
3612 break;
3613 default:
3614 goto next;
3617 next:
3618 if (*p != '\0' && !qemu_isspace(*p)) {
3619 monitor_printf(mon, "invalid char in format: '%c'\n",
3620 *p);
3621 goto fail;
3623 if (format < 0)
3624 format = default_fmt_format;
3625 if (format != 'i') {
3626 /* for 'i', not specifying a size gives -1 as size */
3627 if (size < 0)
3628 size = default_fmt_size;
3629 default_fmt_size = size;
3631 default_fmt_format = format;
3632 } else {
3633 count = 1;
3634 format = default_fmt_format;
3635 if (format != 'i') {
3636 size = default_fmt_size;
3637 } else {
3638 size = -1;
3641 qdict_put(qdict, "count", qint_from_int(count));
3642 qdict_put(qdict, "format", qint_from_int(format));
3643 qdict_put(qdict, "size", qint_from_int(size));
3645 break;
3646 case 'i':
3647 case 'l':
3648 case 'M':
3650 int64_t val;
3652 while (qemu_isspace(*p))
3653 p++;
3654 if (*typestr == '?' || *typestr == '.') {
3655 if (*typestr == '?') {
3656 if (*p == '\0') {
3657 typestr++;
3658 break;
3660 } else {
3661 if (*p == '.') {
3662 p++;
3663 while (qemu_isspace(*p))
3664 p++;
3665 } else {
3666 typestr++;
3667 break;
3670 typestr++;
3672 if (get_expr(mon, &val, &p))
3673 goto fail;
3674 /* Check if 'i' is greater than 32-bit */
3675 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3676 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3677 monitor_printf(mon, "integer is for 32-bit values\n");
3678 goto fail;
3679 } else if (c == 'M') {
3680 val <<= 20;
3682 qdict_put(qdict, key, qint_from_int(val));
3684 break;
3685 case 'b':
3686 case 'T':
3688 double val;
3690 while (qemu_isspace(*p))
3691 p++;
3692 if (*typestr == '?') {
3693 typestr++;
3694 if (*p == '\0') {
3695 break;
3698 if (get_double(mon, &val, &p) < 0) {
3699 goto fail;
3701 if (c == 'b' && *p) {
3702 switch (*p) {
3703 case 'K': case 'k':
3704 val *= 1 << 10; p++; break;
3705 case 'M': case 'm':
3706 val *= 1 << 20; p++; break;
3707 case 'G': case 'g':
3708 val *= 1 << 30; p++; break;
3711 if (c == 'T' && p[0] && p[1] == 's') {
3712 switch (*p) {
3713 case 'm':
3714 val /= 1e3; p += 2; break;
3715 case 'u':
3716 val /= 1e6; p += 2; break;
3717 case 'n':
3718 val /= 1e9; p += 2; break;
3721 if (*p && !qemu_isspace(*p)) {
3722 monitor_printf(mon, "Unknown unit suffix\n");
3723 goto fail;
3725 qdict_put(qdict, key, qfloat_from_double(val));
3727 break;
3728 case '-':
3730 const char *tmp = p;
3731 int has_option, skip_key = 0;
3732 /* option */
3734 c = *typestr++;
3735 if (c == '\0')
3736 goto bad_type;
3737 while (qemu_isspace(*p))
3738 p++;
3739 has_option = 0;
3740 if (*p == '-') {
3741 p++;
3742 if(c != *p) {
3743 if(!is_valid_option(p, typestr)) {
3745 monitor_printf(mon, "%s: unsupported option -%c\n",
3746 cmdname, *p);
3747 goto fail;
3748 } else {
3749 skip_key = 1;
3752 if(skip_key) {
3753 p = tmp;
3754 } else {
3755 p++;
3756 has_option = 1;
3759 qdict_put(qdict, key, qint_from_int(has_option));
3761 break;
3762 default:
3763 bad_type:
3764 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
3765 goto fail;
3767 qemu_free(key);
3768 key = NULL;
3770 /* check that all arguments were parsed */
3771 while (qemu_isspace(*p))
3772 p++;
3773 if (*p != '\0') {
3774 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3775 cmdname);
3776 goto fail;
3779 return cmd;
3781 fail:
3782 qemu_free(key);
3783 return NULL;
3786 static void monitor_print_error(Monitor *mon)
3788 qerror_print(mon->error);
3789 QDECREF(mon->error);
3790 mon->error = NULL;
3793 static int is_async_return(const QObject *data)
3795 if (data && qobject_type(data) == QTYPE_QDICT) {
3796 return qdict_haskey(qobject_to_qdict(data), "__mon_async");
3799 return 0;
3802 static void monitor_call_handler(Monitor *mon, const mon_cmd_t *cmd,
3803 const QDict *params)
3805 QObject *data = NULL;
3807 cmd->mhandler.cmd_new(mon, params, &data);
3809 if (is_async_return(data)) {
3811 * Asynchronous commands have no initial return data but they can
3812 * generate errors. Data is returned via the async completion handler.
3814 if (monitor_ctrl_mode(mon) && monitor_has_error(mon)) {
3815 monitor_protocol_emitter(mon, NULL);
3817 } else if (monitor_ctrl_mode(mon)) {
3818 /* Monitor Protocol */
3819 monitor_protocol_emitter(mon, data);
3820 } else {
3821 /* User Protocol */
3822 if (data)
3823 cmd->user_print(mon, data);
3826 qobject_decref(data);
3829 static void handle_user_command(Monitor *mon, const char *cmdline)
3831 QDict *qdict;
3832 const mon_cmd_t *cmd;
3834 qdict = qdict_new();
3836 cmd = monitor_parse_command(mon, cmdline, qdict);
3837 if (!cmd)
3838 goto out;
3840 qemu_errors_to_mon(mon);
3842 if (monitor_handler_is_async(cmd)) {
3843 user_async_cmd_handler(mon, cmd, qdict);
3844 } else if (monitor_handler_ported(cmd)) {
3845 monitor_call_handler(mon, cmd, qdict);
3846 } else {
3847 cmd->mhandler.cmd(mon, qdict);
3850 if (monitor_has_error(mon))
3851 monitor_print_error(mon);
3853 qemu_errors_to_previous();
3855 out:
3856 QDECREF(qdict);
3859 static void cmd_completion(const char *name, const char *list)
3861 const char *p, *pstart;
3862 char cmd[128];
3863 int len;
3865 p = list;
3866 for(;;) {
3867 pstart = p;
3868 p = strchr(p, '|');
3869 if (!p)
3870 p = pstart + strlen(pstart);
3871 len = p - pstart;
3872 if (len > sizeof(cmd) - 2)
3873 len = sizeof(cmd) - 2;
3874 memcpy(cmd, pstart, len);
3875 cmd[len] = '\0';
3876 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
3877 readline_add_completion(cur_mon->rs, cmd);
3879 if (*p == '\0')
3880 break;
3881 p++;
3885 static void file_completion(const char *input)
3887 DIR *ffs;
3888 struct dirent *d;
3889 char path[1024];
3890 char file[1024], file_prefix[1024];
3891 int input_path_len;
3892 const char *p;
3894 p = strrchr(input, '/');
3895 if (!p) {
3896 input_path_len = 0;
3897 pstrcpy(file_prefix, sizeof(file_prefix), input);
3898 pstrcpy(path, sizeof(path), ".");
3899 } else {
3900 input_path_len = p - input + 1;
3901 memcpy(path, input, input_path_len);
3902 if (input_path_len > sizeof(path) - 1)
3903 input_path_len = sizeof(path) - 1;
3904 path[input_path_len] = '\0';
3905 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3907 #ifdef DEBUG_COMPLETION
3908 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
3909 input, path, file_prefix);
3910 #endif
3911 ffs = opendir(path);
3912 if (!ffs)
3913 return;
3914 for(;;) {
3915 struct stat sb;
3916 d = readdir(ffs);
3917 if (!d)
3918 break;
3919 if (strstart(d->d_name, file_prefix, NULL)) {
3920 memcpy(file, input, input_path_len);
3921 if (input_path_len < sizeof(file))
3922 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3923 d->d_name);
3924 /* stat the file to find out if it's a directory.
3925 * In that case add a slash to speed up typing long paths
3927 stat(file, &sb);
3928 if(S_ISDIR(sb.st_mode))
3929 pstrcat(file, sizeof(file), "/");
3930 readline_add_completion(cur_mon->rs, file);
3933 closedir(ffs);
3936 static void block_completion_it(void *opaque, BlockDriverState *bs)
3938 const char *name = bdrv_get_device_name(bs);
3939 const char *input = opaque;
3941 if (input[0] == '\0' ||
3942 !strncmp(name, (char *)input, strlen(input))) {
3943 readline_add_completion(cur_mon->rs, name);
3947 /* NOTE: this parser is an approximate form of the real command parser */
3948 static void parse_cmdline(const char *cmdline,
3949 int *pnb_args, char **args)
3951 const char *p;
3952 int nb_args, ret;
3953 char buf[1024];
3955 p = cmdline;
3956 nb_args = 0;
3957 for(;;) {
3958 while (qemu_isspace(*p))
3959 p++;
3960 if (*p == '\0')
3961 break;
3962 if (nb_args >= MAX_ARGS)
3963 break;
3964 ret = get_str(buf, sizeof(buf), &p);
3965 args[nb_args] = qemu_strdup(buf);
3966 nb_args++;
3967 if (ret < 0)
3968 break;
3970 *pnb_args = nb_args;
3973 static const char *next_arg_type(const char *typestr)
3975 const char *p = strchr(typestr, ':');
3976 return (p != NULL ? ++p : typestr);
3979 static void monitor_find_completion(const char *cmdline)
3981 const char *cmdname;
3982 char *args[MAX_ARGS];
3983 int nb_args, i, len;
3984 const char *ptype, *str;
3985 const mon_cmd_t *cmd;
3986 const KeyDef *key;
3988 parse_cmdline(cmdline, &nb_args, args);
3989 #ifdef DEBUG_COMPLETION
3990 for(i = 0; i < nb_args; i++) {
3991 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
3993 #endif
3995 /* if the line ends with a space, it means we want to complete the
3996 next arg */
3997 len = strlen(cmdline);
3998 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
3999 if (nb_args >= MAX_ARGS)
4000 return;
4001 args[nb_args++] = qemu_strdup("");
4003 if (nb_args <= 1) {
4004 /* command completion */
4005 if (nb_args == 0)
4006 cmdname = "";
4007 else
4008 cmdname = args[0];
4009 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
4010 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
4011 cmd_completion(cmdname, cmd->name);
4013 } else {
4014 /* find the command */
4015 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
4016 if (compare_cmd(args[0], cmd->name))
4017 goto found;
4019 return;
4020 found:
4021 ptype = next_arg_type(cmd->args_type);
4022 for(i = 0; i < nb_args - 2; i++) {
4023 if (*ptype != '\0') {
4024 ptype = next_arg_type(ptype);
4025 while (*ptype == '?')
4026 ptype = next_arg_type(ptype);
4029 str = args[nb_args - 1];
4030 if (*ptype == '-' && ptype[1] != '\0') {
4031 ptype += 2;
4033 switch(*ptype) {
4034 case 'F':
4035 /* file completion */
4036 readline_set_completion_index(cur_mon->rs, strlen(str));
4037 file_completion(str);
4038 break;
4039 case 'B':
4040 /* block device name completion */
4041 readline_set_completion_index(cur_mon->rs, strlen(str));
4042 bdrv_iterate(block_completion_it, (void *)str);
4043 break;
4044 case 's':
4045 /* XXX: more generic ? */
4046 if (!strcmp(cmd->name, "info")) {
4047 readline_set_completion_index(cur_mon->rs, strlen(str));
4048 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4049 cmd_completion(str, cmd->name);
4051 } else if (!strcmp(cmd->name, "sendkey")) {
4052 char *sep = strrchr(str, '-');
4053 if (sep)
4054 str = sep + 1;
4055 readline_set_completion_index(cur_mon->rs, strlen(str));
4056 for(key = key_defs; key->name != NULL; key++) {
4057 cmd_completion(str, key->name);
4059 } else if (!strcmp(cmd->name, "help|?")) {
4060 readline_set_completion_index(cur_mon->rs, strlen(str));
4061 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4062 cmd_completion(str, cmd->name);
4065 break;
4066 default:
4067 break;
4070 for(i = 0; i < nb_args; i++)
4071 qemu_free(args[i]);
4074 static int monitor_can_read(void *opaque)
4076 Monitor *mon = opaque;
4078 return (mon->suspend_cnt == 0) ? 1 : 0;
4081 typedef struct CmdArgs {
4082 QString *name;
4083 int type;
4084 int flag;
4085 int optional;
4086 } CmdArgs;
4088 static int check_opt(const CmdArgs *cmd_args, const char *name, QDict *args)
4090 if (!cmd_args->optional) {
4091 qemu_error_new(QERR_MISSING_PARAMETER, name);
4092 return -1;
4095 if (cmd_args->type == '-') {
4096 /* handlers expect a value, they need to be changed */
4097 qdict_put(args, name, qint_from_int(0));
4100 return 0;
4103 static int check_arg(const CmdArgs *cmd_args, QDict *args)
4105 QObject *value;
4106 const char *name;
4108 name = qstring_get_str(cmd_args->name);
4110 if (!args) {
4111 return check_opt(cmd_args, name, args);
4114 value = qdict_get(args, name);
4115 if (!value) {
4116 return check_opt(cmd_args, name, args);
4119 switch (cmd_args->type) {
4120 case 'F':
4121 case 'B':
4122 case 's':
4123 if (qobject_type(value) != QTYPE_QSTRING) {
4124 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "string");
4125 return -1;
4127 break;
4128 case '/': {
4129 int i;
4130 const char *keys[] = { "count", "format", "size", NULL };
4132 for (i = 0; keys[i]; i++) {
4133 QObject *obj = qdict_get(args, keys[i]);
4134 if (!obj) {
4135 qemu_error_new(QERR_MISSING_PARAMETER, name);
4136 return -1;
4138 if (qobject_type(obj) != QTYPE_QINT) {
4139 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "int");
4140 return -1;
4143 break;
4145 case 'i':
4146 case 'l':
4147 case 'M':
4148 if (qobject_type(value) != QTYPE_QINT) {
4149 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "int");
4150 return -1;
4152 break;
4153 case 'b':
4154 case 'T':
4155 if (qobject_type(value) != QTYPE_QINT && qobject_type(value) != QTYPE_QFLOAT) {
4156 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "number");
4157 return -1;
4159 break;
4160 case '-':
4161 if (qobject_type(value) != QTYPE_QINT &&
4162 qobject_type(value) != QTYPE_QBOOL) {
4163 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "bool");
4164 return -1;
4166 if (qobject_type(value) == QTYPE_QBOOL) {
4167 /* handlers expect a QInt, they need to be changed */
4168 qdict_put(args, name,
4169 qint_from_int(qbool_get_int(qobject_to_qbool(value))));
4171 break;
4172 default:
4173 /* impossible */
4174 abort();
4177 return 0;
4180 static void cmd_args_init(CmdArgs *cmd_args)
4182 cmd_args->name = qstring_new();
4183 cmd_args->type = cmd_args->flag = cmd_args->optional = 0;
4187 * This is not trivial, we have to parse Monitor command's argument
4188 * type syntax to be able to check the arguments provided by clients.
4190 * In the near future we will be using an array for that and will be
4191 * able to drop all this parsing...
4193 static int monitor_check_qmp_args(const mon_cmd_t *cmd, QDict *args)
4195 int err;
4196 const char *p;
4197 CmdArgs cmd_args;
4199 if (cmd->args_type == NULL) {
4200 return (qdict_size(args) == 0 ? 0 : -1);
4203 err = 0;
4204 cmd_args_init(&cmd_args);
4206 for (p = cmd->args_type;; p++) {
4207 if (*p == ':') {
4208 cmd_args.type = *++p;
4209 p++;
4210 if (cmd_args.type == '-') {
4211 cmd_args.flag = *p++;
4212 cmd_args.optional = 1;
4213 } else if (*p == '?') {
4214 cmd_args.optional = 1;
4215 p++;
4218 assert(*p == ',' || *p == '\0');
4219 err = check_arg(&cmd_args, args);
4221 QDECREF(cmd_args.name);
4222 cmd_args_init(&cmd_args);
4224 if (err < 0) {
4225 break;
4227 } else {
4228 qstring_append_chr(cmd_args.name, *p);
4231 if (*p == '\0') {
4232 break;
4236 QDECREF(cmd_args.name);
4237 return err;
4240 static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4242 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4243 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4246 static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4248 int err;
4249 QObject *obj;
4250 QDict *input, *args;
4251 const mon_cmd_t *cmd;
4252 Monitor *mon = cur_mon;
4253 const char *cmd_name, *info_item;
4255 args = NULL;
4256 qemu_errors_to_mon(mon);
4258 obj = json_parser_parse(tokens, NULL);
4259 if (!obj) {
4260 // FIXME: should be triggered in json_parser_parse()
4261 qemu_error_new(QERR_JSON_PARSING);
4262 goto err_out;
4263 } else if (qobject_type(obj) != QTYPE_QDICT) {
4264 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "object");
4265 qobject_decref(obj);
4266 goto err_out;
4269 input = qobject_to_qdict(obj);
4271 mon->mc->id = qdict_get(input, "id");
4272 qobject_incref(mon->mc->id);
4274 obj = qdict_get(input, "execute");
4275 if (!obj) {
4276 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4277 goto err_input;
4278 } else if (qobject_type(obj) != QTYPE_QSTRING) {
4279 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "string");
4280 goto err_input;
4283 cmd_name = qstring_get_str(qobject_to_qstring(obj));
4285 if (invalid_qmp_mode(mon, cmd_name)) {
4286 qemu_error_new(QERR_COMMAND_NOT_FOUND, cmd_name);
4287 goto err_input;
4291 * XXX: We need this special case until we get info handlers
4292 * converted into 'query-' commands
4294 if (compare_cmd(cmd_name, "info")) {
4295 qemu_error_new(QERR_COMMAND_NOT_FOUND, cmd_name);
4296 goto err_input;
4297 } else if (strstart(cmd_name, "query-", &info_item)) {
4298 cmd = monitor_find_command("info");
4299 qdict_put_obj(input, "arguments",
4300 qobject_from_jsonf("{ 'item': %s }", info_item));
4301 } else {
4302 cmd = monitor_find_command(cmd_name);
4303 if (!cmd || !monitor_handler_ported(cmd)) {
4304 qemu_error_new(QERR_COMMAND_NOT_FOUND, cmd_name);
4305 goto err_input;
4309 obj = qdict_get(input, "arguments");
4310 if (!obj) {
4311 args = qdict_new();
4312 } else {
4313 args = qobject_to_qdict(obj);
4314 QINCREF(args);
4317 QDECREF(input);
4319 err = monitor_check_qmp_args(cmd, args);
4320 if (err < 0) {
4321 goto err_out;
4324 if (monitor_handler_is_async(cmd)) {
4325 qmp_async_cmd_handler(mon, cmd, args);
4326 } else {
4327 monitor_call_handler(mon, cmd, args);
4329 goto out;
4331 err_input:
4332 QDECREF(input);
4333 err_out:
4334 monitor_protocol_emitter(mon, NULL);
4335 out:
4336 QDECREF(args);
4337 qemu_errors_to_previous();
4341 * monitor_control_read(): Read and handle QMP input
4343 static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4345 Monitor *old_mon = cur_mon;
4347 cur_mon = opaque;
4349 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
4351 cur_mon = old_mon;
4354 static void monitor_read(void *opaque, const uint8_t *buf, int size)
4356 Monitor *old_mon = cur_mon;
4357 int i;
4359 cur_mon = opaque;
4361 if (cur_mon->rs) {
4362 for (i = 0; i < size; i++)
4363 readline_handle_byte(cur_mon->rs, buf[i]);
4364 } else {
4365 if (size == 0 || buf[size - 1] != 0)
4366 monitor_printf(cur_mon, "corrupted command\n");
4367 else
4368 handle_user_command(cur_mon, (char *)buf);
4371 cur_mon = old_mon;
4374 static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
4376 monitor_suspend(mon);
4377 handle_user_command(mon, cmdline);
4378 monitor_resume(mon);
4381 int monitor_suspend(Monitor *mon)
4383 if (!mon->rs)
4384 return -ENOTTY;
4385 mon->suspend_cnt++;
4386 return 0;
4389 void monitor_resume(Monitor *mon)
4391 if (!mon->rs)
4392 return;
4393 if (--mon->suspend_cnt == 0)
4394 readline_show_prompt(mon->rs);
4397 static QObject *get_qmp_greeting(void)
4399 QObject *ver;
4401 do_info_version(NULL, &ver);
4402 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4406 * monitor_control_event(): Print QMP gretting
4408 static void monitor_control_event(void *opaque, int event)
4410 if (event == CHR_EVENT_OPENED) {
4411 QObject *data;
4412 Monitor *mon = opaque;
4414 mon->mc->command_mode = 0;
4415 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
4417 data = get_qmp_greeting();
4418 assert(data != NULL);
4420 monitor_json_emitter(mon, data);
4421 qobject_decref(data);
4425 static void monitor_event(void *opaque, int event)
4427 Monitor *mon = opaque;
4429 switch (event) {
4430 case CHR_EVENT_MUX_IN:
4431 mon->mux_out = 0;
4432 if (mon->reset_seen) {
4433 readline_restart(mon->rs);
4434 monitor_resume(mon);
4435 monitor_flush(mon);
4436 } else {
4437 mon->suspend_cnt = 0;
4439 break;
4441 case CHR_EVENT_MUX_OUT:
4442 if (mon->reset_seen) {
4443 if (mon->suspend_cnt == 0) {
4444 monitor_printf(mon, "\n");
4446 monitor_flush(mon);
4447 monitor_suspend(mon);
4448 } else {
4449 mon->suspend_cnt++;
4451 mon->mux_out = 1;
4452 break;
4454 case CHR_EVENT_OPENED:
4455 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4456 "information\n", QEMU_VERSION);
4457 if (!mon->mux_out) {
4458 readline_show_prompt(mon->rs);
4460 mon->reset_seen = 1;
4461 break;
4467 * Local variables:
4468 * c-indent-level: 4
4469 * c-basic-offset: 4
4470 * tab-width: 8
4471 * End:
4474 void monitor_init(CharDriverState *chr, int flags)
4476 static int is_first_init = 1;
4477 Monitor *mon;
4479 if (is_first_init) {
4480 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
4481 is_first_init = 0;
4484 mon = qemu_mallocz(sizeof(*mon));
4486 mon->chr = chr;
4487 mon->flags = flags;
4488 if (flags & MONITOR_USE_READLINE) {
4489 mon->rs = readline_init(mon, monitor_find_completion);
4490 monitor_read_command(mon, 0);
4493 if (monitor_ctrl_mode(mon)) {
4494 mon->mc = qemu_mallocz(sizeof(MonitorControl));
4495 /* Control mode requires special handlers */
4496 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4497 monitor_control_event, mon);
4498 } else {
4499 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4500 monitor_event, mon);
4503 QLIST_INSERT_HEAD(&mon_list, mon, entry);
4504 if (!cur_mon || (flags & MONITOR_IS_DEFAULT))
4505 cur_mon = mon;
4508 static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
4510 BlockDriverState *bs = opaque;
4511 int ret = 0;
4513 if (bdrv_set_key(bs, password) != 0) {
4514 monitor_printf(mon, "invalid password\n");
4515 ret = -EPERM;
4517 if (mon->password_completion_cb)
4518 mon->password_completion_cb(mon->password_opaque, ret);
4520 monitor_read_command(mon, 1);
4523 void monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4524 BlockDriverCompletionFunc *completion_cb,
4525 void *opaque)
4527 int err;
4529 if (!bdrv_key_required(bs)) {
4530 if (completion_cb)
4531 completion_cb(opaque, 0);
4532 return;
4535 if (monitor_ctrl_mode(mon)) {
4536 qemu_error_new(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
4537 return;
4540 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4541 bdrv_get_encrypted_filename(bs));
4543 mon->password_completion_cb = completion_cb;
4544 mon->password_opaque = opaque;
4546 err = monitor_read_password(mon, bdrv_password_cb, bs);
4548 if (err && completion_cb)
4549 completion_cb(opaque, err);
4552 typedef struct QemuErrorSink QemuErrorSink;
4553 struct QemuErrorSink {
4554 enum {
4555 ERR_SINK_FILE,
4556 ERR_SINK_MONITOR,
4557 } dest;
4558 union {
4559 FILE *fp;
4560 Monitor *mon;
4562 QemuErrorSink *previous;
4565 static QemuErrorSink *qemu_error_sink;
4567 void qemu_errors_to_file(FILE *fp)
4569 QemuErrorSink *sink;
4571 sink = qemu_mallocz(sizeof(*sink));
4572 sink->dest = ERR_SINK_FILE;
4573 sink->fp = fp;
4574 sink->previous = qemu_error_sink;
4575 qemu_error_sink = sink;
4578 void qemu_errors_to_mon(Monitor *mon)
4580 QemuErrorSink *sink;
4582 sink = qemu_mallocz(sizeof(*sink));
4583 sink->dest = ERR_SINK_MONITOR;
4584 sink->mon = mon;
4585 sink->previous = qemu_error_sink;
4586 qemu_error_sink = sink;
4589 void qemu_errors_to_previous(void)
4591 QemuErrorSink *sink;
4593 assert(qemu_error_sink != NULL);
4594 sink = qemu_error_sink;
4595 qemu_error_sink = sink->previous;
4596 qemu_free(sink);
4599 void qemu_error(const char *fmt, ...)
4601 va_list args;
4603 assert(qemu_error_sink != NULL);
4604 switch (qemu_error_sink->dest) {
4605 case ERR_SINK_FILE:
4606 va_start(args, fmt);
4607 vfprintf(qemu_error_sink->fp, fmt, args);
4608 va_end(args);
4609 break;
4610 case ERR_SINK_MONITOR:
4611 va_start(args, fmt);
4612 monitor_vprintf(qemu_error_sink->mon, fmt, args);
4613 va_end(args);
4614 break;
4618 void qemu_error_internal(const char *file, int linenr, const char *func,
4619 const char *fmt, ...)
4621 va_list va;
4622 QError *qerror;
4624 assert(qemu_error_sink != NULL);
4626 va_start(va, fmt);
4627 qerror = qerror_from_info(file, linenr, func, fmt, &va);
4628 va_end(va);
4630 switch (qemu_error_sink->dest) {
4631 case ERR_SINK_FILE:
4632 qerror_print(qerror);
4633 QDECREF(qerror);
4634 break;
4635 case ERR_SINK_MONITOR:
4636 assert(qemu_error_sink->mon->error == NULL);
4637 qemu_error_sink->mon->error = qerror;
4638 break;