qemu-kvm: Drop broken --no-cpu-emulation
[qemu-kvm.git] / monitor.c
bloba7df99536c93354a67aa078f4e2f6f8d99f3296f
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 case QEVENT_BLOCK_JOB_COMPLETED:
483 event_name = "BLOCK_JOB_COMPLETED";
484 break;
485 case QEVENT_BLOCK_JOB_CANCELLED:
486 event_name = "BLOCK_JOB_CANCELLED";
487 break;
488 default:
489 abort();
490 break;
493 qmp = qdict_new();
494 timestamp_put(qmp);
495 qdict_put(qmp, "event", qstring_from_str(event_name));
496 if (data) {
497 qobject_incref(data);
498 qdict_put_obj(qmp, "data", data);
501 QLIST_FOREACH(mon, &mon_list, entry) {
502 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
503 monitor_json_emitter(mon, QOBJECT(qmp));
506 QDECREF(qmp);
509 static int do_qmp_capabilities(Monitor *mon, const QDict *params,
510 QObject **ret_data)
512 /* Will setup QMP capabilities in the future */
513 if (monitor_ctrl_mode(mon)) {
514 mon->mc->command_mode = 1;
517 return 0;
520 static void handle_user_command(Monitor *mon, const char *cmdline);
522 char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index,
523 int64_t cpu_index, Error **errp)
525 char *output = NULL;
526 Monitor *old_mon, hmp;
527 CharDriverState mchar;
529 memset(&hmp, 0, sizeof(hmp));
530 qemu_chr_init_mem(&mchar);
531 hmp.chr = &mchar;
533 old_mon = cur_mon;
534 cur_mon = &hmp;
536 if (has_cpu_index) {
537 int ret = monitor_set_cpu(cpu_index);
538 if (ret < 0) {
539 cur_mon = old_mon;
540 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
541 "a CPU number");
542 goto out;
546 handle_user_command(&hmp, command_line);
547 cur_mon = old_mon;
549 if (qemu_chr_mem_osize(hmp.chr) > 0) {
550 QString *str = qemu_chr_mem_to_qs(hmp.chr);
551 output = g_strdup(qstring_get_str(str));
552 QDECREF(str);
553 } else {
554 output = g_strdup("");
557 out:
558 qemu_chr_close_mem(hmp.chr);
559 return output;
562 static int compare_cmd(const char *name, const char *list)
564 const char *p, *pstart;
565 int len;
566 len = strlen(name);
567 p = list;
568 for(;;) {
569 pstart = p;
570 p = strchr(p, '|');
571 if (!p)
572 p = pstart + strlen(pstart);
573 if ((p - pstart) == len && !memcmp(pstart, name, len))
574 return 1;
575 if (*p == '\0')
576 break;
577 p++;
579 return 0;
582 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
583 const char *prefix, const char *name)
585 const mon_cmd_t *cmd;
587 for(cmd = cmds; cmd->name != NULL; cmd++) {
588 if (!name || !strcmp(name, cmd->name))
589 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
590 cmd->params, cmd->help);
594 static void help_cmd(Monitor *mon, const char *name)
596 if (name && !strcmp(name, "info")) {
597 help_cmd_dump(mon, info_cmds, "info ", NULL);
598 } else {
599 help_cmd_dump(mon, mon_cmds, "", name);
600 if (name && !strcmp(name, "log")) {
601 const CPULogItem *item;
602 monitor_printf(mon, "Log items (comma separated):\n");
603 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
604 for(item = cpu_log_items; item->mask != 0; item++) {
605 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
611 static void do_help_cmd(Monitor *mon, const QDict *qdict)
613 help_cmd(mon, qdict_get_try_str(qdict, "name"));
616 static void do_trace_event_set_state(Monitor *mon, const QDict *qdict)
618 const char *tp_name = qdict_get_str(qdict, "name");
619 bool new_state = qdict_get_bool(qdict, "option");
620 int ret = trace_event_set_state(tp_name, new_state);
622 if (!ret) {
623 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
627 #ifdef CONFIG_TRACE_SIMPLE
628 static void do_trace_file(Monitor *mon, const QDict *qdict)
630 const char *op = qdict_get_try_str(qdict, "op");
631 const char *arg = qdict_get_try_str(qdict, "arg");
633 if (!op) {
634 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
635 } else if (!strcmp(op, "on")) {
636 st_set_trace_file_enabled(true);
637 } else if (!strcmp(op, "off")) {
638 st_set_trace_file_enabled(false);
639 } else if (!strcmp(op, "flush")) {
640 st_flush_trace_buffer();
641 } else if (!strcmp(op, "set")) {
642 if (arg) {
643 st_set_trace_file(arg);
645 } else {
646 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
647 help_cmd(mon, "trace-file");
650 #endif
652 static void user_monitor_complete(void *opaque, QObject *ret_data)
654 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
656 if (ret_data) {
657 data->user_print(data->mon, ret_data);
659 monitor_resume(data->mon);
660 g_free(data);
663 static void qmp_monitor_complete(void *opaque, QObject *ret_data)
665 monitor_protocol_emitter(opaque, ret_data);
668 static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
669 const QDict *params)
671 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
674 static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
675 const QDict *params)
677 int ret;
679 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
680 cb_data->mon = mon;
681 cb_data->user_print = cmd->user_print;
682 monitor_suspend(mon);
683 ret = cmd->mhandler.cmd_async(mon, params,
684 user_monitor_complete, cb_data);
685 if (ret < 0) {
686 monitor_resume(mon);
687 g_free(cb_data);
691 static void do_info(Monitor *mon, const QDict *qdict)
693 const mon_cmd_t *cmd;
694 const char *item = qdict_get_try_str(qdict, "item");
696 if (!item) {
697 goto help;
700 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
701 if (compare_cmd(item, cmd->name))
702 break;
705 if (cmd->name == NULL) {
706 goto help;
709 cmd->mhandler.info(mon);
710 return;
712 help:
713 help_cmd(mon, "info");
716 CommandInfoList *qmp_query_commands(Error **errp)
718 CommandInfoList *info, *cmd_list = NULL;
719 const mon_cmd_t *cmd;
721 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
722 info = g_malloc0(sizeof(*info));
723 info->value = g_malloc0(sizeof(*info->value));
724 info->value->name = g_strdup(cmd->name);
726 info->next = cmd_list;
727 cmd_list = info;
730 return cmd_list;
733 /* set the current CPU defined by the user */
734 int monitor_set_cpu(int cpu_index)
736 CPUState *env;
738 for(env = first_cpu; env != NULL; env = env->next_cpu) {
739 if (env->cpu_index == cpu_index) {
740 cur_mon->mon_cpu = env;
741 return 0;
744 return -1;
747 static CPUState *mon_get_cpu(void)
749 if (!cur_mon->mon_cpu) {
750 monitor_set_cpu(0);
752 cpu_synchronize_state(cur_mon->mon_cpu);
753 return cur_mon->mon_cpu;
756 int monitor_get_cpu_index(void)
758 return mon_get_cpu()->cpu_index;
761 static void do_info_registers(Monitor *mon)
763 CPUState *env;
764 env = mon_get_cpu();
765 #ifdef TARGET_I386
766 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
767 X86_DUMP_FPU);
768 #else
769 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
771 #endif
774 static void do_cpu_set_nr(Monitor *mon, const QDict *qdict)
776 int state, value;
777 const char *status;
779 status = qdict_get_str(qdict, "state");
780 value = qdict_get_int(qdict, "cpu");
782 if (!strcmp(status, "online"))
783 state = 1;
784 else if (!strcmp(status, "offline"))
785 state = 0;
786 else {
787 monitor_printf(mon, "invalid status: %s\n", status);
788 return;
790 #if defined(TARGET_I386) || defined(TARGET_X86_64)
791 qemu_system_cpu_hot_add(value, state);
792 #endif
795 static void do_info_jit(Monitor *mon)
797 dump_exec_info((FILE *)mon, monitor_fprintf);
800 static void do_info_history(Monitor *mon)
802 int i;
803 const char *str;
805 if (!mon->rs)
806 return;
807 i = 0;
808 for(;;) {
809 str = readline_get_history(mon->rs, i);
810 if (!str)
811 break;
812 monitor_printf(mon, "%d: '%s'\n", i, str);
813 i++;
817 #if defined(TARGET_PPC)
818 /* XXX: not implemented in other targets */
819 static void do_info_cpu_stats(Monitor *mon)
821 CPUState *env;
823 env = mon_get_cpu();
824 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
826 #endif
828 #if defined(CONFIG_TRACE_SIMPLE)
829 static void do_info_trace(Monitor *mon)
831 st_print_trace((FILE *)mon, &monitor_fprintf);
833 #endif
835 static void do_trace_print_events(Monitor *mon)
837 trace_print_events((FILE *)mon, &monitor_fprintf);
840 static int add_graphics_client(Monitor *mon, const QDict *qdict, QObject **ret_data)
842 const char *protocol = qdict_get_str(qdict, "protocol");
843 const char *fdname = qdict_get_str(qdict, "fdname");
844 CharDriverState *s;
846 if (strcmp(protocol, "spice") == 0) {
847 if (!using_spice) {
848 /* correct one? spice isn't a device ,,, */
849 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
850 return -1;
852 qerror_report(QERR_ADD_CLIENT_FAILED);
853 return -1;
854 #ifdef CONFIG_VNC
855 } else if (strcmp(protocol, "vnc") == 0) {
856 int fd = monitor_get_fd(mon, fdname);
857 int skipauth = qdict_get_try_bool(qdict, "skipauth", 0);
858 vnc_display_add_client(NULL, fd, skipauth);
859 return 0;
860 #endif
861 } else if ((s = qemu_chr_find(protocol)) != NULL) {
862 int fd = monitor_get_fd(mon, fdname);
863 if (qemu_chr_add_client(s, fd) < 0) {
864 qerror_report(QERR_ADD_CLIENT_FAILED);
865 return -1;
867 return 0;
870 qerror_report(QERR_INVALID_PARAMETER, "protocol");
871 return -1;
874 static int client_migrate_info(Monitor *mon, const QDict *qdict,
875 MonitorCompletion cb, void *opaque)
877 const char *protocol = qdict_get_str(qdict, "protocol");
878 const char *hostname = qdict_get_str(qdict, "hostname");
879 const char *subject = qdict_get_try_str(qdict, "cert-subject");
880 int port = qdict_get_try_int(qdict, "port", -1);
881 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
882 int ret;
884 if (strcmp(protocol, "spice") == 0) {
885 if (!using_spice) {
886 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
887 return -1;
890 ret = qemu_spice_migrate_info(hostname, port, tls_port, subject,
891 cb, opaque);
892 if (ret != 0) {
893 qerror_report(QERR_UNDEFINED_ERROR);
894 return -1;
896 return 0;
899 qerror_report(QERR_INVALID_PARAMETER, "protocol");
900 return -1;
903 static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
905 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
906 return 0;
909 static void do_logfile(Monitor *mon, const QDict *qdict)
911 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
914 static void do_log(Monitor *mon, const QDict *qdict)
916 int mask;
917 const char *items = qdict_get_str(qdict, "items");
919 if (!strcmp(items, "none")) {
920 mask = 0;
921 } else {
922 mask = cpu_str_to_log_mask(items);
923 if (!mask) {
924 help_cmd(mon, "log");
925 return;
928 cpu_set_log(mask);
931 static void do_singlestep(Monitor *mon, const QDict *qdict)
933 const char *option = qdict_get_try_str(qdict, "option");
934 if (!option || !strcmp(option, "on")) {
935 singlestep = 1;
936 } else if (!strcmp(option, "off")) {
937 singlestep = 0;
938 } else {
939 monitor_printf(mon, "unexpected option %s\n", option);
943 static void do_gdbserver(Monitor *mon, const QDict *qdict)
945 const char *device = qdict_get_try_str(qdict, "device");
946 if (!device)
947 device = "tcp::" DEFAULT_GDBSTUB_PORT;
948 if (gdbserver_start(device) < 0) {
949 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
950 device);
951 } else if (strcmp(device, "none") == 0) {
952 monitor_printf(mon, "Disabled gdbserver\n");
953 } else {
954 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
955 device);
959 static void do_watchdog_action(Monitor *mon, const QDict *qdict)
961 const char *action = qdict_get_str(qdict, "action");
962 if (select_watchdog_action(action) == -1) {
963 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
967 static void monitor_printc(Monitor *mon, int c)
969 monitor_printf(mon, "'");
970 switch(c) {
971 case '\'':
972 monitor_printf(mon, "\\'");
973 break;
974 case '\\':
975 monitor_printf(mon, "\\\\");
976 break;
977 case '\n':
978 monitor_printf(mon, "\\n");
979 break;
980 case '\r':
981 monitor_printf(mon, "\\r");
982 break;
983 default:
984 if (c >= 32 && c <= 126) {
985 monitor_printf(mon, "%c", c);
986 } else {
987 monitor_printf(mon, "\\x%02x", c);
989 break;
991 monitor_printf(mon, "'");
994 static void memory_dump(Monitor *mon, int count, int format, int wsize,
995 target_phys_addr_t addr, int is_physical)
997 CPUState *env;
998 int l, line_size, i, max_digits, len;
999 uint8_t buf[16];
1000 uint64_t v;
1002 if (format == 'i') {
1003 int flags;
1004 flags = 0;
1005 env = mon_get_cpu();
1006 #ifdef TARGET_I386
1007 if (wsize == 2) {
1008 flags = 1;
1009 } else if (wsize == 4) {
1010 flags = 0;
1011 } else {
1012 /* as default we use the current CS size */
1013 flags = 0;
1014 if (env) {
1015 #ifdef TARGET_X86_64
1016 if ((env->efer & MSR_EFER_LMA) &&
1017 (env->segs[R_CS].flags & DESC_L_MASK))
1018 flags = 2;
1019 else
1020 #endif
1021 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1022 flags = 1;
1025 #endif
1026 monitor_disas(mon, env, addr, count, is_physical, flags);
1027 return;
1030 len = wsize * count;
1031 if (wsize == 1)
1032 line_size = 8;
1033 else
1034 line_size = 16;
1035 max_digits = 0;
1037 switch(format) {
1038 case 'o':
1039 max_digits = (wsize * 8 + 2) / 3;
1040 break;
1041 default:
1042 case 'x':
1043 max_digits = (wsize * 8) / 4;
1044 break;
1045 case 'u':
1046 case 'd':
1047 max_digits = (wsize * 8 * 10 + 32) / 33;
1048 break;
1049 case 'c':
1050 wsize = 1;
1051 break;
1054 while (len > 0) {
1055 if (is_physical)
1056 monitor_printf(mon, TARGET_FMT_plx ":", addr);
1057 else
1058 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
1059 l = len;
1060 if (l > line_size)
1061 l = line_size;
1062 if (is_physical) {
1063 cpu_physical_memory_read(addr, buf, l);
1064 } else {
1065 env = mon_get_cpu();
1066 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
1067 monitor_printf(mon, " Cannot access memory\n");
1068 break;
1071 i = 0;
1072 while (i < l) {
1073 switch(wsize) {
1074 default:
1075 case 1:
1076 v = ldub_raw(buf + i);
1077 break;
1078 case 2:
1079 v = lduw_raw(buf + i);
1080 break;
1081 case 4:
1082 v = (uint32_t)ldl_raw(buf + i);
1083 break;
1084 case 8:
1085 v = ldq_raw(buf + i);
1086 break;
1088 monitor_printf(mon, " ");
1089 switch(format) {
1090 case 'o':
1091 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
1092 break;
1093 case 'x':
1094 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
1095 break;
1096 case 'u':
1097 monitor_printf(mon, "%*" PRIu64, max_digits, v);
1098 break;
1099 case 'd':
1100 monitor_printf(mon, "%*" PRId64, max_digits, v);
1101 break;
1102 case 'c':
1103 monitor_printc(mon, v);
1104 break;
1106 i += wsize;
1108 monitor_printf(mon, "\n");
1109 addr += l;
1110 len -= l;
1114 static void do_memory_dump(Monitor *mon, const QDict *qdict)
1116 int count = qdict_get_int(qdict, "count");
1117 int format = qdict_get_int(qdict, "format");
1118 int size = qdict_get_int(qdict, "size");
1119 target_long addr = qdict_get_int(qdict, "addr");
1121 memory_dump(mon, count, format, size, addr, 0);
1124 static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
1126 int count = qdict_get_int(qdict, "count");
1127 int format = qdict_get_int(qdict, "format");
1128 int size = qdict_get_int(qdict, "size");
1129 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
1131 memory_dump(mon, count, format, size, addr, 1);
1134 static void do_print(Monitor *mon, const QDict *qdict)
1136 int format = qdict_get_int(qdict, "format");
1137 target_phys_addr_t val = qdict_get_int(qdict, "val");
1139 #if TARGET_PHYS_ADDR_BITS == 32
1140 switch(format) {
1141 case 'o':
1142 monitor_printf(mon, "%#o", val);
1143 break;
1144 case 'x':
1145 monitor_printf(mon, "%#x", val);
1146 break;
1147 case 'u':
1148 monitor_printf(mon, "%u", val);
1149 break;
1150 default:
1151 case 'd':
1152 monitor_printf(mon, "%d", val);
1153 break;
1154 case 'c':
1155 monitor_printc(mon, val);
1156 break;
1158 #else
1159 switch(format) {
1160 case 'o':
1161 monitor_printf(mon, "%#" PRIo64, val);
1162 break;
1163 case 'x':
1164 monitor_printf(mon, "%#" PRIx64, val);
1165 break;
1166 case 'u':
1167 monitor_printf(mon, "%" PRIu64, val);
1168 break;
1169 default:
1170 case 'd':
1171 monitor_printf(mon, "%" PRId64, val);
1172 break;
1173 case 'c':
1174 monitor_printc(mon, val);
1175 break;
1177 #endif
1178 monitor_printf(mon, "\n");
1181 static void do_sum(Monitor *mon, const QDict *qdict)
1183 uint32_t addr;
1184 uint16_t sum;
1185 uint32_t start = qdict_get_int(qdict, "start");
1186 uint32_t size = qdict_get_int(qdict, "size");
1188 sum = 0;
1189 for(addr = start; addr < (start + size); addr++) {
1190 uint8_t val = ldub_phys(addr);
1191 /* BSD sum algorithm ('sum' Unix command) */
1192 sum = (sum >> 1) | (sum << 15);
1193 sum += val;
1195 monitor_printf(mon, "%05d\n", sum);
1198 typedef struct {
1199 int keycode;
1200 const char *name;
1201 } KeyDef;
1203 static const KeyDef key_defs[] = {
1204 { 0x2a, "shift" },
1205 { 0x36, "shift_r" },
1207 { 0x38, "alt" },
1208 { 0xb8, "alt_r" },
1209 { 0x64, "altgr" },
1210 { 0xe4, "altgr_r" },
1211 { 0x1d, "ctrl" },
1212 { 0x9d, "ctrl_r" },
1214 { 0xdd, "menu" },
1216 { 0x01, "esc" },
1218 { 0x02, "1" },
1219 { 0x03, "2" },
1220 { 0x04, "3" },
1221 { 0x05, "4" },
1222 { 0x06, "5" },
1223 { 0x07, "6" },
1224 { 0x08, "7" },
1225 { 0x09, "8" },
1226 { 0x0a, "9" },
1227 { 0x0b, "0" },
1228 { 0x0c, "minus" },
1229 { 0x0d, "equal" },
1230 { 0x0e, "backspace" },
1232 { 0x0f, "tab" },
1233 { 0x10, "q" },
1234 { 0x11, "w" },
1235 { 0x12, "e" },
1236 { 0x13, "r" },
1237 { 0x14, "t" },
1238 { 0x15, "y" },
1239 { 0x16, "u" },
1240 { 0x17, "i" },
1241 { 0x18, "o" },
1242 { 0x19, "p" },
1243 { 0x1a, "bracket_left" },
1244 { 0x1b, "bracket_right" },
1245 { 0x1c, "ret" },
1247 { 0x1e, "a" },
1248 { 0x1f, "s" },
1249 { 0x20, "d" },
1250 { 0x21, "f" },
1251 { 0x22, "g" },
1252 { 0x23, "h" },
1253 { 0x24, "j" },
1254 { 0x25, "k" },
1255 { 0x26, "l" },
1256 { 0x27, "semicolon" },
1257 { 0x28, "apostrophe" },
1258 { 0x29, "grave_accent" },
1260 { 0x2b, "backslash" },
1261 { 0x2c, "z" },
1262 { 0x2d, "x" },
1263 { 0x2e, "c" },
1264 { 0x2f, "v" },
1265 { 0x30, "b" },
1266 { 0x31, "n" },
1267 { 0x32, "m" },
1268 { 0x33, "comma" },
1269 { 0x34, "dot" },
1270 { 0x35, "slash" },
1272 { 0x37, "asterisk" },
1274 { 0x39, "spc" },
1275 { 0x3a, "caps_lock" },
1276 { 0x3b, "f1" },
1277 { 0x3c, "f2" },
1278 { 0x3d, "f3" },
1279 { 0x3e, "f4" },
1280 { 0x3f, "f5" },
1281 { 0x40, "f6" },
1282 { 0x41, "f7" },
1283 { 0x42, "f8" },
1284 { 0x43, "f9" },
1285 { 0x44, "f10" },
1286 { 0x45, "num_lock" },
1287 { 0x46, "scroll_lock" },
1289 { 0xb5, "kp_divide" },
1290 { 0x37, "kp_multiply" },
1291 { 0x4a, "kp_subtract" },
1292 { 0x4e, "kp_add" },
1293 { 0x9c, "kp_enter" },
1294 { 0x53, "kp_decimal" },
1295 { 0x54, "sysrq" },
1297 { 0x52, "kp_0" },
1298 { 0x4f, "kp_1" },
1299 { 0x50, "kp_2" },
1300 { 0x51, "kp_3" },
1301 { 0x4b, "kp_4" },
1302 { 0x4c, "kp_5" },
1303 { 0x4d, "kp_6" },
1304 { 0x47, "kp_7" },
1305 { 0x48, "kp_8" },
1306 { 0x49, "kp_9" },
1308 { 0x56, "<" },
1310 { 0x57, "f11" },
1311 { 0x58, "f12" },
1313 { 0xb7, "print" },
1315 { 0xc7, "home" },
1316 { 0xc9, "pgup" },
1317 { 0xd1, "pgdn" },
1318 { 0xcf, "end" },
1320 { 0xcb, "left" },
1321 { 0xc8, "up" },
1322 { 0xd0, "down" },
1323 { 0xcd, "right" },
1325 { 0xd2, "insert" },
1326 { 0xd3, "delete" },
1327 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1328 { 0xf0, "stop" },
1329 { 0xf1, "again" },
1330 { 0xf2, "props" },
1331 { 0xf3, "undo" },
1332 { 0xf4, "front" },
1333 { 0xf5, "copy" },
1334 { 0xf6, "open" },
1335 { 0xf7, "paste" },
1336 { 0xf8, "find" },
1337 { 0xf9, "cut" },
1338 { 0xfa, "lf" },
1339 { 0xfb, "help" },
1340 { 0xfc, "meta_l" },
1341 { 0xfd, "meta_r" },
1342 { 0xfe, "compose" },
1343 #endif
1344 { 0, NULL },
1347 static int get_keycode(const char *key)
1349 const KeyDef *p;
1350 char *endp;
1351 int ret;
1353 for(p = key_defs; p->name != NULL; p++) {
1354 if (!strcmp(key, p->name))
1355 return p->keycode;
1357 if (strstart(key, "0x", NULL)) {
1358 ret = strtoul(key, &endp, 0);
1359 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1360 return ret;
1362 return -1;
1365 #define MAX_KEYCODES 16
1366 static uint8_t keycodes[MAX_KEYCODES];
1367 static int nb_pending_keycodes;
1368 static QEMUTimer *key_timer;
1370 static void release_keys(void *opaque)
1372 int keycode;
1374 while (nb_pending_keycodes > 0) {
1375 nb_pending_keycodes--;
1376 keycode = keycodes[nb_pending_keycodes];
1377 if (keycode & 0x80)
1378 kbd_put_keycode(0xe0);
1379 kbd_put_keycode(keycode | 0x80);
1383 static void do_sendkey(Monitor *mon, const QDict *qdict)
1385 char keyname_buf[16];
1386 char *separator;
1387 int keyname_len, keycode, i;
1388 const char *string = qdict_get_str(qdict, "string");
1389 int has_hold_time = qdict_haskey(qdict, "hold_time");
1390 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
1392 if (nb_pending_keycodes > 0) {
1393 qemu_del_timer(key_timer);
1394 release_keys(NULL);
1396 if (!has_hold_time)
1397 hold_time = 100;
1398 i = 0;
1399 while (1) {
1400 separator = strchr(string, '-');
1401 keyname_len = separator ? separator - string : strlen(string);
1402 if (keyname_len > 0) {
1403 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1404 if (keyname_len > sizeof(keyname_buf) - 1) {
1405 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
1406 return;
1408 if (i == MAX_KEYCODES) {
1409 monitor_printf(mon, "too many keys\n");
1410 return;
1412 keyname_buf[keyname_len] = 0;
1413 keycode = get_keycode(keyname_buf);
1414 if (keycode < 0) {
1415 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
1416 return;
1418 keycodes[i++] = keycode;
1420 if (!separator)
1421 break;
1422 string = separator + 1;
1424 nb_pending_keycodes = i;
1425 /* key down events */
1426 for (i = 0; i < nb_pending_keycodes; i++) {
1427 keycode = keycodes[i];
1428 if (keycode & 0x80)
1429 kbd_put_keycode(0xe0);
1430 kbd_put_keycode(keycode & 0x7f);
1432 /* delayed key up events */
1433 qemu_mod_timer(key_timer, qemu_get_clock_ns(vm_clock) +
1434 muldiv64(get_ticks_per_sec(), hold_time, 1000));
1437 static int mouse_button_state;
1439 static void do_mouse_move(Monitor *mon, const QDict *qdict)
1441 int dx, dy, dz;
1442 const char *dx_str = qdict_get_str(qdict, "dx_str");
1443 const char *dy_str = qdict_get_str(qdict, "dy_str");
1444 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1445 dx = strtol(dx_str, NULL, 0);
1446 dy = strtol(dy_str, NULL, 0);
1447 dz = 0;
1448 if (dz_str)
1449 dz = strtol(dz_str, NULL, 0);
1450 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1453 static void do_mouse_button(Monitor *mon, const QDict *qdict)
1455 int button_state = qdict_get_int(qdict, "button_state");
1456 mouse_button_state = button_state;
1457 kbd_mouse_event(0, 0, 0, mouse_button_state);
1460 static void do_ioport_read(Monitor *mon, const QDict *qdict)
1462 int size = qdict_get_int(qdict, "size");
1463 int addr = qdict_get_int(qdict, "addr");
1464 int has_index = qdict_haskey(qdict, "index");
1465 uint32_t val;
1466 int suffix;
1468 if (has_index) {
1469 int index = qdict_get_int(qdict, "index");
1470 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
1471 addr++;
1473 addr &= 0xffff;
1475 switch(size) {
1476 default:
1477 case 1:
1478 val = cpu_inb(addr);
1479 suffix = 'b';
1480 break;
1481 case 2:
1482 val = cpu_inw(addr);
1483 suffix = 'w';
1484 break;
1485 case 4:
1486 val = cpu_inl(addr);
1487 suffix = 'l';
1488 break;
1490 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1491 suffix, addr, size * 2, val);
1494 static void do_ioport_write(Monitor *mon, const QDict *qdict)
1496 int size = qdict_get_int(qdict, "size");
1497 int addr = qdict_get_int(qdict, "addr");
1498 int val = qdict_get_int(qdict, "val");
1500 addr &= IOPORTS_MASK;
1502 switch (size) {
1503 default:
1504 case 1:
1505 cpu_outb(addr, val);
1506 break;
1507 case 2:
1508 cpu_outw(addr, val);
1509 break;
1510 case 4:
1511 cpu_outl(addr, val);
1512 break;
1516 static void do_boot_set(Monitor *mon, const QDict *qdict)
1518 int res;
1519 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1521 res = qemu_boot_set(bootdevice);
1522 if (res == 0) {
1523 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1524 } else if (res > 0) {
1525 monitor_printf(mon, "setting boot device list failed\n");
1526 } else {
1527 monitor_printf(mon, "no function defined to set boot device list for "
1528 "this architecture\n");
1532 #if defined(TARGET_I386)
1533 static void print_pte(Monitor *mon, target_phys_addr_t addr,
1534 target_phys_addr_t pte,
1535 target_phys_addr_t mask)
1537 #ifdef TARGET_X86_64
1538 if (addr & (1ULL << 47)) {
1539 addr |= -1LL << 48;
1541 #endif
1542 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1543 " %c%c%c%c%c%c%c%c%c\n",
1544 addr,
1545 pte & mask,
1546 pte & PG_NX_MASK ? 'X' : '-',
1547 pte & PG_GLOBAL_MASK ? 'G' : '-',
1548 pte & PG_PSE_MASK ? 'P' : '-',
1549 pte & PG_DIRTY_MASK ? 'D' : '-',
1550 pte & PG_ACCESSED_MASK ? 'A' : '-',
1551 pte & PG_PCD_MASK ? 'C' : '-',
1552 pte & PG_PWT_MASK ? 'T' : '-',
1553 pte & PG_USER_MASK ? 'U' : '-',
1554 pte & PG_RW_MASK ? 'W' : '-');
1557 static void tlb_info_32(Monitor *mon, CPUState *env)
1559 unsigned int l1, l2;
1560 uint32_t pgd, pde, pte;
1562 pgd = env->cr[3] & ~0xfff;
1563 for(l1 = 0; l1 < 1024; l1++) {
1564 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
1565 pde = le32_to_cpu(pde);
1566 if (pde & PG_PRESENT_MASK) {
1567 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1568 /* 4M pages */
1569 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
1570 } else {
1571 for(l2 = 0; l2 < 1024; l2++) {
1572 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
1573 pte = le32_to_cpu(pte);
1574 if (pte & PG_PRESENT_MASK) {
1575 print_pte(mon, (l1 << 22) + (l2 << 12),
1576 pte & ~PG_PSE_MASK,
1577 ~0xfff);
1585 static void tlb_info_pae32(Monitor *mon, CPUState *env)
1587 unsigned int l1, l2, l3;
1588 uint64_t pdpe, pde, pte;
1589 uint64_t pdp_addr, pd_addr, pt_addr;
1591 pdp_addr = env->cr[3] & ~0x1f;
1592 for (l1 = 0; l1 < 4; l1++) {
1593 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
1594 pdpe = le64_to_cpu(pdpe);
1595 if (pdpe & PG_PRESENT_MASK) {
1596 pd_addr = pdpe & 0x3fffffffff000ULL;
1597 for (l2 = 0; l2 < 512; l2++) {
1598 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
1599 pde = le64_to_cpu(pde);
1600 if (pde & PG_PRESENT_MASK) {
1601 if (pde & PG_PSE_MASK) {
1602 /* 2M pages with PAE, CR4.PSE is ignored */
1603 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
1604 ~((target_phys_addr_t)(1 << 20) - 1));
1605 } else {
1606 pt_addr = pde & 0x3fffffffff000ULL;
1607 for (l3 = 0; l3 < 512; l3++) {
1608 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
1609 pte = le64_to_cpu(pte);
1610 if (pte & PG_PRESENT_MASK) {
1611 print_pte(mon, (l1 << 30 ) + (l2 << 21)
1612 + (l3 << 12),
1613 pte & ~PG_PSE_MASK,
1614 ~(target_phys_addr_t)0xfff);
1624 #ifdef TARGET_X86_64
1625 static void tlb_info_64(Monitor *mon, CPUState *env)
1627 uint64_t l1, l2, l3, l4;
1628 uint64_t pml4e, pdpe, pde, pte;
1629 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
1631 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1632 for (l1 = 0; l1 < 512; l1++) {
1633 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
1634 pml4e = le64_to_cpu(pml4e);
1635 if (pml4e & PG_PRESENT_MASK) {
1636 pdp_addr = pml4e & 0x3fffffffff000ULL;
1637 for (l2 = 0; l2 < 512; l2++) {
1638 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
1639 pdpe = le64_to_cpu(pdpe);
1640 if (pdpe & PG_PRESENT_MASK) {
1641 if (pdpe & PG_PSE_MASK) {
1642 /* 1G pages, CR4.PSE is ignored */
1643 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
1644 0x3ffffc0000000ULL);
1645 } else {
1646 pd_addr = pdpe & 0x3fffffffff000ULL;
1647 for (l3 = 0; l3 < 512; l3++) {
1648 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
1649 pde = le64_to_cpu(pde);
1650 if (pde & PG_PRESENT_MASK) {
1651 if (pde & PG_PSE_MASK) {
1652 /* 2M pages, CR4.PSE is ignored */
1653 print_pte(mon, (l1 << 39) + (l2 << 30) +
1654 (l3 << 21), pde,
1655 0x3ffffffe00000ULL);
1656 } else {
1657 pt_addr = pde & 0x3fffffffff000ULL;
1658 for (l4 = 0; l4 < 512; l4++) {
1659 cpu_physical_memory_read(pt_addr
1660 + l4 * 8,
1661 &pte, 8);
1662 pte = le64_to_cpu(pte);
1663 if (pte & PG_PRESENT_MASK) {
1664 print_pte(mon, (l1 << 39) +
1665 (l2 << 30) +
1666 (l3 << 21) + (l4 << 12),
1667 pte & ~PG_PSE_MASK,
1668 0x3fffffffff000ULL);
1680 #endif
1682 static void tlb_info(Monitor *mon)
1684 CPUState *env;
1686 env = mon_get_cpu();
1688 if (!(env->cr[0] & CR0_PG_MASK)) {
1689 monitor_printf(mon, "PG disabled\n");
1690 return;
1692 if (env->cr[4] & CR4_PAE_MASK) {
1693 #ifdef TARGET_X86_64
1694 if (env->hflags & HF_LMA_MASK) {
1695 tlb_info_64(mon, env);
1696 } else
1697 #endif
1699 tlb_info_pae32(mon, env);
1701 } else {
1702 tlb_info_32(mon, env);
1706 static void mem_print(Monitor *mon, target_phys_addr_t *pstart,
1707 int *plast_prot,
1708 target_phys_addr_t end, int prot)
1710 int prot1;
1711 prot1 = *plast_prot;
1712 if (prot != prot1) {
1713 if (*pstart != -1) {
1714 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
1715 TARGET_FMT_plx " %c%c%c\n",
1716 *pstart, end, end - *pstart,
1717 prot1 & PG_USER_MASK ? 'u' : '-',
1718 'r',
1719 prot1 & PG_RW_MASK ? 'w' : '-');
1721 if (prot != 0)
1722 *pstart = end;
1723 else
1724 *pstart = -1;
1725 *plast_prot = prot;
1729 static void mem_info_32(Monitor *mon, CPUState *env)
1731 unsigned int l1, l2;
1732 int prot, last_prot;
1733 uint32_t pgd, pde, pte;
1734 target_phys_addr_t start, end;
1736 pgd = env->cr[3] & ~0xfff;
1737 last_prot = 0;
1738 start = -1;
1739 for(l1 = 0; l1 < 1024; l1++) {
1740 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
1741 pde = le32_to_cpu(pde);
1742 end = l1 << 22;
1743 if (pde & PG_PRESENT_MASK) {
1744 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1745 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1746 mem_print(mon, &start, &last_prot, end, prot);
1747 } else {
1748 for(l2 = 0; l2 < 1024; l2++) {
1749 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
1750 pte = le32_to_cpu(pte);
1751 end = (l1 << 22) + (l2 << 12);
1752 if (pte & PG_PRESENT_MASK) {
1753 prot = pte & pde &
1754 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1755 } else {
1756 prot = 0;
1758 mem_print(mon, &start, &last_prot, end, prot);
1761 } else {
1762 prot = 0;
1763 mem_print(mon, &start, &last_prot, end, prot);
1766 /* Flush last range */
1767 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
1770 static void mem_info_pae32(Monitor *mon, CPUState *env)
1772 unsigned int l1, l2, l3;
1773 int prot, last_prot;
1774 uint64_t pdpe, pde, pte;
1775 uint64_t pdp_addr, pd_addr, pt_addr;
1776 target_phys_addr_t start, end;
1778 pdp_addr = env->cr[3] & ~0x1f;
1779 last_prot = 0;
1780 start = -1;
1781 for (l1 = 0; l1 < 4; l1++) {
1782 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
1783 pdpe = le64_to_cpu(pdpe);
1784 end = l1 << 30;
1785 if (pdpe & PG_PRESENT_MASK) {
1786 pd_addr = pdpe & 0x3fffffffff000ULL;
1787 for (l2 = 0; l2 < 512; l2++) {
1788 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
1789 pde = le64_to_cpu(pde);
1790 end = (l1 << 30) + (l2 << 21);
1791 if (pde & PG_PRESENT_MASK) {
1792 if (pde & PG_PSE_MASK) {
1793 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1794 PG_PRESENT_MASK);
1795 mem_print(mon, &start, &last_prot, end, prot);
1796 } else {
1797 pt_addr = pde & 0x3fffffffff000ULL;
1798 for (l3 = 0; l3 < 512; l3++) {
1799 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
1800 pte = le64_to_cpu(pte);
1801 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
1802 if (pte & PG_PRESENT_MASK) {
1803 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
1804 PG_PRESENT_MASK);
1805 } else {
1806 prot = 0;
1808 mem_print(mon, &start, &last_prot, end, prot);
1811 } else {
1812 prot = 0;
1813 mem_print(mon, &start, &last_prot, end, prot);
1816 } else {
1817 prot = 0;
1818 mem_print(mon, &start, &last_prot, end, prot);
1821 /* Flush last range */
1822 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
1826 #ifdef TARGET_X86_64
1827 static void mem_info_64(Monitor *mon, CPUState *env)
1829 int prot, last_prot;
1830 uint64_t l1, l2, l3, l4;
1831 uint64_t pml4e, pdpe, pde, pte;
1832 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
1834 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1835 last_prot = 0;
1836 start = -1;
1837 for (l1 = 0; l1 < 512; l1++) {
1838 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
1839 pml4e = le64_to_cpu(pml4e);
1840 end = l1 << 39;
1841 if (pml4e & PG_PRESENT_MASK) {
1842 pdp_addr = pml4e & 0x3fffffffff000ULL;
1843 for (l2 = 0; l2 < 512; l2++) {
1844 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
1845 pdpe = le64_to_cpu(pdpe);
1846 end = (l1 << 39) + (l2 << 30);
1847 if (pdpe & PG_PRESENT_MASK) {
1848 if (pdpe & PG_PSE_MASK) {
1849 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
1850 PG_PRESENT_MASK);
1851 prot &= pml4e;
1852 mem_print(mon, &start, &last_prot, end, prot);
1853 } else {
1854 pd_addr = pdpe & 0x3fffffffff000ULL;
1855 for (l3 = 0; l3 < 512; l3++) {
1856 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
1857 pde = le64_to_cpu(pde);
1858 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
1859 if (pde & PG_PRESENT_MASK) {
1860 if (pde & PG_PSE_MASK) {
1861 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1862 PG_PRESENT_MASK);
1863 prot &= pml4e & pdpe;
1864 mem_print(mon, &start, &last_prot, end, prot);
1865 } else {
1866 pt_addr = pde & 0x3fffffffff000ULL;
1867 for (l4 = 0; l4 < 512; l4++) {
1868 cpu_physical_memory_read(pt_addr
1869 + l4 * 8,
1870 &pte, 8);
1871 pte = le64_to_cpu(pte);
1872 end = (l1 << 39) + (l2 << 30) +
1873 (l3 << 21) + (l4 << 12);
1874 if (pte & PG_PRESENT_MASK) {
1875 prot = pte & (PG_USER_MASK | PG_RW_MASK |
1876 PG_PRESENT_MASK);
1877 prot &= pml4e & pdpe & pde;
1878 } else {
1879 prot = 0;
1881 mem_print(mon, &start, &last_prot, end, prot);
1884 } else {
1885 prot = 0;
1886 mem_print(mon, &start, &last_prot, end, prot);
1890 } else {
1891 prot = 0;
1892 mem_print(mon, &start, &last_prot, end, prot);
1895 } else {
1896 prot = 0;
1897 mem_print(mon, &start, &last_prot, end, prot);
1900 /* Flush last range */
1901 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 48, 0);
1903 #endif
1905 static void mem_info(Monitor *mon)
1907 CPUState *env;
1909 env = mon_get_cpu();
1911 if (!(env->cr[0] & CR0_PG_MASK)) {
1912 monitor_printf(mon, "PG disabled\n");
1913 return;
1915 if (env->cr[4] & CR4_PAE_MASK) {
1916 #ifdef TARGET_X86_64
1917 if (env->hflags & HF_LMA_MASK) {
1918 mem_info_64(mon, env);
1919 } else
1920 #endif
1922 mem_info_pae32(mon, env);
1924 } else {
1925 mem_info_32(mon, env);
1928 #endif
1930 #if defined(TARGET_SH4)
1932 static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
1934 monitor_printf(mon, " tlb%i:\t"
1935 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1936 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1937 "dirty=%hhu writethrough=%hhu\n",
1938 idx,
1939 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1940 tlb->v, tlb->sh, tlb->c, tlb->pr,
1941 tlb->d, tlb->wt);
1944 static void tlb_info(Monitor *mon)
1946 CPUState *env = mon_get_cpu();
1947 int i;
1949 monitor_printf (mon, "ITLB:\n");
1950 for (i = 0 ; i < ITLB_SIZE ; i++)
1951 print_tlb (mon, i, &env->itlb[i]);
1952 monitor_printf (mon, "UTLB:\n");
1953 for (i = 0 ; i < UTLB_SIZE ; i++)
1954 print_tlb (mon, i, &env->utlb[i]);
1957 #endif
1959 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
1960 static void tlb_info(Monitor *mon)
1962 CPUState *env1 = mon_get_cpu();
1964 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
1966 #endif
1968 static void do_info_mtree(Monitor *mon)
1970 mtree_info((fprintf_function)monitor_printf, mon);
1973 static void do_info_numa(Monitor *mon)
1975 int i;
1976 CPUState *env;
1978 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1979 for (i = 0; i < nb_numa_nodes; i++) {
1980 monitor_printf(mon, "node %d cpus:", i);
1981 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1982 if (env->numa_node == i) {
1983 monitor_printf(mon, " %d", env->cpu_index);
1986 monitor_printf(mon, "\n");
1987 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1988 node_mem[i] >> 20);
1992 #ifdef CONFIG_PROFILER
1994 int64_t qemu_time;
1995 int64_t dev_time;
1997 static void do_info_profile(Monitor *mon)
1999 int64_t total;
2000 total = qemu_time;
2001 if (total == 0)
2002 total = 1;
2003 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
2004 dev_time, dev_time / (double)get_ticks_per_sec());
2005 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
2006 qemu_time, qemu_time / (double)get_ticks_per_sec());
2007 qemu_time = 0;
2008 dev_time = 0;
2010 #else
2011 static void do_info_profile(Monitor *mon)
2013 monitor_printf(mon, "Internal profiler not compiled\n");
2015 #endif
2017 /* Capture support */
2018 static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
2020 static void do_info_capture(Monitor *mon)
2022 int i;
2023 CaptureState *s;
2025 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2026 monitor_printf(mon, "[%d]: ", i);
2027 s->ops.info (s->opaque);
2031 #ifdef HAS_AUDIO
2032 static void do_stop_capture(Monitor *mon, const QDict *qdict)
2034 int i;
2035 int n = qdict_get_int(qdict, "n");
2036 CaptureState *s;
2038 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2039 if (i == n) {
2040 s->ops.destroy (s->opaque);
2041 QLIST_REMOVE (s, entries);
2042 g_free (s);
2043 return;
2048 static void do_wav_capture(Monitor *mon, const QDict *qdict)
2050 const char *path = qdict_get_str(qdict, "path");
2051 int has_freq = qdict_haskey(qdict, "freq");
2052 int freq = qdict_get_try_int(qdict, "freq", -1);
2053 int has_bits = qdict_haskey(qdict, "bits");
2054 int bits = qdict_get_try_int(qdict, "bits", -1);
2055 int has_channels = qdict_haskey(qdict, "nchannels");
2056 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
2057 CaptureState *s;
2059 s = g_malloc0 (sizeof (*s));
2061 freq = has_freq ? freq : 44100;
2062 bits = has_bits ? bits : 16;
2063 nchannels = has_channels ? nchannels : 2;
2065 if (wav_start_capture (s, path, freq, bits, nchannels)) {
2066 monitor_printf(mon, "Failed to add wave capture\n");
2067 g_free (s);
2068 return;
2070 QLIST_INSERT_HEAD (&capture_head, s, entries);
2072 #endif
2074 static qemu_acl *find_acl(Monitor *mon, const char *name)
2076 qemu_acl *acl = qemu_acl_find(name);
2078 if (!acl) {
2079 monitor_printf(mon, "acl: unknown list '%s'\n", name);
2081 return acl;
2084 static void do_acl_show(Monitor *mon, const QDict *qdict)
2086 const char *aclname = qdict_get_str(qdict, "aclname");
2087 qemu_acl *acl = find_acl(mon, aclname);
2088 qemu_acl_entry *entry;
2089 int i = 0;
2091 if (acl) {
2092 monitor_printf(mon, "policy: %s\n",
2093 acl->defaultDeny ? "deny" : "allow");
2094 QTAILQ_FOREACH(entry, &acl->entries, next) {
2095 i++;
2096 monitor_printf(mon, "%d: %s %s\n", i,
2097 entry->deny ? "deny" : "allow", entry->match);
2102 static void do_acl_reset(Monitor *mon, const QDict *qdict)
2104 const char *aclname = qdict_get_str(qdict, "aclname");
2105 qemu_acl *acl = find_acl(mon, aclname);
2107 if (acl) {
2108 qemu_acl_reset(acl);
2109 monitor_printf(mon, "acl: removed all rules\n");
2113 static void do_acl_policy(Monitor *mon, const QDict *qdict)
2115 const char *aclname = qdict_get_str(qdict, "aclname");
2116 const char *policy = qdict_get_str(qdict, "policy");
2117 qemu_acl *acl = find_acl(mon, aclname);
2119 if (acl) {
2120 if (strcmp(policy, "allow") == 0) {
2121 acl->defaultDeny = 0;
2122 monitor_printf(mon, "acl: policy set to 'allow'\n");
2123 } else if (strcmp(policy, "deny") == 0) {
2124 acl->defaultDeny = 1;
2125 monitor_printf(mon, "acl: policy set to 'deny'\n");
2126 } else {
2127 monitor_printf(mon, "acl: unknown policy '%s', "
2128 "expected 'deny' or 'allow'\n", policy);
2133 static void do_acl_add(Monitor *mon, const QDict *qdict)
2135 const char *aclname = qdict_get_str(qdict, "aclname");
2136 const char *match = qdict_get_str(qdict, "match");
2137 const char *policy = qdict_get_str(qdict, "policy");
2138 int has_index = qdict_haskey(qdict, "index");
2139 int index = qdict_get_try_int(qdict, "index", -1);
2140 qemu_acl *acl = find_acl(mon, aclname);
2141 int deny, ret;
2143 if (acl) {
2144 if (strcmp(policy, "allow") == 0) {
2145 deny = 0;
2146 } else if (strcmp(policy, "deny") == 0) {
2147 deny = 1;
2148 } else {
2149 monitor_printf(mon, "acl: unknown policy '%s', "
2150 "expected 'deny' or 'allow'\n", policy);
2151 return;
2153 if (has_index)
2154 ret = qemu_acl_insert(acl, deny, match, index);
2155 else
2156 ret = qemu_acl_append(acl, deny, match);
2157 if (ret < 0)
2158 monitor_printf(mon, "acl: unable to add acl entry\n");
2159 else
2160 monitor_printf(mon, "acl: added rule at position %d\n", ret);
2164 static void do_acl_remove(Monitor *mon, const QDict *qdict)
2166 const char *aclname = qdict_get_str(qdict, "aclname");
2167 const char *match = qdict_get_str(qdict, "match");
2168 qemu_acl *acl = find_acl(mon, aclname);
2169 int ret;
2171 if (acl) {
2172 ret = qemu_acl_remove(acl, match);
2173 if (ret < 0)
2174 monitor_printf(mon, "acl: no matching acl entry\n");
2175 else
2176 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
2180 #if defined(TARGET_I386)
2181 static void do_inject_mce(Monitor *mon, const QDict *qdict)
2183 CPUState *cenv;
2184 int cpu_index = qdict_get_int(qdict, "cpu_index");
2185 int bank = qdict_get_int(qdict, "bank");
2186 uint64_t status = qdict_get_int(qdict, "status");
2187 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2188 uint64_t addr = qdict_get_int(qdict, "addr");
2189 uint64_t misc = qdict_get_int(qdict, "misc");
2190 int flags = MCE_INJECT_UNCOND_AO;
2192 if (qdict_get_try_bool(qdict, "broadcast", 0)) {
2193 flags |= MCE_INJECT_BROADCAST;
2195 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu) {
2196 if (cenv->cpu_index == cpu_index) {
2197 cpu_x86_inject_mce(mon, cenv, bank, status, mcg_status, addr, misc,
2198 flags);
2199 break;
2203 #endif
2205 static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2207 const char *fdname = qdict_get_str(qdict, "fdname");
2208 mon_fd_t *monfd;
2209 int fd;
2211 fd = qemu_chr_fe_get_msgfd(mon->chr);
2212 if (fd == -1) {
2213 qerror_report(QERR_FD_NOT_SUPPLIED);
2214 return -1;
2217 if (qemu_isdigit(fdname[0])) {
2218 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2219 "a name not starting with a digit");
2220 return -1;
2223 QLIST_FOREACH(monfd, &mon->fds, next) {
2224 if (strcmp(monfd->name, fdname) != 0) {
2225 continue;
2228 close(monfd->fd);
2229 monfd->fd = fd;
2230 return 0;
2233 monfd = g_malloc0(sizeof(mon_fd_t));
2234 monfd->name = g_strdup(fdname);
2235 monfd->fd = fd;
2237 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
2238 return 0;
2241 static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2243 const char *fdname = qdict_get_str(qdict, "fdname");
2244 mon_fd_t *monfd;
2246 QLIST_FOREACH(monfd, &mon->fds, next) {
2247 if (strcmp(monfd->name, fdname) != 0) {
2248 continue;
2251 QLIST_REMOVE(monfd, next);
2252 close(monfd->fd);
2253 g_free(monfd->name);
2254 g_free(monfd);
2255 return 0;
2258 qerror_report(QERR_FD_NOT_FOUND, fdname);
2259 return -1;
2262 static void do_loadvm(Monitor *mon, const QDict *qdict)
2264 int saved_vm_running = runstate_is_running();
2265 const char *name = qdict_get_str(qdict, "name");
2267 vm_stop(RUN_STATE_RESTORE_VM);
2269 if (load_vmstate(name) == 0 && saved_vm_running) {
2270 vm_start();
2274 int monitor_get_fd(Monitor *mon, const char *fdname)
2276 mon_fd_t *monfd;
2278 QLIST_FOREACH(monfd, &mon->fds, next) {
2279 int fd;
2281 if (strcmp(monfd->name, fdname) != 0) {
2282 continue;
2285 fd = monfd->fd;
2287 /* caller takes ownership of fd */
2288 QLIST_REMOVE(monfd, next);
2289 g_free(monfd->name);
2290 g_free(monfd);
2292 return fd;
2295 return -1;
2298 /* mon_cmds and info_cmds would be sorted at runtime */
2299 static mon_cmd_t mon_cmds[] = {
2300 #include "hmp-commands.h"
2301 { NULL, NULL, },
2304 /* Please update hmp-commands.hx when adding or changing commands */
2305 static mon_cmd_t info_cmds[] = {
2307 .name = "version",
2308 .args_type = "",
2309 .params = "",
2310 .help = "show the version of QEMU",
2311 .mhandler.info = hmp_info_version,
2314 .name = "network",
2315 .args_type = "",
2316 .params = "",
2317 .help = "show the network state",
2318 .mhandler.info = do_info_network,
2321 .name = "chardev",
2322 .args_type = "",
2323 .params = "",
2324 .help = "show the character devices",
2325 .mhandler.info = hmp_info_chardev,
2328 .name = "block",
2329 .args_type = "",
2330 .params = "",
2331 .help = "show the block devices",
2332 .mhandler.info = hmp_info_block,
2335 .name = "blockstats",
2336 .args_type = "",
2337 .params = "",
2338 .help = "show block device statistics",
2339 .mhandler.info = hmp_info_blockstats,
2342 .name = "block-jobs",
2343 .args_type = "",
2344 .params = "",
2345 .help = "show progress of ongoing block device operations",
2346 .mhandler.info = hmp_info_block_jobs,
2349 .name = "registers",
2350 .args_type = "",
2351 .params = "",
2352 .help = "show the cpu registers",
2353 .mhandler.info = do_info_registers,
2356 .name = "cpus",
2357 .args_type = "",
2358 .params = "",
2359 .help = "show infos for each CPU",
2360 .mhandler.info = hmp_info_cpus,
2363 .name = "history",
2364 .args_type = "",
2365 .params = "",
2366 .help = "show the command line history",
2367 .mhandler.info = do_info_history,
2369 #if defined(TARGET_I386) || defined(TARGET_PPC) || defined(TARGET_MIPS) || \
2370 defined(TARGET_LM32) || (defined(TARGET_SPARC) && !defined(TARGET_SPARC64))
2372 .name = "irq",
2373 .args_type = "",
2374 .params = "",
2375 .help = "show the interrupts statistics (if available)",
2376 #ifdef TARGET_SPARC
2377 .mhandler.info = sun4m_irq_info,
2378 #elif defined(TARGET_LM32)
2379 .mhandler.info = lm32_irq_info,
2380 #else
2381 .mhandler.info = irq_info,
2382 #endif
2385 .name = "pic",
2386 .args_type = "",
2387 .params = "",
2388 .help = "show i8259 (PIC) state",
2389 #ifdef TARGET_SPARC
2390 .mhandler.info = sun4m_pic_info,
2391 #elif defined(TARGET_LM32)
2392 .mhandler.info = lm32_do_pic_info,
2393 #else
2394 .mhandler.info = pic_info,
2395 #endif
2397 #endif
2399 .name = "pci",
2400 .args_type = "",
2401 .params = "",
2402 .help = "show PCI info",
2403 .mhandler.info = hmp_info_pci,
2405 #if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \
2406 defined(TARGET_PPC)
2408 .name = "tlb",
2409 .args_type = "",
2410 .params = "",
2411 .help = "show virtual to physical memory mappings",
2412 .mhandler.info = tlb_info,
2414 #endif
2415 #if defined(TARGET_I386)
2417 .name = "mem",
2418 .args_type = "",
2419 .params = "",
2420 .help = "show the active virtual memory mappings",
2421 .mhandler.info = mem_info,
2423 #endif
2425 .name = "mtree",
2426 .args_type = "",
2427 .params = "",
2428 .help = "show memory tree",
2429 .mhandler.info = do_info_mtree,
2432 .name = "jit",
2433 .args_type = "",
2434 .params = "",
2435 .help = "show dynamic compiler info",
2436 .mhandler.info = do_info_jit,
2439 .name = "kvm",
2440 .args_type = "",
2441 .params = "",
2442 .help = "show KVM information",
2443 .mhandler.info = hmp_info_kvm,
2446 .name = "numa",
2447 .args_type = "",
2448 .params = "",
2449 .help = "show NUMA information",
2450 .mhandler.info = do_info_numa,
2453 .name = "usb",
2454 .args_type = "",
2455 .params = "",
2456 .help = "show guest USB devices",
2457 .mhandler.info = usb_info,
2460 .name = "usbhost",
2461 .args_type = "",
2462 .params = "",
2463 .help = "show host USB devices",
2464 .mhandler.info = usb_host_info,
2467 .name = "profile",
2468 .args_type = "",
2469 .params = "",
2470 .help = "show profiling information",
2471 .mhandler.info = do_info_profile,
2474 .name = "capture",
2475 .args_type = "",
2476 .params = "",
2477 .help = "show capture information",
2478 .mhandler.info = do_info_capture,
2481 .name = "snapshots",
2482 .args_type = "",
2483 .params = "",
2484 .help = "show the currently saved VM snapshots",
2485 .mhandler.info = do_info_snapshots,
2488 .name = "status",
2489 .args_type = "",
2490 .params = "",
2491 .help = "show the current VM status (running|paused)",
2492 .mhandler.info = hmp_info_status,
2495 .name = "pcmcia",
2496 .args_type = "",
2497 .params = "",
2498 .help = "show guest PCMCIA status",
2499 .mhandler.info = pcmcia_info,
2502 .name = "mice",
2503 .args_type = "",
2504 .params = "",
2505 .help = "show which guest mouse is receiving events",
2506 .mhandler.info = hmp_info_mice,
2509 .name = "vnc",
2510 .args_type = "",
2511 .params = "",
2512 .help = "show the vnc server status",
2513 .mhandler.info = hmp_info_vnc,
2515 #if defined(CONFIG_SPICE)
2517 .name = "spice",
2518 .args_type = "",
2519 .params = "",
2520 .help = "show the spice server status",
2521 .mhandler.info = hmp_info_spice,
2523 #endif
2525 .name = "name",
2526 .args_type = "",
2527 .params = "",
2528 .help = "show the current VM name",
2529 .mhandler.info = hmp_info_name,
2532 .name = "uuid",
2533 .args_type = "",
2534 .params = "",
2535 .help = "show the current VM UUID",
2536 .mhandler.info = hmp_info_uuid,
2538 #if defined(TARGET_PPC)
2540 .name = "cpustats",
2541 .args_type = "",
2542 .params = "",
2543 .help = "show CPU statistics",
2544 .mhandler.info = do_info_cpu_stats,
2546 #endif
2547 #if defined(CONFIG_SLIRP)
2549 .name = "usernet",
2550 .args_type = "",
2551 .params = "",
2552 .help = "show user network stack connection states",
2553 .mhandler.info = do_info_usernet,
2555 #endif
2557 .name = "migrate",
2558 .args_type = "",
2559 .params = "",
2560 .help = "show migration status",
2561 .mhandler.info = hmp_info_migrate,
2564 .name = "balloon",
2565 .args_type = "",
2566 .params = "",
2567 .help = "show balloon information",
2568 .mhandler.info = hmp_info_balloon,
2571 .name = "qtree",
2572 .args_type = "",
2573 .params = "",
2574 .help = "show device tree",
2575 .mhandler.info = do_info_qtree,
2578 .name = "qdm",
2579 .args_type = "",
2580 .params = "",
2581 .help = "show qdev device model list",
2582 .mhandler.info = do_info_qdm,
2585 .name = "roms",
2586 .args_type = "",
2587 .params = "",
2588 .help = "show roms",
2589 .mhandler.info = do_info_roms,
2591 #if defined(CONFIG_TRACE_SIMPLE)
2593 .name = "trace",
2594 .args_type = "",
2595 .params = "",
2596 .help = "show current contents of trace buffer",
2597 .mhandler.info = do_info_trace,
2599 #endif
2601 .name = "trace-events",
2602 .args_type = "",
2603 .params = "",
2604 .help = "show available trace-events & their state",
2605 .mhandler.info = do_trace_print_events,
2608 .name = NULL,
2612 static const mon_cmd_t qmp_cmds[] = {
2613 #include "qmp-commands-old.h"
2614 { /* NULL */ },
2617 /*******************************************************************/
2619 static const char *pch;
2620 static jmp_buf expr_env;
2622 #define MD_TLONG 0
2623 #define MD_I32 1
2625 typedef struct MonitorDef {
2626 const char *name;
2627 int offset;
2628 target_long (*get_value)(const struct MonitorDef *md, int val);
2629 int type;
2630 } MonitorDef;
2632 #if defined(TARGET_I386)
2633 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
2635 CPUState *env = mon_get_cpu();
2636 return env->eip + env->segs[R_CS].base;
2638 #endif
2640 #if defined(TARGET_PPC)
2641 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
2643 CPUState *env = mon_get_cpu();
2644 unsigned int u;
2645 int i;
2647 u = 0;
2648 for (i = 0; i < 8; i++)
2649 u |= env->crf[i] << (32 - (4 * i));
2651 return u;
2654 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
2656 CPUState *env = mon_get_cpu();
2657 return env->msr;
2660 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
2662 CPUState *env = mon_get_cpu();
2663 return env->xer;
2666 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
2668 CPUState *env = mon_get_cpu();
2669 return cpu_ppc_load_decr(env);
2672 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
2674 CPUState *env = mon_get_cpu();
2675 return cpu_ppc_load_tbu(env);
2678 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
2680 CPUState *env = mon_get_cpu();
2681 return cpu_ppc_load_tbl(env);
2683 #endif
2685 #if defined(TARGET_SPARC)
2686 #ifndef TARGET_SPARC64
2687 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
2689 CPUState *env = mon_get_cpu();
2691 return cpu_get_psr(env);
2693 #endif
2695 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
2697 CPUState *env = mon_get_cpu();
2698 return env->regwptr[val];
2700 #endif
2702 static const MonitorDef monitor_defs[] = {
2703 #ifdef TARGET_I386
2705 #define SEG(name, seg) \
2706 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
2707 { name ".base", offsetof(CPUState, segs[seg].base) },\
2708 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
2710 { "eax", offsetof(CPUState, regs[0]) },
2711 { "ecx", offsetof(CPUState, regs[1]) },
2712 { "edx", offsetof(CPUState, regs[2]) },
2713 { "ebx", offsetof(CPUState, regs[3]) },
2714 { "esp|sp", offsetof(CPUState, regs[4]) },
2715 { "ebp|fp", offsetof(CPUState, regs[5]) },
2716 { "esi", offsetof(CPUState, regs[6]) },
2717 { "edi", offsetof(CPUState, regs[7]) },
2718 #ifdef TARGET_X86_64
2719 { "r8", offsetof(CPUState, regs[8]) },
2720 { "r9", offsetof(CPUState, regs[9]) },
2721 { "r10", offsetof(CPUState, regs[10]) },
2722 { "r11", offsetof(CPUState, regs[11]) },
2723 { "r12", offsetof(CPUState, regs[12]) },
2724 { "r13", offsetof(CPUState, regs[13]) },
2725 { "r14", offsetof(CPUState, regs[14]) },
2726 { "r15", offsetof(CPUState, regs[15]) },
2727 #endif
2728 { "eflags", offsetof(CPUState, eflags) },
2729 { "eip", offsetof(CPUState, eip) },
2730 SEG("cs", R_CS)
2731 SEG("ds", R_DS)
2732 SEG("es", R_ES)
2733 SEG("ss", R_SS)
2734 SEG("fs", R_FS)
2735 SEG("gs", R_GS)
2736 { "pc", 0, monitor_get_pc, },
2737 #elif defined(TARGET_PPC)
2738 /* General purpose registers */
2739 { "r0", offsetof(CPUState, gpr[0]) },
2740 { "r1", offsetof(CPUState, gpr[1]) },
2741 { "r2", offsetof(CPUState, gpr[2]) },
2742 { "r3", offsetof(CPUState, gpr[3]) },
2743 { "r4", offsetof(CPUState, gpr[4]) },
2744 { "r5", offsetof(CPUState, gpr[5]) },
2745 { "r6", offsetof(CPUState, gpr[6]) },
2746 { "r7", offsetof(CPUState, gpr[7]) },
2747 { "r8", offsetof(CPUState, gpr[8]) },
2748 { "r9", offsetof(CPUState, gpr[9]) },
2749 { "r10", offsetof(CPUState, gpr[10]) },
2750 { "r11", offsetof(CPUState, gpr[11]) },
2751 { "r12", offsetof(CPUState, gpr[12]) },
2752 { "r13", offsetof(CPUState, gpr[13]) },
2753 { "r14", offsetof(CPUState, gpr[14]) },
2754 { "r15", offsetof(CPUState, gpr[15]) },
2755 { "r16", offsetof(CPUState, gpr[16]) },
2756 { "r17", offsetof(CPUState, gpr[17]) },
2757 { "r18", offsetof(CPUState, gpr[18]) },
2758 { "r19", offsetof(CPUState, gpr[19]) },
2759 { "r20", offsetof(CPUState, gpr[20]) },
2760 { "r21", offsetof(CPUState, gpr[21]) },
2761 { "r22", offsetof(CPUState, gpr[22]) },
2762 { "r23", offsetof(CPUState, gpr[23]) },
2763 { "r24", offsetof(CPUState, gpr[24]) },
2764 { "r25", offsetof(CPUState, gpr[25]) },
2765 { "r26", offsetof(CPUState, gpr[26]) },
2766 { "r27", offsetof(CPUState, gpr[27]) },
2767 { "r28", offsetof(CPUState, gpr[28]) },
2768 { "r29", offsetof(CPUState, gpr[29]) },
2769 { "r30", offsetof(CPUState, gpr[30]) },
2770 { "r31", offsetof(CPUState, gpr[31]) },
2771 /* Floating point registers */
2772 { "f0", offsetof(CPUState, fpr[0]) },
2773 { "f1", offsetof(CPUState, fpr[1]) },
2774 { "f2", offsetof(CPUState, fpr[2]) },
2775 { "f3", offsetof(CPUState, fpr[3]) },
2776 { "f4", offsetof(CPUState, fpr[4]) },
2777 { "f5", offsetof(CPUState, fpr[5]) },
2778 { "f6", offsetof(CPUState, fpr[6]) },
2779 { "f7", offsetof(CPUState, fpr[7]) },
2780 { "f8", offsetof(CPUState, fpr[8]) },
2781 { "f9", offsetof(CPUState, fpr[9]) },
2782 { "f10", offsetof(CPUState, fpr[10]) },
2783 { "f11", offsetof(CPUState, fpr[11]) },
2784 { "f12", offsetof(CPUState, fpr[12]) },
2785 { "f13", offsetof(CPUState, fpr[13]) },
2786 { "f14", offsetof(CPUState, fpr[14]) },
2787 { "f15", offsetof(CPUState, fpr[15]) },
2788 { "f16", offsetof(CPUState, fpr[16]) },
2789 { "f17", offsetof(CPUState, fpr[17]) },
2790 { "f18", offsetof(CPUState, fpr[18]) },
2791 { "f19", offsetof(CPUState, fpr[19]) },
2792 { "f20", offsetof(CPUState, fpr[20]) },
2793 { "f21", offsetof(CPUState, fpr[21]) },
2794 { "f22", offsetof(CPUState, fpr[22]) },
2795 { "f23", offsetof(CPUState, fpr[23]) },
2796 { "f24", offsetof(CPUState, fpr[24]) },
2797 { "f25", offsetof(CPUState, fpr[25]) },
2798 { "f26", offsetof(CPUState, fpr[26]) },
2799 { "f27", offsetof(CPUState, fpr[27]) },
2800 { "f28", offsetof(CPUState, fpr[28]) },
2801 { "f29", offsetof(CPUState, fpr[29]) },
2802 { "f30", offsetof(CPUState, fpr[30]) },
2803 { "f31", offsetof(CPUState, fpr[31]) },
2804 { "fpscr", offsetof(CPUState, fpscr) },
2805 /* Next instruction pointer */
2806 { "nip|pc", offsetof(CPUState, nip) },
2807 { "lr", offsetof(CPUState, lr) },
2808 { "ctr", offsetof(CPUState, ctr) },
2809 { "decr", 0, &monitor_get_decr, },
2810 { "ccr", 0, &monitor_get_ccr, },
2811 /* Machine state register */
2812 { "msr", 0, &monitor_get_msr, },
2813 { "xer", 0, &monitor_get_xer, },
2814 { "tbu", 0, &monitor_get_tbu, },
2815 { "tbl", 0, &monitor_get_tbl, },
2816 #if defined(TARGET_PPC64)
2817 /* Address space register */
2818 { "asr", offsetof(CPUState, asr) },
2819 #endif
2820 /* Segment registers */
2821 { "sdr1", offsetof(CPUState, spr[SPR_SDR1]) },
2822 { "sr0", offsetof(CPUState, sr[0]) },
2823 { "sr1", offsetof(CPUState, sr[1]) },
2824 { "sr2", offsetof(CPUState, sr[2]) },
2825 { "sr3", offsetof(CPUState, sr[3]) },
2826 { "sr4", offsetof(CPUState, sr[4]) },
2827 { "sr5", offsetof(CPUState, sr[5]) },
2828 { "sr6", offsetof(CPUState, sr[6]) },
2829 { "sr7", offsetof(CPUState, sr[7]) },
2830 { "sr8", offsetof(CPUState, sr[8]) },
2831 { "sr9", offsetof(CPUState, sr[9]) },
2832 { "sr10", offsetof(CPUState, sr[10]) },
2833 { "sr11", offsetof(CPUState, sr[11]) },
2834 { "sr12", offsetof(CPUState, sr[12]) },
2835 { "sr13", offsetof(CPUState, sr[13]) },
2836 { "sr14", offsetof(CPUState, sr[14]) },
2837 { "sr15", offsetof(CPUState, sr[15]) },
2838 /* Too lazy to put BATs... */
2839 { "pvr", offsetof(CPUState, spr[SPR_PVR]) },
2841 { "srr0", offsetof(CPUState, spr[SPR_SRR0]) },
2842 { "srr1", offsetof(CPUState, spr[SPR_SRR1]) },
2843 { "sprg0", offsetof(CPUState, spr[SPR_SPRG0]) },
2844 { "sprg1", offsetof(CPUState, spr[SPR_SPRG1]) },
2845 { "sprg2", offsetof(CPUState, spr[SPR_SPRG2]) },
2846 { "sprg3", offsetof(CPUState, spr[SPR_SPRG3]) },
2847 { "sprg4", offsetof(CPUState, spr[SPR_SPRG4]) },
2848 { "sprg5", offsetof(CPUState, spr[SPR_SPRG5]) },
2849 { "sprg6", offsetof(CPUState, spr[SPR_SPRG6]) },
2850 { "sprg7", offsetof(CPUState, spr[SPR_SPRG7]) },
2851 { "pid", offsetof(CPUState, spr[SPR_BOOKE_PID]) },
2852 { "csrr0", offsetof(CPUState, spr[SPR_BOOKE_CSRR0]) },
2853 { "csrr1", offsetof(CPUState, spr[SPR_BOOKE_CSRR1]) },
2854 { "esr", offsetof(CPUState, spr[SPR_BOOKE_ESR]) },
2855 { "dear", offsetof(CPUState, spr[SPR_BOOKE_DEAR]) },
2856 { "mcsr", offsetof(CPUState, spr[SPR_BOOKE_MCSR]) },
2857 { "tsr", offsetof(CPUState, spr[SPR_BOOKE_TSR]) },
2858 { "tcr", offsetof(CPUState, spr[SPR_BOOKE_TCR]) },
2859 { "vrsave", offsetof(CPUState, spr[SPR_VRSAVE]) },
2860 { "pir", offsetof(CPUState, spr[SPR_BOOKE_PIR]) },
2861 { "mcsrr0", offsetof(CPUState, spr[SPR_BOOKE_MCSRR0]) },
2862 { "mcsrr1", offsetof(CPUState, spr[SPR_BOOKE_MCSRR1]) },
2863 { "decar", offsetof(CPUState, spr[SPR_BOOKE_DECAR]) },
2864 { "ivpr", offsetof(CPUState, spr[SPR_BOOKE_IVPR]) },
2865 { "epcr", offsetof(CPUState, spr[SPR_BOOKE_EPCR]) },
2866 { "sprg8", offsetof(CPUState, spr[SPR_BOOKE_SPRG8]) },
2867 { "ivor0", offsetof(CPUState, spr[SPR_BOOKE_IVOR0]) },
2868 { "ivor1", offsetof(CPUState, spr[SPR_BOOKE_IVOR1]) },
2869 { "ivor2", offsetof(CPUState, spr[SPR_BOOKE_IVOR2]) },
2870 { "ivor3", offsetof(CPUState, spr[SPR_BOOKE_IVOR3]) },
2871 { "ivor4", offsetof(CPUState, spr[SPR_BOOKE_IVOR4]) },
2872 { "ivor5", offsetof(CPUState, spr[SPR_BOOKE_IVOR5]) },
2873 { "ivor6", offsetof(CPUState, spr[SPR_BOOKE_IVOR6]) },
2874 { "ivor7", offsetof(CPUState, spr[SPR_BOOKE_IVOR7]) },
2875 { "ivor8", offsetof(CPUState, spr[SPR_BOOKE_IVOR8]) },
2876 { "ivor9", offsetof(CPUState, spr[SPR_BOOKE_IVOR9]) },
2877 { "ivor10", offsetof(CPUState, spr[SPR_BOOKE_IVOR10]) },
2878 { "ivor11", offsetof(CPUState, spr[SPR_BOOKE_IVOR11]) },
2879 { "ivor12", offsetof(CPUState, spr[SPR_BOOKE_IVOR12]) },
2880 { "ivor13", offsetof(CPUState, spr[SPR_BOOKE_IVOR13]) },
2881 { "ivor14", offsetof(CPUState, spr[SPR_BOOKE_IVOR14]) },
2882 { "ivor15", offsetof(CPUState, spr[SPR_BOOKE_IVOR15]) },
2883 { "ivor32", offsetof(CPUState, spr[SPR_BOOKE_IVOR32]) },
2884 { "ivor33", offsetof(CPUState, spr[SPR_BOOKE_IVOR33]) },
2885 { "ivor34", offsetof(CPUState, spr[SPR_BOOKE_IVOR34]) },
2886 { "ivor35", offsetof(CPUState, spr[SPR_BOOKE_IVOR35]) },
2887 { "ivor36", offsetof(CPUState, spr[SPR_BOOKE_IVOR36]) },
2888 { "ivor37", offsetof(CPUState, spr[SPR_BOOKE_IVOR37]) },
2889 { "mas0", offsetof(CPUState, spr[SPR_BOOKE_MAS0]) },
2890 { "mas1", offsetof(CPUState, spr[SPR_BOOKE_MAS1]) },
2891 { "mas2", offsetof(CPUState, spr[SPR_BOOKE_MAS2]) },
2892 { "mas3", offsetof(CPUState, spr[SPR_BOOKE_MAS3]) },
2893 { "mas4", offsetof(CPUState, spr[SPR_BOOKE_MAS4]) },
2894 { "mas6", offsetof(CPUState, spr[SPR_BOOKE_MAS6]) },
2895 { "mas7", offsetof(CPUState, spr[SPR_BOOKE_MAS7]) },
2896 { "mmucfg", offsetof(CPUState, spr[SPR_MMUCFG]) },
2897 { "tlb0cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB0CFG]) },
2898 { "tlb1cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB1CFG]) },
2899 { "epr", offsetof(CPUState, spr[SPR_BOOKE_EPR]) },
2900 { "eplc", offsetof(CPUState, spr[SPR_BOOKE_EPLC]) },
2901 { "epsc", offsetof(CPUState, spr[SPR_BOOKE_EPSC]) },
2902 { "svr", offsetof(CPUState, spr[SPR_E500_SVR]) },
2903 { "mcar", offsetof(CPUState, spr[SPR_Exxx_MCAR]) },
2904 { "pid1", offsetof(CPUState, spr[SPR_BOOKE_PID1]) },
2905 { "pid2", offsetof(CPUState, spr[SPR_BOOKE_PID2]) },
2906 { "hid0", offsetof(CPUState, spr[SPR_HID0]) },
2908 #elif defined(TARGET_SPARC)
2909 { "g0", offsetof(CPUState, gregs[0]) },
2910 { "g1", offsetof(CPUState, gregs[1]) },
2911 { "g2", offsetof(CPUState, gregs[2]) },
2912 { "g3", offsetof(CPUState, gregs[3]) },
2913 { "g4", offsetof(CPUState, gregs[4]) },
2914 { "g5", offsetof(CPUState, gregs[5]) },
2915 { "g6", offsetof(CPUState, gregs[6]) },
2916 { "g7", offsetof(CPUState, gregs[7]) },
2917 { "o0", 0, monitor_get_reg },
2918 { "o1", 1, monitor_get_reg },
2919 { "o2", 2, monitor_get_reg },
2920 { "o3", 3, monitor_get_reg },
2921 { "o4", 4, monitor_get_reg },
2922 { "o5", 5, monitor_get_reg },
2923 { "o6", 6, monitor_get_reg },
2924 { "o7", 7, monitor_get_reg },
2925 { "l0", 8, monitor_get_reg },
2926 { "l1", 9, monitor_get_reg },
2927 { "l2", 10, monitor_get_reg },
2928 { "l3", 11, monitor_get_reg },
2929 { "l4", 12, monitor_get_reg },
2930 { "l5", 13, monitor_get_reg },
2931 { "l6", 14, monitor_get_reg },
2932 { "l7", 15, monitor_get_reg },
2933 { "i0", 16, monitor_get_reg },
2934 { "i1", 17, monitor_get_reg },
2935 { "i2", 18, monitor_get_reg },
2936 { "i3", 19, monitor_get_reg },
2937 { "i4", 20, monitor_get_reg },
2938 { "i5", 21, monitor_get_reg },
2939 { "i6", 22, monitor_get_reg },
2940 { "i7", 23, monitor_get_reg },
2941 { "pc", offsetof(CPUState, pc) },
2942 { "npc", offsetof(CPUState, npc) },
2943 { "y", offsetof(CPUState, y) },
2944 #ifndef TARGET_SPARC64
2945 { "psr", 0, &monitor_get_psr, },
2946 { "wim", offsetof(CPUState, wim) },
2947 #endif
2948 { "tbr", offsetof(CPUState, tbr) },
2949 { "fsr", offsetof(CPUState, fsr) },
2950 { "f0", offsetof(CPUState, fpr[0].l.upper) },
2951 { "f1", offsetof(CPUState, fpr[0].l.lower) },
2952 { "f2", offsetof(CPUState, fpr[1].l.upper) },
2953 { "f3", offsetof(CPUState, fpr[1].l.lower) },
2954 { "f4", offsetof(CPUState, fpr[2].l.upper) },
2955 { "f5", offsetof(CPUState, fpr[2].l.lower) },
2956 { "f6", offsetof(CPUState, fpr[3].l.upper) },
2957 { "f7", offsetof(CPUState, fpr[3].l.lower) },
2958 { "f8", offsetof(CPUState, fpr[4].l.upper) },
2959 { "f9", offsetof(CPUState, fpr[4].l.lower) },
2960 { "f10", offsetof(CPUState, fpr[5].l.upper) },
2961 { "f11", offsetof(CPUState, fpr[5].l.lower) },
2962 { "f12", offsetof(CPUState, fpr[6].l.upper) },
2963 { "f13", offsetof(CPUState, fpr[6].l.lower) },
2964 { "f14", offsetof(CPUState, fpr[7].l.upper) },
2965 { "f15", offsetof(CPUState, fpr[7].l.lower) },
2966 { "f16", offsetof(CPUState, fpr[8].l.upper) },
2967 { "f17", offsetof(CPUState, fpr[8].l.lower) },
2968 { "f18", offsetof(CPUState, fpr[9].l.upper) },
2969 { "f19", offsetof(CPUState, fpr[9].l.lower) },
2970 { "f20", offsetof(CPUState, fpr[10].l.upper) },
2971 { "f21", offsetof(CPUState, fpr[10].l.lower) },
2972 { "f22", offsetof(CPUState, fpr[11].l.upper) },
2973 { "f23", offsetof(CPUState, fpr[11].l.lower) },
2974 { "f24", offsetof(CPUState, fpr[12].l.upper) },
2975 { "f25", offsetof(CPUState, fpr[12].l.lower) },
2976 { "f26", offsetof(CPUState, fpr[13].l.upper) },
2977 { "f27", offsetof(CPUState, fpr[13].l.lower) },
2978 { "f28", offsetof(CPUState, fpr[14].l.upper) },
2979 { "f29", offsetof(CPUState, fpr[14].l.lower) },
2980 { "f30", offsetof(CPUState, fpr[15].l.upper) },
2981 { "f31", offsetof(CPUState, fpr[15].l.lower) },
2982 #ifdef TARGET_SPARC64
2983 { "f32", offsetof(CPUState, fpr[16]) },
2984 { "f34", offsetof(CPUState, fpr[17]) },
2985 { "f36", offsetof(CPUState, fpr[18]) },
2986 { "f38", offsetof(CPUState, fpr[19]) },
2987 { "f40", offsetof(CPUState, fpr[20]) },
2988 { "f42", offsetof(CPUState, fpr[21]) },
2989 { "f44", offsetof(CPUState, fpr[22]) },
2990 { "f46", offsetof(CPUState, fpr[23]) },
2991 { "f48", offsetof(CPUState, fpr[24]) },
2992 { "f50", offsetof(CPUState, fpr[25]) },
2993 { "f52", offsetof(CPUState, fpr[26]) },
2994 { "f54", offsetof(CPUState, fpr[27]) },
2995 { "f56", offsetof(CPUState, fpr[28]) },
2996 { "f58", offsetof(CPUState, fpr[29]) },
2997 { "f60", offsetof(CPUState, fpr[30]) },
2998 { "f62", offsetof(CPUState, fpr[31]) },
2999 { "asi", offsetof(CPUState, asi) },
3000 { "pstate", offsetof(CPUState, pstate) },
3001 { "cansave", offsetof(CPUState, cansave) },
3002 { "canrestore", offsetof(CPUState, canrestore) },
3003 { "otherwin", offsetof(CPUState, otherwin) },
3004 { "wstate", offsetof(CPUState, wstate) },
3005 { "cleanwin", offsetof(CPUState, cleanwin) },
3006 { "fprs", offsetof(CPUState, fprs) },
3007 #endif
3008 #endif
3009 { NULL },
3012 static void expr_error(Monitor *mon, const char *msg)
3014 monitor_printf(mon, "%s\n", msg);
3015 longjmp(expr_env, 1);
3018 /* return 0 if OK, -1 if not found */
3019 static int get_monitor_def(target_long *pval, const char *name)
3021 const MonitorDef *md;
3022 void *ptr;
3024 for(md = monitor_defs; md->name != NULL; md++) {
3025 if (compare_cmd(name, md->name)) {
3026 if (md->get_value) {
3027 *pval = md->get_value(md, md->offset);
3028 } else {
3029 CPUState *env = mon_get_cpu();
3030 ptr = (uint8_t *)env + md->offset;
3031 switch(md->type) {
3032 case MD_I32:
3033 *pval = *(int32_t *)ptr;
3034 break;
3035 case MD_TLONG:
3036 *pval = *(target_long *)ptr;
3037 break;
3038 default:
3039 *pval = 0;
3040 break;
3043 return 0;
3046 return -1;
3049 static void next(void)
3051 if (*pch != '\0') {
3052 pch++;
3053 while (qemu_isspace(*pch))
3054 pch++;
3058 static int64_t expr_sum(Monitor *mon);
3060 static int64_t expr_unary(Monitor *mon)
3062 int64_t n;
3063 char *p;
3064 int ret;
3066 switch(*pch) {
3067 case '+':
3068 next();
3069 n = expr_unary(mon);
3070 break;
3071 case '-':
3072 next();
3073 n = -expr_unary(mon);
3074 break;
3075 case '~':
3076 next();
3077 n = ~expr_unary(mon);
3078 break;
3079 case '(':
3080 next();
3081 n = expr_sum(mon);
3082 if (*pch != ')') {
3083 expr_error(mon, "')' expected");
3085 next();
3086 break;
3087 case '\'':
3088 pch++;
3089 if (*pch == '\0')
3090 expr_error(mon, "character constant expected");
3091 n = *pch;
3092 pch++;
3093 if (*pch != '\'')
3094 expr_error(mon, "missing terminating \' character");
3095 next();
3096 break;
3097 case '$':
3099 char buf[128], *q;
3100 target_long reg=0;
3102 pch++;
3103 q = buf;
3104 while ((*pch >= 'a' && *pch <= 'z') ||
3105 (*pch >= 'A' && *pch <= 'Z') ||
3106 (*pch >= '0' && *pch <= '9') ||
3107 *pch == '_' || *pch == '.') {
3108 if ((q - buf) < sizeof(buf) - 1)
3109 *q++ = *pch;
3110 pch++;
3112 while (qemu_isspace(*pch))
3113 pch++;
3114 *q = 0;
3115 ret = get_monitor_def(&reg, buf);
3116 if (ret < 0)
3117 expr_error(mon, "unknown register");
3118 n = reg;
3120 break;
3121 case '\0':
3122 expr_error(mon, "unexpected end of expression");
3123 n = 0;
3124 break;
3125 default:
3126 #if TARGET_PHYS_ADDR_BITS > 32
3127 n = strtoull(pch, &p, 0);
3128 #else
3129 n = strtoul(pch, &p, 0);
3130 #endif
3131 if (pch == p) {
3132 expr_error(mon, "invalid char in expression");
3134 pch = p;
3135 while (qemu_isspace(*pch))
3136 pch++;
3137 break;
3139 return n;
3143 static int64_t expr_prod(Monitor *mon)
3145 int64_t val, val2;
3146 int op;
3148 val = expr_unary(mon);
3149 for(;;) {
3150 op = *pch;
3151 if (op != '*' && op != '/' && op != '%')
3152 break;
3153 next();
3154 val2 = expr_unary(mon);
3155 switch(op) {
3156 default:
3157 case '*':
3158 val *= val2;
3159 break;
3160 case '/':
3161 case '%':
3162 if (val2 == 0)
3163 expr_error(mon, "division by zero");
3164 if (op == '/')
3165 val /= val2;
3166 else
3167 val %= val2;
3168 break;
3171 return val;
3174 static int64_t expr_logic(Monitor *mon)
3176 int64_t val, val2;
3177 int op;
3179 val = expr_prod(mon);
3180 for(;;) {
3181 op = *pch;
3182 if (op != '&' && op != '|' && op != '^')
3183 break;
3184 next();
3185 val2 = expr_prod(mon);
3186 switch(op) {
3187 default:
3188 case '&':
3189 val &= val2;
3190 break;
3191 case '|':
3192 val |= val2;
3193 break;
3194 case '^':
3195 val ^= val2;
3196 break;
3199 return val;
3202 static int64_t expr_sum(Monitor *mon)
3204 int64_t val, val2;
3205 int op;
3207 val = expr_logic(mon);
3208 for(;;) {
3209 op = *pch;
3210 if (op != '+' && op != '-')
3211 break;
3212 next();
3213 val2 = expr_logic(mon);
3214 if (op == '+')
3215 val += val2;
3216 else
3217 val -= val2;
3219 return val;
3222 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
3224 pch = *pp;
3225 if (setjmp(expr_env)) {
3226 *pp = pch;
3227 return -1;
3229 while (qemu_isspace(*pch))
3230 pch++;
3231 *pval = expr_sum(mon);
3232 *pp = pch;
3233 return 0;
3236 static int get_double(Monitor *mon, double *pval, const char **pp)
3238 const char *p = *pp;
3239 char *tailp;
3240 double d;
3242 d = strtod(p, &tailp);
3243 if (tailp == p) {
3244 monitor_printf(mon, "Number expected\n");
3245 return -1;
3247 if (d != d || d - d != 0) {
3248 /* NaN or infinity */
3249 monitor_printf(mon, "Bad number\n");
3250 return -1;
3252 *pval = d;
3253 *pp = tailp;
3254 return 0;
3257 static int get_str(char *buf, int buf_size, const char **pp)
3259 const char *p;
3260 char *q;
3261 int c;
3263 q = buf;
3264 p = *pp;
3265 while (qemu_isspace(*p))
3266 p++;
3267 if (*p == '\0') {
3268 fail:
3269 *q = '\0';
3270 *pp = p;
3271 return -1;
3273 if (*p == '\"') {
3274 p++;
3275 while (*p != '\0' && *p != '\"') {
3276 if (*p == '\\') {
3277 p++;
3278 c = *p++;
3279 switch(c) {
3280 case 'n':
3281 c = '\n';
3282 break;
3283 case 'r':
3284 c = '\r';
3285 break;
3286 case '\\':
3287 case '\'':
3288 case '\"':
3289 break;
3290 default:
3291 qemu_printf("unsupported escape code: '\\%c'\n", c);
3292 goto fail;
3294 if ((q - buf) < buf_size - 1) {
3295 *q++ = c;
3297 } else {
3298 if ((q - buf) < buf_size - 1) {
3299 *q++ = *p;
3301 p++;
3304 if (*p != '\"') {
3305 qemu_printf("unterminated string\n");
3306 goto fail;
3308 p++;
3309 } else {
3310 while (*p != '\0' && !qemu_isspace(*p)) {
3311 if ((q - buf) < buf_size - 1) {
3312 *q++ = *p;
3314 p++;
3317 *q = '\0';
3318 *pp = p;
3319 return 0;
3323 * Store the command-name in cmdname, and return a pointer to
3324 * the remaining of the command string.
3326 static const char *get_command_name(const char *cmdline,
3327 char *cmdname, size_t nlen)
3329 size_t len;
3330 const char *p, *pstart;
3332 p = cmdline;
3333 while (qemu_isspace(*p))
3334 p++;
3335 if (*p == '\0')
3336 return NULL;
3337 pstart = p;
3338 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3339 p++;
3340 len = p - pstart;
3341 if (len > nlen - 1)
3342 len = nlen - 1;
3343 memcpy(cmdname, pstart, len);
3344 cmdname[len] = '\0';
3345 return p;
3349 * Read key of 'type' into 'key' and return the current
3350 * 'type' pointer.
3352 static char *key_get_info(const char *type, char **key)
3354 size_t len;
3355 char *p, *str;
3357 if (*type == ',')
3358 type++;
3360 p = strchr(type, ':');
3361 if (!p) {
3362 *key = NULL;
3363 return NULL;
3365 len = p - type;
3367 str = g_malloc(len + 1);
3368 memcpy(str, type, len);
3369 str[len] = '\0';
3371 *key = str;
3372 return ++p;
3375 static int default_fmt_format = 'x';
3376 static int default_fmt_size = 4;
3378 #define MAX_ARGS 16
3380 static int is_valid_option(const char *c, const char *typestr)
3382 char option[3];
3384 option[0] = '-';
3385 option[1] = *c;
3386 option[2] = '\0';
3388 typestr = strstr(typestr, option);
3389 return (typestr != NULL);
3392 static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3393 const char *cmdname)
3395 const mon_cmd_t *cmd;
3397 for (cmd = disp_table; cmd->name != NULL; cmd++) {
3398 if (compare_cmd(cmdname, cmd->name)) {
3399 return cmd;
3403 return NULL;
3406 static const mon_cmd_t *monitor_find_command(const char *cmdname)
3408 return search_dispatch_table(mon_cmds, cmdname);
3411 static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3413 return search_dispatch_table(qmp_cmds, cmdname);
3416 static const mon_cmd_t *monitor_parse_command(Monitor *mon,
3417 const char *cmdline,
3418 QDict *qdict)
3420 const char *p, *typestr;
3421 int c;
3422 const mon_cmd_t *cmd;
3423 char cmdname[256];
3424 char buf[1024];
3425 char *key;
3427 #ifdef DEBUG
3428 monitor_printf(mon, "command='%s'\n", cmdline);
3429 #endif
3431 /* extract the command name */
3432 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3433 if (!p)
3434 return NULL;
3436 cmd = monitor_find_command(cmdname);
3437 if (!cmd) {
3438 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
3439 return NULL;
3442 /* parse the parameters */
3443 typestr = cmd->args_type;
3444 for(;;) {
3445 typestr = key_get_info(typestr, &key);
3446 if (!typestr)
3447 break;
3448 c = *typestr;
3449 typestr++;
3450 switch(c) {
3451 case 'F':
3452 case 'B':
3453 case 's':
3455 int ret;
3457 while (qemu_isspace(*p))
3458 p++;
3459 if (*typestr == '?') {
3460 typestr++;
3461 if (*p == '\0') {
3462 /* no optional string: NULL argument */
3463 break;
3466 ret = get_str(buf, sizeof(buf), &p);
3467 if (ret < 0) {
3468 switch(c) {
3469 case 'F':
3470 monitor_printf(mon, "%s: filename expected\n",
3471 cmdname);
3472 break;
3473 case 'B':
3474 monitor_printf(mon, "%s: block device name expected\n",
3475 cmdname);
3476 break;
3477 default:
3478 monitor_printf(mon, "%s: string expected\n", cmdname);
3479 break;
3481 goto fail;
3483 qdict_put(qdict, key, qstring_from_str(buf));
3485 break;
3486 case 'O':
3488 QemuOptsList *opts_list;
3489 QemuOpts *opts;
3491 opts_list = qemu_find_opts(key);
3492 if (!opts_list || opts_list->desc->name) {
3493 goto bad_type;
3495 while (qemu_isspace(*p)) {
3496 p++;
3498 if (!*p)
3499 break;
3500 if (get_str(buf, sizeof(buf), &p) < 0) {
3501 goto fail;
3503 opts = qemu_opts_parse(opts_list, buf, 1);
3504 if (!opts) {
3505 goto fail;
3507 qemu_opts_to_qdict(opts, qdict);
3508 qemu_opts_del(opts);
3510 break;
3511 case '/':
3513 int count, format, size;
3515 while (qemu_isspace(*p))
3516 p++;
3517 if (*p == '/') {
3518 /* format found */
3519 p++;
3520 count = 1;
3521 if (qemu_isdigit(*p)) {
3522 count = 0;
3523 while (qemu_isdigit(*p)) {
3524 count = count * 10 + (*p - '0');
3525 p++;
3528 size = -1;
3529 format = -1;
3530 for(;;) {
3531 switch(*p) {
3532 case 'o':
3533 case 'd':
3534 case 'u':
3535 case 'x':
3536 case 'i':
3537 case 'c':
3538 format = *p++;
3539 break;
3540 case 'b':
3541 size = 1;
3542 p++;
3543 break;
3544 case 'h':
3545 size = 2;
3546 p++;
3547 break;
3548 case 'w':
3549 size = 4;
3550 p++;
3551 break;
3552 case 'g':
3553 case 'L':
3554 size = 8;
3555 p++;
3556 break;
3557 default:
3558 goto next;
3561 next:
3562 if (*p != '\0' && !qemu_isspace(*p)) {
3563 monitor_printf(mon, "invalid char in format: '%c'\n",
3564 *p);
3565 goto fail;
3567 if (format < 0)
3568 format = default_fmt_format;
3569 if (format != 'i') {
3570 /* for 'i', not specifying a size gives -1 as size */
3571 if (size < 0)
3572 size = default_fmt_size;
3573 default_fmt_size = size;
3575 default_fmt_format = format;
3576 } else {
3577 count = 1;
3578 format = default_fmt_format;
3579 if (format != 'i') {
3580 size = default_fmt_size;
3581 } else {
3582 size = -1;
3585 qdict_put(qdict, "count", qint_from_int(count));
3586 qdict_put(qdict, "format", qint_from_int(format));
3587 qdict_put(qdict, "size", qint_from_int(size));
3589 break;
3590 case 'i':
3591 case 'l':
3592 case 'M':
3594 int64_t val;
3596 while (qemu_isspace(*p))
3597 p++;
3598 if (*typestr == '?' || *typestr == '.') {
3599 if (*typestr == '?') {
3600 if (*p == '\0') {
3601 typestr++;
3602 break;
3604 } else {
3605 if (*p == '.') {
3606 p++;
3607 while (qemu_isspace(*p))
3608 p++;
3609 } else {
3610 typestr++;
3611 break;
3614 typestr++;
3616 if (get_expr(mon, &val, &p))
3617 goto fail;
3618 /* Check if 'i' is greater than 32-bit */
3619 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3620 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3621 monitor_printf(mon, "integer is for 32-bit values\n");
3622 goto fail;
3623 } else if (c == 'M') {
3624 val <<= 20;
3626 qdict_put(qdict, key, qint_from_int(val));
3628 break;
3629 case 'o':
3631 int64_t val;
3632 char *end;
3634 while (qemu_isspace(*p)) {
3635 p++;
3637 if (*typestr == '?') {
3638 typestr++;
3639 if (*p == '\0') {
3640 break;
3643 val = strtosz(p, &end);
3644 if (val < 0) {
3645 monitor_printf(mon, "invalid size\n");
3646 goto fail;
3648 qdict_put(qdict, key, qint_from_int(val));
3649 p = end;
3651 break;
3652 case 'T':
3654 double val;
3656 while (qemu_isspace(*p))
3657 p++;
3658 if (*typestr == '?') {
3659 typestr++;
3660 if (*p == '\0') {
3661 break;
3664 if (get_double(mon, &val, &p) < 0) {
3665 goto fail;
3667 if (p[0] && p[1] == 's') {
3668 switch (*p) {
3669 case 'm':
3670 val /= 1e3; p += 2; break;
3671 case 'u':
3672 val /= 1e6; p += 2; break;
3673 case 'n':
3674 val /= 1e9; p += 2; break;
3677 if (*p && !qemu_isspace(*p)) {
3678 monitor_printf(mon, "Unknown unit suffix\n");
3679 goto fail;
3681 qdict_put(qdict, key, qfloat_from_double(val));
3683 break;
3684 case 'b':
3686 const char *beg;
3687 int val;
3689 while (qemu_isspace(*p)) {
3690 p++;
3692 beg = p;
3693 while (qemu_isgraph(*p)) {
3694 p++;
3696 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3697 val = 1;
3698 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3699 val = 0;
3700 } else {
3701 monitor_printf(mon, "Expected 'on' or 'off'\n");
3702 goto fail;
3704 qdict_put(qdict, key, qbool_from_int(val));
3706 break;
3707 case '-':
3709 const char *tmp = p;
3710 int skip_key = 0;
3711 /* option */
3713 c = *typestr++;
3714 if (c == '\0')
3715 goto bad_type;
3716 while (qemu_isspace(*p))
3717 p++;
3718 if (*p == '-') {
3719 p++;
3720 if(c != *p) {
3721 if(!is_valid_option(p, typestr)) {
3723 monitor_printf(mon, "%s: unsupported option -%c\n",
3724 cmdname, *p);
3725 goto fail;
3726 } else {
3727 skip_key = 1;
3730 if(skip_key) {
3731 p = tmp;
3732 } else {
3733 /* has option */
3734 p++;
3735 qdict_put(qdict, key, qbool_from_int(1));
3739 break;
3740 default:
3741 bad_type:
3742 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
3743 goto fail;
3745 g_free(key);
3746 key = NULL;
3748 /* check that all arguments were parsed */
3749 while (qemu_isspace(*p))
3750 p++;
3751 if (*p != '\0') {
3752 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3753 cmdname);
3754 goto fail;
3757 return cmd;
3759 fail:
3760 g_free(key);
3761 return NULL;
3764 void monitor_set_error(Monitor *mon, QError *qerror)
3766 /* report only the first error */
3767 if (!mon->error) {
3768 mon->error = qerror;
3769 } else {
3770 MON_DEBUG("Additional error report at %s:%d\n",
3771 qerror->file, qerror->linenr);
3772 QDECREF(qerror);
3776 static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3778 if (ret && !monitor_has_error(mon)) {
3780 * If it returns failure, it must have passed on error.
3782 * Action: Report an internal error to the client if in QMP.
3784 qerror_report(QERR_UNDEFINED_ERROR);
3785 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
3786 cmd->name);
3789 #ifdef CONFIG_DEBUG_MONITOR
3790 if (!ret && monitor_has_error(mon)) {
3792 * If it returns success, it must not have passed an error.
3794 * Action: Report the passed error to the client.
3796 MON_DEBUG("command '%s' returned success but passed an error\n",
3797 cmd->name);
3800 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
3802 * Handlers should not call Monitor print functions.
3804 * Action: Ignore them in QMP.
3806 * (XXX: we don't check any 'info' or 'query' command here
3807 * because the user print function _is_ called by do_info(), hence
3808 * we will trigger this check. This problem will go away when we
3809 * make 'query' commands real and kill do_info())
3811 MON_DEBUG("command '%s' called print functions %d time(s)\n",
3812 cmd->name, mon_print_count_get(mon));
3814 #endif
3817 static void handle_user_command(Monitor *mon, const char *cmdline)
3819 QDict *qdict;
3820 const mon_cmd_t *cmd;
3822 qdict = qdict_new();
3824 cmd = monitor_parse_command(mon, cmdline, qdict);
3825 if (!cmd)
3826 goto out;
3828 if (handler_is_async(cmd)) {
3829 user_async_cmd_handler(mon, cmd, qdict);
3830 } else if (handler_is_qobject(cmd)) {
3831 QObject *data = NULL;
3833 /* XXX: ignores the error code */
3834 cmd->mhandler.cmd_new(mon, qdict, &data);
3835 assert(!monitor_has_error(mon));
3836 if (data) {
3837 cmd->user_print(mon, data);
3838 qobject_decref(data);
3840 } else {
3841 cmd->mhandler.cmd(mon, qdict);
3844 out:
3845 QDECREF(qdict);
3848 static void cmd_completion(const char *name, const char *list)
3850 const char *p, *pstart;
3851 char cmd[128];
3852 int len;
3854 p = list;
3855 for(;;) {
3856 pstart = p;
3857 p = strchr(p, '|');
3858 if (!p)
3859 p = pstart + strlen(pstart);
3860 len = p - pstart;
3861 if (len > sizeof(cmd) - 2)
3862 len = sizeof(cmd) - 2;
3863 memcpy(cmd, pstart, len);
3864 cmd[len] = '\0';
3865 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
3866 readline_add_completion(cur_mon->rs, cmd);
3868 if (*p == '\0')
3869 break;
3870 p++;
3874 static void file_completion(const char *input)
3876 DIR *ffs;
3877 struct dirent *d;
3878 char path[1024];
3879 char file[1024], file_prefix[1024];
3880 int input_path_len;
3881 const char *p;
3883 p = strrchr(input, '/');
3884 if (!p) {
3885 input_path_len = 0;
3886 pstrcpy(file_prefix, sizeof(file_prefix), input);
3887 pstrcpy(path, sizeof(path), ".");
3888 } else {
3889 input_path_len = p - input + 1;
3890 memcpy(path, input, input_path_len);
3891 if (input_path_len > sizeof(path) - 1)
3892 input_path_len = sizeof(path) - 1;
3893 path[input_path_len] = '\0';
3894 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3896 #ifdef DEBUG_COMPLETION
3897 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
3898 input, path, file_prefix);
3899 #endif
3900 ffs = opendir(path);
3901 if (!ffs)
3902 return;
3903 for(;;) {
3904 struct stat sb;
3905 d = readdir(ffs);
3906 if (!d)
3907 break;
3909 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
3910 continue;
3913 if (strstart(d->d_name, file_prefix, NULL)) {
3914 memcpy(file, input, input_path_len);
3915 if (input_path_len < sizeof(file))
3916 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3917 d->d_name);
3918 /* stat the file to find out if it's a directory.
3919 * In that case add a slash to speed up typing long paths
3921 if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) {
3922 pstrcat(file, sizeof(file), "/");
3924 readline_add_completion(cur_mon->rs, file);
3927 closedir(ffs);
3930 static void block_completion_it(void *opaque, BlockDriverState *bs)
3932 const char *name = bdrv_get_device_name(bs);
3933 const char *input = opaque;
3935 if (input[0] == '\0' ||
3936 !strncmp(name, (char *)input, strlen(input))) {
3937 readline_add_completion(cur_mon->rs, name);
3941 /* NOTE: this parser is an approximate form of the real command parser */
3942 static void parse_cmdline(const char *cmdline,
3943 int *pnb_args, char **args)
3945 const char *p;
3946 int nb_args, ret;
3947 char buf[1024];
3949 p = cmdline;
3950 nb_args = 0;
3951 for(;;) {
3952 while (qemu_isspace(*p))
3953 p++;
3954 if (*p == '\0')
3955 break;
3956 if (nb_args >= MAX_ARGS)
3957 break;
3958 ret = get_str(buf, sizeof(buf), &p);
3959 args[nb_args] = g_strdup(buf);
3960 nb_args++;
3961 if (ret < 0)
3962 break;
3964 *pnb_args = nb_args;
3967 static const char *next_arg_type(const char *typestr)
3969 const char *p = strchr(typestr, ':');
3970 return (p != NULL ? ++p : typestr);
3973 static void monitor_find_completion(const char *cmdline)
3975 const char *cmdname;
3976 char *args[MAX_ARGS];
3977 int nb_args, i, len;
3978 const char *ptype, *str;
3979 const mon_cmd_t *cmd;
3980 const KeyDef *key;
3982 parse_cmdline(cmdline, &nb_args, args);
3983 #ifdef DEBUG_COMPLETION
3984 for(i = 0; i < nb_args; i++) {
3985 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
3987 #endif
3989 /* if the line ends with a space, it means we want to complete the
3990 next arg */
3991 len = strlen(cmdline);
3992 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
3993 if (nb_args >= MAX_ARGS) {
3994 goto cleanup;
3996 args[nb_args++] = g_strdup("");
3998 if (nb_args <= 1) {
3999 /* command completion */
4000 if (nb_args == 0)
4001 cmdname = "";
4002 else
4003 cmdname = args[0];
4004 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
4005 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
4006 cmd_completion(cmdname, cmd->name);
4008 } else {
4009 /* find the command */
4010 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4011 if (compare_cmd(args[0], cmd->name)) {
4012 break;
4015 if (!cmd->name) {
4016 goto cleanup;
4019 ptype = next_arg_type(cmd->args_type);
4020 for(i = 0; i < nb_args - 2; i++) {
4021 if (*ptype != '\0') {
4022 ptype = next_arg_type(ptype);
4023 while (*ptype == '?')
4024 ptype = next_arg_type(ptype);
4027 str = args[nb_args - 1];
4028 if (*ptype == '-' && ptype[1] != '\0') {
4029 ptype = next_arg_type(ptype);
4031 switch(*ptype) {
4032 case 'F':
4033 /* file completion */
4034 readline_set_completion_index(cur_mon->rs, strlen(str));
4035 file_completion(str);
4036 break;
4037 case 'B':
4038 /* block device name completion */
4039 readline_set_completion_index(cur_mon->rs, strlen(str));
4040 bdrv_iterate(block_completion_it, (void *)str);
4041 break;
4042 case 's':
4043 /* XXX: more generic ? */
4044 if (!strcmp(cmd->name, "info")) {
4045 readline_set_completion_index(cur_mon->rs, strlen(str));
4046 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4047 cmd_completion(str, cmd->name);
4049 } else if (!strcmp(cmd->name, "sendkey")) {
4050 char *sep = strrchr(str, '-');
4051 if (sep)
4052 str = sep + 1;
4053 readline_set_completion_index(cur_mon->rs, strlen(str));
4054 for(key = key_defs; key->name != NULL; key++) {
4055 cmd_completion(str, key->name);
4057 } else if (!strcmp(cmd->name, "help|?")) {
4058 readline_set_completion_index(cur_mon->rs, strlen(str));
4059 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4060 cmd_completion(str, cmd->name);
4063 break;
4064 default:
4065 break;
4069 cleanup:
4070 for (i = 0; i < nb_args; i++) {
4071 g_free(args[i]);
4075 static int monitor_can_read(void *opaque)
4077 Monitor *mon = opaque;
4079 return (mon->suspend_cnt == 0) ? 1 : 0;
4082 static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4084 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4085 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4089 * Argument validation rules:
4091 * 1. The argument must exist in cmd_args qdict
4092 * 2. The argument type must be the expected one
4094 * Special case: If the argument doesn't exist in cmd_args and
4095 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4096 * checking is skipped for it.
4098 static int check_client_args_type(const QDict *client_args,
4099 const QDict *cmd_args, int flags)
4101 const QDictEntry *ent;
4103 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4104 QObject *obj;
4105 QString *arg_type;
4106 const QObject *client_arg = qdict_entry_value(ent);
4107 const char *client_arg_name = qdict_entry_key(ent);
4109 obj = qdict_get(cmd_args, client_arg_name);
4110 if (!obj) {
4111 if (flags & QMP_ACCEPT_UNKNOWNS) {
4112 /* handler accepts unknowns */
4113 continue;
4115 /* client arg doesn't exist */
4116 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4117 return -1;
4120 arg_type = qobject_to_qstring(obj);
4121 assert(arg_type != NULL);
4123 /* check if argument's type is correct */
4124 switch (qstring_get_str(arg_type)[0]) {
4125 case 'F':
4126 case 'B':
4127 case 's':
4128 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4129 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4130 "string");
4131 return -1;
4133 break;
4134 case 'i':
4135 case 'l':
4136 case 'M':
4137 case 'o':
4138 if (qobject_type(client_arg) != QTYPE_QINT) {
4139 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4140 "int");
4141 return -1;
4143 break;
4144 case 'T':
4145 if (qobject_type(client_arg) != QTYPE_QINT &&
4146 qobject_type(client_arg) != QTYPE_QFLOAT) {
4147 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4148 "number");
4149 return -1;
4151 break;
4152 case 'b':
4153 case '-':
4154 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4155 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4156 "bool");
4157 return -1;
4159 break;
4160 case 'O':
4161 assert(flags & QMP_ACCEPT_UNKNOWNS);
4162 break;
4163 case '/':
4164 case '.':
4166 * These types are not supported by QMP and thus are not
4167 * handled here. Fall through.
4169 default:
4170 abort();
4174 return 0;
4178 * - Check if the client has passed all mandatory args
4179 * - Set special flags for argument validation
4181 static int check_mandatory_args(const QDict *cmd_args,
4182 const QDict *client_args, int *flags)
4184 const QDictEntry *ent;
4186 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4187 const char *cmd_arg_name = qdict_entry_key(ent);
4188 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4189 assert(type != NULL);
4191 if (qstring_get_str(type)[0] == 'O') {
4192 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4193 *flags |= QMP_ACCEPT_UNKNOWNS;
4194 } else if (qstring_get_str(type)[0] != '-' &&
4195 qstring_get_str(type)[1] != '?' &&
4196 !qdict_haskey(client_args, cmd_arg_name)) {
4197 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4198 return -1;
4202 return 0;
4205 static QDict *qdict_from_args_type(const char *args_type)
4207 int i;
4208 QDict *qdict;
4209 QString *key, *type, *cur_qs;
4211 assert(args_type != NULL);
4213 qdict = qdict_new();
4215 if (args_type == NULL || args_type[0] == '\0') {
4216 /* no args, empty qdict */
4217 goto out;
4220 key = qstring_new();
4221 type = qstring_new();
4223 cur_qs = key;
4225 for (i = 0;; i++) {
4226 switch (args_type[i]) {
4227 case ',':
4228 case '\0':
4229 qdict_put(qdict, qstring_get_str(key), type);
4230 QDECREF(key);
4231 if (args_type[i] == '\0') {
4232 goto out;
4234 type = qstring_new(); /* qdict has ref */
4235 cur_qs = key = qstring_new();
4236 break;
4237 case ':':
4238 cur_qs = type;
4239 break;
4240 default:
4241 qstring_append_chr(cur_qs, args_type[i]);
4242 break;
4246 out:
4247 return qdict;
4251 * Client argument checking rules:
4253 * 1. Client must provide all mandatory arguments
4254 * 2. Each argument provided by the client must be expected
4255 * 3. Each argument provided by the client must have the type expected
4256 * by the command
4258 static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4260 int flags, err;
4261 QDict *cmd_args;
4263 cmd_args = qdict_from_args_type(cmd->args_type);
4265 flags = 0;
4266 err = check_mandatory_args(cmd_args, client_args, &flags);
4267 if (err) {
4268 goto out;
4271 err = check_client_args_type(client_args, cmd_args, flags);
4273 out:
4274 QDECREF(cmd_args);
4275 return err;
4279 * Input object checking rules
4281 * 1. Input object must be a dict
4282 * 2. The "execute" key must exist
4283 * 3. The "execute" key must be a string
4284 * 4. If the "arguments" key exists, it must be a dict
4285 * 5. If the "id" key exists, it can be anything (ie. json-value)
4286 * 6. Any argument not listed above is considered invalid
4288 static QDict *qmp_check_input_obj(QObject *input_obj)
4290 const QDictEntry *ent;
4291 int has_exec_key = 0;
4292 QDict *input_dict;
4294 if (qobject_type(input_obj) != QTYPE_QDICT) {
4295 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4296 return NULL;
4299 input_dict = qobject_to_qdict(input_obj);
4301 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4302 const char *arg_name = qdict_entry_key(ent);
4303 const QObject *arg_obj = qdict_entry_value(ent);
4305 if (!strcmp(arg_name, "execute")) {
4306 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4307 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4308 "string");
4309 return NULL;
4311 has_exec_key = 1;
4312 } else if (!strcmp(arg_name, "arguments")) {
4313 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4314 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4315 "object");
4316 return NULL;
4318 } else if (!strcmp(arg_name, "id")) {
4319 /* FIXME: check duplicated IDs for async commands */
4320 } else {
4321 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4322 return NULL;
4326 if (!has_exec_key) {
4327 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4328 return NULL;
4331 return input_dict;
4334 static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4335 const QDict *params)
4337 int ret;
4338 QObject *data = NULL;
4340 mon_print_count_init(mon);
4342 ret = cmd->mhandler.cmd_new(mon, params, &data);
4343 handler_audit(mon, cmd, ret);
4344 monitor_protocol_emitter(mon, data);
4345 qobject_decref(data);
4348 static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4350 int err;
4351 QObject *obj;
4352 QDict *input, *args;
4353 const mon_cmd_t *cmd;
4354 const char *cmd_name;
4355 Monitor *mon = cur_mon;
4357 args = input = NULL;
4359 obj = json_parser_parse(tokens, NULL);
4360 if (!obj) {
4361 // FIXME: should be triggered in json_parser_parse()
4362 qerror_report(QERR_JSON_PARSING);
4363 goto err_out;
4366 input = qmp_check_input_obj(obj);
4367 if (!input) {
4368 qobject_decref(obj);
4369 goto err_out;
4372 mon->mc->id = qdict_get(input, "id");
4373 qobject_incref(mon->mc->id);
4375 cmd_name = qdict_get_str(input, "execute");
4376 trace_handle_qmp_command(mon, cmd_name);
4377 if (invalid_qmp_mode(mon, cmd_name)) {
4378 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4379 goto err_out;
4382 cmd = qmp_find_cmd(cmd_name);
4383 if (!cmd) {
4384 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4385 goto err_out;
4388 obj = qdict_get(input, "arguments");
4389 if (!obj) {
4390 args = qdict_new();
4391 } else {
4392 args = qobject_to_qdict(obj);
4393 QINCREF(args);
4396 err = qmp_check_client_args(cmd, args);
4397 if (err < 0) {
4398 goto err_out;
4401 if (handler_is_async(cmd)) {
4402 err = qmp_async_cmd_handler(mon, cmd, args);
4403 if (err) {
4404 /* emit the error response */
4405 goto err_out;
4407 } else {
4408 qmp_call_cmd(mon, cmd, args);
4411 goto out;
4413 err_out:
4414 monitor_protocol_emitter(mon, NULL);
4415 out:
4416 QDECREF(input);
4417 QDECREF(args);
4421 * monitor_control_read(): Read and handle QMP input
4423 static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4425 Monitor *old_mon = cur_mon;
4427 cur_mon = opaque;
4429 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
4431 cur_mon = old_mon;
4434 static void monitor_read(void *opaque, const uint8_t *buf, int size)
4436 Monitor *old_mon = cur_mon;
4437 int i;
4439 cur_mon = opaque;
4441 if (cur_mon->rs) {
4442 for (i = 0; i < size; i++)
4443 readline_handle_byte(cur_mon->rs, buf[i]);
4444 } else {
4445 if (size == 0 || buf[size - 1] != 0)
4446 monitor_printf(cur_mon, "corrupted command\n");
4447 else
4448 handle_user_command(cur_mon, (char *)buf);
4451 cur_mon = old_mon;
4454 static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
4456 monitor_suspend(mon);
4457 handle_user_command(mon, cmdline);
4458 monitor_resume(mon);
4461 int monitor_suspend(Monitor *mon)
4463 if (!mon->rs)
4464 return -ENOTTY;
4465 mon->suspend_cnt++;
4466 return 0;
4469 void monitor_resume(Monitor *mon)
4471 if (!mon->rs)
4472 return;
4473 if (--mon->suspend_cnt == 0)
4474 readline_show_prompt(mon->rs);
4477 static QObject *get_qmp_greeting(void)
4479 QObject *ver = NULL;
4481 qmp_marshal_input_query_version(NULL, NULL, &ver);
4482 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4486 * monitor_control_event(): Print QMP gretting
4488 static void monitor_control_event(void *opaque, int event)
4490 QObject *data;
4491 Monitor *mon = opaque;
4493 switch (event) {
4494 case CHR_EVENT_OPENED:
4495 mon->mc->command_mode = 0;
4496 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
4497 data = get_qmp_greeting();
4498 monitor_json_emitter(mon, data);
4499 qobject_decref(data);
4500 break;
4501 case CHR_EVENT_CLOSED:
4502 json_message_parser_destroy(&mon->mc->parser);
4503 break;
4507 static void monitor_event(void *opaque, int event)
4509 Monitor *mon = opaque;
4511 switch (event) {
4512 case CHR_EVENT_MUX_IN:
4513 mon->mux_out = 0;
4514 if (mon->reset_seen) {
4515 readline_restart(mon->rs);
4516 monitor_resume(mon);
4517 monitor_flush(mon);
4518 } else {
4519 mon->suspend_cnt = 0;
4521 break;
4523 case CHR_EVENT_MUX_OUT:
4524 if (mon->reset_seen) {
4525 if (mon->suspend_cnt == 0) {
4526 monitor_printf(mon, "\n");
4528 monitor_flush(mon);
4529 monitor_suspend(mon);
4530 } else {
4531 mon->suspend_cnt++;
4533 mon->mux_out = 1;
4534 break;
4536 case CHR_EVENT_OPENED:
4537 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4538 "information\n", QEMU_VERSION);
4539 if (!mon->mux_out) {
4540 readline_show_prompt(mon->rs);
4542 mon->reset_seen = 1;
4543 break;
4547 static int
4548 compare_mon_cmd(const void *a, const void *b)
4550 return strcmp(((const mon_cmd_t *)a)->name,
4551 ((const mon_cmd_t *)b)->name);
4554 static void sortcmdlist(void)
4556 int array_num;
4557 int elem_size = sizeof(mon_cmd_t);
4559 array_num = sizeof(mon_cmds)/elem_size-1;
4560 qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd);
4562 array_num = sizeof(info_cmds)/elem_size-1;
4563 qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd);
4568 * Local variables:
4569 * c-indent-level: 4
4570 * c-basic-offset: 4
4571 * tab-width: 8
4572 * End:
4575 void monitor_init(CharDriverState *chr, int flags)
4577 static int is_first_init = 1;
4578 Monitor *mon;
4580 if (is_first_init) {
4581 key_timer = qemu_new_timer_ns(vm_clock, release_keys, NULL);
4582 is_first_init = 0;
4585 mon = g_malloc0(sizeof(*mon));
4587 mon->chr = chr;
4588 mon->flags = flags;
4589 if (flags & MONITOR_USE_READLINE) {
4590 mon->rs = readline_init(mon, monitor_find_completion);
4591 monitor_read_command(mon, 0);
4594 if (monitor_ctrl_mode(mon)) {
4595 mon->mc = g_malloc0(sizeof(MonitorControl));
4596 /* Control mode requires special handlers */
4597 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4598 monitor_control_event, mon);
4599 qemu_chr_fe_set_echo(chr, true);
4600 } else {
4601 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4602 monitor_event, mon);
4605 QLIST_INSERT_HEAD(&mon_list, mon, entry);
4606 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4607 default_mon = mon;
4609 sortcmdlist();
4612 static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
4614 BlockDriverState *bs = opaque;
4615 int ret = 0;
4617 if (bdrv_set_key(bs, password) != 0) {
4618 monitor_printf(mon, "invalid password\n");
4619 ret = -EPERM;
4621 if (mon->password_completion_cb)
4622 mon->password_completion_cb(mon->password_opaque, ret);
4624 monitor_read_command(mon, 1);
4627 ReadLineState *monitor_get_rs(Monitor *mon)
4629 return mon->rs;
4632 int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4633 BlockDriverCompletionFunc *completion_cb,
4634 void *opaque)
4636 int err;
4638 if (!bdrv_key_required(bs)) {
4639 if (completion_cb)
4640 completion_cb(opaque, 0);
4641 return 0;
4644 if (monitor_ctrl_mode(mon)) {
4645 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs),
4646 bdrv_get_encrypted_filename(bs));
4647 return -1;
4650 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4651 bdrv_get_encrypted_filename(bs));
4653 mon->password_completion_cb = completion_cb;
4654 mon->password_opaque = opaque;
4656 err = monitor_read_password(mon, bdrv_password_cb, bs);
4658 if (err && completion_cb)
4659 completion_cb(opaque, err);
4661 return err;
4664 int monitor_read_block_device_key(Monitor *mon, const char *device,
4665 BlockDriverCompletionFunc *completion_cb,
4666 void *opaque)
4668 BlockDriverState *bs;
4670 bs = bdrv_find(device);
4671 if (!bs) {
4672 monitor_printf(mon, "Device not found %s\n", device);
4673 return -1;
4676 return monitor_read_bdrv_key_start(mon, bs, completion_cb, opaque);