qerror: Extend QERR_DEVICE_ENCRYPTED
[qemu/wangdongxu.git] / monitor.c
blobf85a9d2499f6311942425bd1ba4847a31a3cb9af
1 /*
2 * QEMU monitor
4 * Copyright (c) 2003-2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
24 #include <dirent.h>
25 #include "hw/hw.h"
26 #include "hw/qdev.h"
27 #include "hw/usb.h"
28 #include "hw/pcmcia.h"
29 #include "hw/pc.h"
30 #include "hw/pci.h"
31 #include "hw/watchdog.h"
32 #include "hw/loader.h"
33 #include "gdbstub.h"
34 #include "net.h"
35 #include "net/slirp.h"
36 #include "qemu-char.h"
37 #include "ui/qemu-spice.h"
38 #include "sysemu.h"
39 #include "monitor.h"
40 #include "readline.h"
41 #include "console.h"
42 #include "blockdev.h"
43 #include "audio/audio.h"
44 #include "disas.h"
45 #include "balloon.h"
46 #include "qemu-timer.h"
47 #include "migration.h"
48 #include "kvm.h"
49 #include "acl.h"
50 #include "qint.h"
51 #include "qfloat.h"
52 #include "qlist.h"
53 #include "qbool.h"
54 #include "qstring.h"
55 #include "qjson.h"
56 #include "json-streamer.h"
57 #include "json-parser.h"
58 #include "osdep.h"
59 #include "cpu.h"
60 #include "trace.h"
61 #include "trace/control.h"
62 #ifdef CONFIG_TRACE_SIMPLE
63 #include "trace/simple.h"
64 #endif
65 #include "ui/qemu-spice.h"
66 #include "memory.h"
67 #include "qmp-commands.h"
68 #include "hmp.h"
70 /* for pic/irq_info */
71 #if defined(TARGET_SPARC)
72 #include "hw/sun4m.h"
73 #endif
74 #include "hw/lm32_pic.h"
76 //#define DEBUG
77 //#define DEBUG_COMPLETION
80 * Supported types:
82 * 'F' filename
83 * 'B' block device name
84 * 's' string (accept optional quote)
85 * 'O' option string of the form NAME=VALUE,...
86 * parsed according to QemuOptsList given by its name
87 * Example: 'device:O' uses qemu_device_opts.
88 * Restriction: only lists with empty desc are supported
89 * TODO lift the restriction
90 * 'i' 32 bit integer
91 * 'l' target long (32 or 64 bit)
92 * 'M' just like 'l', except in user mode the value is
93 * multiplied by 2^20 (think Mebibyte)
94 * 'o' octets (aka bytes)
95 * user mode accepts an optional T, t, G, g, M, m, K, k
96 * suffix, which multiplies the value by 2^40 for
97 * suffixes T and t, 2^30 for suffixes G and g, 2^20 for
98 * M and m, 2^10 for K and k
99 * 'T' double
100 * user mode accepts an optional ms, us, ns suffix,
101 * which divides the value by 1e3, 1e6, 1e9, respectively
102 * '/' optional gdb-like print format (like "/10x")
104 * '?' optional type (for all types, except '/')
105 * '.' other form of optional type (for 'i' and 'l')
106 * 'b' boolean
107 * user mode accepts "on" or "off"
108 * '-' optional parameter (eg. '-f')
112 typedef struct MonitorCompletionData MonitorCompletionData;
113 struct MonitorCompletionData {
114 Monitor *mon;
115 void (*user_print)(Monitor *mon, const QObject *data);
118 typedef struct mon_cmd_t {
119 const char *name;
120 const char *args_type;
121 const char *params;
122 const char *help;
123 void (*user_print)(Monitor *mon, const QObject *data);
124 union {
125 void (*info)(Monitor *mon);
126 void (*cmd)(Monitor *mon, const QDict *qdict);
127 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
128 int (*cmd_async)(Monitor *mon, const QDict *params,
129 MonitorCompletion *cb, void *opaque);
130 } mhandler;
131 bool qapi;
132 int flags;
133 } mon_cmd_t;
135 /* file descriptors passed via SCM_RIGHTS */
136 typedef struct mon_fd_t mon_fd_t;
137 struct mon_fd_t {
138 char *name;
139 int fd;
140 QLIST_ENTRY(mon_fd_t) next;
143 typedef struct MonitorControl {
144 QObject *id;
145 JSONMessageParser parser;
146 int command_mode;
147 } MonitorControl;
149 struct Monitor {
150 CharDriverState *chr;
151 int mux_out;
152 int reset_seen;
153 int flags;
154 int suspend_cnt;
155 uint8_t outbuf[1024];
156 int outbuf_index;
157 ReadLineState *rs;
158 MonitorControl *mc;
159 CPUState *mon_cpu;
160 BlockDriverCompletionFunc *password_completion_cb;
161 void *password_opaque;
162 #ifdef CONFIG_DEBUG_MONITOR
163 int print_calls_nr;
164 #endif
165 QError *error;
166 QLIST_HEAD(,mon_fd_t) fds;
167 QLIST_ENTRY(Monitor) entry;
170 #ifdef CONFIG_DEBUG_MONITOR
171 #define MON_DEBUG(fmt, ...) do { \
172 fprintf(stderr, "Monitor: "); \
173 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
175 static inline void mon_print_count_inc(Monitor *mon)
177 mon->print_calls_nr++;
180 static inline void mon_print_count_init(Monitor *mon)
182 mon->print_calls_nr = 0;
185 static inline int mon_print_count_get(const Monitor *mon)
187 return mon->print_calls_nr;
190 #else /* !CONFIG_DEBUG_MONITOR */
191 #define MON_DEBUG(fmt, ...) do { } while (0)
192 static inline void mon_print_count_inc(Monitor *mon) { }
193 static inline void mon_print_count_init(Monitor *mon) { }
194 static inline int mon_print_count_get(const Monitor *mon) { return 0; }
195 #endif /* CONFIG_DEBUG_MONITOR */
197 /* QMP checker flags */
198 #define QMP_ACCEPT_UNKNOWNS 1
200 static QLIST_HEAD(mon_list, Monitor) mon_list;
202 static mon_cmd_t mon_cmds[];
203 static mon_cmd_t info_cmds[];
205 static const mon_cmd_t qmp_cmds[];
207 Monitor *cur_mon;
208 Monitor *default_mon;
210 static void monitor_command_cb(Monitor *mon, const char *cmdline,
211 void *opaque);
213 static inline int qmp_cmd_mode(const Monitor *mon)
215 return (mon->mc ? mon->mc->command_mode : 0);
218 /* Return true if in control mode, false otherwise */
219 static inline int monitor_ctrl_mode(const Monitor *mon)
221 return (mon->flags & MONITOR_USE_CONTROL);
224 /* Return non-zero iff we have a current monitor, and it is in QMP mode. */
225 int monitor_cur_is_qmp(void)
227 return cur_mon && monitor_ctrl_mode(cur_mon);
230 void monitor_read_command(Monitor *mon, int show_prompt)
232 if (!mon->rs)
233 return;
235 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
236 if (show_prompt)
237 readline_show_prompt(mon->rs);
240 int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
241 void *opaque)
243 if (monitor_ctrl_mode(mon)) {
244 qerror_report(QERR_MISSING_PARAMETER, "password");
245 return -EINVAL;
246 } else if (mon->rs) {
247 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
248 /* prompt is printed on return from the command handler */
249 return 0;
250 } else {
251 monitor_printf(mon, "terminal does not support password prompting\n");
252 return -ENOTTY;
256 void monitor_flush(Monitor *mon)
258 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
259 qemu_chr_fe_write(mon->chr, mon->outbuf, mon->outbuf_index);
260 mon->outbuf_index = 0;
264 /* flush at every end of line or if the buffer is full */
265 static void monitor_puts(Monitor *mon, const char *str)
267 char c;
269 for(;;) {
270 c = *str++;
271 if (c == '\0')
272 break;
273 if (c == '\n')
274 mon->outbuf[mon->outbuf_index++] = '\r';
275 mon->outbuf[mon->outbuf_index++] = c;
276 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
277 || c == '\n')
278 monitor_flush(mon);
282 void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
284 char buf[4096];
286 if (!mon)
287 return;
289 mon_print_count_inc(mon);
291 if (monitor_ctrl_mode(mon)) {
292 return;
295 vsnprintf(buf, sizeof(buf), fmt, ap);
296 monitor_puts(mon, buf);
299 void monitor_printf(Monitor *mon, const char *fmt, ...)
301 va_list ap;
302 va_start(ap, fmt);
303 monitor_vprintf(mon, fmt, ap);
304 va_end(ap);
307 void monitor_print_filename(Monitor *mon, const char *filename)
309 int i;
311 for (i = 0; filename[i]; i++) {
312 switch (filename[i]) {
313 case ' ':
314 case '"':
315 case '\\':
316 monitor_printf(mon, "\\%c", filename[i]);
317 break;
318 case '\t':
319 monitor_printf(mon, "\\t");
320 break;
321 case '\r':
322 monitor_printf(mon, "\\r");
323 break;
324 case '\n':
325 monitor_printf(mon, "\\n");
326 break;
327 default:
328 monitor_printf(mon, "%c", filename[i]);
329 break;
334 static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
335 const char *fmt, ...)
337 va_list ap;
338 va_start(ap, fmt);
339 monitor_vprintf((Monitor *)stream, fmt, ap);
340 va_end(ap);
341 return 0;
344 static void monitor_user_noop(Monitor *mon, const QObject *data) { }
346 static inline int handler_is_qobject(const mon_cmd_t *cmd)
348 return cmd->user_print != NULL;
351 static inline bool handler_is_async(const mon_cmd_t *cmd)
353 return cmd->flags & MONITOR_CMD_ASYNC;
356 static inline int monitor_has_error(const Monitor *mon)
358 return mon->error != NULL;
361 static void monitor_json_emitter(Monitor *mon, const QObject *data)
363 QString *json;
365 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
366 qobject_to_json(data);
367 assert(json != NULL);
369 qstring_append_chr(json, '\n');
370 monitor_puts(mon, qstring_get_str(json));
372 QDECREF(json);
375 static void monitor_protocol_emitter(Monitor *mon, QObject *data)
377 QDict *qmp;
379 trace_monitor_protocol_emitter(mon);
381 qmp = qdict_new();
383 if (!monitor_has_error(mon)) {
384 /* success response */
385 if (data) {
386 qobject_incref(data);
387 qdict_put_obj(qmp, "return", data);
388 } else {
389 /* return an empty QDict by default */
390 qdict_put(qmp, "return", qdict_new());
392 } else {
393 /* error response */
394 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
395 qdict_put(qmp, "error", mon->error->error);
396 QINCREF(mon->error->error);
397 QDECREF(mon->error);
398 mon->error = NULL;
401 if (mon->mc->id) {
402 qdict_put_obj(qmp, "id", mon->mc->id);
403 mon->mc->id = NULL;
406 monitor_json_emitter(mon, QOBJECT(qmp));
407 QDECREF(qmp);
410 static void timestamp_put(QDict *qdict)
412 int err;
413 QObject *obj;
414 qemu_timeval tv;
416 err = qemu_gettimeofday(&tv);
417 if (err < 0)
418 return;
420 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
421 "'microseconds': %" PRId64 " }",
422 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
423 qdict_put_obj(qdict, "timestamp", obj);
427 * monitor_protocol_event(): Generate a Monitor event
429 * Event-specific data can be emitted through the (optional) 'data' parameter.
431 void monitor_protocol_event(MonitorEvent event, QObject *data)
433 QDict *qmp;
434 const char *event_name;
435 Monitor *mon;
437 assert(event < QEVENT_MAX);
439 switch (event) {
440 case QEVENT_SHUTDOWN:
441 event_name = "SHUTDOWN";
442 break;
443 case QEVENT_RESET:
444 event_name = "RESET";
445 break;
446 case QEVENT_POWERDOWN:
447 event_name = "POWERDOWN";
448 break;
449 case QEVENT_STOP:
450 event_name = "STOP";
451 break;
452 case QEVENT_RESUME:
453 event_name = "RESUME";
454 break;
455 case QEVENT_VNC_CONNECTED:
456 event_name = "VNC_CONNECTED";
457 break;
458 case QEVENT_VNC_INITIALIZED:
459 event_name = "VNC_INITIALIZED";
460 break;
461 case QEVENT_VNC_DISCONNECTED:
462 event_name = "VNC_DISCONNECTED";
463 break;
464 case QEVENT_BLOCK_IO_ERROR:
465 event_name = "BLOCK_IO_ERROR";
466 break;
467 case QEVENT_RTC_CHANGE:
468 event_name = "RTC_CHANGE";
469 break;
470 case QEVENT_WATCHDOG:
471 event_name = "WATCHDOG";
472 break;
473 case QEVENT_SPICE_CONNECTED:
474 event_name = "SPICE_CONNECTED";
475 break;
476 case QEVENT_SPICE_INITIALIZED:
477 event_name = "SPICE_INITIALIZED";
478 break;
479 case QEVENT_SPICE_DISCONNECTED:
480 event_name = "SPICE_DISCONNECTED";
481 break;
482 default:
483 abort();
484 break;
487 qmp = qdict_new();
488 timestamp_put(qmp);
489 qdict_put(qmp, "event", qstring_from_str(event_name));
490 if (data) {
491 qobject_incref(data);
492 qdict_put_obj(qmp, "data", data);
495 QLIST_FOREACH(mon, &mon_list, entry) {
496 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
497 monitor_json_emitter(mon, QOBJECT(qmp));
500 QDECREF(qmp);
503 static int do_qmp_capabilities(Monitor *mon, const QDict *params,
504 QObject **ret_data)
506 /* Will setup QMP capabilities in the future */
507 if (monitor_ctrl_mode(mon)) {
508 mon->mc->command_mode = 1;
511 return 0;
514 static void handle_user_command(Monitor *mon, const char *cmdline);
516 char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index,
517 int64_t cpu_index, Error **errp)
519 char *output = NULL;
520 Monitor *old_mon, hmp;
521 CharDriverState mchar;
523 memset(&hmp, 0, sizeof(hmp));
524 qemu_chr_init_mem(&mchar);
525 hmp.chr = &mchar;
527 old_mon = cur_mon;
528 cur_mon = &hmp;
530 if (has_cpu_index) {
531 int ret = monitor_set_cpu(cpu_index);
532 if (ret < 0) {
533 cur_mon = old_mon;
534 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
535 "a CPU number");
536 goto out;
540 handle_user_command(&hmp, command_line);
541 cur_mon = old_mon;
543 if (qemu_chr_mem_osize(hmp.chr) > 0) {
544 QString *str = qemu_chr_mem_to_qs(hmp.chr);
545 output = g_strdup(qstring_get_str(str));
546 QDECREF(str);
547 } else {
548 output = g_strdup("");
551 out:
552 qemu_chr_close_mem(hmp.chr);
553 return output;
556 static int compare_cmd(const char *name, const char *list)
558 const char *p, *pstart;
559 int len;
560 len = strlen(name);
561 p = list;
562 for(;;) {
563 pstart = p;
564 p = strchr(p, '|');
565 if (!p)
566 p = pstart + strlen(pstart);
567 if ((p - pstart) == len && !memcmp(pstart, name, len))
568 return 1;
569 if (*p == '\0')
570 break;
571 p++;
573 return 0;
576 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
577 const char *prefix, const char *name)
579 const mon_cmd_t *cmd;
581 for(cmd = cmds; cmd->name != NULL; cmd++) {
582 if (!name || !strcmp(name, cmd->name))
583 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
584 cmd->params, cmd->help);
588 static void help_cmd(Monitor *mon, const char *name)
590 if (name && !strcmp(name, "info")) {
591 help_cmd_dump(mon, info_cmds, "info ", NULL);
592 } else {
593 help_cmd_dump(mon, mon_cmds, "", name);
594 if (name && !strcmp(name, "log")) {
595 const CPULogItem *item;
596 monitor_printf(mon, "Log items (comma separated):\n");
597 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
598 for(item = cpu_log_items; item->mask != 0; item++) {
599 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
605 static void do_help_cmd(Monitor *mon, const QDict *qdict)
607 help_cmd(mon, qdict_get_try_str(qdict, "name"));
610 static void do_trace_event_set_state(Monitor *mon, const QDict *qdict)
612 const char *tp_name = qdict_get_str(qdict, "name");
613 bool new_state = qdict_get_bool(qdict, "option");
614 int ret = trace_event_set_state(tp_name, new_state);
616 if (!ret) {
617 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
621 #ifdef CONFIG_TRACE_SIMPLE
622 static void do_trace_file(Monitor *mon, const QDict *qdict)
624 const char *op = qdict_get_try_str(qdict, "op");
625 const char *arg = qdict_get_try_str(qdict, "arg");
627 if (!op) {
628 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
629 } else if (!strcmp(op, "on")) {
630 st_set_trace_file_enabled(true);
631 } else if (!strcmp(op, "off")) {
632 st_set_trace_file_enabled(false);
633 } else if (!strcmp(op, "flush")) {
634 st_flush_trace_buffer();
635 } else if (!strcmp(op, "set")) {
636 if (arg) {
637 st_set_trace_file(arg);
639 } else {
640 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
641 help_cmd(mon, "trace-file");
644 #endif
646 static void user_monitor_complete(void *opaque, QObject *ret_data)
648 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
650 if (ret_data) {
651 data->user_print(data->mon, ret_data);
653 monitor_resume(data->mon);
654 g_free(data);
657 static void qmp_monitor_complete(void *opaque, QObject *ret_data)
659 monitor_protocol_emitter(opaque, ret_data);
662 static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
663 const QDict *params)
665 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
668 static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
669 const QDict *params)
671 int ret;
673 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
674 cb_data->mon = mon;
675 cb_data->user_print = cmd->user_print;
676 monitor_suspend(mon);
677 ret = cmd->mhandler.cmd_async(mon, params,
678 user_monitor_complete, cb_data);
679 if (ret < 0) {
680 monitor_resume(mon);
681 g_free(cb_data);
685 static void do_info(Monitor *mon, const QDict *qdict)
687 const mon_cmd_t *cmd;
688 const char *item = qdict_get_try_str(qdict, "item");
690 if (!item) {
691 goto help;
694 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
695 if (compare_cmd(item, cmd->name))
696 break;
699 if (cmd->name == NULL) {
700 goto help;
703 cmd->mhandler.info(mon);
704 return;
706 help:
707 help_cmd(mon, "info");
710 CommandInfoList *qmp_query_commands(Error **errp)
712 CommandInfoList *info, *cmd_list = NULL;
713 const mon_cmd_t *cmd;
715 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
716 info = g_malloc0(sizeof(*info));
717 info->value = g_malloc0(sizeof(*info->value));
718 info->value->name = g_strdup(cmd->name);
720 info->next = cmd_list;
721 cmd_list = info;
724 return cmd_list;
727 /* set the current CPU defined by the user */
728 int monitor_set_cpu(int cpu_index)
730 CPUState *env;
732 for(env = first_cpu; env != NULL; env = env->next_cpu) {
733 if (env->cpu_index == cpu_index) {
734 cur_mon->mon_cpu = env;
735 return 0;
738 return -1;
741 static CPUState *mon_get_cpu(void)
743 if (!cur_mon->mon_cpu) {
744 monitor_set_cpu(0);
746 cpu_synchronize_state(cur_mon->mon_cpu);
747 return cur_mon->mon_cpu;
750 int monitor_get_cpu_index(void)
752 return mon_get_cpu()->cpu_index;
755 static void do_info_registers(Monitor *mon)
757 CPUState *env;
758 env = mon_get_cpu();
759 #ifdef TARGET_I386
760 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
761 X86_DUMP_FPU);
762 #else
763 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
765 #endif
768 static void do_info_jit(Monitor *mon)
770 dump_exec_info((FILE *)mon, monitor_fprintf);
773 static void do_info_history(Monitor *mon)
775 int i;
776 const char *str;
778 if (!mon->rs)
779 return;
780 i = 0;
781 for(;;) {
782 str = readline_get_history(mon->rs, i);
783 if (!str)
784 break;
785 monitor_printf(mon, "%d: '%s'\n", i, str);
786 i++;
790 #if defined(TARGET_PPC)
791 /* XXX: not implemented in other targets */
792 static void do_info_cpu_stats(Monitor *mon)
794 CPUState *env;
796 env = mon_get_cpu();
797 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
799 #endif
801 #if defined(CONFIG_TRACE_SIMPLE)
802 static void do_info_trace(Monitor *mon)
804 st_print_trace((FILE *)mon, &monitor_fprintf);
806 #endif
808 static void do_trace_print_events(Monitor *mon)
810 trace_print_events((FILE *)mon, &monitor_fprintf);
813 #ifdef CONFIG_VNC
814 static int change_vnc_password(const char *password)
816 if (!password || !password[0]) {
817 if (vnc_display_disable_login(NULL)) {
818 qerror_report(QERR_SET_PASSWD_FAILED);
819 return -1;
821 return 0;
824 if (vnc_display_password(NULL, password) < 0) {
825 qerror_report(QERR_SET_PASSWD_FAILED);
826 return -1;
829 return 0;
832 static void change_vnc_password_cb(Monitor *mon, const char *password,
833 void *opaque)
835 change_vnc_password(password);
836 monitor_read_command(mon, 1);
839 static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
841 if (strcmp(target, "passwd") == 0 ||
842 strcmp(target, "password") == 0) {
843 if (arg) {
844 char password[9];
845 strncpy(password, arg, sizeof(password));
846 password[sizeof(password) - 1] = '\0';
847 return change_vnc_password(password);
848 } else {
849 return monitor_read_password(mon, change_vnc_password_cb, NULL);
851 } else {
852 if (vnc_display_open(NULL, target) < 0) {
853 qerror_report(QERR_VNC_SERVER_FAILED, target);
854 return -1;
858 return 0;
860 #else
861 static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
863 qerror_report(QERR_FEATURE_DISABLED, "vnc");
864 return -ENODEV;
866 #endif
869 * do_change(): Change a removable medium, or VNC configuration
871 static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
873 const char *device = qdict_get_str(qdict, "device");
874 const char *target = qdict_get_str(qdict, "target");
875 const char *arg = qdict_get_try_str(qdict, "arg");
876 int ret;
878 if (strcmp(device, "vnc") == 0) {
879 ret = do_change_vnc(mon, target, arg);
880 } else {
881 ret = do_change_block(mon, device, target, arg);
884 return ret;
887 static int add_graphics_client(Monitor *mon, const QDict *qdict, QObject **ret_data)
889 const char *protocol = qdict_get_str(qdict, "protocol");
890 const char *fdname = qdict_get_str(qdict, "fdname");
891 CharDriverState *s;
893 if (strcmp(protocol, "spice") == 0) {
894 if (!using_spice) {
895 /* correct one? spice isn't a device ,,, */
896 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
897 return -1;
899 qerror_report(QERR_ADD_CLIENT_FAILED);
900 return -1;
901 #ifdef CONFIG_VNC
902 } else if (strcmp(protocol, "vnc") == 0) {
903 int fd = monitor_get_fd(mon, fdname);
904 int skipauth = qdict_get_try_bool(qdict, "skipauth", 0);
905 vnc_display_add_client(NULL, fd, skipauth);
906 return 0;
907 #endif
908 } else if ((s = qemu_chr_find(protocol)) != NULL) {
909 int fd = monitor_get_fd(mon, fdname);
910 if (qemu_chr_add_client(s, fd) < 0) {
911 qerror_report(QERR_ADD_CLIENT_FAILED);
912 return -1;
914 return 0;
917 qerror_report(QERR_INVALID_PARAMETER, "protocol");
918 return -1;
921 static int client_migrate_info(Monitor *mon, const QDict *qdict,
922 MonitorCompletion cb, void *opaque)
924 const char *protocol = qdict_get_str(qdict, "protocol");
925 const char *hostname = qdict_get_str(qdict, "hostname");
926 const char *subject = qdict_get_try_str(qdict, "cert-subject");
927 int port = qdict_get_try_int(qdict, "port", -1);
928 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
929 int ret;
931 if (strcmp(protocol, "spice") == 0) {
932 if (!using_spice) {
933 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
934 return -1;
937 ret = qemu_spice_migrate_info(hostname, port, tls_port, subject,
938 cb, opaque);
939 if (ret != 0) {
940 qerror_report(QERR_UNDEFINED_ERROR);
941 return -1;
943 return 0;
946 qerror_report(QERR_INVALID_PARAMETER, "protocol");
947 return -1;
950 static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
952 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
953 return 0;
956 static void do_logfile(Monitor *mon, const QDict *qdict)
958 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
961 static void do_log(Monitor *mon, const QDict *qdict)
963 int mask;
964 const char *items = qdict_get_str(qdict, "items");
966 if (!strcmp(items, "none")) {
967 mask = 0;
968 } else {
969 mask = cpu_str_to_log_mask(items);
970 if (!mask) {
971 help_cmd(mon, "log");
972 return;
975 cpu_set_log(mask);
978 static void do_singlestep(Monitor *mon, const QDict *qdict)
980 const char *option = qdict_get_try_str(qdict, "option");
981 if (!option || !strcmp(option, "on")) {
982 singlestep = 1;
983 } else if (!strcmp(option, "off")) {
984 singlestep = 0;
985 } else {
986 monitor_printf(mon, "unexpected option %s\n", option);
990 static void do_gdbserver(Monitor *mon, const QDict *qdict)
992 const char *device = qdict_get_try_str(qdict, "device");
993 if (!device)
994 device = "tcp::" DEFAULT_GDBSTUB_PORT;
995 if (gdbserver_start(device) < 0) {
996 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
997 device);
998 } else if (strcmp(device, "none") == 0) {
999 monitor_printf(mon, "Disabled gdbserver\n");
1000 } else {
1001 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1002 device);
1006 static void do_watchdog_action(Monitor *mon, const QDict *qdict)
1008 const char *action = qdict_get_str(qdict, "action");
1009 if (select_watchdog_action(action) == -1) {
1010 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1014 static void monitor_printc(Monitor *mon, int c)
1016 monitor_printf(mon, "'");
1017 switch(c) {
1018 case '\'':
1019 monitor_printf(mon, "\\'");
1020 break;
1021 case '\\':
1022 monitor_printf(mon, "\\\\");
1023 break;
1024 case '\n':
1025 monitor_printf(mon, "\\n");
1026 break;
1027 case '\r':
1028 monitor_printf(mon, "\\r");
1029 break;
1030 default:
1031 if (c >= 32 && c <= 126) {
1032 monitor_printf(mon, "%c", c);
1033 } else {
1034 monitor_printf(mon, "\\x%02x", c);
1036 break;
1038 monitor_printf(mon, "'");
1041 static void memory_dump(Monitor *mon, int count, int format, int wsize,
1042 target_phys_addr_t addr, int is_physical)
1044 CPUState *env;
1045 int l, line_size, i, max_digits, len;
1046 uint8_t buf[16];
1047 uint64_t v;
1049 if (format == 'i') {
1050 int flags;
1051 flags = 0;
1052 env = mon_get_cpu();
1053 #ifdef TARGET_I386
1054 if (wsize == 2) {
1055 flags = 1;
1056 } else if (wsize == 4) {
1057 flags = 0;
1058 } else {
1059 /* as default we use the current CS size */
1060 flags = 0;
1061 if (env) {
1062 #ifdef TARGET_X86_64
1063 if ((env->efer & MSR_EFER_LMA) &&
1064 (env->segs[R_CS].flags & DESC_L_MASK))
1065 flags = 2;
1066 else
1067 #endif
1068 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1069 flags = 1;
1072 #endif
1073 monitor_disas(mon, env, addr, count, is_physical, flags);
1074 return;
1077 len = wsize * count;
1078 if (wsize == 1)
1079 line_size = 8;
1080 else
1081 line_size = 16;
1082 max_digits = 0;
1084 switch(format) {
1085 case 'o':
1086 max_digits = (wsize * 8 + 2) / 3;
1087 break;
1088 default:
1089 case 'x':
1090 max_digits = (wsize * 8) / 4;
1091 break;
1092 case 'u':
1093 case 'd':
1094 max_digits = (wsize * 8 * 10 + 32) / 33;
1095 break;
1096 case 'c':
1097 wsize = 1;
1098 break;
1101 while (len > 0) {
1102 if (is_physical)
1103 monitor_printf(mon, TARGET_FMT_plx ":", addr);
1104 else
1105 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
1106 l = len;
1107 if (l > line_size)
1108 l = line_size;
1109 if (is_physical) {
1110 cpu_physical_memory_read(addr, buf, l);
1111 } else {
1112 env = mon_get_cpu();
1113 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
1114 monitor_printf(mon, " Cannot access memory\n");
1115 break;
1118 i = 0;
1119 while (i < l) {
1120 switch(wsize) {
1121 default:
1122 case 1:
1123 v = ldub_raw(buf + i);
1124 break;
1125 case 2:
1126 v = lduw_raw(buf + i);
1127 break;
1128 case 4:
1129 v = (uint32_t)ldl_raw(buf + i);
1130 break;
1131 case 8:
1132 v = ldq_raw(buf + i);
1133 break;
1135 monitor_printf(mon, " ");
1136 switch(format) {
1137 case 'o':
1138 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
1139 break;
1140 case 'x':
1141 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
1142 break;
1143 case 'u':
1144 monitor_printf(mon, "%*" PRIu64, max_digits, v);
1145 break;
1146 case 'd':
1147 monitor_printf(mon, "%*" PRId64, max_digits, v);
1148 break;
1149 case 'c':
1150 monitor_printc(mon, v);
1151 break;
1153 i += wsize;
1155 monitor_printf(mon, "\n");
1156 addr += l;
1157 len -= l;
1161 static void do_memory_dump(Monitor *mon, const QDict *qdict)
1163 int count = qdict_get_int(qdict, "count");
1164 int format = qdict_get_int(qdict, "format");
1165 int size = qdict_get_int(qdict, "size");
1166 target_long addr = qdict_get_int(qdict, "addr");
1168 memory_dump(mon, count, format, size, addr, 0);
1171 static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
1173 int count = qdict_get_int(qdict, "count");
1174 int format = qdict_get_int(qdict, "format");
1175 int size = qdict_get_int(qdict, "size");
1176 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
1178 memory_dump(mon, count, format, size, addr, 1);
1181 static void do_print(Monitor *mon, const QDict *qdict)
1183 int format = qdict_get_int(qdict, "format");
1184 target_phys_addr_t val = qdict_get_int(qdict, "val");
1186 #if TARGET_PHYS_ADDR_BITS == 32
1187 switch(format) {
1188 case 'o':
1189 monitor_printf(mon, "%#o", val);
1190 break;
1191 case 'x':
1192 monitor_printf(mon, "%#x", val);
1193 break;
1194 case 'u':
1195 monitor_printf(mon, "%u", val);
1196 break;
1197 default:
1198 case 'd':
1199 monitor_printf(mon, "%d", val);
1200 break;
1201 case 'c':
1202 monitor_printc(mon, val);
1203 break;
1205 #else
1206 switch(format) {
1207 case 'o':
1208 monitor_printf(mon, "%#" PRIo64, val);
1209 break;
1210 case 'x':
1211 monitor_printf(mon, "%#" PRIx64, val);
1212 break;
1213 case 'u':
1214 monitor_printf(mon, "%" PRIu64, val);
1215 break;
1216 default:
1217 case 'd':
1218 monitor_printf(mon, "%" PRId64, val);
1219 break;
1220 case 'c':
1221 monitor_printc(mon, val);
1222 break;
1224 #endif
1225 monitor_printf(mon, "\n");
1228 static void do_sum(Monitor *mon, const QDict *qdict)
1230 uint32_t addr;
1231 uint16_t sum;
1232 uint32_t start = qdict_get_int(qdict, "start");
1233 uint32_t size = qdict_get_int(qdict, "size");
1235 sum = 0;
1236 for(addr = start; addr < (start + size); addr++) {
1237 uint8_t val = ldub_phys(addr);
1238 /* BSD sum algorithm ('sum' Unix command) */
1239 sum = (sum >> 1) | (sum << 15);
1240 sum += val;
1242 monitor_printf(mon, "%05d\n", sum);
1245 typedef struct {
1246 int keycode;
1247 const char *name;
1248 } KeyDef;
1250 static const KeyDef key_defs[] = {
1251 { 0x2a, "shift" },
1252 { 0x36, "shift_r" },
1254 { 0x38, "alt" },
1255 { 0xb8, "alt_r" },
1256 { 0x64, "altgr" },
1257 { 0xe4, "altgr_r" },
1258 { 0x1d, "ctrl" },
1259 { 0x9d, "ctrl_r" },
1261 { 0xdd, "menu" },
1263 { 0x01, "esc" },
1265 { 0x02, "1" },
1266 { 0x03, "2" },
1267 { 0x04, "3" },
1268 { 0x05, "4" },
1269 { 0x06, "5" },
1270 { 0x07, "6" },
1271 { 0x08, "7" },
1272 { 0x09, "8" },
1273 { 0x0a, "9" },
1274 { 0x0b, "0" },
1275 { 0x0c, "minus" },
1276 { 0x0d, "equal" },
1277 { 0x0e, "backspace" },
1279 { 0x0f, "tab" },
1280 { 0x10, "q" },
1281 { 0x11, "w" },
1282 { 0x12, "e" },
1283 { 0x13, "r" },
1284 { 0x14, "t" },
1285 { 0x15, "y" },
1286 { 0x16, "u" },
1287 { 0x17, "i" },
1288 { 0x18, "o" },
1289 { 0x19, "p" },
1290 { 0x1a, "bracket_left" },
1291 { 0x1b, "bracket_right" },
1292 { 0x1c, "ret" },
1294 { 0x1e, "a" },
1295 { 0x1f, "s" },
1296 { 0x20, "d" },
1297 { 0x21, "f" },
1298 { 0x22, "g" },
1299 { 0x23, "h" },
1300 { 0x24, "j" },
1301 { 0x25, "k" },
1302 { 0x26, "l" },
1303 { 0x27, "semicolon" },
1304 { 0x28, "apostrophe" },
1305 { 0x29, "grave_accent" },
1307 { 0x2b, "backslash" },
1308 { 0x2c, "z" },
1309 { 0x2d, "x" },
1310 { 0x2e, "c" },
1311 { 0x2f, "v" },
1312 { 0x30, "b" },
1313 { 0x31, "n" },
1314 { 0x32, "m" },
1315 { 0x33, "comma" },
1316 { 0x34, "dot" },
1317 { 0x35, "slash" },
1319 { 0x37, "asterisk" },
1321 { 0x39, "spc" },
1322 { 0x3a, "caps_lock" },
1323 { 0x3b, "f1" },
1324 { 0x3c, "f2" },
1325 { 0x3d, "f3" },
1326 { 0x3e, "f4" },
1327 { 0x3f, "f5" },
1328 { 0x40, "f6" },
1329 { 0x41, "f7" },
1330 { 0x42, "f8" },
1331 { 0x43, "f9" },
1332 { 0x44, "f10" },
1333 { 0x45, "num_lock" },
1334 { 0x46, "scroll_lock" },
1336 { 0xb5, "kp_divide" },
1337 { 0x37, "kp_multiply" },
1338 { 0x4a, "kp_subtract" },
1339 { 0x4e, "kp_add" },
1340 { 0x9c, "kp_enter" },
1341 { 0x53, "kp_decimal" },
1342 { 0x54, "sysrq" },
1344 { 0x52, "kp_0" },
1345 { 0x4f, "kp_1" },
1346 { 0x50, "kp_2" },
1347 { 0x51, "kp_3" },
1348 { 0x4b, "kp_4" },
1349 { 0x4c, "kp_5" },
1350 { 0x4d, "kp_6" },
1351 { 0x47, "kp_7" },
1352 { 0x48, "kp_8" },
1353 { 0x49, "kp_9" },
1355 { 0x56, "<" },
1357 { 0x57, "f11" },
1358 { 0x58, "f12" },
1360 { 0xb7, "print" },
1362 { 0xc7, "home" },
1363 { 0xc9, "pgup" },
1364 { 0xd1, "pgdn" },
1365 { 0xcf, "end" },
1367 { 0xcb, "left" },
1368 { 0xc8, "up" },
1369 { 0xd0, "down" },
1370 { 0xcd, "right" },
1372 { 0xd2, "insert" },
1373 { 0xd3, "delete" },
1374 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1375 { 0xf0, "stop" },
1376 { 0xf1, "again" },
1377 { 0xf2, "props" },
1378 { 0xf3, "undo" },
1379 { 0xf4, "front" },
1380 { 0xf5, "copy" },
1381 { 0xf6, "open" },
1382 { 0xf7, "paste" },
1383 { 0xf8, "find" },
1384 { 0xf9, "cut" },
1385 { 0xfa, "lf" },
1386 { 0xfb, "help" },
1387 { 0xfc, "meta_l" },
1388 { 0xfd, "meta_r" },
1389 { 0xfe, "compose" },
1390 #endif
1391 { 0, NULL },
1394 static int get_keycode(const char *key)
1396 const KeyDef *p;
1397 char *endp;
1398 int ret;
1400 for(p = key_defs; p->name != NULL; p++) {
1401 if (!strcmp(key, p->name))
1402 return p->keycode;
1404 if (strstart(key, "0x", NULL)) {
1405 ret = strtoul(key, &endp, 0);
1406 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1407 return ret;
1409 return -1;
1412 #define MAX_KEYCODES 16
1413 static uint8_t keycodes[MAX_KEYCODES];
1414 static int nb_pending_keycodes;
1415 static QEMUTimer *key_timer;
1417 static void release_keys(void *opaque)
1419 int keycode;
1421 while (nb_pending_keycodes > 0) {
1422 nb_pending_keycodes--;
1423 keycode = keycodes[nb_pending_keycodes];
1424 if (keycode & 0x80)
1425 kbd_put_keycode(0xe0);
1426 kbd_put_keycode(keycode | 0x80);
1430 static void do_sendkey(Monitor *mon, const QDict *qdict)
1432 char keyname_buf[16];
1433 char *separator;
1434 int keyname_len, keycode, i;
1435 const char *string = qdict_get_str(qdict, "string");
1436 int has_hold_time = qdict_haskey(qdict, "hold_time");
1437 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
1439 if (nb_pending_keycodes > 0) {
1440 qemu_del_timer(key_timer);
1441 release_keys(NULL);
1443 if (!has_hold_time)
1444 hold_time = 100;
1445 i = 0;
1446 while (1) {
1447 separator = strchr(string, '-');
1448 keyname_len = separator ? separator - string : strlen(string);
1449 if (keyname_len > 0) {
1450 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1451 if (keyname_len > sizeof(keyname_buf) - 1) {
1452 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
1453 return;
1455 if (i == MAX_KEYCODES) {
1456 monitor_printf(mon, "too many keys\n");
1457 return;
1459 keyname_buf[keyname_len] = 0;
1460 keycode = get_keycode(keyname_buf);
1461 if (keycode < 0) {
1462 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
1463 return;
1465 keycodes[i++] = keycode;
1467 if (!separator)
1468 break;
1469 string = separator + 1;
1471 nb_pending_keycodes = i;
1472 /* key down events */
1473 for (i = 0; i < nb_pending_keycodes; i++) {
1474 keycode = keycodes[i];
1475 if (keycode & 0x80)
1476 kbd_put_keycode(0xe0);
1477 kbd_put_keycode(keycode & 0x7f);
1479 /* delayed key up events */
1480 qemu_mod_timer(key_timer, qemu_get_clock_ns(vm_clock) +
1481 muldiv64(get_ticks_per_sec(), hold_time, 1000));
1484 static int mouse_button_state;
1486 static void do_mouse_move(Monitor *mon, const QDict *qdict)
1488 int dx, dy, dz;
1489 const char *dx_str = qdict_get_str(qdict, "dx_str");
1490 const char *dy_str = qdict_get_str(qdict, "dy_str");
1491 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1492 dx = strtol(dx_str, NULL, 0);
1493 dy = strtol(dy_str, NULL, 0);
1494 dz = 0;
1495 if (dz_str)
1496 dz = strtol(dz_str, NULL, 0);
1497 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1500 static void do_mouse_button(Monitor *mon, const QDict *qdict)
1502 int button_state = qdict_get_int(qdict, "button_state");
1503 mouse_button_state = button_state;
1504 kbd_mouse_event(0, 0, 0, mouse_button_state);
1507 static void do_ioport_read(Monitor *mon, const QDict *qdict)
1509 int size = qdict_get_int(qdict, "size");
1510 int addr = qdict_get_int(qdict, "addr");
1511 int has_index = qdict_haskey(qdict, "index");
1512 uint32_t val;
1513 int suffix;
1515 if (has_index) {
1516 int index = qdict_get_int(qdict, "index");
1517 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
1518 addr++;
1520 addr &= 0xffff;
1522 switch(size) {
1523 default:
1524 case 1:
1525 val = cpu_inb(addr);
1526 suffix = 'b';
1527 break;
1528 case 2:
1529 val = cpu_inw(addr);
1530 suffix = 'w';
1531 break;
1532 case 4:
1533 val = cpu_inl(addr);
1534 suffix = 'l';
1535 break;
1537 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1538 suffix, addr, size * 2, val);
1541 static void do_ioport_write(Monitor *mon, const QDict *qdict)
1543 int size = qdict_get_int(qdict, "size");
1544 int addr = qdict_get_int(qdict, "addr");
1545 int val = qdict_get_int(qdict, "val");
1547 addr &= IOPORTS_MASK;
1549 switch (size) {
1550 default:
1551 case 1:
1552 cpu_outb(addr, val);
1553 break;
1554 case 2:
1555 cpu_outw(addr, val);
1556 break;
1557 case 4:
1558 cpu_outl(addr, val);
1559 break;
1563 static void do_boot_set(Monitor *mon, const QDict *qdict)
1565 int res;
1566 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1568 res = qemu_boot_set(bootdevice);
1569 if (res == 0) {
1570 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1571 } else if (res > 0) {
1572 monitor_printf(mon, "setting boot device list failed\n");
1573 } else {
1574 monitor_printf(mon, "no function defined to set boot device list for "
1575 "this architecture\n");
1579 #if defined(TARGET_I386)
1580 static void print_pte(Monitor *mon, target_phys_addr_t addr,
1581 target_phys_addr_t pte,
1582 target_phys_addr_t mask)
1584 #ifdef TARGET_X86_64
1585 if (addr & (1ULL << 47)) {
1586 addr |= -1LL << 48;
1588 #endif
1589 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1590 " %c%c%c%c%c%c%c%c%c\n",
1591 addr,
1592 pte & mask,
1593 pte & PG_NX_MASK ? 'X' : '-',
1594 pte & PG_GLOBAL_MASK ? 'G' : '-',
1595 pte & PG_PSE_MASK ? 'P' : '-',
1596 pte & PG_DIRTY_MASK ? 'D' : '-',
1597 pte & PG_ACCESSED_MASK ? 'A' : '-',
1598 pte & PG_PCD_MASK ? 'C' : '-',
1599 pte & PG_PWT_MASK ? 'T' : '-',
1600 pte & PG_USER_MASK ? 'U' : '-',
1601 pte & PG_RW_MASK ? 'W' : '-');
1604 static void tlb_info_32(Monitor *mon, CPUState *env)
1606 unsigned int l1, l2;
1607 uint32_t pgd, pde, pte;
1609 pgd = env->cr[3] & ~0xfff;
1610 for(l1 = 0; l1 < 1024; l1++) {
1611 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
1612 pde = le32_to_cpu(pde);
1613 if (pde & PG_PRESENT_MASK) {
1614 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1615 /* 4M pages */
1616 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
1617 } else {
1618 for(l2 = 0; l2 < 1024; l2++) {
1619 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
1620 pte = le32_to_cpu(pte);
1621 if (pte & PG_PRESENT_MASK) {
1622 print_pte(mon, (l1 << 22) + (l2 << 12),
1623 pte & ~PG_PSE_MASK,
1624 ~0xfff);
1632 static void tlb_info_pae32(Monitor *mon, CPUState *env)
1634 unsigned int l1, l2, l3;
1635 uint64_t pdpe, pde, pte;
1636 uint64_t pdp_addr, pd_addr, pt_addr;
1638 pdp_addr = env->cr[3] & ~0x1f;
1639 for (l1 = 0; l1 < 4; l1++) {
1640 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
1641 pdpe = le64_to_cpu(pdpe);
1642 if (pdpe & PG_PRESENT_MASK) {
1643 pd_addr = pdpe & 0x3fffffffff000ULL;
1644 for (l2 = 0; l2 < 512; l2++) {
1645 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
1646 pde = le64_to_cpu(pde);
1647 if (pde & PG_PRESENT_MASK) {
1648 if (pde & PG_PSE_MASK) {
1649 /* 2M pages with PAE, CR4.PSE is ignored */
1650 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
1651 ~((target_phys_addr_t)(1 << 20) - 1));
1652 } else {
1653 pt_addr = pde & 0x3fffffffff000ULL;
1654 for (l3 = 0; l3 < 512; l3++) {
1655 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
1656 pte = le64_to_cpu(pte);
1657 if (pte & PG_PRESENT_MASK) {
1658 print_pte(mon, (l1 << 30 ) + (l2 << 21)
1659 + (l3 << 12),
1660 pte & ~PG_PSE_MASK,
1661 ~(target_phys_addr_t)0xfff);
1671 #ifdef TARGET_X86_64
1672 static void tlb_info_64(Monitor *mon, CPUState *env)
1674 uint64_t l1, l2, l3, l4;
1675 uint64_t pml4e, pdpe, pde, pte;
1676 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
1678 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1679 for (l1 = 0; l1 < 512; l1++) {
1680 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
1681 pml4e = le64_to_cpu(pml4e);
1682 if (pml4e & PG_PRESENT_MASK) {
1683 pdp_addr = pml4e & 0x3fffffffff000ULL;
1684 for (l2 = 0; l2 < 512; l2++) {
1685 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
1686 pdpe = le64_to_cpu(pdpe);
1687 if (pdpe & PG_PRESENT_MASK) {
1688 if (pdpe & PG_PSE_MASK) {
1689 /* 1G pages, CR4.PSE is ignored */
1690 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
1691 0x3ffffc0000000ULL);
1692 } else {
1693 pd_addr = pdpe & 0x3fffffffff000ULL;
1694 for (l3 = 0; l3 < 512; l3++) {
1695 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
1696 pde = le64_to_cpu(pde);
1697 if (pde & PG_PRESENT_MASK) {
1698 if (pde & PG_PSE_MASK) {
1699 /* 2M pages, CR4.PSE is ignored */
1700 print_pte(mon, (l1 << 39) + (l2 << 30) +
1701 (l3 << 21), pde,
1702 0x3ffffffe00000ULL);
1703 } else {
1704 pt_addr = pde & 0x3fffffffff000ULL;
1705 for (l4 = 0; l4 < 512; l4++) {
1706 cpu_physical_memory_read(pt_addr
1707 + l4 * 8,
1708 &pte, 8);
1709 pte = le64_to_cpu(pte);
1710 if (pte & PG_PRESENT_MASK) {
1711 print_pte(mon, (l1 << 39) +
1712 (l2 << 30) +
1713 (l3 << 21) + (l4 << 12),
1714 pte & ~PG_PSE_MASK,
1715 0x3fffffffff000ULL);
1727 #endif
1729 static void tlb_info(Monitor *mon)
1731 CPUState *env;
1733 env = mon_get_cpu();
1735 if (!(env->cr[0] & CR0_PG_MASK)) {
1736 monitor_printf(mon, "PG disabled\n");
1737 return;
1739 if (env->cr[4] & CR4_PAE_MASK) {
1740 #ifdef TARGET_X86_64
1741 if (env->hflags & HF_LMA_MASK) {
1742 tlb_info_64(mon, env);
1743 } else
1744 #endif
1746 tlb_info_pae32(mon, env);
1748 } else {
1749 tlb_info_32(mon, env);
1753 static void mem_print(Monitor *mon, target_phys_addr_t *pstart,
1754 int *plast_prot,
1755 target_phys_addr_t end, int prot)
1757 int prot1;
1758 prot1 = *plast_prot;
1759 if (prot != prot1) {
1760 if (*pstart != -1) {
1761 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
1762 TARGET_FMT_plx " %c%c%c\n",
1763 *pstart, end, end - *pstart,
1764 prot1 & PG_USER_MASK ? 'u' : '-',
1765 'r',
1766 prot1 & PG_RW_MASK ? 'w' : '-');
1768 if (prot != 0)
1769 *pstart = end;
1770 else
1771 *pstart = -1;
1772 *plast_prot = prot;
1776 static void mem_info_32(Monitor *mon, CPUState *env)
1778 unsigned int l1, l2;
1779 int prot, last_prot;
1780 uint32_t pgd, pde, pte;
1781 target_phys_addr_t start, end;
1783 pgd = env->cr[3] & ~0xfff;
1784 last_prot = 0;
1785 start = -1;
1786 for(l1 = 0; l1 < 1024; l1++) {
1787 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
1788 pde = le32_to_cpu(pde);
1789 end = l1 << 22;
1790 if (pde & PG_PRESENT_MASK) {
1791 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1792 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1793 mem_print(mon, &start, &last_prot, end, prot);
1794 } else {
1795 for(l2 = 0; l2 < 1024; l2++) {
1796 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
1797 pte = le32_to_cpu(pte);
1798 end = (l1 << 22) + (l2 << 12);
1799 if (pte & PG_PRESENT_MASK) {
1800 prot = pte & pde &
1801 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1802 } else {
1803 prot = 0;
1805 mem_print(mon, &start, &last_prot, end, prot);
1808 } else {
1809 prot = 0;
1810 mem_print(mon, &start, &last_prot, end, prot);
1813 /* Flush last range */
1814 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
1817 static void mem_info_pae32(Monitor *mon, CPUState *env)
1819 unsigned int l1, l2, l3;
1820 int prot, last_prot;
1821 uint64_t pdpe, pde, pte;
1822 uint64_t pdp_addr, pd_addr, pt_addr;
1823 target_phys_addr_t start, end;
1825 pdp_addr = env->cr[3] & ~0x1f;
1826 last_prot = 0;
1827 start = -1;
1828 for (l1 = 0; l1 < 4; l1++) {
1829 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
1830 pdpe = le64_to_cpu(pdpe);
1831 end = l1 << 30;
1832 if (pdpe & PG_PRESENT_MASK) {
1833 pd_addr = pdpe & 0x3fffffffff000ULL;
1834 for (l2 = 0; l2 < 512; l2++) {
1835 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
1836 pde = le64_to_cpu(pde);
1837 end = (l1 << 30) + (l2 << 21);
1838 if (pde & PG_PRESENT_MASK) {
1839 if (pde & PG_PSE_MASK) {
1840 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1841 PG_PRESENT_MASK);
1842 mem_print(mon, &start, &last_prot, end, prot);
1843 } else {
1844 pt_addr = pde & 0x3fffffffff000ULL;
1845 for (l3 = 0; l3 < 512; l3++) {
1846 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
1847 pte = le64_to_cpu(pte);
1848 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
1849 if (pte & PG_PRESENT_MASK) {
1850 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
1851 PG_PRESENT_MASK);
1852 } else {
1853 prot = 0;
1855 mem_print(mon, &start, &last_prot, end, prot);
1858 } else {
1859 prot = 0;
1860 mem_print(mon, &start, &last_prot, end, prot);
1863 } else {
1864 prot = 0;
1865 mem_print(mon, &start, &last_prot, end, prot);
1868 /* Flush last range */
1869 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
1873 #ifdef TARGET_X86_64
1874 static void mem_info_64(Monitor *mon, CPUState *env)
1876 int prot, last_prot;
1877 uint64_t l1, l2, l3, l4;
1878 uint64_t pml4e, pdpe, pde, pte;
1879 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
1881 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1882 last_prot = 0;
1883 start = -1;
1884 for (l1 = 0; l1 < 512; l1++) {
1885 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
1886 pml4e = le64_to_cpu(pml4e);
1887 end = l1 << 39;
1888 if (pml4e & PG_PRESENT_MASK) {
1889 pdp_addr = pml4e & 0x3fffffffff000ULL;
1890 for (l2 = 0; l2 < 512; l2++) {
1891 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
1892 pdpe = le64_to_cpu(pdpe);
1893 end = (l1 << 39) + (l2 << 30);
1894 if (pdpe & PG_PRESENT_MASK) {
1895 if (pdpe & PG_PSE_MASK) {
1896 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
1897 PG_PRESENT_MASK);
1898 prot &= pml4e;
1899 mem_print(mon, &start, &last_prot, end, prot);
1900 } else {
1901 pd_addr = pdpe & 0x3fffffffff000ULL;
1902 for (l3 = 0; l3 < 512; l3++) {
1903 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
1904 pde = le64_to_cpu(pde);
1905 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
1906 if (pde & PG_PRESENT_MASK) {
1907 if (pde & PG_PSE_MASK) {
1908 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1909 PG_PRESENT_MASK);
1910 prot &= pml4e & pdpe;
1911 mem_print(mon, &start, &last_prot, end, prot);
1912 } else {
1913 pt_addr = pde & 0x3fffffffff000ULL;
1914 for (l4 = 0; l4 < 512; l4++) {
1915 cpu_physical_memory_read(pt_addr
1916 + l4 * 8,
1917 &pte, 8);
1918 pte = le64_to_cpu(pte);
1919 end = (l1 << 39) + (l2 << 30) +
1920 (l3 << 21) + (l4 << 12);
1921 if (pte & PG_PRESENT_MASK) {
1922 prot = pte & (PG_USER_MASK | PG_RW_MASK |
1923 PG_PRESENT_MASK);
1924 prot &= pml4e & pdpe & pde;
1925 } else {
1926 prot = 0;
1928 mem_print(mon, &start, &last_prot, end, prot);
1931 } else {
1932 prot = 0;
1933 mem_print(mon, &start, &last_prot, end, prot);
1937 } else {
1938 prot = 0;
1939 mem_print(mon, &start, &last_prot, end, prot);
1942 } else {
1943 prot = 0;
1944 mem_print(mon, &start, &last_prot, end, prot);
1947 /* Flush last range */
1948 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 48, 0);
1950 #endif
1952 static void mem_info(Monitor *mon)
1954 CPUState *env;
1956 env = mon_get_cpu();
1958 if (!(env->cr[0] & CR0_PG_MASK)) {
1959 monitor_printf(mon, "PG disabled\n");
1960 return;
1962 if (env->cr[4] & CR4_PAE_MASK) {
1963 #ifdef TARGET_X86_64
1964 if (env->hflags & HF_LMA_MASK) {
1965 mem_info_64(mon, env);
1966 } else
1967 #endif
1969 mem_info_pae32(mon, env);
1971 } else {
1972 mem_info_32(mon, env);
1975 #endif
1977 #if defined(TARGET_SH4)
1979 static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
1981 monitor_printf(mon, " tlb%i:\t"
1982 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1983 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1984 "dirty=%hhu writethrough=%hhu\n",
1985 idx,
1986 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1987 tlb->v, tlb->sh, tlb->c, tlb->pr,
1988 tlb->d, tlb->wt);
1991 static void tlb_info(Monitor *mon)
1993 CPUState *env = mon_get_cpu();
1994 int i;
1996 monitor_printf (mon, "ITLB:\n");
1997 for (i = 0 ; i < ITLB_SIZE ; i++)
1998 print_tlb (mon, i, &env->itlb[i]);
1999 monitor_printf (mon, "UTLB:\n");
2000 for (i = 0 ; i < UTLB_SIZE ; i++)
2001 print_tlb (mon, i, &env->utlb[i]);
2004 #endif
2006 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
2007 static void tlb_info(Monitor *mon)
2009 CPUState *env1 = mon_get_cpu();
2011 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
2013 #endif
2015 static void do_info_mtree(Monitor *mon)
2017 mtree_info((fprintf_function)monitor_printf, mon);
2020 static void do_info_numa(Monitor *mon)
2022 int i;
2023 CPUState *env;
2025 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2026 for (i = 0; i < nb_numa_nodes; i++) {
2027 monitor_printf(mon, "node %d cpus:", i);
2028 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2029 if (env->numa_node == i) {
2030 monitor_printf(mon, " %d", env->cpu_index);
2033 monitor_printf(mon, "\n");
2034 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2035 node_mem[i] >> 20);
2039 #ifdef CONFIG_PROFILER
2041 int64_t qemu_time;
2042 int64_t dev_time;
2044 static void do_info_profile(Monitor *mon)
2046 int64_t total;
2047 total = qemu_time;
2048 if (total == 0)
2049 total = 1;
2050 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
2051 dev_time, dev_time / (double)get_ticks_per_sec());
2052 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
2053 qemu_time, qemu_time / (double)get_ticks_per_sec());
2054 qemu_time = 0;
2055 dev_time = 0;
2057 #else
2058 static void do_info_profile(Monitor *mon)
2060 monitor_printf(mon, "Internal profiler not compiled\n");
2062 #endif
2064 /* Capture support */
2065 static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
2067 static void do_info_capture(Monitor *mon)
2069 int i;
2070 CaptureState *s;
2072 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2073 monitor_printf(mon, "[%d]: ", i);
2074 s->ops.info (s->opaque);
2078 #ifdef HAS_AUDIO
2079 static void do_stop_capture(Monitor *mon, const QDict *qdict)
2081 int i;
2082 int n = qdict_get_int(qdict, "n");
2083 CaptureState *s;
2085 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2086 if (i == n) {
2087 s->ops.destroy (s->opaque);
2088 QLIST_REMOVE (s, entries);
2089 g_free (s);
2090 return;
2095 static void do_wav_capture(Monitor *mon, const QDict *qdict)
2097 const char *path = qdict_get_str(qdict, "path");
2098 int has_freq = qdict_haskey(qdict, "freq");
2099 int freq = qdict_get_try_int(qdict, "freq", -1);
2100 int has_bits = qdict_haskey(qdict, "bits");
2101 int bits = qdict_get_try_int(qdict, "bits", -1);
2102 int has_channels = qdict_haskey(qdict, "nchannels");
2103 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
2104 CaptureState *s;
2106 s = g_malloc0 (sizeof (*s));
2108 freq = has_freq ? freq : 44100;
2109 bits = has_bits ? bits : 16;
2110 nchannels = has_channels ? nchannels : 2;
2112 if (wav_start_capture (s, path, freq, bits, nchannels)) {
2113 monitor_printf(mon, "Failed to add wave capture\n");
2114 g_free (s);
2115 return;
2117 QLIST_INSERT_HEAD (&capture_head, s, entries);
2119 #endif
2121 static qemu_acl *find_acl(Monitor *mon, const char *name)
2123 qemu_acl *acl = qemu_acl_find(name);
2125 if (!acl) {
2126 monitor_printf(mon, "acl: unknown list '%s'\n", name);
2128 return acl;
2131 static void do_acl_show(Monitor *mon, const QDict *qdict)
2133 const char *aclname = qdict_get_str(qdict, "aclname");
2134 qemu_acl *acl = find_acl(mon, aclname);
2135 qemu_acl_entry *entry;
2136 int i = 0;
2138 if (acl) {
2139 monitor_printf(mon, "policy: %s\n",
2140 acl->defaultDeny ? "deny" : "allow");
2141 QTAILQ_FOREACH(entry, &acl->entries, next) {
2142 i++;
2143 monitor_printf(mon, "%d: %s %s\n", i,
2144 entry->deny ? "deny" : "allow", entry->match);
2149 static void do_acl_reset(Monitor *mon, const QDict *qdict)
2151 const char *aclname = qdict_get_str(qdict, "aclname");
2152 qemu_acl *acl = find_acl(mon, aclname);
2154 if (acl) {
2155 qemu_acl_reset(acl);
2156 monitor_printf(mon, "acl: removed all rules\n");
2160 static void do_acl_policy(Monitor *mon, const QDict *qdict)
2162 const char *aclname = qdict_get_str(qdict, "aclname");
2163 const char *policy = qdict_get_str(qdict, "policy");
2164 qemu_acl *acl = find_acl(mon, aclname);
2166 if (acl) {
2167 if (strcmp(policy, "allow") == 0) {
2168 acl->defaultDeny = 0;
2169 monitor_printf(mon, "acl: policy set to 'allow'\n");
2170 } else if (strcmp(policy, "deny") == 0) {
2171 acl->defaultDeny = 1;
2172 monitor_printf(mon, "acl: policy set to 'deny'\n");
2173 } else {
2174 monitor_printf(mon, "acl: unknown policy '%s', "
2175 "expected 'deny' or 'allow'\n", policy);
2180 static void do_acl_add(Monitor *mon, const QDict *qdict)
2182 const char *aclname = qdict_get_str(qdict, "aclname");
2183 const char *match = qdict_get_str(qdict, "match");
2184 const char *policy = qdict_get_str(qdict, "policy");
2185 int has_index = qdict_haskey(qdict, "index");
2186 int index = qdict_get_try_int(qdict, "index", -1);
2187 qemu_acl *acl = find_acl(mon, aclname);
2188 int deny, ret;
2190 if (acl) {
2191 if (strcmp(policy, "allow") == 0) {
2192 deny = 0;
2193 } else if (strcmp(policy, "deny") == 0) {
2194 deny = 1;
2195 } else {
2196 monitor_printf(mon, "acl: unknown policy '%s', "
2197 "expected 'deny' or 'allow'\n", policy);
2198 return;
2200 if (has_index)
2201 ret = qemu_acl_insert(acl, deny, match, index);
2202 else
2203 ret = qemu_acl_append(acl, deny, match);
2204 if (ret < 0)
2205 monitor_printf(mon, "acl: unable to add acl entry\n");
2206 else
2207 monitor_printf(mon, "acl: added rule at position %d\n", ret);
2211 static void do_acl_remove(Monitor *mon, const QDict *qdict)
2213 const char *aclname = qdict_get_str(qdict, "aclname");
2214 const char *match = qdict_get_str(qdict, "match");
2215 qemu_acl *acl = find_acl(mon, aclname);
2216 int ret;
2218 if (acl) {
2219 ret = qemu_acl_remove(acl, match);
2220 if (ret < 0)
2221 monitor_printf(mon, "acl: no matching acl entry\n");
2222 else
2223 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
2227 #if defined(TARGET_I386)
2228 static void do_inject_mce(Monitor *mon, const QDict *qdict)
2230 CPUState *cenv;
2231 int cpu_index = qdict_get_int(qdict, "cpu_index");
2232 int bank = qdict_get_int(qdict, "bank");
2233 uint64_t status = qdict_get_int(qdict, "status");
2234 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2235 uint64_t addr = qdict_get_int(qdict, "addr");
2236 uint64_t misc = qdict_get_int(qdict, "misc");
2237 int flags = MCE_INJECT_UNCOND_AO;
2239 if (qdict_get_try_bool(qdict, "broadcast", 0)) {
2240 flags |= MCE_INJECT_BROADCAST;
2242 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu) {
2243 if (cenv->cpu_index == cpu_index) {
2244 cpu_x86_inject_mce(mon, cenv, bank, status, mcg_status, addr, misc,
2245 flags);
2246 break;
2250 #endif
2252 static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2254 const char *fdname = qdict_get_str(qdict, "fdname");
2255 mon_fd_t *monfd;
2256 int fd;
2258 fd = qemu_chr_fe_get_msgfd(mon->chr);
2259 if (fd == -1) {
2260 qerror_report(QERR_FD_NOT_SUPPLIED);
2261 return -1;
2264 if (qemu_isdigit(fdname[0])) {
2265 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2266 "a name not starting with a digit");
2267 return -1;
2270 QLIST_FOREACH(monfd, &mon->fds, next) {
2271 if (strcmp(monfd->name, fdname) != 0) {
2272 continue;
2275 close(monfd->fd);
2276 monfd->fd = fd;
2277 return 0;
2280 monfd = g_malloc0(sizeof(mon_fd_t));
2281 monfd->name = g_strdup(fdname);
2282 monfd->fd = fd;
2284 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
2285 return 0;
2288 static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2290 const char *fdname = qdict_get_str(qdict, "fdname");
2291 mon_fd_t *monfd;
2293 QLIST_FOREACH(monfd, &mon->fds, next) {
2294 if (strcmp(monfd->name, fdname) != 0) {
2295 continue;
2298 QLIST_REMOVE(monfd, next);
2299 close(monfd->fd);
2300 g_free(monfd->name);
2301 g_free(monfd);
2302 return 0;
2305 qerror_report(QERR_FD_NOT_FOUND, fdname);
2306 return -1;
2309 static void do_loadvm(Monitor *mon, const QDict *qdict)
2311 int saved_vm_running = runstate_is_running();
2312 const char *name = qdict_get_str(qdict, "name");
2314 vm_stop(RUN_STATE_RESTORE_VM);
2316 if (load_vmstate(name) == 0 && saved_vm_running) {
2317 vm_start();
2321 int monitor_get_fd(Monitor *mon, const char *fdname)
2323 mon_fd_t *monfd;
2325 QLIST_FOREACH(monfd, &mon->fds, next) {
2326 int fd;
2328 if (strcmp(monfd->name, fdname) != 0) {
2329 continue;
2332 fd = monfd->fd;
2334 /* caller takes ownership of fd */
2335 QLIST_REMOVE(monfd, next);
2336 g_free(monfd->name);
2337 g_free(monfd);
2339 return fd;
2342 return -1;
2345 /* mon_cmds and info_cmds would be sorted at runtime */
2346 static mon_cmd_t mon_cmds[] = {
2347 #include "hmp-commands.h"
2348 { NULL, NULL, },
2351 /* Please update hmp-commands.hx when adding or changing commands */
2352 static mon_cmd_t info_cmds[] = {
2354 .name = "version",
2355 .args_type = "",
2356 .params = "",
2357 .help = "show the version of QEMU",
2358 .mhandler.info = hmp_info_version,
2361 .name = "network",
2362 .args_type = "",
2363 .params = "",
2364 .help = "show the network state",
2365 .mhandler.info = do_info_network,
2368 .name = "chardev",
2369 .args_type = "",
2370 .params = "",
2371 .help = "show the character devices",
2372 .mhandler.info = hmp_info_chardev,
2375 .name = "block",
2376 .args_type = "",
2377 .params = "",
2378 .help = "show the block devices",
2379 .mhandler.info = hmp_info_block,
2382 .name = "blockstats",
2383 .args_type = "",
2384 .params = "",
2385 .help = "show block device statistics",
2386 .mhandler.info = hmp_info_blockstats,
2389 .name = "registers",
2390 .args_type = "",
2391 .params = "",
2392 .help = "show the cpu registers",
2393 .mhandler.info = do_info_registers,
2396 .name = "cpus",
2397 .args_type = "",
2398 .params = "",
2399 .help = "show infos for each CPU",
2400 .mhandler.info = hmp_info_cpus,
2403 .name = "history",
2404 .args_type = "",
2405 .params = "",
2406 .help = "show the command line history",
2407 .mhandler.info = do_info_history,
2409 #if defined(TARGET_I386) || defined(TARGET_PPC) || defined(TARGET_MIPS) || \
2410 defined(TARGET_LM32) || (defined(TARGET_SPARC) && !defined(TARGET_SPARC64))
2412 .name = "irq",
2413 .args_type = "",
2414 .params = "",
2415 .help = "show the interrupts statistics (if available)",
2416 #ifdef TARGET_SPARC
2417 .mhandler.info = sun4m_irq_info,
2418 #elif defined(TARGET_LM32)
2419 .mhandler.info = lm32_irq_info,
2420 #else
2421 .mhandler.info = irq_info,
2422 #endif
2425 .name = "pic",
2426 .args_type = "",
2427 .params = "",
2428 .help = "show i8259 (PIC) state",
2429 #ifdef TARGET_SPARC
2430 .mhandler.info = sun4m_pic_info,
2431 #elif defined(TARGET_LM32)
2432 .mhandler.info = lm32_do_pic_info,
2433 #else
2434 .mhandler.info = pic_info,
2435 #endif
2437 #endif
2439 .name = "pci",
2440 .args_type = "",
2441 .params = "",
2442 .help = "show PCI info",
2443 .mhandler.info = hmp_info_pci,
2445 #if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \
2446 defined(TARGET_PPC)
2448 .name = "tlb",
2449 .args_type = "",
2450 .params = "",
2451 .help = "show virtual to physical memory mappings",
2452 .mhandler.info = tlb_info,
2454 #endif
2455 #if defined(TARGET_I386)
2457 .name = "mem",
2458 .args_type = "",
2459 .params = "",
2460 .help = "show the active virtual memory mappings",
2461 .mhandler.info = mem_info,
2463 #endif
2465 .name = "mtree",
2466 .args_type = "",
2467 .params = "",
2468 .help = "show memory tree",
2469 .mhandler.info = do_info_mtree,
2472 .name = "jit",
2473 .args_type = "",
2474 .params = "",
2475 .help = "show dynamic compiler info",
2476 .mhandler.info = do_info_jit,
2479 .name = "kvm",
2480 .args_type = "",
2481 .params = "",
2482 .help = "show KVM information",
2483 .mhandler.info = hmp_info_kvm,
2486 .name = "numa",
2487 .args_type = "",
2488 .params = "",
2489 .help = "show NUMA information",
2490 .mhandler.info = do_info_numa,
2493 .name = "usb",
2494 .args_type = "",
2495 .params = "",
2496 .help = "show guest USB devices",
2497 .mhandler.info = usb_info,
2500 .name = "usbhost",
2501 .args_type = "",
2502 .params = "",
2503 .help = "show host USB devices",
2504 .mhandler.info = usb_host_info,
2507 .name = "profile",
2508 .args_type = "",
2509 .params = "",
2510 .help = "show profiling information",
2511 .mhandler.info = do_info_profile,
2514 .name = "capture",
2515 .args_type = "",
2516 .params = "",
2517 .help = "show capture information",
2518 .mhandler.info = do_info_capture,
2521 .name = "snapshots",
2522 .args_type = "",
2523 .params = "",
2524 .help = "show the currently saved VM snapshots",
2525 .mhandler.info = do_info_snapshots,
2528 .name = "status",
2529 .args_type = "",
2530 .params = "",
2531 .help = "show the current VM status (running|paused)",
2532 .mhandler.info = hmp_info_status,
2535 .name = "pcmcia",
2536 .args_type = "",
2537 .params = "",
2538 .help = "show guest PCMCIA status",
2539 .mhandler.info = pcmcia_info,
2542 .name = "mice",
2543 .args_type = "",
2544 .params = "",
2545 .help = "show which guest mouse is receiving events",
2546 .mhandler.info = hmp_info_mice,
2549 .name = "vnc",
2550 .args_type = "",
2551 .params = "",
2552 .help = "show the vnc server status",
2553 .mhandler.info = hmp_info_vnc,
2555 #if defined(CONFIG_SPICE)
2557 .name = "spice",
2558 .args_type = "",
2559 .params = "",
2560 .help = "show the spice server status",
2561 .mhandler.info = hmp_info_spice,
2563 #endif
2565 .name = "name",
2566 .args_type = "",
2567 .params = "",
2568 .help = "show the current VM name",
2569 .mhandler.info = hmp_info_name,
2572 .name = "uuid",
2573 .args_type = "",
2574 .params = "",
2575 .help = "show the current VM UUID",
2576 .mhandler.info = hmp_info_uuid,
2578 #if defined(TARGET_PPC)
2580 .name = "cpustats",
2581 .args_type = "",
2582 .params = "",
2583 .help = "show CPU statistics",
2584 .mhandler.info = do_info_cpu_stats,
2586 #endif
2587 #if defined(CONFIG_SLIRP)
2589 .name = "usernet",
2590 .args_type = "",
2591 .params = "",
2592 .help = "show user network stack connection states",
2593 .mhandler.info = do_info_usernet,
2595 #endif
2597 .name = "migrate",
2598 .args_type = "",
2599 .params = "",
2600 .help = "show migration status",
2601 .mhandler.info = hmp_info_migrate,
2604 .name = "balloon",
2605 .args_type = "",
2606 .params = "",
2607 .help = "show balloon information",
2608 .mhandler.info = hmp_info_balloon,
2611 .name = "qtree",
2612 .args_type = "",
2613 .params = "",
2614 .help = "show device tree",
2615 .mhandler.info = do_info_qtree,
2618 .name = "qdm",
2619 .args_type = "",
2620 .params = "",
2621 .help = "show qdev device model list",
2622 .mhandler.info = do_info_qdm,
2625 .name = "roms",
2626 .args_type = "",
2627 .params = "",
2628 .help = "show roms",
2629 .mhandler.info = do_info_roms,
2631 #if defined(CONFIG_TRACE_SIMPLE)
2633 .name = "trace",
2634 .args_type = "",
2635 .params = "",
2636 .help = "show current contents of trace buffer",
2637 .mhandler.info = do_info_trace,
2639 #endif
2641 .name = "trace-events",
2642 .args_type = "",
2643 .params = "",
2644 .help = "show available trace-events & their state",
2645 .mhandler.info = do_trace_print_events,
2648 .name = NULL,
2652 static const mon_cmd_t qmp_cmds[] = {
2653 #include "qmp-commands-old.h"
2654 { /* NULL */ },
2657 /*******************************************************************/
2659 static const char *pch;
2660 static jmp_buf expr_env;
2662 #define MD_TLONG 0
2663 #define MD_I32 1
2665 typedef struct MonitorDef {
2666 const char *name;
2667 int offset;
2668 target_long (*get_value)(const struct MonitorDef *md, int val);
2669 int type;
2670 } MonitorDef;
2672 #if defined(TARGET_I386)
2673 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
2675 CPUState *env = mon_get_cpu();
2676 return env->eip + env->segs[R_CS].base;
2678 #endif
2680 #if defined(TARGET_PPC)
2681 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
2683 CPUState *env = mon_get_cpu();
2684 unsigned int u;
2685 int i;
2687 u = 0;
2688 for (i = 0; i < 8; i++)
2689 u |= env->crf[i] << (32 - (4 * i));
2691 return u;
2694 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
2696 CPUState *env = mon_get_cpu();
2697 return env->msr;
2700 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
2702 CPUState *env = mon_get_cpu();
2703 return env->xer;
2706 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
2708 CPUState *env = mon_get_cpu();
2709 return cpu_ppc_load_decr(env);
2712 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
2714 CPUState *env = mon_get_cpu();
2715 return cpu_ppc_load_tbu(env);
2718 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
2720 CPUState *env = mon_get_cpu();
2721 return cpu_ppc_load_tbl(env);
2723 #endif
2725 #if defined(TARGET_SPARC)
2726 #ifndef TARGET_SPARC64
2727 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
2729 CPUState *env = mon_get_cpu();
2731 return cpu_get_psr(env);
2733 #endif
2735 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
2737 CPUState *env = mon_get_cpu();
2738 return env->regwptr[val];
2740 #endif
2742 static const MonitorDef monitor_defs[] = {
2743 #ifdef TARGET_I386
2745 #define SEG(name, seg) \
2746 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
2747 { name ".base", offsetof(CPUState, segs[seg].base) },\
2748 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
2750 { "eax", offsetof(CPUState, regs[0]) },
2751 { "ecx", offsetof(CPUState, regs[1]) },
2752 { "edx", offsetof(CPUState, regs[2]) },
2753 { "ebx", offsetof(CPUState, regs[3]) },
2754 { "esp|sp", offsetof(CPUState, regs[4]) },
2755 { "ebp|fp", offsetof(CPUState, regs[5]) },
2756 { "esi", offsetof(CPUState, regs[6]) },
2757 { "edi", offsetof(CPUState, regs[7]) },
2758 #ifdef TARGET_X86_64
2759 { "r8", offsetof(CPUState, regs[8]) },
2760 { "r9", offsetof(CPUState, regs[9]) },
2761 { "r10", offsetof(CPUState, regs[10]) },
2762 { "r11", offsetof(CPUState, regs[11]) },
2763 { "r12", offsetof(CPUState, regs[12]) },
2764 { "r13", offsetof(CPUState, regs[13]) },
2765 { "r14", offsetof(CPUState, regs[14]) },
2766 { "r15", offsetof(CPUState, regs[15]) },
2767 #endif
2768 { "eflags", offsetof(CPUState, eflags) },
2769 { "eip", offsetof(CPUState, eip) },
2770 SEG("cs", R_CS)
2771 SEG("ds", R_DS)
2772 SEG("es", R_ES)
2773 SEG("ss", R_SS)
2774 SEG("fs", R_FS)
2775 SEG("gs", R_GS)
2776 { "pc", 0, monitor_get_pc, },
2777 #elif defined(TARGET_PPC)
2778 /* General purpose registers */
2779 { "r0", offsetof(CPUState, gpr[0]) },
2780 { "r1", offsetof(CPUState, gpr[1]) },
2781 { "r2", offsetof(CPUState, gpr[2]) },
2782 { "r3", offsetof(CPUState, gpr[3]) },
2783 { "r4", offsetof(CPUState, gpr[4]) },
2784 { "r5", offsetof(CPUState, gpr[5]) },
2785 { "r6", offsetof(CPUState, gpr[6]) },
2786 { "r7", offsetof(CPUState, gpr[7]) },
2787 { "r8", offsetof(CPUState, gpr[8]) },
2788 { "r9", offsetof(CPUState, gpr[9]) },
2789 { "r10", offsetof(CPUState, gpr[10]) },
2790 { "r11", offsetof(CPUState, gpr[11]) },
2791 { "r12", offsetof(CPUState, gpr[12]) },
2792 { "r13", offsetof(CPUState, gpr[13]) },
2793 { "r14", offsetof(CPUState, gpr[14]) },
2794 { "r15", offsetof(CPUState, gpr[15]) },
2795 { "r16", offsetof(CPUState, gpr[16]) },
2796 { "r17", offsetof(CPUState, gpr[17]) },
2797 { "r18", offsetof(CPUState, gpr[18]) },
2798 { "r19", offsetof(CPUState, gpr[19]) },
2799 { "r20", offsetof(CPUState, gpr[20]) },
2800 { "r21", offsetof(CPUState, gpr[21]) },
2801 { "r22", offsetof(CPUState, gpr[22]) },
2802 { "r23", offsetof(CPUState, gpr[23]) },
2803 { "r24", offsetof(CPUState, gpr[24]) },
2804 { "r25", offsetof(CPUState, gpr[25]) },
2805 { "r26", offsetof(CPUState, gpr[26]) },
2806 { "r27", offsetof(CPUState, gpr[27]) },
2807 { "r28", offsetof(CPUState, gpr[28]) },
2808 { "r29", offsetof(CPUState, gpr[29]) },
2809 { "r30", offsetof(CPUState, gpr[30]) },
2810 { "r31", offsetof(CPUState, gpr[31]) },
2811 /* Floating point registers */
2812 { "f0", offsetof(CPUState, fpr[0]) },
2813 { "f1", offsetof(CPUState, fpr[1]) },
2814 { "f2", offsetof(CPUState, fpr[2]) },
2815 { "f3", offsetof(CPUState, fpr[3]) },
2816 { "f4", offsetof(CPUState, fpr[4]) },
2817 { "f5", offsetof(CPUState, fpr[5]) },
2818 { "f6", offsetof(CPUState, fpr[6]) },
2819 { "f7", offsetof(CPUState, fpr[7]) },
2820 { "f8", offsetof(CPUState, fpr[8]) },
2821 { "f9", offsetof(CPUState, fpr[9]) },
2822 { "f10", offsetof(CPUState, fpr[10]) },
2823 { "f11", offsetof(CPUState, fpr[11]) },
2824 { "f12", offsetof(CPUState, fpr[12]) },
2825 { "f13", offsetof(CPUState, fpr[13]) },
2826 { "f14", offsetof(CPUState, fpr[14]) },
2827 { "f15", offsetof(CPUState, fpr[15]) },
2828 { "f16", offsetof(CPUState, fpr[16]) },
2829 { "f17", offsetof(CPUState, fpr[17]) },
2830 { "f18", offsetof(CPUState, fpr[18]) },
2831 { "f19", offsetof(CPUState, fpr[19]) },
2832 { "f20", offsetof(CPUState, fpr[20]) },
2833 { "f21", offsetof(CPUState, fpr[21]) },
2834 { "f22", offsetof(CPUState, fpr[22]) },
2835 { "f23", offsetof(CPUState, fpr[23]) },
2836 { "f24", offsetof(CPUState, fpr[24]) },
2837 { "f25", offsetof(CPUState, fpr[25]) },
2838 { "f26", offsetof(CPUState, fpr[26]) },
2839 { "f27", offsetof(CPUState, fpr[27]) },
2840 { "f28", offsetof(CPUState, fpr[28]) },
2841 { "f29", offsetof(CPUState, fpr[29]) },
2842 { "f30", offsetof(CPUState, fpr[30]) },
2843 { "f31", offsetof(CPUState, fpr[31]) },
2844 { "fpscr", offsetof(CPUState, fpscr) },
2845 /* Next instruction pointer */
2846 { "nip|pc", offsetof(CPUState, nip) },
2847 { "lr", offsetof(CPUState, lr) },
2848 { "ctr", offsetof(CPUState, ctr) },
2849 { "decr", 0, &monitor_get_decr, },
2850 { "ccr", 0, &monitor_get_ccr, },
2851 /* Machine state register */
2852 { "msr", 0, &monitor_get_msr, },
2853 { "xer", 0, &monitor_get_xer, },
2854 { "tbu", 0, &monitor_get_tbu, },
2855 { "tbl", 0, &monitor_get_tbl, },
2856 #if defined(TARGET_PPC64)
2857 /* Address space register */
2858 { "asr", offsetof(CPUState, asr) },
2859 #endif
2860 /* Segment registers */
2861 { "sdr1", offsetof(CPUState, spr[SPR_SDR1]) },
2862 { "sr0", offsetof(CPUState, sr[0]) },
2863 { "sr1", offsetof(CPUState, sr[1]) },
2864 { "sr2", offsetof(CPUState, sr[2]) },
2865 { "sr3", offsetof(CPUState, sr[3]) },
2866 { "sr4", offsetof(CPUState, sr[4]) },
2867 { "sr5", offsetof(CPUState, sr[5]) },
2868 { "sr6", offsetof(CPUState, sr[6]) },
2869 { "sr7", offsetof(CPUState, sr[7]) },
2870 { "sr8", offsetof(CPUState, sr[8]) },
2871 { "sr9", offsetof(CPUState, sr[9]) },
2872 { "sr10", offsetof(CPUState, sr[10]) },
2873 { "sr11", offsetof(CPUState, sr[11]) },
2874 { "sr12", offsetof(CPUState, sr[12]) },
2875 { "sr13", offsetof(CPUState, sr[13]) },
2876 { "sr14", offsetof(CPUState, sr[14]) },
2877 { "sr15", offsetof(CPUState, sr[15]) },
2878 /* Too lazy to put BATs... */
2879 { "pvr", offsetof(CPUState, spr[SPR_PVR]) },
2881 { "srr0", offsetof(CPUState, spr[SPR_SRR0]) },
2882 { "srr1", offsetof(CPUState, spr[SPR_SRR1]) },
2883 { "sprg0", offsetof(CPUState, spr[SPR_SPRG0]) },
2884 { "sprg1", offsetof(CPUState, spr[SPR_SPRG1]) },
2885 { "sprg2", offsetof(CPUState, spr[SPR_SPRG2]) },
2886 { "sprg3", offsetof(CPUState, spr[SPR_SPRG3]) },
2887 { "sprg4", offsetof(CPUState, spr[SPR_SPRG4]) },
2888 { "sprg5", offsetof(CPUState, spr[SPR_SPRG5]) },
2889 { "sprg6", offsetof(CPUState, spr[SPR_SPRG6]) },
2890 { "sprg7", offsetof(CPUState, spr[SPR_SPRG7]) },
2891 { "pid", offsetof(CPUState, spr[SPR_BOOKE_PID]) },
2892 { "csrr0", offsetof(CPUState, spr[SPR_BOOKE_CSRR0]) },
2893 { "csrr1", offsetof(CPUState, spr[SPR_BOOKE_CSRR1]) },
2894 { "esr", offsetof(CPUState, spr[SPR_BOOKE_ESR]) },
2895 { "dear", offsetof(CPUState, spr[SPR_BOOKE_DEAR]) },
2896 { "mcsr", offsetof(CPUState, spr[SPR_BOOKE_MCSR]) },
2897 { "tsr", offsetof(CPUState, spr[SPR_BOOKE_TSR]) },
2898 { "tcr", offsetof(CPUState, spr[SPR_BOOKE_TCR]) },
2899 { "vrsave", offsetof(CPUState, spr[SPR_VRSAVE]) },
2900 { "pir", offsetof(CPUState, spr[SPR_BOOKE_PIR]) },
2901 { "mcsrr0", offsetof(CPUState, spr[SPR_BOOKE_MCSRR0]) },
2902 { "mcsrr1", offsetof(CPUState, spr[SPR_BOOKE_MCSRR1]) },
2903 { "decar", offsetof(CPUState, spr[SPR_BOOKE_DECAR]) },
2904 { "ivpr", offsetof(CPUState, spr[SPR_BOOKE_IVPR]) },
2905 { "epcr", offsetof(CPUState, spr[SPR_BOOKE_EPCR]) },
2906 { "sprg8", offsetof(CPUState, spr[SPR_BOOKE_SPRG8]) },
2907 { "ivor0", offsetof(CPUState, spr[SPR_BOOKE_IVOR0]) },
2908 { "ivor1", offsetof(CPUState, spr[SPR_BOOKE_IVOR1]) },
2909 { "ivor2", offsetof(CPUState, spr[SPR_BOOKE_IVOR2]) },
2910 { "ivor3", offsetof(CPUState, spr[SPR_BOOKE_IVOR3]) },
2911 { "ivor4", offsetof(CPUState, spr[SPR_BOOKE_IVOR4]) },
2912 { "ivor5", offsetof(CPUState, spr[SPR_BOOKE_IVOR5]) },
2913 { "ivor6", offsetof(CPUState, spr[SPR_BOOKE_IVOR6]) },
2914 { "ivor7", offsetof(CPUState, spr[SPR_BOOKE_IVOR7]) },
2915 { "ivor8", offsetof(CPUState, spr[SPR_BOOKE_IVOR8]) },
2916 { "ivor9", offsetof(CPUState, spr[SPR_BOOKE_IVOR9]) },
2917 { "ivor10", offsetof(CPUState, spr[SPR_BOOKE_IVOR10]) },
2918 { "ivor11", offsetof(CPUState, spr[SPR_BOOKE_IVOR11]) },
2919 { "ivor12", offsetof(CPUState, spr[SPR_BOOKE_IVOR12]) },
2920 { "ivor13", offsetof(CPUState, spr[SPR_BOOKE_IVOR13]) },
2921 { "ivor14", offsetof(CPUState, spr[SPR_BOOKE_IVOR14]) },
2922 { "ivor15", offsetof(CPUState, spr[SPR_BOOKE_IVOR15]) },
2923 { "ivor32", offsetof(CPUState, spr[SPR_BOOKE_IVOR32]) },
2924 { "ivor33", offsetof(CPUState, spr[SPR_BOOKE_IVOR33]) },
2925 { "ivor34", offsetof(CPUState, spr[SPR_BOOKE_IVOR34]) },
2926 { "ivor35", offsetof(CPUState, spr[SPR_BOOKE_IVOR35]) },
2927 { "ivor36", offsetof(CPUState, spr[SPR_BOOKE_IVOR36]) },
2928 { "ivor37", offsetof(CPUState, spr[SPR_BOOKE_IVOR37]) },
2929 { "mas0", offsetof(CPUState, spr[SPR_BOOKE_MAS0]) },
2930 { "mas1", offsetof(CPUState, spr[SPR_BOOKE_MAS1]) },
2931 { "mas2", offsetof(CPUState, spr[SPR_BOOKE_MAS2]) },
2932 { "mas3", offsetof(CPUState, spr[SPR_BOOKE_MAS3]) },
2933 { "mas4", offsetof(CPUState, spr[SPR_BOOKE_MAS4]) },
2934 { "mas6", offsetof(CPUState, spr[SPR_BOOKE_MAS6]) },
2935 { "mas7", offsetof(CPUState, spr[SPR_BOOKE_MAS7]) },
2936 { "mmucfg", offsetof(CPUState, spr[SPR_MMUCFG]) },
2937 { "tlb0cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB0CFG]) },
2938 { "tlb1cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB1CFG]) },
2939 { "epr", offsetof(CPUState, spr[SPR_BOOKE_EPR]) },
2940 { "eplc", offsetof(CPUState, spr[SPR_BOOKE_EPLC]) },
2941 { "epsc", offsetof(CPUState, spr[SPR_BOOKE_EPSC]) },
2942 { "svr", offsetof(CPUState, spr[SPR_E500_SVR]) },
2943 { "mcar", offsetof(CPUState, spr[SPR_Exxx_MCAR]) },
2944 { "pid1", offsetof(CPUState, spr[SPR_BOOKE_PID1]) },
2945 { "pid2", offsetof(CPUState, spr[SPR_BOOKE_PID2]) },
2946 { "hid0", offsetof(CPUState, spr[SPR_HID0]) },
2948 #elif defined(TARGET_SPARC)
2949 { "g0", offsetof(CPUState, gregs[0]) },
2950 { "g1", offsetof(CPUState, gregs[1]) },
2951 { "g2", offsetof(CPUState, gregs[2]) },
2952 { "g3", offsetof(CPUState, gregs[3]) },
2953 { "g4", offsetof(CPUState, gregs[4]) },
2954 { "g5", offsetof(CPUState, gregs[5]) },
2955 { "g6", offsetof(CPUState, gregs[6]) },
2956 { "g7", offsetof(CPUState, gregs[7]) },
2957 { "o0", 0, monitor_get_reg },
2958 { "o1", 1, monitor_get_reg },
2959 { "o2", 2, monitor_get_reg },
2960 { "o3", 3, monitor_get_reg },
2961 { "o4", 4, monitor_get_reg },
2962 { "o5", 5, monitor_get_reg },
2963 { "o6", 6, monitor_get_reg },
2964 { "o7", 7, monitor_get_reg },
2965 { "l0", 8, monitor_get_reg },
2966 { "l1", 9, monitor_get_reg },
2967 { "l2", 10, monitor_get_reg },
2968 { "l3", 11, monitor_get_reg },
2969 { "l4", 12, monitor_get_reg },
2970 { "l5", 13, monitor_get_reg },
2971 { "l6", 14, monitor_get_reg },
2972 { "l7", 15, monitor_get_reg },
2973 { "i0", 16, monitor_get_reg },
2974 { "i1", 17, monitor_get_reg },
2975 { "i2", 18, monitor_get_reg },
2976 { "i3", 19, monitor_get_reg },
2977 { "i4", 20, monitor_get_reg },
2978 { "i5", 21, monitor_get_reg },
2979 { "i6", 22, monitor_get_reg },
2980 { "i7", 23, monitor_get_reg },
2981 { "pc", offsetof(CPUState, pc) },
2982 { "npc", offsetof(CPUState, npc) },
2983 { "y", offsetof(CPUState, y) },
2984 #ifndef TARGET_SPARC64
2985 { "psr", 0, &monitor_get_psr, },
2986 { "wim", offsetof(CPUState, wim) },
2987 #endif
2988 { "tbr", offsetof(CPUState, tbr) },
2989 { "fsr", offsetof(CPUState, fsr) },
2990 { "f0", offsetof(CPUState, fpr[0].l.upper) },
2991 { "f1", offsetof(CPUState, fpr[0].l.lower) },
2992 { "f2", offsetof(CPUState, fpr[1].l.upper) },
2993 { "f3", offsetof(CPUState, fpr[1].l.lower) },
2994 { "f4", offsetof(CPUState, fpr[2].l.upper) },
2995 { "f5", offsetof(CPUState, fpr[2].l.lower) },
2996 { "f6", offsetof(CPUState, fpr[3].l.upper) },
2997 { "f7", offsetof(CPUState, fpr[3].l.lower) },
2998 { "f8", offsetof(CPUState, fpr[4].l.upper) },
2999 { "f9", offsetof(CPUState, fpr[4].l.lower) },
3000 { "f10", offsetof(CPUState, fpr[5].l.upper) },
3001 { "f11", offsetof(CPUState, fpr[5].l.lower) },
3002 { "f12", offsetof(CPUState, fpr[6].l.upper) },
3003 { "f13", offsetof(CPUState, fpr[6].l.lower) },
3004 { "f14", offsetof(CPUState, fpr[7].l.upper) },
3005 { "f15", offsetof(CPUState, fpr[7].l.lower) },
3006 { "f16", offsetof(CPUState, fpr[8].l.upper) },
3007 { "f17", offsetof(CPUState, fpr[8].l.lower) },
3008 { "f18", offsetof(CPUState, fpr[9].l.upper) },
3009 { "f19", offsetof(CPUState, fpr[9].l.lower) },
3010 { "f20", offsetof(CPUState, fpr[10].l.upper) },
3011 { "f21", offsetof(CPUState, fpr[10].l.lower) },
3012 { "f22", offsetof(CPUState, fpr[11].l.upper) },
3013 { "f23", offsetof(CPUState, fpr[11].l.lower) },
3014 { "f24", offsetof(CPUState, fpr[12].l.upper) },
3015 { "f25", offsetof(CPUState, fpr[12].l.lower) },
3016 { "f26", offsetof(CPUState, fpr[13].l.upper) },
3017 { "f27", offsetof(CPUState, fpr[13].l.lower) },
3018 { "f28", offsetof(CPUState, fpr[14].l.upper) },
3019 { "f29", offsetof(CPUState, fpr[14].l.lower) },
3020 { "f30", offsetof(CPUState, fpr[15].l.upper) },
3021 { "f31", offsetof(CPUState, fpr[15].l.lower) },
3022 #ifdef TARGET_SPARC64
3023 { "f32", offsetof(CPUState, fpr[16]) },
3024 { "f34", offsetof(CPUState, fpr[17]) },
3025 { "f36", offsetof(CPUState, fpr[18]) },
3026 { "f38", offsetof(CPUState, fpr[19]) },
3027 { "f40", offsetof(CPUState, fpr[20]) },
3028 { "f42", offsetof(CPUState, fpr[21]) },
3029 { "f44", offsetof(CPUState, fpr[22]) },
3030 { "f46", offsetof(CPUState, fpr[23]) },
3031 { "f48", offsetof(CPUState, fpr[24]) },
3032 { "f50", offsetof(CPUState, fpr[25]) },
3033 { "f52", offsetof(CPUState, fpr[26]) },
3034 { "f54", offsetof(CPUState, fpr[27]) },
3035 { "f56", offsetof(CPUState, fpr[28]) },
3036 { "f58", offsetof(CPUState, fpr[29]) },
3037 { "f60", offsetof(CPUState, fpr[30]) },
3038 { "f62", offsetof(CPUState, fpr[31]) },
3039 { "asi", offsetof(CPUState, asi) },
3040 { "pstate", offsetof(CPUState, pstate) },
3041 { "cansave", offsetof(CPUState, cansave) },
3042 { "canrestore", offsetof(CPUState, canrestore) },
3043 { "otherwin", offsetof(CPUState, otherwin) },
3044 { "wstate", offsetof(CPUState, wstate) },
3045 { "cleanwin", offsetof(CPUState, cleanwin) },
3046 { "fprs", offsetof(CPUState, fprs) },
3047 #endif
3048 #endif
3049 { NULL },
3052 static void expr_error(Monitor *mon, const char *msg)
3054 monitor_printf(mon, "%s\n", msg);
3055 longjmp(expr_env, 1);
3058 /* return 0 if OK, -1 if not found */
3059 static int get_monitor_def(target_long *pval, const char *name)
3061 const MonitorDef *md;
3062 void *ptr;
3064 for(md = monitor_defs; md->name != NULL; md++) {
3065 if (compare_cmd(name, md->name)) {
3066 if (md->get_value) {
3067 *pval = md->get_value(md, md->offset);
3068 } else {
3069 CPUState *env = mon_get_cpu();
3070 ptr = (uint8_t *)env + md->offset;
3071 switch(md->type) {
3072 case MD_I32:
3073 *pval = *(int32_t *)ptr;
3074 break;
3075 case MD_TLONG:
3076 *pval = *(target_long *)ptr;
3077 break;
3078 default:
3079 *pval = 0;
3080 break;
3083 return 0;
3086 return -1;
3089 static void next(void)
3091 if (*pch != '\0') {
3092 pch++;
3093 while (qemu_isspace(*pch))
3094 pch++;
3098 static int64_t expr_sum(Monitor *mon);
3100 static int64_t expr_unary(Monitor *mon)
3102 int64_t n;
3103 char *p;
3104 int ret;
3106 switch(*pch) {
3107 case '+':
3108 next();
3109 n = expr_unary(mon);
3110 break;
3111 case '-':
3112 next();
3113 n = -expr_unary(mon);
3114 break;
3115 case '~':
3116 next();
3117 n = ~expr_unary(mon);
3118 break;
3119 case '(':
3120 next();
3121 n = expr_sum(mon);
3122 if (*pch != ')') {
3123 expr_error(mon, "')' expected");
3125 next();
3126 break;
3127 case '\'':
3128 pch++;
3129 if (*pch == '\0')
3130 expr_error(mon, "character constant expected");
3131 n = *pch;
3132 pch++;
3133 if (*pch != '\'')
3134 expr_error(mon, "missing terminating \' character");
3135 next();
3136 break;
3137 case '$':
3139 char buf[128], *q;
3140 target_long reg=0;
3142 pch++;
3143 q = buf;
3144 while ((*pch >= 'a' && *pch <= 'z') ||
3145 (*pch >= 'A' && *pch <= 'Z') ||
3146 (*pch >= '0' && *pch <= '9') ||
3147 *pch == '_' || *pch == '.') {
3148 if ((q - buf) < sizeof(buf) - 1)
3149 *q++ = *pch;
3150 pch++;
3152 while (qemu_isspace(*pch))
3153 pch++;
3154 *q = 0;
3155 ret = get_monitor_def(&reg, buf);
3156 if (ret < 0)
3157 expr_error(mon, "unknown register");
3158 n = reg;
3160 break;
3161 case '\0':
3162 expr_error(mon, "unexpected end of expression");
3163 n = 0;
3164 break;
3165 default:
3166 #if TARGET_PHYS_ADDR_BITS > 32
3167 n = strtoull(pch, &p, 0);
3168 #else
3169 n = strtoul(pch, &p, 0);
3170 #endif
3171 if (pch == p) {
3172 expr_error(mon, "invalid char in expression");
3174 pch = p;
3175 while (qemu_isspace(*pch))
3176 pch++;
3177 break;
3179 return n;
3183 static int64_t expr_prod(Monitor *mon)
3185 int64_t val, val2;
3186 int op;
3188 val = expr_unary(mon);
3189 for(;;) {
3190 op = *pch;
3191 if (op != '*' && op != '/' && op != '%')
3192 break;
3193 next();
3194 val2 = expr_unary(mon);
3195 switch(op) {
3196 default:
3197 case '*':
3198 val *= val2;
3199 break;
3200 case '/':
3201 case '%':
3202 if (val2 == 0)
3203 expr_error(mon, "division by zero");
3204 if (op == '/')
3205 val /= val2;
3206 else
3207 val %= val2;
3208 break;
3211 return val;
3214 static int64_t expr_logic(Monitor *mon)
3216 int64_t val, val2;
3217 int op;
3219 val = expr_prod(mon);
3220 for(;;) {
3221 op = *pch;
3222 if (op != '&' && op != '|' && op != '^')
3223 break;
3224 next();
3225 val2 = expr_prod(mon);
3226 switch(op) {
3227 default:
3228 case '&':
3229 val &= val2;
3230 break;
3231 case '|':
3232 val |= val2;
3233 break;
3234 case '^':
3235 val ^= val2;
3236 break;
3239 return val;
3242 static int64_t expr_sum(Monitor *mon)
3244 int64_t val, val2;
3245 int op;
3247 val = expr_logic(mon);
3248 for(;;) {
3249 op = *pch;
3250 if (op != '+' && op != '-')
3251 break;
3252 next();
3253 val2 = expr_logic(mon);
3254 if (op == '+')
3255 val += val2;
3256 else
3257 val -= val2;
3259 return val;
3262 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
3264 pch = *pp;
3265 if (setjmp(expr_env)) {
3266 *pp = pch;
3267 return -1;
3269 while (qemu_isspace(*pch))
3270 pch++;
3271 *pval = expr_sum(mon);
3272 *pp = pch;
3273 return 0;
3276 static int get_double(Monitor *mon, double *pval, const char **pp)
3278 const char *p = *pp;
3279 char *tailp;
3280 double d;
3282 d = strtod(p, &tailp);
3283 if (tailp == p) {
3284 monitor_printf(mon, "Number expected\n");
3285 return -1;
3287 if (d != d || d - d != 0) {
3288 /* NaN or infinity */
3289 monitor_printf(mon, "Bad number\n");
3290 return -1;
3292 *pval = d;
3293 *pp = tailp;
3294 return 0;
3297 static int get_str(char *buf, int buf_size, const char **pp)
3299 const char *p;
3300 char *q;
3301 int c;
3303 q = buf;
3304 p = *pp;
3305 while (qemu_isspace(*p))
3306 p++;
3307 if (*p == '\0') {
3308 fail:
3309 *q = '\0';
3310 *pp = p;
3311 return -1;
3313 if (*p == '\"') {
3314 p++;
3315 while (*p != '\0' && *p != '\"') {
3316 if (*p == '\\') {
3317 p++;
3318 c = *p++;
3319 switch(c) {
3320 case 'n':
3321 c = '\n';
3322 break;
3323 case 'r':
3324 c = '\r';
3325 break;
3326 case '\\':
3327 case '\'':
3328 case '\"':
3329 break;
3330 default:
3331 qemu_printf("unsupported escape code: '\\%c'\n", c);
3332 goto fail;
3334 if ((q - buf) < buf_size - 1) {
3335 *q++ = c;
3337 } else {
3338 if ((q - buf) < buf_size - 1) {
3339 *q++ = *p;
3341 p++;
3344 if (*p != '\"') {
3345 qemu_printf("unterminated string\n");
3346 goto fail;
3348 p++;
3349 } else {
3350 while (*p != '\0' && !qemu_isspace(*p)) {
3351 if ((q - buf) < buf_size - 1) {
3352 *q++ = *p;
3354 p++;
3357 *q = '\0';
3358 *pp = p;
3359 return 0;
3363 * Store the command-name in cmdname, and return a pointer to
3364 * the remaining of the command string.
3366 static const char *get_command_name(const char *cmdline,
3367 char *cmdname, size_t nlen)
3369 size_t len;
3370 const char *p, *pstart;
3372 p = cmdline;
3373 while (qemu_isspace(*p))
3374 p++;
3375 if (*p == '\0')
3376 return NULL;
3377 pstart = p;
3378 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3379 p++;
3380 len = p - pstart;
3381 if (len > nlen - 1)
3382 len = nlen - 1;
3383 memcpy(cmdname, pstart, len);
3384 cmdname[len] = '\0';
3385 return p;
3389 * Read key of 'type' into 'key' and return the current
3390 * 'type' pointer.
3392 static char *key_get_info(const char *type, char **key)
3394 size_t len;
3395 char *p, *str;
3397 if (*type == ',')
3398 type++;
3400 p = strchr(type, ':');
3401 if (!p) {
3402 *key = NULL;
3403 return NULL;
3405 len = p - type;
3407 str = g_malloc(len + 1);
3408 memcpy(str, type, len);
3409 str[len] = '\0';
3411 *key = str;
3412 return ++p;
3415 static int default_fmt_format = 'x';
3416 static int default_fmt_size = 4;
3418 #define MAX_ARGS 16
3420 static int is_valid_option(const char *c, const char *typestr)
3422 char option[3];
3424 option[0] = '-';
3425 option[1] = *c;
3426 option[2] = '\0';
3428 typestr = strstr(typestr, option);
3429 return (typestr != NULL);
3432 static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3433 const char *cmdname)
3435 const mon_cmd_t *cmd;
3437 for (cmd = disp_table; cmd->name != NULL; cmd++) {
3438 if (compare_cmd(cmdname, cmd->name)) {
3439 return cmd;
3443 return NULL;
3446 static const mon_cmd_t *monitor_find_command(const char *cmdname)
3448 return search_dispatch_table(mon_cmds, cmdname);
3451 static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3453 return search_dispatch_table(qmp_cmds, cmdname);
3456 static const mon_cmd_t *monitor_parse_command(Monitor *mon,
3457 const char *cmdline,
3458 QDict *qdict)
3460 const char *p, *typestr;
3461 int c;
3462 const mon_cmd_t *cmd;
3463 char cmdname[256];
3464 char buf[1024];
3465 char *key;
3467 #ifdef DEBUG
3468 monitor_printf(mon, "command='%s'\n", cmdline);
3469 #endif
3471 /* extract the command name */
3472 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3473 if (!p)
3474 return NULL;
3476 cmd = monitor_find_command(cmdname);
3477 if (!cmd) {
3478 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
3479 return NULL;
3482 /* parse the parameters */
3483 typestr = cmd->args_type;
3484 for(;;) {
3485 typestr = key_get_info(typestr, &key);
3486 if (!typestr)
3487 break;
3488 c = *typestr;
3489 typestr++;
3490 switch(c) {
3491 case 'F':
3492 case 'B':
3493 case 's':
3495 int ret;
3497 while (qemu_isspace(*p))
3498 p++;
3499 if (*typestr == '?') {
3500 typestr++;
3501 if (*p == '\0') {
3502 /* no optional string: NULL argument */
3503 break;
3506 ret = get_str(buf, sizeof(buf), &p);
3507 if (ret < 0) {
3508 switch(c) {
3509 case 'F':
3510 monitor_printf(mon, "%s: filename expected\n",
3511 cmdname);
3512 break;
3513 case 'B':
3514 monitor_printf(mon, "%s: block device name expected\n",
3515 cmdname);
3516 break;
3517 default:
3518 monitor_printf(mon, "%s: string expected\n", cmdname);
3519 break;
3521 goto fail;
3523 qdict_put(qdict, key, qstring_from_str(buf));
3525 break;
3526 case 'O':
3528 QemuOptsList *opts_list;
3529 QemuOpts *opts;
3531 opts_list = qemu_find_opts(key);
3532 if (!opts_list || opts_list->desc->name) {
3533 goto bad_type;
3535 while (qemu_isspace(*p)) {
3536 p++;
3538 if (!*p)
3539 break;
3540 if (get_str(buf, sizeof(buf), &p) < 0) {
3541 goto fail;
3543 opts = qemu_opts_parse(opts_list, buf, 1);
3544 if (!opts) {
3545 goto fail;
3547 qemu_opts_to_qdict(opts, qdict);
3548 qemu_opts_del(opts);
3550 break;
3551 case '/':
3553 int count, format, size;
3555 while (qemu_isspace(*p))
3556 p++;
3557 if (*p == '/') {
3558 /* format found */
3559 p++;
3560 count = 1;
3561 if (qemu_isdigit(*p)) {
3562 count = 0;
3563 while (qemu_isdigit(*p)) {
3564 count = count * 10 + (*p - '0');
3565 p++;
3568 size = -1;
3569 format = -1;
3570 for(;;) {
3571 switch(*p) {
3572 case 'o':
3573 case 'd':
3574 case 'u':
3575 case 'x':
3576 case 'i':
3577 case 'c':
3578 format = *p++;
3579 break;
3580 case 'b':
3581 size = 1;
3582 p++;
3583 break;
3584 case 'h':
3585 size = 2;
3586 p++;
3587 break;
3588 case 'w':
3589 size = 4;
3590 p++;
3591 break;
3592 case 'g':
3593 case 'L':
3594 size = 8;
3595 p++;
3596 break;
3597 default:
3598 goto next;
3601 next:
3602 if (*p != '\0' && !qemu_isspace(*p)) {
3603 monitor_printf(mon, "invalid char in format: '%c'\n",
3604 *p);
3605 goto fail;
3607 if (format < 0)
3608 format = default_fmt_format;
3609 if (format != 'i') {
3610 /* for 'i', not specifying a size gives -1 as size */
3611 if (size < 0)
3612 size = default_fmt_size;
3613 default_fmt_size = size;
3615 default_fmt_format = format;
3616 } else {
3617 count = 1;
3618 format = default_fmt_format;
3619 if (format != 'i') {
3620 size = default_fmt_size;
3621 } else {
3622 size = -1;
3625 qdict_put(qdict, "count", qint_from_int(count));
3626 qdict_put(qdict, "format", qint_from_int(format));
3627 qdict_put(qdict, "size", qint_from_int(size));
3629 break;
3630 case 'i':
3631 case 'l':
3632 case 'M':
3634 int64_t val;
3636 while (qemu_isspace(*p))
3637 p++;
3638 if (*typestr == '?' || *typestr == '.') {
3639 if (*typestr == '?') {
3640 if (*p == '\0') {
3641 typestr++;
3642 break;
3644 } else {
3645 if (*p == '.') {
3646 p++;
3647 while (qemu_isspace(*p))
3648 p++;
3649 } else {
3650 typestr++;
3651 break;
3654 typestr++;
3656 if (get_expr(mon, &val, &p))
3657 goto fail;
3658 /* Check if 'i' is greater than 32-bit */
3659 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3660 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3661 monitor_printf(mon, "integer is for 32-bit values\n");
3662 goto fail;
3663 } else if (c == 'M') {
3664 val <<= 20;
3666 qdict_put(qdict, key, qint_from_int(val));
3668 break;
3669 case 'o':
3671 int64_t val;
3672 char *end;
3674 while (qemu_isspace(*p)) {
3675 p++;
3677 if (*typestr == '?') {
3678 typestr++;
3679 if (*p == '\0') {
3680 break;
3683 val = strtosz(p, &end);
3684 if (val < 0) {
3685 monitor_printf(mon, "invalid size\n");
3686 goto fail;
3688 qdict_put(qdict, key, qint_from_int(val));
3689 p = end;
3691 break;
3692 case 'T':
3694 double val;
3696 while (qemu_isspace(*p))
3697 p++;
3698 if (*typestr == '?') {
3699 typestr++;
3700 if (*p == '\0') {
3701 break;
3704 if (get_double(mon, &val, &p) < 0) {
3705 goto fail;
3707 if (p[0] && p[1] == 's') {
3708 switch (*p) {
3709 case 'm':
3710 val /= 1e3; p += 2; break;
3711 case 'u':
3712 val /= 1e6; p += 2; break;
3713 case 'n':
3714 val /= 1e9; p += 2; break;
3717 if (*p && !qemu_isspace(*p)) {
3718 monitor_printf(mon, "Unknown unit suffix\n");
3719 goto fail;
3721 qdict_put(qdict, key, qfloat_from_double(val));
3723 break;
3724 case 'b':
3726 const char *beg;
3727 int val;
3729 while (qemu_isspace(*p)) {
3730 p++;
3732 beg = p;
3733 while (qemu_isgraph(*p)) {
3734 p++;
3736 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3737 val = 1;
3738 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3739 val = 0;
3740 } else {
3741 monitor_printf(mon, "Expected 'on' or 'off'\n");
3742 goto fail;
3744 qdict_put(qdict, key, qbool_from_int(val));
3746 break;
3747 case '-':
3749 const char *tmp = p;
3750 int skip_key = 0;
3751 /* option */
3753 c = *typestr++;
3754 if (c == '\0')
3755 goto bad_type;
3756 while (qemu_isspace(*p))
3757 p++;
3758 if (*p == '-') {
3759 p++;
3760 if(c != *p) {
3761 if(!is_valid_option(p, typestr)) {
3763 monitor_printf(mon, "%s: unsupported option -%c\n",
3764 cmdname, *p);
3765 goto fail;
3766 } else {
3767 skip_key = 1;
3770 if(skip_key) {
3771 p = tmp;
3772 } else {
3773 /* has option */
3774 p++;
3775 qdict_put(qdict, key, qbool_from_int(1));
3779 break;
3780 default:
3781 bad_type:
3782 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
3783 goto fail;
3785 g_free(key);
3786 key = NULL;
3788 /* check that all arguments were parsed */
3789 while (qemu_isspace(*p))
3790 p++;
3791 if (*p != '\0') {
3792 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3793 cmdname);
3794 goto fail;
3797 return cmd;
3799 fail:
3800 g_free(key);
3801 return NULL;
3804 void monitor_set_error(Monitor *mon, QError *qerror)
3806 /* report only the first error */
3807 if (!mon->error) {
3808 mon->error = qerror;
3809 } else {
3810 MON_DEBUG("Additional error report at %s:%d\n",
3811 qerror->file, qerror->linenr);
3812 QDECREF(qerror);
3816 static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3818 if (ret && !monitor_has_error(mon)) {
3820 * If it returns failure, it must have passed on error.
3822 * Action: Report an internal error to the client if in QMP.
3824 qerror_report(QERR_UNDEFINED_ERROR);
3825 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
3826 cmd->name);
3829 #ifdef CONFIG_DEBUG_MONITOR
3830 if (!ret && monitor_has_error(mon)) {
3832 * If it returns success, it must not have passed an error.
3834 * Action: Report the passed error to the client.
3836 MON_DEBUG("command '%s' returned success but passed an error\n",
3837 cmd->name);
3840 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
3842 * Handlers should not call Monitor print functions.
3844 * Action: Ignore them in QMP.
3846 * (XXX: we don't check any 'info' or 'query' command here
3847 * because the user print function _is_ called by do_info(), hence
3848 * we will trigger this check. This problem will go away when we
3849 * make 'query' commands real and kill do_info())
3851 MON_DEBUG("command '%s' called print functions %d time(s)\n",
3852 cmd->name, mon_print_count_get(mon));
3854 #endif
3857 static void handle_user_command(Monitor *mon, const char *cmdline)
3859 QDict *qdict;
3860 const mon_cmd_t *cmd;
3862 qdict = qdict_new();
3864 cmd = monitor_parse_command(mon, cmdline, qdict);
3865 if (!cmd)
3866 goto out;
3868 if (handler_is_async(cmd)) {
3869 user_async_cmd_handler(mon, cmd, qdict);
3870 } else if (handler_is_qobject(cmd)) {
3871 QObject *data = NULL;
3873 /* XXX: ignores the error code */
3874 cmd->mhandler.cmd_new(mon, qdict, &data);
3875 assert(!monitor_has_error(mon));
3876 if (data) {
3877 cmd->user_print(mon, data);
3878 qobject_decref(data);
3880 } else {
3881 cmd->mhandler.cmd(mon, qdict);
3884 out:
3885 QDECREF(qdict);
3888 static void cmd_completion(const char *name, const char *list)
3890 const char *p, *pstart;
3891 char cmd[128];
3892 int len;
3894 p = list;
3895 for(;;) {
3896 pstart = p;
3897 p = strchr(p, '|');
3898 if (!p)
3899 p = pstart + strlen(pstart);
3900 len = p - pstart;
3901 if (len > sizeof(cmd) - 2)
3902 len = sizeof(cmd) - 2;
3903 memcpy(cmd, pstart, len);
3904 cmd[len] = '\0';
3905 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
3906 readline_add_completion(cur_mon->rs, cmd);
3908 if (*p == '\0')
3909 break;
3910 p++;
3914 static void file_completion(const char *input)
3916 DIR *ffs;
3917 struct dirent *d;
3918 char path[1024];
3919 char file[1024], file_prefix[1024];
3920 int input_path_len;
3921 const char *p;
3923 p = strrchr(input, '/');
3924 if (!p) {
3925 input_path_len = 0;
3926 pstrcpy(file_prefix, sizeof(file_prefix), input);
3927 pstrcpy(path, sizeof(path), ".");
3928 } else {
3929 input_path_len = p - input + 1;
3930 memcpy(path, input, input_path_len);
3931 if (input_path_len > sizeof(path) - 1)
3932 input_path_len = sizeof(path) - 1;
3933 path[input_path_len] = '\0';
3934 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3936 #ifdef DEBUG_COMPLETION
3937 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
3938 input, path, file_prefix);
3939 #endif
3940 ffs = opendir(path);
3941 if (!ffs)
3942 return;
3943 for(;;) {
3944 struct stat sb;
3945 d = readdir(ffs);
3946 if (!d)
3947 break;
3949 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
3950 continue;
3953 if (strstart(d->d_name, file_prefix, NULL)) {
3954 memcpy(file, input, input_path_len);
3955 if (input_path_len < sizeof(file))
3956 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3957 d->d_name);
3958 /* stat the file to find out if it's a directory.
3959 * In that case add a slash to speed up typing long paths
3961 if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) {
3962 pstrcat(file, sizeof(file), "/");
3964 readline_add_completion(cur_mon->rs, file);
3967 closedir(ffs);
3970 static void block_completion_it(void *opaque, BlockDriverState *bs)
3972 const char *name = bdrv_get_device_name(bs);
3973 const char *input = opaque;
3975 if (input[0] == '\0' ||
3976 !strncmp(name, (char *)input, strlen(input))) {
3977 readline_add_completion(cur_mon->rs, name);
3981 /* NOTE: this parser is an approximate form of the real command parser */
3982 static void parse_cmdline(const char *cmdline,
3983 int *pnb_args, char **args)
3985 const char *p;
3986 int nb_args, ret;
3987 char buf[1024];
3989 p = cmdline;
3990 nb_args = 0;
3991 for(;;) {
3992 while (qemu_isspace(*p))
3993 p++;
3994 if (*p == '\0')
3995 break;
3996 if (nb_args >= MAX_ARGS)
3997 break;
3998 ret = get_str(buf, sizeof(buf), &p);
3999 args[nb_args] = g_strdup(buf);
4000 nb_args++;
4001 if (ret < 0)
4002 break;
4004 *pnb_args = nb_args;
4007 static const char *next_arg_type(const char *typestr)
4009 const char *p = strchr(typestr, ':');
4010 return (p != NULL ? ++p : typestr);
4013 static void monitor_find_completion(const char *cmdline)
4015 const char *cmdname;
4016 char *args[MAX_ARGS];
4017 int nb_args, i, len;
4018 const char *ptype, *str;
4019 const mon_cmd_t *cmd;
4020 const KeyDef *key;
4022 parse_cmdline(cmdline, &nb_args, args);
4023 #ifdef DEBUG_COMPLETION
4024 for(i = 0; i < nb_args; i++) {
4025 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
4027 #endif
4029 /* if the line ends with a space, it means we want to complete the
4030 next arg */
4031 len = strlen(cmdline);
4032 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
4033 if (nb_args >= MAX_ARGS) {
4034 goto cleanup;
4036 args[nb_args++] = g_strdup("");
4038 if (nb_args <= 1) {
4039 /* command completion */
4040 if (nb_args == 0)
4041 cmdname = "";
4042 else
4043 cmdname = args[0];
4044 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
4045 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
4046 cmd_completion(cmdname, cmd->name);
4048 } else {
4049 /* find the command */
4050 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4051 if (compare_cmd(args[0], cmd->name)) {
4052 break;
4055 if (!cmd->name) {
4056 goto cleanup;
4059 ptype = next_arg_type(cmd->args_type);
4060 for(i = 0; i < nb_args - 2; i++) {
4061 if (*ptype != '\0') {
4062 ptype = next_arg_type(ptype);
4063 while (*ptype == '?')
4064 ptype = next_arg_type(ptype);
4067 str = args[nb_args - 1];
4068 if (*ptype == '-' && ptype[1] != '\0') {
4069 ptype = next_arg_type(ptype);
4071 switch(*ptype) {
4072 case 'F':
4073 /* file completion */
4074 readline_set_completion_index(cur_mon->rs, strlen(str));
4075 file_completion(str);
4076 break;
4077 case 'B':
4078 /* block device name completion */
4079 readline_set_completion_index(cur_mon->rs, strlen(str));
4080 bdrv_iterate(block_completion_it, (void *)str);
4081 break;
4082 case 's':
4083 /* XXX: more generic ? */
4084 if (!strcmp(cmd->name, "info")) {
4085 readline_set_completion_index(cur_mon->rs, strlen(str));
4086 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4087 cmd_completion(str, cmd->name);
4089 } else if (!strcmp(cmd->name, "sendkey")) {
4090 char *sep = strrchr(str, '-');
4091 if (sep)
4092 str = sep + 1;
4093 readline_set_completion_index(cur_mon->rs, strlen(str));
4094 for(key = key_defs; key->name != NULL; key++) {
4095 cmd_completion(str, key->name);
4097 } else if (!strcmp(cmd->name, "help|?")) {
4098 readline_set_completion_index(cur_mon->rs, strlen(str));
4099 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4100 cmd_completion(str, cmd->name);
4103 break;
4104 default:
4105 break;
4109 cleanup:
4110 for (i = 0; i < nb_args; i++) {
4111 g_free(args[i]);
4115 static int monitor_can_read(void *opaque)
4117 Monitor *mon = opaque;
4119 return (mon->suspend_cnt == 0) ? 1 : 0;
4122 static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4124 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4125 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4129 * Argument validation rules:
4131 * 1. The argument must exist in cmd_args qdict
4132 * 2. The argument type must be the expected one
4134 * Special case: If the argument doesn't exist in cmd_args and
4135 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4136 * checking is skipped for it.
4138 static int check_client_args_type(const QDict *client_args,
4139 const QDict *cmd_args, int flags)
4141 const QDictEntry *ent;
4143 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4144 QObject *obj;
4145 QString *arg_type;
4146 const QObject *client_arg = qdict_entry_value(ent);
4147 const char *client_arg_name = qdict_entry_key(ent);
4149 obj = qdict_get(cmd_args, client_arg_name);
4150 if (!obj) {
4151 if (flags & QMP_ACCEPT_UNKNOWNS) {
4152 /* handler accepts unknowns */
4153 continue;
4155 /* client arg doesn't exist */
4156 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4157 return -1;
4160 arg_type = qobject_to_qstring(obj);
4161 assert(arg_type != NULL);
4163 /* check if argument's type is correct */
4164 switch (qstring_get_str(arg_type)[0]) {
4165 case 'F':
4166 case 'B':
4167 case 's':
4168 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4169 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4170 "string");
4171 return -1;
4173 break;
4174 case 'i':
4175 case 'l':
4176 case 'M':
4177 case 'o':
4178 if (qobject_type(client_arg) != QTYPE_QINT) {
4179 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4180 "int");
4181 return -1;
4183 break;
4184 case 'T':
4185 if (qobject_type(client_arg) != QTYPE_QINT &&
4186 qobject_type(client_arg) != QTYPE_QFLOAT) {
4187 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4188 "number");
4189 return -1;
4191 break;
4192 case 'b':
4193 case '-':
4194 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4195 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4196 "bool");
4197 return -1;
4199 break;
4200 case 'O':
4201 assert(flags & QMP_ACCEPT_UNKNOWNS);
4202 break;
4203 case '/':
4204 case '.':
4206 * These types are not supported by QMP and thus are not
4207 * handled here. Fall through.
4209 default:
4210 abort();
4214 return 0;
4218 * - Check if the client has passed all mandatory args
4219 * - Set special flags for argument validation
4221 static int check_mandatory_args(const QDict *cmd_args,
4222 const QDict *client_args, int *flags)
4224 const QDictEntry *ent;
4226 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4227 const char *cmd_arg_name = qdict_entry_key(ent);
4228 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4229 assert(type != NULL);
4231 if (qstring_get_str(type)[0] == 'O') {
4232 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4233 *flags |= QMP_ACCEPT_UNKNOWNS;
4234 } else if (qstring_get_str(type)[0] != '-' &&
4235 qstring_get_str(type)[1] != '?' &&
4236 !qdict_haskey(client_args, cmd_arg_name)) {
4237 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4238 return -1;
4242 return 0;
4245 static QDict *qdict_from_args_type(const char *args_type)
4247 int i;
4248 QDict *qdict;
4249 QString *key, *type, *cur_qs;
4251 assert(args_type != NULL);
4253 qdict = qdict_new();
4255 if (args_type == NULL || args_type[0] == '\0') {
4256 /* no args, empty qdict */
4257 goto out;
4260 key = qstring_new();
4261 type = qstring_new();
4263 cur_qs = key;
4265 for (i = 0;; i++) {
4266 switch (args_type[i]) {
4267 case ',':
4268 case '\0':
4269 qdict_put(qdict, qstring_get_str(key), type);
4270 QDECREF(key);
4271 if (args_type[i] == '\0') {
4272 goto out;
4274 type = qstring_new(); /* qdict has ref */
4275 cur_qs = key = qstring_new();
4276 break;
4277 case ':':
4278 cur_qs = type;
4279 break;
4280 default:
4281 qstring_append_chr(cur_qs, args_type[i]);
4282 break;
4286 out:
4287 return qdict;
4291 * Client argument checking rules:
4293 * 1. Client must provide all mandatory arguments
4294 * 2. Each argument provided by the client must be expected
4295 * 3. Each argument provided by the client must have the type expected
4296 * by the command
4298 static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4300 int flags, err;
4301 QDict *cmd_args;
4303 cmd_args = qdict_from_args_type(cmd->args_type);
4305 flags = 0;
4306 err = check_mandatory_args(cmd_args, client_args, &flags);
4307 if (err) {
4308 goto out;
4311 err = check_client_args_type(client_args, cmd_args, flags);
4313 out:
4314 QDECREF(cmd_args);
4315 return err;
4319 * Input object checking rules
4321 * 1. Input object must be a dict
4322 * 2. The "execute" key must exist
4323 * 3. The "execute" key must be a string
4324 * 4. If the "arguments" key exists, it must be a dict
4325 * 5. If the "id" key exists, it can be anything (ie. json-value)
4326 * 6. Any argument not listed above is considered invalid
4328 static QDict *qmp_check_input_obj(QObject *input_obj)
4330 const QDictEntry *ent;
4331 int has_exec_key = 0;
4332 QDict *input_dict;
4334 if (qobject_type(input_obj) != QTYPE_QDICT) {
4335 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4336 return NULL;
4339 input_dict = qobject_to_qdict(input_obj);
4341 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4342 const char *arg_name = qdict_entry_key(ent);
4343 const QObject *arg_obj = qdict_entry_value(ent);
4345 if (!strcmp(arg_name, "execute")) {
4346 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4347 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4348 "string");
4349 return NULL;
4351 has_exec_key = 1;
4352 } else if (!strcmp(arg_name, "arguments")) {
4353 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4354 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4355 "object");
4356 return NULL;
4358 } else if (!strcmp(arg_name, "id")) {
4359 /* FIXME: check duplicated IDs for async commands */
4360 } else {
4361 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4362 return NULL;
4366 if (!has_exec_key) {
4367 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4368 return NULL;
4371 return input_dict;
4374 static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4375 const QDict *params)
4377 int ret;
4378 QObject *data = NULL;
4380 mon_print_count_init(mon);
4382 ret = cmd->mhandler.cmd_new(mon, params, &data);
4383 handler_audit(mon, cmd, ret);
4384 monitor_protocol_emitter(mon, data);
4385 qobject_decref(data);
4388 static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4390 int err;
4391 QObject *obj;
4392 QDict *input, *args;
4393 const mon_cmd_t *cmd;
4394 const char *cmd_name;
4395 Monitor *mon = cur_mon;
4397 args = input = NULL;
4399 obj = json_parser_parse(tokens, NULL);
4400 if (!obj) {
4401 // FIXME: should be triggered in json_parser_parse()
4402 qerror_report(QERR_JSON_PARSING);
4403 goto err_out;
4406 input = qmp_check_input_obj(obj);
4407 if (!input) {
4408 qobject_decref(obj);
4409 goto err_out;
4412 mon->mc->id = qdict_get(input, "id");
4413 qobject_incref(mon->mc->id);
4415 cmd_name = qdict_get_str(input, "execute");
4416 trace_handle_qmp_command(mon, cmd_name);
4417 if (invalid_qmp_mode(mon, cmd_name)) {
4418 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4419 goto err_out;
4422 cmd = qmp_find_cmd(cmd_name);
4423 if (!cmd) {
4424 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4425 goto err_out;
4428 obj = qdict_get(input, "arguments");
4429 if (!obj) {
4430 args = qdict_new();
4431 } else {
4432 args = qobject_to_qdict(obj);
4433 QINCREF(args);
4436 err = qmp_check_client_args(cmd, args);
4437 if (err < 0) {
4438 goto err_out;
4441 if (handler_is_async(cmd)) {
4442 err = qmp_async_cmd_handler(mon, cmd, args);
4443 if (err) {
4444 /* emit the error response */
4445 goto err_out;
4447 } else {
4448 qmp_call_cmd(mon, cmd, args);
4451 goto out;
4453 err_out:
4454 monitor_protocol_emitter(mon, NULL);
4455 out:
4456 QDECREF(input);
4457 QDECREF(args);
4461 * monitor_control_read(): Read and handle QMP input
4463 static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4465 Monitor *old_mon = cur_mon;
4467 cur_mon = opaque;
4469 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
4471 cur_mon = old_mon;
4474 static void monitor_read(void *opaque, const uint8_t *buf, int size)
4476 Monitor *old_mon = cur_mon;
4477 int i;
4479 cur_mon = opaque;
4481 if (cur_mon->rs) {
4482 for (i = 0; i < size; i++)
4483 readline_handle_byte(cur_mon->rs, buf[i]);
4484 } else {
4485 if (size == 0 || buf[size - 1] != 0)
4486 monitor_printf(cur_mon, "corrupted command\n");
4487 else
4488 handle_user_command(cur_mon, (char *)buf);
4491 cur_mon = old_mon;
4494 static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
4496 monitor_suspend(mon);
4497 handle_user_command(mon, cmdline);
4498 monitor_resume(mon);
4501 int monitor_suspend(Monitor *mon)
4503 if (!mon->rs)
4504 return -ENOTTY;
4505 mon->suspend_cnt++;
4506 return 0;
4509 void monitor_resume(Monitor *mon)
4511 if (!mon->rs)
4512 return;
4513 if (--mon->suspend_cnt == 0)
4514 readline_show_prompt(mon->rs);
4517 static QObject *get_qmp_greeting(void)
4519 QObject *ver = NULL;
4521 qmp_marshal_input_query_version(NULL, NULL, &ver);
4522 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4526 * monitor_control_event(): Print QMP gretting
4528 static void monitor_control_event(void *opaque, int event)
4530 QObject *data;
4531 Monitor *mon = opaque;
4533 switch (event) {
4534 case CHR_EVENT_OPENED:
4535 mon->mc->command_mode = 0;
4536 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
4537 data = get_qmp_greeting();
4538 monitor_json_emitter(mon, data);
4539 qobject_decref(data);
4540 break;
4541 case CHR_EVENT_CLOSED:
4542 json_message_parser_destroy(&mon->mc->parser);
4543 break;
4547 static void monitor_event(void *opaque, int event)
4549 Monitor *mon = opaque;
4551 switch (event) {
4552 case CHR_EVENT_MUX_IN:
4553 mon->mux_out = 0;
4554 if (mon->reset_seen) {
4555 readline_restart(mon->rs);
4556 monitor_resume(mon);
4557 monitor_flush(mon);
4558 } else {
4559 mon->suspend_cnt = 0;
4561 break;
4563 case CHR_EVENT_MUX_OUT:
4564 if (mon->reset_seen) {
4565 if (mon->suspend_cnt == 0) {
4566 monitor_printf(mon, "\n");
4568 monitor_flush(mon);
4569 monitor_suspend(mon);
4570 } else {
4571 mon->suspend_cnt++;
4573 mon->mux_out = 1;
4574 break;
4576 case CHR_EVENT_OPENED:
4577 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4578 "information\n", QEMU_VERSION);
4579 if (!mon->mux_out) {
4580 readline_show_prompt(mon->rs);
4582 mon->reset_seen = 1;
4583 break;
4587 static int
4588 compare_mon_cmd(const void *a, const void *b)
4590 return strcmp(((const mon_cmd_t *)a)->name,
4591 ((const mon_cmd_t *)b)->name);
4594 static void sortcmdlist(void)
4596 int array_num;
4597 int elem_size = sizeof(mon_cmd_t);
4599 array_num = sizeof(mon_cmds)/elem_size-1;
4600 qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd);
4602 array_num = sizeof(info_cmds)/elem_size-1;
4603 qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd);
4608 * Local variables:
4609 * c-indent-level: 4
4610 * c-basic-offset: 4
4611 * tab-width: 8
4612 * End:
4615 void monitor_init(CharDriverState *chr, int flags)
4617 static int is_first_init = 1;
4618 Monitor *mon;
4620 if (is_first_init) {
4621 key_timer = qemu_new_timer_ns(vm_clock, release_keys, NULL);
4622 is_first_init = 0;
4625 mon = g_malloc0(sizeof(*mon));
4627 mon->chr = chr;
4628 mon->flags = flags;
4629 if (flags & MONITOR_USE_READLINE) {
4630 mon->rs = readline_init(mon, monitor_find_completion);
4631 monitor_read_command(mon, 0);
4634 if (monitor_ctrl_mode(mon)) {
4635 mon->mc = g_malloc0(sizeof(MonitorControl));
4636 /* Control mode requires special handlers */
4637 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4638 monitor_control_event, mon);
4639 qemu_chr_fe_set_echo(chr, true);
4640 } else {
4641 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4642 monitor_event, mon);
4645 QLIST_INSERT_HEAD(&mon_list, mon, entry);
4646 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4647 default_mon = mon;
4649 sortcmdlist();
4652 static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
4654 BlockDriverState *bs = opaque;
4655 int ret = 0;
4657 if (bdrv_set_key(bs, password) != 0) {
4658 monitor_printf(mon, "invalid password\n");
4659 ret = -EPERM;
4661 if (mon->password_completion_cb)
4662 mon->password_completion_cb(mon->password_opaque, ret);
4664 monitor_read_command(mon, 1);
4667 ReadLineState *monitor_get_rs(Monitor *mon)
4669 return mon->rs;
4672 int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4673 BlockDriverCompletionFunc *completion_cb,
4674 void *opaque)
4676 int err;
4678 if (!bdrv_key_required(bs)) {
4679 if (completion_cb)
4680 completion_cb(opaque, 0);
4681 return 0;
4684 if (monitor_ctrl_mode(mon)) {
4685 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs),
4686 bdrv_get_encrypted_filename(bs));
4687 return -1;
4690 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4691 bdrv_get_encrypted_filename(bs));
4693 mon->password_completion_cb = completion_cb;
4694 mon->password_opaque = opaque;
4696 err = monitor_read_password(mon, bdrv_password_cb, bs);
4698 if (err && completion_cb)
4699 completion_cb(opaque, err);
4701 return err;
4704 int monitor_read_block_device_key(Monitor *mon, const char *device,
4705 BlockDriverCompletionFunc *completion_cb,
4706 void *opaque)
4708 BlockDriverState *bs;
4710 bs = bdrv_find(device);
4711 if (!bs) {
4712 monitor_printf(mon, "Device not found %s\n", device);
4713 return -1;
4716 return monitor_read_bdrv_key_start(mon, bs, completion_cb, opaque);