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
28 #include "hw/pcmcia.h"
31 #include "hw/watchdog.h"
32 #include "hw/loader.h"
35 #include "net/slirp.h"
36 #include "qemu-char.h"
42 #include "audio/audio.h"
45 #include "qemu-timer.h"
46 #include "migration.h"
55 #include "json-streamer.h"
56 #include "json-parser.h"
59 #ifdef CONFIG_SIMPLE_TRACE
64 //#define DEBUG_COMPLETION
70 * 'B' block device name
71 * 's' string (accept optional quote)
72 * 'O' option string of the form NAME=VALUE,...
73 * parsed according to QemuOptsList given by its name
74 * Example: 'device:O' uses qemu_device_opts.
75 * Restriction: only lists with empty desc are supported
76 * TODO lift the restriction
78 * 'l' target long (32 or 64 bit)
79 * 'M' just like 'l', except in user mode the value is
80 * multiplied by 2^20 (think Mebibyte)
81 * 'o' octets (aka bytes)
82 * user mode accepts an optional T, t, G, g, M, m, K, k
83 * suffix, which multiplies the value by 2^40 for
84 * suffixes T and t, 2^30 for suffixes G and g, 2^20 for
85 * M and m, 2^10 for K and k
87 * user mode accepts an optional ms, us, ns suffix,
88 * which divides the value by 1e3, 1e6, 1e9, respectively
89 * '/' optional gdb-like print format (like "/10x")
91 * '?' optional type (for all types, except '/')
92 * '.' other form of optional type (for 'i' and 'l')
94 * user mode accepts "on" or "off"
95 * '-' optional parameter (eg. '-f')
99 typedef struct MonitorCompletionData MonitorCompletionData
;
100 struct MonitorCompletionData
{
102 void (*user_print
)(Monitor
*mon
, const QObject
*data
);
105 typedef struct mon_cmd_t
{
107 const char *args_type
;
110 void (*user_print
)(Monitor
*mon
, const QObject
*data
);
112 void (*info
)(Monitor
*mon
);
113 void (*info_new
)(Monitor
*mon
, QObject
**ret_data
);
114 int (*info_async
)(Monitor
*mon
, MonitorCompletion
*cb
, void *opaque
);
115 void (*cmd
)(Monitor
*mon
, const QDict
*qdict
);
116 int (*cmd_new
)(Monitor
*mon
, const QDict
*params
, QObject
**ret_data
);
117 int (*cmd_async
)(Monitor
*mon
, const QDict
*params
,
118 MonitorCompletion
*cb
, void *opaque
);
123 /* file descriptors passed via SCM_RIGHTS */
124 typedef struct mon_fd_t mon_fd_t
;
128 QLIST_ENTRY(mon_fd_t
) next
;
131 typedef struct MonitorControl
{
133 JSONMessageParser parser
;
138 CharDriverState
*chr
;
143 uint8_t outbuf
[1024];
148 BlockDriverCompletionFunc
*password_completion_cb
;
149 void *password_opaque
;
150 #ifdef CONFIG_DEBUG_MONITOR
154 QLIST_HEAD(,mon_fd_t
) fds
;
155 QLIST_ENTRY(Monitor
) entry
;
158 #ifdef CONFIG_DEBUG_MONITOR
159 #define MON_DEBUG(fmt, ...) do { \
160 fprintf(stderr, "Monitor: "); \
161 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
163 static inline void mon_print_count_inc(Monitor
*mon
)
165 mon
->print_calls_nr
++;
168 static inline void mon_print_count_init(Monitor
*mon
)
170 mon
->print_calls_nr
= 0;
173 static inline int mon_print_count_get(const Monitor
*mon
)
175 return mon
->print_calls_nr
;
178 #else /* !CONFIG_DEBUG_MONITOR */
179 #define MON_DEBUG(fmt, ...) do { } while (0)
180 static inline void mon_print_count_inc(Monitor
*mon
) { }
181 static inline void mon_print_count_init(Monitor
*mon
) { }
182 static inline int mon_print_count_get(const Monitor
*mon
) { return 0; }
183 #endif /* CONFIG_DEBUG_MONITOR */
185 /* QMP checker flags */
186 #define QMP_ACCEPT_UNKNOWNS 1
188 static QLIST_HEAD(mon_list
, Monitor
) mon_list
;
190 static const mon_cmd_t mon_cmds
[];
191 static const mon_cmd_t info_cmds
[];
193 static const mon_cmd_t qmp_cmds
[];
194 static const mon_cmd_t qmp_query_cmds
[];
197 Monitor
*default_mon
;
199 static void monitor_command_cb(Monitor
*mon
, const char *cmdline
,
202 static inline int qmp_cmd_mode(const Monitor
*mon
)
204 return (mon
->mc
? mon
->mc
->command_mode
: 0);
207 /* Return true if in control mode, false otherwise */
208 static inline int monitor_ctrl_mode(const Monitor
*mon
)
210 return (mon
->flags
& MONITOR_USE_CONTROL
);
213 /* Return non-zero iff we have a current monitor, and it is in QMP mode. */
214 int monitor_cur_is_qmp(void)
216 return cur_mon
&& monitor_ctrl_mode(cur_mon
);
219 static void monitor_read_command(Monitor
*mon
, int show_prompt
)
224 readline_start(mon
->rs
, "(qemu) ", 0, monitor_command_cb
, NULL
);
226 readline_show_prompt(mon
->rs
);
229 static int monitor_read_password(Monitor
*mon
, ReadLineFunc
*readline_func
,
232 if (monitor_ctrl_mode(mon
)) {
233 qerror_report(QERR_MISSING_PARAMETER
, "password");
235 } else if (mon
->rs
) {
236 readline_start(mon
->rs
, "Password: ", 1, readline_func
, opaque
);
237 /* prompt is printed on return from the command handler */
240 monitor_printf(mon
, "terminal does not support password prompting\n");
245 void monitor_flush(Monitor
*mon
)
247 if (mon
&& mon
->outbuf_index
!= 0 && !mon
->mux_out
) {
248 qemu_chr_write(mon
->chr
, mon
->outbuf
, mon
->outbuf_index
);
249 mon
->outbuf_index
= 0;
253 /* flush at every end of line or if the buffer is full */
254 static void monitor_puts(Monitor
*mon
, const char *str
)
263 mon
->outbuf
[mon
->outbuf_index
++] = '\r';
264 mon
->outbuf
[mon
->outbuf_index
++] = c
;
265 if (mon
->outbuf_index
>= (sizeof(mon
->outbuf
) - 1)
271 void monitor_vprintf(Monitor
*mon
, const char *fmt
, va_list ap
)
278 mon_print_count_inc(mon
);
280 if (monitor_ctrl_mode(mon
)) {
284 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
285 monitor_puts(mon
, buf
);
288 void monitor_printf(Monitor
*mon
, const char *fmt
, ...)
292 monitor_vprintf(mon
, fmt
, ap
);
296 void monitor_print_filename(Monitor
*mon
, const char *filename
)
300 for (i
= 0; filename
[i
]; i
++) {
301 switch (filename
[i
]) {
305 monitor_printf(mon
, "\\%c", filename
[i
]);
308 monitor_printf(mon
, "\\t");
311 monitor_printf(mon
, "\\r");
314 monitor_printf(mon
, "\\n");
317 monitor_printf(mon
, "%c", filename
[i
]);
323 static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream
,
324 const char *fmt
, ...)
328 monitor_vprintf((Monitor
*)stream
, fmt
, ap
);
333 static void monitor_user_noop(Monitor
*mon
, const QObject
*data
) { }
335 static inline int handler_is_qobject(const mon_cmd_t
*cmd
)
337 return cmd
->user_print
!= NULL
;
340 static inline bool handler_is_async(const mon_cmd_t
*cmd
)
342 return cmd
->flags
& MONITOR_CMD_ASYNC
;
345 static inline int monitor_has_error(const Monitor
*mon
)
347 return mon
->error
!= NULL
;
350 static void monitor_json_emitter(Monitor
*mon
, const QObject
*data
)
354 json
= mon
->flags
& MONITOR_USE_PRETTY
? qobject_to_json_pretty(data
) :
355 qobject_to_json(data
);
356 assert(json
!= NULL
);
358 qstring_append_chr(json
, '\n');
359 monitor_puts(mon
, qstring_get_str(json
));
364 static void monitor_protocol_emitter(Monitor
*mon
, QObject
*data
)
370 if (!monitor_has_error(mon
)) {
371 /* success response */
373 qobject_incref(data
);
374 qdict_put_obj(qmp
, "return", data
);
376 /* return an empty QDict by default */
377 qdict_put(qmp
, "return", qdict_new());
381 qdict_put(mon
->error
->error
, "desc", qerror_human(mon
->error
));
382 qdict_put(qmp
, "error", mon
->error
->error
);
383 QINCREF(mon
->error
->error
);
389 qdict_put_obj(qmp
, "id", mon
->mc
->id
);
393 monitor_json_emitter(mon
, QOBJECT(qmp
));
397 static void timestamp_put(QDict
*qdict
)
403 err
= qemu_gettimeofday(&tv
);
407 obj
= qobject_from_jsonf("{ 'seconds': %" PRId64
", "
408 "'microseconds': %" PRId64
" }",
409 (int64_t) tv
.tv_sec
, (int64_t) tv
.tv_usec
);
410 qdict_put_obj(qdict
, "timestamp", obj
);
414 * monitor_protocol_event(): Generate a Monitor event
416 * Event-specific data can be emitted through the (optional) 'data' parameter.
418 void monitor_protocol_event(MonitorEvent event
, QObject
*data
)
421 const char *event_name
;
424 assert(event
< QEVENT_MAX
);
427 case QEVENT_SHUTDOWN
:
428 event_name
= "SHUTDOWN";
431 event_name
= "RESET";
433 case QEVENT_POWERDOWN
:
434 event_name
= "POWERDOWN";
440 event_name
= "RESUME";
442 case QEVENT_VNC_CONNECTED
:
443 event_name
= "VNC_CONNECTED";
445 case QEVENT_VNC_INITIALIZED
:
446 event_name
= "VNC_INITIALIZED";
448 case QEVENT_VNC_DISCONNECTED
:
449 event_name
= "VNC_DISCONNECTED";
451 case QEVENT_BLOCK_IO_ERROR
:
452 event_name
= "BLOCK_IO_ERROR";
454 case QEVENT_RTC_CHANGE
:
455 event_name
= "RTC_CHANGE";
457 case QEVENT_WATCHDOG
:
458 event_name
= "WATCHDOG";
467 qdict_put(qmp
, "event", qstring_from_str(event_name
));
469 qobject_incref(data
);
470 qdict_put_obj(qmp
, "data", data
);
473 QLIST_FOREACH(mon
, &mon_list
, entry
) {
474 if (monitor_ctrl_mode(mon
) && qmp_cmd_mode(mon
)) {
475 monitor_json_emitter(mon
, QOBJECT(qmp
));
481 static int do_qmp_capabilities(Monitor
*mon
, const QDict
*params
,
484 /* Will setup QMP capabilities in the future */
485 if (monitor_ctrl_mode(mon
)) {
486 mon
->mc
->command_mode
= 1;
492 static int mon_set_cpu(int cpu_index
);
493 static void handle_user_command(Monitor
*mon
, const char *cmdline
);
495 static int do_hmp_passthrough(Monitor
*mon
, const QDict
*params
,
499 Monitor
*old_mon
, hmp
;
500 CharDriverState mchar
;
502 memset(&hmp
, 0, sizeof(hmp
));
503 qemu_chr_init_mem(&mchar
);
509 if (qdict_haskey(params
, "cpu-index")) {
510 ret
= mon_set_cpu(qdict_get_int(params
, "cpu-index"));
513 qerror_report(QERR_INVALID_PARAMETER_VALUE
, "cpu-index", "a CPU number");
518 handle_user_command(&hmp
, qdict_get_str(params
, "command-line"));
521 if (qemu_chr_mem_osize(hmp
.chr
) > 0) {
522 *ret_data
= QOBJECT(qemu_chr_mem_to_qs(hmp
.chr
));
526 qemu_chr_close_mem(hmp
.chr
);
530 static int compare_cmd(const char *name
, const char *list
)
532 const char *p
, *pstart
;
540 p
= pstart
+ strlen(pstart
);
541 if ((p
- pstart
) == len
&& !memcmp(pstart
, name
, len
))
550 static void help_cmd_dump(Monitor
*mon
, const mon_cmd_t
*cmds
,
551 const char *prefix
, const char *name
)
553 const mon_cmd_t
*cmd
;
555 for(cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
556 if (!name
|| !strcmp(name
, cmd
->name
))
557 monitor_printf(mon
, "%s%s %s -- %s\n", prefix
, cmd
->name
,
558 cmd
->params
, cmd
->help
);
562 static void help_cmd(Monitor
*mon
, const char *name
)
564 if (name
&& !strcmp(name
, "info")) {
565 help_cmd_dump(mon
, info_cmds
, "info ", NULL
);
567 help_cmd_dump(mon
, mon_cmds
, "", name
);
568 if (name
&& !strcmp(name
, "log")) {
569 const CPULogItem
*item
;
570 monitor_printf(mon
, "Log items (comma separated):\n");
571 monitor_printf(mon
, "%-10s %s\n", "none", "remove all logs");
572 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
573 monitor_printf(mon
, "%-10s %s\n", item
->name
, item
->help
);
579 static void do_help_cmd(Monitor
*mon
, const QDict
*qdict
)
581 help_cmd(mon
, qdict_get_try_str(qdict
, "name"));
584 #ifdef CONFIG_SIMPLE_TRACE
585 static void do_change_trace_event_state(Monitor
*mon
, const QDict
*qdict
)
587 const char *tp_name
= qdict_get_str(qdict
, "name");
588 bool new_state
= qdict_get_bool(qdict
, "option");
589 int ret
= st_change_trace_event_state(tp_name
, new_state
);
592 monitor_printf(mon
, "unknown event name \"%s\"\n", tp_name
);
596 static void do_trace_file(Monitor
*mon
, const QDict
*qdict
)
598 const char *op
= qdict_get_try_str(qdict
, "op");
599 const char *arg
= qdict_get_try_str(qdict
, "arg");
602 st_print_trace_file_status((FILE *)mon
, &monitor_fprintf
);
603 } else if (!strcmp(op
, "on")) {
604 st_set_trace_file_enabled(true);
605 } else if (!strcmp(op
, "off")) {
606 st_set_trace_file_enabled(false);
607 } else if (!strcmp(op
, "flush")) {
608 st_flush_trace_buffer();
609 } else if (!strcmp(op
, "set")) {
611 st_set_trace_file(arg
);
614 monitor_printf(mon
, "unexpected argument \"%s\"\n", op
);
615 help_cmd(mon
, "trace-file");
620 static void user_monitor_complete(void *opaque
, QObject
*ret_data
)
622 MonitorCompletionData
*data
= (MonitorCompletionData
*)opaque
;
625 data
->user_print(data
->mon
, ret_data
);
627 monitor_resume(data
->mon
);
631 static void qmp_monitor_complete(void *opaque
, QObject
*ret_data
)
633 monitor_protocol_emitter(opaque
, ret_data
);
636 static int qmp_async_cmd_handler(Monitor
*mon
, const mon_cmd_t
*cmd
,
639 return cmd
->mhandler
.cmd_async(mon
, params
, qmp_monitor_complete
, mon
);
642 static void qmp_async_info_handler(Monitor
*mon
, const mon_cmd_t
*cmd
)
644 cmd
->mhandler
.info_async(mon
, qmp_monitor_complete
, mon
);
647 static void user_async_cmd_handler(Monitor
*mon
, const mon_cmd_t
*cmd
,
652 MonitorCompletionData
*cb_data
= qemu_malloc(sizeof(*cb_data
));
654 cb_data
->user_print
= cmd
->user_print
;
655 monitor_suspend(mon
);
656 ret
= cmd
->mhandler
.cmd_async(mon
, params
,
657 user_monitor_complete
, cb_data
);
664 static void user_async_info_handler(Monitor
*mon
, const mon_cmd_t
*cmd
)
668 MonitorCompletionData
*cb_data
= qemu_malloc(sizeof(*cb_data
));
670 cb_data
->user_print
= cmd
->user_print
;
671 monitor_suspend(mon
);
672 ret
= cmd
->mhandler
.info_async(mon
, user_monitor_complete
, cb_data
);
679 static void do_info(Monitor
*mon
, const QDict
*qdict
)
681 const mon_cmd_t
*cmd
;
682 const char *item
= qdict_get_try_str(qdict
, "item");
688 for (cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
689 if (compare_cmd(item
, cmd
->name
))
693 if (cmd
->name
== NULL
) {
697 if (handler_is_async(cmd
)) {
698 user_async_info_handler(mon
, cmd
);
699 } else if (handler_is_qobject(cmd
)) {
700 QObject
*info_data
= NULL
;
702 cmd
->mhandler
.info_new(mon
, &info_data
);
704 cmd
->user_print(mon
, info_data
);
705 qobject_decref(info_data
);
708 cmd
->mhandler
.info(mon
);
714 help_cmd(mon
, "info");
717 static void do_info_version_print(Monitor
*mon
, const QObject
*data
)
722 qdict
= qobject_to_qdict(data
);
723 qemu
= qdict_get_qdict(qdict
, "qemu");
725 monitor_printf(mon
, "%" PRId64
".%" PRId64
".%" PRId64
"%s\n",
726 qdict_get_int(qemu
, "major"),
727 qdict_get_int(qemu
, "minor"),
728 qdict_get_int(qemu
, "micro"),
729 qdict_get_str(qdict
, "package"));
732 static void do_info_version(Monitor
*mon
, QObject
**ret_data
)
734 const char *version
= QEMU_VERSION
;
735 int major
= 0, minor
= 0, micro
= 0;
738 major
= strtol(version
, &tmp
, 10);
740 minor
= strtol(tmp
, &tmp
, 10);
742 micro
= strtol(tmp
, &tmp
, 10);
744 *ret_data
= qobject_from_jsonf("{ 'qemu': { 'major': %d, 'minor': %d, \
745 'micro': %d }, 'package': %s }", major
, minor
, micro
, QEMU_PKGVERSION
);
748 static void do_info_name_print(Monitor
*mon
, const QObject
*data
)
752 qdict
= qobject_to_qdict(data
);
753 if (qdict_size(qdict
) == 0) {
757 monitor_printf(mon
, "%s\n", qdict_get_str(qdict
, "name"));
760 static void do_info_name(Monitor
*mon
, QObject
**ret_data
)
762 *ret_data
= qemu_name
? qobject_from_jsonf("{'name': %s }", qemu_name
) :
763 qobject_from_jsonf("{}");
766 static QObject
*get_cmd_dict(const char *name
)
770 /* Remove '|' from some commands */
771 p
= strchr(name
, '|');
778 return qobject_from_jsonf("{ 'name': %s }", p
);
781 static void do_info_commands(Monitor
*mon
, QObject
**ret_data
)
784 const mon_cmd_t
*cmd
;
786 cmd_list
= qlist_new();
788 for (cmd
= qmp_cmds
; cmd
->name
!= NULL
; cmd
++) {
789 qlist_append_obj(cmd_list
, get_cmd_dict(cmd
->name
));
792 for (cmd
= qmp_query_cmds
; cmd
->name
!= NULL
; cmd
++) {
794 snprintf(buf
, sizeof(buf
), "query-%s", cmd
->name
);
795 qlist_append_obj(cmd_list
, get_cmd_dict(buf
));
798 *ret_data
= QOBJECT(cmd_list
);
801 static void do_info_uuid_print(Monitor
*mon
, const QObject
*data
)
803 monitor_printf(mon
, "%s\n", qdict_get_str(qobject_to_qdict(data
), "UUID"));
806 static void do_info_uuid(Monitor
*mon
, QObject
**ret_data
)
810 snprintf(uuid
, sizeof(uuid
), UUID_FMT
, qemu_uuid
[0], qemu_uuid
[1],
811 qemu_uuid
[2], qemu_uuid
[3], qemu_uuid
[4], qemu_uuid
[5],
812 qemu_uuid
[6], qemu_uuid
[7], qemu_uuid
[8], qemu_uuid
[9],
813 qemu_uuid
[10], qemu_uuid
[11], qemu_uuid
[12], qemu_uuid
[13],
814 qemu_uuid
[14], qemu_uuid
[15]);
815 *ret_data
= qobject_from_jsonf("{ 'UUID': %s }", uuid
);
818 /* get the current CPU defined by the user */
819 static int mon_set_cpu(int cpu_index
)
823 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
824 if (env
->cpu_index
== cpu_index
) {
825 cur_mon
->mon_cpu
= env
;
832 static CPUState
*mon_get_cpu(void)
834 if (!cur_mon
->mon_cpu
) {
837 cpu_synchronize_state(cur_mon
->mon_cpu
);
838 return cur_mon
->mon_cpu
;
841 static void do_info_registers(Monitor
*mon
)
846 cpu_dump_state(env
, (FILE *)mon
, monitor_fprintf
,
849 cpu_dump_state(env
, (FILE *)mon
, monitor_fprintf
,
854 static void print_cpu_iter(QObject
*obj
, void *opaque
)
858 Monitor
*mon
= opaque
;
860 assert(qobject_type(obj
) == QTYPE_QDICT
);
861 cpu
= qobject_to_qdict(obj
);
863 if (qdict_get_bool(cpu
, "current")) {
867 monitor_printf(mon
, "%c CPU #%d: ", active
, (int)qdict_get_int(cpu
, "CPU"));
869 #if defined(TARGET_I386)
870 monitor_printf(mon
, "pc=0x" TARGET_FMT_lx
,
871 (target_ulong
) qdict_get_int(cpu
, "pc"));
872 #elif defined(TARGET_PPC)
873 monitor_printf(mon
, "nip=0x" TARGET_FMT_lx
,
874 (target_long
) qdict_get_int(cpu
, "nip"));
875 #elif defined(TARGET_SPARC)
876 monitor_printf(mon
, "pc=0x " TARGET_FMT_lx
,
877 (target_long
) qdict_get_int(cpu
, "pc"));
878 monitor_printf(mon
, "npc=0x" TARGET_FMT_lx
,
879 (target_long
) qdict_get_int(cpu
, "npc"));
880 #elif defined(TARGET_MIPS)
881 monitor_printf(mon
, "PC=0x" TARGET_FMT_lx
,
882 (target_long
) qdict_get_int(cpu
, "PC"));
885 if (qdict_get_bool(cpu
, "halted")) {
886 monitor_printf(mon
, " (halted)");
889 monitor_printf(mon
, "\n");
892 static void monitor_print_cpus(Monitor
*mon
, const QObject
*data
)
896 assert(qobject_type(data
) == QTYPE_QLIST
);
897 cpu_list
= qobject_to_qlist(data
);
898 qlist_iter(cpu_list
, print_cpu_iter
, mon
);
901 static void do_info_cpus(Monitor
*mon
, QObject
**ret_data
)
906 cpu_list
= qlist_new();
908 /* just to set the default cpu if not already done */
911 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
915 cpu_synchronize_state(env
);
917 obj
= qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
918 env
->cpu_index
, env
== mon
->mon_cpu
,
921 cpu
= qobject_to_qdict(obj
);
923 #if defined(TARGET_I386)
924 qdict_put(cpu
, "pc", qint_from_int(env
->eip
+ env
->segs
[R_CS
].base
));
925 #elif defined(TARGET_PPC)
926 qdict_put(cpu
, "nip", qint_from_int(env
->nip
));
927 #elif defined(TARGET_SPARC)
928 qdict_put(cpu
, "pc", qint_from_int(env
->pc
));
929 qdict_put(cpu
, "npc", qint_from_int(env
->npc
));
930 #elif defined(TARGET_MIPS)
931 qdict_put(cpu
, "PC", qint_from_int(env
->active_tc
.PC
));
934 qlist_append(cpu_list
, cpu
);
937 *ret_data
= QOBJECT(cpu_list
);
940 static int do_cpu_set(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
942 int index
= qdict_get_int(qdict
, "index");
943 if (mon_set_cpu(index
) < 0) {
944 qerror_report(QERR_INVALID_PARAMETER_VALUE
, "index",
951 static void do_info_jit(Monitor
*mon
)
953 dump_exec_info((FILE *)mon
, monitor_fprintf
);
956 static void do_info_history(Monitor
*mon
)
965 str
= readline_get_history(mon
->rs
, i
);
968 monitor_printf(mon
, "%d: '%s'\n", i
, str
);
973 #if defined(TARGET_PPC)
974 /* XXX: not implemented in other targets */
975 static void do_info_cpu_stats(Monitor
*mon
)
980 cpu_dump_statistics(env
, (FILE *)mon
, &monitor_fprintf
, 0);
984 #if defined(CONFIG_SIMPLE_TRACE)
985 static void do_info_trace(Monitor
*mon
)
987 st_print_trace((FILE *)mon
, &monitor_fprintf
);
990 static void do_info_trace_events(Monitor
*mon
)
992 st_print_trace_events((FILE *)mon
, &monitor_fprintf
);
997 * do_quit(): Quit QEMU execution
999 static int do_quit(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1001 monitor_suspend(mon
);
1003 qemu_system_shutdown_request();
1008 static int change_vnc_password(const char *password
)
1010 if (vnc_display_password(NULL
, password
) < 0) {
1011 qerror_report(QERR_SET_PASSWD_FAILED
);
1018 static void change_vnc_password_cb(Monitor
*mon
, const char *password
,
1021 change_vnc_password(password
);
1022 monitor_read_command(mon
, 1);
1025 static int do_change_vnc(Monitor
*mon
, const char *target
, const char *arg
)
1027 if (strcmp(target
, "passwd") == 0 ||
1028 strcmp(target
, "password") == 0) {
1031 strncpy(password
, arg
, sizeof(password
));
1032 password
[sizeof(password
) - 1] = '\0';
1033 return change_vnc_password(password
);
1035 return monitor_read_password(mon
, change_vnc_password_cb
, NULL
);
1038 if (vnc_display_open(NULL
, target
) < 0) {
1039 qerror_report(QERR_VNC_SERVER_FAILED
, target
);
1048 * do_change(): Change a removable medium, or VNC configuration
1050 static int do_change(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1052 const char *device
= qdict_get_str(qdict
, "device");
1053 const char *target
= qdict_get_str(qdict
, "target");
1054 const char *arg
= qdict_get_try_str(qdict
, "arg");
1057 if (strcmp(device
, "vnc") == 0) {
1058 ret
= do_change_vnc(mon
, target
, arg
);
1060 ret
= do_change_block(mon
, device
, target
, arg
);
1066 static int do_screen_dump(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1068 vga_hw_screen_dump(qdict_get_str(qdict
, "filename"));
1072 static void do_logfile(Monitor
*mon
, const QDict
*qdict
)
1074 cpu_set_log_filename(qdict_get_str(qdict
, "filename"));
1077 static void do_log(Monitor
*mon
, const QDict
*qdict
)
1080 const char *items
= qdict_get_str(qdict
, "items");
1082 if (!strcmp(items
, "none")) {
1085 mask
= cpu_str_to_log_mask(items
);
1087 help_cmd(mon
, "log");
1094 static void do_singlestep(Monitor
*mon
, const QDict
*qdict
)
1096 const char *option
= qdict_get_try_str(qdict
, "option");
1097 if (!option
|| !strcmp(option
, "on")) {
1099 } else if (!strcmp(option
, "off")) {
1102 monitor_printf(mon
, "unexpected option %s\n", option
);
1107 * do_stop(): Stop VM execution
1109 static int do_stop(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1111 vm_stop(EXCP_INTERRUPT
);
1115 static void encrypted_bdrv_it(void *opaque
, BlockDriverState
*bs
);
1117 struct bdrv_iterate_context
{
1123 * do_cont(): Resume emulation.
1125 static int do_cont(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1127 struct bdrv_iterate_context context
= { mon
, 0 };
1129 if (incoming_expected
) {
1130 qerror_report(QERR_MIGRATION_EXPECTED
);
1133 bdrv_iterate(encrypted_bdrv_it
, &context
);
1134 /* only resume the vm if all keys are set and valid */
1143 static void bdrv_key_cb(void *opaque
, int err
)
1145 Monitor
*mon
= opaque
;
1147 /* another key was set successfully, retry to continue */
1149 do_cont(mon
, NULL
, NULL
);
1152 static void encrypted_bdrv_it(void *opaque
, BlockDriverState
*bs
)
1154 struct bdrv_iterate_context
*context
= opaque
;
1156 if (!context
->err
&& bdrv_key_required(bs
)) {
1157 context
->err
= -EBUSY
;
1158 monitor_read_bdrv_key_start(context
->mon
, bs
, bdrv_key_cb
,
1163 static void do_gdbserver(Monitor
*mon
, const QDict
*qdict
)
1165 const char *device
= qdict_get_try_str(qdict
, "device");
1167 device
= "tcp::" DEFAULT_GDBSTUB_PORT
;
1168 if (gdbserver_start(device
) < 0) {
1169 monitor_printf(mon
, "Could not open gdbserver on device '%s'\n",
1171 } else if (strcmp(device
, "none") == 0) {
1172 monitor_printf(mon
, "Disabled gdbserver\n");
1174 monitor_printf(mon
, "Waiting for gdb connection on device '%s'\n",
1179 static void do_watchdog_action(Monitor
*mon
, const QDict
*qdict
)
1181 const char *action
= qdict_get_str(qdict
, "action");
1182 if (select_watchdog_action(action
) == -1) {
1183 monitor_printf(mon
, "Unknown watchdog action '%s'\n", action
);
1187 static void monitor_printc(Monitor
*mon
, int c
)
1189 monitor_printf(mon
, "'");
1192 monitor_printf(mon
, "\\'");
1195 monitor_printf(mon
, "\\\\");
1198 monitor_printf(mon
, "\\n");
1201 monitor_printf(mon
, "\\r");
1204 if (c
>= 32 && c
<= 126) {
1205 monitor_printf(mon
, "%c", c
);
1207 monitor_printf(mon
, "\\x%02x", c
);
1211 monitor_printf(mon
, "'");
1214 static void memory_dump(Monitor
*mon
, int count
, int format
, int wsize
,
1215 target_phys_addr_t addr
, int is_physical
)
1218 int l
, line_size
, i
, max_digits
, len
;
1222 if (format
== 'i') {
1225 env
= mon_get_cpu();
1229 } else if (wsize
== 4) {
1232 /* as default we use the current CS size */
1235 #ifdef TARGET_X86_64
1236 if ((env
->efer
& MSR_EFER_LMA
) &&
1237 (env
->segs
[R_CS
].flags
& DESC_L_MASK
))
1241 if (!(env
->segs
[R_CS
].flags
& DESC_B_MASK
))
1246 monitor_disas(mon
, env
, addr
, count
, is_physical
, flags
);
1250 len
= wsize
* count
;
1259 max_digits
= (wsize
* 8 + 2) / 3;
1263 max_digits
= (wsize
* 8) / 4;
1267 max_digits
= (wsize
* 8 * 10 + 32) / 33;
1276 monitor_printf(mon
, TARGET_FMT_plx
":", addr
);
1278 monitor_printf(mon
, TARGET_FMT_lx
":", (target_ulong
)addr
);
1283 cpu_physical_memory_rw(addr
, buf
, l
, 0);
1285 env
= mon_get_cpu();
1286 if (cpu_memory_rw_debug(env
, addr
, buf
, l
, 0) < 0) {
1287 monitor_printf(mon
, " Cannot access memory\n");
1296 v
= ldub_raw(buf
+ i
);
1299 v
= lduw_raw(buf
+ i
);
1302 v
= (uint32_t)ldl_raw(buf
+ i
);
1305 v
= ldq_raw(buf
+ i
);
1308 monitor_printf(mon
, " ");
1311 monitor_printf(mon
, "%#*" PRIo64
, max_digits
, v
);
1314 monitor_printf(mon
, "0x%0*" PRIx64
, max_digits
, v
);
1317 monitor_printf(mon
, "%*" PRIu64
, max_digits
, v
);
1320 monitor_printf(mon
, "%*" PRId64
, max_digits
, v
);
1323 monitor_printc(mon
, v
);
1328 monitor_printf(mon
, "\n");
1334 static void do_memory_dump(Monitor
*mon
, const QDict
*qdict
)
1336 int count
= qdict_get_int(qdict
, "count");
1337 int format
= qdict_get_int(qdict
, "format");
1338 int size
= qdict_get_int(qdict
, "size");
1339 target_long addr
= qdict_get_int(qdict
, "addr");
1341 memory_dump(mon
, count
, format
, size
, addr
, 0);
1344 static void do_physical_memory_dump(Monitor
*mon
, const QDict
*qdict
)
1346 int count
= qdict_get_int(qdict
, "count");
1347 int format
= qdict_get_int(qdict
, "format");
1348 int size
= qdict_get_int(qdict
, "size");
1349 target_phys_addr_t addr
= qdict_get_int(qdict
, "addr");
1351 memory_dump(mon
, count
, format
, size
, addr
, 1);
1354 static void do_print(Monitor
*mon
, const QDict
*qdict
)
1356 int format
= qdict_get_int(qdict
, "format");
1357 target_phys_addr_t val
= qdict_get_int(qdict
, "val");
1359 #if TARGET_PHYS_ADDR_BITS == 32
1362 monitor_printf(mon
, "%#o", val
);
1365 monitor_printf(mon
, "%#x", val
);
1368 monitor_printf(mon
, "%u", val
);
1372 monitor_printf(mon
, "%d", val
);
1375 monitor_printc(mon
, val
);
1381 monitor_printf(mon
, "%#" PRIo64
, val
);
1384 monitor_printf(mon
, "%#" PRIx64
, val
);
1387 monitor_printf(mon
, "%" PRIu64
, val
);
1391 monitor_printf(mon
, "%" PRId64
, val
);
1394 monitor_printc(mon
, val
);
1398 monitor_printf(mon
, "\n");
1401 static int do_memory_save(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1404 uint32_t size
= qdict_get_int(qdict
, "size");
1405 const char *filename
= qdict_get_str(qdict
, "filename");
1406 target_long addr
= qdict_get_int(qdict
, "val");
1412 env
= mon_get_cpu();
1414 f
= fopen(filename
, "wb");
1416 qerror_report(QERR_OPEN_FILE_FAILED
, filename
);
1423 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
1424 if (fwrite(buf
, 1, l
, f
) != l
) {
1425 monitor_printf(mon
, "fwrite() error in do_memory_save\n");
1439 static int do_physical_memory_save(Monitor
*mon
, const QDict
*qdict
,
1445 uint32_t size
= qdict_get_int(qdict
, "size");
1446 const char *filename
= qdict_get_str(qdict
, "filename");
1447 target_phys_addr_t addr
= qdict_get_int(qdict
, "val");
1450 f
= fopen(filename
, "wb");
1452 qerror_report(QERR_OPEN_FILE_FAILED
, filename
);
1459 cpu_physical_memory_rw(addr
, buf
, l
, 0);
1460 if (fwrite(buf
, 1, l
, f
) != l
) {
1461 monitor_printf(mon
, "fwrite() error in do_physical_memory_save\n");
1476 static void do_sum(Monitor
*mon
, const QDict
*qdict
)
1481 uint32_t start
= qdict_get_int(qdict
, "start");
1482 uint32_t size
= qdict_get_int(qdict
, "size");
1485 for(addr
= start
; addr
< (start
+ size
); addr
++) {
1486 cpu_physical_memory_rw(addr
, buf
, 1, 0);
1487 /* BSD sum algorithm ('sum' Unix command) */
1488 sum
= (sum
>> 1) | (sum
<< 15);
1491 monitor_printf(mon
, "%05d\n", sum
);
1499 static const KeyDef key_defs
[] = {
1501 { 0x36, "shift_r" },
1506 { 0xe4, "altgr_r" },
1526 { 0x0e, "backspace" },
1539 { 0x1a, "bracket_left" },
1540 { 0x1b, "bracket_right" },
1552 { 0x27, "semicolon" },
1553 { 0x28, "apostrophe" },
1554 { 0x29, "grave_accent" },
1556 { 0x2b, "backslash" },
1568 { 0x37, "asterisk" },
1571 { 0x3a, "caps_lock" },
1582 { 0x45, "num_lock" },
1583 { 0x46, "scroll_lock" },
1585 { 0xb5, "kp_divide" },
1586 { 0x37, "kp_multiply" },
1587 { 0x4a, "kp_subtract" },
1589 { 0x9c, "kp_enter" },
1590 { 0x53, "kp_decimal" },
1623 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1638 { 0xfe, "compose" },
1643 static int get_keycode(const char *key
)
1649 for(p
= key_defs
; p
->name
!= NULL
; p
++) {
1650 if (!strcmp(key
, p
->name
))
1653 if (strstart(key
, "0x", NULL
)) {
1654 ret
= strtoul(key
, &endp
, 0);
1655 if (*endp
== '\0' && ret
>= 0x01 && ret
<= 0xff)
1661 #define MAX_KEYCODES 16
1662 static uint8_t keycodes
[MAX_KEYCODES
];
1663 static int nb_pending_keycodes
;
1664 static QEMUTimer
*key_timer
;
1666 static void release_keys(void *opaque
)
1670 while (nb_pending_keycodes
> 0) {
1671 nb_pending_keycodes
--;
1672 keycode
= keycodes
[nb_pending_keycodes
];
1674 kbd_put_keycode(0xe0);
1675 kbd_put_keycode(keycode
| 0x80);
1679 static void do_sendkey(Monitor
*mon
, const QDict
*qdict
)
1681 char keyname_buf
[16];
1683 int keyname_len
, keycode
, i
;
1684 const char *string
= qdict_get_str(qdict
, "string");
1685 int has_hold_time
= qdict_haskey(qdict
, "hold_time");
1686 int hold_time
= qdict_get_try_int(qdict
, "hold_time", -1);
1688 if (nb_pending_keycodes
> 0) {
1689 qemu_del_timer(key_timer
);
1696 separator
= strchr(string
, '-');
1697 keyname_len
= separator
? separator
- string
: strlen(string
);
1698 if (keyname_len
> 0) {
1699 pstrcpy(keyname_buf
, sizeof(keyname_buf
), string
);
1700 if (keyname_len
> sizeof(keyname_buf
) - 1) {
1701 monitor_printf(mon
, "invalid key: '%s...'\n", keyname_buf
);
1704 if (i
== MAX_KEYCODES
) {
1705 monitor_printf(mon
, "too many keys\n");
1708 keyname_buf
[keyname_len
] = 0;
1709 keycode
= get_keycode(keyname_buf
);
1711 monitor_printf(mon
, "unknown key: '%s'\n", keyname_buf
);
1714 keycodes
[i
++] = keycode
;
1718 string
= separator
+ 1;
1720 nb_pending_keycodes
= i
;
1721 /* key down events */
1722 for (i
= 0; i
< nb_pending_keycodes
; i
++) {
1723 keycode
= keycodes
[i
];
1725 kbd_put_keycode(0xe0);
1726 kbd_put_keycode(keycode
& 0x7f);
1728 /* delayed key up events */
1729 qemu_mod_timer(key_timer
, qemu_get_clock(vm_clock
) +
1730 muldiv64(get_ticks_per_sec(), hold_time
, 1000));
1733 static int mouse_button_state
;
1735 static void do_mouse_move(Monitor
*mon
, const QDict
*qdict
)
1738 const char *dx_str
= qdict_get_str(qdict
, "dx_str");
1739 const char *dy_str
= qdict_get_str(qdict
, "dy_str");
1740 const char *dz_str
= qdict_get_try_str(qdict
, "dz_str");
1741 dx
= strtol(dx_str
, NULL
, 0);
1742 dy
= strtol(dy_str
, NULL
, 0);
1745 dz
= strtol(dz_str
, NULL
, 0);
1746 kbd_mouse_event(dx
, dy
, dz
, mouse_button_state
);
1749 static void do_mouse_button(Monitor
*mon
, const QDict
*qdict
)
1751 int button_state
= qdict_get_int(qdict
, "button_state");
1752 mouse_button_state
= button_state
;
1753 kbd_mouse_event(0, 0, 0, mouse_button_state
);
1756 static void do_ioport_read(Monitor
*mon
, const QDict
*qdict
)
1758 int size
= qdict_get_int(qdict
, "size");
1759 int addr
= qdict_get_int(qdict
, "addr");
1760 int has_index
= qdict_haskey(qdict
, "index");
1765 int index
= qdict_get_int(qdict
, "index");
1766 cpu_outb(addr
& IOPORTS_MASK
, index
& 0xff);
1774 val
= cpu_inb(addr
);
1778 val
= cpu_inw(addr
);
1782 val
= cpu_inl(addr
);
1786 monitor_printf(mon
, "port%c[0x%04x] = %#0*x\n",
1787 suffix
, addr
, size
* 2, val
);
1790 static void do_ioport_write(Monitor
*mon
, const QDict
*qdict
)
1792 int size
= qdict_get_int(qdict
, "size");
1793 int addr
= qdict_get_int(qdict
, "addr");
1794 int val
= qdict_get_int(qdict
, "val");
1796 addr
&= IOPORTS_MASK
;
1801 cpu_outb(addr
, val
);
1804 cpu_outw(addr
, val
);
1807 cpu_outl(addr
, val
);
1812 static void do_boot_set(Monitor
*mon
, const QDict
*qdict
)
1815 const char *bootdevice
= qdict_get_str(qdict
, "bootdevice");
1817 res
= qemu_boot_set(bootdevice
);
1819 monitor_printf(mon
, "boot device list now set to %s\n", bootdevice
);
1820 } else if (res
> 0) {
1821 monitor_printf(mon
, "setting boot device list failed\n");
1823 monitor_printf(mon
, "no function defined to set boot device list for "
1824 "this architecture\n");
1829 * do_system_reset(): Issue a machine reset
1831 static int do_system_reset(Monitor
*mon
, const QDict
*qdict
,
1834 qemu_system_reset_request();
1839 * do_system_powerdown(): Issue a machine powerdown
1841 static int do_system_powerdown(Monitor
*mon
, const QDict
*qdict
,
1844 qemu_system_powerdown_request();
1848 #if defined(TARGET_I386)
1849 static void print_pte(Monitor
*mon
, target_phys_addr_t addr
,
1850 target_phys_addr_t pte
,
1851 target_phys_addr_t mask
)
1853 #ifdef TARGET_X86_64
1854 if (addr
& (1ULL << 47)) {
1858 monitor_printf(mon
, TARGET_FMT_plx
": " TARGET_FMT_plx
1859 " %c%c%c%c%c%c%c%c%c\n",
1862 pte
& PG_NX_MASK
? 'X' : '-',
1863 pte
& PG_GLOBAL_MASK
? 'G' : '-',
1864 pte
& PG_PSE_MASK
? 'P' : '-',
1865 pte
& PG_DIRTY_MASK
? 'D' : '-',
1866 pte
& PG_ACCESSED_MASK
? 'A' : '-',
1867 pte
& PG_PCD_MASK
? 'C' : '-',
1868 pte
& PG_PWT_MASK
? 'T' : '-',
1869 pte
& PG_USER_MASK
? 'U' : '-',
1870 pte
& PG_RW_MASK
? 'W' : '-');
1873 static void tlb_info_32(Monitor
*mon
, CPUState
*env
)
1876 uint32_t pgd
, pde
, pte
;
1878 pgd
= env
->cr
[3] & ~0xfff;
1879 for(l1
= 0; l1
< 1024; l1
++) {
1880 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1881 pde
= le32_to_cpu(pde
);
1882 if (pde
& PG_PRESENT_MASK
) {
1883 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1885 print_pte(mon
, (l1
<< 22), pde
, ~((1 << 21) - 1));
1887 for(l2
= 0; l2
< 1024; l2
++) {
1888 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1889 (uint8_t *)&pte
, 4);
1890 pte
= le32_to_cpu(pte
);
1891 if (pte
& PG_PRESENT_MASK
) {
1892 print_pte(mon
, (l1
<< 22) + (l2
<< 12),
1902 static void tlb_info_pae32(Monitor
*mon
, CPUState
*env
)
1905 uint64_t pdpe
, pde
, pte
;
1906 uint64_t pdp_addr
, pd_addr
, pt_addr
;
1908 pdp_addr
= env
->cr
[3] & ~0x1f;
1909 for (l1
= 0; l1
< 4; l1
++) {
1910 cpu_physical_memory_read(pdp_addr
+ l1
* 8, (uint8_t *)&pdpe
, 8);
1911 pdpe
= le64_to_cpu(pdpe
);
1912 if (pdpe
& PG_PRESENT_MASK
) {
1913 pd_addr
= pdpe
& 0x3fffffffff000ULL
;
1914 for (l2
= 0; l2
< 512; l2
++) {
1915 cpu_physical_memory_read(pd_addr
+ l2
* 8,
1916 (uint8_t *)&pde
, 8);
1917 pde
= le64_to_cpu(pde
);
1918 if (pde
& PG_PRESENT_MASK
) {
1919 if (pde
& PG_PSE_MASK
) {
1920 /* 2M pages with PAE, CR4.PSE is ignored */
1921 print_pte(mon
, (l1
<< 30 ) + (l2
<< 21), pde
,
1922 ~((target_phys_addr_t
)(1 << 20) - 1));
1924 pt_addr
= pde
& 0x3fffffffff000ULL
;
1925 for (l3
= 0; l3
< 512; l3
++) {
1926 cpu_physical_memory_read(pt_addr
+ l3
* 8,
1927 (uint8_t *)&pte
, 8);
1928 pte
= le64_to_cpu(pte
);
1929 if (pte
& PG_PRESENT_MASK
) {
1930 print_pte(mon
, (l1
<< 30 ) + (l2
<< 21)
1933 ~(target_phys_addr_t
)0xfff);
1943 #ifdef TARGET_X86_64
1944 static void tlb_info_64(Monitor
*mon
, CPUState
*env
)
1946 uint64_t l1
, l2
, l3
, l4
;
1947 uint64_t pml4e
, pdpe
, pde
, pte
;
1948 uint64_t pml4_addr
, pdp_addr
, pd_addr
, pt_addr
;
1950 pml4_addr
= env
->cr
[3] & 0x3fffffffff000ULL
;
1951 for (l1
= 0; l1
< 512; l1
++) {
1952 cpu_physical_memory_read(pml4_addr
+ l1
* 8, (uint8_t *)&pml4e
, 8);
1953 pml4e
= le64_to_cpu(pml4e
);
1954 if (pml4e
& PG_PRESENT_MASK
) {
1955 pdp_addr
= pml4e
& 0x3fffffffff000ULL
;
1956 for (l2
= 0; l2
< 512; l2
++) {
1957 cpu_physical_memory_read(pdp_addr
+ l2
* 8, (uint8_t *)&pdpe
,
1959 pdpe
= le64_to_cpu(pdpe
);
1960 if (pdpe
& PG_PRESENT_MASK
) {
1961 if (pdpe
& PG_PSE_MASK
) {
1962 /* 1G pages, CR4.PSE is ignored */
1963 print_pte(mon
, (l1
<< 39) + (l2
<< 30), pdpe
,
1964 0x3ffffc0000000ULL
);
1966 pd_addr
= pdpe
& 0x3fffffffff000ULL
;
1967 for (l3
= 0; l3
< 512; l3
++) {
1968 cpu_physical_memory_read(pd_addr
+ l3
* 8,
1969 (uint8_t *)&pde
, 8);
1970 pde
= le64_to_cpu(pde
);
1971 if (pde
& PG_PRESENT_MASK
) {
1972 if (pde
& PG_PSE_MASK
) {
1973 /* 2M pages, CR4.PSE is ignored */
1974 print_pte(mon
, (l1
<< 39) + (l2
<< 30) +
1976 0x3ffffffe00000ULL
);
1978 pt_addr
= pde
& 0x3fffffffff000ULL
;
1979 for (l4
= 0; l4
< 512; l4
++) {
1980 cpu_physical_memory_read(pt_addr
1984 pte
= le64_to_cpu(pte
);
1985 if (pte
& PG_PRESENT_MASK
) {
1986 print_pte(mon
, (l1
<< 39) +
1988 (l3
<< 21) + (l4
<< 12),
1990 0x3fffffffff000ULL
);
2004 static void tlb_info(Monitor
*mon
)
2008 env
= mon_get_cpu();
2010 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
2011 monitor_printf(mon
, "PG disabled\n");
2014 if (env
->cr
[4] & CR4_PAE_MASK
) {
2015 #ifdef TARGET_X86_64
2016 if (env
->hflags
& HF_LMA_MASK
) {
2017 tlb_info_64(mon
, env
);
2021 tlb_info_pae32(mon
, env
);
2024 tlb_info_32(mon
, env
);
2028 static void mem_print(Monitor
*mon
, target_phys_addr_t
*pstart
,
2030 target_phys_addr_t end
, int prot
)
2033 prot1
= *plast_prot
;
2034 if (prot
!= prot1
) {
2035 if (*pstart
!= -1) {
2036 monitor_printf(mon
, TARGET_FMT_plx
"-" TARGET_FMT_plx
" "
2037 TARGET_FMT_plx
" %c%c%c\n",
2038 *pstart
, end
, end
- *pstart
,
2039 prot1
& PG_USER_MASK
? 'u' : '-',
2041 prot1
& PG_RW_MASK
? 'w' : '-');
2051 static void mem_info_32(Monitor
*mon
, CPUState
*env
)
2053 int l1
, l2
, prot
, last_prot
;
2054 uint32_t pgd
, pde
, pte
;
2055 target_phys_addr_t start
, end
;
2057 pgd
= env
->cr
[3] & ~0xfff;
2060 for(l1
= 0; l1
< 1024; l1
++) {
2061 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
2062 pde
= le32_to_cpu(pde
);
2064 if (pde
& PG_PRESENT_MASK
) {
2065 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
2066 prot
= pde
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
2067 mem_print(mon
, &start
, &last_prot
, end
, prot
);
2069 for(l2
= 0; l2
< 1024; l2
++) {
2070 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
2071 (uint8_t *)&pte
, 4);
2072 pte
= le32_to_cpu(pte
);
2073 end
= (l1
<< 22) + (l2
<< 12);
2074 if (pte
& PG_PRESENT_MASK
) {
2075 prot
= pte
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
2079 mem_print(mon
, &start
, &last_prot
, end
, prot
);
2084 mem_print(mon
, &start
, &last_prot
, end
, prot
);
2089 static void mem_info_pae32(Monitor
*mon
, CPUState
*env
)
2091 int l1
, l2
, l3
, prot
, last_prot
;
2092 uint64_t pdpe
, pde
, pte
;
2093 uint64_t pdp_addr
, pd_addr
, pt_addr
;
2094 target_phys_addr_t start
, end
;
2096 pdp_addr
= env
->cr
[3] & ~0x1f;
2099 for (l1
= 0; l1
< 4; l1
++) {
2100 cpu_physical_memory_read(pdp_addr
+ l1
* 8, (uint8_t *)&pdpe
, 8);
2101 pdpe
= le64_to_cpu(pdpe
);
2103 if (pdpe
& PG_PRESENT_MASK
) {
2104 pd_addr
= pdpe
& 0x3fffffffff000ULL
;
2105 for (l2
= 0; l2
< 512; l2
++) {
2106 cpu_physical_memory_read(pd_addr
+ l2
* 8,
2107 (uint8_t *)&pde
, 8);
2108 pde
= le64_to_cpu(pde
);
2109 end
= (l1
<< 30) + (l2
<< 21);
2110 if (pde
& PG_PRESENT_MASK
) {
2111 if (pde
& PG_PSE_MASK
) {
2112 prot
= pde
& (PG_USER_MASK
| PG_RW_MASK
|
2114 mem_print(mon
, &start
, &last_prot
, end
, prot
);
2116 pt_addr
= pde
& 0x3fffffffff000ULL
;
2117 for (l3
= 0; l3
< 512; l3
++) {
2118 cpu_physical_memory_read(pt_addr
+ l3
* 8,
2119 (uint8_t *)&pte
, 8);
2120 pte
= le64_to_cpu(pte
);
2121 end
= (l1
<< 30) + (l2
<< 21) + (l3
<< 12);
2122 if (pte
& PG_PRESENT_MASK
) {
2123 prot
= pte
& (PG_USER_MASK
| PG_RW_MASK
|
2128 mem_print(mon
, &start
, &last_prot
, end
, prot
);
2133 mem_print(mon
, &start
, &last_prot
, end
, prot
);
2138 mem_print(mon
, &start
, &last_prot
, end
, prot
);
2144 #ifdef TARGET_X86_64
2145 static void mem_info_64(Monitor
*mon
, CPUState
*env
)
2147 int prot
, last_prot
;
2148 uint64_t l1
, l2
, l3
, l4
;
2149 uint64_t pml4e
, pdpe
, pde
, pte
;
2150 uint64_t pml4_addr
, pdp_addr
, pd_addr
, pt_addr
, start
, end
;
2152 pml4_addr
= env
->cr
[3] & 0x3fffffffff000ULL
;
2155 for (l1
= 0; l1
< 512; l1
++) {
2156 cpu_physical_memory_read(pml4_addr
+ l1
* 8, (uint8_t *)&pml4e
, 8);
2157 pml4e
= le64_to_cpu(pml4e
);
2159 if (pml4e
& PG_PRESENT_MASK
) {
2160 pdp_addr
= pml4e
& 0x3fffffffff000ULL
;
2161 for (l2
= 0; l2
< 512; l2
++) {
2162 cpu_physical_memory_read(pdp_addr
+ l2
* 8, (uint8_t *)&pdpe
,
2164 pdpe
= le64_to_cpu(pdpe
);
2165 end
= (l1
<< 39) + (l2
<< 30);
2166 if (pdpe
& PG_PRESENT_MASK
) {
2167 if (pdpe
& PG_PSE_MASK
) {
2168 prot
= pde
& (PG_USER_MASK
| PG_RW_MASK
|
2170 mem_print(mon
, &start
, &last_prot
, end
, prot
);
2172 pd_addr
= pdpe
& 0x3fffffffff000ULL
;
2173 for (l3
= 0; l3
< 512; l3
++) {
2174 cpu_physical_memory_read(pd_addr
+ l3
* 8,
2175 (uint8_t *)&pde
, 8);
2176 pde
= le64_to_cpu(pde
);
2177 end
= (l1
<< 39) + (l2
<< 30) + (l3
<< 21);
2178 if (pde
& PG_PRESENT_MASK
) {
2179 if (pde
& PG_PSE_MASK
) {
2180 prot
= pde
& (PG_USER_MASK
| PG_RW_MASK
|
2182 mem_print(mon
, &start
, &last_prot
, end
, prot
);
2184 pt_addr
= pde
& 0x3fffffffff000ULL
;
2185 for (l4
= 0; l4
< 512; l4
++) {
2186 cpu_physical_memory_read(pt_addr
2190 pte
= le64_to_cpu(pte
);
2191 end
= (l1
<< 39) + (l2
<< 30) +
2192 (l3
<< 21) + (l4
<< 12);
2193 if (pte
& PG_PRESENT_MASK
) {
2194 prot
= pte
& (PG_USER_MASK
| PG_RW_MASK
|
2199 mem_print(mon
, &start
, &last_prot
, end
, prot
);
2204 mem_print(mon
, &start
, &last_prot
, end
, prot
);
2210 mem_print(mon
, &start
, &last_prot
, end
, prot
);
2215 mem_print(mon
, &start
, &last_prot
, end
, prot
);
2221 static void mem_info(Monitor
*mon
)
2225 env
= mon_get_cpu();
2227 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
2228 monitor_printf(mon
, "PG disabled\n");
2231 if (env
->cr
[4] & CR4_PAE_MASK
) {
2232 #ifdef TARGET_X86_64
2233 if (env
->hflags
& HF_LMA_MASK
) {
2234 mem_info_64(mon
, env
);
2238 mem_info_pae32(mon
, env
);
2241 mem_info_32(mon
, env
);
2246 #if defined(TARGET_SH4)
2248 static void print_tlb(Monitor
*mon
, int idx
, tlb_t
*tlb
)
2250 monitor_printf(mon
, " tlb%i:\t"
2251 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
2252 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
2253 "dirty=%hhu writethrough=%hhu\n",
2255 tlb
->asid
, tlb
->vpn
, tlb
->ppn
, tlb
->sz
, tlb
->size
,
2256 tlb
->v
, tlb
->sh
, tlb
->c
, tlb
->pr
,
2260 static void tlb_info(Monitor
*mon
)
2262 CPUState
*env
= mon_get_cpu();
2265 monitor_printf (mon
, "ITLB:\n");
2266 for (i
= 0 ; i
< ITLB_SIZE
; i
++)
2267 print_tlb (mon
, i
, &env
->itlb
[i
]);
2268 monitor_printf (mon
, "UTLB:\n");
2269 for (i
= 0 ; i
< UTLB_SIZE
; i
++)
2270 print_tlb (mon
, i
, &env
->utlb
[i
]);
2275 #if defined(TARGET_SPARC)
2276 static void tlb_info(Monitor
*mon
)
2278 CPUState
*env1
= mon_get_cpu();
2280 dump_mmu((FILE*)mon
, (fprintf_function
)monitor_printf
, env1
);
2284 static void do_info_kvm_print(Monitor
*mon
, const QObject
*data
)
2288 qdict
= qobject_to_qdict(data
);
2290 monitor_printf(mon
, "kvm support: ");
2291 if (qdict_get_bool(qdict
, "present")) {
2292 monitor_printf(mon
, "%s\n", qdict_get_bool(qdict
, "enabled") ?
2293 "enabled" : "disabled");
2295 monitor_printf(mon
, "not compiled\n");
2299 static void do_info_kvm(Monitor
*mon
, QObject
**ret_data
)
2302 *ret_data
= qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
2305 *ret_data
= qobject_from_jsonf("{ 'enabled': false, 'present': false }");
2309 static void do_info_numa(Monitor
*mon
)
2314 monitor_printf(mon
, "%d nodes\n", nb_numa_nodes
);
2315 for (i
= 0; i
< nb_numa_nodes
; i
++) {
2316 monitor_printf(mon
, "node %d cpus:", i
);
2317 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
2318 if (env
->numa_node
== i
) {
2319 monitor_printf(mon
, " %d", env
->cpu_index
);
2322 monitor_printf(mon
, "\n");
2323 monitor_printf(mon
, "node %d size: %" PRId64
" MB\n", i
,
2328 #ifdef CONFIG_PROFILER
2333 static void do_info_profile(Monitor
*mon
)
2339 monitor_printf(mon
, "async time %" PRId64
" (%0.3f)\n",
2340 dev_time
, dev_time
/ (double)get_ticks_per_sec());
2341 monitor_printf(mon
, "qemu time %" PRId64
" (%0.3f)\n",
2342 qemu_time
, qemu_time
/ (double)get_ticks_per_sec());
2347 static void do_info_profile(Monitor
*mon
)
2349 monitor_printf(mon
, "Internal profiler not compiled\n");
2353 /* Capture support */
2354 static QLIST_HEAD (capture_list_head
, CaptureState
) capture_head
;
2356 static void do_info_capture(Monitor
*mon
)
2361 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
2362 monitor_printf(mon
, "[%d]: ", i
);
2363 s
->ops
.info (s
->opaque
);
2368 static void do_stop_capture(Monitor
*mon
, const QDict
*qdict
)
2371 int n
= qdict_get_int(qdict
, "n");
2374 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
2376 s
->ops
.destroy (s
->opaque
);
2377 QLIST_REMOVE (s
, entries
);
2384 static void do_wav_capture(Monitor
*mon
, const QDict
*qdict
)
2386 const char *path
= qdict_get_str(qdict
, "path");
2387 int has_freq
= qdict_haskey(qdict
, "freq");
2388 int freq
= qdict_get_try_int(qdict
, "freq", -1);
2389 int has_bits
= qdict_haskey(qdict
, "bits");
2390 int bits
= qdict_get_try_int(qdict
, "bits", -1);
2391 int has_channels
= qdict_haskey(qdict
, "nchannels");
2392 int nchannels
= qdict_get_try_int(qdict
, "nchannels", -1);
2395 s
= qemu_mallocz (sizeof (*s
));
2397 freq
= has_freq
? freq
: 44100;
2398 bits
= has_bits
? bits
: 16;
2399 nchannels
= has_channels
? nchannels
: 2;
2401 if (wav_start_capture (s
, path
, freq
, bits
, nchannels
)) {
2402 monitor_printf(mon
, "Faied to add wave capture\n");
2405 QLIST_INSERT_HEAD (&capture_head
, s
, entries
);
2409 #if defined(TARGET_I386)
2410 static void do_inject_nmi(Monitor
*mon
, const QDict
*qdict
)
2413 int cpu_index
= qdict_get_int(qdict
, "cpu_index");
2415 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
2416 if (env
->cpu_index
== cpu_index
) {
2417 cpu_interrupt(env
, CPU_INTERRUPT_NMI
);
2423 static void do_info_status_print(Monitor
*mon
, const QObject
*data
)
2427 qdict
= qobject_to_qdict(data
);
2429 monitor_printf(mon
, "VM status: ");
2430 if (qdict_get_bool(qdict
, "running")) {
2431 monitor_printf(mon
, "running");
2432 if (qdict_get_bool(qdict
, "singlestep")) {
2433 monitor_printf(mon
, " (single step mode)");
2436 monitor_printf(mon
, "paused");
2439 monitor_printf(mon
, "\n");
2442 static void do_info_status(Monitor
*mon
, QObject
**ret_data
)
2444 *ret_data
= qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2445 vm_running
, singlestep
);
2448 static qemu_acl
*find_acl(Monitor
*mon
, const char *name
)
2450 qemu_acl
*acl
= qemu_acl_find(name
);
2453 monitor_printf(mon
, "acl: unknown list '%s'\n", name
);
2458 static void do_acl_show(Monitor
*mon
, const QDict
*qdict
)
2460 const char *aclname
= qdict_get_str(qdict
, "aclname");
2461 qemu_acl
*acl
= find_acl(mon
, aclname
);
2462 qemu_acl_entry
*entry
;
2466 monitor_printf(mon
, "policy: %s\n",
2467 acl
->defaultDeny
? "deny" : "allow");
2468 QTAILQ_FOREACH(entry
, &acl
->entries
, next
) {
2470 monitor_printf(mon
, "%d: %s %s\n", i
,
2471 entry
->deny
? "deny" : "allow", entry
->match
);
2476 static void do_acl_reset(Monitor
*mon
, const QDict
*qdict
)
2478 const char *aclname
= qdict_get_str(qdict
, "aclname");
2479 qemu_acl
*acl
= find_acl(mon
, aclname
);
2482 qemu_acl_reset(acl
);
2483 monitor_printf(mon
, "acl: removed all rules\n");
2487 static void do_acl_policy(Monitor
*mon
, const QDict
*qdict
)
2489 const char *aclname
= qdict_get_str(qdict
, "aclname");
2490 const char *policy
= qdict_get_str(qdict
, "policy");
2491 qemu_acl
*acl
= find_acl(mon
, aclname
);
2494 if (strcmp(policy
, "allow") == 0) {
2495 acl
->defaultDeny
= 0;
2496 monitor_printf(mon
, "acl: policy set to 'allow'\n");
2497 } else if (strcmp(policy
, "deny") == 0) {
2498 acl
->defaultDeny
= 1;
2499 monitor_printf(mon
, "acl: policy set to 'deny'\n");
2501 monitor_printf(mon
, "acl: unknown policy '%s', "
2502 "expected 'deny' or 'allow'\n", policy
);
2507 static void do_acl_add(Monitor
*mon
, const QDict
*qdict
)
2509 const char *aclname
= qdict_get_str(qdict
, "aclname");
2510 const char *match
= qdict_get_str(qdict
, "match");
2511 const char *policy
= qdict_get_str(qdict
, "policy");
2512 int has_index
= qdict_haskey(qdict
, "index");
2513 int index
= qdict_get_try_int(qdict
, "index", -1);
2514 qemu_acl
*acl
= find_acl(mon
, aclname
);
2518 if (strcmp(policy
, "allow") == 0) {
2520 } else if (strcmp(policy
, "deny") == 0) {
2523 monitor_printf(mon
, "acl: unknown policy '%s', "
2524 "expected 'deny' or 'allow'\n", policy
);
2528 ret
= qemu_acl_insert(acl
, deny
, match
, index
);
2530 ret
= qemu_acl_append(acl
, deny
, match
);
2532 monitor_printf(mon
, "acl: unable to add acl entry\n");
2534 monitor_printf(mon
, "acl: added rule at position %d\n", ret
);
2538 static void do_acl_remove(Monitor
*mon
, const QDict
*qdict
)
2540 const char *aclname
= qdict_get_str(qdict
, "aclname");
2541 const char *match
= qdict_get_str(qdict
, "match");
2542 qemu_acl
*acl
= find_acl(mon
, aclname
);
2546 ret
= qemu_acl_remove(acl
, match
);
2548 monitor_printf(mon
, "acl: no matching acl entry\n");
2550 monitor_printf(mon
, "acl: removed rule at position %d\n", ret
);
2554 #if defined(TARGET_I386)
2555 static void do_inject_mce(Monitor
*mon
, const QDict
*qdict
)
2558 int cpu_index
= qdict_get_int(qdict
, "cpu_index");
2559 int bank
= qdict_get_int(qdict
, "bank");
2560 uint64_t status
= qdict_get_int(qdict
, "status");
2561 uint64_t mcg_status
= qdict_get_int(qdict
, "mcg_status");
2562 uint64_t addr
= qdict_get_int(qdict
, "addr");
2563 uint64_t misc
= qdict_get_int(qdict
, "misc");
2565 for (cenv
= first_cpu
; cenv
!= NULL
; cenv
= cenv
->next_cpu
)
2566 if (cenv
->cpu_index
== cpu_index
&& cenv
->mcg_cap
) {
2567 cpu_inject_x86_mce(cenv
, bank
, status
, mcg_status
, addr
, misc
);
2573 static int do_getfd(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
2575 const char *fdname
= qdict_get_str(qdict
, "fdname");
2579 fd
= qemu_chr_get_msgfd(mon
->chr
);
2581 qerror_report(QERR_FD_NOT_SUPPLIED
);
2585 if (qemu_isdigit(fdname
[0])) {
2586 qerror_report(QERR_INVALID_PARAMETER_VALUE
, "fdname",
2587 "a name not starting with a digit");
2591 QLIST_FOREACH(monfd
, &mon
->fds
, next
) {
2592 if (strcmp(monfd
->name
, fdname
) != 0) {
2601 monfd
= qemu_mallocz(sizeof(mon_fd_t
));
2602 monfd
->name
= qemu_strdup(fdname
);
2605 QLIST_INSERT_HEAD(&mon
->fds
, monfd
, next
);
2609 static int do_closefd(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
2611 const char *fdname
= qdict_get_str(qdict
, "fdname");
2614 QLIST_FOREACH(monfd
, &mon
->fds
, next
) {
2615 if (strcmp(monfd
->name
, fdname
) != 0) {
2619 QLIST_REMOVE(monfd
, next
);
2621 qemu_free(monfd
->name
);
2626 qerror_report(QERR_FD_NOT_FOUND
, fdname
);
2630 static void do_loadvm(Monitor
*mon
, const QDict
*qdict
)
2632 int saved_vm_running
= vm_running
;
2633 const char *name
= qdict_get_str(qdict
, "name");
2637 if (load_vmstate(name
) == 0 && saved_vm_running
) {
2642 int monitor_get_fd(Monitor
*mon
, const char *fdname
)
2646 QLIST_FOREACH(monfd
, &mon
->fds
, next
) {
2649 if (strcmp(monfd
->name
, fdname
) != 0) {
2655 /* caller takes ownership of fd */
2656 QLIST_REMOVE(monfd
, next
);
2657 qemu_free(monfd
->name
);
2666 static const mon_cmd_t mon_cmds
[] = {
2667 #include "hmp-commands.h"
2671 /* Please update hmp-commands.hx when adding or changing commands */
2672 static const mon_cmd_t info_cmds
[] = {
2677 .help
= "show the version of QEMU",
2678 .user_print
= do_info_version_print
,
2679 .mhandler
.info_new
= do_info_version
,
2685 .help
= "show the network state",
2686 .mhandler
.info
= do_info_network
,
2692 .help
= "show the character devices",
2693 .user_print
= qemu_chr_info_print
,
2694 .mhandler
.info_new
= qemu_chr_info
,
2700 .help
= "show the block devices",
2701 .user_print
= bdrv_info_print
,
2702 .mhandler
.info_new
= bdrv_info
,
2705 .name
= "blockstats",
2708 .help
= "show block device statistics",
2709 .user_print
= bdrv_stats_print
,
2710 .mhandler
.info_new
= bdrv_info_stats
,
2713 .name
= "registers",
2716 .help
= "show the cpu registers",
2717 .mhandler
.info
= do_info_registers
,
2723 .help
= "show infos for each CPU",
2724 .user_print
= monitor_print_cpus
,
2725 .mhandler
.info_new
= do_info_cpus
,
2731 .help
= "show the command line history",
2732 .mhandler
.info
= do_info_history
,
2738 .help
= "show the interrupts statistics (if available)",
2739 .mhandler
.info
= irq_info
,
2745 .help
= "show i8259 (PIC) state",
2746 .mhandler
.info
= pic_info
,
2752 .help
= "show PCI info",
2753 .user_print
= do_pci_info_print
,
2754 .mhandler
.info_new
= do_pci_info
,
2756 #if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC)
2761 .help
= "show virtual to physical memory mappings",
2762 .mhandler
.info
= tlb_info
,
2765 #if defined(TARGET_I386)
2770 .help
= "show the active virtual memory mappings",
2771 .mhandler
.info
= mem_info
,
2778 .help
= "show dynamic compiler info",
2779 .mhandler
.info
= do_info_jit
,
2785 .help
= "show KVM information",
2786 .user_print
= do_info_kvm_print
,
2787 .mhandler
.info_new
= do_info_kvm
,
2793 .help
= "show NUMA information",
2794 .mhandler
.info
= do_info_numa
,
2800 .help
= "show guest USB devices",
2801 .mhandler
.info
= usb_info
,
2807 .help
= "show host USB devices",
2808 .mhandler
.info
= usb_host_info
,
2814 .help
= "show profiling information",
2815 .mhandler
.info
= do_info_profile
,
2821 .help
= "show capture information",
2822 .mhandler
.info
= do_info_capture
,
2825 .name
= "snapshots",
2828 .help
= "show the currently saved VM snapshots",
2829 .mhandler
.info
= do_info_snapshots
,
2835 .help
= "show the current VM status (running|paused)",
2836 .user_print
= do_info_status_print
,
2837 .mhandler
.info_new
= do_info_status
,
2843 .help
= "show guest PCMCIA status",
2844 .mhandler
.info
= pcmcia_info
,
2850 .help
= "show which guest mouse is receiving events",
2851 .user_print
= do_info_mice_print
,
2852 .mhandler
.info_new
= do_info_mice
,
2858 .help
= "show the vnc server status",
2859 .user_print
= do_info_vnc_print
,
2860 .mhandler
.info_new
= do_info_vnc
,
2866 .help
= "show the current VM name",
2867 .user_print
= do_info_name_print
,
2868 .mhandler
.info_new
= do_info_name
,
2874 .help
= "show the current VM UUID",
2875 .user_print
= do_info_uuid_print
,
2876 .mhandler
.info_new
= do_info_uuid
,
2878 #if defined(TARGET_PPC)
2883 .help
= "show CPU statistics",
2884 .mhandler
.info
= do_info_cpu_stats
,
2887 #if defined(CONFIG_SLIRP)
2892 .help
= "show user network stack connection states",
2893 .mhandler
.info
= do_info_usernet
,
2900 .help
= "show migration status",
2901 .user_print
= do_info_migrate_print
,
2902 .mhandler
.info_new
= do_info_migrate
,
2908 .help
= "show balloon information",
2909 .user_print
= monitor_print_balloon
,
2910 .mhandler
.info_async
= do_info_balloon
,
2911 .flags
= MONITOR_CMD_ASYNC
,
2917 .help
= "show device tree",
2918 .mhandler
.info
= do_info_qtree
,
2924 .help
= "show qdev device model list",
2925 .mhandler
.info
= do_info_qdm
,
2931 .help
= "show roms",
2932 .mhandler
.info
= do_info_roms
,
2934 #if defined(CONFIG_SIMPLE_TRACE)
2939 .help
= "show current contents of trace buffer",
2940 .mhandler
.info
= do_info_trace
,
2943 .name
= "trace-events",
2946 .help
= "show available trace-events & their state",
2947 .mhandler
.info
= do_info_trace_events
,
2955 static const mon_cmd_t qmp_cmds
[] = {
2956 #include "qmp-commands.h"
2960 static const mon_cmd_t qmp_query_cmds
[] = {
2965 .help
= "show the version of QEMU",
2966 .user_print
= do_info_version_print
,
2967 .mhandler
.info_new
= do_info_version
,
2973 .help
= "list QMP available commands",
2974 .user_print
= monitor_user_noop
,
2975 .mhandler
.info_new
= do_info_commands
,
2981 .help
= "show the character devices",
2982 .user_print
= qemu_chr_info_print
,
2983 .mhandler
.info_new
= qemu_chr_info
,
2989 .help
= "show the block devices",
2990 .user_print
= bdrv_info_print
,
2991 .mhandler
.info_new
= bdrv_info
,
2994 .name
= "blockstats",
2997 .help
= "show block device statistics",
2998 .user_print
= bdrv_stats_print
,
2999 .mhandler
.info_new
= bdrv_info_stats
,
3005 .help
= "show infos for each CPU",
3006 .user_print
= monitor_print_cpus
,
3007 .mhandler
.info_new
= do_info_cpus
,
3013 .help
= "show PCI info",
3014 .user_print
= do_pci_info_print
,
3015 .mhandler
.info_new
= do_pci_info
,
3021 .help
= "show KVM information",
3022 .user_print
= do_info_kvm_print
,
3023 .mhandler
.info_new
= do_info_kvm
,
3029 .help
= "show the current VM status (running|paused)",
3030 .user_print
= do_info_status_print
,
3031 .mhandler
.info_new
= do_info_status
,
3037 .help
= "show which guest mouse is receiving events",
3038 .user_print
= do_info_mice_print
,
3039 .mhandler
.info_new
= do_info_mice
,
3045 .help
= "show the vnc server status",
3046 .user_print
= do_info_vnc_print
,
3047 .mhandler
.info_new
= do_info_vnc
,
3053 .help
= "show the current VM name",
3054 .user_print
= do_info_name_print
,
3055 .mhandler
.info_new
= do_info_name
,
3061 .help
= "show the current VM UUID",
3062 .user_print
= do_info_uuid_print
,
3063 .mhandler
.info_new
= do_info_uuid
,
3069 .help
= "show migration status",
3070 .user_print
= do_info_migrate_print
,
3071 .mhandler
.info_new
= do_info_migrate
,
3077 .help
= "show balloon information",
3078 .user_print
= monitor_print_balloon
,
3079 .mhandler
.info_async
= do_info_balloon
,
3080 .flags
= MONITOR_CMD_ASYNC
,
3085 /*******************************************************************/
3087 static const char *pch
;
3088 static jmp_buf expr_env
;
3093 typedef struct MonitorDef
{
3096 target_long (*get_value
)(const struct MonitorDef
*md
, int val
);
3100 #if defined(TARGET_I386)
3101 static target_long
monitor_get_pc (const struct MonitorDef
*md
, int val
)
3103 CPUState
*env
= mon_get_cpu();
3104 return env
->eip
+ env
->segs
[R_CS
].base
;
3108 #if defined(TARGET_PPC)
3109 static target_long
monitor_get_ccr (const struct MonitorDef
*md
, int val
)
3111 CPUState
*env
= mon_get_cpu();
3116 for (i
= 0; i
< 8; i
++)
3117 u
|= env
->crf
[i
] << (32 - (4 * i
));
3122 static target_long
monitor_get_msr (const struct MonitorDef
*md
, int val
)
3124 CPUState
*env
= mon_get_cpu();
3128 static target_long
monitor_get_xer (const struct MonitorDef
*md
, int val
)
3130 CPUState
*env
= mon_get_cpu();
3134 static target_long
monitor_get_decr (const struct MonitorDef
*md
, int val
)
3136 CPUState
*env
= mon_get_cpu();
3137 return cpu_ppc_load_decr(env
);
3140 static target_long
monitor_get_tbu (const struct MonitorDef
*md
, int val
)
3142 CPUState
*env
= mon_get_cpu();
3143 return cpu_ppc_load_tbu(env
);
3146 static target_long
monitor_get_tbl (const struct MonitorDef
*md
, int val
)
3148 CPUState
*env
= mon_get_cpu();
3149 return cpu_ppc_load_tbl(env
);
3153 #if defined(TARGET_SPARC)
3154 #ifndef TARGET_SPARC64
3155 static target_long
monitor_get_psr (const struct MonitorDef
*md
, int val
)
3157 CPUState
*env
= mon_get_cpu();
3159 return cpu_get_psr(env
);
3163 static target_long
monitor_get_reg(const struct MonitorDef
*md
, int val
)
3165 CPUState
*env
= mon_get_cpu();
3166 return env
->regwptr
[val
];
3170 static const MonitorDef monitor_defs
[] = {
3173 #define SEG(name, seg) \
3174 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
3175 { name ".base", offsetof(CPUState, segs[seg].base) },\
3176 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
3178 { "eax", offsetof(CPUState
, regs
[0]) },
3179 { "ecx", offsetof(CPUState
, regs
[1]) },
3180 { "edx", offsetof(CPUState
, regs
[2]) },
3181 { "ebx", offsetof(CPUState
, regs
[3]) },
3182 { "esp|sp", offsetof(CPUState
, regs
[4]) },
3183 { "ebp|fp", offsetof(CPUState
, regs
[5]) },
3184 { "esi", offsetof(CPUState
, regs
[6]) },
3185 { "edi", offsetof(CPUState
, regs
[7]) },
3186 #ifdef TARGET_X86_64
3187 { "r8", offsetof(CPUState
, regs
[8]) },
3188 { "r9", offsetof(CPUState
, regs
[9]) },
3189 { "r10", offsetof(CPUState
, regs
[10]) },
3190 { "r11", offsetof(CPUState
, regs
[11]) },
3191 { "r12", offsetof(CPUState
, regs
[12]) },
3192 { "r13", offsetof(CPUState
, regs
[13]) },
3193 { "r14", offsetof(CPUState
, regs
[14]) },
3194 { "r15", offsetof(CPUState
, regs
[15]) },
3196 { "eflags", offsetof(CPUState
, eflags
) },
3197 { "eip", offsetof(CPUState
, eip
) },
3204 { "pc", 0, monitor_get_pc
, },
3205 #elif defined(TARGET_PPC)
3206 /* General purpose registers */
3207 { "r0", offsetof(CPUState
, gpr
[0]) },
3208 { "r1", offsetof(CPUState
, gpr
[1]) },
3209 { "r2", offsetof(CPUState
, gpr
[2]) },
3210 { "r3", offsetof(CPUState
, gpr
[3]) },
3211 { "r4", offsetof(CPUState
, gpr
[4]) },
3212 { "r5", offsetof(CPUState
, gpr
[5]) },
3213 { "r6", offsetof(CPUState
, gpr
[6]) },
3214 { "r7", offsetof(CPUState
, gpr
[7]) },
3215 { "r8", offsetof(CPUState
, gpr
[8]) },
3216 { "r9", offsetof(CPUState
, gpr
[9]) },
3217 { "r10", offsetof(CPUState
, gpr
[10]) },
3218 { "r11", offsetof(CPUState
, gpr
[11]) },
3219 { "r12", offsetof(CPUState
, gpr
[12]) },
3220 { "r13", offsetof(CPUState
, gpr
[13]) },
3221 { "r14", offsetof(CPUState
, gpr
[14]) },
3222 { "r15", offsetof(CPUState
, gpr
[15]) },
3223 { "r16", offsetof(CPUState
, gpr
[16]) },
3224 { "r17", offsetof(CPUState
, gpr
[17]) },
3225 { "r18", offsetof(CPUState
, gpr
[18]) },
3226 { "r19", offsetof(CPUState
, gpr
[19]) },
3227 { "r20", offsetof(CPUState
, gpr
[20]) },
3228 { "r21", offsetof(CPUState
, gpr
[21]) },
3229 { "r22", offsetof(CPUState
, gpr
[22]) },
3230 { "r23", offsetof(CPUState
, gpr
[23]) },
3231 { "r24", offsetof(CPUState
, gpr
[24]) },
3232 { "r25", offsetof(CPUState
, gpr
[25]) },
3233 { "r26", offsetof(CPUState
, gpr
[26]) },
3234 { "r27", offsetof(CPUState
, gpr
[27]) },
3235 { "r28", offsetof(CPUState
, gpr
[28]) },
3236 { "r29", offsetof(CPUState
, gpr
[29]) },
3237 { "r30", offsetof(CPUState
, gpr
[30]) },
3238 { "r31", offsetof(CPUState
, gpr
[31]) },
3239 /* Floating point registers */
3240 { "f0", offsetof(CPUState
, fpr
[0]) },
3241 { "f1", offsetof(CPUState
, fpr
[1]) },
3242 { "f2", offsetof(CPUState
, fpr
[2]) },
3243 { "f3", offsetof(CPUState
, fpr
[3]) },
3244 { "f4", offsetof(CPUState
, fpr
[4]) },
3245 { "f5", offsetof(CPUState
, fpr
[5]) },
3246 { "f6", offsetof(CPUState
, fpr
[6]) },
3247 { "f7", offsetof(CPUState
, fpr
[7]) },
3248 { "f8", offsetof(CPUState
, fpr
[8]) },
3249 { "f9", offsetof(CPUState
, fpr
[9]) },
3250 { "f10", offsetof(CPUState
, fpr
[10]) },
3251 { "f11", offsetof(CPUState
, fpr
[11]) },
3252 { "f12", offsetof(CPUState
, fpr
[12]) },
3253 { "f13", offsetof(CPUState
, fpr
[13]) },
3254 { "f14", offsetof(CPUState
, fpr
[14]) },
3255 { "f15", offsetof(CPUState
, fpr
[15]) },
3256 { "f16", offsetof(CPUState
, fpr
[16]) },
3257 { "f17", offsetof(CPUState
, fpr
[17]) },
3258 { "f18", offsetof(CPUState
, fpr
[18]) },
3259 { "f19", offsetof(CPUState
, fpr
[19]) },
3260 { "f20", offsetof(CPUState
, fpr
[20]) },
3261 { "f21", offsetof(CPUState
, fpr
[21]) },
3262 { "f22", offsetof(CPUState
, fpr
[22]) },
3263 { "f23", offsetof(CPUState
, fpr
[23]) },
3264 { "f24", offsetof(CPUState
, fpr
[24]) },
3265 { "f25", offsetof(CPUState
, fpr
[25]) },
3266 { "f26", offsetof(CPUState
, fpr
[26]) },
3267 { "f27", offsetof(CPUState
, fpr
[27]) },
3268 { "f28", offsetof(CPUState
, fpr
[28]) },
3269 { "f29", offsetof(CPUState
, fpr
[29]) },
3270 { "f30", offsetof(CPUState
, fpr
[30]) },
3271 { "f31", offsetof(CPUState
, fpr
[31]) },
3272 { "fpscr", offsetof(CPUState
, fpscr
) },
3273 /* Next instruction pointer */
3274 { "nip|pc", offsetof(CPUState
, nip
) },
3275 { "lr", offsetof(CPUState
, lr
) },
3276 { "ctr", offsetof(CPUState
, ctr
) },
3277 { "decr", 0, &monitor_get_decr
, },
3278 { "ccr", 0, &monitor_get_ccr
, },
3279 /* Machine state register */
3280 { "msr", 0, &monitor_get_msr
, },
3281 { "xer", 0, &monitor_get_xer
, },
3282 { "tbu", 0, &monitor_get_tbu
, },
3283 { "tbl", 0, &monitor_get_tbl
, },
3284 #if defined(TARGET_PPC64)
3285 /* Address space register */
3286 { "asr", offsetof(CPUState
, asr
) },
3288 /* Segment registers */
3289 { "sdr1", offsetof(CPUState
, sdr1
) },
3290 { "sr0", offsetof(CPUState
, sr
[0]) },
3291 { "sr1", offsetof(CPUState
, sr
[1]) },
3292 { "sr2", offsetof(CPUState
, sr
[2]) },
3293 { "sr3", offsetof(CPUState
, sr
[3]) },
3294 { "sr4", offsetof(CPUState
, sr
[4]) },
3295 { "sr5", offsetof(CPUState
, sr
[5]) },
3296 { "sr6", offsetof(CPUState
, sr
[6]) },
3297 { "sr7", offsetof(CPUState
, sr
[7]) },
3298 { "sr8", offsetof(CPUState
, sr
[8]) },
3299 { "sr9", offsetof(CPUState
, sr
[9]) },
3300 { "sr10", offsetof(CPUState
, sr
[10]) },
3301 { "sr11", offsetof(CPUState
, sr
[11]) },
3302 { "sr12", offsetof(CPUState
, sr
[12]) },
3303 { "sr13", offsetof(CPUState
, sr
[13]) },
3304 { "sr14", offsetof(CPUState
, sr
[14]) },
3305 { "sr15", offsetof(CPUState
, sr
[15]) },
3306 /* Too lazy to put BATs and SPRs ... */
3307 #elif defined(TARGET_SPARC)
3308 { "g0", offsetof(CPUState
, gregs
[0]) },
3309 { "g1", offsetof(CPUState
, gregs
[1]) },
3310 { "g2", offsetof(CPUState
, gregs
[2]) },
3311 { "g3", offsetof(CPUState
, gregs
[3]) },
3312 { "g4", offsetof(CPUState
, gregs
[4]) },
3313 { "g5", offsetof(CPUState
, gregs
[5]) },
3314 { "g6", offsetof(CPUState
, gregs
[6]) },
3315 { "g7", offsetof(CPUState
, gregs
[7]) },
3316 { "o0", 0, monitor_get_reg
},
3317 { "o1", 1, monitor_get_reg
},
3318 { "o2", 2, monitor_get_reg
},
3319 { "o3", 3, monitor_get_reg
},
3320 { "o4", 4, monitor_get_reg
},
3321 { "o5", 5, monitor_get_reg
},
3322 { "o6", 6, monitor_get_reg
},
3323 { "o7", 7, monitor_get_reg
},
3324 { "l0", 8, monitor_get_reg
},
3325 { "l1", 9, monitor_get_reg
},
3326 { "l2", 10, monitor_get_reg
},
3327 { "l3", 11, monitor_get_reg
},
3328 { "l4", 12, monitor_get_reg
},
3329 { "l5", 13, monitor_get_reg
},
3330 { "l6", 14, monitor_get_reg
},
3331 { "l7", 15, monitor_get_reg
},
3332 { "i0", 16, monitor_get_reg
},
3333 { "i1", 17, monitor_get_reg
},
3334 { "i2", 18, monitor_get_reg
},
3335 { "i3", 19, monitor_get_reg
},
3336 { "i4", 20, monitor_get_reg
},
3337 { "i5", 21, monitor_get_reg
},
3338 { "i6", 22, monitor_get_reg
},
3339 { "i7", 23, monitor_get_reg
},
3340 { "pc", offsetof(CPUState
, pc
) },
3341 { "npc", offsetof(CPUState
, npc
) },
3342 { "y", offsetof(CPUState
, y
) },
3343 #ifndef TARGET_SPARC64
3344 { "psr", 0, &monitor_get_psr
, },
3345 { "wim", offsetof(CPUState
, wim
) },
3347 { "tbr", offsetof(CPUState
, tbr
) },
3348 { "fsr", offsetof(CPUState
, fsr
) },
3349 { "f0", offsetof(CPUState
, fpr
[0]) },
3350 { "f1", offsetof(CPUState
, fpr
[1]) },
3351 { "f2", offsetof(CPUState
, fpr
[2]) },
3352 { "f3", offsetof(CPUState
, fpr
[3]) },
3353 { "f4", offsetof(CPUState
, fpr
[4]) },
3354 { "f5", offsetof(CPUState
, fpr
[5]) },
3355 { "f6", offsetof(CPUState
, fpr
[6]) },
3356 { "f7", offsetof(CPUState
, fpr
[7]) },
3357 { "f8", offsetof(CPUState
, fpr
[8]) },
3358 { "f9", offsetof(CPUState
, fpr
[9]) },
3359 { "f10", offsetof(CPUState
, fpr
[10]) },
3360 { "f11", offsetof(CPUState
, fpr
[11]) },
3361 { "f12", offsetof(CPUState
, fpr
[12]) },
3362 { "f13", offsetof(CPUState
, fpr
[13]) },
3363 { "f14", offsetof(CPUState
, fpr
[14]) },
3364 { "f15", offsetof(CPUState
, fpr
[15]) },
3365 { "f16", offsetof(CPUState
, fpr
[16]) },
3366 { "f17", offsetof(CPUState
, fpr
[17]) },
3367 { "f18", offsetof(CPUState
, fpr
[18]) },
3368 { "f19", offsetof(CPUState
, fpr
[19]) },
3369 { "f20", offsetof(CPUState
, fpr
[20]) },
3370 { "f21", offsetof(CPUState
, fpr
[21]) },
3371 { "f22", offsetof(CPUState
, fpr
[22]) },
3372 { "f23", offsetof(CPUState
, fpr
[23]) },
3373 { "f24", offsetof(CPUState
, fpr
[24]) },
3374 { "f25", offsetof(CPUState
, fpr
[25]) },
3375 { "f26", offsetof(CPUState
, fpr
[26]) },
3376 { "f27", offsetof(CPUState
, fpr
[27]) },
3377 { "f28", offsetof(CPUState
, fpr
[28]) },
3378 { "f29", offsetof(CPUState
, fpr
[29]) },
3379 { "f30", offsetof(CPUState
, fpr
[30]) },
3380 { "f31", offsetof(CPUState
, fpr
[31]) },
3381 #ifdef TARGET_SPARC64
3382 { "f32", offsetof(CPUState
, fpr
[32]) },
3383 { "f34", offsetof(CPUState
, fpr
[34]) },
3384 { "f36", offsetof(CPUState
, fpr
[36]) },
3385 { "f38", offsetof(CPUState
, fpr
[38]) },
3386 { "f40", offsetof(CPUState
, fpr
[40]) },
3387 { "f42", offsetof(CPUState
, fpr
[42]) },
3388 { "f44", offsetof(CPUState
, fpr
[44]) },
3389 { "f46", offsetof(CPUState
, fpr
[46]) },
3390 { "f48", offsetof(CPUState
, fpr
[48]) },
3391 { "f50", offsetof(CPUState
, fpr
[50]) },
3392 { "f52", offsetof(CPUState
, fpr
[52]) },
3393 { "f54", offsetof(CPUState
, fpr
[54]) },
3394 { "f56", offsetof(CPUState
, fpr
[56]) },
3395 { "f58", offsetof(CPUState
, fpr
[58]) },
3396 { "f60", offsetof(CPUState
, fpr
[60]) },
3397 { "f62", offsetof(CPUState
, fpr
[62]) },
3398 { "asi", offsetof(CPUState
, asi
) },
3399 { "pstate", offsetof(CPUState
, pstate
) },
3400 { "cansave", offsetof(CPUState
, cansave
) },
3401 { "canrestore", offsetof(CPUState
, canrestore
) },
3402 { "otherwin", offsetof(CPUState
, otherwin
) },
3403 { "wstate", offsetof(CPUState
, wstate
) },
3404 { "cleanwin", offsetof(CPUState
, cleanwin
) },
3405 { "fprs", offsetof(CPUState
, fprs
) },
3411 static void expr_error(Monitor
*mon
, const char *msg
)
3413 monitor_printf(mon
, "%s\n", msg
);
3414 longjmp(expr_env
, 1);
3417 /* return 0 if OK, -1 if not found */
3418 static int get_monitor_def(target_long
*pval
, const char *name
)
3420 const MonitorDef
*md
;
3423 for(md
= monitor_defs
; md
->name
!= NULL
; md
++) {
3424 if (compare_cmd(name
, md
->name
)) {
3425 if (md
->get_value
) {
3426 *pval
= md
->get_value(md
, md
->offset
);
3428 CPUState
*env
= mon_get_cpu();
3429 ptr
= (uint8_t *)env
+ md
->offset
;
3432 *pval
= *(int32_t *)ptr
;
3435 *pval
= *(target_long
*)ptr
;
3448 static void next(void)
3452 while (qemu_isspace(*pch
))
3457 static int64_t expr_sum(Monitor
*mon
);
3459 static int64_t expr_unary(Monitor
*mon
)
3468 n
= expr_unary(mon
);
3472 n
= -expr_unary(mon
);
3476 n
= ~expr_unary(mon
);
3482 expr_error(mon
, "')' expected");
3489 expr_error(mon
, "character constant expected");
3493 expr_error(mon
, "missing terminating \' character");
3503 while ((*pch
>= 'a' && *pch
<= 'z') ||
3504 (*pch
>= 'A' && *pch
<= 'Z') ||
3505 (*pch
>= '0' && *pch
<= '9') ||
3506 *pch
== '_' || *pch
== '.') {
3507 if ((q
- buf
) < sizeof(buf
) - 1)
3511 while (qemu_isspace(*pch
))
3514 ret
= get_monitor_def(®
, buf
);
3516 expr_error(mon
, "unknown register");
3521 expr_error(mon
, "unexpected end of expression");
3525 #if TARGET_PHYS_ADDR_BITS > 32
3526 n
= strtoull(pch
, &p
, 0);
3528 n
= strtoul(pch
, &p
, 0);
3531 expr_error(mon
, "invalid char in expression");
3534 while (qemu_isspace(*pch
))
3542 static int64_t expr_prod(Monitor
*mon
)
3547 val
= expr_unary(mon
);
3550 if (op
!= '*' && op
!= '/' && op
!= '%')
3553 val2
= expr_unary(mon
);
3562 expr_error(mon
, "division by zero");
3573 static int64_t expr_logic(Monitor
*mon
)
3578 val
= expr_prod(mon
);
3581 if (op
!= '&' && op
!= '|' && op
!= '^')
3584 val2
= expr_prod(mon
);
3601 static int64_t expr_sum(Monitor
*mon
)
3606 val
= expr_logic(mon
);
3609 if (op
!= '+' && op
!= '-')
3612 val2
= expr_logic(mon
);
3621 static int get_expr(Monitor
*mon
, int64_t *pval
, const char **pp
)
3624 if (setjmp(expr_env
)) {
3628 while (qemu_isspace(*pch
))
3630 *pval
= expr_sum(mon
);
3635 static int get_double(Monitor
*mon
, double *pval
, const char **pp
)
3637 const char *p
= *pp
;
3641 d
= strtod(p
, &tailp
);
3643 monitor_printf(mon
, "Number expected\n");
3646 if (d
!= d
|| d
- d
!= 0) {
3647 /* NaN or infinity */
3648 monitor_printf(mon
, "Bad number\n");
3656 static int get_str(char *buf
, int buf_size
, const char **pp
)
3664 while (qemu_isspace(*p
))
3674 while (*p
!= '\0' && *p
!= '\"') {
3690 qemu_printf("unsupported escape code: '\\%c'\n", c
);
3693 if ((q
- buf
) < buf_size
- 1) {
3697 if ((q
- buf
) < buf_size
- 1) {
3704 qemu_printf("unterminated string\n");
3709 while (*p
!= '\0' && !qemu_isspace(*p
)) {
3710 if ((q
- buf
) < buf_size
- 1) {
3722 * Store the command-name in cmdname, and return a pointer to
3723 * the remaining of the command string.
3725 static const char *get_command_name(const char *cmdline
,
3726 char *cmdname
, size_t nlen
)
3729 const char *p
, *pstart
;
3732 while (qemu_isspace(*p
))
3737 while (*p
!= '\0' && *p
!= '/' && !qemu_isspace(*p
))
3742 memcpy(cmdname
, pstart
, len
);
3743 cmdname
[len
] = '\0';
3748 * Read key of 'type' into 'key' and return the current
3751 static char *key_get_info(const char *type
, char **key
)
3759 p
= strchr(type
, ':');
3766 str
= qemu_malloc(len
+ 1);
3767 memcpy(str
, type
, len
);
3774 static int default_fmt_format
= 'x';
3775 static int default_fmt_size
= 4;
3779 static int is_valid_option(const char *c
, const char *typestr
)
3787 typestr
= strstr(typestr
, option
);
3788 return (typestr
!= NULL
);
3791 static const mon_cmd_t
*search_dispatch_table(const mon_cmd_t
*disp_table
,
3792 const char *cmdname
)
3794 const mon_cmd_t
*cmd
;
3796 for (cmd
= disp_table
; cmd
->name
!= NULL
; cmd
++) {
3797 if (compare_cmd(cmdname
, cmd
->name
)) {
3805 static const mon_cmd_t
*monitor_find_command(const char *cmdname
)
3807 return search_dispatch_table(mon_cmds
, cmdname
);
3810 static const mon_cmd_t
*qmp_find_query_cmd(const char *info_item
)
3812 return search_dispatch_table(qmp_query_cmds
, info_item
);
3815 static const mon_cmd_t
*qmp_find_cmd(const char *cmdname
)
3817 return search_dispatch_table(qmp_cmds
, cmdname
);
3820 static const mon_cmd_t
*monitor_parse_command(Monitor
*mon
,
3821 const char *cmdline
,
3824 const char *p
, *typestr
;
3826 const mon_cmd_t
*cmd
;
3832 monitor_printf(mon
, "command='%s'\n", cmdline
);
3835 /* extract the command name */
3836 p
= get_command_name(cmdline
, cmdname
, sizeof(cmdname
));
3840 cmd
= monitor_find_command(cmdname
);
3842 monitor_printf(mon
, "unknown command: '%s'\n", cmdname
);
3846 /* parse the parameters */
3847 typestr
= cmd
->args_type
;
3849 typestr
= key_get_info(typestr
, &key
);
3861 while (qemu_isspace(*p
))
3863 if (*typestr
== '?') {
3866 /* no optional string: NULL argument */
3870 ret
= get_str(buf
, sizeof(buf
), &p
);
3874 monitor_printf(mon
, "%s: filename expected\n",
3878 monitor_printf(mon
, "%s: block device name expected\n",
3882 monitor_printf(mon
, "%s: string expected\n", cmdname
);
3887 qdict_put(qdict
, key
, qstring_from_str(buf
));
3892 QemuOptsList
*opts_list
;
3895 opts_list
= qemu_find_opts(key
);
3896 if (!opts_list
|| opts_list
->desc
->name
) {
3899 while (qemu_isspace(*p
)) {
3904 if (get_str(buf
, sizeof(buf
), &p
) < 0) {
3907 opts
= qemu_opts_parse(opts_list
, buf
, 1);
3911 qemu_opts_to_qdict(opts
, qdict
);
3912 qemu_opts_del(opts
);
3917 int count
, format
, size
;
3919 while (qemu_isspace(*p
))
3925 if (qemu_isdigit(*p
)) {
3927 while (qemu_isdigit(*p
)) {
3928 count
= count
* 10 + (*p
- '0');
3966 if (*p
!= '\0' && !qemu_isspace(*p
)) {
3967 monitor_printf(mon
, "invalid char in format: '%c'\n",
3972 format
= default_fmt_format
;
3973 if (format
!= 'i') {
3974 /* for 'i', not specifying a size gives -1 as size */
3976 size
= default_fmt_size
;
3977 default_fmt_size
= size
;
3979 default_fmt_format
= format
;
3982 format
= default_fmt_format
;
3983 if (format
!= 'i') {
3984 size
= default_fmt_size
;
3989 qdict_put(qdict
, "count", qint_from_int(count
));
3990 qdict_put(qdict
, "format", qint_from_int(format
));
3991 qdict_put(qdict
, "size", qint_from_int(size
));
4000 while (qemu_isspace(*p
))
4002 if (*typestr
== '?' || *typestr
== '.') {
4003 if (*typestr
== '?') {
4011 while (qemu_isspace(*p
))
4020 if (get_expr(mon
, &val
, &p
))
4022 /* Check if 'i' is greater than 32-bit */
4023 if ((c
== 'i') && ((val
>> 32) & 0xffffffff)) {
4024 monitor_printf(mon
, "\'%s\' has failed: ", cmdname
);
4025 monitor_printf(mon
, "integer is for 32-bit values\n");
4027 } else if (c
== 'M') {
4030 qdict_put(qdict
, key
, qint_from_int(val
));
4038 while (qemu_isspace(*p
)) {
4041 if (*typestr
== '?') {
4047 val
= strtosz(p
, &end
);
4049 monitor_printf(mon
, "invalid size\n");
4052 qdict_put(qdict
, key
, qint_from_int(val
));
4060 while (qemu_isspace(*p
))
4062 if (*typestr
== '?') {
4068 if (get_double(mon
, &val
, &p
) < 0) {
4071 if (p
[0] && p
[1] == 's') {
4074 val
/= 1e3
; p
+= 2; break;
4076 val
/= 1e6
; p
+= 2; break;
4078 val
/= 1e9
; p
+= 2; break;
4081 if (*p
&& !qemu_isspace(*p
)) {
4082 monitor_printf(mon
, "Unknown unit suffix\n");
4085 qdict_put(qdict
, key
, qfloat_from_double(val
));
4093 while (qemu_isspace(*p
)) {
4097 while (qemu_isgraph(*p
)) {
4100 if (p
- beg
== 2 && !memcmp(beg
, "on", p
- beg
)) {
4102 } else if (p
- beg
== 3 && !memcmp(beg
, "off", p
- beg
)) {
4105 monitor_printf(mon
, "Expected 'on' or 'off'\n");
4108 qdict_put(qdict
, key
, qbool_from_int(val
));
4113 const char *tmp
= p
;
4120 while (qemu_isspace(*p
))
4125 if(!is_valid_option(p
, typestr
)) {
4127 monitor_printf(mon
, "%s: unsupported option -%c\n",
4139 qdict_put(qdict
, key
, qbool_from_int(1));
4146 monitor_printf(mon
, "%s: unknown type '%c'\n", cmdname
, c
);
4152 /* check that all arguments were parsed */
4153 while (qemu_isspace(*p
))
4156 monitor_printf(mon
, "%s: extraneous characters at the end of line\n",
4168 void monitor_set_error(Monitor
*mon
, QError
*qerror
)
4170 /* report only the first error */
4172 mon
->error
= qerror
;
4174 MON_DEBUG("Additional error report at %s:%d\n",
4175 qerror
->file
, qerror
->linenr
);
4180 static void handler_audit(Monitor
*mon
, const mon_cmd_t
*cmd
, int ret
)
4182 if (ret
&& !monitor_has_error(mon
)) {
4184 * If it returns failure, it must have passed on error.
4186 * Action: Report an internal error to the client if in QMP.
4188 qerror_report(QERR_UNDEFINED_ERROR
);
4189 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
4193 #ifdef CONFIG_DEBUG_MONITOR
4194 if (!ret
&& monitor_has_error(mon
)) {
4196 * If it returns success, it must not have passed an error.
4198 * Action: Report the passed error to the client.
4200 MON_DEBUG("command '%s' returned success but passed an error\n",
4204 if (mon_print_count_get(mon
) > 0 && strcmp(cmd
->name
, "info") != 0) {
4206 * Handlers should not call Monitor print functions.
4208 * Action: Ignore them in QMP.
4210 * (XXX: we don't check any 'info' or 'query' command here
4211 * because the user print function _is_ called by do_info(), hence
4212 * we will trigger this check. This problem will go away when we
4213 * make 'query' commands real and kill do_info())
4215 MON_DEBUG("command '%s' called print functions %d time(s)\n",
4216 cmd
->name
, mon_print_count_get(mon
));
4221 static void handle_user_command(Monitor
*mon
, const char *cmdline
)
4224 const mon_cmd_t
*cmd
;
4226 qdict
= qdict_new();
4228 cmd
= monitor_parse_command(mon
, cmdline
, qdict
);
4232 if (handler_is_async(cmd
)) {
4233 user_async_cmd_handler(mon
, cmd
, qdict
);
4234 } else if (handler_is_qobject(cmd
)) {
4235 QObject
*data
= NULL
;
4237 /* XXX: ignores the error code */
4238 cmd
->mhandler
.cmd_new(mon
, qdict
, &data
);
4239 assert(!monitor_has_error(mon
));
4241 cmd
->user_print(mon
, data
);
4242 qobject_decref(data
);
4245 cmd
->mhandler
.cmd(mon
, qdict
);
4252 static void cmd_completion(const char *name
, const char *list
)
4254 const char *p
, *pstart
;
4263 p
= pstart
+ strlen(pstart
);
4265 if (len
> sizeof(cmd
) - 2)
4266 len
= sizeof(cmd
) - 2;
4267 memcpy(cmd
, pstart
, len
);
4269 if (name
[0] == '\0' || !strncmp(name
, cmd
, strlen(name
))) {
4270 readline_add_completion(cur_mon
->rs
, cmd
);
4278 static void file_completion(const char *input
)
4283 char file
[1024], file_prefix
[1024];
4287 p
= strrchr(input
, '/');
4290 pstrcpy(file_prefix
, sizeof(file_prefix
), input
);
4291 pstrcpy(path
, sizeof(path
), ".");
4293 input_path_len
= p
- input
+ 1;
4294 memcpy(path
, input
, input_path_len
);
4295 if (input_path_len
> sizeof(path
) - 1)
4296 input_path_len
= sizeof(path
) - 1;
4297 path
[input_path_len
] = '\0';
4298 pstrcpy(file_prefix
, sizeof(file_prefix
), p
+ 1);
4300 #ifdef DEBUG_COMPLETION
4301 monitor_printf(cur_mon
, "input='%s' path='%s' prefix='%s'\n",
4302 input
, path
, file_prefix
);
4304 ffs
= opendir(path
);
4313 if (strcmp(d
->d_name
, ".") == 0 || strcmp(d
->d_name
, "..") == 0) {
4317 if (strstart(d
->d_name
, file_prefix
, NULL
)) {
4318 memcpy(file
, input
, input_path_len
);
4319 if (input_path_len
< sizeof(file
))
4320 pstrcpy(file
+ input_path_len
, sizeof(file
) - input_path_len
,
4322 /* stat the file to find out if it's a directory.
4323 * In that case add a slash to speed up typing long paths
4326 if(S_ISDIR(sb
.st_mode
))
4327 pstrcat(file
, sizeof(file
), "/");
4328 readline_add_completion(cur_mon
->rs
, file
);
4334 static void block_completion_it(void *opaque
, BlockDriverState
*bs
)
4336 const char *name
= bdrv_get_device_name(bs
);
4337 const char *input
= opaque
;
4339 if (input
[0] == '\0' ||
4340 !strncmp(name
, (char *)input
, strlen(input
))) {
4341 readline_add_completion(cur_mon
->rs
, name
);
4345 /* NOTE: this parser is an approximate form of the real command parser */
4346 static void parse_cmdline(const char *cmdline
,
4347 int *pnb_args
, char **args
)
4356 while (qemu_isspace(*p
))
4360 if (nb_args
>= MAX_ARGS
)
4362 ret
= get_str(buf
, sizeof(buf
), &p
);
4363 args
[nb_args
] = qemu_strdup(buf
);
4368 *pnb_args
= nb_args
;
4371 static const char *next_arg_type(const char *typestr
)
4373 const char *p
= strchr(typestr
, ':');
4374 return (p
!= NULL
? ++p
: typestr
);
4377 static void monitor_find_completion(const char *cmdline
)
4379 const char *cmdname
;
4380 char *args
[MAX_ARGS
];
4381 int nb_args
, i
, len
;
4382 const char *ptype
, *str
;
4383 const mon_cmd_t
*cmd
;
4386 parse_cmdline(cmdline
, &nb_args
, args
);
4387 #ifdef DEBUG_COMPLETION
4388 for(i
= 0; i
< nb_args
; i
++) {
4389 monitor_printf(cur_mon
, "arg%d = '%s'\n", i
, (char *)args
[i
]);
4393 /* if the line ends with a space, it means we want to complete the
4395 len
= strlen(cmdline
);
4396 if (len
> 0 && qemu_isspace(cmdline
[len
- 1])) {
4397 if (nb_args
>= MAX_ARGS
) {
4400 args
[nb_args
++] = qemu_strdup("");
4403 /* command completion */
4408 readline_set_completion_index(cur_mon
->rs
, strlen(cmdname
));
4409 for(cmd
= mon_cmds
; cmd
->name
!= NULL
; cmd
++) {
4410 cmd_completion(cmdname
, cmd
->name
);
4413 /* find the command */
4414 for (cmd
= mon_cmds
; cmd
->name
!= NULL
; cmd
++) {
4415 if (compare_cmd(args
[0], cmd
->name
)) {
4423 ptype
= next_arg_type(cmd
->args_type
);
4424 for(i
= 0; i
< nb_args
- 2; i
++) {
4425 if (*ptype
!= '\0') {
4426 ptype
= next_arg_type(ptype
);
4427 while (*ptype
== '?')
4428 ptype
= next_arg_type(ptype
);
4431 str
= args
[nb_args
- 1];
4432 if (*ptype
== '-' && ptype
[1] != '\0') {
4433 ptype
= next_arg_type(ptype
);
4437 /* file completion */
4438 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
4439 file_completion(str
);
4442 /* block device name completion */
4443 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
4444 bdrv_iterate(block_completion_it
, (void *)str
);
4447 /* XXX: more generic ? */
4448 if (!strcmp(cmd
->name
, "info")) {
4449 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
4450 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
4451 cmd_completion(str
, cmd
->name
);
4453 } else if (!strcmp(cmd
->name
, "sendkey")) {
4454 char *sep
= strrchr(str
, '-');
4457 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
4458 for(key
= key_defs
; key
->name
!= NULL
; key
++) {
4459 cmd_completion(str
, key
->name
);
4461 } else if (!strcmp(cmd
->name
, "help|?")) {
4462 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
4463 for (cmd
= mon_cmds
; cmd
->name
!= NULL
; cmd
++) {
4464 cmd_completion(str
, cmd
->name
);
4474 for (i
= 0; i
< nb_args
; i
++) {
4479 static int monitor_can_read(void *opaque
)
4481 Monitor
*mon
= opaque
;
4483 return (mon
->suspend_cnt
== 0) ? 1 : 0;
4486 static int invalid_qmp_mode(const Monitor
*mon
, const char *cmd_name
)
4488 int is_cap
= compare_cmd(cmd_name
, "qmp_capabilities");
4489 return (qmp_cmd_mode(mon
) ? is_cap
: !is_cap
);
4493 * Argument validation rules:
4495 * 1. The argument must exist in cmd_args qdict
4496 * 2. The argument type must be the expected one
4498 * Special case: If the argument doesn't exist in cmd_args and
4499 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4500 * checking is skipped for it.
4502 static int check_client_args_type(const QDict
*client_args
,
4503 const QDict
*cmd_args
, int flags
)
4505 const QDictEntry
*ent
;
4507 for (ent
= qdict_first(client_args
); ent
;ent
= qdict_next(client_args
,ent
)){
4510 const QObject
*client_arg
= qdict_entry_value(ent
);
4511 const char *client_arg_name
= qdict_entry_key(ent
);
4513 obj
= qdict_get(cmd_args
, client_arg_name
);
4515 if (flags
& QMP_ACCEPT_UNKNOWNS
) {
4516 /* handler accepts unknowns */
4519 /* client arg doesn't exist */
4520 qerror_report(QERR_INVALID_PARAMETER
, client_arg_name
);
4524 arg_type
= qobject_to_qstring(obj
);
4525 assert(arg_type
!= NULL
);
4527 /* check if argument's type is correct */
4528 switch (qstring_get_str(arg_type
)[0]) {
4532 if (qobject_type(client_arg
) != QTYPE_QSTRING
) {
4533 qerror_report(QERR_INVALID_PARAMETER_TYPE
, client_arg_name
,
4542 if (qobject_type(client_arg
) != QTYPE_QINT
) {
4543 qerror_report(QERR_INVALID_PARAMETER_TYPE
, client_arg_name
,
4549 if (qobject_type(client_arg
) != QTYPE_QINT
&&
4550 qobject_type(client_arg
) != QTYPE_QFLOAT
) {
4551 qerror_report(QERR_INVALID_PARAMETER_TYPE
, client_arg_name
,
4558 if (qobject_type(client_arg
) != QTYPE_QBOOL
) {
4559 qerror_report(QERR_INVALID_PARAMETER_TYPE
, client_arg_name
,
4565 assert(flags
& QMP_ACCEPT_UNKNOWNS
);
4570 * These types are not supported by QMP and thus are not
4571 * handled here. Fall through.
4582 * - Check if the client has passed all mandatory args
4583 * - Set special flags for argument validation
4585 static int check_mandatory_args(const QDict
*cmd_args
,
4586 const QDict
*client_args
, int *flags
)
4588 const QDictEntry
*ent
;
4590 for (ent
= qdict_first(cmd_args
); ent
; ent
= qdict_next(cmd_args
, ent
)) {
4591 const char *cmd_arg_name
= qdict_entry_key(ent
);
4592 QString
*type
= qobject_to_qstring(qdict_entry_value(ent
));
4593 assert(type
!= NULL
);
4595 if (qstring_get_str(type
)[0] == 'O') {
4596 assert((*flags
& QMP_ACCEPT_UNKNOWNS
) == 0);
4597 *flags
|= QMP_ACCEPT_UNKNOWNS
;
4598 } else if (qstring_get_str(type
)[0] != '-' &&
4599 qstring_get_str(type
)[1] != '?' &&
4600 !qdict_haskey(client_args
, cmd_arg_name
)) {
4601 qerror_report(QERR_MISSING_PARAMETER
, cmd_arg_name
);
4609 static QDict
*qdict_from_args_type(const char *args_type
)
4613 QString
*key
, *type
, *cur_qs
;
4615 assert(args_type
!= NULL
);
4617 qdict
= qdict_new();
4619 if (args_type
== NULL
|| args_type
[0] == '\0') {
4620 /* no args, empty qdict */
4624 key
= qstring_new();
4625 type
= qstring_new();
4630 switch (args_type
[i
]) {
4633 qdict_put(qdict
, qstring_get_str(key
), type
);
4635 if (args_type
[i
] == '\0') {
4638 type
= qstring_new(); /* qdict has ref */
4639 cur_qs
= key
= qstring_new();
4645 qstring_append_chr(cur_qs
, args_type
[i
]);
4655 * Client argument checking rules:
4657 * 1. Client must provide all mandatory arguments
4658 * 2. Each argument provided by the client must be expected
4659 * 3. Each argument provided by the client must have the type expected
4662 static int qmp_check_client_args(const mon_cmd_t
*cmd
, QDict
*client_args
)
4667 cmd_args
= qdict_from_args_type(cmd
->args_type
);
4670 err
= check_mandatory_args(cmd_args
, client_args
, &flags
);
4675 err
= check_client_args_type(client_args
, cmd_args
, flags
);
4683 * Input object checking rules
4685 * 1. Input object must be a dict
4686 * 2. The "execute" key must exist
4687 * 3. The "execute" key must be a string
4688 * 4. If the "arguments" key exists, it must be a dict
4689 * 5. If the "id" key exists, it can be anything (ie. json-value)
4690 * 6. Any argument not listed above is considered invalid
4692 static QDict
*qmp_check_input_obj(QObject
*input_obj
)
4694 const QDictEntry
*ent
;
4695 int has_exec_key
= 0;
4698 if (qobject_type(input_obj
) != QTYPE_QDICT
) {
4699 qerror_report(QERR_QMP_BAD_INPUT_OBJECT
, "object");
4703 input_dict
= qobject_to_qdict(input_obj
);
4705 for (ent
= qdict_first(input_dict
); ent
; ent
= qdict_next(input_dict
, ent
)){
4706 const char *arg_name
= qdict_entry_key(ent
);
4707 const QObject
*arg_obj
= qdict_entry_value(ent
);
4709 if (!strcmp(arg_name
, "execute")) {
4710 if (qobject_type(arg_obj
) != QTYPE_QSTRING
) {
4711 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER
, "execute",
4716 } else if (!strcmp(arg_name
, "arguments")) {
4717 if (qobject_type(arg_obj
) != QTYPE_QDICT
) {
4718 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER
, "arguments",
4722 } else if (!strcmp(arg_name
, "id")) {
4723 /* FIXME: check duplicated IDs for async commands */
4725 qerror_report(QERR_QMP_EXTRA_MEMBER
, arg_name
);
4730 if (!has_exec_key
) {
4731 qerror_report(QERR_QMP_BAD_INPUT_OBJECT
, "execute");
4738 static void qmp_call_query_cmd(Monitor
*mon
, const mon_cmd_t
*cmd
)
4740 QObject
*ret_data
= NULL
;
4742 if (handler_is_async(cmd
)) {
4743 qmp_async_info_handler(mon
, cmd
);
4744 if (monitor_has_error(mon
)) {
4745 monitor_protocol_emitter(mon
, NULL
);
4748 cmd
->mhandler
.info_new(mon
, &ret_data
);
4749 monitor_protocol_emitter(mon
, ret_data
);
4750 qobject_decref(ret_data
);
4754 static void qmp_call_cmd(Monitor
*mon
, const mon_cmd_t
*cmd
,
4755 const QDict
*params
)
4758 QObject
*data
= NULL
;
4760 mon_print_count_init(mon
);
4762 ret
= cmd
->mhandler
.cmd_new(mon
, params
, &data
);
4763 handler_audit(mon
, cmd
, ret
);
4764 monitor_protocol_emitter(mon
, data
);
4765 qobject_decref(data
);
4768 static void handle_qmp_command(JSONMessageParser
*parser
, QList
*tokens
)
4772 QDict
*input
, *args
;
4773 const mon_cmd_t
*cmd
;
4774 Monitor
*mon
= cur_mon
;
4775 const char *cmd_name
, *query_cmd
;
4778 args
= input
= NULL
;
4780 obj
= json_parser_parse(tokens
, NULL
);
4782 // FIXME: should be triggered in json_parser_parse()
4783 qerror_report(QERR_JSON_PARSING
);
4787 input
= qmp_check_input_obj(obj
);
4789 qobject_decref(obj
);
4793 mon
->mc
->id
= qdict_get(input
, "id");
4794 qobject_incref(mon
->mc
->id
);
4796 cmd_name
= qdict_get_str(input
, "execute");
4797 if (invalid_qmp_mode(mon
, cmd_name
)) {
4798 qerror_report(QERR_COMMAND_NOT_FOUND
, cmd_name
);
4802 if (strstart(cmd_name
, "query-", &query_cmd
)) {
4803 cmd
= qmp_find_query_cmd(query_cmd
);
4805 cmd
= qmp_find_cmd(cmd_name
);
4809 qerror_report(QERR_COMMAND_NOT_FOUND
, cmd_name
);
4813 obj
= qdict_get(input
, "arguments");
4817 args
= qobject_to_qdict(obj
);
4821 err
= qmp_check_client_args(cmd
, args
);
4827 qmp_call_query_cmd(mon
, cmd
);
4828 } else if (handler_is_async(cmd
)) {
4829 err
= qmp_async_cmd_handler(mon
, cmd
, args
);
4831 /* emit the error response */
4835 qmp_call_cmd(mon
, cmd
, args
);
4841 monitor_protocol_emitter(mon
, NULL
);
4848 * monitor_control_read(): Read and handle QMP input
4850 static void monitor_control_read(void *opaque
, const uint8_t *buf
, int size
)
4852 Monitor
*old_mon
= cur_mon
;
4856 json_message_parser_feed(&cur_mon
->mc
->parser
, (const char *) buf
, size
);
4861 static void monitor_read(void *opaque
, const uint8_t *buf
, int size
)
4863 Monitor
*old_mon
= cur_mon
;
4869 for (i
= 0; i
< size
; i
++)
4870 readline_handle_byte(cur_mon
->rs
, buf
[i
]);
4872 if (size
== 0 || buf
[size
- 1] != 0)
4873 monitor_printf(cur_mon
, "corrupted command\n");
4875 handle_user_command(cur_mon
, (char *)buf
);
4881 static void monitor_command_cb(Monitor
*mon
, const char *cmdline
, void *opaque
)
4883 monitor_suspend(mon
);
4884 handle_user_command(mon
, cmdline
);
4885 monitor_resume(mon
);
4888 int monitor_suspend(Monitor
*mon
)
4896 void monitor_resume(Monitor
*mon
)
4900 if (--mon
->suspend_cnt
== 0)
4901 readline_show_prompt(mon
->rs
);
4904 static QObject
*get_qmp_greeting(void)
4908 do_info_version(NULL
, &ver
);
4909 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver
);
4913 * monitor_control_event(): Print QMP gretting
4915 static void monitor_control_event(void *opaque
, int event
)
4918 Monitor
*mon
= opaque
;
4921 case CHR_EVENT_OPENED
:
4922 mon
->mc
->command_mode
= 0;
4923 json_message_parser_init(&mon
->mc
->parser
, handle_qmp_command
);
4924 data
= get_qmp_greeting();
4925 monitor_json_emitter(mon
, data
);
4926 qobject_decref(data
);
4928 case CHR_EVENT_CLOSED
:
4929 json_message_parser_destroy(&mon
->mc
->parser
);
4934 static void monitor_event(void *opaque
, int event
)
4936 Monitor
*mon
= opaque
;
4939 case CHR_EVENT_MUX_IN
:
4941 if (mon
->reset_seen
) {
4942 readline_restart(mon
->rs
);
4943 monitor_resume(mon
);
4946 mon
->suspend_cnt
= 0;
4950 case CHR_EVENT_MUX_OUT
:
4951 if (mon
->reset_seen
) {
4952 if (mon
->suspend_cnt
== 0) {
4953 monitor_printf(mon
, "\n");
4956 monitor_suspend(mon
);
4963 case CHR_EVENT_OPENED
:
4964 monitor_printf(mon
, "QEMU %s monitor - type 'help' for more "
4965 "information\n", QEMU_VERSION
);
4966 if (!mon
->mux_out
) {
4967 readline_show_prompt(mon
->rs
);
4969 mon
->reset_seen
= 1;
4983 void monitor_init(CharDriverState
*chr
, int flags
)
4985 static int is_first_init
= 1;
4988 if (is_first_init
) {
4989 key_timer
= qemu_new_timer(vm_clock
, release_keys
, NULL
);
4993 mon
= qemu_mallocz(sizeof(*mon
));
4997 if (flags
& MONITOR_USE_READLINE
) {
4998 mon
->rs
= readline_init(mon
, monitor_find_completion
);
4999 monitor_read_command(mon
, 0);
5002 if (monitor_ctrl_mode(mon
)) {
5003 mon
->mc
= qemu_mallocz(sizeof(MonitorControl
));
5004 /* Control mode requires special handlers */
5005 qemu_chr_add_handlers(chr
, monitor_can_read
, monitor_control_read
,
5006 monitor_control_event
, mon
);
5008 qemu_chr_add_handlers(chr
, monitor_can_read
, monitor_read
,
5009 monitor_event
, mon
);
5012 QLIST_INSERT_HEAD(&mon_list
, mon
, entry
);
5013 if (!default_mon
|| (flags
& MONITOR_IS_DEFAULT
))
5017 static void bdrv_password_cb(Monitor
*mon
, const char *password
, void *opaque
)
5019 BlockDriverState
*bs
= opaque
;
5022 if (bdrv_set_key(bs
, password
) != 0) {
5023 monitor_printf(mon
, "invalid password\n");
5026 if (mon
->password_completion_cb
)
5027 mon
->password_completion_cb(mon
->password_opaque
, ret
);
5029 monitor_read_command(mon
, 1);
5032 int monitor_read_bdrv_key_start(Monitor
*mon
, BlockDriverState
*bs
,
5033 BlockDriverCompletionFunc
*completion_cb
,
5038 if (!bdrv_key_required(bs
)) {
5040 completion_cb(opaque
, 0);
5044 if (monitor_ctrl_mode(mon
)) {
5045 qerror_report(QERR_DEVICE_ENCRYPTED
, bdrv_get_device_name(bs
));
5049 monitor_printf(mon
, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs
),
5050 bdrv_get_encrypted_filename(bs
));
5052 mon
->password_completion_cb
= completion_cb
;
5053 mon
->password_opaque
= opaque
;
5055 err
= monitor_read_password(mon
, bdrv_password_cb
, bs
);
5057 if (err
&& completion_cb
)
5058 completion_cb(opaque
, err
);