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
26 #include "hw/pcmcia.h"
31 #include "qemu-char.h"
35 #include "audio/audio.h"
39 #ifdef CONFIG_PROFILER
40 #include "qemu-timer.h" /* for ticks_per_sec */
44 //#define DEBUG_COMPLETION
47 #define offsetof(type, field) ((size_t) &((type *)0)->field)
54 * 'B' block device name
55 * 's' string (accept optional quote)
57 * 'l' target long (32 or 64 bit)
58 * '/' optional gdb-like print format (like "/10x")
60 * '?' optional type (for 'F', 's' and 'i')
64 typedef struct term_cmd_t
{
66 const char *args_type
;
73 static CharDriverState
*monitor_hd
[MAX_MON
];
74 static int hide_banner
;
76 static term_cmd_t term_cmds
[];
77 static term_cmd_t info_cmds
[];
79 static uint8_t term_outbuf
[1024];
80 static int term_outbuf_index
;
82 static void monitor_start_input(void);
84 CPUState
*mon_cpu
= NULL
;
89 if (term_outbuf_index
> 0) {
90 for (i
= 0; i
< MAX_MON
; i
++)
91 if (monitor_hd
[i
] && monitor_hd
[i
]->focus
== 0)
92 qemu_chr_write(monitor_hd
[i
], term_outbuf
, term_outbuf_index
);
93 term_outbuf_index
= 0;
97 /* flush at every end of line or if the buffer is full */
98 void term_puts(const char *str
)
106 term_outbuf
[term_outbuf_index
++] = '\r';
107 term_outbuf
[term_outbuf_index
++] = c
;
108 if (term_outbuf_index
>= (sizeof(term_outbuf
) - 1) ||
114 void term_vprintf(const char *fmt
, va_list ap
)
117 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
121 void term_printf(const char *fmt
, ...)
125 term_vprintf(fmt
, ap
);
129 void term_print_filename(const char *filename
)
133 for (i
= 0; filename
[i
]; i
++) {
134 switch (filename
[i
]) {
138 term_printf("\\%c", filename
[i
]);
150 term_printf("%c", filename
[i
]);
156 static int monitor_fprintf(FILE *stream
, const char *fmt
, ...)
160 term_vprintf(fmt
, ap
);
165 static int compare_cmd(const char *name
, const char *list
)
167 const char *p
, *pstart
;
175 p
= pstart
+ strlen(pstart
);
176 if ((p
- pstart
) == len
&& !memcmp(pstart
, name
, len
))
185 static void help_cmd1(term_cmd_t
*cmds
, const char *prefix
, const char *name
)
189 for(cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
190 if (!name
|| !strcmp(name
, cmd
->name
))
191 term_printf("%s%s %s -- %s\n", prefix
, cmd
->name
, cmd
->params
, cmd
->help
);
195 static void help_cmd(const char *name
)
197 if (name
&& !strcmp(name
, "info")) {
198 help_cmd1(info_cmds
, "info ", NULL
);
200 help_cmd1(term_cmds
, "", name
);
201 if (name
&& !strcmp(name
, "log")) {
203 term_printf("Log items (comma separated):\n");
204 term_printf("%-10s %s\n", "none", "remove all logs");
205 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
206 term_printf("%-10s %s\n", item
->name
, item
->help
);
212 static void do_help(const char *name
)
217 static void do_commit(const char *device
)
221 all_devices
= !strcmp(device
, "all");
222 for (i
= 0; i
< nb_drives
; i
++) {
224 !strcmp(bdrv_get_device_name(drives_table
[i
].bdrv
), device
))
225 bdrv_commit(drives_table
[i
].bdrv
);
229 static void do_info(const char *item
)
235 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
236 if (compare_cmd(item
, cmd
->name
))
246 static void do_info_version(void)
248 term_printf("%s\n", QEMU_VERSION
);
251 static void do_info_name(void)
254 term_printf("%s\n", qemu_name
);
257 static void do_info_block(void)
262 static void do_info_blockstats(void)
267 /* get the current CPU defined by the user */
268 static int mon_set_cpu(int cpu_index
)
272 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
273 if (env
->cpu_index
== cpu_index
) {
281 static CPUState
*mon_get_cpu(void)
289 static void do_info_registers(void)
296 cpu_dump_state(env
, NULL
, monitor_fprintf
,
299 cpu_dump_state(env
, NULL
, monitor_fprintf
,
304 static void do_info_cpus(void)
308 /* just to set the default cpu if not already done */
311 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
312 term_printf("%c CPU #%d:",
313 (env
== mon_cpu
) ? '*' : ' ',
315 #if defined(TARGET_I386)
316 term_printf(" pc=0x" TARGET_FMT_lx
, env
->eip
+ env
->segs
[R_CS
].base
);
317 #elif defined(TARGET_PPC)
318 term_printf(" nip=0x" TARGET_FMT_lx
, env
->nip
);
319 #elif defined(TARGET_SPARC)
320 term_printf(" pc=0x" TARGET_FMT_lx
" npc=0x" TARGET_FMT_lx
, env
->pc
, env
->npc
);
321 #elif defined(TARGET_MIPS)
322 term_printf(" PC=0x" TARGET_FMT_lx
, env
->PC
[env
->current_tc
]);
325 term_printf(" (halted)");
330 static void do_cpu_set(int index
)
332 if (mon_set_cpu(index
) < 0)
333 term_printf("Invalid CPU index\n");
336 static void do_info_jit(void)
338 dump_exec_info(NULL
, monitor_fprintf
);
341 static void do_info_history (void)
348 str
= readline_get_history(i
);
351 term_printf("%d: '%s'\n", i
, str
);
356 #if defined(TARGET_PPC)
357 /* XXX: not implemented in other targets */
358 static void do_info_cpu_stats (void)
363 cpu_dump_statistics(env
, NULL
, &monitor_fprintf
, 0);
367 static void do_quit(void)
372 static int eject_device(BlockDriverState
*bs
, int force
)
374 if (bdrv_is_inserted(bs
)) {
376 if (!bdrv_is_removable(bs
)) {
377 term_printf("device is not removable\n");
380 if (bdrv_is_locked(bs
)) {
381 term_printf("device is locked\n");
390 static void do_eject(int force
, const char *filename
)
392 BlockDriverState
*bs
;
394 bs
= bdrv_find(filename
);
396 term_printf("device not found\n");
399 eject_device(bs
, force
);
402 static void do_change_block(const char *device
, const char *filename
)
404 BlockDriverState
*bs
;
406 bs
= bdrv_find(device
);
408 term_printf("device not found\n");
411 if (eject_device(bs
, 0) < 0)
413 bdrv_open(bs
, filename
, 0);
414 qemu_key_check(bs
, filename
);
417 static void do_change_vnc(const char *target
)
419 if (strcmp(target
, "passwd") == 0 ||
420 strcmp(target
, "password") == 0) {
422 monitor_readline("Password: ", 1, password
, sizeof(password
)-1);
423 password
[sizeof(password
)-1] = '\0';
424 if (vnc_display_password(NULL
, password
) < 0)
425 term_printf("could not set VNC server password\n");
427 if (vnc_display_open(NULL
, target
) < 0)
428 term_printf("could not start VNC server on %s\n", target
);
432 static void do_change(const char *device
, const char *target
)
434 if (strcmp(device
, "vnc") == 0) {
435 do_change_vnc(target
);
437 do_change_block(device
, target
);
441 static void do_screen_dump(const char *filename
)
443 vga_hw_screen_dump(filename
);
446 static void do_logfile(const char *filename
)
448 cpu_set_log_filename(filename
);
451 static void do_log(const char *items
)
455 if (!strcmp(items
, "none")) {
458 mask
= cpu_str_to_log_mask(items
);
467 static void do_stop(void)
469 vm_stop(EXCP_INTERRUPT
);
472 static void do_cont(void)
477 #ifdef CONFIG_GDBSTUB
478 static void do_gdbserver(const char *port
)
481 port
= DEFAULT_GDBSTUB_PORT
;
482 if (gdbserver_start(port
) < 0) {
483 qemu_printf("Could not open gdbserver socket on port '%s'\n", port
);
485 qemu_printf("Waiting gdb connection on port '%s'\n", port
);
490 static void term_printc(int c
)
507 if (c
>= 32 && c
<= 126) {
508 term_printf("%c", c
);
510 term_printf("\\x%02x", c
);
517 static void memory_dump(int count
, int format
, int wsize
,
518 target_phys_addr_t addr
, int is_physical
)
521 int nb_per_line
, l
, line_size
, i
, max_digits
, len
;
529 if (!env
&& !is_physical
)
534 } else if (wsize
== 4) {
537 /* as default we use the current CS size */
541 if ((env
->efer
& MSR_EFER_LMA
) &&
542 (env
->segs
[R_CS
].flags
& DESC_L_MASK
))
546 if (!(env
->segs
[R_CS
].flags
& DESC_B_MASK
))
551 monitor_disas(env
, addr
, count
, is_physical
, flags
);
560 nb_per_line
= line_size
/ wsize
;
565 max_digits
= (wsize
* 8 + 2) / 3;
569 max_digits
= (wsize
* 8) / 4;
573 max_digits
= (wsize
* 8 * 10 + 32) / 33;
582 term_printf(TARGET_FMT_plx
":", addr
);
584 term_printf(TARGET_FMT_lx
":", (target_ulong
)addr
);
589 cpu_physical_memory_rw(addr
, buf
, l
, 0);
594 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
601 v
= ldub_raw(buf
+ i
);
604 v
= lduw_raw(buf
+ i
);
607 v
= (uint32_t)ldl_raw(buf
+ i
);
610 v
= ldq_raw(buf
+ i
);
616 term_printf("%#*" PRIo64
, max_digits
, v
);
619 term_printf("0x%0*" PRIx64
, max_digits
, v
);
622 term_printf("%*" PRIu64
, max_digits
, v
);
625 term_printf("%*" PRId64
, max_digits
, v
);
639 #if TARGET_LONG_BITS == 64
640 #define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
642 #define GET_TLONG(h, l) (l)
645 static void do_memory_dump(int count
, int format
, int size
,
646 uint32_t addrh
, uint32_t addrl
)
648 target_long addr
= GET_TLONG(addrh
, addrl
);
649 memory_dump(count
, format
, size
, addr
, 0);
652 #if TARGET_PHYS_ADDR_BITS > 32
653 #define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
655 #define GET_TPHYSADDR(h, l) (l)
658 static void do_physical_memory_dump(int count
, int format
, int size
,
659 uint32_t addrh
, uint32_t addrl
)
662 target_phys_addr_t addr
= GET_TPHYSADDR(addrh
, addrl
);
663 memory_dump(count
, format
, size
, addr
, 1);
666 static void do_print(int count
, int format
, int size
, unsigned int valh
, unsigned int vall
)
668 target_phys_addr_t val
= GET_TPHYSADDR(valh
, vall
);
669 #if TARGET_PHYS_ADDR_BITS == 32
672 term_printf("%#o", val
);
675 term_printf("%#x", val
);
678 term_printf("%u", val
);
682 term_printf("%d", val
);
691 term_printf("%#" PRIo64
, val
);
694 term_printf("%#" PRIx64
, val
);
697 term_printf("%" PRIu64
, val
);
701 term_printf("%" PRId64
, val
);
711 static void do_memory_save(unsigned int valh
, unsigned int vall
,
712 uint32_t size
, const char *filename
)
715 target_long addr
= GET_TLONG(valh
, vall
);
724 f
= fopen(filename
, "wb");
726 term_printf("could not open '%s'\n", filename
);
733 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
734 fwrite(buf
, 1, l
, f
);
741 static void do_physical_memory_save(unsigned int valh
, unsigned int vall
,
742 uint32_t size
, const char *filename
)
747 target_phys_addr_t addr
= GET_TPHYSADDR(valh
, vall
);
749 f
= fopen(filename
, "wb");
751 term_printf("could not open '%s'\n", filename
);
758 cpu_physical_memory_rw(addr
, buf
, l
, 0);
759 fwrite(buf
, 1, l
, f
);
767 static void do_sum(uint32_t start
, uint32_t size
)
774 for(addr
= start
; addr
< (start
+ size
); addr
++) {
775 cpu_physical_memory_rw(addr
, buf
, 1, 0);
776 /* BSD sum algorithm ('sum' Unix command) */
777 sum
= (sum
>> 1) | (sum
<< 15);
780 term_printf("%05d\n", sum
);
788 static const KeyDef key_defs
[] = {
813 { 0x0e, "backspace" },
847 { 0x37, "asterisk" },
850 { 0x3a, "caps_lock" },
861 { 0x45, "num_lock" },
862 { 0x46, "scroll_lock" },
864 { 0xb5, "kp_divide" },
865 { 0x37, "kp_multiply" },
866 { 0x4a, "kp_subtract" },
868 { 0x9c, "kp_enter" },
869 { 0x53, "kp_decimal" },
904 static int get_keycode(const char *key
)
910 for(p
= key_defs
; p
->name
!= NULL
; p
++) {
911 if (!strcmp(key
, p
->name
))
914 if (strstart(key
, "0x", NULL
)) {
915 ret
= strtoul(key
, &endp
, 0);
916 if (*endp
== '\0' && ret
>= 0x01 && ret
<= 0xff)
922 static void do_send_key(const char *string
)
925 uint8_t keycodes
[16];
927 int nb_keycodes
, keycode
, i
;
933 while (*p
!= '\0' && *p
!= '-') {
934 if ((q
- keybuf
) < sizeof(keybuf
) - 1) {
940 keycode
= get_keycode(keybuf
);
942 term_printf("unknown key: '%s'\n", keybuf
);
945 keycodes
[nb_keycodes
++] = keycode
;
950 /* key down events */
951 for(i
= 0; i
< nb_keycodes
; i
++) {
952 keycode
= keycodes
[i
];
954 kbd_put_keycode(0xe0);
955 kbd_put_keycode(keycode
& 0x7f);
958 for(i
= nb_keycodes
- 1; i
>= 0; i
--) {
959 keycode
= keycodes
[i
];
961 kbd_put_keycode(0xe0);
962 kbd_put_keycode(keycode
| 0x80);
966 static int mouse_button_state
;
968 static void do_mouse_move(const char *dx_str
, const char *dy_str
,
972 dx
= strtol(dx_str
, NULL
, 0);
973 dy
= strtol(dy_str
, NULL
, 0);
976 dz
= strtol(dz_str
, NULL
, 0);
977 kbd_mouse_event(dx
, dy
, dz
, mouse_button_state
);
980 static void do_mouse_button(int button_state
)
982 mouse_button_state
= button_state
;
983 kbd_mouse_event(0, 0, 0, mouse_button_state
);
986 static void do_ioport_read(int count
, int format
, int size
, int addr
, int has_index
, int index
)
992 cpu_outb(NULL
, addr
& 0xffff, index
& 0xff);
1000 val
= cpu_inb(NULL
, addr
);
1004 val
= cpu_inw(NULL
, addr
);
1008 val
= cpu_inl(NULL
, addr
);
1012 term_printf("port%c[0x%04x] = %#0*x\n",
1013 suffix
, addr
, size
* 2, val
);
1016 static void do_boot_set(const char *bootdevice
)
1020 if (qemu_boot_set_handler
) {
1021 res
= qemu_boot_set_handler(bootdevice
);
1023 term_printf("boot device list now set to %s\n", bootdevice
);
1025 term_printf("setting boot device list failed with error %i\n", res
);
1027 term_printf("no function defined to set boot device list for this architecture\n");
1031 static void do_system_reset(void)
1033 qemu_system_reset_request();
1036 static void do_system_powerdown(void)
1038 qemu_system_powerdown_request();
1041 #if defined(TARGET_I386)
1042 static void print_pte(uint32_t addr
, uint32_t pte
, uint32_t mask
)
1044 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
1047 pte
& PG_GLOBAL_MASK
? 'G' : '-',
1048 pte
& PG_PSE_MASK
? 'P' : '-',
1049 pte
& PG_DIRTY_MASK
? 'D' : '-',
1050 pte
& PG_ACCESSED_MASK
? 'A' : '-',
1051 pte
& PG_PCD_MASK
? 'C' : '-',
1052 pte
& PG_PWT_MASK
? 'T' : '-',
1053 pte
& PG_USER_MASK
? 'U' : '-',
1054 pte
& PG_RW_MASK
? 'W' : '-');
1057 static void tlb_info(void)
1061 uint32_t pgd
, pde
, pte
;
1063 env
= mon_get_cpu();
1067 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1068 term_printf("PG disabled\n");
1071 pgd
= env
->cr
[3] & ~0xfff;
1072 for(l1
= 0; l1
< 1024; l1
++) {
1073 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1074 pde
= le32_to_cpu(pde
);
1075 if (pde
& PG_PRESENT_MASK
) {
1076 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1077 print_pte((l1
<< 22), pde
, ~((1 << 20) - 1));
1079 for(l2
= 0; l2
< 1024; l2
++) {
1080 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1081 (uint8_t *)&pte
, 4);
1082 pte
= le32_to_cpu(pte
);
1083 if (pte
& PG_PRESENT_MASK
) {
1084 print_pte((l1
<< 22) + (l2
<< 12),
1094 static void mem_print(uint32_t *pstart
, int *plast_prot
,
1095 uint32_t end
, int prot
)
1098 prot1
= *plast_prot
;
1099 if (prot
!= prot1
) {
1100 if (*pstart
!= -1) {
1101 term_printf("%08x-%08x %08x %c%c%c\n",
1102 *pstart
, end
, end
- *pstart
,
1103 prot1
& PG_USER_MASK
? 'u' : '-',
1105 prot1
& PG_RW_MASK
? 'w' : '-');
1115 static void mem_info(void)
1118 int l1
, l2
, prot
, last_prot
;
1119 uint32_t pgd
, pde
, pte
, start
, end
;
1121 env
= mon_get_cpu();
1125 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1126 term_printf("PG disabled\n");
1129 pgd
= env
->cr
[3] & ~0xfff;
1132 for(l1
= 0; l1
< 1024; l1
++) {
1133 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1134 pde
= le32_to_cpu(pde
);
1136 if (pde
& PG_PRESENT_MASK
) {
1137 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1138 prot
= pde
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1139 mem_print(&start
, &last_prot
, end
, prot
);
1141 for(l2
= 0; l2
< 1024; l2
++) {
1142 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1143 (uint8_t *)&pte
, 4);
1144 pte
= le32_to_cpu(pte
);
1145 end
= (l1
<< 22) + (l2
<< 12);
1146 if (pte
& PG_PRESENT_MASK
) {
1147 prot
= pte
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1151 mem_print(&start
, &last_prot
, end
, prot
);
1156 mem_print(&start
, &last_prot
, end
, prot
);
1162 static void do_info_kqemu(void)
1168 env
= mon_get_cpu();
1170 term_printf("No cpu initialized yet");
1173 val
= env
->kqemu_enabled
;
1174 term_printf("kqemu support: ");
1178 term_printf("disabled\n");
1181 term_printf("enabled for user code\n");
1184 term_printf("enabled for user and kernel code\n");
1188 term_printf("kqemu support: not compiled\n");
1192 #ifdef CONFIG_PROFILER
1196 int64_t kqemu_exec_count
;
1198 int64_t kqemu_ret_int_count
;
1199 int64_t kqemu_ret_excp_count
;
1200 int64_t kqemu_ret_intr_count
;
1202 static void do_info_profile(void)
1208 term_printf("async time %" PRId64
" (%0.3f)\n",
1209 dev_time
, dev_time
/ (double)ticks_per_sec
);
1210 term_printf("qemu time %" PRId64
" (%0.3f)\n",
1211 qemu_time
, qemu_time
/ (double)ticks_per_sec
);
1212 term_printf("kqemu time %" PRId64
" (%0.3f %0.1f%%) count=%" PRId64
" int=%" PRId64
" excp=%" PRId64
" intr=%" PRId64
"\n",
1213 kqemu_time
, kqemu_time
/ (double)ticks_per_sec
,
1214 kqemu_time
/ (double)total
* 100.0,
1216 kqemu_ret_int_count
,
1217 kqemu_ret_excp_count
,
1218 kqemu_ret_intr_count
);
1221 kqemu_exec_count
= 0;
1223 kqemu_ret_int_count
= 0;
1224 kqemu_ret_excp_count
= 0;
1225 kqemu_ret_intr_count
= 0;
1227 kqemu_record_dump();
1231 static void do_info_profile(void)
1233 term_printf("Internal profiler not compiled\n");
1237 /* Capture support */
1238 static LIST_HEAD (capture_list_head
, CaptureState
) capture_head
;
1240 static void do_info_capture (void)
1245 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1246 term_printf ("[%d]: ", i
);
1247 s
->ops
.info (s
->opaque
);
1251 static void do_stop_capture (int n
)
1256 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1258 s
->ops
.destroy (s
->opaque
);
1259 LIST_REMOVE (s
, entries
);
1267 int wav_start_capture (CaptureState
*s
, const char *path
, int freq
,
1268 int bits
, int nchannels
);
1270 static void do_wav_capture (const char *path
,
1271 int has_freq
, int freq
,
1272 int has_bits
, int bits
,
1273 int has_channels
, int nchannels
)
1277 s
= qemu_mallocz (sizeof (*s
));
1279 term_printf ("Not enough memory to add wave capture\n");
1283 freq
= has_freq
? freq
: 44100;
1284 bits
= has_bits
? bits
: 16;
1285 nchannels
= has_channels
? nchannels
: 2;
1287 if (wav_start_capture (s
, path
, freq
, bits
, nchannels
)) {
1288 term_printf ("Faied to add wave capture\n");
1291 LIST_INSERT_HEAD (&capture_head
, s
, entries
);
1295 #if defined(TARGET_I386)
1296 static void do_inject_nmi(int cpu_index
)
1300 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
1301 if (env
->cpu_index
== cpu_index
) {
1302 cpu_interrupt(env
, CPU_INTERRUPT_NMI
);
1308 static term_cmd_t term_cmds
[] = {
1309 { "help|?", "s?", do_help
,
1310 "[cmd]", "show the help" },
1311 { "commit", "s", do_commit
,
1312 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
1313 { "info", "s?", do_info
,
1314 "subcommand", "show various information about the system state" },
1315 { "q|quit", "", do_quit
,
1316 "", "quit the emulator" },
1317 { "eject", "-fB", do_eject
,
1318 "[-f] device", "eject a removable medium (use -f to force it)" },
1319 { "change", "BF", do_change
,
1320 "device filename", "change a removable medium" },
1321 { "screendump", "F", do_screen_dump
,
1322 "filename", "save screen into PPM image 'filename'" },
1323 { "logfile", "F", do_logfile
,
1324 "filename", "output logs to 'filename'" },
1325 { "log", "s", do_log
,
1326 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
1327 { "savevm", "s?", do_savevm
,
1328 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
1329 { "loadvm", "s", do_loadvm
,
1330 "tag|id", "restore a VM snapshot from its tag or id" },
1331 { "delvm", "s", do_delvm
,
1332 "tag|id", "delete a VM snapshot from its tag or id" },
1333 { "stop", "", do_stop
,
1334 "", "stop emulation", },
1335 { "c|cont", "", do_cont
,
1336 "", "resume emulation", },
1337 #ifdef CONFIG_GDBSTUB
1338 { "gdbserver", "s?", do_gdbserver
,
1339 "[port]", "start gdbserver session (default port=1234)", },
1341 { "x", "/l", do_memory_dump
,
1342 "/fmt addr", "virtual memory dump starting at 'addr'", },
1343 { "xp", "/l", do_physical_memory_dump
,
1344 "/fmt addr", "physical memory dump starting at 'addr'", },
1345 { "p|print", "/l", do_print
,
1346 "/fmt expr", "print expression value (use $reg for CPU register access)", },
1347 { "i", "/ii.", do_ioport_read
,
1348 "/fmt addr", "I/O port read" },
1350 { "sendkey", "s", do_send_key
,
1351 "keys", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1')" },
1352 { "system_reset", "", do_system_reset
,
1353 "", "reset the system" },
1354 { "system_powerdown", "", do_system_powerdown
,
1355 "", "send system power down event" },
1356 { "sum", "ii", do_sum
,
1357 "addr size", "compute the checksum of a memory region" },
1358 { "usb_add", "s", do_usb_add
,
1359 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1360 { "usb_del", "s", do_usb_del
,
1361 "device", "remove USB device 'bus.addr'" },
1362 { "cpu", "i", do_cpu_set
,
1363 "index", "set the default CPU" },
1364 { "mouse_move", "sss?", do_mouse_move
,
1365 "dx dy [dz]", "send mouse move events" },
1366 { "mouse_button", "i", do_mouse_button
,
1367 "state", "change mouse button state (1=L, 2=M, 4=R)" },
1368 { "mouse_set", "i", do_mouse_set
,
1369 "index", "set which mouse device receives events" },
1371 { "wavcapture", "si?i?i?", do_wav_capture
,
1372 "path [frequency bits channels]",
1373 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1375 { "stopcapture", "i", do_stop_capture
,
1376 "capture index", "stop capture" },
1377 { "memsave", "lis", do_memory_save
,
1378 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
1379 { "pmemsave", "lis", do_physical_memory_save
,
1380 "addr size file", "save to disk physical memory dump starting at 'addr' of size 'size'", },
1381 { "boot_set", "s", do_boot_set
,
1382 "bootdevice", "define new values for the boot device list" },
1383 #if defined(TARGET_I386)
1384 { "nmi", "i", do_inject_nmi
,
1385 "cpu", "inject an NMI on the given CPU", },
1390 static term_cmd_t info_cmds
[] = {
1391 { "version", "", do_info_version
,
1392 "", "show the version of qemu" },
1393 { "network", "", do_info_network
,
1394 "", "show the network state" },
1395 { "block", "", do_info_block
,
1396 "", "show the block devices" },
1397 { "blockstats", "", do_info_blockstats
,
1398 "", "show block device statistics" },
1399 { "registers", "", do_info_registers
,
1400 "", "show the cpu registers" },
1401 { "cpus", "", do_info_cpus
,
1402 "", "show infos for each CPU" },
1403 { "history", "", do_info_history
,
1404 "", "show the command line history", },
1405 { "irq", "", irq_info
,
1406 "", "show the interrupts statistics (if available)", },
1407 { "pic", "", pic_info
,
1408 "", "show i8259 (PIC) state", },
1409 { "pci", "", pci_info
,
1410 "", "show PCI info", },
1411 #if defined(TARGET_I386)
1412 { "tlb", "", tlb_info
,
1413 "", "show virtual to physical memory mappings", },
1414 { "mem", "", mem_info
,
1415 "", "show the active virtual memory mappings", },
1417 { "jit", "", do_info_jit
,
1418 "", "show dynamic compiler info", },
1419 { "kqemu", "", do_info_kqemu
,
1420 "", "show kqemu information", },
1421 { "usb", "", usb_info
,
1422 "", "show guest USB devices", },
1423 { "usbhost", "", usb_host_info
,
1424 "", "show host USB devices", },
1425 { "profile", "", do_info_profile
,
1426 "", "show profiling information", },
1427 { "capture", "", do_info_capture
,
1428 "", "show capture information" },
1429 { "snapshots", "", do_info_snapshots
,
1430 "", "show the currently saved VM snapshots" },
1431 { "pcmcia", "", pcmcia_info
,
1432 "", "show guest PCMCIA status" },
1433 { "mice", "", do_info_mice
,
1434 "", "show which guest mouse is receiving events" },
1435 { "vnc", "", do_info_vnc
,
1436 "", "show the vnc server status"},
1437 { "name", "", do_info_name
,
1438 "", "show the current VM name" },
1439 #if defined(TARGET_PPC)
1440 { "cpustats", "", do_info_cpu_stats
,
1441 "", "show CPU statistics", },
1443 #if defined(CONFIG_SLIRP)
1444 { "slirp", "", do_info_slirp
,
1445 "", "show SLIRP statistics", },
1450 /*******************************************************************/
1452 static const char *pch
;
1453 static jmp_buf expr_env
;
1458 typedef struct MonitorDef
{
1461 target_long (*get_value
)(struct MonitorDef
*md
, int val
);
1465 #if defined(TARGET_I386)
1466 static target_long
monitor_get_pc (struct MonitorDef
*md
, int val
)
1468 CPUState
*env
= mon_get_cpu();
1471 return env
->eip
+ env
->segs
[R_CS
].base
;
1475 #if defined(TARGET_PPC)
1476 static target_long
monitor_get_ccr (struct MonitorDef
*md
, int val
)
1478 CPUState
*env
= mon_get_cpu();
1486 for (i
= 0; i
< 8; i
++)
1487 u
|= env
->crf
[i
] << (32 - (4 * i
));
1492 static target_long
monitor_get_msr (struct MonitorDef
*md
, int val
)
1494 CPUState
*env
= mon_get_cpu();
1500 static target_long
monitor_get_xer (struct MonitorDef
*md
, int val
)
1502 CPUState
*env
= mon_get_cpu();
1505 return ppc_load_xer(env
);
1508 static target_long
monitor_get_decr (struct MonitorDef
*md
, int val
)
1510 CPUState
*env
= mon_get_cpu();
1513 return cpu_ppc_load_decr(env
);
1516 static target_long
monitor_get_tbu (struct MonitorDef
*md
, int val
)
1518 CPUState
*env
= mon_get_cpu();
1521 return cpu_ppc_load_tbu(env
);
1524 static target_long
monitor_get_tbl (struct MonitorDef
*md
, int val
)
1526 CPUState
*env
= mon_get_cpu();
1529 return cpu_ppc_load_tbl(env
);
1533 #if defined(TARGET_SPARC)
1534 #ifndef TARGET_SPARC64
1535 static target_long
monitor_get_psr (struct MonitorDef
*md
, int val
)
1537 CPUState
*env
= mon_get_cpu();
1540 return GET_PSR(env
);
1544 static target_long
monitor_get_reg(struct MonitorDef
*md
, int val
)
1546 CPUState
*env
= mon_get_cpu();
1549 return env
->regwptr
[val
];
1553 static MonitorDef monitor_defs
[] = {
1556 #define SEG(name, seg) \
1557 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
1558 { name ".base", offsetof(CPUState, segs[seg].base) },\
1559 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
1561 { "eax", offsetof(CPUState
, regs
[0]) },
1562 { "ecx", offsetof(CPUState
, regs
[1]) },
1563 { "edx", offsetof(CPUState
, regs
[2]) },
1564 { "ebx", offsetof(CPUState
, regs
[3]) },
1565 { "esp|sp", offsetof(CPUState
, regs
[4]) },
1566 { "ebp|fp", offsetof(CPUState
, regs
[5]) },
1567 { "esi", offsetof(CPUState
, regs
[6]) },
1568 { "edi", offsetof(CPUState
, regs
[7]) },
1569 #ifdef TARGET_X86_64
1570 { "r8", offsetof(CPUState
, regs
[8]) },
1571 { "r9", offsetof(CPUState
, regs
[9]) },
1572 { "r10", offsetof(CPUState
, regs
[10]) },
1573 { "r11", offsetof(CPUState
, regs
[11]) },
1574 { "r12", offsetof(CPUState
, regs
[12]) },
1575 { "r13", offsetof(CPUState
, regs
[13]) },
1576 { "r14", offsetof(CPUState
, regs
[14]) },
1577 { "r15", offsetof(CPUState
, regs
[15]) },
1579 { "eflags", offsetof(CPUState
, eflags
) },
1580 { "eip", offsetof(CPUState
, eip
) },
1587 { "pc", 0, monitor_get_pc
, },
1588 #elif defined(TARGET_PPC)
1589 /* General purpose registers */
1590 { "r0", offsetof(CPUState
, gpr
[0]) },
1591 { "r1", offsetof(CPUState
, gpr
[1]) },
1592 { "r2", offsetof(CPUState
, gpr
[2]) },
1593 { "r3", offsetof(CPUState
, gpr
[3]) },
1594 { "r4", offsetof(CPUState
, gpr
[4]) },
1595 { "r5", offsetof(CPUState
, gpr
[5]) },
1596 { "r6", offsetof(CPUState
, gpr
[6]) },
1597 { "r7", offsetof(CPUState
, gpr
[7]) },
1598 { "r8", offsetof(CPUState
, gpr
[8]) },
1599 { "r9", offsetof(CPUState
, gpr
[9]) },
1600 { "r10", offsetof(CPUState
, gpr
[10]) },
1601 { "r11", offsetof(CPUState
, gpr
[11]) },
1602 { "r12", offsetof(CPUState
, gpr
[12]) },
1603 { "r13", offsetof(CPUState
, gpr
[13]) },
1604 { "r14", offsetof(CPUState
, gpr
[14]) },
1605 { "r15", offsetof(CPUState
, gpr
[15]) },
1606 { "r16", offsetof(CPUState
, gpr
[16]) },
1607 { "r17", offsetof(CPUState
, gpr
[17]) },
1608 { "r18", offsetof(CPUState
, gpr
[18]) },
1609 { "r19", offsetof(CPUState
, gpr
[19]) },
1610 { "r20", offsetof(CPUState
, gpr
[20]) },
1611 { "r21", offsetof(CPUState
, gpr
[21]) },
1612 { "r22", offsetof(CPUState
, gpr
[22]) },
1613 { "r23", offsetof(CPUState
, gpr
[23]) },
1614 { "r24", offsetof(CPUState
, gpr
[24]) },
1615 { "r25", offsetof(CPUState
, gpr
[25]) },
1616 { "r26", offsetof(CPUState
, gpr
[26]) },
1617 { "r27", offsetof(CPUState
, gpr
[27]) },
1618 { "r28", offsetof(CPUState
, gpr
[28]) },
1619 { "r29", offsetof(CPUState
, gpr
[29]) },
1620 { "r30", offsetof(CPUState
, gpr
[30]) },
1621 { "r31", offsetof(CPUState
, gpr
[31]) },
1622 /* Floating point registers */
1623 { "f0", offsetof(CPUState
, fpr
[0]) },
1624 { "f1", offsetof(CPUState
, fpr
[1]) },
1625 { "f2", offsetof(CPUState
, fpr
[2]) },
1626 { "f3", offsetof(CPUState
, fpr
[3]) },
1627 { "f4", offsetof(CPUState
, fpr
[4]) },
1628 { "f5", offsetof(CPUState
, fpr
[5]) },
1629 { "f6", offsetof(CPUState
, fpr
[6]) },
1630 { "f7", offsetof(CPUState
, fpr
[7]) },
1631 { "f8", offsetof(CPUState
, fpr
[8]) },
1632 { "f9", offsetof(CPUState
, fpr
[9]) },
1633 { "f10", offsetof(CPUState
, fpr
[10]) },
1634 { "f11", offsetof(CPUState
, fpr
[11]) },
1635 { "f12", offsetof(CPUState
, fpr
[12]) },
1636 { "f13", offsetof(CPUState
, fpr
[13]) },
1637 { "f14", offsetof(CPUState
, fpr
[14]) },
1638 { "f15", offsetof(CPUState
, fpr
[15]) },
1639 { "f16", offsetof(CPUState
, fpr
[16]) },
1640 { "f17", offsetof(CPUState
, fpr
[17]) },
1641 { "f18", offsetof(CPUState
, fpr
[18]) },
1642 { "f19", offsetof(CPUState
, fpr
[19]) },
1643 { "f20", offsetof(CPUState
, fpr
[20]) },
1644 { "f21", offsetof(CPUState
, fpr
[21]) },
1645 { "f22", offsetof(CPUState
, fpr
[22]) },
1646 { "f23", offsetof(CPUState
, fpr
[23]) },
1647 { "f24", offsetof(CPUState
, fpr
[24]) },
1648 { "f25", offsetof(CPUState
, fpr
[25]) },
1649 { "f26", offsetof(CPUState
, fpr
[26]) },
1650 { "f27", offsetof(CPUState
, fpr
[27]) },
1651 { "f28", offsetof(CPUState
, fpr
[28]) },
1652 { "f29", offsetof(CPUState
, fpr
[29]) },
1653 { "f30", offsetof(CPUState
, fpr
[30]) },
1654 { "f31", offsetof(CPUState
, fpr
[31]) },
1655 { "fpscr", offsetof(CPUState
, fpscr
) },
1656 /* Next instruction pointer */
1657 { "nip|pc", offsetof(CPUState
, nip
) },
1658 { "lr", offsetof(CPUState
, lr
) },
1659 { "ctr", offsetof(CPUState
, ctr
) },
1660 { "decr", 0, &monitor_get_decr
, },
1661 { "ccr", 0, &monitor_get_ccr
, },
1662 /* Machine state register */
1663 { "msr", 0, &monitor_get_msr
, },
1664 { "xer", 0, &monitor_get_xer
, },
1665 { "tbu", 0, &monitor_get_tbu
, },
1666 { "tbl", 0, &monitor_get_tbl
, },
1667 #if defined(TARGET_PPC64)
1668 /* Address space register */
1669 { "asr", offsetof(CPUState
, asr
) },
1671 /* Segment registers */
1672 { "sdr1", offsetof(CPUState
, sdr1
) },
1673 { "sr0", offsetof(CPUState
, sr
[0]) },
1674 { "sr1", offsetof(CPUState
, sr
[1]) },
1675 { "sr2", offsetof(CPUState
, sr
[2]) },
1676 { "sr3", offsetof(CPUState
, sr
[3]) },
1677 { "sr4", offsetof(CPUState
, sr
[4]) },
1678 { "sr5", offsetof(CPUState
, sr
[5]) },
1679 { "sr6", offsetof(CPUState
, sr
[6]) },
1680 { "sr7", offsetof(CPUState
, sr
[7]) },
1681 { "sr8", offsetof(CPUState
, sr
[8]) },
1682 { "sr9", offsetof(CPUState
, sr
[9]) },
1683 { "sr10", offsetof(CPUState
, sr
[10]) },
1684 { "sr11", offsetof(CPUState
, sr
[11]) },
1685 { "sr12", offsetof(CPUState
, sr
[12]) },
1686 { "sr13", offsetof(CPUState
, sr
[13]) },
1687 { "sr14", offsetof(CPUState
, sr
[14]) },
1688 { "sr15", offsetof(CPUState
, sr
[15]) },
1689 /* Too lazy to put BATs and SPRs ... */
1690 #elif defined(TARGET_SPARC)
1691 { "g0", offsetof(CPUState
, gregs
[0]) },
1692 { "g1", offsetof(CPUState
, gregs
[1]) },
1693 { "g2", offsetof(CPUState
, gregs
[2]) },
1694 { "g3", offsetof(CPUState
, gregs
[3]) },
1695 { "g4", offsetof(CPUState
, gregs
[4]) },
1696 { "g5", offsetof(CPUState
, gregs
[5]) },
1697 { "g6", offsetof(CPUState
, gregs
[6]) },
1698 { "g7", offsetof(CPUState
, gregs
[7]) },
1699 { "o0", 0, monitor_get_reg
},
1700 { "o1", 1, monitor_get_reg
},
1701 { "o2", 2, monitor_get_reg
},
1702 { "o3", 3, monitor_get_reg
},
1703 { "o4", 4, monitor_get_reg
},
1704 { "o5", 5, monitor_get_reg
},
1705 { "o6", 6, monitor_get_reg
},
1706 { "o7", 7, monitor_get_reg
},
1707 { "l0", 8, monitor_get_reg
},
1708 { "l1", 9, monitor_get_reg
},
1709 { "l2", 10, monitor_get_reg
},
1710 { "l3", 11, monitor_get_reg
},
1711 { "l4", 12, monitor_get_reg
},
1712 { "l5", 13, monitor_get_reg
},
1713 { "l6", 14, monitor_get_reg
},
1714 { "l7", 15, monitor_get_reg
},
1715 { "i0", 16, monitor_get_reg
},
1716 { "i1", 17, monitor_get_reg
},
1717 { "i2", 18, monitor_get_reg
},
1718 { "i3", 19, monitor_get_reg
},
1719 { "i4", 20, monitor_get_reg
},
1720 { "i5", 21, monitor_get_reg
},
1721 { "i6", 22, monitor_get_reg
},
1722 { "i7", 23, monitor_get_reg
},
1723 { "pc", offsetof(CPUState
, pc
) },
1724 { "npc", offsetof(CPUState
, npc
) },
1725 { "y", offsetof(CPUState
, y
) },
1726 #ifndef TARGET_SPARC64
1727 { "psr", 0, &monitor_get_psr
, },
1728 { "wim", offsetof(CPUState
, wim
) },
1730 { "tbr", offsetof(CPUState
, tbr
) },
1731 { "fsr", offsetof(CPUState
, fsr
) },
1732 { "f0", offsetof(CPUState
, fpr
[0]) },
1733 { "f1", offsetof(CPUState
, fpr
[1]) },
1734 { "f2", offsetof(CPUState
, fpr
[2]) },
1735 { "f3", offsetof(CPUState
, fpr
[3]) },
1736 { "f4", offsetof(CPUState
, fpr
[4]) },
1737 { "f5", offsetof(CPUState
, fpr
[5]) },
1738 { "f6", offsetof(CPUState
, fpr
[6]) },
1739 { "f7", offsetof(CPUState
, fpr
[7]) },
1740 { "f8", offsetof(CPUState
, fpr
[8]) },
1741 { "f9", offsetof(CPUState
, fpr
[9]) },
1742 { "f10", offsetof(CPUState
, fpr
[10]) },
1743 { "f11", offsetof(CPUState
, fpr
[11]) },
1744 { "f12", offsetof(CPUState
, fpr
[12]) },
1745 { "f13", offsetof(CPUState
, fpr
[13]) },
1746 { "f14", offsetof(CPUState
, fpr
[14]) },
1747 { "f15", offsetof(CPUState
, fpr
[15]) },
1748 { "f16", offsetof(CPUState
, fpr
[16]) },
1749 { "f17", offsetof(CPUState
, fpr
[17]) },
1750 { "f18", offsetof(CPUState
, fpr
[18]) },
1751 { "f19", offsetof(CPUState
, fpr
[19]) },
1752 { "f20", offsetof(CPUState
, fpr
[20]) },
1753 { "f21", offsetof(CPUState
, fpr
[21]) },
1754 { "f22", offsetof(CPUState
, fpr
[22]) },
1755 { "f23", offsetof(CPUState
, fpr
[23]) },
1756 { "f24", offsetof(CPUState
, fpr
[24]) },
1757 { "f25", offsetof(CPUState
, fpr
[25]) },
1758 { "f26", offsetof(CPUState
, fpr
[26]) },
1759 { "f27", offsetof(CPUState
, fpr
[27]) },
1760 { "f28", offsetof(CPUState
, fpr
[28]) },
1761 { "f29", offsetof(CPUState
, fpr
[29]) },
1762 { "f30", offsetof(CPUState
, fpr
[30]) },
1763 { "f31", offsetof(CPUState
, fpr
[31]) },
1764 #ifdef TARGET_SPARC64
1765 { "f32", offsetof(CPUState
, fpr
[32]) },
1766 { "f34", offsetof(CPUState
, fpr
[34]) },
1767 { "f36", offsetof(CPUState
, fpr
[36]) },
1768 { "f38", offsetof(CPUState
, fpr
[38]) },
1769 { "f40", offsetof(CPUState
, fpr
[40]) },
1770 { "f42", offsetof(CPUState
, fpr
[42]) },
1771 { "f44", offsetof(CPUState
, fpr
[44]) },
1772 { "f46", offsetof(CPUState
, fpr
[46]) },
1773 { "f48", offsetof(CPUState
, fpr
[48]) },
1774 { "f50", offsetof(CPUState
, fpr
[50]) },
1775 { "f52", offsetof(CPUState
, fpr
[52]) },
1776 { "f54", offsetof(CPUState
, fpr
[54]) },
1777 { "f56", offsetof(CPUState
, fpr
[56]) },
1778 { "f58", offsetof(CPUState
, fpr
[58]) },
1779 { "f60", offsetof(CPUState
, fpr
[60]) },
1780 { "f62", offsetof(CPUState
, fpr
[62]) },
1781 { "asi", offsetof(CPUState
, asi
) },
1782 { "pstate", offsetof(CPUState
, pstate
) },
1783 { "cansave", offsetof(CPUState
, cansave
) },
1784 { "canrestore", offsetof(CPUState
, canrestore
) },
1785 { "otherwin", offsetof(CPUState
, otherwin
) },
1786 { "wstate", offsetof(CPUState
, wstate
) },
1787 { "cleanwin", offsetof(CPUState
, cleanwin
) },
1788 { "fprs", offsetof(CPUState
, fprs
) },
1794 static void expr_error(const char *fmt
)
1798 longjmp(expr_env
, 1);
1801 /* return 0 if OK, -1 if not found, -2 if no CPU defined */
1802 static int get_monitor_def(target_long
*pval
, const char *name
)
1807 for(md
= monitor_defs
; md
->name
!= NULL
; md
++) {
1808 if (compare_cmd(name
, md
->name
)) {
1809 if (md
->get_value
) {
1810 *pval
= md
->get_value(md
, md
->offset
);
1812 CPUState
*env
= mon_get_cpu();
1815 ptr
= (uint8_t *)env
+ md
->offset
;
1818 *pval
= *(int32_t *)ptr
;
1821 *pval
= *(target_long
*)ptr
;
1834 static void next(void)
1838 while (isspace(*pch
))
1843 static int64_t expr_sum(void);
1845 static int64_t expr_unary(void)
1868 expr_error("')' expected");
1875 expr_error("character constant expected");
1879 expr_error("missing terminating \' character");
1889 while ((*pch
>= 'a' && *pch
<= 'z') ||
1890 (*pch
>= 'A' && *pch
<= 'Z') ||
1891 (*pch
>= '0' && *pch
<= '9') ||
1892 *pch
== '_' || *pch
== '.') {
1893 if ((q
- buf
) < sizeof(buf
) - 1)
1897 while (isspace(*pch
))
1900 ret
= get_monitor_def(®
, buf
);
1902 expr_error("unknown register");
1904 expr_error("no cpu defined");
1909 expr_error("unexpected end of expression");
1913 #if TARGET_PHYS_ADDR_BITS > 32
1914 n
= strtoull(pch
, &p
, 0);
1916 n
= strtoul(pch
, &p
, 0);
1919 expr_error("invalid char in expression");
1922 while (isspace(*pch
))
1930 static int64_t expr_prod(void)
1938 if (op
!= '*' && op
!= '/' && op
!= '%')
1941 val2
= expr_unary();
1950 expr_error("division by zero");
1961 static int64_t expr_logic(void)
1969 if (op
!= '&' && op
!= '|' && op
!= '^')
1989 static int64_t expr_sum(void)
1997 if (op
!= '+' && op
!= '-')
2000 val2
= expr_logic();
2009 static int get_expr(int64_t *pval
, const char **pp
)
2012 if (setjmp(expr_env
)) {
2016 while (isspace(*pch
))
2023 static int get_str(char *buf
, int buf_size
, const char **pp
)
2041 while (*p
!= '\0' && *p
!= '\"') {
2057 qemu_printf("unsupported escape code: '\\%c'\n", c
);
2060 if ((q
- buf
) < buf_size
- 1) {
2064 if ((q
- buf
) < buf_size
- 1) {
2071 qemu_printf("unterminated string\n");
2076 while (*p
!= '\0' && !isspace(*p
)) {
2077 if ((q
- buf
) < buf_size
- 1) {
2088 static int default_fmt_format
= 'x';
2089 static int default_fmt_size
= 4;
2093 static void monitor_handle_command(const char *cmdline
)
2095 const char *p
, *pstart
, *typestr
;
2097 int c
, nb_args
, len
, i
, has_arg
;
2101 void *str_allocated
[MAX_ARGS
];
2102 void *args
[MAX_ARGS
];
2105 term_printf("command='%s'\n", cmdline
);
2108 /* extract the command name */
2116 while (*p
!= '\0' && *p
!= '/' && !isspace(*p
))
2119 if (len
> sizeof(cmdname
) - 1)
2120 len
= sizeof(cmdname
) - 1;
2121 memcpy(cmdname
, pstart
, len
);
2122 cmdname
[len
] = '\0';
2124 /* find the command */
2125 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2126 if (compare_cmd(cmdname
, cmd
->name
))
2129 term_printf("unknown command: '%s'\n", cmdname
);
2133 for(i
= 0; i
< MAX_ARGS
; i
++)
2134 str_allocated
[i
] = NULL
;
2136 /* parse the parameters */
2137 typestr
= cmd
->args_type
;
2154 if (*typestr
== '?') {
2157 /* no optional string: NULL argument */
2162 ret
= get_str(buf
, sizeof(buf
), &p
);
2166 term_printf("%s: filename expected\n", cmdname
);
2169 term_printf("%s: block device name expected\n", cmdname
);
2172 term_printf("%s: string expected\n", cmdname
);
2177 str
= qemu_malloc(strlen(buf
) + 1);
2179 str_allocated
[nb_args
] = str
;
2181 if (nb_args
>= MAX_ARGS
) {
2183 term_printf("%s: too many arguments\n", cmdname
);
2186 args
[nb_args
++] = str
;
2191 int count
, format
, size
;
2201 while (isdigit(*p
)) {
2202 count
= count
* 10 + (*p
- '0');
2240 if (*p
!= '\0' && !isspace(*p
)) {
2241 term_printf("invalid char in format: '%c'\n", *p
);
2245 format
= default_fmt_format
;
2246 if (format
!= 'i') {
2247 /* for 'i', not specifying a size gives -1 as size */
2249 size
= default_fmt_size
;
2251 default_fmt_size
= size
;
2252 default_fmt_format
= format
;
2255 format
= default_fmt_format
;
2256 if (format
!= 'i') {
2257 size
= default_fmt_size
;
2262 if (nb_args
+ 3 > MAX_ARGS
)
2264 args
[nb_args
++] = (void*)(long)count
;
2265 args
[nb_args
++] = (void*)(long)format
;
2266 args
[nb_args
++] = (void*)(long)size
;
2276 if (*typestr
== '?' || *typestr
== '.') {
2277 if (*typestr
== '?') {
2293 if (nb_args
>= MAX_ARGS
)
2295 args
[nb_args
++] = (void *)(long)has_arg
;
2297 if (nb_args
>= MAX_ARGS
)
2303 if (get_expr(&val
, &p
))
2307 if (nb_args
>= MAX_ARGS
)
2309 args
[nb_args
++] = (void *)(long)val
;
2311 if ((nb_args
+ 1) >= MAX_ARGS
)
2313 #if TARGET_PHYS_ADDR_BITS > 32
2314 args
[nb_args
++] = (void *)(long)((val
>> 32) & 0xffffffff);
2316 args
[nb_args
++] = (void *)0;
2318 args
[nb_args
++] = (void *)(long)(val
& 0xffffffff);
2336 term_printf("%s: unsupported option -%c\n",
2343 if (nb_args
>= MAX_ARGS
)
2345 args
[nb_args
++] = (void *)(long)has_option
;
2350 term_printf("%s: unknown type '%c'\n", cmdname
, c
);
2354 /* check that all arguments were parsed */
2358 term_printf("%s: extraneous characters at the end of line\n",
2368 cmd
->handler(args
[0]);
2371 cmd
->handler(args
[0], args
[1]);
2374 cmd
->handler(args
[0], args
[1], args
[2]);
2377 cmd
->handler(args
[0], args
[1], args
[2], args
[3]);
2380 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4]);
2383 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5]);
2386 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5], args
[6]);
2389 term_printf("unsupported number of arguments: %d\n", nb_args
);
2393 for(i
= 0; i
< MAX_ARGS
; i
++)
2394 qemu_free(str_allocated
[i
]);
2398 static void cmd_completion(const char *name
, const char *list
)
2400 const char *p
, *pstart
;
2409 p
= pstart
+ strlen(pstart
);
2411 if (len
> sizeof(cmd
) - 2)
2412 len
= sizeof(cmd
) - 2;
2413 memcpy(cmd
, pstart
, len
);
2415 if (name
[0] == '\0' || !strncmp(name
, cmd
, strlen(name
))) {
2416 add_completion(cmd
);
2424 static void file_completion(const char *input
)
2429 char file
[1024], file_prefix
[1024];
2433 p
= strrchr(input
, '/');
2436 pstrcpy(file_prefix
, sizeof(file_prefix
), input
);
2439 input_path_len
= p
- input
+ 1;
2440 memcpy(path
, input
, input_path_len
);
2441 if (input_path_len
> sizeof(path
) - 1)
2442 input_path_len
= sizeof(path
) - 1;
2443 path
[input_path_len
] = '\0';
2444 pstrcpy(file_prefix
, sizeof(file_prefix
), p
+ 1);
2446 #ifdef DEBUG_COMPLETION
2447 term_printf("input='%s' path='%s' prefix='%s'\n", input
, path
, file_prefix
);
2449 ffs
= opendir(path
);
2457 if (strstart(d
->d_name
, file_prefix
, NULL
)) {
2458 memcpy(file
, input
, input_path_len
);
2459 strcpy(file
+ input_path_len
, d
->d_name
);
2460 /* stat the file to find out if it's a directory.
2461 * In that case add a slash to speed up typing long paths
2464 if(S_ISDIR(sb
.st_mode
))
2466 add_completion(file
);
2472 static void block_completion_it(void *opaque
, const char *name
)
2474 const char *input
= opaque
;
2476 if (input
[0] == '\0' ||
2477 !strncmp(name
, (char *)input
, strlen(input
))) {
2478 add_completion(name
);
2482 /* NOTE: this parser is an approximate form of the real command parser */
2483 static void parse_cmdline(const char *cmdline
,
2484 int *pnb_args
, char **args
)
2497 if (nb_args
>= MAX_ARGS
)
2499 ret
= get_str(buf
, sizeof(buf
), &p
);
2500 args
[nb_args
] = qemu_strdup(buf
);
2505 *pnb_args
= nb_args
;
2508 void readline_find_completion(const char *cmdline
)
2510 const char *cmdname
;
2511 char *args
[MAX_ARGS
];
2512 int nb_args
, i
, len
;
2513 const char *ptype
, *str
;
2517 parse_cmdline(cmdline
, &nb_args
, args
);
2518 #ifdef DEBUG_COMPLETION
2519 for(i
= 0; i
< nb_args
; i
++) {
2520 term_printf("arg%d = '%s'\n", i
, (char *)args
[i
]);
2524 /* if the line ends with a space, it means we want to complete the
2526 len
= strlen(cmdline
);
2527 if (len
> 0 && isspace(cmdline
[len
- 1])) {
2528 if (nb_args
>= MAX_ARGS
)
2530 args
[nb_args
++] = qemu_strdup("");
2533 /* command completion */
2538 completion_index
= strlen(cmdname
);
2539 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2540 cmd_completion(cmdname
, cmd
->name
);
2543 /* find the command */
2544 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2545 if (compare_cmd(args
[0], cmd
->name
))
2550 ptype
= cmd
->args_type
;
2551 for(i
= 0; i
< nb_args
- 2; i
++) {
2552 if (*ptype
!= '\0') {
2554 while (*ptype
== '?')
2558 str
= args
[nb_args
- 1];
2561 /* file completion */
2562 completion_index
= strlen(str
);
2563 file_completion(str
);
2566 /* block device name completion */
2567 completion_index
= strlen(str
);
2568 bdrv_iterate(block_completion_it
, (void *)str
);
2571 /* XXX: more generic ? */
2572 if (!strcmp(cmd
->name
, "info")) {
2573 completion_index
= strlen(str
);
2574 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
2575 cmd_completion(str
, cmd
->name
);
2577 } else if (!strcmp(cmd
->name
, "sendkey")) {
2578 completion_index
= strlen(str
);
2579 for(key
= key_defs
; key
->name
!= NULL
; key
++) {
2580 cmd_completion(str
, key
->name
);
2588 for(i
= 0; i
< nb_args
; i
++)
2592 static int term_can_read(void *opaque
)
2597 static void term_read(void *opaque
, const uint8_t *buf
, int size
)
2600 for(i
= 0; i
< size
; i
++)
2601 readline_handle_byte(buf
[i
]);
2604 static void monitor_start_input(void);
2606 static void monitor_handle_command1(void *opaque
, const char *cmdline
)
2608 monitor_handle_command(cmdline
);
2609 monitor_start_input();
2612 static void monitor_start_input(void)
2614 readline_start("(qemu) ", 0, monitor_handle_command1
, NULL
);
2617 static void term_event(void *opaque
, int event
)
2619 if (event
!= CHR_EVENT_RESET
)
2623 term_printf("QEMU %s monitor - type 'help' for more information\n",
2625 monitor_start_input();
2628 static int is_first_init
= 1;
2630 void monitor_init(CharDriverState
*hd
, int show_banner
)
2634 if (is_first_init
) {
2635 for (i
= 0; i
< MAX_MON
; i
++) {
2636 monitor_hd
[i
] = NULL
;
2640 for (i
= 0; i
< MAX_MON
; i
++) {
2641 if (monitor_hd
[i
] == NULL
) {
2647 hide_banner
= !show_banner
;
2649 qemu_chr_add_handlers(hd
, term_can_read
, term_read
, term_event
, NULL
);
2651 readline_start("", 0, monitor_handle_command1
, NULL
);
2654 /* XXX: use threads ? */
2655 /* modal monitor readline */
2656 static int monitor_readline_started
;
2657 static char *monitor_readline_buf
;
2658 static int monitor_readline_buf_size
;
2660 static void monitor_readline_cb(void *opaque
, const char *input
)
2662 pstrcpy(monitor_readline_buf
, monitor_readline_buf_size
, input
);
2663 monitor_readline_started
= 0;
2666 void monitor_readline(const char *prompt
, int is_password
,
2667 char *buf
, int buf_size
)
2672 for (i
= 0; i
< MAX_MON
; i
++)
2673 if (monitor_hd
[i
] && monitor_hd
[i
]->focus
== 0)
2674 qemu_chr_send_event(monitor_hd
[i
], CHR_EVENT_FOCUS
);
2676 readline_start(prompt
, is_password
, monitor_readline_cb
, NULL
);
2677 monitor_readline_buf
= buf
;
2678 monitor_readline_buf_size
= buf_size
;
2679 monitor_readline_started
= 1;
2680 while (monitor_readline_started
) {