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
62 #include "ui/qemu-spice.h"
65 //#define DEBUG_COMPLETION
71 * 'B' block device name
72 * 's' string (accept optional quote)
73 * 'O' option string of the form NAME=VALUE,...
74 * parsed according to QemuOptsList given by its name
75 * Example: 'device:O' uses qemu_device_opts.
76 * Restriction: only lists with empty desc are supported
77 * TODO lift the restriction
79 * 'l' target long (32 or 64 bit)
80 * 'M' just like 'l', except in user mode the value is
81 * multiplied by 2^20 (think Mebibyte)
82 * 'o' octets (aka bytes)
83 * user mode accepts an optional T, t, G, g, M, m, K, k
84 * suffix, which multiplies the value by 2^40 for
85 * suffixes T and t, 2^30 for suffixes G and g, 2^20 for
86 * M and m, 2^10 for K and k
88 * user mode accepts an optional ms, us, ns suffix,
89 * which divides the value by 1e3, 1e6, 1e9, respectively
90 * '/' optional gdb-like print format (like "/10x")
92 * '?' optional type (for all types, except '/')
93 * '.' other form of optional type (for 'i' and 'l')
95 * user mode accepts "on" or "off"
96 * '-' optional parameter (eg. '-f')
100 typedef struct MonitorCompletionData MonitorCompletionData
;
101 struct MonitorCompletionData
{
103 void (*user_print
)(Monitor
*mon
, const QObject
*data
);
106 typedef struct mon_cmd_t
{
108 const char *args_type
;
111 void (*user_print
)(Monitor
*mon
, const QObject
*data
);
113 void (*info
)(Monitor
*mon
);
114 void (*info_new
)(Monitor
*mon
, QObject
**ret_data
);
115 int (*info_async
)(Monitor
*mon
, MonitorCompletion
*cb
, void *opaque
);
116 void (*cmd
)(Monitor
*mon
, const QDict
*qdict
);
117 int (*cmd_new
)(Monitor
*mon
, const QDict
*params
, QObject
**ret_data
);
118 int (*cmd_async
)(Monitor
*mon
, const QDict
*params
,
119 MonitorCompletion
*cb
, void *opaque
);
124 /* file descriptors passed via SCM_RIGHTS */
125 typedef struct mon_fd_t mon_fd_t
;
129 QLIST_ENTRY(mon_fd_t
) next
;
132 typedef struct MonitorControl
{
134 JSONMessageParser parser
;
139 CharDriverState
*chr
;
144 uint8_t outbuf
[1024];
149 BlockDriverCompletionFunc
*password_completion_cb
;
150 void *password_opaque
;
151 #ifdef CONFIG_DEBUG_MONITOR
155 QLIST_HEAD(,mon_fd_t
) fds
;
156 QLIST_ENTRY(Monitor
) entry
;
159 #ifdef CONFIG_DEBUG_MONITOR
160 #define MON_DEBUG(fmt, ...) do { \
161 fprintf(stderr, "Monitor: "); \
162 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
164 static inline void mon_print_count_inc(Monitor
*mon
)
166 mon
->print_calls_nr
++;
169 static inline void mon_print_count_init(Monitor
*mon
)
171 mon
->print_calls_nr
= 0;
174 static inline int mon_print_count_get(const Monitor
*mon
)
176 return mon
->print_calls_nr
;
179 #else /* !CONFIG_DEBUG_MONITOR */
180 #define MON_DEBUG(fmt, ...) do { } while (0)
181 static inline void mon_print_count_inc(Monitor
*mon
) { }
182 static inline void mon_print_count_init(Monitor
*mon
) { }
183 static inline int mon_print_count_get(const Monitor
*mon
) { return 0; }
184 #endif /* CONFIG_DEBUG_MONITOR */
186 /* QMP checker flags */
187 #define QMP_ACCEPT_UNKNOWNS 1
189 static QLIST_HEAD(mon_list
, Monitor
) mon_list
;
191 static const mon_cmd_t mon_cmds
[];
192 static const mon_cmd_t info_cmds
[];
194 static const mon_cmd_t qmp_cmds
[];
195 static const mon_cmd_t qmp_query_cmds
[];
198 Monitor
*default_mon
;
200 static void monitor_command_cb(Monitor
*mon
, const char *cmdline
,
203 static inline int qmp_cmd_mode(const Monitor
*mon
)
205 return (mon
->mc
? mon
->mc
->command_mode
: 0);
208 /* Return true if in control mode, false otherwise */
209 static inline int monitor_ctrl_mode(const Monitor
*mon
)
211 return (mon
->flags
& MONITOR_USE_CONTROL
);
214 /* Return non-zero iff we have a current monitor, and it is in QMP mode. */
215 int monitor_cur_is_qmp(void)
217 return cur_mon
&& monitor_ctrl_mode(cur_mon
);
220 static void monitor_read_command(Monitor
*mon
, int show_prompt
)
225 readline_start(mon
->rs
, "(qemu) ", 0, monitor_command_cb
, NULL
);
227 readline_show_prompt(mon
->rs
);
230 static int monitor_read_password(Monitor
*mon
, ReadLineFunc
*readline_func
,
233 if (monitor_ctrl_mode(mon
)) {
234 qerror_report(QERR_MISSING_PARAMETER
, "password");
236 } else if (mon
->rs
) {
237 readline_start(mon
->rs
, "Password: ", 1, readline_func
, opaque
);
238 /* prompt is printed on return from the command handler */
241 monitor_printf(mon
, "terminal does not support password prompting\n");
246 void monitor_flush(Monitor
*mon
)
248 if (mon
&& mon
->outbuf_index
!= 0 && !mon
->mux_out
) {
249 qemu_chr_write(mon
->chr
, mon
->outbuf
, mon
->outbuf_index
);
250 mon
->outbuf_index
= 0;
254 /* flush at every end of line or if the buffer is full */
255 static void monitor_puts(Monitor
*mon
, const char *str
)
264 mon
->outbuf
[mon
->outbuf_index
++] = '\r';
265 mon
->outbuf
[mon
->outbuf_index
++] = c
;
266 if (mon
->outbuf_index
>= (sizeof(mon
->outbuf
) - 1)
272 void monitor_vprintf(Monitor
*mon
, const char *fmt
, va_list ap
)
279 mon_print_count_inc(mon
);
281 if (monitor_ctrl_mode(mon
)) {
285 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
286 monitor_puts(mon
, buf
);
289 void monitor_printf(Monitor
*mon
, const char *fmt
, ...)
293 monitor_vprintf(mon
, fmt
, ap
);
297 void monitor_print_filename(Monitor
*mon
, const char *filename
)
301 for (i
= 0; filename
[i
]; i
++) {
302 switch (filename
[i
]) {
306 monitor_printf(mon
, "\\%c", filename
[i
]);
309 monitor_printf(mon
, "\\t");
312 monitor_printf(mon
, "\\r");
315 monitor_printf(mon
, "\\n");
318 monitor_printf(mon
, "%c", filename
[i
]);
324 static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream
,
325 const char *fmt
, ...)
329 monitor_vprintf((Monitor
*)stream
, fmt
, ap
);
334 static void monitor_user_noop(Monitor
*mon
, const QObject
*data
) { }
336 static inline int handler_is_qobject(const mon_cmd_t
*cmd
)
338 return cmd
->user_print
!= NULL
;
341 static inline bool handler_is_async(const mon_cmd_t
*cmd
)
343 return cmd
->flags
& MONITOR_CMD_ASYNC
;
346 static inline int monitor_has_error(const Monitor
*mon
)
348 return mon
->error
!= NULL
;
351 static void monitor_json_emitter(Monitor
*mon
, const QObject
*data
)
355 if (mon
->flags
& MONITOR_USE_PRETTY
)
356 json
= qobject_to_json_pretty(data
);
358 json
= qobject_to_json(data
);
359 assert(json
!= NULL
);
361 qstring_append_chr(json
, '\n');
362 monitor_puts(mon
, qstring_get_str(json
));
367 static void monitor_protocol_emitter(Monitor
*mon
, QObject
*data
)
373 if (!monitor_has_error(mon
)) {
374 /* success response */
376 qobject_incref(data
);
377 qdict_put_obj(qmp
, "return", data
);
379 /* return an empty QDict by default */
380 qdict_put(qmp
, "return", qdict_new());
384 qdict_put(mon
->error
->error
, "desc", qerror_human(mon
->error
));
385 qdict_put(qmp
, "error", mon
->error
->error
);
386 QINCREF(mon
->error
->error
);
392 qdict_put_obj(qmp
, "id", mon
->mc
->id
);
396 monitor_json_emitter(mon
, QOBJECT(qmp
));
400 static void timestamp_put(QDict
*qdict
)
406 err
= qemu_gettimeofday(&tv
);
410 obj
= qobject_from_jsonf("{ 'seconds': %" PRId64
", "
411 "'microseconds': %" PRId64
" }",
412 (int64_t) tv
.tv_sec
, (int64_t) tv
.tv_usec
);
413 qdict_put_obj(qdict
, "timestamp", obj
);
417 * monitor_protocol_event(): Generate a Monitor event
419 * Event-specific data can be emitted through the (optional) 'data' parameter.
421 void monitor_protocol_event(MonitorEvent event
, QObject
*data
)
424 const char *event_name
;
427 assert(event
< QEVENT_MAX
);
430 case QEVENT_SHUTDOWN
:
431 event_name
= "SHUTDOWN";
434 event_name
= "RESET";
436 case QEVENT_POWERDOWN
:
437 event_name
= "POWERDOWN";
443 event_name
= "RESUME";
445 case QEVENT_VNC_CONNECTED
:
446 event_name
= "VNC_CONNECTED";
448 case QEVENT_VNC_INITIALIZED
:
449 event_name
= "VNC_INITIALIZED";
451 case QEVENT_VNC_DISCONNECTED
:
452 event_name
= "VNC_DISCONNECTED";
454 case QEVENT_BLOCK_IO_ERROR
:
455 event_name
= "BLOCK_IO_ERROR";
457 case QEVENT_RTC_CHANGE
:
458 event_name
= "RTC_CHANGE";
460 case QEVENT_WATCHDOG
:
461 event_name
= "WATCHDOG";
463 case QEVENT_SPICE_CONNECTED
:
464 event_name
= "SPICE_CONNECTED";
466 case QEVENT_SPICE_INITIALIZED
:
467 event_name
= "SPICE_INITIALIZED";
469 case QEVENT_SPICE_DISCONNECTED
:
470 event_name
= "SPICE_DISCONNECTED";
479 qdict_put(qmp
, "event", qstring_from_str(event_name
));
481 qobject_incref(data
);
482 qdict_put_obj(qmp
, "data", data
);
485 QLIST_FOREACH(mon
, &mon_list
, entry
) {
486 if (monitor_ctrl_mode(mon
) && qmp_cmd_mode(mon
)) {
487 monitor_json_emitter(mon
, QOBJECT(qmp
));
493 static int do_qmp_capabilities(Monitor
*mon
, const QDict
*params
,
496 /* Will setup QMP capabilities in the future */
497 if (monitor_ctrl_mode(mon
)) {
498 mon
->mc
->command_mode
= 1;
504 static int mon_set_cpu(int cpu_index
);
505 static void handle_user_command(Monitor
*mon
, const char *cmdline
);
507 static int do_hmp_passthrough(Monitor
*mon
, const QDict
*params
,
511 Monitor
*old_mon
, hmp
;
512 CharDriverState mchar
;
514 memset(&hmp
, 0, sizeof(hmp
));
515 qemu_chr_init_mem(&mchar
);
521 if (qdict_haskey(params
, "cpu-index")) {
522 ret
= mon_set_cpu(qdict_get_int(params
, "cpu-index"));
525 qerror_report(QERR_INVALID_PARAMETER_VALUE
, "cpu-index", "a CPU number");
530 handle_user_command(&hmp
, qdict_get_str(params
, "command-line"));
533 if (qemu_chr_mem_osize(hmp
.chr
) > 0) {
534 *ret_data
= QOBJECT(qemu_chr_mem_to_qs(hmp
.chr
));
538 qemu_chr_close_mem(hmp
.chr
);
542 static int compare_cmd(const char *name
, const char *list
)
544 const char *p
, *pstart
;
552 p
= pstart
+ strlen(pstart
);
553 if ((p
- pstart
) == len
&& !memcmp(pstart
, name
, len
))
562 static void help_cmd_dump(Monitor
*mon
, const mon_cmd_t
*cmds
,
563 const char *prefix
, const char *name
)
565 const mon_cmd_t
*cmd
;
567 for(cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
568 if (!name
|| !strcmp(name
, cmd
->name
))
569 monitor_printf(mon
, "%s%s %s -- %s\n", prefix
, cmd
->name
,
570 cmd
->params
, cmd
->help
);
574 static void help_cmd(Monitor
*mon
, const char *name
)
576 if (name
&& !strcmp(name
, "info")) {
577 help_cmd_dump(mon
, info_cmds
, "info ", NULL
);
579 help_cmd_dump(mon
, mon_cmds
, "", name
);
580 if (name
&& !strcmp(name
, "log")) {
581 const CPULogItem
*item
;
582 monitor_printf(mon
, "Log items (comma separated):\n");
583 monitor_printf(mon
, "%-10s %s\n", "none", "remove all logs");
584 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
585 monitor_printf(mon
, "%-10s %s\n", item
->name
, item
->help
);
591 static void do_help_cmd(Monitor
*mon
, const QDict
*qdict
)
593 help_cmd(mon
, qdict_get_try_str(qdict
, "name"));
596 #ifdef CONFIG_SIMPLE_TRACE
597 static void do_change_trace_event_state(Monitor
*mon
, const QDict
*qdict
)
599 const char *tp_name
= qdict_get_str(qdict
, "name");
600 bool new_state
= qdict_get_bool(qdict
, "option");
601 int ret
= st_change_trace_event_state(tp_name
, new_state
);
604 monitor_printf(mon
, "unknown event name \"%s\"\n", tp_name
);
608 static void do_trace_file(Monitor
*mon
, const QDict
*qdict
)
610 const char *op
= qdict_get_try_str(qdict
, "op");
611 const char *arg
= qdict_get_try_str(qdict
, "arg");
614 st_print_trace_file_status((FILE *)mon
, &monitor_fprintf
);
615 } else if (!strcmp(op
, "on")) {
616 st_set_trace_file_enabled(true);
617 } else if (!strcmp(op
, "off")) {
618 st_set_trace_file_enabled(false);
619 } else if (!strcmp(op
, "flush")) {
620 st_flush_trace_buffer();
621 } else if (!strcmp(op
, "set")) {
623 st_set_trace_file(arg
);
626 monitor_printf(mon
, "unexpected argument \"%s\"\n", op
);
627 help_cmd(mon
, "trace-file");
632 static void user_monitor_complete(void *opaque
, QObject
*ret_data
)
634 MonitorCompletionData
*data
= (MonitorCompletionData
*)opaque
;
637 data
->user_print(data
->mon
, ret_data
);
639 monitor_resume(data
->mon
);
643 static void qmp_monitor_complete(void *opaque
, QObject
*ret_data
)
645 monitor_protocol_emitter(opaque
, ret_data
);
648 static int qmp_async_cmd_handler(Monitor
*mon
, const mon_cmd_t
*cmd
,
651 return cmd
->mhandler
.cmd_async(mon
, params
, qmp_monitor_complete
, mon
);
654 static void qmp_async_info_handler(Monitor
*mon
, const mon_cmd_t
*cmd
)
656 cmd
->mhandler
.info_async(mon
, qmp_monitor_complete
, mon
);
659 static void user_async_cmd_handler(Monitor
*mon
, const mon_cmd_t
*cmd
,
664 MonitorCompletionData
*cb_data
= qemu_malloc(sizeof(*cb_data
));
666 cb_data
->user_print
= cmd
->user_print
;
667 monitor_suspend(mon
);
668 ret
= cmd
->mhandler
.cmd_async(mon
, params
,
669 user_monitor_complete
, cb_data
);
676 static void user_async_info_handler(Monitor
*mon
, const mon_cmd_t
*cmd
)
680 MonitorCompletionData
*cb_data
= qemu_malloc(sizeof(*cb_data
));
682 cb_data
->user_print
= cmd
->user_print
;
683 monitor_suspend(mon
);
684 ret
= cmd
->mhandler
.info_async(mon
, user_monitor_complete
, cb_data
);
691 static void do_info(Monitor
*mon
, const QDict
*qdict
)
693 const mon_cmd_t
*cmd
;
694 const char *item
= qdict_get_try_str(qdict
, "item");
700 for (cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
701 if (compare_cmd(item
, cmd
->name
))
705 if (cmd
->name
== NULL
) {
709 if (handler_is_async(cmd
)) {
710 user_async_info_handler(mon
, cmd
);
711 } else if (handler_is_qobject(cmd
)) {
712 QObject
*info_data
= NULL
;
714 cmd
->mhandler
.info_new(mon
, &info_data
);
716 cmd
->user_print(mon
, info_data
);
717 qobject_decref(info_data
);
720 cmd
->mhandler
.info(mon
);
726 help_cmd(mon
, "info");
729 static void do_info_version_print(Monitor
*mon
, const QObject
*data
)
734 qdict
= qobject_to_qdict(data
);
735 qemu
= qdict_get_qdict(qdict
, "qemu");
737 monitor_printf(mon
, "%" PRId64
".%" PRId64
".%" PRId64
"%s\n",
738 qdict_get_int(qemu
, "major"),
739 qdict_get_int(qemu
, "minor"),
740 qdict_get_int(qemu
, "micro"),
741 qdict_get_str(qdict
, "package"));
744 static void do_info_version(Monitor
*mon
, QObject
**ret_data
)
746 const char *version
= QEMU_VERSION
;
747 int major
= 0, minor
= 0, micro
= 0;
750 major
= strtol(version
, &tmp
, 10);
752 minor
= strtol(tmp
, &tmp
, 10);
754 micro
= strtol(tmp
, &tmp
, 10);
756 *ret_data
= qobject_from_jsonf("{ 'qemu': { 'major': %d, 'minor': %d, \
757 'micro': %d }, 'package': %s }", major
, minor
, micro
, QEMU_PKGVERSION
);
760 static void do_info_name_print(Monitor
*mon
, const QObject
*data
)
764 qdict
= qobject_to_qdict(data
);
765 if (qdict_size(qdict
) == 0) {
769 monitor_printf(mon
, "%s\n", qdict_get_str(qdict
, "name"));
772 static void do_info_name(Monitor
*mon
, QObject
**ret_data
)
774 *ret_data
= qemu_name
? qobject_from_jsonf("{'name': %s }", qemu_name
) :
775 qobject_from_jsonf("{}");
778 static QObject
*get_cmd_dict(const char *name
)
782 /* Remove '|' from some commands */
783 p
= strchr(name
, '|');
790 return qobject_from_jsonf("{ 'name': %s }", p
);
793 static void do_info_commands(Monitor
*mon
, QObject
**ret_data
)
796 const mon_cmd_t
*cmd
;
798 cmd_list
= qlist_new();
800 for (cmd
= qmp_cmds
; cmd
->name
!= NULL
; cmd
++) {
801 qlist_append_obj(cmd_list
, get_cmd_dict(cmd
->name
));
804 for (cmd
= qmp_query_cmds
; cmd
->name
!= NULL
; cmd
++) {
806 snprintf(buf
, sizeof(buf
), "query-%s", cmd
->name
);
807 qlist_append_obj(cmd_list
, get_cmd_dict(buf
));
810 *ret_data
= QOBJECT(cmd_list
);
813 static void do_info_uuid_print(Monitor
*mon
, const QObject
*data
)
815 monitor_printf(mon
, "%s\n", qdict_get_str(qobject_to_qdict(data
), "UUID"));
818 static void do_info_uuid(Monitor
*mon
, QObject
**ret_data
)
822 snprintf(uuid
, sizeof(uuid
), UUID_FMT
, qemu_uuid
[0], qemu_uuid
[1],
823 qemu_uuid
[2], qemu_uuid
[3], qemu_uuid
[4], qemu_uuid
[5],
824 qemu_uuid
[6], qemu_uuid
[7], qemu_uuid
[8], qemu_uuid
[9],
825 qemu_uuid
[10], qemu_uuid
[11], qemu_uuid
[12], qemu_uuid
[13],
826 qemu_uuid
[14], qemu_uuid
[15]);
827 *ret_data
= qobject_from_jsonf("{ 'UUID': %s }", uuid
);
830 /* get the current CPU defined by the user */
831 static int mon_set_cpu(int cpu_index
)
835 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
836 if (env
->cpu_index
== cpu_index
) {
837 cur_mon
->mon_cpu
= env
;
844 static CPUState
*mon_get_cpu(void)
846 if (!cur_mon
->mon_cpu
) {
849 cpu_synchronize_state(cur_mon
->mon_cpu
);
850 return cur_mon
->mon_cpu
;
853 static void do_info_registers(Monitor
*mon
)
858 cpu_dump_state(env
, (FILE *)mon
, monitor_fprintf
,
861 cpu_dump_state(env
, (FILE *)mon
, monitor_fprintf
,
866 static void print_cpu_iter(QObject
*obj
, void *opaque
)
870 Monitor
*mon
= opaque
;
872 assert(qobject_type(obj
) == QTYPE_QDICT
);
873 cpu
= qobject_to_qdict(obj
);
875 if (qdict_get_bool(cpu
, "current")) {
879 monitor_printf(mon
, "%c CPU #%d: ", active
, (int)qdict_get_int(cpu
, "CPU"));
881 #if defined(TARGET_I386)
882 monitor_printf(mon
, "pc=0x" TARGET_FMT_lx
,
883 (target_ulong
) qdict_get_int(cpu
, "pc"));
884 #elif defined(TARGET_PPC)
885 monitor_printf(mon
, "nip=0x" TARGET_FMT_lx
,
886 (target_long
) qdict_get_int(cpu
, "nip"));
887 #elif defined(TARGET_SPARC)
888 monitor_printf(mon
, "pc=0x " TARGET_FMT_lx
,
889 (target_long
) qdict_get_int(cpu
, "pc"));
890 monitor_printf(mon
, "npc=0x" TARGET_FMT_lx
,
891 (target_long
) qdict_get_int(cpu
, "npc"));
892 #elif defined(TARGET_MIPS)
893 monitor_printf(mon
, "PC=0x" TARGET_FMT_lx
,
894 (target_long
) qdict_get_int(cpu
, "PC"));
897 if (qdict_get_bool(cpu
, "halted")) {
898 monitor_printf(mon
, " (halted)");
901 monitor_printf(mon
, "\n");
904 static void monitor_print_cpus(Monitor
*mon
, const QObject
*data
)
908 assert(qobject_type(data
) == QTYPE_QLIST
);
909 cpu_list
= qobject_to_qlist(data
);
910 qlist_iter(cpu_list
, print_cpu_iter
, mon
);
913 static void do_info_cpus(Monitor
*mon
, QObject
**ret_data
)
918 cpu_list
= qlist_new();
920 /* just to set the default cpu if not already done */
923 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
927 cpu_synchronize_state(env
);
929 obj
= qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
930 env
->cpu_index
, env
== mon
->mon_cpu
,
933 cpu
= qobject_to_qdict(obj
);
935 #if defined(TARGET_I386)
936 qdict_put(cpu
, "pc", qint_from_int(env
->eip
+ env
->segs
[R_CS
].base
));
937 #elif defined(TARGET_PPC)
938 qdict_put(cpu
, "nip", qint_from_int(env
->nip
));
939 #elif defined(TARGET_SPARC)
940 qdict_put(cpu
, "pc", qint_from_int(env
->pc
));
941 qdict_put(cpu
, "npc", qint_from_int(env
->npc
));
942 #elif defined(TARGET_MIPS)
943 qdict_put(cpu
, "PC", qint_from_int(env
->active_tc
.PC
));
946 qlist_append(cpu_list
, cpu
);
949 *ret_data
= QOBJECT(cpu_list
);
952 static int do_cpu_set(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
954 int index
= qdict_get_int(qdict
, "index");
955 if (mon_set_cpu(index
) < 0) {
956 qerror_report(QERR_INVALID_PARAMETER_VALUE
, "index",
963 static void do_info_jit(Monitor
*mon
)
965 dump_exec_info((FILE *)mon
, monitor_fprintf
);
968 static void do_info_history(Monitor
*mon
)
977 str
= readline_get_history(mon
->rs
, i
);
980 monitor_printf(mon
, "%d: '%s'\n", i
, str
);
985 #if defined(TARGET_PPC)
986 /* XXX: not implemented in other targets */
987 static void do_info_cpu_stats(Monitor
*mon
)
992 cpu_dump_statistics(env
, (FILE *)mon
, &monitor_fprintf
, 0);
996 #if defined(CONFIG_SIMPLE_TRACE)
997 static void do_info_trace(Monitor
*mon
)
999 st_print_trace((FILE *)mon
, &monitor_fprintf
);
1002 static void do_info_trace_events(Monitor
*mon
)
1004 st_print_trace_events((FILE *)mon
, &monitor_fprintf
);
1009 * do_quit(): Quit QEMU execution
1011 static int do_quit(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1013 monitor_suspend(mon
);
1015 qemu_system_shutdown_request();
1020 static int change_vnc_password(const char *password
)
1022 if (vnc_display_password(NULL
, password
) < 0) {
1023 qerror_report(QERR_SET_PASSWD_FAILED
);
1030 static void change_vnc_password_cb(Monitor
*mon
, const char *password
,
1033 change_vnc_password(password
);
1034 monitor_read_command(mon
, 1);
1037 static int do_change_vnc(Monitor
*mon
, const char *target
, const char *arg
)
1039 if (strcmp(target
, "passwd") == 0 ||
1040 strcmp(target
, "password") == 0) {
1043 strncpy(password
, arg
, sizeof(password
));
1044 password
[sizeof(password
) - 1] = '\0';
1045 return change_vnc_password(password
);
1047 return monitor_read_password(mon
, change_vnc_password_cb
, NULL
);
1050 if (vnc_display_open(NULL
, target
) < 0) {
1051 qerror_report(QERR_VNC_SERVER_FAILED
, target
);
1060 * do_change(): Change a removable medium, or VNC configuration
1062 static int do_change(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1064 const char *device
= qdict_get_str(qdict
, "device");
1065 const char *target
= qdict_get_str(qdict
, "target");
1066 const char *arg
= qdict_get_try_str(qdict
, "arg");
1069 if (strcmp(device
, "vnc") == 0) {
1070 ret
= do_change_vnc(mon
, target
, arg
);
1072 ret
= do_change_block(mon
, device
, target
, arg
);
1078 static int do_screen_dump(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1080 vga_hw_screen_dump(qdict_get_str(qdict
, "filename"));
1084 static void do_logfile(Monitor
*mon
, const QDict
*qdict
)
1086 cpu_set_log_filename(qdict_get_str(qdict
, "filename"));
1089 static void do_log(Monitor
*mon
, const QDict
*qdict
)
1092 const char *items
= qdict_get_str(qdict
, "items");
1094 if (!strcmp(items
, "none")) {
1097 mask
= cpu_str_to_log_mask(items
);
1099 help_cmd(mon
, "log");
1106 static void do_singlestep(Monitor
*mon
, const QDict
*qdict
)
1108 const char *option
= qdict_get_try_str(qdict
, "option");
1109 if (!option
|| !strcmp(option
, "on")) {
1111 } else if (!strcmp(option
, "off")) {
1114 monitor_printf(mon
, "unexpected option %s\n", option
);
1119 * do_stop(): Stop VM execution
1121 static int do_stop(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1123 vm_stop(EXCP_INTERRUPT
);
1127 static void encrypted_bdrv_it(void *opaque
, BlockDriverState
*bs
);
1129 struct bdrv_iterate_context
{
1135 * do_cont(): Resume emulation.
1137 static int do_cont(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1139 struct bdrv_iterate_context context
= { mon
, 0 };
1141 if (incoming_expected
) {
1142 qerror_report(QERR_MIGRATION_EXPECTED
);
1145 bdrv_iterate(encrypted_bdrv_it
, &context
);
1146 /* only resume the vm if all keys are set and valid */
1155 static void bdrv_key_cb(void *opaque
, int err
)
1157 Monitor
*mon
= opaque
;
1159 /* another key was set successfully, retry to continue */
1161 do_cont(mon
, NULL
, NULL
);
1164 static void encrypted_bdrv_it(void *opaque
, BlockDriverState
*bs
)
1166 struct bdrv_iterate_context
*context
= opaque
;
1168 if (!context
->err
&& bdrv_key_required(bs
)) {
1169 context
->err
= -EBUSY
;
1170 monitor_read_bdrv_key_start(context
->mon
, bs
, bdrv_key_cb
,
1175 static void do_gdbserver(Monitor
*mon
, const QDict
*qdict
)
1177 const char *device
= qdict_get_try_str(qdict
, "device");
1179 device
= "tcp::" DEFAULT_GDBSTUB_PORT
;
1180 if (gdbserver_start(device
) < 0) {
1181 monitor_printf(mon
, "Could not open gdbserver on device '%s'\n",
1183 } else if (strcmp(device
, "none") == 0) {
1184 monitor_printf(mon
, "Disabled gdbserver\n");
1186 monitor_printf(mon
, "Waiting for gdb connection on device '%s'\n",
1191 static void do_watchdog_action(Monitor
*mon
, const QDict
*qdict
)
1193 const char *action
= qdict_get_str(qdict
, "action");
1194 if (select_watchdog_action(action
) == -1) {
1195 monitor_printf(mon
, "Unknown watchdog action '%s'\n", action
);
1199 static void monitor_printc(Monitor
*mon
, int c
)
1201 monitor_printf(mon
, "'");
1204 monitor_printf(mon
, "\\'");
1207 monitor_printf(mon
, "\\\\");
1210 monitor_printf(mon
, "\\n");
1213 monitor_printf(mon
, "\\r");
1216 if (c
>= 32 && c
<= 126) {
1217 monitor_printf(mon
, "%c", c
);
1219 monitor_printf(mon
, "\\x%02x", c
);
1223 monitor_printf(mon
, "'");
1226 static void memory_dump(Monitor
*mon
, int count
, int format
, int wsize
,
1227 target_phys_addr_t addr
, int is_physical
)
1230 int l
, line_size
, i
, max_digits
, len
;
1234 if (format
== 'i') {
1237 env
= mon_get_cpu();
1241 } else if (wsize
== 4) {
1244 /* as default we use the current CS size */
1247 #ifdef TARGET_X86_64
1248 if ((env
->efer
& MSR_EFER_LMA
) &&
1249 (env
->segs
[R_CS
].flags
& DESC_L_MASK
))
1253 if (!(env
->segs
[R_CS
].flags
& DESC_B_MASK
))
1258 monitor_disas(mon
, env
, addr
, count
, is_physical
, flags
);
1262 len
= wsize
* count
;
1271 max_digits
= (wsize
* 8 + 2) / 3;
1275 max_digits
= (wsize
* 8) / 4;
1279 max_digits
= (wsize
* 8 * 10 + 32) / 33;
1288 monitor_printf(mon
, TARGET_FMT_plx
":", addr
);
1290 monitor_printf(mon
, TARGET_FMT_lx
":", (target_ulong
)addr
);
1295 cpu_physical_memory_rw(addr
, buf
, l
, 0);
1297 env
= mon_get_cpu();
1298 if (cpu_memory_rw_debug(env
, addr
, buf
, l
, 0) < 0) {
1299 monitor_printf(mon
, " Cannot access memory\n");
1308 v
= ldub_raw(buf
+ i
);
1311 v
= lduw_raw(buf
+ i
);
1314 v
= (uint32_t)ldl_raw(buf
+ i
);
1317 v
= ldq_raw(buf
+ i
);
1320 monitor_printf(mon
, " ");
1323 monitor_printf(mon
, "%#*" PRIo64
, max_digits
, v
);
1326 monitor_printf(mon
, "0x%0*" PRIx64
, max_digits
, v
);
1329 monitor_printf(mon
, "%*" PRIu64
, max_digits
, v
);
1332 monitor_printf(mon
, "%*" PRId64
, max_digits
, v
);
1335 monitor_printc(mon
, v
);
1340 monitor_printf(mon
, "\n");
1346 static void do_memory_dump(Monitor
*mon
, const QDict
*qdict
)
1348 int count
= qdict_get_int(qdict
, "count");
1349 int format
= qdict_get_int(qdict
, "format");
1350 int size
= qdict_get_int(qdict
, "size");
1351 target_long addr
= qdict_get_int(qdict
, "addr");
1353 memory_dump(mon
, count
, format
, size
, addr
, 0);
1356 static void do_physical_memory_dump(Monitor
*mon
, const QDict
*qdict
)
1358 int count
= qdict_get_int(qdict
, "count");
1359 int format
= qdict_get_int(qdict
, "format");
1360 int size
= qdict_get_int(qdict
, "size");
1361 target_phys_addr_t addr
= qdict_get_int(qdict
, "addr");
1363 memory_dump(mon
, count
, format
, size
, addr
, 1);
1366 static void do_print(Monitor
*mon
, const QDict
*qdict
)
1368 int format
= qdict_get_int(qdict
, "format");
1369 target_phys_addr_t val
= qdict_get_int(qdict
, "val");
1371 #if TARGET_PHYS_ADDR_BITS == 32
1374 monitor_printf(mon
, "%#o", val
);
1377 monitor_printf(mon
, "%#x", val
);
1380 monitor_printf(mon
, "%u", val
);
1384 monitor_printf(mon
, "%d", val
);
1387 monitor_printc(mon
, val
);
1393 monitor_printf(mon
, "%#" PRIo64
, val
);
1396 monitor_printf(mon
, "%#" PRIx64
, val
);
1399 monitor_printf(mon
, "%" PRIu64
, val
);
1403 monitor_printf(mon
, "%" PRId64
, val
);
1406 monitor_printc(mon
, val
);
1410 monitor_printf(mon
, "\n");
1413 static int do_memory_save(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1416 uint32_t size
= qdict_get_int(qdict
, "size");
1417 const char *filename
= qdict_get_str(qdict
, "filename");
1418 target_long addr
= qdict_get_int(qdict
, "val");
1424 env
= mon_get_cpu();
1426 f
= fopen(filename
, "wb");
1428 qerror_report(QERR_OPEN_FILE_FAILED
, filename
);
1435 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
1436 if (fwrite(buf
, 1, l
, f
) != l
) {
1437 monitor_printf(mon
, "fwrite() error in do_memory_save\n");
1451 static int do_physical_memory_save(Monitor
*mon
, const QDict
*qdict
,
1457 uint32_t size
= qdict_get_int(qdict
, "size");
1458 const char *filename
= qdict_get_str(qdict
, "filename");
1459 target_phys_addr_t addr
= qdict_get_int(qdict
, "val");
1462 f
= fopen(filename
, "wb");
1464 qerror_report(QERR_OPEN_FILE_FAILED
, filename
);
1471 cpu_physical_memory_rw(addr
, buf
, l
, 0);
1472 if (fwrite(buf
, 1, l
, f
) != l
) {
1473 monitor_printf(mon
, "fwrite() error in do_physical_memory_save\n");
1488 static void do_sum(Monitor
*mon
, const QDict
*qdict
)
1493 uint32_t start
= qdict_get_int(qdict
, "start");
1494 uint32_t size
= qdict_get_int(qdict
, "size");
1497 for(addr
= start
; addr
< (start
+ size
); addr
++) {
1498 cpu_physical_memory_rw(addr
, buf
, 1, 0);
1499 /* BSD sum algorithm ('sum' Unix command) */
1500 sum
= (sum
>> 1) | (sum
<< 15);
1503 monitor_printf(mon
, "%05d\n", sum
);
1511 static const KeyDef key_defs
[] = {
1513 { 0x36, "shift_r" },
1518 { 0xe4, "altgr_r" },
1538 { 0x0e, "backspace" },
1551 { 0x1a, "bracket_left" },
1552 { 0x1b, "bracket_right" },
1564 { 0x27, "semicolon" },
1565 { 0x28, "apostrophe" },
1566 { 0x29, "grave_accent" },
1568 { 0x2b, "backslash" },
1580 { 0x37, "asterisk" },
1583 { 0x3a, "caps_lock" },
1594 { 0x45, "num_lock" },
1595 { 0x46, "scroll_lock" },
1597 { 0xb5, "kp_divide" },
1598 { 0x37, "kp_multiply" },
1599 { 0x4a, "kp_subtract" },
1601 { 0x9c, "kp_enter" },
1602 { 0x53, "kp_decimal" },
1635 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1650 { 0xfe, "compose" },
1655 static int get_keycode(const char *key
)
1661 for(p
= key_defs
; p
->name
!= NULL
; p
++) {
1662 if (!strcmp(key
, p
->name
))
1665 if (strstart(key
, "0x", NULL
)) {
1666 ret
= strtoul(key
, &endp
, 0);
1667 if (*endp
== '\0' && ret
>= 0x01 && ret
<= 0xff)
1673 #define MAX_KEYCODES 16
1674 static uint8_t keycodes
[MAX_KEYCODES
];
1675 static int nb_pending_keycodes
;
1676 static QEMUTimer
*key_timer
;
1678 static void release_keys(void *opaque
)
1682 while (nb_pending_keycodes
> 0) {
1683 nb_pending_keycodes
--;
1684 keycode
= keycodes
[nb_pending_keycodes
];
1686 kbd_put_keycode(0xe0);
1687 kbd_put_keycode(keycode
| 0x80);
1691 static void do_sendkey(Monitor
*mon
, const QDict
*qdict
)
1693 char keyname_buf
[16];
1695 int keyname_len
, keycode
, i
;
1696 const char *string
= qdict_get_str(qdict
, "string");
1697 int has_hold_time
= qdict_haskey(qdict
, "hold_time");
1698 int hold_time
= qdict_get_try_int(qdict
, "hold_time", -1);
1700 if (nb_pending_keycodes
> 0) {
1701 qemu_del_timer(key_timer
);
1708 separator
= strchr(string
, '-');
1709 keyname_len
= separator
? separator
- string
: strlen(string
);
1710 if (keyname_len
> 0) {
1711 pstrcpy(keyname_buf
, sizeof(keyname_buf
), string
);
1712 if (keyname_len
> sizeof(keyname_buf
) - 1) {
1713 monitor_printf(mon
, "invalid key: '%s...'\n", keyname_buf
);
1716 if (i
== MAX_KEYCODES
) {
1717 monitor_printf(mon
, "too many keys\n");
1720 keyname_buf
[keyname_len
] = 0;
1721 keycode
= get_keycode(keyname_buf
);
1723 monitor_printf(mon
, "unknown key: '%s'\n", keyname_buf
);
1726 keycodes
[i
++] = keycode
;
1730 string
= separator
+ 1;
1732 nb_pending_keycodes
= i
;
1733 /* key down events */
1734 for (i
= 0; i
< nb_pending_keycodes
; i
++) {
1735 keycode
= keycodes
[i
];
1737 kbd_put_keycode(0xe0);
1738 kbd_put_keycode(keycode
& 0x7f);
1740 /* delayed key up events */
1741 qemu_mod_timer(key_timer
, qemu_get_clock(vm_clock
) +
1742 muldiv64(get_ticks_per_sec(), hold_time
, 1000));
1745 static int mouse_button_state
;
1747 static void do_mouse_move(Monitor
*mon
, const QDict
*qdict
)
1750 const char *dx_str
= qdict_get_str(qdict
, "dx_str");
1751 const char *dy_str
= qdict_get_str(qdict
, "dy_str");
1752 const char *dz_str
= qdict_get_try_str(qdict
, "dz_str");
1753 dx
= strtol(dx_str
, NULL
, 0);
1754 dy
= strtol(dy_str
, NULL
, 0);
1757 dz
= strtol(dz_str
, NULL
, 0);
1758 kbd_mouse_event(dx
, dy
, dz
, mouse_button_state
);
1761 static void do_mouse_button(Monitor
*mon
, const QDict
*qdict
)
1763 int button_state
= qdict_get_int(qdict
, "button_state");
1764 mouse_button_state
= button_state
;
1765 kbd_mouse_event(0, 0, 0, mouse_button_state
);
1768 static void do_ioport_read(Monitor
*mon
, const QDict
*qdict
)
1770 int size
= qdict_get_int(qdict
, "size");
1771 int addr
= qdict_get_int(qdict
, "addr");
1772 int has_index
= qdict_haskey(qdict
, "index");
1777 int index
= qdict_get_int(qdict
, "index");
1778 cpu_outb(addr
& IOPORTS_MASK
, index
& 0xff);
1786 val
= cpu_inb(addr
);
1790 val
= cpu_inw(addr
);
1794 val
= cpu_inl(addr
);
1798 monitor_printf(mon
, "port%c[0x%04x] = %#0*x\n",
1799 suffix
, addr
, size
* 2, val
);
1802 static void do_ioport_write(Monitor
*mon
, const QDict
*qdict
)
1804 int size
= qdict_get_int(qdict
, "size");
1805 int addr
= qdict_get_int(qdict
, "addr");
1806 int val
= qdict_get_int(qdict
, "val");
1808 addr
&= IOPORTS_MASK
;
1813 cpu_outb(addr
, val
);
1816 cpu_outw(addr
, val
);
1819 cpu_outl(addr
, val
);
1824 static void do_boot_set(Monitor
*mon
, const QDict
*qdict
)
1827 const char *bootdevice
= qdict_get_str(qdict
, "bootdevice");
1829 res
= qemu_boot_set(bootdevice
);
1831 monitor_printf(mon
, "boot device list now set to %s\n", bootdevice
);
1832 } else if (res
> 0) {
1833 monitor_printf(mon
, "setting boot device list failed\n");
1835 monitor_printf(mon
, "no function defined to set boot device list for "
1836 "this architecture\n");
1841 * do_system_reset(): Issue a machine reset
1843 static int do_system_reset(Monitor
*mon
, const QDict
*qdict
,
1846 qemu_system_reset_request();
1851 * do_system_powerdown(): Issue a machine powerdown
1853 static int do_system_powerdown(Monitor
*mon
, const QDict
*qdict
,
1856 qemu_system_powerdown_request();
1860 #if defined(TARGET_I386)
1861 static void print_pte(Monitor
*mon
, uint32_t addr
, uint32_t pte
, uint32_t mask
)
1863 monitor_printf(mon
, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1866 pte
& PG_GLOBAL_MASK
? 'G' : '-',
1867 pte
& PG_PSE_MASK
? 'P' : '-',
1868 pte
& PG_DIRTY_MASK
? 'D' : '-',
1869 pte
& PG_ACCESSED_MASK
? 'A' : '-',
1870 pte
& PG_PCD_MASK
? 'C' : '-',
1871 pte
& PG_PWT_MASK
? 'T' : '-',
1872 pte
& PG_USER_MASK
? 'U' : '-',
1873 pte
& PG_RW_MASK
? 'W' : '-');
1876 static void tlb_info(Monitor
*mon
)
1880 uint32_t pgd
, pde
, pte
;
1882 env
= mon_get_cpu();
1884 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1885 monitor_printf(mon
, "PG disabled\n");
1888 pgd
= env
->cr
[3] & ~0xfff;
1889 for(l1
= 0; l1
< 1024; l1
++) {
1890 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1891 pde
= le32_to_cpu(pde
);
1892 if (pde
& PG_PRESENT_MASK
) {
1893 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1894 print_pte(mon
, (l1
<< 22), pde
, ~((1 << 20) - 1));
1896 for(l2
= 0; l2
< 1024; l2
++) {
1897 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1898 (uint8_t *)&pte
, 4);
1899 pte
= le32_to_cpu(pte
);
1900 if (pte
& PG_PRESENT_MASK
) {
1901 print_pte(mon
, (l1
<< 22) + (l2
<< 12),
1911 static void mem_print(Monitor
*mon
, uint32_t *pstart
, int *plast_prot
,
1912 uint32_t end
, int prot
)
1915 prot1
= *plast_prot
;
1916 if (prot
!= prot1
) {
1917 if (*pstart
!= -1) {
1918 monitor_printf(mon
, "%08x-%08x %08x %c%c%c\n",
1919 *pstart
, end
, end
- *pstart
,
1920 prot1
& PG_USER_MASK
? 'u' : '-',
1922 prot1
& PG_RW_MASK
? 'w' : '-');
1932 static void mem_info(Monitor
*mon
)
1935 int l1
, l2
, prot
, last_prot
;
1936 uint32_t pgd
, pde
, pte
, start
, end
;
1938 env
= mon_get_cpu();
1940 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1941 monitor_printf(mon
, "PG disabled\n");
1944 pgd
= env
->cr
[3] & ~0xfff;
1947 for(l1
= 0; l1
< 1024; l1
++) {
1948 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1949 pde
= le32_to_cpu(pde
);
1951 if (pde
& PG_PRESENT_MASK
) {
1952 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1953 prot
= pde
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1954 mem_print(mon
, &start
, &last_prot
, end
, prot
);
1956 for(l2
= 0; l2
< 1024; l2
++) {
1957 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1958 (uint8_t *)&pte
, 4);
1959 pte
= le32_to_cpu(pte
);
1960 end
= (l1
<< 22) + (l2
<< 12);
1961 if (pte
& PG_PRESENT_MASK
) {
1962 prot
= pte
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1966 mem_print(mon
, &start
, &last_prot
, end
, prot
);
1971 mem_print(mon
, &start
, &last_prot
, end
, prot
);
1977 #if defined(TARGET_SH4)
1979 static void print_tlb(Monitor
*mon
, int idx
, tlb_t
*tlb
)
1981 monitor_printf(mon
, " tlb%i:\t"
1982 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1983 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1984 "dirty=%hhu writethrough=%hhu\n",
1986 tlb
->asid
, tlb
->vpn
, tlb
->ppn
, tlb
->sz
, tlb
->size
,
1987 tlb
->v
, tlb
->sh
, tlb
->c
, tlb
->pr
,
1991 static void tlb_info(Monitor
*mon
)
1993 CPUState
*env
= mon_get_cpu();
1996 monitor_printf (mon
, "ITLB:\n");
1997 for (i
= 0 ; i
< ITLB_SIZE
; i
++)
1998 print_tlb (mon
, i
, &env
->itlb
[i
]);
1999 monitor_printf (mon
, "UTLB:\n");
2000 for (i
= 0 ; i
< UTLB_SIZE
; i
++)
2001 print_tlb (mon
, i
, &env
->utlb
[i
]);
2006 static void do_info_kvm_print(Monitor
*mon
, const QObject
*data
)
2010 qdict
= qobject_to_qdict(data
);
2012 monitor_printf(mon
, "kvm support: ");
2013 if (qdict_get_bool(qdict
, "present")) {
2014 monitor_printf(mon
, "%s\n", qdict_get_bool(qdict
, "enabled") ?
2015 "enabled" : "disabled");
2017 monitor_printf(mon
, "not compiled\n");
2021 static void do_info_kvm(Monitor
*mon
, QObject
**ret_data
)
2024 *ret_data
= qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
2027 *ret_data
= qobject_from_jsonf("{ 'enabled': false, 'present': false }");
2031 static void do_info_numa(Monitor
*mon
)
2036 monitor_printf(mon
, "%d nodes\n", nb_numa_nodes
);
2037 for (i
= 0; i
< nb_numa_nodes
; i
++) {
2038 monitor_printf(mon
, "node %d cpus:", i
);
2039 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
2040 if (env
->numa_node
== i
) {
2041 monitor_printf(mon
, " %d", env
->cpu_index
);
2044 monitor_printf(mon
, "\n");
2045 monitor_printf(mon
, "node %d size: %" PRId64
" MB\n", i
,
2050 #ifdef CONFIG_PROFILER
2055 static void do_info_profile(Monitor
*mon
)
2061 monitor_printf(mon
, "async time %" PRId64
" (%0.3f)\n",
2062 dev_time
, dev_time
/ (double)get_ticks_per_sec());
2063 monitor_printf(mon
, "qemu time %" PRId64
" (%0.3f)\n",
2064 qemu_time
, qemu_time
/ (double)get_ticks_per_sec());
2069 static void do_info_profile(Monitor
*mon
)
2071 monitor_printf(mon
, "Internal profiler not compiled\n");
2075 /* Capture support */
2076 static QLIST_HEAD (capture_list_head
, CaptureState
) capture_head
;
2078 static void do_info_capture(Monitor
*mon
)
2083 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
2084 monitor_printf(mon
, "[%d]: ", i
);
2085 s
->ops
.info (s
->opaque
);
2090 static void do_stop_capture(Monitor
*mon
, const QDict
*qdict
)
2093 int n
= qdict_get_int(qdict
, "n");
2096 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
2098 s
->ops
.destroy (s
->opaque
);
2099 QLIST_REMOVE (s
, entries
);
2106 static void do_wav_capture(Monitor
*mon
, const QDict
*qdict
)
2108 const char *path
= qdict_get_str(qdict
, "path");
2109 int has_freq
= qdict_haskey(qdict
, "freq");
2110 int freq
= qdict_get_try_int(qdict
, "freq", -1);
2111 int has_bits
= qdict_haskey(qdict
, "bits");
2112 int bits
= qdict_get_try_int(qdict
, "bits", -1);
2113 int has_channels
= qdict_haskey(qdict
, "nchannels");
2114 int nchannels
= qdict_get_try_int(qdict
, "nchannels", -1);
2117 s
= qemu_mallocz (sizeof (*s
));
2119 freq
= has_freq
? freq
: 44100;
2120 bits
= has_bits
? bits
: 16;
2121 nchannels
= has_channels
? nchannels
: 2;
2123 if (wav_start_capture (s
, path
, freq
, bits
, nchannels
)) {
2124 monitor_printf(mon
, "Faied to add wave capture\n");
2127 QLIST_INSERT_HEAD (&capture_head
, s
, entries
);
2131 #if defined(TARGET_I386)
2132 static void do_inject_nmi(Monitor
*mon
, const QDict
*qdict
)
2135 int cpu_index
= qdict_get_int(qdict
, "cpu_index");
2137 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
2138 if (env
->cpu_index
== cpu_index
) {
2139 cpu_interrupt(env
, CPU_INTERRUPT_NMI
);
2145 static void do_info_status_print(Monitor
*mon
, const QObject
*data
)
2149 qdict
= qobject_to_qdict(data
);
2151 monitor_printf(mon
, "VM status: ");
2152 if (qdict_get_bool(qdict
, "running")) {
2153 monitor_printf(mon
, "running");
2154 if (qdict_get_bool(qdict
, "singlestep")) {
2155 monitor_printf(mon
, " (single step mode)");
2158 monitor_printf(mon
, "paused");
2161 monitor_printf(mon
, "\n");
2164 static void do_info_status(Monitor
*mon
, QObject
**ret_data
)
2166 *ret_data
= qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2167 vm_running
, singlestep
);
2170 static qemu_acl
*find_acl(Monitor
*mon
, const char *name
)
2172 qemu_acl
*acl
= qemu_acl_find(name
);
2175 monitor_printf(mon
, "acl: unknown list '%s'\n", name
);
2180 static void do_acl_show(Monitor
*mon
, const QDict
*qdict
)
2182 const char *aclname
= qdict_get_str(qdict
, "aclname");
2183 qemu_acl
*acl
= find_acl(mon
, aclname
);
2184 qemu_acl_entry
*entry
;
2188 monitor_printf(mon
, "policy: %s\n",
2189 acl
->defaultDeny
? "deny" : "allow");
2190 QTAILQ_FOREACH(entry
, &acl
->entries
, next
) {
2192 monitor_printf(mon
, "%d: %s %s\n", i
,
2193 entry
->deny
? "deny" : "allow", entry
->match
);
2198 static void do_acl_reset(Monitor
*mon
, const QDict
*qdict
)
2200 const char *aclname
= qdict_get_str(qdict
, "aclname");
2201 qemu_acl
*acl
= find_acl(mon
, aclname
);
2204 qemu_acl_reset(acl
);
2205 monitor_printf(mon
, "acl: removed all rules\n");
2209 static void do_acl_policy(Monitor
*mon
, const QDict
*qdict
)
2211 const char *aclname
= qdict_get_str(qdict
, "aclname");
2212 const char *policy
= qdict_get_str(qdict
, "policy");
2213 qemu_acl
*acl
= find_acl(mon
, aclname
);
2216 if (strcmp(policy
, "allow") == 0) {
2217 acl
->defaultDeny
= 0;
2218 monitor_printf(mon
, "acl: policy set to 'allow'\n");
2219 } else if (strcmp(policy
, "deny") == 0) {
2220 acl
->defaultDeny
= 1;
2221 monitor_printf(mon
, "acl: policy set to 'deny'\n");
2223 monitor_printf(mon
, "acl: unknown policy '%s', "
2224 "expected 'deny' or 'allow'\n", policy
);
2229 static void do_acl_add(Monitor
*mon
, const QDict
*qdict
)
2231 const char *aclname
= qdict_get_str(qdict
, "aclname");
2232 const char *match
= qdict_get_str(qdict
, "match");
2233 const char *policy
= qdict_get_str(qdict
, "policy");
2234 int has_index
= qdict_haskey(qdict
, "index");
2235 int index
= qdict_get_try_int(qdict
, "index", -1);
2236 qemu_acl
*acl
= find_acl(mon
, aclname
);
2240 if (strcmp(policy
, "allow") == 0) {
2242 } else if (strcmp(policy
, "deny") == 0) {
2245 monitor_printf(mon
, "acl: unknown policy '%s', "
2246 "expected 'deny' or 'allow'\n", policy
);
2250 ret
= qemu_acl_insert(acl
, deny
, match
, index
);
2252 ret
= qemu_acl_append(acl
, deny
, match
);
2254 monitor_printf(mon
, "acl: unable to add acl entry\n");
2256 monitor_printf(mon
, "acl: added rule at position %d\n", ret
);
2260 static void do_acl_remove(Monitor
*mon
, const QDict
*qdict
)
2262 const char *aclname
= qdict_get_str(qdict
, "aclname");
2263 const char *match
= qdict_get_str(qdict
, "match");
2264 qemu_acl
*acl
= find_acl(mon
, aclname
);
2268 ret
= qemu_acl_remove(acl
, match
);
2270 monitor_printf(mon
, "acl: no matching acl entry\n");
2272 monitor_printf(mon
, "acl: removed rule at position %d\n", ret
);
2276 #if defined(TARGET_I386)
2277 static void do_inject_mce(Monitor
*mon
, const QDict
*qdict
)
2280 int cpu_index
= qdict_get_int(qdict
, "cpu_index");
2281 int bank
= qdict_get_int(qdict
, "bank");
2282 uint64_t status
= qdict_get_int(qdict
, "status");
2283 uint64_t mcg_status
= qdict_get_int(qdict
, "mcg_status");
2284 uint64_t addr
= qdict_get_int(qdict
, "addr");
2285 uint64_t misc
= qdict_get_int(qdict
, "misc");
2287 for (cenv
= first_cpu
; cenv
!= NULL
; cenv
= cenv
->next_cpu
)
2288 if (cenv
->cpu_index
== cpu_index
&& cenv
->mcg_cap
) {
2289 cpu_inject_x86_mce(cenv
, bank
, status
, mcg_status
, addr
, misc
);
2295 static int do_getfd(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
2297 const char *fdname
= qdict_get_str(qdict
, "fdname");
2301 fd
= qemu_chr_get_msgfd(mon
->chr
);
2303 qerror_report(QERR_FD_NOT_SUPPLIED
);
2307 if (qemu_isdigit(fdname
[0])) {
2308 qerror_report(QERR_INVALID_PARAMETER_VALUE
, "fdname",
2309 "a name not starting with a digit");
2313 QLIST_FOREACH(monfd
, &mon
->fds
, next
) {
2314 if (strcmp(monfd
->name
, fdname
) != 0) {
2323 monfd
= qemu_mallocz(sizeof(mon_fd_t
));
2324 monfd
->name
= qemu_strdup(fdname
);
2327 QLIST_INSERT_HEAD(&mon
->fds
, monfd
, next
);
2331 static int do_closefd(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
2333 const char *fdname
= qdict_get_str(qdict
, "fdname");
2336 QLIST_FOREACH(monfd
, &mon
->fds
, next
) {
2337 if (strcmp(monfd
->name
, fdname
) != 0) {
2341 QLIST_REMOVE(monfd
, next
);
2343 qemu_free(monfd
->name
);
2348 qerror_report(QERR_FD_NOT_FOUND
, fdname
);
2352 static void do_loadvm(Monitor
*mon
, const QDict
*qdict
)
2354 int saved_vm_running
= vm_running
;
2355 const char *name
= qdict_get_str(qdict
, "name");
2359 if (load_vmstate(name
) == 0 && saved_vm_running
) {
2364 int monitor_get_fd(Monitor
*mon
, const char *fdname
)
2368 QLIST_FOREACH(monfd
, &mon
->fds
, next
) {
2371 if (strcmp(monfd
->name
, fdname
) != 0) {
2377 /* caller takes ownership of fd */
2378 QLIST_REMOVE(monfd
, next
);
2379 qemu_free(monfd
->name
);
2388 static const mon_cmd_t mon_cmds
[] = {
2389 #include "hmp-commands.h"
2393 /* Please update hmp-commands.hx when adding or changing commands */
2394 static const mon_cmd_t info_cmds
[] = {
2399 .help
= "show the version of QEMU",
2400 .user_print
= do_info_version_print
,
2401 .mhandler
.info_new
= do_info_version
,
2407 .help
= "show the network state",
2408 .mhandler
.info
= do_info_network
,
2414 .help
= "show the character devices",
2415 .user_print
= qemu_chr_info_print
,
2416 .mhandler
.info_new
= qemu_chr_info
,
2422 .help
= "show the block devices",
2423 .user_print
= bdrv_info_print
,
2424 .mhandler
.info_new
= bdrv_info
,
2427 .name
= "blockstats",
2430 .help
= "show block device statistics",
2431 .user_print
= bdrv_stats_print
,
2432 .mhandler
.info_new
= bdrv_info_stats
,
2435 .name
= "registers",
2438 .help
= "show the cpu registers",
2439 .mhandler
.info
= do_info_registers
,
2445 .help
= "show infos for each CPU",
2446 .user_print
= monitor_print_cpus
,
2447 .mhandler
.info_new
= do_info_cpus
,
2453 .help
= "show the command line history",
2454 .mhandler
.info
= do_info_history
,
2460 .help
= "show the interrupts statistics (if available)",
2461 .mhandler
.info
= irq_info
,
2467 .help
= "show i8259 (PIC) state",
2468 .mhandler
.info
= pic_info
,
2474 .help
= "show PCI info",
2475 .user_print
= do_pci_info_print
,
2476 .mhandler
.info_new
= do_pci_info
,
2478 #if defined(TARGET_I386) || defined(TARGET_SH4)
2483 .help
= "show virtual to physical memory mappings",
2484 .mhandler
.info
= tlb_info
,
2487 #if defined(TARGET_I386)
2492 .help
= "show the active virtual memory mappings",
2493 .mhandler
.info
= mem_info
,
2500 .help
= "show dynamic compiler info",
2501 .mhandler
.info
= do_info_jit
,
2507 .help
= "show KVM information",
2508 .user_print
= do_info_kvm_print
,
2509 .mhandler
.info_new
= do_info_kvm
,
2515 .help
= "show NUMA information",
2516 .mhandler
.info
= do_info_numa
,
2522 .help
= "show guest USB devices",
2523 .mhandler
.info
= usb_info
,
2529 .help
= "show host USB devices",
2530 .mhandler
.info
= usb_host_info
,
2536 .help
= "show profiling information",
2537 .mhandler
.info
= do_info_profile
,
2543 .help
= "show capture information",
2544 .mhandler
.info
= do_info_capture
,
2547 .name
= "snapshots",
2550 .help
= "show the currently saved VM snapshots",
2551 .mhandler
.info
= do_info_snapshots
,
2557 .help
= "show the current VM status (running|paused)",
2558 .user_print
= do_info_status_print
,
2559 .mhandler
.info_new
= do_info_status
,
2565 .help
= "show guest PCMCIA status",
2566 .mhandler
.info
= pcmcia_info
,
2572 .help
= "show which guest mouse is receiving events",
2573 .user_print
= do_info_mice_print
,
2574 .mhandler
.info_new
= do_info_mice
,
2580 .help
= "show the vnc server status",
2581 .user_print
= do_info_vnc_print
,
2582 .mhandler
.info_new
= do_info_vnc
,
2584 #if defined(CONFIG_SPICE)
2589 .help
= "show the spice server status",
2590 .user_print
= do_info_spice_print
,
2591 .mhandler
.info_new
= do_info_spice
,
2598 .help
= "show the current VM name",
2599 .user_print
= do_info_name_print
,
2600 .mhandler
.info_new
= do_info_name
,
2606 .help
= "show the current VM UUID",
2607 .user_print
= do_info_uuid_print
,
2608 .mhandler
.info_new
= do_info_uuid
,
2610 #if defined(TARGET_PPC)
2615 .help
= "show CPU statistics",
2616 .mhandler
.info
= do_info_cpu_stats
,
2619 #if defined(CONFIG_SLIRP)
2624 .help
= "show user network stack connection states",
2625 .mhandler
.info
= do_info_usernet
,
2632 .help
= "show migration status",
2633 .user_print
= do_info_migrate_print
,
2634 .mhandler
.info_new
= do_info_migrate
,
2640 .help
= "show balloon information",
2641 .user_print
= monitor_print_balloon
,
2642 .mhandler
.info_async
= do_info_balloon
,
2643 .flags
= MONITOR_CMD_ASYNC
,
2649 .help
= "show device tree",
2650 .mhandler
.info
= do_info_qtree
,
2656 .help
= "show qdev device model list",
2657 .mhandler
.info
= do_info_qdm
,
2663 .help
= "show roms",
2664 .mhandler
.info
= do_info_roms
,
2666 #if defined(CONFIG_SIMPLE_TRACE)
2671 .help
= "show current contents of trace buffer",
2672 .mhandler
.info
= do_info_trace
,
2675 .name
= "trace-events",
2678 .help
= "show available trace-events & their state",
2679 .mhandler
.info
= do_info_trace_events
,
2687 static const mon_cmd_t qmp_cmds
[] = {
2688 #include "qmp-commands.h"
2692 static const mon_cmd_t qmp_query_cmds
[] = {
2697 .help
= "show the version of QEMU",
2698 .user_print
= do_info_version_print
,
2699 .mhandler
.info_new
= do_info_version
,
2705 .help
= "list QMP available commands",
2706 .user_print
= monitor_user_noop
,
2707 .mhandler
.info_new
= do_info_commands
,
2713 .help
= "show the character devices",
2714 .user_print
= qemu_chr_info_print
,
2715 .mhandler
.info_new
= qemu_chr_info
,
2721 .help
= "show the block devices",
2722 .user_print
= bdrv_info_print
,
2723 .mhandler
.info_new
= bdrv_info
,
2726 .name
= "blockstats",
2729 .help
= "show block device statistics",
2730 .user_print
= bdrv_stats_print
,
2731 .mhandler
.info_new
= bdrv_info_stats
,
2737 .help
= "show infos for each CPU",
2738 .user_print
= monitor_print_cpus
,
2739 .mhandler
.info_new
= do_info_cpus
,
2745 .help
= "show PCI info",
2746 .user_print
= do_pci_info_print
,
2747 .mhandler
.info_new
= do_pci_info
,
2753 .help
= "show KVM information",
2754 .user_print
= do_info_kvm_print
,
2755 .mhandler
.info_new
= do_info_kvm
,
2761 .help
= "show the current VM status (running|paused)",
2762 .user_print
= do_info_status_print
,
2763 .mhandler
.info_new
= do_info_status
,
2769 .help
= "show which guest mouse is receiving events",
2770 .user_print
= do_info_mice_print
,
2771 .mhandler
.info_new
= do_info_mice
,
2777 .help
= "show the vnc server status",
2778 .user_print
= do_info_vnc_print
,
2779 .mhandler
.info_new
= do_info_vnc
,
2781 #if defined(CONFIG_SPICE)
2786 .help
= "show the spice server status",
2787 .user_print
= do_info_spice_print
,
2788 .mhandler
.info_new
= do_info_spice
,
2795 .help
= "show the current VM name",
2796 .user_print
= do_info_name_print
,
2797 .mhandler
.info_new
= do_info_name
,
2803 .help
= "show the current VM UUID",
2804 .user_print
= do_info_uuid_print
,
2805 .mhandler
.info_new
= do_info_uuid
,
2811 .help
= "show migration status",
2812 .user_print
= do_info_migrate_print
,
2813 .mhandler
.info_new
= do_info_migrate
,
2819 .help
= "show balloon information",
2820 .user_print
= monitor_print_balloon
,
2821 .mhandler
.info_async
= do_info_balloon
,
2822 .flags
= MONITOR_CMD_ASYNC
,
2827 /*******************************************************************/
2829 static const char *pch
;
2830 static jmp_buf expr_env
;
2835 typedef struct MonitorDef
{
2838 target_long (*get_value
)(const struct MonitorDef
*md
, int val
);
2842 #if defined(TARGET_I386)
2843 static target_long
monitor_get_pc (const struct MonitorDef
*md
, int val
)
2845 CPUState
*env
= mon_get_cpu();
2846 return env
->eip
+ env
->segs
[R_CS
].base
;
2850 #if defined(TARGET_PPC)
2851 static target_long
monitor_get_ccr (const struct MonitorDef
*md
, int val
)
2853 CPUState
*env
= mon_get_cpu();
2858 for (i
= 0; i
< 8; i
++)
2859 u
|= env
->crf
[i
] << (32 - (4 * i
));
2864 static target_long
monitor_get_msr (const struct MonitorDef
*md
, int val
)
2866 CPUState
*env
= mon_get_cpu();
2870 static target_long
monitor_get_xer (const struct MonitorDef
*md
, int val
)
2872 CPUState
*env
= mon_get_cpu();
2876 static target_long
monitor_get_decr (const struct MonitorDef
*md
, int val
)
2878 CPUState
*env
= mon_get_cpu();
2879 return cpu_ppc_load_decr(env
);
2882 static target_long
monitor_get_tbu (const struct MonitorDef
*md
, int val
)
2884 CPUState
*env
= mon_get_cpu();
2885 return cpu_ppc_load_tbu(env
);
2888 static target_long
monitor_get_tbl (const struct MonitorDef
*md
, int val
)
2890 CPUState
*env
= mon_get_cpu();
2891 return cpu_ppc_load_tbl(env
);
2895 #if defined(TARGET_SPARC)
2896 #ifndef TARGET_SPARC64
2897 static target_long
monitor_get_psr (const struct MonitorDef
*md
, int val
)
2899 CPUState
*env
= mon_get_cpu();
2901 return cpu_get_psr(env
);
2905 static target_long
monitor_get_reg(const struct MonitorDef
*md
, int val
)
2907 CPUState
*env
= mon_get_cpu();
2908 return env
->regwptr
[val
];
2912 static const MonitorDef monitor_defs
[] = {
2915 #define SEG(name, seg) \
2916 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
2917 { name ".base", offsetof(CPUState, segs[seg].base) },\
2918 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
2920 { "eax", offsetof(CPUState
, regs
[0]) },
2921 { "ecx", offsetof(CPUState
, regs
[1]) },
2922 { "edx", offsetof(CPUState
, regs
[2]) },
2923 { "ebx", offsetof(CPUState
, regs
[3]) },
2924 { "esp|sp", offsetof(CPUState
, regs
[4]) },
2925 { "ebp|fp", offsetof(CPUState
, regs
[5]) },
2926 { "esi", offsetof(CPUState
, regs
[6]) },
2927 { "edi", offsetof(CPUState
, regs
[7]) },
2928 #ifdef TARGET_X86_64
2929 { "r8", offsetof(CPUState
, regs
[8]) },
2930 { "r9", offsetof(CPUState
, regs
[9]) },
2931 { "r10", offsetof(CPUState
, regs
[10]) },
2932 { "r11", offsetof(CPUState
, regs
[11]) },
2933 { "r12", offsetof(CPUState
, regs
[12]) },
2934 { "r13", offsetof(CPUState
, regs
[13]) },
2935 { "r14", offsetof(CPUState
, regs
[14]) },
2936 { "r15", offsetof(CPUState
, regs
[15]) },
2938 { "eflags", offsetof(CPUState
, eflags
) },
2939 { "eip", offsetof(CPUState
, eip
) },
2946 { "pc", 0, monitor_get_pc
, },
2947 #elif defined(TARGET_PPC)
2948 /* General purpose registers */
2949 { "r0", offsetof(CPUState
, gpr
[0]) },
2950 { "r1", offsetof(CPUState
, gpr
[1]) },
2951 { "r2", offsetof(CPUState
, gpr
[2]) },
2952 { "r3", offsetof(CPUState
, gpr
[3]) },
2953 { "r4", offsetof(CPUState
, gpr
[4]) },
2954 { "r5", offsetof(CPUState
, gpr
[5]) },
2955 { "r6", offsetof(CPUState
, gpr
[6]) },
2956 { "r7", offsetof(CPUState
, gpr
[7]) },
2957 { "r8", offsetof(CPUState
, gpr
[8]) },
2958 { "r9", offsetof(CPUState
, gpr
[9]) },
2959 { "r10", offsetof(CPUState
, gpr
[10]) },
2960 { "r11", offsetof(CPUState
, gpr
[11]) },
2961 { "r12", offsetof(CPUState
, gpr
[12]) },
2962 { "r13", offsetof(CPUState
, gpr
[13]) },
2963 { "r14", offsetof(CPUState
, gpr
[14]) },
2964 { "r15", offsetof(CPUState
, gpr
[15]) },
2965 { "r16", offsetof(CPUState
, gpr
[16]) },
2966 { "r17", offsetof(CPUState
, gpr
[17]) },
2967 { "r18", offsetof(CPUState
, gpr
[18]) },
2968 { "r19", offsetof(CPUState
, gpr
[19]) },
2969 { "r20", offsetof(CPUState
, gpr
[20]) },
2970 { "r21", offsetof(CPUState
, gpr
[21]) },
2971 { "r22", offsetof(CPUState
, gpr
[22]) },
2972 { "r23", offsetof(CPUState
, gpr
[23]) },
2973 { "r24", offsetof(CPUState
, gpr
[24]) },
2974 { "r25", offsetof(CPUState
, gpr
[25]) },
2975 { "r26", offsetof(CPUState
, gpr
[26]) },
2976 { "r27", offsetof(CPUState
, gpr
[27]) },
2977 { "r28", offsetof(CPUState
, gpr
[28]) },
2978 { "r29", offsetof(CPUState
, gpr
[29]) },
2979 { "r30", offsetof(CPUState
, gpr
[30]) },
2980 { "r31", offsetof(CPUState
, gpr
[31]) },
2981 /* Floating point registers */
2982 { "f0", offsetof(CPUState
, fpr
[0]) },
2983 { "f1", offsetof(CPUState
, fpr
[1]) },
2984 { "f2", offsetof(CPUState
, fpr
[2]) },
2985 { "f3", offsetof(CPUState
, fpr
[3]) },
2986 { "f4", offsetof(CPUState
, fpr
[4]) },
2987 { "f5", offsetof(CPUState
, fpr
[5]) },
2988 { "f6", offsetof(CPUState
, fpr
[6]) },
2989 { "f7", offsetof(CPUState
, fpr
[7]) },
2990 { "f8", offsetof(CPUState
, fpr
[8]) },
2991 { "f9", offsetof(CPUState
, fpr
[9]) },
2992 { "f10", offsetof(CPUState
, fpr
[10]) },
2993 { "f11", offsetof(CPUState
, fpr
[11]) },
2994 { "f12", offsetof(CPUState
, fpr
[12]) },
2995 { "f13", offsetof(CPUState
, fpr
[13]) },
2996 { "f14", offsetof(CPUState
, fpr
[14]) },
2997 { "f15", offsetof(CPUState
, fpr
[15]) },
2998 { "f16", offsetof(CPUState
, fpr
[16]) },
2999 { "f17", offsetof(CPUState
, fpr
[17]) },
3000 { "f18", offsetof(CPUState
, fpr
[18]) },
3001 { "f19", offsetof(CPUState
, fpr
[19]) },
3002 { "f20", offsetof(CPUState
, fpr
[20]) },
3003 { "f21", offsetof(CPUState
, fpr
[21]) },
3004 { "f22", offsetof(CPUState
, fpr
[22]) },
3005 { "f23", offsetof(CPUState
, fpr
[23]) },
3006 { "f24", offsetof(CPUState
, fpr
[24]) },
3007 { "f25", offsetof(CPUState
, fpr
[25]) },
3008 { "f26", offsetof(CPUState
, fpr
[26]) },
3009 { "f27", offsetof(CPUState
, fpr
[27]) },
3010 { "f28", offsetof(CPUState
, fpr
[28]) },
3011 { "f29", offsetof(CPUState
, fpr
[29]) },
3012 { "f30", offsetof(CPUState
, fpr
[30]) },
3013 { "f31", offsetof(CPUState
, fpr
[31]) },
3014 { "fpscr", offsetof(CPUState
, fpscr
) },
3015 /* Next instruction pointer */
3016 { "nip|pc", offsetof(CPUState
, nip
) },
3017 { "lr", offsetof(CPUState
, lr
) },
3018 { "ctr", offsetof(CPUState
, ctr
) },
3019 { "decr", 0, &monitor_get_decr
, },
3020 { "ccr", 0, &monitor_get_ccr
, },
3021 /* Machine state register */
3022 { "msr", 0, &monitor_get_msr
, },
3023 { "xer", 0, &monitor_get_xer
, },
3024 { "tbu", 0, &monitor_get_tbu
, },
3025 { "tbl", 0, &monitor_get_tbl
, },
3026 #if defined(TARGET_PPC64)
3027 /* Address space register */
3028 { "asr", offsetof(CPUState
, asr
) },
3030 /* Segment registers */
3031 { "sdr1", offsetof(CPUState
, sdr1
) },
3032 { "sr0", offsetof(CPUState
, sr
[0]) },
3033 { "sr1", offsetof(CPUState
, sr
[1]) },
3034 { "sr2", offsetof(CPUState
, sr
[2]) },
3035 { "sr3", offsetof(CPUState
, sr
[3]) },
3036 { "sr4", offsetof(CPUState
, sr
[4]) },
3037 { "sr5", offsetof(CPUState
, sr
[5]) },
3038 { "sr6", offsetof(CPUState
, sr
[6]) },
3039 { "sr7", offsetof(CPUState
, sr
[7]) },
3040 { "sr8", offsetof(CPUState
, sr
[8]) },
3041 { "sr9", offsetof(CPUState
, sr
[9]) },
3042 { "sr10", offsetof(CPUState
, sr
[10]) },
3043 { "sr11", offsetof(CPUState
, sr
[11]) },
3044 { "sr12", offsetof(CPUState
, sr
[12]) },
3045 { "sr13", offsetof(CPUState
, sr
[13]) },
3046 { "sr14", offsetof(CPUState
, sr
[14]) },
3047 { "sr15", offsetof(CPUState
, sr
[15]) },
3048 /* Too lazy to put BATs and SPRs ... */
3049 #elif defined(TARGET_SPARC)
3050 { "g0", offsetof(CPUState
, gregs
[0]) },
3051 { "g1", offsetof(CPUState
, gregs
[1]) },
3052 { "g2", offsetof(CPUState
, gregs
[2]) },
3053 { "g3", offsetof(CPUState
, gregs
[3]) },
3054 { "g4", offsetof(CPUState
, gregs
[4]) },
3055 { "g5", offsetof(CPUState
, gregs
[5]) },
3056 { "g6", offsetof(CPUState
, gregs
[6]) },
3057 { "g7", offsetof(CPUState
, gregs
[7]) },
3058 { "o0", 0, monitor_get_reg
},
3059 { "o1", 1, monitor_get_reg
},
3060 { "o2", 2, monitor_get_reg
},
3061 { "o3", 3, monitor_get_reg
},
3062 { "o4", 4, monitor_get_reg
},
3063 { "o5", 5, monitor_get_reg
},
3064 { "o6", 6, monitor_get_reg
},
3065 { "o7", 7, monitor_get_reg
},
3066 { "l0", 8, monitor_get_reg
},
3067 { "l1", 9, monitor_get_reg
},
3068 { "l2", 10, monitor_get_reg
},
3069 { "l3", 11, monitor_get_reg
},
3070 { "l4", 12, monitor_get_reg
},
3071 { "l5", 13, monitor_get_reg
},
3072 { "l6", 14, monitor_get_reg
},
3073 { "l7", 15, monitor_get_reg
},
3074 { "i0", 16, monitor_get_reg
},
3075 { "i1", 17, monitor_get_reg
},
3076 { "i2", 18, monitor_get_reg
},
3077 { "i3", 19, monitor_get_reg
},
3078 { "i4", 20, monitor_get_reg
},
3079 { "i5", 21, monitor_get_reg
},
3080 { "i6", 22, monitor_get_reg
},
3081 { "i7", 23, monitor_get_reg
},
3082 { "pc", offsetof(CPUState
, pc
) },
3083 { "npc", offsetof(CPUState
, npc
) },
3084 { "y", offsetof(CPUState
, y
) },
3085 #ifndef TARGET_SPARC64
3086 { "psr", 0, &monitor_get_psr
, },
3087 { "wim", offsetof(CPUState
, wim
) },
3089 { "tbr", offsetof(CPUState
, tbr
) },
3090 { "fsr", offsetof(CPUState
, fsr
) },
3091 { "f0", offsetof(CPUState
, fpr
[0]) },
3092 { "f1", offsetof(CPUState
, fpr
[1]) },
3093 { "f2", offsetof(CPUState
, fpr
[2]) },
3094 { "f3", offsetof(CPUState
, fpr
[3]) },
3095 { "f4", offsetof(CPUState
, fpr
[4]) },
3096 { "f5", offsetof(CPUState
, fpr
[5]) },
3097 { "f6", offsetof(CPUState
, fpr
[6]) },
3098 { "f7", offsetof(CPUState
, fpr
[7]) },
3099 { "f8", offsetof(CPUState
, fpr
[8]) },
3100 { "f9", offsetof(CPUState
, fpr
[9]) },
3101 { "f10", offsetof(CPUState
, fpr
[10]) },
3102 { "f11", offsetof(CPUState
, fpr
[11]) },
3103 { "f12", offsetof(CPUState
, fpr
[12]) },
3104 { "f13", offsetof(CPUState
, fpr
[13]) },
3105 { "f14", offsetof(CPUState
, fpr
[14]) },
3106 { "f15", offsetof(CPUState
, fpr
[15]) },
3107 { "f16", offsetof(CPUState
, fpr
[16]) },
3108 { "f17", offsetof(CPUState
, fpr
[17]) },
3109 { "f18", offsetof(CPUState
, fpr
[18]) },
3110 { "f19", offsetof(CPUState
, fpr
[19]) },
3111 { "f20", offsetof(CPUState
, fpr
[20]) },
3112 { "f21", offsetof(CPUState
, fpr
[21]) },
3113 { "f22", offsetof(CPUState
, fpr
[22]) },
3114 { "f23", offsetof(CPUState
, fpr
[23]) },
3115 { "f24", offsetof(CPUState
, fpr
[24]) },
3116 { "f25", offsetof(CPUState
, fpr
[25]) },
3117 { "f26", offsetof(CPUState
, fpr
[26]) },
3118 { "f27", offsetof(CPUState
, fpr
[27]) },
3119 { "f28", offsetof(CPUState
, fpr
[28]) },
3120 { "f29", offsetof(CPUState
, fpr
[29]) },
3121 { "f30", offsetof(CPUState
, fpr
[30]) },
3122 { "f31", offsetof(CPUState
, fpr
[31]) },
3123 #ifdef TARGET_SPARC64
3124 { "f32", offsetof(CPUState
, fpr
[32]) },
3125 { "f34", offsetof(CPUState
, fpr
[34]) },
3126 { "f36", offsetof(CPUState
, fpr
[36]) },
3127 { "f38", offsetof(CPUState
, fpr
[38]) },
3128 { "f40", offsetof(CPUState
, fpr
[40]) },
3129 { "f42", offsetof(CPUState
, fpr
[42]) },
3130 { "f44", offsetof(CPUState
, fpr
[44]) },
3131 { "f46", offsetof(CPUState
, fpr
[46]) },
3132 { "f48", offsetof(CPUState
, fpr
[48]) },
3133 { "f50", offsetof(CPUState
, fpr
[50]) },
3134 { "f52", offsetof(CPUState
, fpr
[52]) },
3135 { "f54", offsetof(CPUState
, fpr
[54]) },
3136 { "f56", offsetof(CPUState
, fpr
[56]) },
3137 { "f58", offsetof(CPUState
, fpr
[58]) },
3138 { "f60", offsetof(CPUState
, fpr
[60]) },
3139 { "f62", offsetof(CPUState
, fpr
[62]) },
3140 { "asi", offsetof(CPUState
, asi
) },
3141 { "pstate", offsetof(CPUState
, pstate
) },
3142 { "cansave", offsetof(CPUState
, cansave
) },
3143 { "canrestore", offsetof(CPUState
, canrestore
) },
3144 { "otherwin", offsetof(CPUState
, otherwin
) },
3145 { "wstate", offsetof(CPUState
, wstate
) },
3146 { "cleanwin", offsetof(CPUState
, cleanwin
) },
3147 { "fprs", offsetof(CPUState
, fprs
) },
3153 static void expr_error(Monitor
*mon
, const char *msg
)
3155 monitor_printf(mon
, "%s\n", msg
);
3156 longjmp(expr_env
, 1);
3159 /* return 0 if OK, -1 if not found */
3160 static int get_monitor_def(target_long
*pval
, const char *name
)
3162 const MonitorDef
*md
;
3165 for(md
= monitor_defs
; md
->name
!= NULL
; md
++) {
3166 if (compare_cmd(name
, md
->name
)) {
3167 if (md
->get_value
) {
3168 *pval
= md
->get_value(md
, md
->offset
);
3170 CPUState
*env
= mon_get_cpu();
3171 ptr
= (uint8_t *)env
+ md
->offset
;
3174 *pval
= *(int32_t *)ptr
;
3177 *pval
= *(target_long
*)ptr
;
3190 static void next(void)
3194 while (qemu_isspace(*pch
))
3199 static int64_t expr_sum(Monitor
*mon
);
3201 static int64_t expr_unary(Monitor
*mon
)
3210 n
= expr_unary(mon
);
3214 n
= -expr_unary(mon
);
3218 n
= ~expr_unary(mon
);
3224 expr_error(mon
, "')' expected");
3231 expr_error(mon
, "character constant expected");
3235 expr_error(mon
, "missing terminating \' character");
3245 while ((*pch
>= 'a' && *pch
<= 'z') ||
3246 (*pch
>= 'A' && *pch
<= 'Z') ||
3247 (*pch
>= '0' && *pch
<= '9') ||
3248 *pch
== '_' || *pch
== '.') {
3249 if ((q
- buf
) < sizeof(buf
) - 1)
3253 while (qemu_isspace(*pch
))
3256 ret
= get_monitor_def(®
, buf
);
3258 expr_error(mon
, "unknown register");
3263 expr_error(mon
, "unexpected end of expression");
3267 #if TARGET_PHYS_ADDR_BITS > 32
3268 n
= strtoull(pch
, &p
, 0);
3270 n
= strtoul(pch
, &p
, 0);
3273 expr_error(mon
, "invalid char in expression");
3276 while (qemu_isspace(*pch
))
3284 static int64_t expr_prod(Monitor
*mon
)
3289 val
= expr_unary(mon
);
3292 if (op
!= '*' && op
!= '/' && op
!= '%')
3295 val2
= expr_unary(mon
);
3304 expr_error(mon
, "division by zero");
3315 static int64_t expr_logic(Monitor
*mon
)
3320 val
= expr_prod(mon
);
3323 if (op
!= '&' && op
!= '|' && op
!= '^')
3326 val2
= expr_prod(mon
);
3343 static int64_t expr_sum(Monitor
*mon
)
3348 val
= expr_logic(mon
);
3351 if (op
!= '+' && op
!= '-')
3354 val2
= expr_logic(mon
);
3363 static int get_expr(Monitor
*mon
, int64_t *pval
, const char **pp
)
3366 if (setjmp(expr_env
)) {
3370 while (qemu_isspace(*pch
))
3372 *pval
= expr_sum(mon
);
3377 static int get_double(Monitor
*mon
, double *pval
, const char **pp
)
3379 const char *p
= *pp
;
3383 d
= strtod(p
, &tailp
);
3385 monitor_printf(mon
, "Number expected\n");
3388 if (d
!= d
|| d
- d
!= 0) {
3389 /* NaN or infinity */
3390 monitor_printf(mon
, "Bad number\n");
3398 static int get_str(char *buf
, int buf_size
, const char **pp
)
3406 while (qemu_isspace(*p
))
3416 while (*p
!= '\0' && *p
!= '\"') {
3432 qemu_printf("unsupported escape code: '\\%c'\n", c
);
3435 if ((q
- buf
) < buf_size
- 1) {
3439 if ((q
- buf
) < buf_size
- 1) {
3446 qemu_printf("unterminated string\n");
3451 while (*p
!= '\0' && !qemu_isspace(*p
)) {
3452 if ((q
- buf
) < buf_size
- 1) {
3464 * Store the command-name in cmdname, and return a pointer to
3465 * the remaining of the command string.
3467 static const char *get_command_name(const char *cmdline
,
3468 char *cmdname
, size_t nlen
)
3471 const char *p
, *pstart
;
3474 while (qemu_isspace(*p
))
3479 while (*p
!= '\0' && *p
!= '/' && !qemu_isspace(*p
))
3484 memcpy(cmdname
, pstart
, len
);
3485 cmdname
[len
] = '\0';
3490 * Read key of 'type' into 'key' and return the current
3493 static char *key_get_info(const char *type
, char **key
)
3501 p
= strchr(type
, ':');
3508 str
= qemu_malloc(len
+ 1);
3509 memcpy(str
, type
, len
);
3516 static int default_fmt_format
= 'x';
3517 static int default_fmt_size
= 4;
3521 static int is_valid_option(const char *c
, const char *typestr
)
3529 typestr
= strstr(typestr
, option
);
3530 return (typestr
!= NULL
);
3533 static const mon_cmd_t
*search_dispatch_table(const mon_cmd_t
*disp_table
,
3534 const char *cmdname
)
3536 const mon_cmd_t
*cmd
;
3538 for (cmd
= disp_table
; cmd
->name
!= NULL
; cmd
++) {
3539 if (compare_cmd(cmdname
, cmd
->name
)) {
3547 static const mon_cmd_t
*monitor_find_command(const char *cmdname
)
3549 return search_dispatch_table(mon_cmds
, cmdname
);
3552 static const mon_cmd_t
*qmp_find_query_cmd(const char *info_item
)
3554 return search_dispatch_table(qmp_query_cmds
, info_item
);
3557 static const mon_cmd_t
*qmp_find_cmd(const char *cmdname
)
3559 return search_dispatch_table(qmp_cmds
, cmdname
);
3562 static const mon_cmd_t
*monitor_parse_command(Monitor
*mon
,
3563 const char *cmdline
,
3566 const char *p
, *typestr
;
3568 const mon_cmd_t
*cmd
;
3574 monitor_printf(mon
, "command='%s'\n", cmdline
);
3577 /* extract the command name */
3578 p
= get_command_name(cmdline
, cmdname
, sizeof(cmdname
));
3582 cmd
= monitor_find_command(cmdname
);
3584 monitor_printf(mon
, "unknown command: '%s'\n", cmdname
);
3588 /* parse the parameters */
3589 typestr
= cmd
->args_type
;
3591 typestr
= key_get_info(typestr
, &key
);
3603 while (qemu_isspace(*p
))
3605 if (*typestr
== '?') {
3608 /* no optional string: NULL argument */
3612 ret
= get_str(buf
, sizeof(buf
), &p
);
3616 monitor_printf(mon
, "%s: filename expected\n",
3620 monitor_printf(mon
, "%s: block device name expected\n",
3624 monitor_printf(mon
, "%s: string expected\n", cmdname
);
3629 qdict_put(qdict
, key
, qstring_from_str(buf
));
3634 QemuOptsList
*opts_list
;
3637 opts_list
= qemu_find_opts(key
);
3638 if (!opts_list
|| opts_list
->desc
->name
) {
3641 while (qemu_isspace(*p
)) {
3646 if (get_str(buf
, sizeof(buf
), &p
) < 0) {
3649 opts
= qemu_opts_parse(opts_list
, buf
, 1);
3653 qemu_opts_to_qdict(opts
, qdict
);
3654 qemu_opts_del(opts
);
3659 int count
, format
, size
;
3661 while (qemu_isspace(*p
))
3667 if (qemu_isdigit(*p
)) {
3669 while (qemu_isdigit(*p
)) {
3670 count
= count
* 10 + (*p
- '0');
3708 if (*p
!= '\0' && !qemu_isspace(*p
)) {
3709 monitor_printf(mon
, "invalid char in format: '%c'\n",
3714 format
= default_fmt_format
;
3715 if (format
!= 'i') {
3716 /* for 'i', not specifying a size gives -1 as size */
3718 size
= default_fmt_size
;
3719 default_fmt_size
= size
;
3721 default_fmt_format
= format
;
3724 format
= default_fmt_format
;
3725 if (format
!= 'i') {
3726 size
= default_fmt_size
;
3731 qdict_put(qdict
, "count", qint_from_int(count
));
3732 qdict_put(qdict
, "format", qint_from_int(format
));
3733 qdict_put(qdict
, "size", qint_from_int(size
));
3742 while (qemu_isspace(*p
))
3744 if (*typestr
== '?' || *typestr
== '.') {
3745 if (*typestr
== '?') {
3753 while (qemu_isspace(*p
))
3762 if (get_expr(mon
, &val
, &p
))
3764 /* Check if 'i' is greater than 32-bit */
3765 if ((c
== 'i') && ((val
>> 32) & 0xffffffff)) {
3766 monitor_printf(mon
, "\'%s\' has failed: ", cmdname
);
3767 monitor_printf(mon
, "integer is for 32-bit values\n");
3769 } else if (c
== 'M') {
3772 qdict_put(qdict
, key
, qint_from_int(val
));
3780 while (qemu_isspace(*p
)) {
3783 if (*typestr
== '?') {
3789 val
= strtosz(p
, &end
);
3791 monitor_printf(mon
, "invalid size\n");
3794 qdict_put(qdict
, key
, qint_from_int(val
));
3802 while (qemu_isspace(*p
))
3804 if (*typestr
== '?') {
3810 if (get_double(mon
, &val
, &p
) < 0) {
3813 if (p
[0] && p
[1] == 's') {
3816 val
/= 1e3
; p
+= 2; break;
3818 val
/= 1e6
; p
+= 2; break;
3820 val
/= 1e9
; p
+= 2; break;
3823 if (*p
&& !qemu_isspace(*p
)) {
3824 monitor_printf(mon
, "Unknown unit suffix\n");
3827 qdict_put(qdict
, key
, qfloat_from_double(val
));
3835 while (qemu_isspace(*p
)) {
3839 while (qemu_isgraph(*p
)) {
3842 if (p
- beg
== 2 && !memcmp(beg
, "on", p
- beg
)) {
3844 } else if (p
- beg
== 3 && !memcmp(beg
, "off", p
- beg
)) {
3847 monitor_printf(mon
, "Expected 'on' or 'off'\n");
3850 qdict_put(qdict
, key
, qbool_from_int(val
));
3855 const char *tmp
= p
;
3862 while (qemu_isspace(*p
))
3867 if(!is_valid_option(p
, typestr
)) {
3869 monitor_printf(mon
, "%s: unsupported option -%c\n",
3881 qdict_put(qdict
, key
, qbool_from_int(1));
3888 monitor_printf(mon
, "%s: unknown type '%c'\n", cmdname
, c
);
3894 /* check that all arguments were parsed */
3895 while (qemu_isspace(*p
))
3898 monitor_printf(mon
, "%s: extraneous characters at the end of line\n",
3910 void monitor_set_error(Monitor
*mon
, QError
*qerror
)
3912 /* report only the first error */
3914 mon
->error
= qerror
;
3916 MON_DEBUG("Additional error report at %s:%d\n",
3917 qerror
->file
, qerror
->linenr
);
3922 static void handler_audit(Monitor
*mon
, const mon_cmd_t
*cmd
, int ret
)
3924 if (monitor_ctrl_mode(mon
)) {
3925 if (ret
&& !monitor_has_error(mon
)) {
3927 * If it returns failure, it must have passed on error.
3929 * Action: Report an internal error to the client if in QMP.
3931 qerror_report(QERR_UNDEFINED_ERROR
);
3932 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
3936 #ifdef CONFIG_DEBUG_MONITOR
3937 if (!ret
&& monitor_has_error(mon
)) {
3939 * If it returns success, it must not have passed an error.
3941 * Action: Report the passed error to the client.
3943 MON_DEBUG("command '%s' returned success but passed an error\n",
3947 if (mon_print_count_get(mon
) > 0 && strcmp(cmd
->name
, "info") != 0) {
3949 * Handlers should not call Monitor print functions.
3951 * Action: Ignore them in QMP.
3953 * (XXX: we don't check any 'info' or 'query' command here
3954 * because the user print function _is_ called by do_info(), hence
3955 * we will trigger this check. This problem will go away when we
3956 * make 'query' commands real and kill do_info())
3958 MON_DEBUG("command '%s' called print functions %d time(s)\n",
3959 cmd
->name
, mon_print_count_get(mon
));
3963 assert(!monitor_has_error(mon
));
3964 QDECREF(mon
->error
);
3969 static void handle_user_command(Monitor
*mon
, const char *cmdline
)
3972 const mon_cmd_t
*cmd
;
3974 qdict
= qdict_new();
3976 cmd
= monitor_parse_command(mon
, cmdline
, qdict
);
3980 if (handler_is_async(cmd
)) {
3981 user_async_cmd_handler(mon
, cmd
, qdict
);
3982 } else if (handler_is_qobject(cmd
)) {
3983 QObject
*data
= NULL
;
3985 /* XXX: ignores the error code */
3986 cmd
->mhandler
.cmd_new(mon
, qdict
, &data
);
3987 assert(!monitor_has_error(mon
));
3989 cmd
->user_print(mon
, data
);
3990 qobject_decref(data
);
3993 cmd
->mhandler
.cmd(mon
, qdict
);
4000 static void cmd_completion(const char *name
, const char *list
)
4002 const char *p
, *pstart
;
4011 p
= pstart
+ strlen(pstart
);
4013 if (len
> sizeof(cmd
) - 2)
4014 len
= sizeof(cmd
) - 2;
4015 memcpy(cmd
, pstart
, len
);
4017 if (name
[0] == '\0' || !strncmp(name
, cmd
, strlen(name
))) {
4018 readline_add_completion(cur_mon
->rs
, cmd
);
4026 static void file_completion(const char *input
)
4031 char file
[1024], file_prefix
[1024];
4035 p
= strrchr(input
, '/');
4038 pstrcpy(file_prefix
, sizeof(file_prefix
), input
);
4039 pstrcpy(path
, sizeof(path
), ".");
4041 input_path_len
= p
- input
+ 1;
4042 memcpy(path
, input
, input_path_len
);
4043 if (input_path_len
> sizeof(path
) - 1)
4044 input_path_len
= sizeof(path
) - 1;
4045 path
[input_path_len
] = '\0';
4046 pstrcpy(file_prefix
, sizeof(file_prefix
), p
+ 1);
4048 #ifdef DEBUG_COMPLETION
4049 monitor_printf(cur_mon
, "input='%s' path='%s' prefix='%s'\n",
4050 input
, path
, file_prefix
);
4052 ffs
= opendir(path
);
4061 if (strcmp(d
->d_name
, ".") == 0 || strcmp(d
->d_name
, "..") == 0) {
4065 if (strstart(d
->d_name
, file_prefix
, NULL
)) {
4066 memcpy(file
, input
, input_path_len
);
4067 if (input_path_len
< sizeof(file
))
4068 pstrcpy(file
+ input_path_len
, sizeof(file
) - input_path_len
,
4070 /* stat the file to find out if it's a directory.
4071 * In that case add a slash to speed up typing long paths
4074 if(S_ISDIR(sb
.st_mode
))
4075 pstrcat(file
, sizeof(file
), "/");
4076 readline_add_completion(cur_mon
->rs
, file
);
4082 static void block_completion_it(void *opaque
, BlockDriverState
*bs
)
4084 const char *name
= bdrv_get_device_name(bs
);
4085 const char *input
= opaque
;
4087 if (input
[0] == '\0' ||
4088 !strncmp(name
, (char *)input
, strlen(input
))) {
4089 readline_add_completion(cur_mon
->rs
, name
);
4093 /* NOTE: this parser is an approximate form of the real command parser */
4094 static void parse_cmdline(const char *cmdline
,
4095 int *pnb_args
, char **args
)
4104 while (qemu_isspace(*p
))
4108 if (nb_args
>= MAX_ARGS
)
4110 ret
= get_str(buf
, sizeof(buf
), &p
);
4111 args
[nb_args
] = qemu_strdup(buf
);
4116 *pnb_args
= nb_args
;
4119 static const char *next_arg_type(const char *typestr
)
4121 const char *p
= strchr(typestr
, ':');
4122 return (p
!= NULL
? ++p
: typestr
);
4125 static void monitor_find_completion(const char *cmdline
)
4127 const char *cmdname
;
4128 char *args
[MAX_ARGS
];
4129 int nb_args
, i
, len
;
4130 const char *ptype
, *str
;
4131 const mon_cmd_t
*cmd
;
4134 parse_cmdline(cmdline
, &nb_args
, args
);
4135 #ifdef DEBUG_COMPLETION
4136 for(i
= 0; i
< nb_args
; i
++) {
4137 monitor_printf(cur_mon
, "arg%d = '%s'\n", i
, (char *)args
[i
]);
4141 /* if the line ends with a space, it means we want to complete the
4143 len
= strlen(cmdline
);
4144 if (len
> 0 && qemu_isspace(cmdline
[len
- 1])) {
4145 if (nb_args
>= MAX_ARGS
) {
4148 args
[nb_args
++] = qemu_strdup("");
4151 /* command completion */
4156 readline_set_completion_index(cur_mon
->rs
, strlen(cmdname
));
4157 for(cmd
= mon_cmds
; cmd
->name
!= NULL
; cmd
++) {
4158 cmd_completion(cmdname
, cmd
->name
);
4161 /* find the command */
4162 for (cmd
= mon_cmds
; cmd
->name
!= NULL
; cmd
++) {
4163 if (compare_cmd(args
[0], cmd
->name
)) {
4171 ptype
= next_arg_type(cmd
->args_type
);
4172 for(i
= 0; i
< nb_args
- 2; i
++) {
4173 if (*ptype
!= '\0') {
4174 ptype
= next_arg_type(ptype
);
4175 while (*ptype
== '?')
4176 ptype
= next_arg_type(ptype
);
4179 str
= args
[nb_args
- 1];
4180 if (*ptype
== '-' && ptype
[1] != '\0') {
4181 ptype
= next_arg_type(ptype
);
4185 /* file completion */
4186 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
4187 file_completion(str
);
4190 /* block device name completion */
4191 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
4192 bdrv_iterate(block_completion_it
, (void *)str
);
4195 /* XXX: more generic ? */
4196 if (!strcmp(cmd
->name
, "info")) {
4197 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
4198 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
4199 cmd_completion(str
, cmd
->name
);
4201 } else if (!strcmp(cmd
->name
, "sendkey")) {
4202 char *sep
= strrchr(str
, '-');
4205 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
4206 for(key
= key_defs
; key
->name
!= NULL
; key
++) {
4207 cmd_completion(str
, key
->name
);
4209 } else if (!strcmp(cmd
->name
, "help|?")) {
4210 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
4211 for (cmd
= mon_cmds
; cmd
->name
!= NULL
; cmd
++) {
4212 cmd_completion(str
, cmd
->name
);
4222 for (i
= 0; i
< nb_args
; i
++) {
4227 static int monitor_can_read(void *opaque
)
4229 Monitor
*mon
= opaque
;
4231 return (mon
->suspend_cnt
== 0) ? 1 : 0;
4234 static int invalid_qmp_mode(const Monitor
*mon
, const char *cmd_name
)
4236 int is_cap
= compare_cmd(cmd_name
, "qmp_capabilities");
4237 return (qmp_cmd_mode(mon
) ? is_cap
: !is_cap
);
4241 * Argument validation rules:
4243 * 1. The argument must exist in cmd_args qdict
4244 * 2. The argument type must be the expected one
4246 * Special case: If the argument doesn't exist in cmd_args and
4247 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4248 * checking is skipped for it.
4250 static int check_client_args_type(const QDict
*client_args
,
4251 const QDict
*cmd_args
, int flags
)
4253 const QDictEntry
*ent
;
4255 for (ent
= qdict_first(client_args
); ent
;ent
= qdict_next(client_args
,ent
)){
4258 const QObject
*client_arg
= qdict_entry_value(ent
);
4259 const char *client_arg_name
= qdict_entry_key(ent
);
4261 obj
= qdict_get(cmd_args
, client_arg_name
);
4263 if (flags
& QMP_ACCEPT_UNKNOWNS
) {
4264 /* handler accepts unknowns */
4267 /* client arg doesn't exist */
4268 qerror_report(QERR_INVALID_PARAMETER
, client_arg_name
);
4272 arg_type
= qobject_to_qstring(obj
);
4273 assert(arg_type
!= NULL
);
4275 /* check if argument's type is correct */
4276 switch (qstring_get_str(arg_type
)[0]) {
4280 if (qobject_type(client_arg
) != QTYPE_QSTRING
) {
4281 qerror_report(QERR_INVALID_PARAMETER_TYPE
, client_arg_name
,
4290 if (qobject_type(client_arg
) != QTYPE_QINT
) {
4291 qerror_report(QERR_INVALID_PARAMETER_TYPE
, client_arg_name
,
4297 if (qobject_type(client_arg
) != QTYPE_QINT
&&
4298 qobject_type(client_arg
) != QTYPE_QFLOAT
) {
4299 qerror_report(QERR_INVALID_PARAMETER_TYPE
, client_arg_name
,
4306 if (qobject_type(client_arg
) != QTYPE_QBOOL
) {
4307 qerror_report(QERR_INVALID_PARAMETER_TYPE
, client_arg_name
,
4313 assert(flags
& QMP_ACCEPT_UNKNOWNS
);
4318 * These types are not supported by QMP and thus are not
4319 * handled here. Fall through.
4330 * - Check if the client has passed all mandatory args
4331 * - Set special flags for argument validation
4333 static int check_mandatory_args(const QDict
*cmd_args
,
4334 const QDict
*client_args
, int *flags
)
4336 const QDictEntry
*ent
;
4338 for (ent
= qdict_first(cmd_args
); ent
; ent
= qdict_next(cmd_args
, ent
)) {
4339 const char *cmd_arg_name
= qdict_entry_key(ent
);
4340 QString
*type
= qobject_to_qstring(qdict_entry_value(ent
));
4341 assert(type
!= NULL
);
4343 if (qstring_get_str(type
)[0] == 'O') {
4344 assert((*flags
& QMP_ACCEPT_UNKNOWNS
) == 0);
4345 *flags
|= QMP_ACCEPT_UNKNOWNS
;
4346 } else if (qstring_get_str(type
)[0] != '-' &&
4347 qstring_get_str(type
)[1] != '?' &&
4348 !qdict_haskey(client_args
, cmd_arg_name
)) {
4349 qerror_report(QERR_MISSING_PARAMETER
, cmd_arg_name
);
4357 static QDict
*qdict_from_args_type(const char *args_type
)
4361 QString
*key
, *type
, *cur_qs
;
4363 assert(args_type
!= NULL
);
4365 qdict
= qdict_new();
4367 if (args_type
== NULL
|| args_type
[0] == '\0') {
4368 /* no args, empty qdict */
4372 key
= qstring_new();
4373 type
= qstring_new();
4378 switch (args_type
[i
]) {
4381 qdict_put(qdict
, qstring_get_str(key
), type
);
4383 if (args_type
[i
] == '\0') {
4386 type
= qstring_new(); /* qdict has ref */
4387 cur_qs
= key
= qstring_new();
4393 qstring_append_chr(cur_qs
, args_type
[i
]);
4403 * Client argument checking rules:
4405 * 1. Client must provide all mandatory arguments
4406 * 2. Each argument provided by the client must be expected
4407 * 3. Each argument provided by the client must have the type expected
4410 static int qmp_check_client_args(const mon_cmd_t
*cmd
, QDict
*client_args
)
4415 cmd_args
= qdict_from_args_type(cmd
->args_type
);
4418 err
= check_mandatory_args(cmd_args
, client_args
, &flags
);
4423 err
= check_client_args_type(client_args
, cmd_args
, flags
);
4431 * Input object checking rules
4433 * 1. Input object must be a dict
4434 * 2. The "execute" key must exist
4435 * 3. The "execute" key must be a string
4436 * 4. If the "arguments" key exists, it must be a dict
4437 * 5. If the "id" key exists, it can be anything (ie. json-value)
4438 * 6. Any argument not listed above is considered invalid
4440 static QDict
*qmp_check_input_obj(QObject
*input_obj
)
4442 const QDictEntry
*ent
;
4443 int has_exec_key
= 0;
4446 if (qobject_type(input_obj
) != QTYPE_QDICT
) {
4447 qerror_report(QERR_QMP_BAD_INPUT_OBJECT
, "object");
4451 input_dict
= qobject_to_qdict(input_obj
);
4453 for (ent
= qdict_first(input_dict
); ent
; ent
= qdict_next(input_dict
, ent
)){
4454 const char *arg_name
= qdict_entry_key(ent
);
4455 const QObject
*arg_obj
= qdict_entry_value(ent
);
4457 if (!strcmp(arg_name
, "execute")) {
4458 if (qobject_type(arg_obj
) != QTYPE_QSTRING
) {
4459 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER
, "execute",
4464 } else if (!strcmp(arg_name
, "arguments")) {
4465 if (qobject_type(arg_obj
) != QTYPE_QDICT
) {
4466 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER
, "arguments",
4470 } else if (!strcmp(arg_name
, "id")) {
4471 /* FIXME: check duplicated IDs for async commands */
4473 qerror_report(QERR_QMP_EXTRA_MEMBER
, arg_name
);
4478 if (!has_exec_key
) {
4479 qerror_report(QERR_QMP_BAD_INPUT_OBJECT
, "execute");
4486 static void qmp_call_query_cmd(Monitor
*mon
, const mon_cmd_t
*cmd
)
4488 QObject
*ret_data
= NULL
;
4490 if (handler_is_async(cmd
)) {
4491 qmp_async_info_handler(mon
, cmd
);
4492 if (monitor_has_error(mon
)) {
4493 monitor_protocol_emitter(mon
, NULL
);
4496 cmd
->mhandler
.info_new(mon
, &ret_data
);
4498 monitor_protocol_emitter(mon
, ret_data
);
4499 qobject_decref(ret_data
);
4504 static void qmp_call_cmd(Monitor
*mon
, const mon_cmd_t
*cmd
,
4505 const QDict
*params
)
4508 QObject
*data
= NULL
;
4510 mon_print_count_init(mon
);
4512 ret
= cmd
->mhandler
.cmd_new(mon
, params
, &data
);
4513 handler_audit(mon
, cmd
, ret
);
4514 monitor_protocol_emitter(mon
, data
);
4515 qobject_decref(data
);
4518 static void handle_qmp_command(JSONMessageParser
*parser
, QList
*tokens
)
4522 QDict
*input
, *args
;
4523 const mon_cmd_t
*cmd
;
4524 Monitor
*mon
= cur_mon
;
4525 const char *cmd_name
, *query_cmd
;
4528 args
= input
= NULL
;
4530 obj
= json_parser_parse(tokens
, NULL
);
4532 // FIXME: should be triggered in json_parser_parse()
4533 qerror_report(QERR_JSON_PARSING
);
4537 input
= qmp_check_input_obj(obj
);
4539 qobject_decref(obj
);
4543 mon
->mc
->id
= qdict_get(input
, "id");
4544 qobject_incref(mon
->mc
->id
);
4546 cmd_name
= qdict_get_str(input
, "execute");
4547 if (invalid_qmp_mode(mon
, cmd_name
)) {
4548 qerror_report(QERR_COMMAND_NOT_FOUND
, cmd_name
);
4552 if (strstart(cmd_name
, "query-", &query_cmd
)) {
4553 cmd
= qmp_find_query_cmd(query_cmd
);
4555 cmd
= qmp_find_cmd(cmd_name
);
4559 qerror_report(QERR_COMMAND_NOT_FOUND
, cmd_name
);
4563 obj
= qdict_get(input
, "arguments");
4567 args
= qobject_to_qdict(obj
);
4571 err
= qmp_check_client_args(cmd
, args
);
4577 qmp_call_query_cmd(mon
, cmd
);
4578 } else if (handler_is_async(cmd
)) {
4579 err
= qmp_async_cmd_handler(mon
, cmd
, args
);
4581 /* emit the error response */
4585 qmp_call_cmd(mon
, cmd
, args
);
4591 monitor_protocol_emitter(mon
, NULL
);
4598 * monitor_control_read(): Read and handle QMP input
4600 static void monitor_control_read(void *opaque
, const uint8_t *buf
, int size
)
4602 Monitor
*old_mon
= cur_mon
;
4606 json_message_parser_feed(&cur_mon
->mc
->parser
, (const char *) buf
, size
);
4611 static void monitor_read(void *opaque
, const uint8_t *buf
, int size
)
4613 Monitor
*old_mon
= cur_mon
;
4619 for (i
= 0; i
< size
; i
++)
4620 readline_handle_byte(cur_mon
->rs
, buf
[i
]);
4622 if (size
== 0 || buf
[size
- 1] != 0)
4623 monitor_printf(cur_mon
, "corrupted command\n");
4625 handle_user_command(cur_mon
, (char *)buf
);
4631 static void monitor_command_cb(Monitor
*mon
, const char *cmdline
, void *opaque
)
4633 monitor_suspend(mon
);
4634 handle_user_command(mon
, cmdline
);
4635 monitor_resume(mon
);
4638 int monitor_suspend(Monitor
*mon
)
4646 void monitor_resume(Monitor
*mon
)
4650 if (--mon
->suspend_cnt
== 0)
4651 readline_show_prompt(mon
->rs
);
4654 static QObject
*get_qmp_greeting(void)
4658 do_info_version(NULL
, &ver
);
4659 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver
);
4663 * monitor_control_event(): Print QMP gretting
4665 static void monitor_control_event(void *opaque
, int event
)
4668 Monitor
*mon
= opaque
;
4671 case CHR_EVENT_OPENED
:
4672 mon
->mc
->command_mode
= 0;
4673 json_message_parser_init(&mon
->mc
->parser
, handle_qmp_command
);
4674 data
= get_qmp_greeting();
4675 monitor_json_emitter(mon
, data
);
4676 qobject_decref(data
);
4678 case CHR_EVENT_CLOSED
:
4679 json_message_parser_destroy(&mon
->mc
->parser
);
4684 static void monitor_event(void *opaque
, int event
)
4686 Monitor
*mon
= opaque
;
4689 case CHR_EVENT_MUX_IN
:
4691 if (mon
->reset_seen
) {
4692 readline_restart(mon
->rs
);
4693 monitor_resume(mon
);
4696 mon
->suspend_cnt
= 0;
4700 case CHR_EVENT_MUX_OUT
:
4701 if (mon
->reset_seen
) {
4702 if (mon
->suspend_cnt
== 0) {
4703 monitor_printf(mon
, "\n");
4706 monitor_suspend(mon
);
4713 case CHR_EVENT_OPENED
:
4714 monitor_printf(mon
, "QEMU %s monitor - type 'help' for more "
4715 "information\n", QEMU_VERSION
);
4716 if (!mon
->mux_out
) {
4717 readline_show_prompt(mon
->rs
);
4719 mon
->reset_seen
= 1;
4733 void monitor_init(CharDriverState
*chr
, int flags
)
4735 static int is_first_init
= 1;
4738 if (is_first_init
) {
4739 key_timer
= qemu_new_timer(vm_clock
, release_keys
, NULL
);
4743 mon
= qemu_mallocz(sizeof(*mon
));
4747 if (flags
& MONITOR_USE_READLINE
) {
4748 mon
->rs
= readline_init(mon
, monitor_find_completion
);
4749 monitor_read_command(mon
, 0);
4752 if (monitor_ctrl_mode(mon
)) {
4753 mon
->mc
= qemu_mallocz(sizeof(MonitorControl
));
4754 /* Control mode requires special handlers */
4755 qemu_chr_add_handlers(chr
, monitor_can_read
, monitor_control_read
,
4756 monitor_control_event
, mon
);
4758 qemu_chr_add_handlers(chr
, monitor_can_read
, monitor_read
,
4759 monitor_event
, mon
);
4762 QLIST_INSERT_HEAD(&mon_list
, mon
, entry
);
4763 if (!default_mon
|| (flags
& MONITOR_IS_DEFAULT
))
4767 static void bdrv_password_cb(Monitor
*mon
, const char *password
, void *opaque
)
4769 BlockDriverState
*bs
= opaque
;
4772 if (bdrv_set_key(bs
, password
) != 0) {
4773 monitor_printf(mon
, "invalid password\n");
4776 if (mon
->password_completion_cb
)
4777 mon
->password_completion_cb(mon
->password_opaque
, ret
);
4779 monitor_read_command(mon
, 1);
4782 int monitor_read_bdrv_key_start(Monitor
*mon
, BlockDriverState
*bs
,
4783 BlockDriverCompletionFunc
*completion_cb
,
4788 if (!bdrv_key_required(bs
)) {
4790 completion_cb(opaque
, 0);
4794 if (monitor_ctrl_mode(mon
)) {
4795 qerror_report(QERR_DEVICE_ENCRYPTED
, bdrv_get_device_name(bs
));
4799 monitor_printf(mon
, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs
),
4800 bdrv_get_encrypted_filename(bs
));
4802 mon
->password_completion_cb
= completion_cb
;
4803 mon
->password_opaque
= opaque
;
4805 err
= monitor_read_password(mon
, bdrv_password_cb
, bs
);
4807 if (err
&& completion_cb
)
4808 completion_cb(opaque
, err
);