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
29 //#define DEBUG_COMPLETION
32 #define offsetof(type, field) ((size_t) &((type *)0)->field)
39 * 'B' block device name
40 * 's' string (accept optional quote)
42 * 'l' target long (32 or 64 bit)
43 * '/' optional gdb-like print format (like "/10x")
45 * '?' optional type (for 'F', 's' and 'i')
49 typedef struct term_cmd_t
{
51 const char *args_type
;
58 static CharDriverState
*monitor_hd
[MAX_MON
];
59 static int hide_banner
;
61 static term_cmd_t term_cmds
[];
62 static term_cmd_t info_cmds
[];
64 static char term_outbuf
[1024];
65 static int term_outbuf_index
;
67 static void monitor_start_input(void);
69 CPUState
*mon_cpu
= NULL
;
74 if (term_outbuf_index
> 0) {
75 for (i
= 0; i
< MAX_MON
; i
++)
76 if (monitor_hd
[i
] && monitor_hd
[i
]->focus
== 0)
77 qemu_chr_write(monitor_hd
[i
], term_outbuf
, term_outbuf_index
);
78 term_outbuf_index
= 0;
82 /* flush at every end of line or if the buffer is full */
83 void term_puts(const char *str
)
91 term_outbuf
[term_outbuf_index
++] = '\r';
92 term_outbuf
[term_outbuf_index
++] = c
;
93 if (term_outbuf_index
>= (sizeof(term_outbuf
) - 1) ||
99 void term_vprintf(const char *fmt
, va_list ap
)
102 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
106 void term_printf(const char *fmt
, ...)
110 term_vprintf(fmt
, ap
);
114 void term_print_filename(const char *filename
)
118 for (i
= 0; filename
[i
]; i
++) {
119 switch (filename
[i
]) {
123 term_printf("\\%c", filename
[i
]);
135 term_printf("%c", filename
[i
]);
141 static int monitor_fprintf(FILE *stream
, const char *fmt
, ...)
145 term_vprintf(fmt
, ap
);
150 static int compare_cmd(const char *name
, const char *list
)
152 const char *p
, *pstart
;
160 p
= pstart
+ strlen(pstart
);
161 if ((p
- pstart
) == len
&& !memcmp(pstart
, name
, len
))
170 static void help_cmd1(term_cmd_t
*cmds
, const char *prefix
, const char *name
)
174 for(cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
175 if (!name
|| !strcmp(name
, cmd
->name
))
176 term_printf("%s%s %s -- %s\n", prefix
, cmd
->name
, cmd
->params
, cmd
->help
);
180 static void help_cmd(const char *name
)
182 if (name
&& !strcmp(name
, "info")) {
183 help_cmd1(info_cmds
, "info ", NULL
);
185 help_cmd1(term_cmds
, "", name
);
186 if (name
&& !strcmp(name
, "log")) {
188 term_printf("Log items (comma separated):\n");
189 term_printf("%-10s %s\n", "none", "remove all logs");
190 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
191 term_printf("%-10s %s\n", item
->name
, item
->help
);
197 static void do_help(const char *name
)
202 static void do_commit(const char *device
)
206 all_devices
= !strcmp(device
, "all");
207 for (i
= 0; i
< MAX_DISKS
; i
++) {
210 !strcmp(bdrv_get_device_name(bs_table
[i
]), device
))
211 bdrv_commit(bs_table
[i
]);
215 if (all_devices
|| !strcmp(bdrv_get_device_name(mtd_bdrv
), device
))
216 bdrv_commit(mtd_bdrv
);
219 static void do_info(const char *item
)
225 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
226 if (compare_cmd(item
, cmd
->name
))
236 static void do_info_version(void)
238 term_printf("%s\n", QEMU_VERSION
);
241 static void do_info_name(void)
244 term_printf("%s\n", qemu_name
);
247 static void do_info_block(void)
252 /* get the current CPU defined by the user */
253 int mon_set_cpu(int cpu_index
)
257 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
258 if (env
->cpu_index
== cpu_index
) {
266 CPUState
*mon_get_cpu(void)
274 static void do_info_registers(void)
281 cpu_dump_state(env
, NULL
, monitor_fprintf
,
284 cpu_dump_state(env
, NULL
, monitor_fprintf
,
289 static void do_info_cpus(void)
293 /* just to set the default cpu if not already done */
296 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
297 term_printf("%c CPU #%d:",
298 (env
== mon_cpu
) ? '*' : ' ',
300 #if defined(TARGET_I386)
301 term_printf(" pc=0x" TARGET_FMT_lx
, env
->eip
+ env
->segs
[R_CS
].base
);
302 if (env
->hflags
& HF_HALTED_MASK
)
303 term_printf(" (halted)");
304 #elif defined(TARGET_PPC)
305 term_printf(" nip=0x" TARGET_FMT_lx
, env
->nip
);
307 term_printf(" (halted)");
308 #elif defined(TARGET_SPARC)
309 term_printf(" pc=0x" TARGET_FMT_lx
" npc=0x" TARGET_FMT_lx
, env
->pc
, env
->npc
);
311 term_printf(" (halted)");
312 #elif defined(TARGET_MIPS)
313 term_printf(" PC=0x" TARGET_FMT_lx
, env
->PC
[env
->current_tc
]);
315 term_printf(" (halted)");
321 static void do_cpu_set(int index
)
323 if (mon_set_cpu(index
) < 0)
324 term_printf("Invalid CPU index\n");
327 static void do_info_jit(void)
329 dump_exec_info(NULL
, monitor_fprintf
);
332 static void do_info_history (void)
339 str
= readline_get_history(i
);
342 term_printf("%d: '%s'\n", i
, str
);
347 #if defined(TARGET_PPC)
348 /* XXX: not implemented in other targets */
349 static void do_info_cpu_stats (void)
354 cpu_dump_statistics(env
, NULL
, &monitor_fprintf
, 0);
358 static void do_quit(void)
363 static int eject_device(BlockDriverState
*bs
, int force
)
365 if (bdrv_is_inserted(bs
)) {
367 if (!bdrv_is_removable(bs
)) {
368 term_printf("device is not removable\n");
371 if (bdrv_is_locked(bs
)) {
372 term_printf("device is locked\n");
381 static void do_eject(int force
, const char *filename
)
383 BlockDriverState
*bs
;
385 bs
= bdrv_find(filename
);
387 term_printf("device not found\n");
390 eject_device(bs
, force
);
393 static void do_change_block(const char *device
, const char *filename
)
395 BlockDriverState
*bs
;
397 bs
= bdrv_find(device
);
399 term_printf("device not found\n");
402 if (eject_device(bs
, 0) < 0)
404 bdrv_open(bs
, filename
, 0);
405 qemu_key_check(bs
, filename
);
408 static void do_change_vnc(const char *target
)
410 if (strcmp(target
, "passwd") == 0 ||
411 strcmp(target
, "password") == 0) {
413 monitor_readline("Password: ", 1, password
, sizeof(password
)-1);
414 password
[sizeof(password
)-1] = '\0';
415 if (vnc_display_password(NULL
, password
) < 0)
416 term_printf("could not set VNC server password\n");
418 if (vnc_display_open(NULL
, target
) < 0)
419 term_printf("could not start VNC server on %s\n", target
);
423 static void do_change(const char *device
, const char *target
)
425 if (strcmp(device
, "vnc") == 0) {
426 do_change_vnc(target
);
428 do_change_block(device
, target
);
432 static void do_screen_dump(const char *filename
)
434 vga_hw_screen_dump(filename
);
437 static void do_logfile(const char *filename
)
439 cpu_set_log_filename(filename
);
442 static void do_log(const char *items
)
446 if (!strcmp(items
, "none")) {
449 mask
= cpu_str_to_log_mask(items
);
458 static void do_stop(void)
460 vm_stop(EXCP_INTERRUPT
);
463 static void do_cont(void)
468 #ifdef CONFIG_GDBSTUB
469 static void do_gdbserver(const char *port
)
472 port
= DEFAULT_GDBSTUB_PORT
;
473 if (gdbserver_start(port
) < 0) {
474 qemu_printf("Could not open gdbserver socket on port '%s'\n", port
);
476 qemu_printf("Waiting gdb connection on port '%s'\n", port
);
481 static void term_printc(int c
)
498 if (c
>= 32 && c
<= 126) {
499 term_printf("%c", c
);
501 term_printf("\\x%02x", c
);
508 static void memory_dump(int count
, int format
, int wsize
,
509 target_phys_addr_t addr
, int is_physical
)
512 int nb_per_line
, l
, line_size
, i
, max_digits
, len
;
520 if (!env
&& !is_physical
)
525 } else if (wsize
== 4) {
528 /* as default we use the current CS size */
532 if ((env
->efer
& MSR_EFER_LMA
) &&
533 (env
->segs
[R_CS
].flags
& DESC_L_MASK
))
537 if (!(env
->segs
[R_CS
].flags
& DESC_B_MASK
))
542 monitor_disas(env
, addr
, count
, is_physical
, flags
);
551 nb_per_line
= line_size
/ wsize
;
556 max_digits
= (wsize
* 8 + 2) / 3;
560 max_digits
= (wsize
* 8) / 4;
564 max_digits
= (wsize
* 8 * 10 + 32) / 33;
573 term_printf(TARGET_FMT_plx
":", addr
);
575 term_printf(TARGET_FMT_lx
":", (target_ulong
)addr
);
580 cpu_physical_memory_rw(addr
, buf
, l
, 0);
585 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
592 v
= ldub_raw(buf
+ i
);
595 v
= lduw_raw(buf
+ i
);
598 v
= (uint32_t)ldl_raw(buf
+ i
);
601 v
= ldq_raw(buf
+ i
);
607 term_printf("%#*" PRIo64
, max_digits
, v
);
610 term_printf("0x%0*" PRIx64
, max_digits
, v
);
613 term_printf("%*" PRIu64
, max_digits
, v
);
616 term_printf("%*" PRId64
, max_digits
, v
);
630 #if TARGET_LONG_BITS == 64
631 #define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
633 #define GET_TLONG(h, l) (l)
636 static void do_memory_dump(int count
, int format
, int size
,
637 uint32_t addrh
, uint32_t addrl
)
639 target_long addr
= GET_TLONG(addrh
, addrl
);
640 memory_dump(count
, format
, size
, addr
, 0);
643 #if TARGET_PHYS_ADDR_BITS > 32
644 #define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
646 #define GET_TPHYSADDR(h, l) (l)
649 static void do_physical_memory_dump(int count
, int format
, int size
,
650 uint32_t addrh
, uint32_t addrl
)
653 target_phys_addr_t addr
= GET_TPHYSADDR(addrh
, addrl
);
654 memory_dump(count
, format
, size
, addr
, 1);
657 static void do_print(int count
, int format
, int size
, unsigned int valh
, unsigned int vall
)
659 target_phys_addr_t val
= GET_TPHYSADDR(valh
, vall
);
660 #if TARGET_PHYS_ADDR_BITS == 32
663 term_printf("%#o", val
);
666 term_printf("%#x", val
);
669 term_printf("%u", val
);
673 term_printf("%d", val
);
682 term_printf("%#" PRIo64
, val
);
685 term_printf("%#" PRIx64
, val
);
688 term_printf("%" PRIu64
, val
);
692 term_printf("%" PRId64
, val
);
702 static void do_memory_save(unsigned int valh
, unsigned int vall
,
703 uint32_t size
, const char *filename
)
706 target_long addr
= GET_TLONG(valh
, vall
);
715 f
= fopen(filename
, "wb");
717 term_printf("could not open '%s'\n", filename
);
724 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
725 fwrite(buf
, 1, l
, f
);
732 static void do_sum(uint32_t start
, uint32_t size
)
739 for(addr
= start
; addr
< (start
+ size
); addr
++) {
740 cpu_physical_memory_rw(addr
, buf
, 1, 0);
741 /* BSD sum algorithm ('sum' Unix command) */
742 sum
= (sum
>> 1) | (sum
<< 15);
745 term_printf("%05d\n", sum
);
753 static const KeyDef key_defs
[] = {
778 { 0x0e, "backspace" },
813 { 0x3a, "caps_lock" },
824 { 0x45, "num_lock" },
825 { 0x46, "scroll_lock" },
827 { 0xb5, "kp_divide" },
828 { 0x37, "kp_multiply" },
829 { 0x4a, "kp_subtract" },
831 { 0x9c, "kp_enter" },
832 { 0x53, "kp_decimal" },
867 static int get_keycode(const char *key
)
873 for(p
= key_defs
; p
->name
!= NULL
; p
++) {
874 if (!strcmp(key
, p
->name
))
877 if (strstart(key
, "0x", NULL
)) {
878 ret
= strtoul(key
, &endp
, 0);
879 if (*endp
== '\0' && ret
>= 0x01 && ret
<= 0xff)
885 static void do_send_key(const char *string
)
888 uint8_t keycodes
[16];
890 int nb_keycodes
, keycode
, i
;
896 while (*p
!= '\0' && *p
!= '-') {
897 if ((q
- keybuf
) < sizeof(keybuf
) - 1) {
903 keycode
= get_keycode(keybuf
);
905 term_printf("unknown key: '%s'\n", keybuf
);
908 keycodes
[nb_keycodes
++] = keycode
;
913 /* key down events */
914 for(i
= 0; i
< nb_keycodes
; i
++) {
915 keycode
= keycodes
[i
];
917 kbd_put_keycode(0xe0);
918 kbd_put_keycode(keycode
& 0x7f);
921 for(i
= nb_keycodes
- 1; i
>= 0; i
--) {
922 keycode
= keycodes
[i
];
924 kbd_put_keycode(0xe0);
925 kbd_put_keycode(keycode
| 0x80);
929 static int mouse_button_state
;
931 static void do_mouse_move(const char *dx_str
, const char *dy_str
,
935 dx
= strtol(dx_str
, NULL
, 0);
936 dy
= strtol(dy_str
, NULL
, 0);
939 dz
= strtol(dz_str
, NULL
, 0);
940 kbd_mouse_event(dx
, dy
, dz
, mouse_button_state
);
943 static void do_mouse_button(int button_state
)
945 mouse_button_state
= button_state
;
946 kbd_mouse_event(0, 0, 0, mouse_button_state
);
949 static void do_ioport_read(int count
, int format
, int size
, int addr
, int has_index
, int index
)
955 cpu_outb(NULL
, addr
& 0xffff, index
& 0xff);
963 val
= cpu_inb(NULL
, addr
);
967 val
= cpu_inw(NULL
, addr
);
971 val
= cpu_inl(NULL
, addr
);
975 term_printf("port%c[0x%04x] = %#0*x\n",
976 suffix
, addr
, size
* 2, val
);
979 static void do_system_reset(void)
981 qemu_system_reset_request();
984 static void do_system_powerdown(void)
986 qemu_system_powerdown_request();
989 #if defined(TARGET_I386)
990 static void print_pte(uint32_t addr
, uint32_t pte
, uint32_t mask
)
992 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
995 pte
& PG_GLOBAL_MASK
? 'G' : '-',
996 pte
& PG_PSE_MASK
? 'P' : '-',
997 pte
& PG_DIRTY_MASK
? 'D' : '-',
998 pte
& PG_ACCESSED_MASK
? 'A' : '-',
999 pte
& PG_PCD_MASK
? 'C' : '-',
1000 pte
& PG_PWT_MASK
? 'T' : '-',
1001 pte
& PG_USER_MASK
? 'U' : '-',
1002 pte
& PG_RW_MASK
? 'W' : '-');
1005 static void tlb_info(void)
1009 uint32_t pgd
, pde
, pte
;
1011 env
= mon_get_cpu();
1015 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1016 term_printf("PG disabled\n");
1019 pgd
= env
->cr
[3] & ~0xfff;
1020 for(l1
= 0; l1
< 1024; l1
++) {
1021 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1022 pde
= le32_to_cpu(pde
);
1023 if (pde
& PG_PRESENT_MASK
) {
1024 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1025 print_pte((l1
<< 22), pde
, ~((1 << 20) - 1));
1027 for(l2
= 0; l2
< 1024; l2
++) {
1028 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1029 (uint8_t *)&pte
, 4);
1030 pte
= le32_to_cpu(pte
);
1031 if (pte
& PG_PRESENT_MASK
) {
1032 print_pte((l1
<< 22) + (l2
<< 12),
1042 static void mem_print(uint32_t *pstart
, int *plast_prot
,
1043 uint32_t end
, int prot
)
1046 prot1
= *plast_prot
;
1047 if (prot
!= prot1
) {
1048 if (*pstart
!= -1) {
1049 term_printf("%08x-%08x %08x %c%c%c\n",
1050 *pstart
, end
, end
- *pstart
,
1051 prot1
& PG_USER_MASK
? 'u' : '-',
1053 prot1
& PG_RW_MASK
? 'w' : '-');
1063 static void mem_info(void)
1066 int l1
, l2
, prot
, last_prot
;
1067 uint32_t pgd
, pde
, pte
, start
, end
;
1069 env
= mon_get_cpu();
1073 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1074 term_printf("PG disabled\n");
1077 pgd
= env
->cr
[3] & ~0xfff;
1080 for(l1
= 0; l1
< 1024; l1
++) {
1081 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1082 pde
= le32_to_cpu(pde
);
1084 if (pde
& PG_PRESENT_MASK
) {
1085 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1086 prot
= pde
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1087 mem_print(&start
, &last_prot
, end
, prot
);
1089 for(l2
= 0; l2
< 1024; l2
++) {
1090 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1091 (uint8_t *)&pte
, 4);
1092 pte
= le32_to_cpu(pte
);
1093 end
= (l1
<< 22) + (l2
<< 12);
1094 if (pte
& PG_PRESENT_MASK
) {
1095 prot
= pte
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1099 mem_print(&start
, &last_prot
, end
, prot
);
1104 mem_print(&start
, &last_prot
, end
, prot
);
1110 static void do_info_kqemu(void)
1116 env
= mon_get_cpu();
1118 term_printf("No cpu initialized yet");
1121 val
= env
->kqemu_enabled
;
1122 term_printf("kqemu support: ");
1126 term_printf("disabled\n");
1129 term_printf("enabled for user code\n");
1132 term_printf("enabled for user and kernel code\n");
1136 term_printf("kqemu support: not compiled\n");
1140 #ifdef CONFIG_PROFILER
1144 int64_t kqemu_exec_count
;
1146 int64_t kqemu_ret_int_count
;
1147 int64_t kqemu_ret_excp_count
;
1148 int64_t kqemu_ret_intr_count
;
1150 static void do_info_profile(void)
1156 term_printf("async time %" PRId64
" (%0.3f)\n",
1157 dev_time
, dev_time
/ (double)ticks_per_sec
);
1158 term_printf("qemu time %" PRId64
" (%0.3f)\n",
1159 qemu_time
, qemu_time
/ (double)ticks_per_sec
);
1160 term_printf("kqemu time %" PRId64
" (%0.3f %0.1f%%) count=%" PRId64
" int=%" PRId64
" excp=%" PRId64
" intr=%" PRId64
"\n",
1161 kqemu_time
, kqemu_time
/ (double)ticks_per_sec
,
1162 kqemu_time
/ (double)total
* 100.0,
1164 kqemu_ret_int_count
,
1165 kqemu_ret_excp_count
,
1166 kqemu_ret_intr_count
);
1169 kqemu_exec_count
= 0;
1171 kqemu_ret_int_count
= 0;
1172 kqemu_ret_excp_count
= 0;
1173 kqemu_ret_intr_count
= 0;
1175 kqemu_record_dump();
1179 static void do_info_profile(void)
1181 term_printf("Internal profiler not compiled\n");
1185 /* Capture support */
1186 static LIST_HEAD (capture_list_head
, CaptureState
) capture_head
;
1188 static void do_info_capture (void)
1193 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1194 term_printf ("[%d]: ", i
);
1195 s
->ops
.info (s
->opaque
);
1199 static void do_stop_capture (int n
)
1204 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1206 s
->ops
.destroy (s
->opaque
);
1207 LIST_REMOVE (s
, entries
);
1215 int wav_start_capture (CaptureState
*s
, const char *path
, int freq
,
1216 int bits
, int nchannels
);
1218 static void do_wav_capture (const char *path
,
1219 int has_freq
, int freq
,
1220 int has_bits
, int bits
,
1221 int has_channels
, int nchannels
)
1225 s
= qemu_mallocz (sizeof (*s
));
1227 term_printf ("Not enough memory to add wave capture\n");
1231 freq
= has_freq
? freq
: 44100;
1232 bits
= has_bits
? bits
: 16;
1233 nchannels
= has_channels
? nchannels
: 2;
1235 if (wav_start_capture (s
, path
, freq
, bits
, nchannels
)) {
1236 term_printf ("Faied to add wave capture\n");
1239 LIST_INSERT_HEAD (&capture_head
, s
, entries
);
1243 static term_cmd_t term_cmds
[] = {
1244 { "help|?", "s?", do_help
,
1245 "[cmd]", "show the help" },
1246 { "commit", "s", do_commit
,
1247 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
1248 { "info", "s?", do_info
,
1249 "subcommand", "show various information about the system state" },
1250 { "q|quit", "", do_quit
,
1251 "", "quit the emulator" },
1252 { "eject", "-fB", do_eject
,
1253 "[-f] device", "eject a removable medium (use -f to force it)" },
1254 { "change", "BF", do_change
,
1255 "device filename", "change a removable medium" },
1256 { "screendump", "F", do_screen_dump
,
1257 "filename", "save screen into PPM image 'filename'" },
1258 { "logfile", "s", do_logfile
,
1259 "filename", "output logs to 'filename'" },
1260 { "log", "s", do_log
,
1261 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
1262 { "savevm", "s?", do_savevm
,
1263 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
1264 { "loadvm", "s", do_loadvm
,
1265 "tag|id", "restore a VM snapshot from its tag or id" },
1266 { "delvm", "s", do_delvm
,
1267 "tag|id", "delete a VM snapshot from its tag or id" },
1268 { "stop", "", do_stop
,
1269 "", "stop emulation", },
1270 { "c|cont", "", do_cont
,
1271 "", "resume emulation", },
1272 #ifdef CONFIG_GDBSTUB
1273 { "gdbserver", "s?", do_gdbserver
,
1274 "[port]", "start gdbserver session (default port=1234)", },
1276 { "x", "/l", do_memory_dump
,
1277 "/fmt addr", "virtual memory dump starting at 'addr'", },
1278 { "xp", "/l", do_physical_memory_dump
,
1279 "/fmt addr", "physical memory dump starting at 'addr'", },
1280 { "p|print", "/l", do_print
,
1281 "/fmt expr", "print expression value (use $reg for CPU register access)", },
1282 { "i", "/ii.", do_ioport_read
,
1283 "/fmt addr", "I/O port read" },
1285 { "sendkey", "s", do_send_key
,
1286 "keys", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1')" },
1287 { "system_reset", "", do_system_reset
,
1288 "", "reset the system" },
1289 { "system_powerdown", "", do_system_powerdown
,
1290 "", "send system power down event" },
1291 { "sum", "ii", do_sum
,
1292 "addr size", "compute the checksum of a memory region" },
1293 { "usb_add", "s", do_usb_add
,
1294 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1295 { "usb_del", "s", do_usb_del
,
1296 "device", "remove USB device 'bus.addr'" },
1297 { "cpu", "i", do_cpu_set
,
1298 "index", "set the default CPU" },
1299 { "mouse_move", "sss?", do_mouse_move
,
1300 "dx dy [dz]", "send mouse move events" },
1301 { "mouse_button", "i", do_mouse_button
,
1302 "state", "change mouse button state (1=L, 2=M, 4=R)" },
1303 { "mouse_set", "i", do_mouse_set
,
1304 "index", "set which mouse device receives events" },
1306 { "wavcapture", "si?i?i?", do_wav_capture
,
1307 "path [frequency bits channels]",
1308 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1310 { "stopcapture", "i", do_stop_capture
,
1311 "capture index", "stop capture" },
1312 { "memsave", "lis", do_memory_save
,
1313 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
1317 static term_cmd_t info_cmds
[] = {
1318 { "version", "", do_info_version
,
1319 "", "show the version of qemu" },
1320 { "network", "", do_info_network
,
1321 "", "show the network state" },
1322 { "block", "", do_info_block
,
1323 "", "show the block devices" },
1324 { "registers", "", do_info_registers
,
1325 "", "show the cpu registers" },
1326 { "cpus", "", do_info_cpus
,
1327 "", "show infos for each CPU" },
1328 { "history", "", do_info_history
,
1329 "", "show the command line history", },
1330 { "irq", "", irq_info
,
1331 "", "show the interrupts statistics (if available)", },
1332 { "pic", "", pic_info
,
1333 "", "show i8259 (PIC) state", },
1334 { "pci", "", pci_info
,
1335 "", "show PCI info", },
1336 #if defined(TARGET_I386)
1337 { "tlb", "", tlb_info
,
1338 "", "show virtual to physical memory mappings", },
1339 { "mem", "", mem_info
,
1340 "", "show the active virtual memory mappings", },
1342 { "jit", "", do_info_jit
,
1343 "", "show dynamic compiler info", },
1344 { "kqemu", "", do_info_kqemu
,
1345 "", "show kqemu information", },
1346 { "usb", "", usb_info
,
1347 "", "show guest USB devices", },
1348 { "usbhost", "", usb_host_info
,
1349 "", "show host USB devices", },
1350 { "profile", "", do_info_profile
,
1351 "", "show profiling information", },
1352 { "capture", "", do_info_capture
,
1353 "", "show capture information" },
1354 { "snapshots", "", do_info_snapshots
,
1355 "", "show the currently saved VM snapshots" },
1356 { "pcmcia", "", pcmcia_info
,
1357 "", "show guest PCMCIA status" },
1358 { "mice", "", do_info_mice
,
1359 "", "show which guest mouse is receiving events" },
1360 { "vnc", "", do_info_vnc
,
1361 "", "show the vnc server status"},
1362 { "name", "", do_info_name
,
1363 "", "show the current VM name" },
1364 #if defined(TARGET_PPC)
1365 { "cpustats", "", do_info_cpu_stats
,
1366 "", "show CPU statistics", },
1371 /*******************************************************************/
1373 static const char *pch
;
1374 static jmp_buf expr_env
;
1379 typedef struct MonitorDef
{
1382 target_long (*get_value
)(struct MonitorDef
*md
, int val
);
1386 #if defined(TARGET_I386)
1387 static target_long
monitor_get_pc (struct MonitorDef
*md
, int val
)
1389 CPUState
*env
= mon_get_cpu();
1392 return env
->eip
+ env
->segs
[R_CS
].base
;
1396 #if defined(TARGET_PPC)
1397 static target_long
monitor_get_ccr (struct MonitorDef
*md
, int val
)
1399 CPUState
*env
= mon_get_cpu();
1407 for (i
= 0; i
< 8; i
++)
1408 u
|= env
->crf
[i
] << (32 - (4 * i
));
1413 static target_long
monitor_get_msr (struct MonitorDef
*md
, int val
)
1415 CPUState
*env
= mon_get_cpu();
1418 return do_load_msr(env
);
1421 static target_long
monitor_get_xer (struct MonitorDef
*md
, int val
)
1423 CPUState
*env
= mon_get_cpu();
1426 return ppc_load_xer(env
);
1429 static target_long
monitor_get_decr (struct MonitorDef
*md
, int val
)
1431 CPUState
*env
= mon_get_cpu();
1434 return cpu_ppc_load_decr(env
);
1437 static target_long
monitor_get_tbu (struct MonitorDef
*md
, int val
)
1439 CPUState
*env
= mon_get_cpu();
1442 return cpu_ppc_load_tbu(env
);
1445 static target_long
monitor_get_tbl (struct MonitorDef
*md
, int val
)
1447 CPUState
*env
= mon_get_cpu();
1450 return cpu_ppc_load_tbl(env
);
1454 #if defined(TARGET_SPARC)
1455 #ifndef TARGET_SPARC64
1456 static target_long
monitor_get_psr (struct MonitorDef
*md
, int val
)
1458 CPUState
*env
= mon_get_cpu();
1461 return GET_PSR(env
);
1465 static target_long
monitor_get_reg(struct MonitorDef
*md
, int val
)
1467 CPUState
*env
= mon_get_cpu();
1470 return env
->regwptr
[val
];
1474 static MonitorDef monitor_defs
[] = {
1477 #define SEG(name, seg) \
1478 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
1479 { name ".base", offsetof(CPUState, segs[seg].base) },\
1480 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
1482 { "eax", offsetof(CPUState
, regs
[0]) },
1483 { "ecx", offsetof(CPUState
, regs
[1]) },
1484 { "edx", offsetof(CPUState
, regs
[2]) },
1485 { "ebx", offsetof(CPUState
, regs
[3]) },
1486 { "esp|sp", offsetof(CPUState
, regs
[4]) },
1487 { "ebp|fp", offsetof(CPUState
, regs
[5]) },
1488 { "esi", offsetof(CPUState
, regs
[6]) },
1489 { "edi", offsetof(CPUState
, regs
[7]) },
1490 #ifdef TARGET_X86_64
1491 { "r8", offsetof(CPUState
, regs
[8]) },
1492 { "r9", offsetof(CPUState
, regs
[9]) },
1493 { "r10", offsetof(CPUState
, regs
[10]) },
1494 { "r11", offsetof(CPUState
, regs
[11]) },
1495 { "r12", offsetof(CPUState
, regs
[12]) },
1496 { "r13", offsetof(CPUState
, regs
[13]) },
1497 { "r14", offsetof(CPUState
, regs
[14]) },
1498 { "r15", offsetof(CPUState
, regs
[15]) },
1500 { "eflags", offsetof(CPUState
, eflags
) },
1501 { "eip", offsetof(CPUState
, eip
) },
1508 { "pc", 0, monitor_get_pc
, },
1509 #elif defined(TARGET_PPC)
1510 /* General purpose registers */
1511 { "r0", offsetof(CPUState
, gpr
[0]) },
1512 { "r1", offsetof(CPUState
, gpr
[1]) },
1513 { "r2", offsetof(CPUState
, gpr
[2]) },
1514 { "r3", offsetof(CPUState
, gpr
[3]) },
1515 { "r4", offsetof(CPUState
, gpr
[4]) },
1516 { "r5", offsetof(CPUState
, gpr
[5]) },
1517 { "r6", offsetof(CPUState
, gpr
[6]) },
1518 { "r7", offsetof(CPUState
, gpr
[7]) },
1519 { "r8", offsetof(CPUState
, gpr
[8]) },
1520 { "r9", offsetof(CPUState
, gpr
[9]) },
1521 { "r10", offsetof(CPUState
, gpr
[10]) },
1522 { "r11", offsetof(CPUState
, gpr
[11]) },
1523 { "r12", offsetof(CPUState
, gpr
[12]) },
1524 { "r13", offsetof(CPUState
, gpr
[13]) },
1525 { "r14", offsetof(CPUState
, gpr
[14]) },
1526 { "r15", offsetof(CPUState
, gpr
[15]) },
1527 { "r16", offsetof(CPUState
, gpr
[16]) },
1528 { "r17", offsetof(CPUState
, gpr
[17]) },
1529 { "r18", offsetof(CPUState
, gpr
[18]) },
1530 { "r19", offsetof(CPUState
, gpr
[19]) },
1531 { "r20", offsetof(CPUState
, gpr
[20]) },
1532 { "r21", offsetof(CPUState
, gpr
[21]) },
1533 { "r22", offsetof(CPUState
, gpr
[22]) },
1534 { "r23", offsetof(CPUState
, gpr
[23]) },
1535 { "r24", offsetof(CPUState
, gpr
[24]) },
1536 { "r25", offsetof(CPUState
, gpr
[25]) },
1537 { "r26", offsetof(CPUState
, gpr
[26]) },
1538 { "r27", offsetof(CPUState
, gpr
[27]) },
1539 { "r28", offsetof(CPUState
, gpr
[28]) },
1540 { "r29", offsetof(CPUState
, gpr
[29]) },
1541 { "r30", offsetof(CPUState
, gpr
[30]) },
1542 { "r31", offsetof(CPUState
, gpr
[31]) },
1543 /* Floating point registers */
1544 { "f0", offsetof(CPUState
, fpr
[0]) },
1545 { "f1", offsetof(CPUState
, fpr
[1]) },
1546 { "f2", offsetof(CPUState
, fpr
[2]) },
1547 { "f3", offsetof(CPUState
, fpr
[3]) },
1548 { "f4", offsetof(CPUState
, fpr
[4]) },
1549 { "f5", offsetof(CPUState
, fpr
[5]) },
1550 { "f6", offsetof(CPUState
, fpr
[6]) },
1551 { "f7", offsetof(CPUState
, fpr
[7]) },
1552 { "f8", offsetof(CPUState
, fpr
[8]) },
1553 { "f9", offsetof(CPUState
, fpr
[9]) },
1554 { "f10", offsetof(CPUState
, fpr
[10]) },
1555 { "f11", offsetof(CPUState
, fpr
[11]) },
1556 { "f12", offsetof(CPUState
, fpr
[12]) },
1557 { "f13", offsetof(CPUState
, fpr
[13]) },
1558 { "f14", offsetof(CPUState
, fpr
[14]) },
1559 { "f15", offsetof(CPUState
, fpr
[15]) },
1560 { "f16", offsetof(CPUState
, fpr
[16]) },
1561 { "f17", offsetof(CPUState
, fpr
[17]) },
1562 { "f18", offsetof(CPUState
, fpr
[18]) },
1563 { "f19", offsetof(CPUState
, fpr
[19]) },
1564 { "f20", offsetof(CPUState
, fpr
[20]) },
1565 { "f21", offsetof(CPUState
, fpr
[21]) },
1566 { "f22", offsetof(CPUState
, fpr
[22]) },
1567 { "f23", offsetof(CPUState
, fpr
[23]) },
1568 { "f24", offsetof(CPUState
, fpr
[24]) },
1569 { "f25", offsetof(CPUState
, fpr
[25]) },
1570 { "f26", offsetof(CPUState
, fpr
[26]) },
1571 { "f27", offsetof(CPUState
, fpr
[27]) },
1572 { "f28", offsetof(CPUState
, fpr
[28]) },
1573 { "f29", offsetof(CPUState
, fpr
[29]) },
1574 { "f30", offsetof(CPUState
, fpr
[30]) },
1575 { "f31", offsetof(CPUState
, fpr
[31]) },
1576 { "fpscr", offsetof(CPUState
, fpscr
) },
1577 /* Next instruction pointer */
1578 { "nip|pc", offsetof(CPUState
, nip
) },
1579 { "lr", offsetof(CPUState
, lr
) },
1580 { "ctr", offsetof(CPUState
, ctr
) },
1581 { "decr", 0, &monitor_get_decr
, },
1582 { "ccr", 0, &monitor_get_ccr
, },
1583 /* Machine state register */
1584 { "msr", 0, &monitor_get_msr
, },
1585 { "xer", 0, &monitor_get_xer
, },
1586 { "tbu", 0, &monitor_get_tbu
, },
1587 { "tbl", 0, &monitor_get_tbl
, },
1588 #if defined(TARGET_PPC64)
1589 /* Address space register */
1590 { "asr", offsetof(CPUState
, asr
) },
1592 /* Segment registers */
1593 { "sdr1", offsetof(CPUState
, sdr1
) },
1594 { "sr0", offsetof(CPUState
, sr
[0]) },
1595 { "sr1", offsetof(CPUState
, sr
[1]) },
1596 { "sr2", offsetof(CPUState
, sr
[2]) },
1597 { "sr3", offsetof(CPUState
, sr
[3]) },
1598 { "sr4", offsetof(CPUState
, sr
[4]) },
1599 { "sr5", offsetof(CPUState
, sr
[5]) },
1600 { "sr6", offsetof(CPUState
, sr
[6]) },
1601 { "sr7", offsetof(CPUState
, sr
[7]) },
1602 { "sr8", offsetof(CPUState
, sr
[8]) },
1603 { "sr9", offsetof(CPUState
, sr
[9]) },
1604 { "sr10", offsetof(CPUState
, sr
[10]) },
1605 { "sr11", offsetof(CPUState
, sr
[11]) },
1606 { "sr12", offsetof(CPUState
, sr
[12]) },
1607 { "sr13", offsetof(CPUState
, sr
[13]) },
1608 { "sr14", offsetof(CPUState
, sr
[14]) },
1609 { "sr15", offsetof(CPUState
, sr
[15]) },
1610 /* Too lazy to put BATs and SPRs ... */
1611 #elif defined(TARGET_SPARC)
1612 { "g0", offsetof(CPUState
, gregs
[0]) },
1613 { "g1", offsetof(CPUState
, gregs
[1]) },
1614 { "g2", offsetof(CPUState
, gregs
[2]) },
1615 { "g3", offsetof(CPUState
, gregs
[3]) },
1616 { "g4", offsetof(CPUState
, gregs
[4]) },
1617 { "g5", offsetof(CPUState
, gregs
[5]) },
1618 { "g6", offsetof(CPUState
, gregs
[6]) },
1619 { "g7", offsetof(CPUState
, gregs
[7]) },
1620 { "o0", 0, monitor_get_reg
},
1621 { "o1", 1, monitor_get_reg
},
1622 { "o2", 2, monitor_get_reg
},
1623 { "o3", 3, monitor_get_reg
},
1624 { "o4", 4, monitor_get_reg
},
1625 { "o5", 5, monitor_get_reg
},
1626 { "o6", 6, monitor_get_reg
},
1627 { "o7", 7, monitor_get_reg
},
1628 { "l0", 8, monitor_get_reg
},
1629 { "l1", 9, monitor_get_reg
},
1630 { "l2", 10, monitor_get_reg
},
1631 { "l3", 11, monitor_get_reg
},
1632 { "l4", 12, monitor_get_reg
},
1633 { "l5", 13, monitor_get_reg
},
1634 { "l6", 14, monitor_get_reg
},
1635 { "l7", 15, monitor_get_reg
},
1636 { "i0", 16, monitor_get_reg
},
1637 { "i1", 17, monitor_get_reg
},
1638 { "i2", 18, monitor_get_reg
},
1639 { "i3", 19, monitor_get_reg
},
1640 { "i4", 20, monitor_get_reg
},
1641 { "i5", 21, monitor_get_reg
},
1642 { "i6", 22, monitor_get_reg
},
1643 { "i7", 23, monitor_get_reg
},
1644 { "pc", offsetof(CPUState
, pc
) },
1645 { "npc", offsetof(CPUState
, npc
) },
1646 { "y", offsetof(CPUState
, y
) },
1647 #ifndef TARGET_SPARC64
1648 { "psr", 0, &monitor_get_psr
, },
1649 { "wim", offsetof(CPUState
, wim
) },
1651 { "tbr", offsetof(CPUState
, tbr
) },
1652 { "fsr", offsetof(CPUState
, fsr
) },
1653 { "f0", offsetof(CPUState
, fpr
[0]) },
1654 { "f1", offsetof(CPUState
, fpr
[1]) },
1655 { "f2", offsetof(CPUState
, fpr
[2]) },
1656 { "f3", offsetof(CPUState
, fpr
[3]) },
1657 { "f4", offsetof(CPUState
, fpr
[4]) },
1658 { "f5", offsetof(CPUState
, fpr
[5]) },
1659 { "f6", offsetof(CPUState
, fpr
[6]) },
1660 { "f7", offsetof(CPUState
, fpr
[7]) },
1661 { "f8", offsetof(CPUState
, fpr
[8]) },
1662 { "f9", offsetof(CPUState
, fpr
[9]) },
1663 { "f10", offsetof(CPUState
, fpr
[10]) },
1664 { "f11", offsetof(CPUState
, fpr
[11]) },
1665 { "f12", offsetof(CPUState
, fpr
[12]) },
1666 { "f13", offsetof(CPUState
, fpr
[13]) },
1667 { "f14", offsetof(CPUState
, fpr
[14]) },
1668 { "f15", offsetof(CPUState
, fpr
[15]) },
1669 { "f16", offsetof(CPUState
, fpr
[16]) },
1670 { "f17", offsetof(CPUState
, fpr
[17]) },
1671 { "f18", offsetof(CPUState
, fpr
[18]) },
1672 { "f19", offsetof(CPUState
, fpr
[19]) },
1673 { "f20", offsetof(CPUState
, fpr
[20]) },
1674 { "f21", offsetof(CPUState
, fpr
[21]) },
1675 { "f22", offsetof(CPUState
, fpr
[22]) },
1676 { "f23", offsetof(CPUState
, fpr
[23]) },
1677 { "f24", offsetof(CPUState
, fpr
[24]) },
1678 { "f25", offsetof(CPUState
, fpr
[25]) },
1679 { "f26", offsetof(CPUState
, fpr
[26]) },
1680 { "f27", offsetof(CPUState
, fpr
[27]) },
1681 { "f28", offsetof(CPUState
, fpr
[28]) },
1682 { "f29", offsetof(CPUState
, fpr
[29]) },
1683 { "f30", offsetof(CPUState
, fpr
[30]) },
1684 { "f31", offsetof(CPUState
, fpr
[31]) },
1685 #ifdef TARGET_SPARC64
1686 { "f32", offsetof(CPUState
, fpr
[32]) },
1687 { "f34", offsetof(CPUState
, fpr
[34]) },
1688 { "f36", offsetof(CPUState
, fpr
[36]) },
1689 { "f38", offsetof(CPUState
, fpr
[38]) },
1690 { "f40", offsetof(CPUState
, fpr
[40]) },
1691 { "f42", offsetof(CPUState
, fpr
[42]) },
1692 { "f44", offsetof(CPUState
, fpr
[44]) },
1693 { "f46", offsetof(CPUState
, fpr
[46]) },
1694 { "f48", offsetof(CPUState
, fpr
[48]) },
1695 { "f50", offsetof(CPUState
, fpr
[50]) },
1696 { "f52", offsetof(CPUState
, fpr
[52]) },
1697 { "f54", offsetof(CPUState
, fpr
[54]) },
1698 { "f56", offsetof(CPUState
, fpr
[56]) },
1699 { "f58", offsetof(CPUState
, fpr
[58]) },
1700 { "f60", offsetof(CPUState
, fpr
[60]) },
1701 { "f62", offsetof(CPUState
, fpr
[62]) },
1702 { "asi", offsetof(CPUState
, asi
) },
1703 { "pstate", offsetof(CPUState
, pstate
) },
1704 { "cansave", offsetof(CPUState
, cansave
) },
1705 { "canrestore", offsetof(CPUState
, canrestore
) },
1706 { "otherwin", offsetof(CPUState
, otherwin
) },
1707 { "wstate", offsetof(CPUState
, wstate
) },
1708 { "cleanwin", offsetof(CPUState
, cleanwin
) },
1709 { "fprs", offsetof(CPUState
, fprs
) },
1715 static void expr_error(const char *fmt
)
1719 longjmp(expr_env
, 1);
1722 /* return 0 if OK, -1 if not found, -2 if no CPU defined */
1723 static int get_monitor_def(target_long
*pval
, const char *name
)
1728 for(md
= monitor_defs
; md
->name
!= NULL
; md
++) {
1729 if (compare_cmd(name
, md
->name
)) {
1730 if (md
->get_value
) {
1731 *pval
= md
->get_value(md
, md
->offset
);
1733 CPUState
*env
= mon_get_cpu();
1736 ptr
= (uint8_t *)env
+ md
->offset
;
1739 *pval
= *(int32_t *)ptr
;
1742 *pval
= *(target_long
*)ptr
;
1755 static void next(void)
1759 while (isspace(*pch
))
1764 static int64_t expr_sum(void);
1766 static int64_t expr_unary(void)
1789 expr_error("')' expected");
1796 expr_error("character constant expected");
1800 expr_error("missing terminating \' character");
1810 while ((*pch
>= 'a' && *pch
<= 'z') ||
1811 (*pch
>= 'A' && *pch
<= 'Z') ||
1812 (*pch
>= '0' && *pch
<= '9') ||
1813 *pch
== '_' || *pch
== '.') {
1814 if ((q
- buf
) < sizeof(buf
) - 1)
1818 while (isspace(*pch
))
1821 ret
= get_monitor_def(®
, buf
);
1823 expr_error("unknown register");
1825 expr_error("no cpu defined");
1830 expr_error("unexpected end of expression");
1834 #if TARGET_PHYS_ADDR_BITS > 32
1835 n
= strtoull(pch
, &p
, 0);
1837 n
= strtoul(pch
, &p
, 0);
1840 expr_error("invalid char in expression");
1843 while (isspace(*pch
))
1851 static int64_t expr_prod(void)
1859 if (op
!= '*' && op
!= '/' && op
!= '%')
1862 val2
= expr_unary();
1871 expr_error("division by zero");
1882 static int64_t expr_logic(void)
1890 if (op
!= '&' && op
!= '|' && op
!= '^')
1910 static int64_t expr_sum(void)
1918 if (op
!= '+' && op
!= '-')
1921 val2
= expr_logic();
1930 static int get_expr(int64_t *pval
, const char **pp
)
1933 if (setjmp(expr_env
)) {
1937 while (isspace(*pch
))
1944 static int get_str(char *buf
, int buf_size
, const char **pp
)
1962 while (*p
!= '\0' && *p
!= '\"') {
1978 qemu_printf("unsupported escape code: '\\%c'\n", c
);
1981 if ((q
- buf
) < buf_size
- 1) {
1985 if ((q
- buf
) < buf_size
- 1) {
1992 qemu_printf("unterminated string\n");
1997 while (*p
!= '\0' && !isspace(*p
)) {
1998 if ((q
- buf
) < buf_size
- 1) {
2009 static int default_fmt_format
= 'x';
2010 static int default_fmt_size
= 4;
2014 static void monitor_handle_command(const char *cmdline
)
2016 const char *p
, *pstart
, *typestr
;
2018 int c
, nb_args
, len
, i
, has_arg
;
2022 void *str_allocated
[MAX_ARGS
];
2023 void *args
[MAX_ARGS
];
2026 term_printf("command='%s'\n", cmdline
);
2029 /* extract the command name */
2037 while (*p
!= '\0' && *p
!= '/' && !isspace(*p
))
2040 if (len
> sizeof(cmdname
) - 1)
2041 len
= sizeof(cmdname
) - 1;
2042 memcpy(cmdname
, pstart
, len
);
2043 cmdname
[len
] = '\0';
2045 /* find the command */
2046 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2047 if (compare_cmd(cmdname
, cmd
->name
))
2050 term_printf("unknown command: '%s'\n", cmdname
);
2054 for(i
= 0; i
< MAX_ARGS
; i
++)
2055 str_allocated
[i
] = NULL
;
2057 /* parse the parameters */
2058 typestr
= cmd
->args_type
;
2075 if (*typestr
== '?') {
2078 /* no optional string: NULL argument */
2083 ret
= get_str(buf
, sizeof(buf
), &p
);
2087 term_printf("%s: filename expected\n", cmdname
);
2090 term_printf("%s: block device name expected\n", cmdname
);
2093 term_printf("%s: string expected\n", cmdname
);
2098 str
= qemu_malloc(strlen(buf
) + 1);
2100 str_allocated
[nb_args
] = str
;
2102 if (nb_args
>= MAX_ARGS
) {
2104 term_printf("%s: too many arguments\n", cmdname
);
2107 args
[nb_args
++] = str
;
2112 int count
, format
, size
;
2122 while (isdigit(*p
)) {
2123 count
= count
* 10 + (*p
- '0');
2161 if (*p
!= '\0' && !isspace(*p
)) {
2162 term_printf("invalid char in format: '%c'\n", *p
);
2166 format
= default_fmt_format
;
2167 if (format
!= 'i') {
2168 /* for 'i', not specifying a size gives -1 as size */
2170 size
= default_fmt_size
;
2172 default_fmt_size
= size
;
2173 default_fmt_format
= format
;
2176 format
= default_fmt_format
;
2177 if (format
!= 'i') {
2178 size
= default_fmt_size
;
2183 if (nb_args
+ 3 > MAX_ARGS
)
2185 args
[nb_args
++] = (void*)(long)count
;
2186 args
[nb_args
++] = (void*)(long)format
;
2187 args
[nb_args
++] = (void*)(long)size
;
2197 if (*typestr
== '?' || *typestr
== '.') {
2198 if (*typestr
== '?') {
2214 if (nb_args
>= MAX_ARGS
)
2216 args
[nb_args
++] = (void *)(long)has_arg
;
2218 if (nb_args
>= MAX_ARGS
)
2224 if (get_expr(&val
, &p
))
2228 if (nb_args
>= MAX_ARGS
)
2230 args
[nb_args
++] = (void *)(long)val
;
2232 if ((nb_args
+ 1) >= MAX_ARGS
)
2234 #if TARGET_PHYS_ADDR_BITS > 32
2235 args
[nb_args
++] = (void *)(long)((val
>> 32) & 0xffffffff);
2237 args
[nb_args
++] = (void *)0;
2239 args
[nb_args
++] = (void *)(long)(val
& 0xffffffff);
2257 term_printf("%s: unsupported option -%c\n",
2264 if (nb_args
>= MAX_ARGS
)
2266 args
[nb_args
++] = (void *)(long)has_option
;
2271 term_printf("%s: unknown type '%c'\n", cmdname
, c
);
2275 /* check that all arguments were parsed */
2279 term_printf("%s: extraneous characters at the end of line\n",
2289 cmd
->handler(args
[0]);
2292 cmd
->handler(args
[0], args
[1]);
2295 cmd
->handler(args
[0], args
[1], args
[2]);
2298 cmd
->handler(args
[0], args
[1], args
[2], args
[3]);
2301 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4]);
2304 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5]);
2307 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5], args
[6]);
2310 term_printf("unsupported number of arguments: %d\n", nb_args
);
2314 for(i
= 0; i
< MAX_ARGS
; i
++)
2315 qemu_free(str_allocated
[i
]);
2319 static void cmd_completion(const char *name
, const char *list
)
2321 const char *p
, *pstart
;
2330 p
= pstart
+ strlen(pstart
);
2332 if (len
> sizeof(cmd
) - 2)
2333 len
= sizeof(cmd
) - 2;
2334 memcpy(cmd
, pstart
, len
);
2336 if (name
[0] == '\0' || !strncmp(name
, cmd
, strlen(name
))) {
2337 add_completion(cmd
);
2345 static void file_completion(const char *input
)
2350 char file
[1024], file_prefix
[1024];
2354 p
= strrchr(input
, '/');
2357 pstrcpy(file_prefix
, sizeof(file_prefix
), input
);
2360 input_path_len
= p
- input
+ 1;
2361 memcpy(path
, input
, input_path_len
);
2362 if (input_path_len
> sizeof(path
) - 1)
2363 input_path_len
= sizeof(path
) - 1;
2364 path
[input_path_len
] = '\0';
2365 pstrcpy(file_prefix
, sizeof(file_prefix
), p
+ 1);
2367 #ifdef DEBUG_COMPLETION
2368 term_printf("input='%s' path='%s' prefix='%s'\n", input
, path
, file_prefix
);
2370 ffs
= opendir(path
);
2378 if (strstart(d
->d_name
, file_prefix
, NULL
)) {
2379 memcpy(file
, input
, input_path_len
);
2380 strcpy(file
+ input_path_len
, d
->d_name
);
2381 /* stat the file to find out if it's a directory.
2382 * In that case add a slash to speed up typing long paths
2385 if(S_ISDIR(sb
.st_mode
))
2387 add_completion(file
);
2393 static void block_completion_it(void *opaque
, const char *name
)
2395 const char *input
= opaque
;
2397 if (input
[0] == '\0' ||
2398 !strncmp(name
, (char *)input
, strlen(input
))) {
2399 add_completion(name
);
2403 /* NOTE: this parser is an approximate form of the real command parser */
2404 static void parse_cmdline(const char *cmdline
,
2405 int *pnb_args
, char **args
)
2418 if (nb_args
>= MAX_ARGS
)
2420 ret
= get_str(buf
, sizeof(buf
), &p
);
2421 args
[nb_args
] = qemu_strdup(buf
);
2426 *pnb_args
= nb_args
;
2429 void readline_find_completion(const char *cmdline
)
2431 const char *cmdname
;
2432 char *args
[MAX_ARGS
];
2433 int nb_args
, i
, len
;
2434 const char *ptype
, *str
;
2438 parse_cmdline(cmdline
, &nb_args
, args
);
2439 #ifdef DEBUG_COMPLETION
2440 for(i
= 0; i
< nb_args
; i
++) {
2441 term_printf("arg%d = '%s'\n", i
, (char *)args
[i
]);
2445 /* if the line ends with a space, it means we want to complete the
2447 len
= strlen(cmdline
);
2448 if (len
> 0 && isspace(cmdline
[len
- 1])) {
2449 if (nb_args
>= MAX_ARGS
)
2451 args
[nb_args
++] = qemu_strdup("");
2454 /* command completion */
2459 completion_index
= strlen(cmdname
);
2460 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2461 cmd_completion(cmdname
, cmd
->name
);
2464 /* find the command */
2465 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2466 if (compare_cmd(args
[0], cmd
->name
))
2471 ptype
= cmd
->args_type
;
2472 for(i
= 0; i
< nb_args
- 2; i
++) {
2473 if (*ptype
!= '\0') {
2475 while (*ptype
== '?')
2479 str
= args
[nb_args
- 1];
2482 /* file completion */
2483 completion_index
= strlen(str
);
2484 file_completion(str
);
2487 /* block device name completion */
2488 completion_index
= strlen(str
);
2489 bdrv_iterate(block_completion_it
, (void *)str
);
2492 /* XXX: more generic ? */
2493 if (!strcmp(cmd
->name
, "info")) {
2494 completion_index
= strlen(str
);
2495 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
2496 cmd_completion(str
, cmd
->name
);
2498 } else if (!strcmp(cmd
->name
, "sendkey")) {
2499 completion_index
= strlen(str
);
2500 for(key
= key_defs
; key
->name
!= NULL
; key
++) {
2501 cmd_completion(str
, key
->name
);
2509 for(i
= 0; i
< nb_args
; i
++)
2513 static int term_can_read(void *opaque
)
2518 static void term_read(void *opaque
, const uint8_t *buf
, int size
)
2521 for(i
= 0; i
< size
; i
++)
2522 readline_handle_byte(buf
[i
]);
2525 static void monitor_start_input(void);
2527 static void monitor_handle_command1(void *opaque
, const char *cmdline
)
2529 monitor_handle_command(cmdline
);
2530 monitor_start_input();
2533 static void monitor_start_input(void)
2535 readline_start("(qemu) ", 0, monitor_handle_command1
, NULL
);
2538 static void term_event(void *opaque
, int event
)
2540 if (event
!= CHR_EVENT_RESET
)
2544 term_printf("QEMU %s monitor - type 'help' for more information\n",
2546 monitor_start_input();
2549 static int is_first_init
= 1;
2551 void monitor_init(CharDriverState
*hd
, int show_banner
)
2555 if (is_first_init
) {
2556 for (i
= 0; i
< MAX_MON
; i
++) {
2557 monitor_hd
[i
] = NULL
;
2561 for (i
= 0; i
< MAX_MON
; i
++) {
2562 if (monitor_hd
[i
] == NULL
) {
2568 hide_banner
= !show_banner
;
2570 qemu_chr_add_handlers(hd
, term_can_read
, term_read
, term_event
, NULL
);
2573 /* XXX: use threads ? */
2574 /* modal monitor readline */
2575 static int monitor_readline_started
;
2576 static char *monitor_readline_buf
;
2577 static int monitor_readline_buf_size
;
2579 static void monitor_readline_cb(void *opaque
, const char *input
)
2581 pstrcpy(monitor_readline_buf
, monitor_readline_buf_size
, input
);
2582 monitor_readline_started
= 0;
2585 void monitor_readline(const char *prompt
, int is_password
,
2586 char *buf
, int buf_size
)
2591 for (i
= 0; i
< MAX_MON
; i
++)
2592 if (monitor_hd
[i
] && monitor_hd
[i
]->focus
== 0)
2593 qemu_chr_send_event(monitor_hd
[i
], CHR_EVENT_FOCUS
);
2595 readline_start(prompt
, is_password
, monitor_readline_cb
, NULL
);
2596 monitor_readline_buf
= buf
;
2597 monitor_readline_buf_size
= buf_size
;
2598 monitor_readline_started
= 1;
2599 while (monitor_readline_started
) {