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 "qemu-char.h"
41 #include "audio/audio.h"
44 #include "qemu-timer.h"
45 #include "migration.h"
57 //#define DEBUG_COMPLETION
63 * 'B' block device name
64 * 's' string (accept optional quote)
66 * 'l' target long (32 or 64 bit)
67 * '/' optional gdb-like print format (like "/10x")
69 * '?' optional type (for all types, except '/')
70 * '.' other form of optional type (for 'i' and 'l')
71 * '-' optional parameter (eg. '-f')
75 typedef struct mon_cmd_t
{
77 const char *args_type
;
80 void (*user_print
)(Monitor
*mon
, const QObject
*data
);
82 void (*info
)(Monitor
*mon
);
83 void (*info_new
)(Monitor
*mon
, QObject
**ret_data
);
84 void (*cmd
)(Monitor
*mon
, const QDict
*qdict
);
85 void (*cmd_new
)(Monitor
*mon
, const QDict
*params
, QObject
**ret_data
);
89 /* file descriptors passed via SCM_RIGHTS */
90 typedef struct mon_fd_t mon_fd_t
;
94 QLIST_ENTRY(mon_fd_t
) next
;
103 uint8_t outbuf
[1024];
107 BlockDriverCompletionFunc
*password_completion_cb
;
108 void *password_opaque
;
109 QLIST_HEAD(,mon_fd_t
) fds
;
110 QLIST_ENTRY(Monitor
) entry
;
113 static QLIST_HEAD(mon_list
, Monitor
) mon_list
;
115 static const mon_cmd_t mon_cmds
[];
116 static const mon_cmd_t info_cmds
[];
118 Monitor
*cur_mon
= NULL
;
120 static void monitor_command_cb(Monitor
*mon
, const char *cmdline
,
123 static void monitor_read_command(Monitor
*mon
, int show_prompt
)
125 readline_start(mon
->rs
, "(qemu) ", 0, monitor_command_cb
, NULL
);
127 readline_show_prompt(mon
->rs
);
130 static int monitor_read_password(Monitor
*mon
, ReadLineFunc
*readline_func
,
134 readline_start(mon
->rs
, "Password: ", 1, readline_func
, opaque
);
135 /* prompt is printed on return from the command handler */
138 monitor_printf(mon
, "terminal does not support password prompting\n");
143 void monitor_flush(Monitor
*mon
)
145 if (mon
&& mon
->outbuf_index
!= 0 && !mon
->mux_out
) {
146 qemu_chr_write(mon
->chr
, mon
->outbuf
, mon
->outbuf_index
);
147 mon
->outbuf_index
= 0;
151 /* flush at every end of line or if the buffer is full */
152 static void monitor_puts(Monitor
*mon
, const char *str
)
164 mon
->outbuf
[mon
->outbuf_index
++] = '\r';
165 mon
->outbuf
[mon
->outbuf_index
++] = c
;
166 if (mon
->outbuf_index
>= (sizeof(mon
->outbuf
) - 1)
172 void monitor_vprintf(Monitor
*mon
, const char *fmt
, va_list ap
)
175 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
176 monitor_puts(mon
, buf
);
179 void monitor_printf(Monitor
*mon
, const char *fmt
, ...)
183 monitor_vprintf(mon
, fmt
, ap
);
187 void monitor_print_filename(Monitor
*mon
, const char *filename
)
191 for (i
= 0; filename
[i
]; i
++) {
192 switch (filename
[i
]) {
196 monitor_printf(mon
, "\\%c", filename
[i
]);
199 monitor_printf(mon
, "\\t");
202 monitor_printf(mon
, "\\r");
205 monitor_printf(mon
, "\\n");
208 monitor_printf(mon
, "%c", filename
[i
]);
214 static int monitor_fprintf(FILE *stream
, const char *fmt
, ...)
218 monitor_vprintf((Monitor
*)stream
, fmt
, ap
);
223 static void monitor_user_noop(Monitor
*mon
, const QObject
*data
) { }
225 static inline int monitor_handler_ported(const mon_cmd_t
*cmd
)
227 return cmd
->user_print
!= NULL
;
230 static void monitor_print_qobject(Monitor
*mon
, const QObject
*data
)
232 switch (qobject_type(data
)) {
234 monitor_printf(mon
, "%s",qstring_get_str(qobject_to_qstring(data
)));
237 monitor_printf(mon
, "%" PRId64
,qint_get_int(qobject_to_qint(data
)));
240 monitor_printf(mon
, "ERROR: unsupported type: %d",
245 monitor_puts(mon
, "\n");
248 static int compare_cmd(const char *name
, const char *list
)
250 const char *p
, *pstart
;
258 p
= pstart
+ strlen(pstart
);
259 if ((p
- pstart
) == len
&& !memcmp(pstart
, name
, len
))
268 static void help_cmd_dump(Monitor
*mon
, const mon_cmd_t
*cmds
,
269 const char *prefix
, const char *name
)
271 const mon_cmd_t
*cmd
;
273 for(cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
274 if (!name
|| !strcmp(name
, cmd
->name
))
275 monitor_printf(mon
, "%s%s %s -- %s\n", prefix
, cmd
->name
,
276 cmd
->params
, cmd
->help
);
280 static void help_cmd(Monitor
*mon
, const char *name
)
282 if (name
&& !strcmp(name
, "info")) {
283 help_cmd_dump(mon
, info_cmds
, "info ", NULL
);
285 help_cmd_dump(mon
, mon_cmds
, "", name
);
286 if (name
&& !strcmp(name
, "log")) {
287 const CPULogItem
*item
;
288 monitor_printf(mon
, "Log items (comma separated):\n");
289 monitor_printf(mon
, "%-10s %s\n", "none", "remove all logs");
290 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
291 monitor_printf(mon
, "%-10s %s\n", item
->name
, item
->help
);
297 static void do_help_cmd(Monitor
*mon
, const QDict
*qdict
)
299 help_cmd(mon
, qdict_get_try_str(qdict
, "name"));
302 static void do_commit(Monitor
*mon
, const QDict
*qdict
)
306 const char *device
= qdict_get_str(qdict
, "device");
308 all_devices
= !strcmp(device
, "all");
309 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
311 if (strcmp(bdrv_get_device_name(dinfo
->bdrv
), device
))
313 bdrv_commit(dinfo
->bdrv
);
317 static void do_info(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
319 const mon_cmd_t
*cmd
;
320 const char *item
= qdict_get_try_str(qdict
, "item");
325 for (cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
326 if (compare_cmd(item
, cmd
->name
))
330 if (cmd
->name
== NULL
)
333 if (monitor_handler_ported(cmd
)) {
334 cmd
->mhandler
.info_new(mon
, ret_data
);
336 cmd
->user_print(mon
, *ret_data
);
338 cmd
->mhandler
.info(mon
);
344 help_cmd(mon
, "info");
348 * do_info_version(): Show QEMU version
350 static void do_info_version(Monitor
*mon
, QObject
**ret_data
)
352 *ret_data
= QOBJECT(qstring_from_str(QEMU_VERSION QEMU_PKGVERSION
));
355 static void do_info_name(Monitor
*mon
)
358 monitor_printf(mon
, "%s\n", qemu_name
);
361 #if defined(TARGET_I386)
362 static void do_info_hpet(Monitor
*mon
)
364 monitor_printf(mon
, "HPET is %s by QEMU\n",
365 (no_hpet
) ? "disabled" : "enabled");
369 static void do_info_uuid(Monitor
*mon
)
371 monitor_printf(mon
, UUID_FMT
"\n", qemu_uuid
[0], qemu_uuid
[1],
372 qemu_uuid
[2], qemu_uuid
[3], qemu_uuid
[4], qemu_uuid
[5],
373 qemu_uuid
[6], qemu_uuid
[7], qemu_uuid
[8], qemu_uuid
[9],
374 qemu_uuid
[10], qemu_uuid
[11], qemu_uuid
[12], qemu_uuid
[13],
375 qemu_uuid
[14], qemu_uuid
[15]);
378 /* get the current CPU defined by the user */
379 static int mon_set_cpu(int cpu_index
)
383 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
384 if (env
->cpu_index
== cpu_index
) {
385 cur_mon
->mon_cpu
= env
;
392 static CPUState
*mon_get_cpu(void)
394 if (!cur_mon
->mon_cpu
) {
397 cpu_synchronize_state(cur_mon
->mon_cpu
);
398 kvm_save_mpstate(cur_mon
->mon_cpu
);
399 return cur_mon
->mon_cpu
;
402 static void do_info_registers(Monitor
*mon
)
409 cpu_dump_state(env
, (FILE *)mon
, monitor_fprintf
,
412 cpu_dump_state(env
, (FILE *)mon
, monitor_fprintf
,
417 static void print_cpu_iter(QObject
*obj
, void *opaque
)
421 Monitor
*mon
= opaque
;
423 assert(qobject_type(obj
) == QTYPE_QDICT
);
424 cpu
= qobject_to_qdict(obj
);
426 if (strcmp(qdict_get_str(cpu
, "current"), "yes") == 0)
429 monitor_printf(mon
, "%c CPU #%d: ", active
, (int)qdict_get_int(cpu
, "CPU"));
431 #if defined(TARGET_I386)
432 monitor_printf(mon
, "pc=0x" TARGET_FMT_lx
,
433 (target_ulong
) qdict_get_int(cpu
, "pc"));
434 #elif defined(TARGET_PPC)
435 monitor_printf(mon
, "nip=0x" TARGET_FMT_lx
,
436 (target_long
) qdict_get_int(cpu
, "nip"));
437 #elif defined(TARGET_SPARC)
438 monitor_printf(mon
, "pc=0x " TARGET_FMT_lx
,
439 (target_long
) qdict_get_int(cpu
, "pc"));
440 monitor_printf(mon
, "npc=0x" TARGET_FMT_lx
,
441 (target_long
) qdict_get_int(cpu
, "npc"));
442 #elif defined(TARGET_MIPS)
443 monitor_printf(mon
, "PC=0x" TARGET_FMT_lx
,
444 (target_long
) qdict_get_int(cpu
, "PC"));
447 if (strcmp(qdict_get_str(cpu
, "halted"), "yes") == 0)
448 monitor_printf(mon
, " (halted)");
450 monitor_printf(mon
, " thread_id=%" PRId64
" ",
451 qdict_get_int(cpu
, "thread_id"));
453 monitor_printf(mon
, "\n");
456 static void monitor_print_cpus(Monitor
*mon
, const QObject
*data
)
460 assert(qobject_type(data
) == QTYPE_QLIST
);
461 cpu_list
= qobject_to_qlist(data
);
462 qlist_iter(cpu_list
, print_cpu_iter
, mon
);
466 * do_info_cpus(): Show CPU information
468 * Return a QList with a QDict for each CPU.
472 * [ { "CPU": 0, "current": "yes", "pc": 0x..., "halted": "no" },
473 * { "CPU": 1, "current": "no", "pc": 0x..., "halted": "yes" } ]
475 static void do_info_cpus(Monitor
*mon
, QObject
**ret_data
)
480 cpu_list
= qlist_new();
482 /* just to set the default cpu if not already done */
485 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
487 QDict
*cpu
= qdict_new();
489 cpu_synchronize_state(env
);
490 kvm_save_mpstate(env
);
492 qdict_put(cpu
, "CPU", qint_from_int(env
->cpu_index
));
493 answer
= (env
== mon
->mon_cpu
) ? "yes" : "no";
494 qdict_put(cpu
, "current", qstring_from_str(answer
));
495 #if defined(TARGET_I386)
496 qdict_put(cpu
, "pc", qint_from_int(env
->eip
+ env
->segs
[R_CS
].base
));
497 #elif defined(TARGET_PPC)
498 qdict_put(cpu
, "nip", qint_from_int(env
->nip
));
499 #elif defined(TARGET_SPARC)
500 qdict_put(cpu
, "pc", qint_from_int(env
->pc
));
501 qdict_put(cpu
, "npc", qint_from_int(env
->npc
));
502 #elif defined(TARGET_MIPS)
503 qdict_put(cpu
, "PC", qint_from_int(env
->active_tc
.PC
));
505 answer
= env
->halted
? "yes" : "no";
506 qdict_put(cpu
, "halted", qstring_from_str(answer
));
507 qdict_put(cpu
, "thread_id", qint_from_int(env
->thread_id
));
509 qlist_append(cpu_list
, cpu
);
512 *ret_data
= QOBJECT(cpu_list
);
515 static void do_cpu_set(Monitor
*mon
, const QDict
*qdict
)
517 int index
= qdict_get_int(qdict
, "index");
518 if (mon_set_cpu(index
) < 0)
519 monitor_printf(mon
, "Invalid CPU index\n");
522 static void do_cpu_set_nr(Monitor
*mon
, const QDict
*qdict
)
527 status
= qdict_get_str(qdict
, "state");
528 value
= qdict_get_int(qdict
, "cpu");
530 if (!strcmp(status
, "online"))
532 else if (!strcmp(status
, "offline"))
535 monitor_printf(mon
, "invalid status: %s\n", status
);
538 #if defined(TARGET_I386) || defined(TARGET_X86_64)
539 qemu_system_cpu_hot_add(value
, state
);
543 static void do_info_jit(Monitor
*mon
)
545 dump_exec_info((FILE *)mon
, monitor_fprintf
);
548 static void do_info_history(Monitor
*mon
)
557 str
= readline_get_history(mon
->rs
, i
);
560 monitor_printf(mon
, "%d: '%s'\n", i
, str
);
565 #if defined(TARGET_PPC)
566 /* XXX: not implemented in other targets */
567 static void do_info_cpu_stats(Monitor
*mon
)
572 cpu_dump_statistics(env
, (FILE *)mon
, &monitor_fprintf
, 0);
577 * do_quit(): Quit QEMU execution
579 static void do_quit(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
584 static int eject_device(Monitor
*mon
, BlockDriverState
*bs
, int force
)
586 if (bdrv_is_inserted(bs
)) {
588 if (!bdrv_is_removable(bs
)) {
589 monitor_printf(mon
, "device is not removable\n");
592 if (bdrv_is_locked(bs
)) {
593 monitor_printf(mon
, "device is locked\n");
602 static void do_eject(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
604 BlockDriverState
*bs
;
605 int force
= qdict_get_int(qdict
, "force");
606 const char *filename
= qdict_get_str(qdict
, "filename");
608 bs
= bdrv_find(filename
);
610 monitor_printf(mon
, "device not found\n");
613 eject_device(mon
, bs
, force
);
616 static void do_change_block(Monitor
*mon
, const char *device
,
617 const char *filename
, const char *fmt
)
619 BlockDriverState
*bs
;
620 BlockDriver
*drv
= NULL
;
622 bs
= bdrv_find(device
);
624 monitor_printf(mon
, "device not found\n");
628 drv
= bdrv_find_format(fmt
);
630 monitor_printf(mon
, "invalid format %s\n", fmt
);
634 if (eject_device(mon
, bs
, 0) < 0)
636 bdrv_open2(bs
, filename
, 0, drv
);
637 monitor_read_bdrv_key_start(mon
, bs
, NULL
, NULL
);
640 static void change_vnc_password_cb(Monitor
*mon
, const char *password
,
643 if (vnc_display_password(NULL
, password
) < 0)
644 monitor_printf(mon
, "could not set VNC server password\n");
646 monitor_read_command(mon
, 1);
649 static void do_change_vnc(Monitor
*mon
, const char *target
, const char *arg
)
651 if (strcmp(target
, "passwd") == 0 ||
652 strcmp(target
, "password") == 0) {
655 strncpy(password
, arg
, sizeof(password
));
656 password
[sizeof(password
) - 1] = '\0';
657 change_vnc_password_cb(mon
, password
, NULL
);
659 monitor_read_password(mon
, change_vnc_password_cb
, NULL
);
662 if (vnc_display_open(NULL
, target
) < 0)
663 monitor_printf(mon
, "could not start VNC server on %s\n", target
);
667 static void do_change(Monitor
*mon
, const QDict
*qdict
)
669 const char *device
= qdict_get_str(qdict
, "device");
670 const char *target
= qdict_get_str(qdict
, "target");
671 const char *arg
= qdict_get_try_str(qdict
, "arg");
672 if (strcmp(device
, "vnc") == 0) {
673 do_change_vnc(mon
, target
, arg
);
675 do_change_block(mon
, device
, target
, arg
);
679 static void do_screen_dump(Monitor
*mon
, const QDict
*qdict
)
681 vga_hw_screen_dump(qdict_get_str(qdict
, "filename"));
684 static void do_logfile(Monitor
*mon
, const QDict
*qdict
)
686 cpu_set_log_filename(qdict_get_str(qdict
, "filename"));
689 static void do_log(Monitor
*mon
, const QDict
*qdict
)
692 const char *items
= qdict_get_str(qdict
, "items");
694 if (!strcmp(items
, "none")) {
697 mask
= cpu_str_to_log_mask(items
);
699 help_cmd(mon
, "log");
706 static void do_singlestep(Monitor
*mon
, const QDict
*qdict
)
708 const char *option
= qdict_get_try_str(qdict
, "option");
709 if (!option
|| !strcmp(option
, "on")) {
711 } else if (!strcmp(option
, "off")) {
714 monitor_printf(mon
, "unexpected option %s\n", option
);
719 * do_stop(): Stop VM execution
721 static void do_stop(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
723 vm_stop(EXCP_INTERRUPT
);
726 static void encrypted_bdrv_it(void *opaque
, BlockDriverState
*bs
);
728 struct bdrv_iterate_context
{
734 * do_cont(): Resume emulation.
736 static void do_cont(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
738 struct bdrv_iterate_context context
= { mon
, 0 };
740 bdrv_iterate(encrypted_bdrv_it
, &context
);
741 /* only resume the vm if all keys are set and valid */
746 static void bdrv_key_cb(void *opaque
, int err
)
748 Monitor
*mon
= opaque
;
750 /* another key was set successfully, retry to continue */
752 do_cont(mon
, NULL
, NULL
);
755 static void encrypted_bdrv_it(void *opaque
, BlockDriverState
*bs
)
757 struct bdrv_iterate_context
*context
= opaque
;
759 if (!context
->err
&& bdrv_key_required(bs
)) {
760 context
->err
= -EBUSY
;
761 monitor_read_bdrv_key_start(context
->mon
, bs
, bdrv_key_cb
,
766 static void do_gdbserver(Monitor
*mon
, const QDict
*qdict
)
768 const char *device
= qdict_get_try_str(qdict
, "device");
770 device
= "tcp::" DEFAULT_GDBSTUB_PORT
;
771 if (gdbserver_start(device
) < 0) {
772 monitor_printf(mon
, "Could not open gdbserver on device '%s'\n",
774 } else if (strcmp(device
, "none") == 0) {
775 monitor_printf(mon
, "Disabled gdbserver\n");
777 monitor_printf(mon
, "Waiting for gdb connection on device '%s'\n",
782 static void do_watchdog_action(Monitor
*mon
, const QDict
*qdict
)
784 const char *action
= qdict_get_str(qdict
, "action");
785 if (select_watchdog_action(action
) == -1) {
786 monitor_printf(mon
, "Unknown watchdog action '%s'\n", action
);
790 static void monitor_printc(Monitor
*mon
, int c
)
792 monitor_printf(mon
, "'");
795 monitor_printf(mon
, "\\'");
798 monitor_printf(mon
, "\\\\");
801 monitor_printf(mon
, "\\n");
804 monitor_printf(mon
, "\\r");
807 if (c
>= 32 && c
<= 126) {
808 monitor_printf(mon
, "%c", c
);
810 monitor_printf(mon
, "\\x%02x", c
);
814 monitor_printf(mon
, "'");
817 static void memory_dump(Monitor
*mon
, int count
, int format
, int wsize
,
818 target_phys_addr_t addr
, int is_physical
)
821 int nb_per_line
, l
, line_size
, i
, max_digits
, len
;
829 if (!env
&& !is_physical
)
834 } else if (wsize
== 4) {
837 /* as default we use the current CS size */
841 if ((env
->efer
& MSR_EFER_LMA
) &&
842 (env
->segs
[R_CS
].flags
& DESC_L_MASK
))
846 if (!(env
->segs
[R_CS
].flags
& DESC_B_MASK
))
851 monitor_disas(mon
, env
, addr
, count
, is_physical
, flags
);
860 nb_per_line
= line_size
/ wsize
;
865 max_digits
= (wsize
* 8 + 2) / 3;
869 max_digits
= (wsize
* 8) / 4;
873 max_digits
= (wsize
* 8 * 10 + 32) / 33;
882 monitor_printf(mon
, TARGET_FMT_plx
":", addr
);
884 monitor_printf(mon
, TARGET_FMT_lx
":", (target_ulong
)addr
);
889 cpu_physical_memory_rw(addr
, buf
, l
, 0);
894 if (cpu_memory_rw_debug(env
, addr
, buf
, l
, 0) < 0) {
895 monitor_printf(mon
, " Cannot access memory\n");
904 v
= ldub_raw(buf
+ i
);
907 v
= lduw_raw(buf
+ i
);
910 v
= (uint32_t)ldl_raw(buf
+ i
);
913 v
= ldq_raw(buf
+ i
);
916 monitor_printf(mon
, " ");
919 monitor_printf(mon
, "%#*" PRIo64
, max_digits
, v
);
922 monitor_printf(mon
, "0x%0*" PRIx64
, max_digits
, v
);
925 monitor_printf(mon
, "%*" PRIu64
, max_digits
, v
);
928 monitor_printf(mon
, "%*" PRId64
, max_digits
, v
);
931 monitor_printc(mon
, v
);
936 monitor_printf(mon
, "\n");
942 static void do_memory_dump(Monitor
*mon
, const QDict
*qdict
)
944 int count
= qdict_get_int(qdict
, "count");
945 int format
= qdict_get_int(qdict
, "format");
946 int size
= qdict_get_int(qdict
, "size");
947 target_long addr
= qdict_get_int(qdict
, "addr");
949 memory_dump(mon
, count
, format
, size
, addr
, 0);
952 static void do_physical_memory_dump(Monitor
*mon
, const QDict
*qdict
)
954 int count
= qdict_get_int(qdict
, "count");
955 int format
= qdict_get_int(qdict
, "format");
956 int size
= qdict_get_int(qdict
, "size");
957 target_phys_addr_t addr
= qdict_get_int(qdict
, "addr");
959 memory_dump(mon
, count
, format
, size
, addr
, 1);
962 static void do_print(Monitor
*mon
, const QDict
*qdict
)
964 int format
= qdict_get_int(qdict
, "format");
965 target_phys_addr_t val
= qdict_get_int(qdict
, "val");
967 #if TARGET_PHYS_ADDR_BITS == 32
970 monitor_printf(mon
, "%#o", val
);
973 monitor_printf(mon
, "%#x", val
);
976 monitor_printf(mon
, "%u", val
);
980 monitor_printf(mon
, "%d", val
);
983 monitor_printc(mon
, val
);
989 monitor_printf(mon
, "%#" PRIo64
, val
);
992 monitor_printf(mon
, "%#" PRIx64
, val
);
995 monitor_printf(mon
, "%" PRIu64
, val
);
999 monitor_printf(mon
, "%" PRId64
, val
);
1002 monitor_printc(mon
, val
);
1006 monitor_printf(mon
, "\n");
1009 static void do_memory_save(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1012 uint32_t size
= qdict_get_int(qdict
, "size");
1013 const char *filename
= qdict_get_str(qdict
, "filename");
1014 target_long addr
= qdict_get_int(qdict
, "val");
1019 env
= mon_get_cpu();
1023 f
= fopen(filename
, "wb");
1025 monitor_printf(mon
, "could not open '%s'\n", filename
);
1032 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
1033 fwrite(buf
, 1, l
, f
);
1040 static void do_physical_memory_save(Monitor
*mon
, const QDict
*qdict
,
1046 uint32_t size
= qdict_get_int(qdict
, "size");
1047 const char *filename
= qdict_get_str(qdict
, "filename");
1048 target_phys_addr_t addr
= qdict_get_int(qdict
, "val");
1050 f
= fopen(filename
, "wb");
1052 monitor_printf(mon
, "could not open '%s'\n", filename
);
1059 cpu_physical_memory_rw(addr
, buf
, l
, 0);
1060 fwrite(buf
, 1, l
, f
);
1068 static void do_sum(Monitor
*mon
, const QDict
*qdict
)
1073 uint32_t start
= qdict_get_int(qdict
, "start");
1074 uint32_t size
= qdict_get_int(qdict
, "size");
1077 for(addr
= start
; addr
< (start
+ size
); addr
++) {
1078 cpu_physical_memory_rw(addr
, buf
, 1, 0);
1079 /* BSD sum algorithm ('sum' Unix command) */
1080 sum
= (sum
>> 1) | (sum
<< 15);
1083 monitor_printf(mon
, "%05d\n", sum
);
1091 static const KeyDef key_defs
[] = {
1093 { 0x36, "shift_r" },
1098 { 0xe4, "altgr_r" },
1118 { 0x0e, "backspace" },
1155 { 0x37, "asterisk" },
1158 { 0x3a, "caps_lock" },
1169 { 0x45, "num_lock" },
1170 { 0x46, "scroll_lock" },
1172 { 0xb5, "kp_divide" },
1173 { 0x37, "kp_multiply" },
1174 { 0x4a, "kp_subtract" },
1176 { 0x9c, "kp_enter" },
1177 { 0x53, "kp_decimal" },
1210 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1225 { 0xfe, "compose" },
1230 static int get_keycode(const char *key
)
1236 for(p
= key_defs
; p
->name
!= NULL
; p
++) {
1237 if (!strcmp(key
, p
->name
))
1240 if (strstart(key
, "0x", NULL
)) {
1241 ret
= strtoul(key
, &endp
, 0);
1242 if (*endp
== '\0' && ret
>= 0x01 && ret
<= 0xff)
1248 #define MAX_KEYCODES 16
1249 static uint8_t keycodes
[MAX_KEYCODES
];
1250 static int nb_pending_keycodes
;
1251 static QEMUTimer
*key_timer
;
1253 static void release_keys(void *opaque
)
1257 while (nb_pending_keycodes
> 0) {
1258 nb_pending_keycodes
--;
1259 keycode
= keycodes
[nb_pending_keycodes
];
1261 kbd_put_keycode(0xe0);
1262 kbd_put_keycode(keycode
| 0x80);
1266 static void do_sendkey(Monitor
*mon
, const QDict
*qdict
)
1268 char keyname_buf
[16];
1270 int keyname_len
, keycode
, i
;
1271 const char *string
= qdict_get_str(qdict
, "string");
1272 int has_hold_time
= qdict_haskey(qdict
, "hold_time");
1273 int hold_time
= qdict_get_try_int(qdict
, "hold_time", -1);
1275 if (nb_pending_keycodes
> 0) {
1276 qemu_del_timer(key_timer
);
1283 separator
= strchr(string
, '-');
1284 keyname_len
= separator
? separator
- string
: strlen(string
);
1285 if (keyname_len
> 0) {
1286 pstrcpy(keyname_buf
, sizeof(keyname_buf
), string
);
1287 if (keyname_len
> sizeof(keyname_buf
) - 1) {
1288 monitor_printf(mon
, "invalid key: '%s...'\n", keyname_buf
);
1291 if (i
== MAX_KEYCODES
) {
1292 monitor_printf(mon
, "too many keys\n");
1295 keyname_buf
[keyname_len
] = 0;
1296 keycode
= get_keycode(keyname_buf
);
1298 monitor_printf(mon
, "unknown key: '%s'\n", keyname_buf
);
1301 keycodes
[i
++] = keycode
;
1305 string
= separator
+ 1;
1307 nb_pending_keycodes
= i
;
1308 /* key down events */
1309 for (i
= 0; i
< nb_pending_keycodes
; i
++) {
1310 keycode
= keycodes
[i
];
1312 kbd_put_keycode(0xe0);
1313 kbd_put_keycode(keycode
& 0x7f);
1315 /* delayed key up events */
1316 qemu_mod_timer(key_timer
, qemu_get_clock(vm_clock
) +
1317 muldiv64(get_ticks_per_sec(), hold_time
, 1000));
1320 static int mouse_button_state
;
1322 static void do_mouse_move(Monitor
*mon
, const QDict
*qdict
)
1325 const char *dx_str
= qdict_get_str(qdict
, "dx_str");
1326 const char *dy_str
= qdict_get_str(qdict
, "dy_str");
1327 const char *dz_str
= qdict_get_try_str(qdict
, "dz_str");
1328 dx
= strtol(dx_str
, NULL
, 0);
1329 dy
= strtol(dy_str
, NULL
, 0);
1332 dz
= strtol(dz_str
, NULL
, 0);
1333 kbd_mouse_event(dx
, dy
, dz
, mouse_button_state
);
1336 static void do_mouse_button(Monitor
*mon
, const QDict
*qdict
)
1338 int button_state
= qdict_get_int(qdict
, "button_state");
1339 mouse_button_state
= button_state
;
1340 kbd_mouse_event(0, 0, 0, mouse_button_state
);
1343 static void do_ioport_read(Monitor
*mon
, const QDict
*qdict
)
1345 int size
= qdict_get_int(qdict
, "size");
1346 int addr
= qdict_get_int(qdict
, "addr");
1347 int has_index
= qdict_haskey(qdict
, "index");
1352 int index
= qdict_get_int(qdict
, "index");
1353 cpu_outb(addr
& IOPORTS_MASK
, index
& 0xff);
1361 val
= cpu_inb(addr
);
1365 val
= cpu_inw(addr
);
1369 val
= cpu_inl(addr
);
1373 monitor_printf(mon
, "port%c[0x%04x] = %#0*x\n",
1374 suffix
, addr
, size
* 2, val
);
1377 static void do_ioport_write(Monitor
*mon
, const QDict
*qdict
)
1379 int size
= qdict_get_int(qdict
, "size");
1380 int addr
= qdict_get_int(qdict
, "addr");
1381 int val
= qdict_get_int(qdict
, "val");
1383 addr
&= IOPORTS_MASK
;
1388 cpu_outb(addr
, val
);
1391 cpu_outw(addr
, val
);
1394 cpu_outl(addr
, val
);
1399 static void do_boot_set(Monitor
*mon
, const QDict
*qdict
)
1402 const char *bootdevice
= qdict_get_str(qdict
, "bootdevice");
1404 res
= qemu_boot_set(bootdevice
);
1406 monitor_printf(mon
, "boot device list now set to %s\n", bootdevice
);
1407 } else if (res
> 0) {
1408 monitor_printf(mon
, "setting boot device list failed\n");
1410 monitor_printf(mon
, "no function defined to set boot device list for "
1411 "this architecture\n");
1416 * do_system_reset(): Issue a machine reset
1418 static void do_system_reset(Monitor
*mon
, const QDict
*qdict
,
1421 qemu_system_reset_request();
1425 * do_system_powerdown(): Issue a machine powerdown
1427 static void do_system_powerdown(Monitor
*mon
, const QDict
*qdict
,
1430 qemu_system_powerdown_request();
1433 #if defined(TARGET_I386)
1434 static void print_pte(Monitor
*mon
, uint32_t addr
, uint32_t pte
, uint32_t mask
)
1436 monitor_printf(mon
, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1439 pte
& PG_GLOBAL_MASK
? 'G' : '-',
1440 pte
& PG_PSE_MASK
? 'P' : '-',
1441 pte
& PG_DIRTY_MASK
? 'D' : '-',
1442 pte
& PG_ACCESSED_MASK
? 'A' : '-',
1443 pte
& PG_PCD_MASK
? 'C' : '-',
1444 pte
& PG_PWT_MASK
? 'T' : '-',
1445 pte
& PG_USER_MASK
? 'U' : '-',
1446 pte
& PG_RW_MASK
? 'W' : '-');
1449 static void tlb_info(Monitor
*mon
)
1453 uint32_t pgd
, pde
, pte
;
1455 env
= mon_get_cpu();
1459 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1460 monitor_printf(mon
, "PG disabled\n");
1463 pgd
= env
->cr
[3] & ~0xfff;
1464 for(l1
= 0; l1
< 1024; l1
++) {
1465 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1466 pde
= le32_to_cpu(pde
);
1467 if (pde
& PG_PRESENT_MASK
) {
1468 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1469 print_pte(mon
, (l1
<< 22), pde
, ~((1 << 20) - 1));
1471 for(l2
= 0; l2
< 1024; l2
++) {
1472 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1473 (uint8_t *)&pte
, 4);
1474 pte
= le32_to_cpu(pte
);
1475 if (pte
& PG_PRESENT_MASK
) {
1476 print_pte(mon
, (l1
<< 22) + (l2
<< 12),
1486 static void mem_print(Monitor
*mon
, uint32_t *pstart
, int *plast_prot
,
1487 uint32_t end
, int prot
)
1490 prot1
= *plast_prot
;
1491 if (prot
!= prot1
) {
1492 if (*pstart
!= -1) {
1493 monitor_printf(mon
, "%08x-%08x %08x %c%c%c\n",
1494 *pstart
, end
, end
- *pstart
,
1495 prot1
& PG_USER_MASK
? 'u' : '-',
1497 prot1
& PG_RW_MASK
? 'w' : '-');
1507 static void mem_info(Monitor
*mon
)
1510 int l1
, l2
, prot
, last_prot
;
1511 uint32_t pgd
, pde
, pte
, start
, end
;
1513 env
= mon_get_cpu();
1517 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1518 monitor_printf(mon
, "PG disabled\n");
1521 pgd
= env
->cr
[3] & ~0xfff;
1524 for(l1
= 0; l1
< 1024; l1
++) {
1525 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1526 pde
= le32_to_cpu(pde
);
1528 if (pde
& PG_PRESENT_MASK
) {
1529 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1530 prot
= pde
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1531 mem_print(mon
, &start
, &last_prot
, end
, prot
);
1533 for(l2
= 0; l2
< 1024; l2
++) {
1534 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1535 (uint8_t *)&pte
, 4);
1536 pte
= le32_to_cpu(pte
);
1537 end
= (l1
<< 22) + (l2
<< 12);
1538 if (pte
& PG_PRESENT_MASK
) {
1539 prot
= pte
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1543 mem_print(mon
, &start
, &last_prot
, end
, prot
);
1548 mem_print(mon
, &start
, &last_prot
, end
, prot
);
1554 #if defined(TARGET_SH4)
1556 static void print_tlb(Monitor
*mon
, int idx
, tlb_t
*tlb
)
1558 monitor_printf(mon
, " tlb%i:\t"
1559 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1560 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1561 "dirty=%hhu writethrough=%hhu\n",
1563 tlb
->asid
, tlb
->vpn
, tlb
->ppn
, tlb
->sz
, tlb
->size
,
1564 tlb
->v
, tlb
->sh
, tlb
->c
, tlb
->pr
,
1568 static void tlb_info(Monitor
*mon
)
1570 CPUState
*env
= mon_get_cpu();
1573 monitor_printf (mon
, "ITLB:\n");
1574 for (i
= 0 ; i
< ITLB_SIZE
; i
++)
1575 print_tlb (mon
, i
, &env
->itlb
[i
]);
1576 monitor_printf (mon
, "UTLB:\n");
1577 for (i
= 0 ; i
< UTLB_SIZE
; i
++)
1578 print_tlb (mon
, i
, &env
->utlb
[i
]);
1583 static void do_info_kvm(Monitor
*mon
)
1585 #if defined(USE_KVM) || defined(CONFIG_KVM)
1586 monitor_printf(mon
, "kvm support: ");
1588 monitor_printf(mon
, "enabled\n");
1590 monitor_printf(mon
, "disabled\n");
1592 monitor_printf(mon
, "kvm support: not compiled\n");
1596 static void do_info_numa(Monitor
*mon
)
1601 monitor_printf(mon
, "%d nodes\n", nb_numa_nodes
);
1602 for (i
= 0; i
< nb_numa_nodes
; i
++) {
1603 monitor_printf(mon
, "node %d cpus:", i
);
1604 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
1605 if (env
->numa_node
== i
) {
1606 monitor_printf(mon
, " %d", env
->cpu_index
);
1609 monitor_printf(mon
, "\n");
1610 monitor_printf(mon
, "node %d size: %" PRId64
" MB\n", i
,
1615 #ifdef CONFIG_PROFILER
1620 static void do_info_profile(Monitor
*mon
)
1626 monitor_printf(mon
, "async time %" PRId64
" (%0.3f)\n",
1627 dev_time
, dev_time
/ (double)get_ticks_per_sec());
1628 monitor_printf(mon
, "qemu time %" PRId64
" (%0.3f)\n",
1629 qemu_time
, qemu_time
/ (double)get_ticks_per_sec());
1634 static void do_info_profile(Monitor
*mon
)
1636 monitor_printf(mon
, "Internal profiler not compiled\n");
1640 /* Capture support */
1641 static QLIST_HEAD (capture_list_head
, CaptureState
) capture_head
;
1643 static void do_info_capture(Monitor
*mon
)
1648 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1649 monitor_printf(mon
, "[%d]: ", i
);
1650 s
->ops
.info (s
->opaque
);
1655 static void do_stop_capture(Monitor
*mon
, const QDict
*qdict
)
1658 int n
= qdict_get_int(qdict
, "n");
1661 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1663 s
->ops
.destroy (s
->opaque
);
1664 QLIST_REMOVE (s
, entries
);
1671 static void do_wav_capture(Monitor
*mon
, const QDict
*qdict
)
1673 const char *path
= qdict_get_str(qdict
, "path");
1674 int has_freq
= qdict_haskey(qdict
, "freq");
1675 int freq
= qdict_get_try_int(qdict
, "freq", -1);
1676 int has_bits
= qdict_haskey(qdict
, "bits");
1677 int bits
= qdict_get_try_int(qdict
, "bits", -1);
1678 int has_channels
= qdict_haskey(qdict
, "nchannels");
1679 int nchannels
= qdict_get_try_int(qdict
, "nchannels", -1);
1682 s
= qemu_mallocz (sizeof (*s
));
1684 freq
= has_freq
? freq
: 44100;
1685 bits
= has_bits
? bits
: 16;
1686 nchannels
= has_channels
? nchannels
: 2;
1688 if (wav_start_capture (s
, path
, freq
, bits
, nchannels
)) {
1689 monitor_printf(mon
, "Faied to add wave capture\n");
1692 QLIST_INSERT_HEAD (&capture_head
, s
, entries
);
1696 #if defined(TARGET_I386)
1697 static void do_inject_nmi(Monitor
*mon
, const QDict
*qdict
)
1700 int cpu_index
= qdict_get_int(qdict
, "cpu_index");
1702 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
1703 if (env
->cpu_index
== cpu_index
) {
1705 kvm_inject_interrupt(env
, CPU_INTERRUPT_NMI
);
1707 cpu_interrupt(env
, CPU_INTERRUPT_NMI
);
1713 static void do_info_status(Monitor
*mon
)
1717 monitor_printf(mon
, "VM status: running (single step mode)\n");
1719 monitor_printf(mon
, "VM status: running\n");
1722 monitor_printf(mon
, "VM status: paused\n");
1726 * do_balloon(): Request VM to change its memory allocation
1728 static void do_balloon(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1730 int value
= qdict_get_int(qdict
, "value");
1731 ram_addr_t target
= value
;
1732 qemu_balloon(target
<< 20);
1735 static void monitor_print_balloon(Monitor
*mon
, const QObject
*data
)
1737 monitor_printf(mon
, "balloon: actual=%d\n",
1738 (int)qint_get_int(qobject_to_qint(data
)));
1742 * do_info_balloon(): Balloon information
1744 static void do_info_balloon(Monitor
*mon
, QObject
**ret_data
)
1748 actual
= qemu_balloon_status();
1749 if (kvm_enabled() && !kvm_has_sync_mmu())
1750 monitor_printf(mon
, "Using KVM without synchronous MMU, "
1751 "ballooning disabled\n");
1752 else if (actual
== 0)
1753 monitor_printf(mon
, "Ballooning not activated in VM\n");
1755 *ret_data
= QOBJECT(qint_from_int((int)(actual
>> 20)));
1758 static qemu_acl
*find_acl(Monitor
*mon
, const char *name
)
1760 qemu_acl
*acl
= qemu_acl_find(name
);
1763 monitor_printf(mon
, "acl: unknown list '%s'\n", name
);
1768 static void do_acl_show(Monitor
*mon
, const QDict
*qdict
)
1770 const char *aclname
= qdict_get_str(qdict
, "aclname");
1771 qemu_acl
*acl
= find_acl(mon
, aclname
);
1772 qemu_acl_entry
*entry
;
1776 monitor_printf(mon
, "policy: %s\n",
1777 acl
->defaultDeny
? "deny" : "allow");
1778 QTAILQ_FOREACH(entry
, &acl
->entries
, next
) {
1780 monitor_printf(mon
, "%d: %s %s\n", i
,
1781 entry
->deny
? "deny" : "allow", entry
->match
);
1786 static void do_acl_reset(Monitor
*mon
, const QDict
*qdict
)
1788 const char *aclname
= qdict_get_str(qdict
, "aclname");
1789 qemu_acl
*acl
= find_acl(mon
, aclname
);
1792 qemu_acl_reset(acl
);
1793 monitor_printf(mon
, "acl: removed all rules\n");
1797 static void do_acl_policy(Monitor
*mon
, const QDict
*qdict
)
1799 const char *aclname
= qdict_get_str(qdict
, "aclname");
1800 const char *policy
= qdict_get_str(qdict
, "policy");
1801 qemu_acl
*acl
= find_acl(mon
, aclname
);
1804 if (strcmp(policy
, "allow") == 0) {
1805 acl
->defaultDeny
= 0;
1806 monitor_printf(mon
, "acl: policy set to 'allow'\n");
1807 } else if (strcmp(policy
, "deny") == 0) {
1808 acl
->defaultDeny
= 1;
1809 monitor_printf(mon
, "acl: policy set to 'deny'\n");
1811 monitor_printf(mon
, "acl: unknown policy '%s', "
1812 "expected 'deny' or 'allow'\n", policy
);
1817 static void do_acl_add(Monitor
*mon
, const QDict
*qdict
)
1819 const char *aclname
= qdict_get_str(qdict
, "aclname");
1820 const char *match
= qdict_get_str(qdict
, "match");
1821 const char *policy
= qdict_get_str(qdict
, "policy");
1822 int has_index
= qdict_haskey(qdict
, "index");
1823 int index
= qdict_get_try_int(qdict
, "index", -1);
1824 qemu_acl
*acl
= find_acl(mon
, aclname
);
1828 if (strcmp(policy
, "allow") == 0) {
1830 } else if (strcmp(policy
, "deny") == 0) {
1833 monitor_printf(mon
, "acl: unknown policy '%s', "
1834 "expected 'deny' or 'allow'\n", policy
);
1838 ret
= qemu_acl_insert(acl
, deny
, match
, index
);
1840 ret
= qemu_acl_append(acl
, deny
, match
);
1842 monitor_printf(mon
, "acl: unable to add acl entry\n");
1844 monitor_printf(mon
, "acl: added rule at position %d\n", ret
);
1848 static void do_acl_remove(Monitor
*mon
, const QDict
*qdict
)
1850 const char *aclname
= qdict_get_str(qdict
, "aclname");
1851 const char *match
= qdict_get_str(qdict
, "match");
1852 qemu_acl
*acl
= find_acl(mon
, aclname
);
1856 ret
= qemu_acl_remove(acl
, match
);
1858 monitor_printf(mon
, "acl: no matching acl entry\n");
1860 monitor_printf(mon
, "acl: removed rule at position %d\n", ret
);
1864 #if defined(TARGET_I386)
1865 static void do_inject_mce(Monitor
*mon
, const QDict
*qdict
)
1868 int cpu_index
= qdict_get_int(qdict
, "cpu_index");
1869 int bank
= qdict_get_int(qdict
, "bank");
1870 uint64_t status
= qdict_get_int(qdict
, "status");
1871 uint64_t mcg_status
= qdict_get_int(qdict
, "mcg_status");
1872 uint64_t addr
= qdict_get_int(qdict
, "addr");
1873 uint64_t misc
= qdict_get_int(qdict
, "misc");
1875 for (cenv
= first_cpu
; cenv
!= NULL
; cenv
= cenv
->next_cpu
)
1876 if (cenv
->cpu_index
== cpu_index
&& cenv
->mcg_cap
) {
1877 cpu_inject_x86_mce(cenv
, bank
, status
, mcg_status
, addr
, misc
);
1883 static void do_getfd(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1885 const char *fdname
= qdict_get_str(qdict
, "fdname");
1889 fd
= qemu_chr_get_msgfd(mon
->chr
);
1891 monitor_printf(mon
, "getfd: no file descriptor supplied via SCM_RIGHTS\n");
1895 if (qemu_isdigit(fdname
[0])) {
1896 monitor_printf(mon
, "getfd: monitor names may not begin with a number\n");
1902 monitor_printf(mon
, "Failed to dup() file descriptor: %s\n",
1907 QLIST_FOREACH(monfd
, &mon
->fds
, next
) {
1908 if (strcmp(monfd
->name
, fdname
) != 0) {
1917 monfd
= qemu_mallocz(sizeof(mon_fd_t
));
1918 monfd
->name
= qemu_strdup(fdname
);
1921 QLIST_INSERT_HEAD(&mon
->fds
, monfd
, next
);
1924 static void do_closefd(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1926 const char *fdname
= qdict_get_str(qdict
, "fdname");
1929 QLIST_FOREACH(monfd
, &mon
->fds
, next
) {
1930 if (strcmp(monfd
->name
, fdname
) != 0) {
1934 QLIST_REMOVE(monfd
, next
);
1936 qemu_free(monfd
->name
);
1941 monitor_printf(mon
, "Failed to find file descriptor named %s\n",
1945 static void do_loadvm(Monitor
*mon
, const QDict
*qdict
)
1947 int saved_vm_running
= vm_running
;
1948 const char *name
= qdict_get_str(qdict
, "name");
1952 if (load_vmstate(mon
, name
) >= 0 && saved_vm_running
)
1956 int monitor_get_fd(Monitor
*mon
, const char *fdname
)
1960 QLIST_FOREACH(monfd
, &mon
->fds
, next
) {
1963 if (strcmp(monfd
->name
, fdname
) != 0) {
1969 /* caller takes ownership of fd */
1970 QLIST_REMOVE(monfd
, next
);
1971 qemu_free(monfd
->name
);
1980 static const mon_cmd_t mon_cmds
[] = {
1981 #include "qemu-monitor.h"
1985 /* Please update qemu-monitor.hx when adding or changing commands */
1986 static const mon_cmd_t info_cmds
[] = {
1991 .help
= "show the version of QEMU",
1992 .user_print
= monitor_print_qobject
,
1993 .mhandler
.info_new
= do_info_version
,
1999 .help
= "show the network state",
2000 .mhandler
.info
= do_info_network
,
2006 .help
= "show the character devices",
2007 .mhandler
.info
= qemu_chr_info
,
2013 .help
= "show the block devices",
2014 .mhandler
.info
= bdrv_info
,
2017 .name
= "blockstats",
2020 .help
= "show block device statistics",
2021 .mhandler
.info
= bdrv_info_stats
,
2024 .name
= "registers",
2027 .help
= "show the cpu registers",
2028 .mhandler
.info
= do_info_registers
,
2034 .help
= "show infos for each CPU",
2035 .user_print
= monitor_print_cpus
,
2036 .mhandler
.info_new
= do_info_cpus
,
2042 .help
= "show the command line history",
2043 .mhandler
.info
= do_info_history
,
2049 .help
= "show the interrupts statistics (if available)",
2050 .mhandler
.info
= irq_info
,
2056 .help
= "show i8259 (PIC) state",
2057 .mhandler
.info
= pic_info
,
2063 .help
= "show PCI info",
2064 .mhandler
.info
= pci_info
,
2066 #if defined(TARGET_I386) || defined(TARGET_SH4)
2071 .help
= "show virtual to physical memory mappings",
2072 .mhandler
.info
= tlb_info
,
2075 #if defined(TARGET_I386)
2080 .help
= "show the active virtual memory mappings",
2081 .mhandler
.info
= mem_info
,
2087 .help
= "show state of HPET",
2088 .mhandler
.info
= do_info_hpet
,
2095 .help
= "show dynamic compiler info",
2096 .mhandler
.info
= do_info_jit
,
2102 .help
= "show KVM information",
2103 .mhandler
.info
= do_info_kvm
,
2109 .help
= "show NUMA information",
2110 .mhandler
.info
= do_info_numa
,
2116 .help
= "show guest USB devices",
2117 .mhandler
.info
= usb_info
,
2123 .help
= "show host USB devices",
2124 .mhandler
.info
= usb_host_info
,
2130 .help
= "show profiling information",
2131 .mhandler
.info
= do_info_profile
,
2137 .help
= "show capture information",
2138 .mhandler
.info
= do_info_capture
,
2141 .name
= "snapshots",
2144 .help
= "show the currently saved VM snapshots",
2145 .mhandler
.info
= do_info_snapshots
,
2151 .help
= "show the current VM status (running|paused)",
2152 .mhandler
.info
= do_info_status
,
2158 .help
= "show guest PCMCIA status",
2159 .mhandler
.info
= pcmcia_info
,
2165 .help
= "show which guest mouse is receiving events",
2166 .mhandler
.info
= do_info_mice
,
2172 .help
= "show the vnc server status",
2173 .mhandler
.info
= do_info_vnc
,
2179 .help
= "show the current VM name",
2180 .mhandler
.info
= do_info_name
,
2186 .help
= "show the current VM UUID",
2187 .mhandler
.info
= do_info_uuid
,
2189 #if defined(TARGET_PPC)
2194 .help
= "show CPU statistics",
2195 .mhandler
.info
= do_info_cpu_stats
,
2198 #if defined(CONFIG_SLIRP)
2203 .help
= "show user network stack connection states",
2204 .mhandler
.info
= do_info_usernet
,
2211 .help
= "show migration status",
2212 .mhandler
.info
= do_info_migrate
,
2218 .help
= "show balloon information",
2219 .user_print
= monitor_print_balloon
,
2220 .mhandler
.info_new
= do_info_balloon
,
2226 .help
= "show device tree",
2227 .mhandler
.info
= do_info_qtree
,
2233 .help
= "show qdev device model list",
2234 .mhandler
.info
= do_info_qdm
,
2240 .help
= "show roms",
2241 .mhandler
.info
= do_info_roms
,
2248 /*******************************************************************/
2250 static const char *pch
;
2251 static jmp_buf expr_env
;
2256 typedef struct MonitorDef
{
2259 target_long (*get_value
)(const struct MonitorDef
*md
, int val
);
2263 #if defined(TARGET_I386)
2264 static target_long
monitor_get_pc (const struct MonitorDef
*md
, int val
)
2266 CPUState
*env
= mon_get_cpu();
2269 return env
->eip
+ env
->segs
[R_CS
].base
;
2273 #if defined(TARGET_PPC)
2274 static target_long
monitor_get_ccr (const struct MonitorDef
*md
, int val
)
2276 CPUState
*env
= mon_get_cpu();
2284 for (i
= 0; i
< 8; i
++)
2285 u
|= env
->crf
[i
] << (32 - (4 * i
));
2290 static target_long
monitor_get_msr (const struct MonitorDef
*md
, int val
)
2292 CPUState
*env
= mon_get_cpu();
2298 static target_long
monitor_get_xer (const struct MonitorDef
*md
, int val
)
2300 CPUState
*env
= mon_get_cpu();
2306 static target_long
monitor_get_decr (const struct MonitorDef
*md
, int val
)
2308 CPUState
*env
= mon_get_cpu();
2311 return cpu_ppc_load_decr(env
);
2314 static target_long
monitor_get_tbu (const struct MonitorDef
*md
, int val
)
2316 CPUState
*env
= mon_get_cpu();
2319 return cpu_ppc_load_tbu(env
);
2322 static target_long
monitor_get_tbl (const struct MonitorDef
*md
, int val
)
2324 CPUState
*env
= mon_get_cpu();
2327 return cpu_ppc_load_tbl(env
);
2331 #if defined(TARGET_SPARC)
2332 #ifndef TARGET_SPARC64
2333 static target_long
monitor_get_psr (const struct MonitorDef
*md
, int val
)
2335 CPUState
*env
= mon_get_cpu();
2338 return GET_PSR(env
);
2342 static target_long
monitor_get_reg(const struct MonitorDef
*md
, int val
)
2344 CPUState
*env
= mon_get_cpu();
2347 return env
->regwptr
[val
];
2351 static const MonitorDef monitor_defs
[] = {
2354 #define SEG(name, seg) \
2355 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
2356 { name ".base", offsetof(CPUState, segs[seg].base) },\
2357 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
2359 { "eax", offsetof(CPUState
, regs
[0]) },
2360 { "ecx", offsetof(CPUState
, regs
[1]) },
2361 { "edx", offsetof(CPUState
, regs
[2]) },
2362 { "ebx", offsetof(CPUState
, regs
[3]) },
2363 { "esp|sp", offsetof(CPUState
, regs
[4]) },
2364 { "ebp|fp", offsetof(CPUState
, regs
[5]) },
2365 { "esi", offsetof(CPUState
, regs
[6]) },
2366 { "edi", offsetof(CPUState
, regs
[7]) },
2367 #ifdef TARGET_X86_64
2368 { "r8", offsetof(CPUState
, regs
[8]) },
2369 { "r9", offsetof(CPUState
, regs
[9]) },
2370 { "r10", offsetof(CPUState
, regs
[10]) },
2371 { "r11", offsetof(CPUState
, regs
[11]) },
2372 { "r12", offsetof(CPUState
, regs
[12]) },
2373 { "r13", offsetof(CPUState
, regs
[13]) },
2374 { "r14", offsetof(CPUState
, regs
[14]) },
2375 { "r15", offsetof(CPUState
, regs
[15]) },
2377 { "eflags", offsetof(CPUState
, eflags
) },
2378 { "eip", offsetof(CPUState
, eip
) },
2385 { "pc", 0, monitor_get_pc
, },
2386 #elif defined(TARGET_PPC)
2387 /* General purpose registers */
2388 { "r0", offsetof(CPUState
, gpr
[0]) },
2389 { "r1", offsetof(CPUState
, gpr
[1]) },
2390 { "r2", offsetof(CPUState
, gpr
[2]) },
2391 { "r3", offsetof(CPUState
, gpr
[3]) },
2392 { "r4", offsetof(CPUState
, gpr
[4]) },
2393 { "r5", offsetof(CPUState
, gpr
[5]) },
2394 { "r6", offsetof(CPUState
, gpr
[6]) },
2395 { "r7", offsetof(CPUState
, gpr
[7]) },
2396 { "r8", offsetof(CPUState
, gpr
[8]) },
2397 { "r9", offsetof(CPUState
, gpr
[9]) },
2398 { "r10", offsetof(CPUState
, gpr
[10]) },
2399 { "r11", offsetof(CPUState
, gpr
[11]) },
2400 { "r12", offsetof(CPUState
, gpr
[12]) },
2401 { "r13", offsetof(CPUState
, gpr
[13]) },
2402 { "r14", offsetof(CPUState
, gpr
[14]) },
2403 { "r15", offsetof(CPUState
, gpr
[15]) },
2404 { "r16", offsetof(CPUState
, gpr
[16]) },
2405 { "r17", offsetof(CPUState
, gpr
[17]) },
2406 { "r18", offsetof(CPUState
, gpr
[18]) },
2407 { "r19", offsetof(CPUState
, gpr
[19]) },
2408 { "r20", offsetof(CPUState
, gpr
[20]) },
2409 { "r21", offsetof(CPUState
, gpr
[21]) },
2410 { "r22", offsetof(CPUState
, gpr
[22]) },
2411 { "r23", offsetof(CPUState
, gpr
[23]) },
2412 { "r24", offsetof(CPUState
, gpr
[24]) },
2413 { "r25", offsetof(CPUState
, gpr
[25]) },
2414 { "r26", offsetof(CPUState
, gpr
[26]) },
2415 { "r27", offsetof(CPUState
, gpr
[27]) },
2416 { "r28", offsetof(CPUState
, gpr
[28]) },
2417 { "r29", offsetof(CPUState
, gpr
[29]) },
2418 { "r30", offsetof(CPUState
, gpr
[30]) },
2419 { "r31", offsetof(CPUState
, gpr
[31]) },
2420 /* Floating point registers */
2421 { "f0", offsetof(CPUState
, fpr
[0]) },
2422 { "f1", offsetof(CPUState
, fpr
[1]) },
2423 { "f2", offsetof(CPUState
, fpr
[2]) },
2424 { "f3", offsetof(CPUState
, fpr
[3]) },
2425 { "f4", offsetof(CPUState
, fpr
[4]) },
2426 { "f5", offsetof(CPUState
, fpr
[5]) },
2427 { "f6", offsetof(CPUState
, fpr
[6]) },
2428 { "f7", offsetof(CPUState
, fpr
[7]) },
2429 { "f8", offsetof(CPUState
, fpr
[8]) },
2430 { "f9", offsetof(CPUState
, fpr
[9]) },
2431 { "f10", offsetof(CPUState
, fpr
[10]) },
2432 { "f11", offsetof(CPUState
, fpr
[11]) },
2433 { "f12", offsetof(CPUState
, fpr
[12]) },
2434 { "f13", offsetof(CPUState
, fpr
[13]) },
2435 { "f14", offsetof(CPUState
, fpr
[14]) },
2436 { "f15", offsetof(CPUState
, fpr
[15]) },
2437 { "f16", offsetof(CPUState
, fpr
[16]) },
2438 { "f17", offsetof(CPUState
, fpr
[17]) },
2439 { "f18", offsetof(CPUState
, fpr
[18]) },
2440 { "f19", offsetof(CPUState
, fpr
[19]) },
2441 { "f20", offsetof(CPUState
, fpr
[20]) },
2442 { "f21", offsetof(CPUState
, fpr
[21]) },
2443 { "f22", offsetof(CPUState
, fpr
[22]) },
2444 { "f23", offsetof(CPUState
, fpr
[23]) },
2445 { "f24", offsetof(CPUState
, fpr
[24]) },
2446 { "f25", offsetof(CPUState
, fpr
[25]) },
2447 { "f26", offsetof(CPUState
, fpr
[26]) },
2448 { "f27", offsetof(CPUState
, fpr
[27]) },
2449 { "f28", offsetof(CPUState
, fpr
[28]) },
2450 { "f29", offsetof(CPUState
, fpr
[29]) },
2451 { "f30", offsetof(CPUState
, fpr
[30]) },
2452 { "f31", offsetof(CPUState
, fpr
[31]) },
2453 { "fpscr", offsetof(CPUState
, fpscr
) },
2454 /* Next instruction pointer */
2455 { "nip|pc", offsetof(CPUState
, nip
) },
2456 { "lr", offsetof(CPUState
, lr
) },
2457 { "ctr", offsetof(CPUState
, ctr
) },
2458 { "decr", 0, &monitor_get_decr
, },
2459 { "ccr", 0, &monitor_get_ccr
, },
2460 /* Machine state register */
2461 { "msr", 0, &monitor_get_msr
, },
2462 { "xer", 0, &monitor_get_xer
, },
2463 { "tbu", 0, &monitor_get_tbu
, },
2464 { "tbl", 0, &monitor_get_tbl
, },
2465 #if defined(TARGET_PPC64)
2466 /* Address space register */
2467 { "asr", offsetof(CPUState
, asr
) },
2469 /* Segment registers */
2470 { "sdr1", offsetof(CPUState
, sdr1
) },
2471 { "sr0", offsetof(CPUState
, sr
[0]) },
2472 { "sr1", offsetof(CPUState
, sr
[1]) },
2473 { "sr2", offsetof(CPUState
, sr
[2]) },
2474 { "sr3", offsetof(CPUState
, sr
[3]) },
2475 { "sr4", offsetof(CPUState
, sr
[4]) },
2476 { "sr5", offsetof(CPUState
, sr
[5]) },
2477 { "sr6", offsetof(CPUState
, sr
[6]) },
2478 { "sr7", offsetof(CPUState
, sr
[7]) },
2479 { "sr8", offsetof(CPUState
, sr
[8]) },
2480 { "sr9", offsetof(CPUState
, sr
[9]) },
2481 { "sr10", offsetof(CPUState
, sr
[10]) },
2482 { "sr11", offsetof(CPUState
, sr
[11]) },
2483 { "sr12", offsetof(CPUState
, sr
[12]) },
2484 { "sr13", offsetof(CPUState
, sr
[13]) },
2485 { "sr14", offsetof(CPUState
, sr
[14]) },
2486 { "sr15", offsetof(CPUState
, sr
[15]) },
2487 /* Too lazy to put BATs and SPRs ... */
2488 #elif defined(TARGET_SPARC)
2489 { "g0", offsetof(CPUState
, gregs
[0]) },
2490 { "g1", offsetof(CPUState
, gregs
[1]) },
2491 { "g2", offsetof(CPUState
, gregs
[2]) },
2492 { "g3", offsetof(CPUState
, gregs
[3]) },
2493 { "g4", offsetof(CPUState
, gregs
[4]) },
2494 { "g5", offsetof(CPUState
, gregs
[5]) },
2495 { "g6", offsetof(CPUState
, gregs
[6]) },
2496 { "g7", offsetof(CPUState
, gregs
[7]) },
2497 { "o0", 0, monitor_get_reg
},
2498 { "o1", 1, monitor_get_reg
},
2499 { "o2", 2, monitor_get_reg
},
2500 { "o3", 3, monitor_get_reg
},
2501 { "o4", 4, monitor_get_reg
},
2502 { "o5", 5, monitor_get_reg
},
2503 { "o6", 6, monitor_get_reg
},
2504 { "o7", 7, monitor_get_reg
},
2505 { "l0", 8, monitor_get_reg
},
2506 { "l1", 9, monitor_get_reg
},
2507 { "l2", 10, monitor_get_reg
},
2508 { "l3", 11, monitor_get_reg
},
2509 { "l4", 12, monitor_get_reg
},
2510 { "l5", 13, monitor_get_reg
},
2511 { "l6", 14, monitor_get_reg
},
2512 { "l7", 15, monitor_get_reg
},
2513 { "i0", 16, monitor_get_reg
},
2514 { "i1", 17, monitor_get_reg
},
2515 { "i2", 18, monitor_get_reg
},
2516 { "i3", 19, monitor_get_reg
},
2517 { "i4", 20, monitor_get_reg
},
2518 { "i5", 21, monitor_get_reg
},
2519 { "i6", 22, monitor_get_reg
},
2520 { "i7", 23, monitor_get_reg
},
2521 { "pc", offsetof(CPUState
, pc
) },
2522 { "npc", offsetof(CPUState
, npc
) },
2523 { "y", offsetof(CPUState
, y
) },
2524 #ifndef TARGET_SPARC64
2525 { "psr", 0, &monitor_get_psr
, },
2526 { "wim", offsetof(CPUState
, wim
) },
2528 { "tbr", offsetof(CPUState
, tbr
) },
2529 { "fsr", offsetof(CPUState
, fsr
) },
2530 { "f0", offsetof(CPUState
, fpr
[0]) },
2531 { "f1", offsetof(CPUState
, fpr
[1]) },
2532 { "f2", offsetof(CPUState
, fpr
[2]) },
2533 { "f3", offsetof(CPUState
, fpr
[3]) },
2534 { "f4", offsetof(CPUState
, fpr
[4]) },
2535 { "f5", offsetof(CPUState
, fpr
[5]) },
2536 { "f6", offsetof(CPUState
, fpr
[6]) },
2537 { "f7", offsetof(CPUState
, fpr
[7]) },
2538 { "f8", offsetof(CPUState
, fpr
[8]) },
2539 { "f9", offsetof(CPUState
, fpr
[9]) },
2540 { "f10", offsetof(CPUState
, fpr
[10]) },
2541 { "f11", offsetof(CPUState
, fpr
[11]) },
2542 { "f12", offsetof(CPUState
, fpr
[12]) },
2543 { "f13", offsetof(CPUState
, fpr
[13]) },
2544 { "f14", offsetof(CPUState
, fpr
[14]) },
2545 { "f15", offsetof(CPUState
, fpr
[15]) },
2546 { "f16", offsetof(CPUState
, fpr
[16]) },
2547 { "f17", offsetof(CPUState
, fpr
[17]) },
2548 { "f18", offsetof(CPUState
, fpr
[18]) },
2549 { "f19", offsetof(CPUState
, fpr
[19]) },
2550 { "f20", offsetof(CPUState
, fpr
[20]) },
2551 { "f21", offsetof(CPUState
, fpr
[21]) },
2552 { "f22", offsetof(CPUState
, fpr
[22]) },
2553 { "f23", offsetof(CPUState
, fpr
[23]) },
2554 { "f24", offsetof(CPUState
, fpr
[24]) },
2555 { "f25", offsetof(CPUState
, fpr
[25]) },
2556 { "f26", offsetof(CPUState
, fpr
[26]) },
2557 { "f27", offsetof(CPUState
, fpr
[27]) },
2558 { "f28", offsetof(CPUState
, fpr
[28]) },
2559 { "f29", offsetof(CPUState
, fpr
[29]) },
2560 { "f30", offsetof(CPUState
, fpr
[30]) },
2561 { "f31", offsetof(CPUState
, fpr
[31]) },
2562 #ifdef TARGET_SPARC64
2563 { "f32", offsetof(CPUState
, fpr
[32]) },
2564 { "f34", offsetof(CPUState
, fpr
[34]) },
2565 { "f36", offsetof(CPUState
, fpr
[36]) },
2566 { "f38", offsetof(CPUState
, fpr
[38]) },
2567 { "f40", offsetof(CPUState
, fpr
[40]) },
2568 { "f42", offsetof(CPUState
, fpr
[42]) },
2569 { "f44", offsetof(CPUState
, fpr
[44]) },
2570 { "f46", offsetof(CPUState
, fpr
[46]) },
2571 { "f48", offsetof(CPUState
, fpr
[48]) },
2572 { "f50", offsetof(CPUState
, fpr
[50]) },
2573 { "f52", offsetof(CPUState
, fpr
[52]) },
2574 { "f54", offsetof(CPUState
, fpr
[54]) },
2575 { "f56", offsetof(CPUState
, fpr
[56]) },
2576 { "f58", offsetof(CPUState
, fpr
[58]) },
2577 { "f60", offsetof(CPUState
, fpr
[60]) },
2578 { "f62", offsetof(CPUState
, fpr
[62]) },
2579 { "asi", offsetof(CPUState
, asi
) },
2580 { "pstate", offsetof(CPUState
, pstate
) },
2581 { "cansave", offsetof(CPUState
, cansave
) },
2582 { "canrestore", offsetof(CPUState
, canrestore
) },
2583 { "otherwin", offsetof(CPUState
, otherwin
) },
2584 { "wstate", offsetof(CPUState
, wstate
) },
2585 { "cleanwin", offsetof(CPUState
, cleanwin
) },
2586 { "fprs", offsetof(CPUState
, fprs
) },
2592 static void expr_error(Monitor
*mon
, const char *msg
)
2594 monitor_printf(mon
, "%s\n", msg
);
2595 longjmp(expr_env
, 1);
2598 /* return 0 if OK, -1 if not found, -2 if no CPU defined */
2599 static int get_monitor_def(target_long
*pval
, const char *name
)
2601 const MonitorDef
*md
;
2604 for(md
= monitor_defs
; md
->name
!= NULL
; md
++) {
2605 if (compare_cmd(name
, md
->name
)) {
2606 if (md
->get_value
) {
2607 *pval
= md
->get_value(md
, md
->offset
);
2609 CPUState
*env
= mon_get_cpu();
2612 ptr
= (uint8_t *)env
+ md
->offset
;
2615 *pval
= *(int32_t *)ptr
;
2618 *pval
= *(target_long
*)ptr
;
2631 static void next(void)
2635 while (qemu_isspace(*pch
))
2640 static int64_t expr_sum(Monitor
*mon
);
2642 static int64_t expr_unary(Monitor
*mon
)
2651 n
= expr_unary(mon
);
2655 n
= -expr_unary(mon
);
2659 n
= ~expr_unary(mon
);
2665 expr_error(mon
, "')' expected");
2672 expr_error(mon
, "character constant expected");
2676 expr_error(mon
, "missing terminating \' character");
2686 while ((*pch
>= 'a' && *pch
<= 'z') ||
2687 (*pch
>= 'A' && *pch
<= 'Z') ||
2688 (*pch
>= '0' && *pch
<= '9') ||
2689 *pch
== '_' || *pch
== '.') {
2690 if ((q
- buf
) < sizeof(buf
) - 1)
2694 while (qemu_isspace(*pch
))
2697 ret
= get_monitor_def(®
, buf
);
2699 expr_error(mon
, "unknown register");
2701 expr_error(mon
, "no cpu defined");
2706 expr_error(mon
, "unexpected end of expression");
2710 #if TARGET_PHYS_ADDR_BITS > 32
2711 n
= strtoull(pch
, &p
, 0);
2713 n
= strtoul(pch
, &p
, 0);
2716 expr_error(mon
, "invalid char in expression");
2719 while (qemu_isspace(*pch
))
2727 static int64_t expr_prod(Monitor
*mon
)
2732 val
= expr_unary(mon
);
2735 if (op
!= '*' && op
!= '/' && op
!= '%')
2738 val2
= expr_unary(mon
);
2747 expr_error(mon
, "division by zero");
2758 static int64_t expr_logic(Monitor
*mon
)
2763 val
= expr_prod(mon
);
2766 if (op
!= '&' && op
!= '|' && op
!= '^')
2769 val2
= expr_prod(mon
);
2786 static int64_t expr_sum(Monitor
*mon
)
2791 val
= expr_logic(mon
);
2794 if (op
!= '+' && op
!= '-')
2797 val2
= expr_logic(mon
);
2806 static int get_expr(Monitor
*mon
, int64_t *pval
, const char **pp
)
2809 if (setjmp(expr_env
)) {
2813 while (qemu_isspace(*pch
))
2815 *pval
= expr_sum(mon
);
2820 static int get_str(char *buf
, int buf_size
, const char **pp
)
2828 while (qemu_isspace(*p
))
2838 while (*p
!= '\0' && *p
!= '\"') {
2854 qemu_printf("unsupported escape code: '\\%c'\n", c
);
2857 if ((q
- buf
) < buf_size
- 1) {
2861 if ((q
- buf
) < buf_size
- 1) {
2868 qemu_printf("unterminated string\n");
2873 while (*p
!= '\0' && !qemu_isspace(*p
)) {
2874 if ((q
- buf
) < buf_size
- 1) {
2886 * Store the command-name in cmdname, and return a pointer to
2887 * the remaining of the command string.
2889 static const char *get_command_name(const char *cmdline
,
2890 char *cmdname
, size_t nlen
)
2893 const char *p
, *pstart
;
2896 while (qemu_isspace(*p
))
2901 while (*p
!= '\0' && *p
!= '/' && !qemu_isspace(*p
))
2906 memcpy(cmdname
, pstart
, len
);
2907 cmdname
[len
] = '\0';
2912 * Read key of 'type' into 'key' and return the current
2915 static char *key_get_info(const char *type
, char **key
)
2923 p
= strchr(type
, ':');
2930 str
= qemu_malloc(len
+ 1);
2931 memcpy(str
, type
, len
);
2938 static int default_fmt_format
= 'x';
2939 static int default_fmt_size
= 4;
2943 static const mon_cmd_t
*monitor_parse_command(Monitor
*mon
,
2944 const char *cmdline
,
2947 const char *p
, *typestr
;
2949 const mon_cmd_t
*cmd
;
2955 monitor_printf(mon
, "command='%s'\n", cmdline
);
2958 /* extract the command name */
2959 p
= get_command_name(cmdline
, cmdname
, sizeof(cmdname
));
2963 /* find the command */
2964 for(cmd
= mon_cmds
; cmd
->name
!= NULL
; cmd
++) {
2965 if (compare_cmd(cmdname
, cmd
->name
))
2969 if (cmd
->name
== NULL
) {
2970 monitor_printf(mon
, "unknown command: '%s'\n", cmdname
);
2974 /* parse the parameters */
2975 typestr
= cmd
->args_type
;
2977 typestr
= key_get_info(typestr
, &key
);
2989 while (qemu_isspace(*p
))
2991 if (*typestr
== '?') {
2994 /* no optional string: NULL argument */
2998 ret
= get_str(buf
, sizeof(buf
), &p
);
3002 monitor_printf(mon
, "%s: filename expected\n",
3006 monitor_printf(mon
, "%s: block device name expected\n",
3010 monitor_printf(mon
, "%s: string expected\n", cmdname
);
3015 qdict_put(qdict
, key
, qstring_from_str(buf
));
3020 int count
, format
, size
;
3022 while (qemu_isspace(*p
))
3028 if (qemu_isdigit(*p
)) {
3030 while (qemu_isdigit(*p
)) {
3031 count
= count
* 10 + (*p
- '0');
3069 if (*p
!= '\0' && !qemu_isspace(*p
)) {
3070 monitor_printf(mon
, "invalid char in format: '%c'\n",
3075 format
= default_fmt_format
;
3076 if (format
!= 'i') {
3077 /* for 'i', not specifying a size gives -1 as size */
3079 size
= default_fmt_size
;
3080 default_fmt_size
= size
;
3082 default_fmt_format
= format
;
3085 format
= default_fmt_format
;
3086 if (format
!= 'i') {
3087 size
= default_fmt_size
;
3092 qdict_put(qdict
, "count", qint_from_int(count
));
3093 qdict_put(qdict
, "format", qint_from_int(format
));
3094 qdict_put(qdict
, "size", qint_from_int(size
));
3102 while (qemu_isspace(*p
))
3104 if (*typestr
== '?' || *typestr
== '.') {
3105 if (*typestr
== '?') {
3113 while (qemu_isspace(*p
))
3122 if (get_expr(mon
, &val
, &p
))
3124 /* Check if 'i' is greater than 32-bit */
3125 if ((c
== 'i') && ((val
>> 32) & 0xffffffff)) {
3126 monitor_printf(mon
, "\'%s\' has failed: ", cmdname
);
3127 monitor_printf(mon
, "integer is for 32-bit values\n");
3130 qdict_put(qdict
, key
, qint_from_int(val
));
3141 while (qemu_isspace(*p
))
3147 monitor_printf(mon
, "%s: unsupported option -%c\n",
3154 qdict_put(qdict
, key
, qint_from_int(has_option
));
3159 monitor_printf(mon
, "%s: unknown type '%c'\n", cmdname
, c
);
3165 /* check that all arguments were parsed */
3166 while (qemu_isspace(*p
))
3169 monitor_printf(mon
, "%s: extraneous characters at the end of line\n",
3181 static void monitor_handle_command(Monitor
*mon
, const char *cmdline
)
3184 const mon_cmd_t
*cmd
;
3186 qdict
= qdict_new();
3188 cmd
= monitor_parse_command(mon
, cmdline
, qdict
);
3192 qemu_errors_to_mon(mon
);
3194 if (monitor_handler_ported(cmd
)) {
3195 QObject
*data
= NULL
;
3197 cmd
->mhandler
.cmd_new(mon
, qdict
, &data
);
3199 cmd
->user_print(mon
, data
);
3201 qobject_decref(data
);
3203 cmd
->mhandler
.cmd(mon
, qdict
);
3206 qemu_errors_to_previous();
3212 static void cmd_completion(const char *name
, const char *list
)
3214 const char *p
, *pstart
;
3223 p
= pstart
+ strlen(pstart
);
3225 if (len
> sizeof(cmd
) - 2)
3226 len
= sizeof(cmd
) - 2;
3227 memcpy(cmd
, pstart
, len
);
3229 if (name
[0] == '\0' || !strncmp(name
, cmd
, strlen(name
))) {
3230 readline_add_completion(cur_mon
->rs
, cmd
);
3238 static void file_completion(const char *input
)
3243 char file
[1024], file_prefix
[1024];
3247 p
= strrchr(input
, '/');
3250 pstrcpy(file_prefix
, sizeof(file_prefix
), input
);
3251 pstrcpy(path
, sizeof(path
), ".");
3253 input_path_len
= p
- input
+ 1;
3254 memcpy(path
, input
, input_path_len
);
3255 if (input_path_len
> sizeof(path
) - 1)
3256 input_path_len
= sizeof(path
) - 1;
3257 path
[input_path_len
] = '\0';
3258 pstrcpy(file_prefix
, sizeof(file_prefix
), p
+ 1);
3260 #ifdef DEBUG_COMPLETION
3261 monitor_printf(cur_mon
, "input='%s' path='%s' prefix='%s'\n",
3262 input
, path
, file_prefix
);
3264 ffs
= opendir(path
);
3272 if (strstart(d
->d_name
, file_prefix
, NULL
)) {
3273 memcpy(file
, input
, input_path_len
);
3274 if (input_path_len
< sizeof(file
))
3275 pstrcpy(file
+ input_path_len
, sizeof(file
) - input_path_len
,
3277 /* stat the file to find out if it's a directory.
3278 * In that case add a slash to speed up typing long paths
3281 if(S_ISDIR(sb
.st_mode
))
3282 pstrcat(file
, sizeof(file
), "/");
3283 readline_add_completion(cur_mon
->rs
, file
);
3289 static void block_completion_it(void *opaque
, BlockDriverState
*bs
)
3291 const char *name
= bdrv_get_device_name(bs
);
3292 const char *input
= opaque
;
3294 if (input
[0] == '\0' ||
3295 !strncmp(name
, (char *)input
, strlen(input
))) {
3296 readline_add_completion(cur_mon
->rs
, name
);
3300 /* NOTE: this parser is an approximate form of the real command parser */
3301 static void parse_cmdline(const char *cmdline
,
3302 int *pnb_args
, char **args
)
3311 while (qemu_isspace(*p
))
3315 if (nb_args
>= MAX_ARGS
)
3317 ret
= get_str(buf
, sizeof(buf
), &p
);
3318 args
[nb_args
] = qemu_strdup(buf
);
3323 *pnb_args
= nb_args
;
3326 static const char *next_arg_type(const char *typestr
)
3328 const char *p
= strchr(typestr
, ':');
3329 return (p
!= NULL
? ++p
: typestr
);
3332 static void monitor_find_completion(const char *cmdline
)
3334 const char *cmdname
;
3335 char *args
[MAX_ARGS
];
3336 int nb_args
, i
, len
;
3337 const char *ptype
, *str
;
3338 const mon_cmd_t
*cmd
;
3341 parse_cmdline(cmdline
, &nb_args
, args
);
3342 #ifdef DEBUG_COMPLETION
3343 for(i
= 0; i
< nb_args
; i
++) {
3344 monitor_printf(cur_mon
, "arg%d = '%s'\n", i
, (char *)args
[i
]);
3348 /* if the line ends with a space, it means we want to complete the
3350 len
= strlen(cmdline
);
3351 if (len
> 0 && qemu_isspace(cmdline
[len
- 1])) {
3352 if (nb_args
>= MAX_ARGS
)
3354 args
[nb_args
++] = qemu_strdup("");
3357 /* command completion */
3362 readline_set_completion_index(cur_mon
->rs
, strlen(cmdname
));
3363 for(cmd
= mon_cmds
; cmd
->name
!= NULL
; cmd
++) {
3364 cmd_completion(cmdname
, cmd
->name
);
3367 /* find the command */
3368 for(cmd
= mon_cmds
; cmd
->name
!= NULL
; cmd
++) {
3369 if (compare_cmd(args
[0], cmd
->name
))
3374 ptype
= next_arg_type(cmd
->args_type
);
3375 for(i
= 0; i
< nb_args
- 2; i
++) {
3376 if (*ptype
!= '\0') {
3377 ptype
= next_arg_type(ptype
);
3378 while (*ptype
== '?')
3379 ptype
= next_arg_type(ptype
);
3382 str
= args
[nb_args
- 1];
3383 if (*ptype
== '-' && ptype
[1] != '\0') {
3388 /* file completion */
3389 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
3390 file_completion(str
);
3393 /* block device name completion */
3394 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
3395 bdrv_iterate(block_completion_it
, (void *)str
);
3398 /* XXX: more generic ? */
3399 if (!strcmp(cmd
->name
, "info")) {
3400 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
3401 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
3402 cmd_completion(str
, cmd
->name
);
3404 } else if (!strcmp(cmd
->name
, "sendkey")) {
3405 char *sep
= strrchr(str
, '-');
3408 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
3409 for(key
= key_defs
; key
->name
!= NULL
; key
++) {
3410 cmd_completion(str
, key
->name
);
3412 } else if (!strcmp(cmd
->name
, "help|?")) {
3413 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
3414 for (cmd
= mon_cmds
; cmd
->name
!= NULL
; cmd
++) {
3415 cmd_completion(str
, cmd
->name
);
3423 for(i
= 0; i
< nb_args
; i
++)
3427 static int monitor_can_read(void *opaque
)
3429 Monitor
*mon
= opaque
;
3431 return (mon
->suspend_cnt
== 0) ? 128 : 0;
3434 static void monitor_read(void *opaque
, const uint8_t *buf
, int size
)
3436 Monitor
*old_mon
= cur_mon
;
3442 for (i
= 0; i
< size
; i
++)
3443 readline_handle_byte(cur_mon
->rs
, buf
[i
]);
3445 if (size
== 0 || buf
[size
- 1] != 0)
3446 monitor_printf(cur_mon
, "corrupted command\n");
3448 monitor_handle_command(cur_mon
, (char *)buf
);
3454 static void monitor_command_cb(Monitor
*mon
, const char *cmdline
, void *opaque
)
3456 monitor_suspend(mon
);
3457 monitor_handle_command(mon
, cmdline
);
3458 monitor_resume(mon
);
3461 int monitor_suspend(Monitor
*mon
)
3469 void monitor_resume(Monitor
*mon
)
3473 if (--mon
->suspend_cnt
== 0)
3474 readline_show_prompt(mon
->rs
);
3477 static void monitor_event(void *opaque
, int event
)
3479 Monitor
*mon
= opaque
;
3482 case CHR_EVENT_MUX_IN
:
3484 if (mon
->reset_seen
) {
3485 readline_restart(mon
->rs
);
3486 monitor_resume(mon
);
3489 mon
->suspend_cnt
= 0;
3493 case CHR_EVENT_MUX_OUT
:
3494 if (mon
->reset_seen
) {
3495 if (mon
->suspend_cnt
== 0) {
3496 monitor_printf(mon
, "\n");
3499 monitor_suspend(mon
);
3506 case CHR_EVENT_OPENED
:
3507 monitor_printf(mon
, "QEMU %s monitor - type 'help' for more "
3508 "information\n", QEMU_VERSION
);
3509 if (!mon
->mux_out
) {
3510 readline_show_prompt(mon
->rs
);
3512 mon
->reset_seen
= 1;
3526 void monitor_init(CharDriverState
*chr
, int flags
)
3528 static int is_first_init
= 1;
3531 if (is_first_init
) {
3532 key_timer
= qemu_new_timer(vm_clock
, release_keys
, NULL
);
3536 mon
= qemu_mallocz(sizeof(*mon
));
3540 if (flags
& MONITOR_USE_READLINE
) {
3541 mon
->rs
= readline_init(mon
, monitor_find_completion
);
3542 monitor_read_command(mon
, 0);
3545 qemu_chr_add_handlers(chr
, monitor_can_read
, monitor_read
, monitor_event
,
3548 QLIST_INSERT_HEAD(&mon_list
, mon
, entry
);
3549 if (!cur_mon
|| (flags
& MONITOR_IS_DEFAULT
))
3553 static void bdrv_password_cb(Monitor
*mon
, const char *password
, void *opaque
)
3555 BlockDriverState
*bs
= opaque
;
3558 if (bdrv_set_key(bs
, password
) != 0) {
3559 monitor_printf(mon
, "invalid password\n");
3562 if (mon
->password_completion_cb
)
3563 mon
->password_completion_cb(mon
->password_opaque
, ret
);
3565 monitor_read_command(mon
, 1);
3568 void monitor_read_bdrv_key_start(Monitor
*mon
, BlockDriverState
*bs
,
3569 BlockDriverCompletionFunc
*completion_cb
,
3574 if (!bdrv_key_required(bs
)) {
3576 completion_cb(opaque
, 0);
3580 monitor_printf(mon
, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs
),
3581 bdrv_get_encrypted_filename(bs
));
3583 mon
->password_completion_cb
= completion_cb
;
3584 mon
->password_opaque
= opaque
;
3586 err
= monitor_read_password(mon
, bdrv_password_cb
, bs
);
3588 if (err
&& completion_cb
)
3589 completion_cb(opaque
, err
);
3592 typedef struct QemuErrorSink QemuErrorSink
;
3593 struct QemuErrorSink
{
3602 QemuErrorSink
*previous
;
3605 static QemuErrorSink
*qemu_error_sink
;
3607 void qemu_errors_to_file(FILE *fp
)
3609 QemuErrorSink
*sink
;
3611 sink
= qemu_mallocz(sizeof(*sink
));
3612 sink
->dest
= ERR_SINK_FILE
;
3614 sink
->previous
= qemu_error_sink
;
3615 qemu_error_sink
= sink
;
3618 void qemu_errors_to_mon(Monitor
*mon
)
3620 QemuErrorSink
*sink
;
3622 sink
= qemu_mallocz(sizeof(*sink
));
3623 sink
->dest
= ERR_SINK_MONITOR
;
3625 sink
->previous
= qemu_error_sink
;
3626 qemu_error_sink
= sink
;
3629 void qemu_errors_to_previous(void)
3631 QemuErrorSink
*sink
;
3633 assert(qemu_error_sink
!= NULL
);
3634 sink
= qemu_error_sink
;
3635 qemu_error_sink
= sink
->previous
;
3639 void qemu_error(const char *fmt
, ...)
3643 assert(qemu_error_sink
!= NULL
);
3644 switch (qemu_error_sink
->dest
) {
3646 va_start(args
, fmt
);
3647 vfprintf(qemu_error_sink
->fp
, fmt
, args
);
3650 case ERR_SINK_MONITOR
:
3651 va_start(args
, fmt
);
3652 monitor_vprintf(qemu_error_sink
->mon
, fmt
, args
);