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"
34 #include "qemu-char.h"
40 #include "audio/audio.h"
43 #include "qemu-timer.h"
44 #include "migration.h"
49 //#define DEBUG_COMPLETION
55 * 'B' block device name
56 * 's' string (accept optional quote)
58 * 'l' target long (32 or 64 bit)
59 * '/' optional gdb-like print format (like "/10x")
61 * '?' optional type (for 'F', 's' and 'i')
65 typedef struct mon_cmd_t
{
67 const char *args_type
;
81 BlockDriverCompletionFunc
*password_completion_cb
;
82 void *password_opaque
;
83 LIST_ENTRY(Monitor
) entry
;
86 static LIST_HEAD(mon_list
, Monitor
) mon_list
;
88 static const mon_cmd_t mon_cmds
[];
89 static const mon_cmd_t info_cmds
[];
91 Monitor
*cur_mon
= NULL
;
93 static void monitor_command_cb(Monitor
*mon
, const char *cmdline
,
96 static void monitor_read_command(Monitor
*mon
, int show_prompt
)
98 readline_start(mon
->rs
, "(qemu) ", 0, monitor_command_cb
, NULL
);
100 readline_show_prompt(mon
->rs
);
103 static int monitor_read_password(Monitor
*mon
, ReadLineFunc
*readline_func
,
107 readline_start(mon
->rs
, "Password: ", 1, readline_func
, opaque
);
108 /* prompt is printed on return from the command handler */
111 monitor_printf(mon
, "terminal does not support password prompting\n");
116 void monitor_flush(Monitor
*mon
)
118 if (mon
&& mon
->outbuf_index
!= 0 && mon
->chr
->focus
== 0) {
119 qemu_chr_write(mon
->chr
, mon
->outbuf
, mon
->outbuf_index
);
120 mon
->outbuf_index
= 0;
124 /* flush at every end of line or if the buffer is full */
125 static void monitor_puts(Monitor
*mon
, const char *str
)
137 mon
->outbuf
[mon
->outbuf_index
++] = '\r';
138 mon
->outbuf
[mon
->outbuf_index
++] = c
;
139 if (mon
->outbuf_index
>= (sizeof(mon
->outbuf
) - 1)
145 void monitor_vprintf(Monitor
*mon
, const char *fmt
, va_list ap
)
148 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
149 monitor_puts(mon
, buf
);
152 void monitor_printf(Monitor
*mon
, const char *fmt
, ...)
156 monitor_vprintf(mon
, fmt
, ap
);
160 void monitor_print_filename(Monitor
*mon
, const char *filename
)
164 for (i
= 0; filename
[i
]; i
++) {
165 switch (filename
[i
]) {
169 monitor_printf(mon
, "\\%c", filename
[i
]);
172 monitor_printf(mon
, "\\t");
175 monitor_printf(mon
, "\\r");
178 monitor_printf(mon
, "\\n");
181 monitor_printf(mon
, "%c", filename
[i
]);
187 static int monitor_fprintf(FILE *stream
, const char *fmt
, ...)
191 monitor_vprintf((Monitor
*)stream
, fmt
, ap
);
196 static int compare_cmd(const char *name
, const char *list
)
198 const char *p
, *pstart
;
206 p
= pstart
+ strlen(pstart
);
207 if ((p
- pstart
) == len
&& !memcmp(pstart
, name
, len
))
216 static void help_cmd_dump(Monitor
*mon
, const mon_cmd_t
*cmds
,
217 const char *prefix
, const char *name
)
219 const mon_cmd_t
*cmd
;
221 for(cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
222 if (!name
|| !strcmp(name
, cmd
->name
))
223 monitor_printf(mon
, "%s%s %s -- %s\n", prefix
, cmd
->name
,
224 cmd
->params
, cmd
->help
);
228 static void help_cmd(Monitor
*mon
, const char *name
)
230 if (name
&& !strcmp(name
, "info")) {
231 help_cmd_dump(mon
, info_cmds
, "info ", NULL
);
233 help_cmd_dump(mon
, mon_cmds
, "", name
);
234 if (name
&& !strcmp(name
, "log")) {
235 const CPULogItem
*item
;
236 monitor_printf(mon
, "Log items (comma separated):\n");
237 monitor_printf(mon
, "%-10s %s\n", "none", "remove all logs");
238 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
239 monitor_printf(mon
, "%-10s %s\n", item
->name
, item
->help
);
245 static void do_commit(Monitor
*mon
, const char *device
)
249 all_devices
= !strcmp(device
, "all");
250 for (i
= 0; i
< nb_drives
; i
++) {
252 !strcmp(bdrv_get_device_name(drives_table
[i
].bdrv
), device
))
253 bdrv_commit(drives_table
[i
].bdrv
);
257 static void do_info(Monitor
*mon
, const char *item
)
259 const mon_cmd_t
*cmd
;
260 void (*handler
)(Monitor
*);
264 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
265 if (compare_cmd(item
, cmd
->name
))
269 help_cmd(mon
, "info");
272 handler
= cmd
->handler
;
276 static void do_info_version(Monitor
*mon
)
278 monitor_printf(mon
, "%s\n", QEMU_VERSION QEMU_PKGVERSION
);
281 static void do_info_name(Monitor
*mon
)
284 monitor_printf(mon
, "%s\n", qemu_name
);
287 #if defined(TARGET_I386)
288 static void do_info_hpet(Monitor
*mon
)
290 monitor_printf(mon
, "HPET is %s by QEMU\n",
291 (no_hpet
) ? "disabled" : "enabled");
295 static void do_info_uuid(Monitor
*mon
)
297 monitor_printf(mon
, UUID_FMT
"\n", qemu_uuid
[0], qemu_uuid
[1],
298 qemu_uuid
[2], qemu_uuid
[3], qemu_uuid
[4], qemu_uuid
[5],
299 qemu_uuid
[6], qemu_uuid
[7], qemu_uuid
[8], qemu_uuid
[9],
300 qemu_uuid
[10], qemu_uuid
[11], qemu_uuid
[12], qemu_uuid
[13],
301 qemu_uuid
[14], qemu_uuid
[15]);
304 /* get the current CPU defined by the user */
305 static int mon_set_cpu(int cpu_index
)
309 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
310 if (env
->cpu_index
== cpu_index
) {
311 cur_mon
->mon_cpu
= env
;
318 static CPUState
*mon_get_cpu(void)
320 if (!cur_mon
->mon_cpu
) {
323 cpu_synchronize_state(cur_mon
->mon_cpu
, 0);
324 return cur_mon
->mon_cpu
;
327 static void do_info_registers(Monitor
*mon
)
334 cpu_dump_state(env
, (FILE *)mon
, monitor_fprintf
,
337 cpu_dump_state(env
, (FILE *)mon
, monitor_fprintf
,
342 static void do_info_cpus(Monitor
*mon
)
346 /* just to set the default cpu if not already done */
349 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
350 cpu_synchronize_state(env
, 0);
351 monitor_printf(mon
, "%c CPU #%d:",
352 (env
== mon
->mon_cpu
) ? '*' : ' ',
354 #if defined(TARGET_I386)
355 monitor_printf(mon
, " pc=0x" TARGET_FMT_lx
,
356 env
->eip
+ env
->segs
[R_CS
].base
);
357 #elif defined(TARGET_PPC)
358 monitor_printf(mon
, " nip=0x" TARGET_FMT_lx
, env
->nip
);
359 #elif defined(TARGET_SPARC)
360 monitor_printf(mon
, " pc=0x" TARGET_FMT_lx
" npc=0x" TARGET_FMT_lx
,
362 #elif defined(TARGET_MIPS)
363 monitor_printf(mon
, " PC=0x" TARGET_FMT_lx
, env
->active_tc
.PC
);
366 monitor_printf(mon
, " (halted)");
367 monitor_printf(mon
, "\n");
371 static void do_cpu_set(Monitor
*mon
, int index
)
373 if (mon_set_cpu(index
) < 0)
374 monitor_printf(mon
, "Invalid CPU index\n");
377 static void do_info_jit(Monitor
*mon
)
379 dump_exec_info((FILE *)mon
, monitor_fprintf
);
382 static void do_info_history(Monitor
*mon
)
391 str
= readline_get_history(mon
->rs
, i
);
394 monitor_printf(mon
, "%d: '%s'\n", i
, str
);
399 #if defined(TARGET_PPC)
400 /* XXX: not implemented in other targets */
401 static void do_info_cpu_stats(Monitor
*mon
)
406 cpu_dump_statistics(env
, (FILE *)mon
, &monitor_fprintf
, 0);
410 static void do_quit(Monitor
*mon
)
415 static int eject_device(Monitor
*mon
, BlockDriverState
*bs
, int force
)
417 if (bdrv_is_inserted(bs
)) {
419 if (!bdrv_is_removable(bs
)) {
420 monitor_printf(mon
, "device is not removable\n");
423 if (bdrv_is_locked(bs
)) {
424 monitor_printf(mon
, "device is locked\n");
433 static void do_eject(Monitor
*mon
, int force
, const char *filename
)
435 BlockDriverState
*bs
;
437 bs
= bdrv_find(filename
);
439 monitor_printf(mon
, "device not found\n");
442 eject_device(mon
, bs
, force
);
445 static void do_change_block(Monitor
*mon
, const char *device
,
446 const char *filename
, const char *fmt
)
448 BlockDriverState
*bs
;
449 BlockDriver
*drv
= NULL
;
451 bs
= bdrv_find(device
);
453 monitor_printf(mon
, "device not found\n");
457 drv
= bdrv_find_format(fmt
);
459 monitor_printf(mon
, "invalid format %s\n", fmt
);
463 if (eject_device(mon
, bs
, 0) < 0)
465 bdrv_open2(bs
, filename
, 0, drv
);
466 monitor_read_bdrv_key_start(mon
, bs
, NULL
, NULL
);
469 static void change_vnc_password_cb(Monitor
*mon
, const char *password
,
472 if (vnc_display_password(NULL
, password
) < 0)
473 monitor_printf(mon
, "could not set VNC server password\n");
475 monitor_read_command(mon
, 1);
478 static void do_change_vnc(Monitor
*mon
, const char *target
, const char *arg
)
480 if (strcmp(target
, "passwd") == 0 ||
481 strcmp(target
, "password") == 0) {
484 strncpy(password
, arg
, sizeof(password
));
485 password
[sizeof(password
) - 1] = '\0';
486 change_vnc_password_cb(mon
, password
, NULL
);
488 monitor_read_password(mon
, change_vnc_password_cb
, NULL
);
491 if (vnc_display_open(NULL
, target
) < 0)
492 monitor_printf(mon
, "could not start VNC server on %s\n", target
);
496 static void do_change(Monitor
*mon
, const char *device
, const char *target
,
499 if (strcmp(device
, "vnc") == 0) {
500 do_change_vnc(mon
, target
, arg
);
502 do_change_block(mon
, device
, target
, arg
);
506 static void do_screen_dump(Monitor
*mon
, const char *filename
)
508 vga_hw_screen_dump(filename
);
511 static void do_logfile(Monitor
*mon
, const char *filename
)
513 cpu_set_log_filename(filename
);
516 static void do_log(Monitor
*mon
, const char *items
)
520 if (!strcmp(items
, "none")) {
523 mask
= cpu_str_to_log_mask(items
);
525 help_cmd(mon
, "log");
532 static void do_singlestep(Monitor
*mon
, const char *option
)
534 if (!option
|| !strcmp(option
, "on")) {
536 } else if (!strcmp(option
, "off")) {
539 monitor_printf(mon
, "unexpected option %s\n", option
);
543 static void do_stop(Monitor
*mon
)
545 vm_stop(EXCP_INTERRUPT
);
548 static void encrypted_bdrv_it(void *opaque
, BlockDriverState
*bs
);
550 struct bdrv_iterate_context
{
555 static void do_cont(Monitor
*mon
)
557 struct bdrv_iterate_context context
= { mon
, 0 };
559 bdrv_iterate(encrypted_bdrv_it
, &context
);
560 /* only resume the vm if all keys are set and valid */
565 static void bdrv_key_cb(void *opaque
, int err
)
567 Monitor
*mon
= opaque
;
569 /* another key was set successfully, retry to continue */
574 static void encrypted_bdrv_it(void *opaque
, BlockDriverState
*bs
)
576 struct bdrv_iterate_context
*context
= opaque
;
578 if (!context
->err
&& bdrv_key_required(bs
)) {
579 context
->err
= -EBUSY
;
580 monitor_read_bdrv_key_start(context
->mon
, bs
, bdrv_key_cb
,
585 static void do_gdbserver(Monitor
*mon
, const char *device
)
588 device
= "tcp::" DEFAULT_GDBSTUB_PORT
;
589 if (gdbserver_start(device
) < 0) {
590 monitor_printf(mon
, "Could not open gdbserver on device '%s'\n",
592 } else if (strcmp(device
, "none") == 0) {
593 monitor_printf(mon
, "Disabled gdbserver\n");
595 monitor_printf(mon
, "Waiting for gdb connection on device '%s'\n",
600 static void do_watchdog_action(Monitor
*mon
, const char *action
)
602 if (select_watchdog_action(action
) == -1) {
603 monitor_printf(mon
, "Unknown watchdog action '%s'\n", action
);
607 static void monitor_printc(Monitor
*mon
, int c
)
609 monitor_printf(mon
, "'");
612 monitor_printf(mon
, "\\'");
615 monitor_printf(mon
, "\\\\");
618 monitor_printf(mon
, "\\n");
621 monitor_printf(mon
, "\\r");
624 if (c
>= 32 && c
<= 126) {
625 monitor_printf(mon
, "%c", c
);
627 monitor_printf(mon
, "\\x%02x", c
);
631 monitor_printf(mon
, "'");
634 static void memory_dump(Monitor
*mon
, int count
, int format
, int wsize
,
635 target_phys_addr_t addr
, int is_physical
)
638 int nb_per_line
, l
, line_size
, i
, max_digits
, len
;
646 if (!env
&& !is_physical
)
651 } else if (wsize
== 4) {
654 /* as default we use the current CS size */
658 if ((env
->efer
& MSR_EFER_LMA
) &&
659 (env
->segs
[R_CS
].flags
& DESC_L_MASK
))
663 if (!(env
->segs
[R_CS
].flags
& DESC_B_MASK
))
668 monitor_disas(mon
, env
, addr
, count
, is_physical
, flags
);
677 nb_per_line
= line_size
/ wsize
;
682 max_digits
= (wsize
* 8 + 2) / 3;
686 max_digits
= (wsize
* 8) / 4;
690 max_digits
= (wsize
* 8 * 10 + 32) / 33;
699 monitor_printf(mon
, TARGET_FMT_plx
":", addr
);
701 monitor_printf(mon
, TARGET_FMT_lx
":", (target_ulong
)addr
);
706 cpu_physical_memory_rw(addr
, buf
, l
, 0);
711 if (cpu_memory_rw_debug(env
, addr
, buf
, l
, 0) < 0) {
712 monitor_printf(mon
, " Cannot access memory\n");
721 v
= ldub_raw(buf
+ i
);
724 v
= lduw_raw(buf
+ i
);
727 v
= (uint32_t)ldl_raw(buf
+ i
);
730 v
= ldq_raw(buf
+ i
);
733 monitor_printf(mon
, " ");
736 monitor_printf(mon
, "%#*" PRIo64
, max_digits
, v
);
739 monitor_printf(mon
, "0x%0*" PRIx64
, max_digits
, v
);
742 monitor_printf(mon
, "%*" PRIu64
, max_digits
, v
);
745 monitor_printf(mon
, "%*" PRId64
, max_digits
, v
);
748 monitor_printc(mon
, v
);
753 monitor_printf(mon
, "\n");
759 #if TARGET_LONG_BITS == 64
760 #define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
762 #define GET_TLONG(h, l) (l)
765 static void do_memory_dump(Monitor
*mon
, int count
, int format
, int size
,
766 uint32_t addrh
, uint32_t addrl
)
768 target_long addr
= GET_TLONG(addrh
, addrl
);
769 memory_dump(mon
, count
, format
, size
, addr
, 0);
772 #if TARGET_PHYS_ADDR_BITS > 32
773 #define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
775 #define GET_TPHYSADDR(h, l) (l)
778 static void do_physical_memory_dump(Monitor
*mon
, int count
, int format
,
779 int size
, uint32_t addrh
, uint32_t addrl
)
782 target_phys_addr_t addr
= GET_TPHYSADDR(addrh
, addrl
);
783 memory_dump(mon
, count
, format
, size
, addr
, 1);
786 static void do_print(Monitor
*mon
, int count
, int format
, int size
,
787 unsigned int valh
, unsigned int vall
)
789 target_phys_addr_t val
= GET_TPHYSADDR(valh
, vall
);
790 #if TARGET_PHYS_ADDR_BITS == 32
793 monitor_printf(mon
, "%#o", val
);
796 monitor_printf(mon
, "%#x", val
);
799 monitor_printf(mon
, "%u", val
);
803 monitor_printf(mon
, "%d", val
);
806 monitor_printc(mon
, val
);
812 monitor_printf(mon
, "%#" PRIo64
, val
);
815 monitor_printf(mon
, "%#" PRIx64
, val
);
818 monitor_printf(mon
, "%" PRIu64
, val
);
822 monitor_printf(mon
, "%" PRId64
, val
);
825 monitor_printc(mon
, val
);
829 monitor_printf(mon
, "\n");
832 static void do_memory_save(Monitor
*mon
, unsigned int valh
, unsigned int vall
,
833 uint32_t size
, const char *filename
)
836 target_long addr
= GET_TLONG(valh
, vall
);
845 f
= fopen(filename
, "wb");
847 monitor_printf(mon
, "could not open '%s'\n", filename
);
854 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
855 fwrite(buf
, 1, l
, f
);
862 static void do_physical_memory_save(Monitor
*mon
, unsigned int valh
,
863 unsigned int vall
, uint32_t size
,
864 const char *filename
)
869 target_phys_addr_t addr
= GET_TPHYSADDR(valh
, vall
);
871 f
= fopen(filename
, "wb");
873 monitor_printf(mon
, "could not open '%s'\n", filename
);
880 cpu_physical_memory_rw(addr
, buf
, l
, 0);
881 fwrite(buf
, 1, l
, f
);
889 static void do_sum(Monitor
*mon
, uint32_t start
, uint32_t size
)
896 for(addr
= start
; addr
< (start
+ size
); addr
++) {
897 cpu_physical_memory_rw(addr
, buf
, 1, 0);
898 /* BSD sum algorithm ('sum' Unix command) */
899 sum
= (sum
>> 1) | (sum
<< 15);
902 monitor_printf(mon
, "%05d\n", sum
);
910 static const KeyDef key_defs
[] = {
937 { 0x0e, "backspace" },
974 { 0x37, "asterisk" },
977 { 0x3a, "caps_lock" },
988 { 0x45, "num_lock" },
989 { 0x46, "scroll_lock" },
991 { 0xb5, "kp_divide" },
992 { 0x37, "kp_multiply" },
993 { 0x4a, "kp_subtract" },
995 { 0x9c, "kp_enter" },
996 { 0x53, "kp_decimal" },
1029 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1044 { 0xfe, "compose" },
1049 static int get_keycode(const char *key
)
1055 for(p
= key_defs
; p
->name
!= NULL
; p
++) {
1056 if (!strcmp(key
, p
->name
))
1059 if (strstart(key
, "0x", NULL
)) {
1060 ret
= strtoul(key
, &endp
, 0);
1061 if (*endp
== '\0' && ret
>= 0x01 && ret
<= 0xff)
1067 #define MAX_KEYCODES 16
1068 static uint8_t keycodes
[MAX_KEYCODES
];
1069 static int nb_pending_keycodes
;
1070 static QEMUTimer
*key_timer
;
1072 static void release_keys(void *opaque
)
1076 while (nb_pending_keycodes
> 0) {
1077 nb_pending_keycodes
--;
1078 keycode
= keycodes
[nb_pending_keycodes
];
1080 kbd_put_keycode(0xe0);
1081 kbd_put_keycode(keycode
| 0x80);
1085 static void do_sendkey(Monitor
*mon
, const char *string
, int has_hold_time
,
1088 char keyname_buf
[16];
1090 int keyname_len
, keycode
, i
;
1092 if (nb_pending_keycodes
> 0) {
1093 qemu_del_timer(key_timer
);
1100 separator
= strchr(string
, '-');
1101 keyname_len
= separator
? separator
- string
: strlen(string
);
1102 if (keyname_len
> 0) {
1103 pstrcpy(keyname_buf
, sizeof(keyname_buf
), string
);
1104 if (keyname_len
> sizeof(keyname_buf
) - 1) {
1105 monitor_printf(mon
, "invalid key: '%s...'\n", keyname_buf
);
1108 if (i
== MAX_KEYCODES
) {
1109 monitor_printf(mon
, "too many keys\n");
1112 keyname_buf
[keyname_len
] = 0;
1113 keycode
= get_keycode(keyname_buf
);
1115 monitor_printf(mon
, "unknown key: '%s'\n", keyname_buf
);
1118 keycodes
[i
++] = keycode
;
1122 string
= separator
+ 1;
1124 nb_pending_keycodes
= i
;
1125 /* key down events */
1126 for (i
= 0; i
< nb_pending_keycodes
; i
++) {
1127 keycode
= keycodes
[i
];
1129 kbd_put_keycode(0xe0);
1130 kbd_put_keycode(keycode
& 0x7f);
1132 /* delayed key up events */
1133 qemu_mod_timer(key_timer
, qemu_get_clock(vm_clock
) +
1134 muldiv64(ticks_per_sec
, hold_time
, 1000));
1137 static int mouse_button_state
;
1139 static void do_mouse_move(Monitor
*mon
, const char *dx_str
, const char *dy_str
,
1143 dx
= strtol(dx_str
, NULL
, 0);
1144 dy
= strtol(dy_str
, NULL
, 0);
1147 dz
= strtol(dz_str
, NULL
, 0);
1148 kbd_mouse_event(dx
, dy
, dz
, mouse_button_state
);
1151 static void do_mouse_button(Monitor
*mon
, int button_state
)
1153 mouse_button_state
= button_state
;
1154 kbd_mouse_event(0, 0, 0, mouse_button_state
);
1157 static void do_ioport_read(Monitor
*mon
, int count
, int format
, int size
,
1158 int addr
, int has_index
, int index
)
1164 cpu_outb(NULL
, addr
& IOPORTS_MASK
, index
& 0xff);
1172 val
= cpu_inb(NULL
, addr
);
1176 val
= cpu_inw(NULL
, addr
);
1180 val
= cpu_inl(NULL
, addr
);
1184 monitor_printf(mon
, "port%c[0x%04x] = %#0*x\n",
1185 suffix
, addr
, size
* 2, val
);
1188 static void do_boot_set(Monitor
*mon
, const char *bootdevice
)
1192 res
= qemu_boot_set(bootdevice
);
1194 monitor_printf(mon
, "boot device list now set to %s\n", bootdevice
);
1195 } else if (res
> 0) {
1196 monitor_printf(mon
, "setting boot device list failed\n");
1198 monitor_printf(mon
, "no function defined to set boot device list for "
1199 "this architecture\n");
1203 static void do_system_reset(Monitor
*mon
)
1205 qemu_system_reset_request();
1208 static void do_system_powerdown(Monitor
*mon
)
1210 qemu_system_powerdown_request();
1213 #if defined(TARGET_I386)
1214 static void print_pte(Monitor
*mon
, uint32_t addr
, uint32_t pte
, uint32_t mask
)
1216 monitor_printf(mon
, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1219 pte
& PG_GLOBAL_MASK
? 'G' : '-',
1220 pte
& PG_PSE_MASK
? 'P' : '-',
1221 pte
& PG_DIRTY_MASK
? 'D' : '-',
1222 pte
& PG_ACCESSED_MASK
? 'A' : '-',
1223 pte
& PG_PCD_MASK
? 'C' : '-',
1224 pte
& PG_PWT_MASK
? 'T' : '-',
1225 pte
& PG_USER_MASK
? 'U' : '-',
1226 pte
& PG_RW_MASK
? 'W' : '-');
1229 static void tlb_info(Monitor
*mon
)
1233 uint32_t pgd
, pde
, pte
;
1235 env
= mon_get_cpu();
1239 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1240 monitor_printf(mon
, "PG disabled\n");
1243 pgd
= env
->cr
[3] & ~0xfff;
1244 for(l1
= 0; l1
< 1024; l1
++) {
1245 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1246 pde
= le32_to_cpu(pde
);
1247 if (pde
& PG_PRESENT_MASK
) {
1248 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1249 print_pte(mon
, (l1
<< 22), pde
, ~((1 << 20) - 1));
1251 for(l2
= 0; l2
< 1024; l2
++) {
1252 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1253 (uint8_t *)&pte
, 4);
1254 pte
= le32_to_cpu(pte
);
1255 if (pte
& PG_PRESENT_MASK
) {
1256 print_pte(mon
, (l1
<< 22) + (l2
<< 12),
1266 static void mem_print(Monitor
*mon
, uint32_t *pstart
, int *plast_prot
,
1267 uint32_t end
, int prot
)
1270 prot1
= *plast_prot
;
1271 if (prot
!= prot1
) {
1272 if (*pstart
!= -1) {
1273 monitor_printf(mon
, "%08x-%08x %08x %c%c%c\n",
1274 *pstart
, end
, end
- *pstart
,
1275 prot1
& PG_USER_MASK
? 'u' : '-',
1277 prot1
& PG_RW_MASK
? 'w' : '-');
1287 static void mem_info(Monitor
*mon
)
1290 int l1
, l2
, prot
, last_prot
;
1291 uint32_t pgd
, pde
, pte
, start
, end
;
1293 env
= mon_get_cpu();
1297 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1298 monitor_printf(mon
, "PG disabled\n");
1301 pgd
= env
->cr
[3] & ~0xfff;
1304 for(l1
= 0; l1
< 1024; l1
++) {
1305 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1306 pde
= le32_to_cpu(pde
);
1308 if (pde
& PG_PRESENT_MASK
) {
1309 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1310 prot
= pde
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1311 mem_print(mon
, &start
, &last_prot
, end
, prot
);
1313 for(l2
= 0; l2
< 1024; l2
++) {
1314 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1315 (uint8_t *)&pte
, 4);
1316 pte
= le32_to_cpu(pte
);
1317 end
= (l1
<< 22) + (l2
<< 12);
1318 if (pte
& PG_PRESENT_MASK
) {
1319 prot
= pte
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1323 mem_print(mon
, &start
, &last_prot
, end
, prot
);
1328 mem_print(mon
, &start
, &last_prot
, end
, prot
);
1334 #if defined(TARGET_SH4)
1336 static void print_tlb(Monitor
*mon
, int idx
, tlb_t
*tlb
)
1338 monitor_printf(mon
, " tlb%i:\t"
1339 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1340 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1341 "dirty=%hhu writethrough=%hhu\n",
1343 tlb
->asid
, tlb
->vpn
, tlb
->ppn
, tlb
->sz
, tlb
->size
,
1344 tlb
->v
, tlb
->sh
, tlb
->c
, tlb
->pr
,
1348 static void tlb_info(Monitor
*mon
)
1350 CPUState
*env
= mon_get_cpu();
1353 monitor_printf (mon
, "ITLB:\n");
1354 for (i
= 0 ; i
< ITLB_SIZE
; i
++)
1355 print_tlb (mon
, i
, &env
->itlb
[i
]);
1356 monitor_printf (mon
, "UTLB:\n");
1357 for (i
= 0 ; i
< UTLB_SIZE
; i
++)
1358 print_tlb (mon
, i
, &env
->utlb
[i
]);
1363 static void do_info_kqemu(Monitor
*mon
)
1369 env
= mon_get_cpu();
1371 monitor_printf(mon
, "No cpu initialized yet");
1374 val
= env
->kqemu_enabled
;
1375 monitor_printf(mon
, "kqemu support: ");
1379 monitor_printf(mon
, "disabled\n");
1382 monitor_printf(mon
, "enabled for user code\n");
1385 monitor_printf(mon
, "enabled for user and kernel code\n");
1389 monitor_printf(mon
, "kqemu support: not compiled\n");
1393 static void do_info_kvm(Monitor
*mon
)
1396 monitor_printf(mon
, "kvm support: ");
1398 monitor_printf(mon
, "enabled\n");
1400 monitor_printf(mon
, "disabled\n");
1402 monitor_printf(mon
, "kvm support: not compiled\n");
1406 static void do_info_numa(Monitor
*mon
)
1411 monitor_printf(mon
, "%d nodes\n", nb_numa_nodes
);
1412 for (i
= 0; i
< nb_numa_nodes
; i
++) {
1413 monitor_printf(mon
, "node %d cpus:", i
);
1414 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
1415 if (env
->numa_node
== i
) {
1416 monitor_printf(mon
, " %d", env
->cpu_index
);
1419 monitor_printf(mon
, "\n");
1420 monitor_printf(mon
, "node %d size: %" PRId64
" MB\n", i
,
1425 #ifdef CONFIG_PROFILER
1429 int64_t kqemu_exec_count
;
1431 int64_t kqemu_ret_int_count
;
1432 int64_t kqemu_ret_excp_count
;
1433 int64_t kqemu_ret_intr_count
;
1435 static void do_info_profile(Monitor
*mon
)
1441 monitor_printf(mon
, "async time %" PRId64
" (%0.3f)\n",
1442 dev_time
, dev_time
/ (double)ticks_per_sec
);
1443 monitor_printf(mon
, "qemu time %" PRId64
" (%0.3f)\n",
1444 qemu_time
, qemu_time
/ (double)ticks_per_sec
);
1445 monitor_printf(mon
, "kqemu time %" PRId64
" (%0.3f %0.1f%%) count=%"
1446 PRId64
" int=%" PRId64
" excp=%" PRId64
" intr=%"
1448 kqemu_time
, kqemu_time
/ (double)ticks_per_sec
,
1449 kqemu_time
/ (double)total
* 100.0,
1451 kqemu_ret_int_count
,
1452 kqemu_ret_excp_count
,
1453 kqemu_ret_intr_count
);
1456 kqemu_exec_count
= 0;
1458 kqemu_ret_int_count
= 0;
1459 kqemu_ret_excp_count
= 0;
1460 kqemu_ret_intr_count
= 0;
1462 kqemu_record_dump();
1466 static void do_info_profile(Monitor
*mon
)
1468 monitor_printf(mon
, "Internal profiler not compiled\n");
1472 /* Capture support */
1473 static LIST_HEAD (capture_list_head
, CaptureState
) capture_head
;
1475 static void do_info_capture(Monitor
*mon
)
1480 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1481 monitor_printf(mon
, "[%d]: ", i
);
1482 s
->ops
.info (s
->opaque
);
1487 static void do_stop_capture(Monitor
*mon
, int n
)
1492 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1494 s
->ops
.destroy (s
->opaque
);
1495 LIST_REMOVE (s
, entries
);
1502 static void do_wav_capture(Monitor
*mon
, const char *path
,
1503 int has_freq
, int freq
,
1504 int has_bits
, int bits
,
1505 int has_channels
, int nchannels
)
1509 s
= qemu_mallocz (sizeof (*s
));
1511 freq
= has_freq
? freq
: 44100;
1512 bits
= has_bits
? bits
: 16;
1513 nchannels
= has_channels
? nchannels
: 2;
1515 if (wav_start_capture (s
, path
, freq
, bits
, nchannels
)) {
1516 monitor_printf(mon
, "Faied to add wave capture\n");
1519 LIST_INSERT_HEAD (&capture_head
, s
, entries
);
1523 #if defined(TARGET_I386)
1524 static void do_inject_nmi(Monitor
*mon
, int cpu_index
)
1528 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
1529 if (env
->cpu_index
== cpu_index
) {
1530 cpu_interrupt(env
, CPU_INTERRUPT_NMI
);
1536 static void do_info_status(Monitor
*mon
)
1540 monitor_printf(mon
, "VM status: running (single step mode)\n");
1542 monitor_printf(mon
, "VM status: running\n");
1545 monitor_printf(mon
, "VM status: paused\n");
1549 static void do_balloon(Monitor
*mon
, int value
)
1551 ram_addr_t target
= value
;
1552 qemu_balloon(target
<< 20);
1555 static void do_info_balloon(Monitor
*mon
)
1559 actual
= qemu_balloon_status();
1560 if (kvm_enabled() && !kvm_has_sync_mmu())
1561 monitor_printf(mon
, "Using KVM without synchronous MMU, "
1562 "ballooning disabled\n");
1563 else if (actual
== 0)
1564 monitor_printf(mon
, "Ballooning not activated in VM\n");
1566 monitor_printf(mon
, "balloon: actual=%d\n", (int)(actual
>> 20));
1569 static qemu_acl
*find_acl(Monitor
*mon
, const char *name
)
1571 qemu_acl
*acl
= qemu_acl_find(name
);
1574 monitor_printf(mon
, "acl: unknown list '%s'\n", name
);
1579 static void do_acl_show(Monitor
*mon
, const char *aclname
)
1581 qemu_acl
*acl
= find_acl(mon
, aclname
);
1582 qemu_acl_entry
*entry
;
1586 monitor_printf(mon
, "policy: %s\n",
1587 acl
->defaultDeny
? "deny" : "allow");
1588 TAILQ_FOREACH(entry
, &acl
->entries
, next
) {
1590 monitor_printf(mon
, "%d: %s %s\n", i
,
1591 entry
->deny
? "deny" : "allow", entry
->match
);
1596 static void do_acl_reset(Monitor
*mon
, const char *aclname
)
1598 qemu_acl
*acl
= find_acl(mon
, aclname
);
1601 qemu_acl_reset(acl
);
1602 monitor_printf(mon
, "acl: removed all rules\n");
1606 static void do_acl_policy(Monitor
*mon
, const char *aclname
,
1609 qemu_acl
*acl
= find_acl(mon
, aclname
);
1612 if (strcmp(policy
, "allow") == 0) {
1613 acl
->defaultDeny
= 0;
1614 monitor_printf(mon
, "acl: policy set to 'allow'\n");
1615 } else if (strcmp(policy
, "deny") == 0) {
1616 acl
->defaultDeny
= 1;
1617 monitor_printf(mon
, "acl: policy set to 'deny'\n");
1619 monitor_printf(mon
, "acl: unknown policy '%s', "
1620 "expected 'deny' or 'allow'\n", policy
);
1625 static void do_acl_add(Monitor
*mon
, const char *aclname
,
1626 const char *match
, const char *policy
,
1627 int has_index
, int index
)
1629 qemu_acl
*acl
= find_acl(mon
, aclname
);
1633 if (strcmp(policy
, "allow") == 0) {
1635 } else if (strcmp(policy
, "deny") == 0) {
1638 monitor_printf(mon
, "acl: unknown policy '%s', "
1639 "expected 'deny' or 'allow'\n", policy
);
1643 ret
= qemu_acl_insert(acl
, deny
, match
, index
);
1645 ret
= qemu_acl_append(acl
, deny
, match
);
1647 monitor_printf(mon
, "acl: unable to add acl entry\n");
1649 monitor_printf(mon
, "acl: added rule at position %d\n", ret
);
1653 static void do_acl_remove(Monitor
*mon
, const char *aclname
, const char *match
)
1655 qemu_acl
*acl
= find_acl(mon
, aclname
);
1659 ret
= qemu_acl_remove(acl
, match
);
1661 monitor_printf(mon
, "acl: no matching acl entry\n");
1663 monitor_printf(mon
, "acl: removed rule at position %d\n", ret
);
1667 #if defined(TARGET_I386)
1668 static void do_inject_mce(Monitor
*mon
,
1669 int cpu_index
, int bank
,
1670 unsigned status_hi
, unsigned status_lo
,
1671 unsigned mcg_status_hi
, unsigned mcg_status_lo
,
1672 unsigned addr_hi
, unsigned addr_lo
,
1673 unsigned misc_hi
, unsigned misc_lo
)
1676 uint64_t status
= ((uint64_t)status_hi
<< 32) | status_lo
;
1677 uint64_t mcg_status
= ((uint64_t)mcg_status_hi
<< 32) | mcg_status_lo
;
1678 uint64_t addr
= ((uint64_t)addr_hi
<< 32) | addr_lo
;
1679 uint64_t misc
= ((uint64_t)misc_hi
<< 32) | misc_lo
;
1681 for (cenv
= first_cpu
; cenv
!= NULL
; cenv
= cenv
->next_cpu
)
1682 if (cenv
->cpu_index
== cpu_index
&& cenv
->mcg_cap
) {
1683 cpu_inject_x86_mce(cenv
, bank
, status
, mcg_status
, addr
, misc
);
1689 static const mon_cmd_t mon_cmds
[] = {
1690 #include "qemu-monitor.h"
1694 /* Please update qemu-monitor.hx when adding or changing commands */
1695 static const mon_cmd_t info_cmds
[] = {
1696 { "version", "", do_info_version
,
1697 "", "show the version of QEMU" },
1698 { "network", "", do_info_network
,
1699 "", "show the network state" },
1700 { "chardev", "", qemu_chr_info
,
1701 "", "show the character devices" },
1702 { "block", "", bdrv_info
,
1703 "", "show the block devices" },
1704 { "blockstats", "", bdrv_info_stats
,
1705 "", "show block device statistics" },
1706 { "registers", "", do_info_registers
,
1707 "", "show the cpu registers" },
1708 { "cpus", "", do_info_cpus
,
1709 "", "show infos for each CPU" },
1710 { "history", "", do_info_history
,
1711 "", "show the command line history", },
1712 { "irq", "", irq_info
,
1713 "", "show the interrupts statistics (if available)", },
1714 { "pic", "", pic_info
,
1715 "", "show i8259 (PIC) state", },
1716 { "pci", "", pci_info
,
1717 "", "show PCI info", },
1718 #if defined(TARGET_I386) || defined(TARGET_SH4)
1719 { "tlb", "", tlb_info
,
1720 "", "show virtual to physical memory mappings", },
1722 #if defined(TARGET_I386)
1723 { "mem", "", mem_info
,
1724 "", "show the active virtual memory mappings", },
1725 { "hpet", "", do_info_hpet
,
1726 "", "show state of HPET", },
1728 { "jit", "", do_info_jit
,
1729 "", "show dynamic compiler info", },
1730 { "kqemu", "", do_info_kqemu
,
1731 "", "show KQEMU information", },
1732 { "kvm", "", do_info_kvm
,
1733 "", "show KVM information", },
1734 { "numa", "", do_info_numa
,
1735 "", "show NUMA information", },
1736 { "usb", "", usb_info
,
1737 "", "show guest USB devices", },
1738 { "usbhost", "", usb_host_info
,
1739 "", "show host USB devices", },
1740 { "profile", "", do_info_profile
,
1741 "", "show profiling information", },
1742 { "capture", "", do_info_capture
,
1743 "", "show capture information" },
1744 { "snapshots", "", do_info_snapshots
,
1745 "", "show the currently saved VM snapshots" },
1746 { "status", "", do_info_status
,
1747 "", "show the current VM status (running|paused)" },
1748 { "pcmcia", "", pcmcia_info
,
1749 "", "show guest PCMCIA status" },
1750 { "mice", "", do_info_mice
,
1751 "", "show which guest mouse is receiving events" },
1752 { "vnc", "", do_info_vnc
,
1753 "", "show the vnc server status"},
1754 { "name", "", do_info_name
,
1755 "", "show the current VM name" },
1756 { "uuid", "", do_info_uuid
,
1757 "", "show the current VM UUID" },
1758 #if defined(TARGET_PPC)
1759 { "cpustats", "", do_info_cpu_stats
,
1760 "", "show CPU statistics", },
1762 #if defined(CONFIG_SLIRP)
1763 { "usernet", "", do_info_usernet
,
1764 "", "show user network stack connection states", },
1766 { "migrate", "", do_info_migrate
, "", "show migration status" },
1767 { "balloon", "", do_info_balloon
,
1768 "", "show balloon information" },
1769 { "qtree", "", do_info_qtree
,
1770 "", "show device tree" },
1774 /*******************************************************************/
1776 static const char *pch
;
1777 static jmp_buf expr_env
;
1782 typedef struct MonitorDef
{
1785 target_long (*get_value
)(const struct MonitorDef
*md
, int val
);
1789 #if defined(TARGET_I386)
1790 static target_long
monitor_get_pc (const struct MonitorDef
*md
, int val
)
1792 CPUState
*env
= mon_get_cpu();
1795 return env
->eip
+ env
->segs
[R_CS
].base
;
1799 #if defined(TARGET_PPC)
1800 static target_long
monitor_get_ccr (const struct MonitorDef
*md
, int val
)
1802 CPUState
*env
= mon_get_cpu();
1810 for (i
= 0; i
< 8; i
++)
1811 u
|= env
->crf
[i
] << (32 - (4 * i
));
1816 static target_long
monitor_get_msr (const struct MonitorDef
*md
, int val
)
1818 CPUState
*env
= mon_get_cpu();
1824 static target_long
monitor_get_xer (const struct MonitorDef
*md
, int val
)
1826 CPUState
*env
= mon_get_cpu();
1832 static target_long
monitor_get_decr (const struct MonitorDef
*md
, int val
)
1834 CPUState
*env
= mon_get_cpu();
1837 return cpu_ppc_load_decr(env
);
1840 static target_long
monitor_get_tbu (const struct MonitorDef
*md
, int val
)
1842 CPUState
*env
= mon_get_cpu();
1845 return cpu_ppc_load_tbu(env
);
1848 static target_long
monitor_get_tbl (const struct MonitorDef
*md
, int val
)
1850 CPUState
*env
= mon_get_cpu();
1853 return cpu_ppc_load_tbl(env
);
1857 #if defined(TARGET_SPARC)
1858 #ifndef TARGET_SPARC64
1859 static target_long
monitor_get_psr (const struct MonitorDef
*md
, int val
)
1861 CPUState
*env
= mon_get_cpu();
1864 return GET_PSR(env
);
1868 static target_long
monitor_get_reg(const struct MonitorDef
*md
, int val
)
1870 CPUState
*env
= mon_get_cpu();
1873 return env
->regwptr
[val
];
1877 static const MonitorDef monitor_defs
[] = {
1880 #define SEG(name, seg) \
1881 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
1882 { name ".base", offsetof(CPUState, segs[seg].base) },\
1883 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
1885 { "eax", offsetof(CPUState
, regs
[0]) },
1886 { "ecx", offsetof(CPUState
, regs
[1]) },
1887 { "edx", offsetof(CPUState
, regs
[2]) },
1888 { "ebx", offsetof(CPUState
, regs
[3]) },
1889 { "esp|sp", offsetof(CPUState
, regs
[4]) },
1890 { "ebp|fp", offsetof(CPUState
, regs
[5]) },
1891 { "esi", offsetof(CPUState
, regs
[6]) },
1892 { "edi", offsetof(CPUState
, regs
[7]) },
1893 #ifdef TARGET_X86_64
1894 { "r8", offsetof(CPUState
, regs
[8]) },
1895 { "r9", offsetof(CPUState
, regs
[9]) },
1896 { "r10", offsetof(CPUState
, regs
[10]) },
1897 { "r11", offsetof(CPUState
, regs
[11]) },
1898 { "r12", offsetof(CPUState
, regs
[12]) },
1899 { "r13", offsetof(CPUState
, regs
[13]) },
1900 { "r14", offsetof(CPUState
, regs
[14]) },
1901 { "r15", offsetof(CPUState
, regs
[15]) },
1903 { "eflags", offsetof(CPUState
, eflags
) },
1904 { "eip", offsetof(CPUState
, eip
) },
1911 { "pc", 0, monitor_get_pc
, },
1912 #elif defined(TARGET_PPC)
1913 /* General purpose registers */
1914 { "r0", offsetof(CPUState
, gpr
[0]) },
1915 { "r1", offsetof(CPUState
, gpr
[1]) },
1916 { "r2", offsetof(CPUState
, gpr
[2]) },
1917 { "r3", offsetof(CPUState
, gpr
[3]) },
1918 { "r4", offsetof(CPUState
, gpr
[4]) },
1919 { "r5", offsetof(CPUState
, gpr
[5]) },
1920 { "r6", offsetof(CPUState
, gpr
[6]) },
1921 { "r7", offsetof(CPUState
, gpr
[7]) },
1922 { "r8", offsetof(CPUState
, gpr
[8]) },
1923 { "r9", offsetof(CPUState
, gpr
[9]) },
1924 { "r10", offsetof(CPUState
, gpr
[10]) },
1925 { "r11", offsetof(CPUState
, gpr
[11]) },
1926 { "r12", offsetof(CPUState
, gpr
[12]) },
1927 { "r13", offsetof(CPUState
, gpr
[13]) },
1928 { "r14", offsetof(CPUState
, gpr
[14]) },
1929 { "r15", offsetof(CPUState
, gpr
[15]) },
1930 { "r16", offsetof(CPUState
, gpr
[16]) },
1931 { "r17", offsetof(CPUState
, gpr
[17]) },
1932 { "r18", offsetof(CPUState
, gpr
[18]) },
1933 { "r19", offsetof(CPUState
, gpr
[19]) },
1934 { "r20", offsetof(CPUState
, gpr
[20]) },
1935 { "r21", offsetof(CPUState
, gpr
[21]) },
1936 { "r22", offsetof(CPUState
, gpr
[22]) },
1937 { "r23", offsetof(CPUState
, gpr
[23]) },
1938 { "r24", offsetof(CPUState
, gpr
[24]) },
1939 { "r25", offsetof(CPUState
, gpr
[25]) },
1940 { "r26", offsetof(CPUState
, gpr
[26]) },
1941 { "r27", offsetof(CPUState
, gpr
[27]) },
1942 { "r28", offsetof(CPUState
, gpr
[28]) },
1943 { "r29", offsetof(CPUState
, gpr
[29]) },
1944 { "r30", offsetof(CPUState
, gpr
[30]) },
1945 { "r31", offsetof(CPUState
, gpr
[31]) },
1946 /* Floating point registers */
1947 { "f0", offsetof(CPUState
, fpr
[0]) },
1948 { "f1", offsetof(CPUState
, fpr
[1]) },
1949 { "f2", offsetof(CPUState
, fpr
[2]) },
1950 { "f3", offsetof(CPUState
, fpr
[3]) },
1951 { "f4", offsetof(CPUState
, fpr
[4]) },
1952 { "f5", offsetof(CPUState
, fpr
[5]) },
1953 { "f6", offsetof(CPUState
, fpr
[6]) },
1954 { "f7", offsetof(CPUState
, fpr
[7]) },
1955 { "f8", offsetof(CPUState
, fpr
[8]) },
1956 { "f9", offsetof(CPUState
, fpr
[9]) },
1957 { "f10", offsetof(CPUState
, fpr
[10]) },
1958 { "f11", offsetof(CPUState
, fpr
[11]) },
1959 { "f12", offsetof(CPUState
, fpr
[12]) },
1960 { "f13", offsetof(CPUState
, fpr
[13]) },
1961 { "f14", offsetof(CPUState
, fpr
[14]) },
1962 { "f15", offsetof(CPUState
, fpr
[15]) },
1963 { "f16", offsetof(CPUState
, fpr
[16]) },
1964 { "f17", offsetof(CPUState
, fpr
[17]) },
1965 { "f18", offsetof(CPUState
, fpr
[18]) },
1966 { "f19", offsetof(CPUState
, fpr
[19]) },
1967 { "f20", offsetof(CPUState
, fpr
[20]) },
1968 { "f21", offsetof(CPUState
, fpr
[21]) },
1969 { "f22", offsetof(CPUState
, fpr
[22]) },
1970 { "f23", offsetof(CPUState
, fpr
[23]) },
1971 { "f24", offsetof(CPUState
, fpr
[24]) },
1972 { "f25", offsetof(CPUState
, fpr
[25]) },
1973 { "f26", offsetof(CPUState
, fpr
[26]) },
1974 { "f27", offsetof(CPUState
, fpr
[27]) },
1975 { "f28", offsetof(CPUState
, fpr
[28]) },
1976 { "f29", offsetof(CPUState
, fpr
[29]) },
1977 { "f30", offsetof(CPUState
, fpr
[30]) },
1978 { "f31", offsetof(CPUState
, fpr
[31]) },
1979 { "fpscr", offsetof(CPUState
, fpscr
) },
1980 /* Next instruction pointer */
1981 { "nip|pc", offsetof(CPUState
, nip
) },
1982 { "lr", offsetof(CPUState
, lr
) },
1983 { "ctr", offsetof(CPUState
, ctr
) },
1984 { "decr", 0, &monitor_get_decr
, },
1985 { "ccr", 0, &monitor_get_ccr
, },
1986 /* Machine state register */
1987 { "msr", 0, &monitor_get_msr
, },
1988 { "xer", 0, &monitor_get_xer
, },
1989 { "tbu", 0, &monitor_get_tbu
, },
1990 { "tbl", 0, &monitor_get_tbl
, },
1991 #if defined(TARGET_PPC64)
1992 /* Address space register */
1993 { "asr", offsetof(CPUState
, asr
) },
1995 /* Segment registers */
1996 { "sdr1", offsetof(CPUState
, sdr1
) },
1997 { "sr0", offsetof(CPUState
, sr
[0]) },
1998 { "sr1", offsetof(CPUState
, sr
[1]) },
1999 { "sr2", offsetof(CPUState
, sr
[2]) },
2000 { "sr3", offsetof(CPUState
, sr
[3]) },
2001 { "sr4", offsetof(CPUState
, sr
[4]) },
2002 { "sr5", offsetof(CPUState
, sr
[5]) },
2003 { "sr6", offsetof(CPUState
, sr
[6]) },
2004 { "sr7", offsetof(CPUState
, sr
[7]) },
2005 { "sr8", offsetof(CPUState
, sr
[8]) },
2006 { "sr9", offsetof(CPUState
, sr
[9]) },
2007 { "sr10", offsetof(CPUState
, sr
[10]) },
2008 { "sr11", offsetof(CPUState
, sr
[11]) },
2009 { "sr12", offsetof(CPUState
, sr
[12]) },
2010 { "sr13", offsetof(CPUState
, sr
[13]) },
2011 { "sr14", offsetof(CPUState
, sr
[14]) },
2012 { "sr15", offsetof(CPUState
, sr
[15]) },
2013 /* Too lazy to put BATs and SPRs ... */
2014 #elif defined(TARGET_SPARC)
2015 { "g0", offsetof(CPUState
, gregs
[0]) },
2016 { "g1", offsetof(CPUState
, gregs
[1]) },
2017 { "g2", offsetof(CPUState
, gregs
[2]) },
2018 { "g3", offsetof(CPUState
, gregs
[3]) },
2019 { "g4", offsetof(CPUState
, gregs
[4]) },
2020 { "g5", offsetof(CPUState
, gregs
[5]) },
2021 { "g6", offsetof(CPUState
, gregs
[6]) },
2022 { "g7", offsetof(CPUState
, gregs
[7]) },
2023 { "o0", 0, monitor_get_reg
},
2024 { "o1", 1, monitor_get_reg
},
2025 { "o2", 2, monitor_get_reg
},
2026 { "o3", 3, monitor_get_reg
},
2027 { "o4", 4, monitor_get_reg
},
2028 { "o5", 5, monitor_get_reg
},
2029 { "o6", 6, monitor_get_reg
},
2030 { "o7", 7, monitor_get_reg
},
2031 { "l0", 8, monitor_get_reg
},
2032 { "l1", 9, monitor_get_reg
},
2033 { "l2", 10, monitor_get_reg
},
2034 { "l3", 11, monitor_get_reg
},
2035 { "l4", 12, monitor_get_reg
},
2036 { "l5", 13, monitor_get_reg
},
2037 { "l6", 14, monitor_get_reg
},
2038 { "l7", 15, monitor_get_reg
},
2039 { "i0", 16, monitor_get_reg
},
2040 { "i1", 17, monitor_get_reg
},
2041 { "i2", 18, monitor_get_reg
},
2042 { "i3", 19, monitor_get_reg
},
2043 { "i4", 20, monitor_get_reg
},
2044 { "i5", 21, monitor_get_reg
},
2045 { "i6", 22, monitor_get_reg
},
2046 { "i7", 23, monitor_get_reg
},
2047 { "pc", offsetof(CPUState
, pc
) },
2048 { "npc", offsetof(CPUState
, npc
) },
2049 { "y", offsetof(CPUState
, y
) },
2050 #ifndef TARGET_SPARC64
2051 { "psr", 0, &monitor_get_psr
, },
2052 { "wim", offsetof(CPUState
, wim
) },
2054 { "tbr", offsetof(CPUState
, tbr
) },
2055 { "fsr", offsetof(CPUState
, fsr
) },
2056 { "f0", offsetof(CPUState
, fpr
[0]) },
2057 { "f1", offsetof(CPUState
, fpr
[1]) },
2058 { "f2", offsetof(CPUState
, fpr
[2]) },
2059 { "f3", offsetof(CPUState
, fpr
[3]) },
2060 { "f4", offsetof(CPUState
, fpr
[4]) },
2061 { "f5", offsetof(CPUState
, fpr
[5]) },
2062 { "f6", offsetof(CPUState
, fpr
[6]) },
2063 { "f7", offsetof(CPUState
, fpr
[7]) },
2064 { "f8", offsetof(CPUState
, fpr
[8]) },
2065 { "f9", offsetof(CPUState
, fpr
[9]) },
2066 { "f10", offsetof(CPUState
, fpr
[10]) },
2067 { "f11", offsetof(CPUState
, fpr
[11]) },
2068 { "f12", offsetof(CPUState
, fpr
[12]) },
2069 { "f13", offsetof(CPUState
, fpr
[13]) },
2070 { "f14", offsetof(CPUState
, fpr
[14]) },
2071 { "f15", offsetof(CPUState
, fpr
[15]) },
2072 { "f16", offsetof(CPUState
, fpr
[16]) },
2073 { "f17", offsetof(CPUState
, fpr
[17]) },
2074 { "f18", offsetof(CPUState
, fpr
[18]) },
2075 { "f19", offsetof(CPUState
, fpr
[19]) },
2076 { "f20", offsetof(CPUState
, fpr
[20]) },
2077 { "f21", offsetof(CPUState
, fpr
[21]) },
2078 { "f22", offsetof(CPUState
, fpr
[22]) },
2079 { "f23", offsetof(CPUState
, fpr
[23]) },
2080 { "f24", offsetof(CPUState
, fpr
[24]) },
2081 { "f25", offsetof(CPUState
, fpr
[25]) },
2082 { "f26", offsetof(CPUState
, fpr
[26]) },
2083 { "f27", offsetof(CPUState
, fpr
[27]) },
2084 { "f28", offsetof(CPUState
, fpr
[28]) },
2085 { "f29", offsetof(CPUState
, fpr
[29]) },
2086 { "f30", offsetof(CPUState
, fpr
[30]) },
2087 { "f31", offsetof(CPUState
, fpr
[31]) },
2088 #ifdef TARGET_SPARC64
2089 { "f32", offsetof(CPUState
, fpr
[32]) },
2090 { "f34", offsetof(CPUState
, fpr
[34]) },
2091 { "f36", offsetof(CPUState
, fpr
[36]) },
2092 { "f38", offsetof(CPUState
, fpr
[38]) },
2093 { "f40", offsetof(CPUState
, fpr
[40]) },
2094 { "f42", offsetof(CPUState
, fpr
[42]) },
2095 { "f44", offsetof(CPUState
, fpr
[44]) },
2096 { "f46", offsetof(CPUState
, fpr
[46]) },
2097 { "f48", offsetof(CPUState
, fpr
[48]) },
2098 { "f50", offsetof(CPUState
, fpr
[50]) },
2099 { "f52", offsetof(CPUState
, fpr
[52]) },
2100 { "f54", offsetof(CPUState
, fpr
[54]) },
2101 { "f56", offsetof(CPUState
, fpr
[56]) },
2102 { "f58", offsetof(CPUState
, fpr
[58]) },
2103 { "f60", offsetof(CPUState
, fpr
[60]) },
2104 { "f62", offsetof(CPUState
, fpr
[62]) },
2105 { "asi", offsetof(CPUState
, asi
) },
2106 { "pstate", offsetof(CPUState
, pstate
) },
2107 { "cansave", offsetof(CPUState
, cansave
) },
2108 { "canrestore", offsetof(CPUState
, canrestore
) },
2109 { "otherwin", offsetof(CPUState
, otherwin
) },
2110 { "wstate", offsetof(CPUState
, wstate
) },
2111 { "cleanwin", offsetof(CPUState
, cleanwin
) },
2112 { "fprs", offsetof(CPUState
, fprs
) },
2118 static void expr_error(Monitor
*mon
, const char *msg
)
2120 monitor_printf(mon
, "%s\n", msg
);
2121 longjmp(expr_env
, 1);
2124 /* return 0 if OK, -1 if not found, -2 if no CPU defined */
2125 static int get_monitor_def(target_long
*pval
, const char *name
)
2127 const MonitorDef
*md
;
2130 for(md
= monitor_defs
; md
->name
!= NULL
; md
++) {
2131 if (compare_cmd(name
, md
->name
)) {
2132 if (md
->get_value
) {
2133 *pval
= md
->get_value(md
, md
->offset
);
2135 CPUState
*env
= mon_get_cpu();
2138 ptr
= (uint8_t *)env
+ md
->offset
;
2141 *pval
= *(int32_t *)ptr
;
2144 *pval
= *(target_long
*)ptr
;
2157 static void next(void)
2161 while (qemu_isspace(*pch
))
2166 static int64_t expr_sum(Monitor
*mon
);
2168 static int64_t expr_unary(Monitor
*mon
)
2177 n
= expr_unary(mon
);
2181 n
= -expr_unary(mon
);
2185 n
= ~expr_unary(mon
);
2191 expr_error(mon
, "')' expected");
2198 expr_error(mon
, "character constant expected");
2202 expr_error(mon
, "missing terminating \' character");
2212 while ((*pch
>= 'a' && *pch
<= 'z') ||
2213 (*pch
>= 'A' && *pch
<= 'Z') ||
2214 (*pch
>= '0' && *pch
<= '9') ||
2215 *pch
== '_' || *pch
== '.') {
2216 if ((q
- buf
) < sizeof(buf
) - 1)
2220 while (qemu_isspace(*pch
))
2223 ret
= get_monitor_def(®
, buf
);
2225 expr_error(mon
, "unknown register");
2227 expr_error(mon
, "no cpu defined");
2232 expr_error(mon
, "unexpected end of expression");
2236 #if TARGET_PHYS_ADDR_BITS > 32
2237 n
= strtoull(pch
, &p
, 0);
2239 n
= strtoul(pch
, &p
, 0);
2242 expr_error(mon
, "invalid char in expression");
2245 while (qemu_isspace(*pch
))
2253 static int64_t expr_prod(Monitor
*mon
)
2258 val
= expr_unary(mon
);
2261 if (op
!= '*' && op
!= '/' && op
!= '%')
2264 val2
= expr_unary(mon
);
2273 expr_error(mon
, "division by zero");
2284 static int64_t expr_logic(Monitor
*mon
)
2289 val
= expr_prod(mon
);
2292 if (op
!= '&' && op
!= '|' && op
!= '^')
2295 val2
= expr_prod(mon
);
2312 static int64_t expr_sum(Monitor
*mon
)
2317 val
= expr_logic(mon
);
2320 if (op
!= '+' && op
!= '-')
2323 val2
= expr_logic(mon
);
2332 static int get_expr(Monitor
*mon
, int64_t *pval
, const char **pp
)
2335 if (setjmp(expr_env
)) {
2339 while (qemu_isspace(*pch
))
2341 *pval
= expr_sum(mon
);
2346 static int get_str(char *buf
, int buf_size
, const char **pp
)
2354 while (qemu_isspace(*p
))
2364 while (*p
!= '\0' && *p
!= '\"') {
2380 qemu_printf("unsupported escape code: '\\%c'\n", c
);
2383 if ((q
- buf
) < buf_size
- 1) {
2387 if ((q
- buf
) < buf_size
- 1) {
2394 qemu_printf("unterminated string\n");
2399 while (*p
!= '\0' && !qemu_isspace(*p
)) {
2400 if ((q
- buf
) < buf_size
- 1) {
2412 * Store the command-name in cmdname, and return a pointer to
2413 * the remaining of the command string.
2415 static const char *get_command_name(const char *cmdline
,
2416 char *cmdname
, size_t nlen
)
2419 const char *p
, *pstart
;
2422 while (qemu_isspace(*p
))
2427 while (*p
!= '\0' && *p
!= '/' && !qemu_isspace(*p
))
2432 memcpy(cmdname
, pstart
, len
);
2433 cmdname
[len
] = '\0';
2437 static int default_fmt_format
= 'x';
2438 static int default_fmt_size
= 4;
2442 static void monitor_handle_command(Monitor
*mon
, const char *cmdline
)
2444 const char *p
, *typestr
;
2445 int c
, nb_args
, i
, has_arg
;
2446 const mon_cmd_t
*cmd
;
2449 void *str_allocated
[MAX_ARGS
];
2450 void *args
[MAX_ARGS
];
2451 void (*handler_0
)(Monitor
*mon
);
2452 void (*handler_1
)(Monitor
*mon
, void *arg0
);
2453 void (*handler_2
)(Monitor
*mon
, void *arg0
, void *arg1
);
2454 void (*handler_3
)(Monitor
*mon
, void *arg0
, void *arg1
, void *arg2
);
2455 void (*handler_4
)(Monitor
*mon
, void *arg0
, void *arg1
, void *arg2
,
2457 void (*handler_5
)(Monitor
*mon
, void *arg0
, void *arg1
, void *arg2
,
2458 void *arg3
, void *arg4
);
2459 void (*handler_6
)(Monitor
*mon
, void *arg0
, void *arg1
, void *arg2
,
2460 void *arg3
, void *arg4
, void *arg5
);
2461 void (*handler_7
)(Monitor
*mon
, void *arg0
, void *arg1
, void *arg2
,
2462 void *arg3
, void *arg4
, void *arg5
, void *arg6
);
2463 void (*handler_8
)(Monitor
*mon
, void *arg0
, void *arg1
, void *arg2
,
2464 void *arg3
, void *arg4
, void *arg5
, void *arg6
,
2466 void (*handler_9
)(Monitor
*mon
, void *arg0
, void *arg1
, void *arg2
,
2467 void *arg3
, void *arg4
, void *arg5
, void *arg6
,
2468 void *arg7
, void *arg8
);
2469 void (*handler_10
)(Monitor
*mon
, void *arg0
, void *arg1
, void *arg2
,
2470 void *arg3
, void *arg4
, void *arg5
, void *arg6
,
2471 void *arg7
, void *arg8
, void *arg9
);
2474 monitor_printf(mon
, "command='%s'\n", cmdline
);
2477 /* extract the command name */
2478 p
= get_command_name(cmdline
, cmdname
, sizeof(cmdname
));
2482 /* find the command */
2483 for(cmd
= mon_cmds
; cmd
->name
!= NULL
; cmd
++) {
2484 if (compare_cmd(cmdname
, cmd
->name
))
2488 if (cmd
->name
== NULL
) {
2489 monitor_printf(mon
, "unknown command: '%s'\n", cmdname
);
2493 for(i
= 0; i
< MAX_ARGS
; i
++)
2494 str_allocated
[i
] = NULL
;
2496 /* parse the parameters */
2497 typestr
= cmd
->args_type
;
2512 while (qemu_isspace(*p
))
2514 if (*typestr
== '?') {
2517 /* no optional string: NULL argument */
2522 ret
= get_str(buf
, sizeof(buf
), &p
);
2526 monitor_printf(mon
, "%s: filename expected\n",
2530 monitor_printf(mon
, "%s: block device name expected\n",
2534 monitor_printf(mon
, "%s: string expected\n", cmdname
);
2539 str
= qemu_malloc(strlen(buf
) + 1);
2540 pstrcpy(str
, sizeof(buf
), buf
);
2541 str_allocated
[nb_args
] = str
;
2543 if (nb_args
>= MAX_ARGS
) {
2545 monitor_printf(mon
, "%s: too many arguments\n", cmdname
);
2548 args
[nb_args
++] = str
;
2553 int count
, format
, size
;
2555 while (qemu_isspace(*p
))
2561 if (qemu_isdigit(*p
)) {
2563 while (qemu_isdigit(*p
)) {
2564 count
= count
* 10 + (*p
- '0');
2602 if (*p
!= '\0' && !qemu_isspace(*p
)) {
2603 monitor_printf(mon
, "invalid char in format: '%c'\n",
2608 format
= default_fmt_format
;
2609 if (format
!= 'i') {
2610 /* for 'i', not specifying a size gives -1 as size */
2612 size
= default_fmt_size
;
2613 default_fmt_size
= size
;
2615 default_fmt_format
= format
;
2618 format
= default_fmt_format
;
2619 if (format
!= 'i') {
2620 size
= default_fmt_size
;
2625 if (nb_args
+ 3 > MAX_ARGS
)
2627 args
[nb_args
++] = (void*)(long)count
;
2628 args
[nb_args
++] = (void*)(long)format
;
2629 args
[nb_args
++] = (void*)(long)size
;
2637 while (qemu_isspace(*p
))
2639 if (*typestr
== '?' || *typestr
== '.') {
2640 if (*typestr
== '?') {
2648 while (qemu_isspace(*p
))
2656 if (nb_args
>= MAX_ARGS
)
2658 args
[nb_args
++] = (void *)(long)has_arg
;
2660 if (nb_args
>= MAX_ARGS
)
2666 if (get_expr(mon
, &val
, &p
))
2670 if (nb_args
>= MAX_ARGS
)
2672 args
[nb_args
++] = (void *)(long)val
;
2674 if ((nb_args
+ 1) >= MAX_ARGS
)
2676 #if TARGET_PHYS_ADDR_BITS > 32
2677 args
[nb_args
++] = (void *)(long)((val
>> 32) & 0xffffffff);
2679 args
[nb_args
++] = (void *)0;
2681 args
[nb_args
++] = (void *)(long)(val
& 0xffffffff);
2693 while (qemu_isspace(*p
))
2699 monitor_printf(mon
, "%s: unsupported option -%c\n",
2706 if (nb_args
>= MAX_ARGS
)
2708 args
[nb_args
++] = (void *)(long)has_option
;
2713 monitor_printf(mon
, "%s: unknown type '%c'\n", cmdname
, c
);
2717 /* check that all arguments were parsed */
2718 while (qemu_isspace(*p
))
2721 monitor_printf(mon
, "%s: extraneous characters at the end of line\n",
2728 handler_0
= cmd
->handler
;
2732 handler_1
= cmd
->handler
;
2733 handler_1(mon
, args
[0]);
2736 handler_2
= cmd
->handler
;
2737 handler_2(mon
, args
[0], args
[1]);
2740 handler_3
= cmd
->handler
;
2741 handler_3(mon
, args
[0], args
[1], args
[2]);
2744 handler_4
= cmd
->handler
;
2745 handler_4(mon
, args
[0], args
[1], args
[2], args
[3]);
2748 handler_5
= cmd
->handler
;
2749 handler_5(mon
, args
[0], args
[1], args
[2], args
[3], args
[4]);
2752 handler_6
= cmd
->handler
;
2753 handler_6(mon
, args
[0], args
[1], args
[2], args
[3], args
[4], args
[5]);
2756 handler_7
= cmd
->handler
;
2757 handler_7(mon
, args
[0], args
[1], args
[2], args
[3], args
[4], args
[5],
2761 handler_8
= cmd
->handler
;
2762 handler_8(mon
, args
[0], args
[1], args
[2], args
[3], args
[4], args
[5],
2766 handler_9
= cmd
->handler
;
2767 handler_9(mon
, args
[0], args
[1], args
[2], args
[3], args
[4], args
[5],
2768 args
[6], args
[7], args
[8]);
2771 handler_10
= cmd
->handler
;
2772 handler_10(mon
, args
[0], args
[1], args
[2], args
[3], args
[4], args
[5],
2773 args
[6], args
[7], args
[8], args
[9]);
2776 monitor_printf(mon
, "unsupported number of arguments: %d\n", nb_args
);
2780 for(i
= 0; i
< MAX_ARGS
; i
++)
2781 qemu_free(str_allocated
[i
]);
2784 static void cmd_completion(const char *name
, const char *list
)
2786 const char *p
, *pstart
;
2795 p
= pstart
+ strlen(pstart
);
2797 if (len
> sizeof(cmd
) - 2)
2798 len
= sizeof(cmd
) - 2;
2799 memcpy(cmd
, pstart
, len
);
2801 if (name
[0] == '\0' || !strncmp(name
, cmd
, strlen(name
))) {
2802 readline_add_completion(cur_mon
->rs
, cmd
);
2810 static void file_completion(const char *input
)
2815 char file
[1024], file_prefix
[1024];
2819 p
= strrchr(input
, '/');
2822 pstrcpy(file_prefix
, sizeof(file_prefix
), input
);
2823 pstrcpy(path
, sizeof(path
), ".");
2825 input_path_len
= p
- input
+ 1;
2826 memcpy(path
, input
, input_path_len
);
2827 if (input_path_len
> sizeof(path
) - 1)
2828 input_path_len
= sizeof(path
) - 1;
2829 path
[input_path_len
] = '\0';
2830 pstrcpy(file_prefix
, sizeof(file_prefix
), p
+ 1);
2832 #ifdef DEBUG_COMPLETION
2833 monitor_printf(cur_mon
, "input='%s' path='%s' prefix='%s'\n",
2834 input
, path
, file_prefix
);
2836 ffs
= opendir(path
);
2844 if (strstart(d
->d_name
, file_prefix
, NULL
)) {
2845 memcpy(file
, input
, input_path_len
);
2846 if (input_path_len
< sizeof(file
))
2847 pstrcpy(file
+ input_path_len
, sizeof(file
) - input_path_len
,
2849 /* stat the file to find out if it's a directory.
2850 * In that case add a slash to speed up typing long paths
2853 if(S_ISDIR(sb
.st_mode
))
2854 pstrcat(file
, sizeof(file
), "/");
2855 readline_add_completion(cur_mon
->rs
, file
);
2861 static void block_completion_it(void *opaque
, BlockDriverState
*bs
)
2863 const char *name
= bdrv_get_device_name(bs
);
2864 const char *input
= opaque
;
2866 if (input
[0] == '\0' ||
2867 !strncmp(name
, (char *)input
, strlen(input
))) {
2868 readline_add_completion(cur_mon
->rs
, name
);
2872 /* NOTE: this parser is an approximate form of the real command parser */
2873 static void parse_cmdline(const char *cmdline
,
2874 int *pnb_args
, char **args
)
2883 while (qemu_isspace(*p
))
2887 if (nb_args
>= MAX_ARGS
)
2889 ret
= get_str(buf
, sizeof(buf
), &p
);
2890 args
[nb_args
] = qemu_strdup(buf
);
2895 *pnb_args
= nb_args
;
2898 static void monitor_find_completion(const char *cmdline
)
2900 const char *cmdname
;
2901 char *args
[MAX_ARGS
];
2902 int nb_args
, i
, len
;
2903 const char *ptype
, *str
;
2904 const mon_cmd_t
*cmd
;
2907 parse_cmdline(cmdline
, &nb_args
, args
);
2908 #ifdef DEBUG_COMPLETION
2909 for(i
= 0; i
< nb_args
; i
++) {
2910 monitor_printf(cur_mon
, "arg%d = '%s'\n", i
, (char *)args
[i
]);
2914 /* if the line ends with a space, it means we want to complete the
2916 len
= strlen(cmdline
);
2917 if (len
> 0 && qemu_isspace(cmdline
[len
- 1])) {
2918 if (nb_args
>= MAX_ARGS
)
2920 args
[nb_args
++] = qemu_strdup("");
2923 /* command completion */
2928 readline_set_completion_index(cur_mon
->rs
, strlen(cmdname
));
2929 for(cmd
= mon_cmds
; cmd
->name
!= NULL
; cmd
++) {
2930 cmd_completion(cmdname
, cmd
->name
);
2933 /* find the command */
2934 for(cmd
= mon_cmds
; cmd
->name
!= NULL
; cmd
++) {
2935 if (compare_cmd(args
[0], cmd
->name
))
2940 ptype
= cmd
->args_type
;
2941 for(i
= 0; i
< nb_args
- 2; i
++) {
2942 if (*ptype
!= '\0') {
2944 while (*ptype
== '?')
2948 str
= args
[nb_args
- 1];
2951 /* file completion */
2952 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
2953 file_completion(str
);
2956 /* block device name completion */
2957 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
2958 bdrv_iterate(block_completion_it
, (void *)str
);
2961 /* XXX: more generic ? */
2962 if (!strcmp(cmd
->name
, "info")) {
2963 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
2964 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
2965 cmd_completion(str
, cmd
->name
);
2967 } else if (!strcmp(cmd
->name
, "sendkey")) {
2968 char *sep
= strrchr(str
, '-');
2971 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
2972 for(key
= key_defs
; key
->name
!= NULL
; key
++) {
2973 cmd_completion(str
, key
->name
);
2975 } else if (!strcmp(cmd
->name
, "help|?")) {
2976 readline_set_completion_index(cur_mon
->rs
, strlen(str
));
2977 for (cmd
= mon_cmds
; cmd
->name
!= NULL
; cmd
++) {
2978 cmd_completion(str
, cmd
->name
);
2986 for(i
= 0; i
< nb_args
; i
++)
2990 static int monitor_can_read(void *opaque
)
2992 Monitor
*mon
= opaque
;
2994 return (mon
->suspend_cnt
== 0) ? 128 : 0;
2997 static void monitor_read(void *opaque
, const uint8_t *buf
, int size
)
2999 Monitor
*old_mon
= cur_mon
;
3005 for (i
= 0; i
< size
; i
++)
3006 readline_handle_byte(cur_mon
->rs
, buf
[i
]);
3008 if (size
== 0 || buf
[size
- 1] != 0)
3009 monitor_printf(cur_mon
, "corrupted command\n");
3011 monitor_handle_command(cur_mon
, (char *)buf
);
3017 static void monitor_command_cb(Monitor
*mon
, const char *cmdline
, void *opaque
)
3019 monitor_suspend(mon
);
3020 monitor_handle_command(mon
, cmdline
);
3021 monitor_resume(mon
);
3024 int monitor_suspend(Monitor
*mon
)
3032 void monitor_resume(Monitor
*mon
)
3036 if (--mon
->suspend_cnt
== 0)
3037 readline_show_prompt(mon
->rs
);
3040 static void monitor_event(void *opaque
, int event
)
3042 Monitor
*mon
= opaque
;
3045 case CHR_EVENT_MUX_IN
:
3046 readline_restart(mon
->rs
);
3047 monitor_resume(mon
);
3051 case CHR_EVENT_MUX_OUT
:
3052 if (mon
->suspend_cnt
== 0)
3053 monitor_printf(mon
, "\n");
3055 monitor_suspend(mon
);
3058 case CHR_EVENT_RESET
:
3059 monitor_printf(mon
, "QEMU %s monitor - type 'help' for more "
3060 "information\n", QEMU_VERSION
);
3061 if (mon
->chr
->focus
== 0)
3062 readline_show_prompt(mon
->rs
);
3076 void monitor_init(CharDriverState
*chr
, int flags
)
3078 static int is_first_init
= 1;
3081 if (is_first_init
) {
3082 key_timer
= qemu_new_timer(vm_clock
, release_keys
, NULL
);
3086 mon
= qemu_mallocz(sizeof(*mon
));
3090 if (mon
->chr
->focus
!= 0)
3091 mon
->suspend_cnt
= 1; /* mux'ed monitors start suspended */
3092 if (flags
& MONITOR_USE_READLINE
) {
3093 mon
->rs
= readline_init(mon
, monitor_find_completion
);
3094 monitor_read_command(mon
, 0);
3097 qemu_chr_add_handlers(chr
, monitor_can_read
, monitor_read
, monitor_event
,
3100 LIST_INSERT_HEAD(&mon_list
, mon
, entry
);
3101 if (!cur_mon
|| (flags
& MONITOR_IS_DEFAULT
))
3105 static void bdrv_password_cb(Monitor
*mon
, const char *password
, void *opaque
)
3107 BlockDriverState
*bs
= opaque
;
3110 if (bdrv_set_key(bs
, password
) != 0) {
3111 monitor_printf(mon
, "invalid password\n");
3114 if (mon
->password_completion_cb
)
3115 mon
->password_completion_cb(mon
->password_opaque
, ret
);
3117 monitor_read_command(mon
, 1);
3120 void monitor_read_bdrv_key_start(Monitor
*mon
, BlockDriverState
*bs
,
3121 BlockDriverCompletionFunc
*completion_cb
,
3126 if (!bdrv_key_required(bs
)) {
3128 completion_cb(opaque
, 0);
3132 monitor_printf(mon
, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs
),
3133 bdrv_get_encrypted_filename(bs
));
3135 mon
->password_completion_cb
= completion_cb
;
3136 mon
->password_opaque
= opaque
;
3138 err
= monitor_read_password(mon
, bdrv_password_cb
, bs
);
3140 if (err
&& completion_cb
)
3141 completion_cb(opaque
, err
);