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"
37 #include "migration.h"
41 #ifdef CONFIG_PROFILER
42 #include "qemu-timer.h" /* for ticks_per_sec */
46 //#define DEBUG_COMPLETION
49 #define offsetof(type, field) ((size_t) &((type *)0)->field)
56 * 'B' block device name
57 * 's' string (accept optional quote)
59 * 'l' target long (32 or 64 bit)
60 * '/' optional gdb-like print format (like "/10x")
62 * '?' optional type (for 'F', 's' and 'i')
66 typedef struct term_cmd_t
{
68 const char *args_type
;
75 static CharDriverState
*monitor_hd
[MAX_MON
];
76 static int hide_banner
;
78 static term_cmd_t term_cmds
[];
79 static term_cmd_t info_cmds
[];
81 static uint8_t term_outbuf
[1024];
82 static int term_outbuf_index
;
84 static void monitor_start_input(void);
86 CPUState
*mon_cpu
= NULL
;
91 if (term_outbuf_index
> 0) {
92 for (i
= 0; i
< MAX_MON
; i
++)
93 if (monitor_hd
[i
] && monitor_hd
[i
]->focus
== 0)
94 qemu_chr_write(monitor_hd
[i
], term_outbuf
, term_outbuf_index
);
95 term_outbuf_index
= 0;
99 /* flush at every end of line or if the buffer is full */
100 void term_puts(const char *str
)
108 term_outbuf
[term_outbuf_index
++] = '\r';
109 term_outbuf
[term_outbuf_index
++] = c
;
110 if (term_outbuf_index
>= (sizeof(term_outbuf
) - 1) ||
116 void term_vprintf(const char *fmt
, va_list ap
)
119 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
123 void term_printf(const char *fmt
, ...)
127 term_vprintf(fmt
, ap
);
131 void term_print_filename(const char *filename
)
135 for (i
= 0; filename
[i
]; i
++) {
136 switch (filename
[i
]) {
140 term_printf("\\%c", filename
[i
]);
152 term_printf("%c", filename
[i
]);
158 static int monitor_fprintf(FILE *stream
, const char *fmt
, ...)
162 term_vprintf(fmt
, ap
);
167 static int compare_cmd(const char *name
, const char *list
)
169 const char *p
, *pstart
;
177 p
= pstart
+ strlen(pstart
);
178 if ((p
- pstart
) == len
&& !memcmp(pstart
, name
, len
))
187 static void help_cmd1(term_cmd_t
*cmds
, const char *prefix
, const char *name
)
191 for(cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
192 if (!name
|| !strcmp(name
, cmd
->name
))
193 term_printf("%s%s %s -- %s\n", prefix
, cmd
->name
, cmd
->params
, cmd
->help
);
197 static void help_cmd(const char *name
)
199 if (name
&& !strcmp(name
, "info")) {
200 help_cmd1(info_cmds
, "info ", NULL
);
202 help_cmd1(term_cmds
, "", name
);
203 if (name
&& !strcmp(name
, "log")) {
205 term_printf("Log items (comma separated):\n");
206 term_printf("%-10s %s\n", "none", "remove all logs");
207 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
208 term_printf("%-10s %s\n", item
->name
, item
->help
);
214 static void do_help(const char *name
)
219 static void do_commit(const char *device
)
223 all_devices
= !strcmp(device
, "all");
224 for (i
= 0; i
< nb_drives
; i
++) {
226 !strcmp(bdrv_get_device_name(drives_table
[i
].bdrv
), device
))
227 bdrv_commit(drives_table
[i
].bdrv
);
231 static void do_info(const char *item
)
237 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
238 if (compare_cmd(item
, cmd
->name
))
248 static void do_info_version(void)
250 term_printf("%s\n", QEMU_VERSION
);
253 static void do_info_name(void)
256 term_printf("%s\n", qemu_name
);
259 static void do_info_block(void)
264 static void do_info_blockstats(void)
269 /* get the current CPU defined by the user */
270 static int mon_set_cpu(int cpu_index
)
274 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
275 if (env
->cpu_index
== cpu_index
) {
283 static CPUState
*mon_get_cpu(void)
290 kvm_save_registers(mon_cpu
);
296 static void do_info_registers(void)
303 cpu_dump_state(env
, NULL
, monitor_fprintf
,
306 cpu_dump_state(env
, NULL
, monitor_fprintf
,
311 static void do_info_cpus(void)
315 /* just to set the default cpu if not already done */
318 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
319 term_printf("%c CPU #%d:",
320 (env
== mon_cpu
) ? '*' : ' ',
322 #if defined(TARGET_I386)
323 term_printf(" pc=0x" TARGET_FMT_lx
, env
->eip
+ env
->segs
[R_CS
].base
);
324 if (env
->hflags
& HF_HALTED_MASK
)
325 term_printf(" (halted)");
326 #elif defined(TARGET_PPC)
327 term_printf(" nip=0x" TARGET_FMT_lx
, env
->nip
);
329 term_printf(" (halted)");
330 #elif defined(TARGET_SPARC)
331 term_printf(" pc=0x" TARGET_FMT_lx
" npc=0x" TARGET_FMT_lx
, env
->pc
, env
->npc
);
333 term_printf(" (halted)");
334 #elif defined(TARGET_MIPS)
335 term_printf(" PC=0x" TARGET_FMT_lx
, env
->PC
[env
->current_tc
]);
337 term_printf(" (halted)");
343 static void do_cpu_set(int index
)
345 if (mon_set_cpu(index
) < 0)
346 term_printf("Invalid CPU index\n");
349 static void do_info_jit(void)
351 dump_exec_info(NULL
, monitor_fprintf
);
354 static void do_info_history (void)
361 str
= readline_get_history(i
);
364 term_printf("%d: '%s'\n", i
, str
);
369 #if defined(TARGET_PPC)
370 /* XXX: not implemented in other targets */
371 static void do_info_cpu_stats (void)
376 cpu_dump_statistics(env
, NULL
, &monitor_fprintf
, 0);
380 static void do_quit(void)
385 static int eject_device(BlockDriverState
*bs
, int force
)
387 if (bdrv_is_inserted(bs
)) {
389 if (!bdrv_is_removable(bs
)) {
390 term_printf("device is not removable\n");
393 if (bdrv_is_locked(bs
)) {
394 term_printf("device is locked\n");
403 static void do_eject(int force
, const char *filename
)
405 BlockDriverState
*bs
;
407 bs
= bdrv_find(filename
);
409 term_printf("device not found\n");
412 eject_device(bs
, force
);
415 static void do_change_block(const char *device
, const char *filename
)
417 BlockDriverState
*bs
;
419 bs
= bdrv_find(device
);
421 term_printf("device not found\n");
424 if (eject_device(bs
, 0) < 0)
426 bdrv_open(bs
, filename
, 0);
427 qemu_key_check(bs
, filename
);
430 static void do_change_vnc(const char *target
)
432 if (strcmp(target
, "passwd") == 0 ||
433 strcmp(target
, "password") == 0) {
435 monitor_readline("Password: ", 1, password
, sizeof(password
)-1);
436 password
[sizeof(password
)-1] = '\0';
437 if (vnc_display_password(NULL
, password
) < 0)
438 term_printf("could not set VNC server password\n");
440 if (vnc_display_open(NULL
, target
) < 0)
441 term_printf("could not start VNC server on %s\n", target
);
445 static void do_change(const char *device
, const char *target
)
447 if (strcmp(device
, "vnc") == 0) {
448 do_change_vnc(target
);
450 do_change_block(device
, target
);
454 static void do_screen_dump(const char *filename
)
456 vga_hw_screen_dump(filename
);
459 static void do_logfile(const char *filename
)
461 cpu_set_log_filename(filename
);
464 static void do_log(const char *items
)
468 if (!strcmp(items
, "none")) {
471 mask
= cpu_str_to_log_mask(items
);
480 static void do_stop(void)
482 vm_stop(EXCP_INTERRUPT
);
485 static void do_cont(void)
490 #ifdef CONFIG_GDBSTUB
491 static void do_gdbserver(const char *port
)
494 port
= DEFAULT_GDBSTUB_PORT
;
495 if (gdbserver_start(port
) < 0) {
496 qemu_printf("Could not open gdbserver socket on port '%s'\n", port
);
498 qemu_printf("Waiting gdb connection on port '%s'\n", port
);
503 static void term_printc(int c
)
520 if (c
>= 32 && c
<= 126) {
521 term_printf("%c", c
);
523 term_printf("\\x%02x", c
);
530 static void memory_dump(int count
, int format
, int wsize
,
531 target_phys_addr_t addr
, int is_physical
)
534 int nb_per_line
, l
, line_size
, i
, max_digits
, len
;
542 if (!env
&& !is_physical
)
547 } else if (wsize
== 4) {
550 /* as default we use the current CS size */
554 if ((env
->efer
& MSR_EFER_LMA
) &&
555 (env
->segs
[R_CS
].flags
& DESC_L_MASK
))
559 if (!(env
->segs
[R_CS
].flags
& DESC_B_MASK
))
564 monitor_disas(env
, addr
, count
, is_physical
, flags
);
573 nb_per_line
= line_size
/ wsize
;
578 max_digits
= (wsize
* 8 + 2) / 3;
582 max_digits
= (wsize
* 8) / 4;
586 max_digits
= (wsize
* 8 * 10 + 32) / 33;
595 term_printf(TARGET_FMT_plx
":", addr
);
597 term_printf(TARGET_FMT_lx
":", (target_ulong
)addr
);
602 cpu_physical_memory_rw(addr
, buf
, l
, 0);
607 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
614 v
= ldub_raw(buf
+ i
);
617 v
= lduw_raw(buf
+ i
);
620 v
= (uint32_t)ldl_raw(buf
+ i
);
623 v
= ldq_raw(buf
+ i
);
629 term_printf("%#*" PRIo64
, max_digits
, v
);
632 term_printf("0x%0*" PRIx64
, max_digits
, v
);
635 term_printf("%*" PRIu64
, max_digits
, v
);
638 term_printf("%*" PRId64
, max_digits
, v
);
652 #if TARGET_LONG_BITS == 64
653 #define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
655 #define GET_TLONG(h, l) (l)
658 static void do_memory_dump(int count
, int format
, int size
,
659 uint32_t addrh
, uint32_t addrl
)
661 target_long addr
= GET_TLONG(addrh
, addrl
);
662 memory_dump(count
, format
, size
, addr
, 0);
665 #if TARGET_PHYS_ADDR_BITS > 32
666 #define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
668 #define GET_TPHYSADDR(h, l) (l)
671 static void do_physical_memory_dump(int count
, int format
, int size
,
672 uint32_t addrh
, uint32_t addrl
)
675 target_phys_addr_t addr
= GET_TPHYSADDR(addrh
, addrl
);
676 memory_dump(count
, format
, size
, addr
, 1);
679 static void do_print(int count
, int format
, int size
, unsigned int valh
, unsigned int vall
)
681 target_phys_addr_t val
= GET_TPHYSADDR(valh
, vall
);
682 #if TARGET_PHYS_ADDR_BITS == 32
685 term_printf("%#o", val
);
688 term_printf("%#x", val
);
691 term_printf("%u", val
);
695 term_printf("%d", val
);
704 term_printf("%#" PRIo64
, val
);
707 term_printf("%#" PRIx64
, val
);
710 term_printf("%" PRIu64
, val
);
714 term_printf("%" PRId64
, val
);
724 static void do_memory_save(unsigned int valh
, unsigned int vall
,
725 uint32_t size
, const char *filename
)
728 target_long addr
= GET_TLONG(valh
, vall
);
737 f
= fopen(filename
, "wb");
739 term_printf("could not open '%s'\n", filename
);
746 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
747 fwrite(buf
, 1, l
, f
);
754 static void do_sum(uint32_t start
, uint32_t size
)
761 for(addr
= start
; addr
< (start
+ size
); addr
++) {
762 cpu_physical_memory_rw(addr
, buf
, 1, 0);
763 /* BSD sum algorithm ('sum' Unix command) */
764 sum
= (sum
>> 1) | (sum
<< 15);
767 term_printf("%05d\n", sum
);
775 static const KeyDef key_defs
[] = {
800 { 0x0e, "backspace" },
835 { 0x3a, "caps_lock" },
846 { 0x45, "num_lock" },
847 { 0x46, "scroll_lock" },
849 { 0xb5, "kp_divide" },
850 { 0x37, "kp_multiply" },
851 { 0x4a, "kp_subtract" },
853 { 0x9c, "kp_enter" },
854 { 0x53, "kp_decimal" },
889 static int get_keycode(const char *key
)
895 for(p
= key_defs
; p
->name
!= NULL
; p
++) {
896 if (!strcmp(key
, p
->name
))
899 if (strstart(key
, "0x", NULL
)) {
900 ret
= strtoul(key
, &endp
, 0);
901 if (*endp
== '\0' && ret
>= 0x01 && ret
<= 0xff)
907 static void do_send_key(const char *string
)
910 uint8_t keycodes
[16];
912 int nb_keycodes
, keycode
, i
;
918 while (*p
!= '\0' && *p
!= '-') {
919 if ((q
- keybuf
) < sizeof(keybuf
) - 1) {
925 keycode
= get_keycode(keybuf
);
927 term_printf("unknown key: '%s'\n", keybuf
);
930 keycodes
[nb_keycodes
++] = keycode
;
935 /* key down events */
936 for(i
= 0; i
< nb_keycodes
; i
++) {
937 keycode
= keycodes
[i
];
939 kbd_put_keycode(0xe0);
940 kbd_put_keycode(keycode
& 0x7f);
943 for(i
= nb_keycodes
- 1; i
>= 0; i
--) {
944 keycode
= keycodes
[i
];
946 kbd_put_keycode(0xe0);
947 kbd_put_keycode(keycode
| 0x80);
951 static int mouse_button_state
;
953 static void do_mouse_move(const char *dx_str
, const char *dy_str
,
957 dx
= strtol(dx_str
, NULL
, 0);
958 dy
= strtol(dy_str
, NULL
, 0);
961 dz
= strtol(dz_str
, NULL
, 0);
962 kbd_mouse_event(dx
, dy
, dz
, mouse_button_state
);
965 static void do_mouse_button(int button_state
)
967 mouse_button_state
= button_state
;
968 kbd_mouse_event(0, 0, 0, mouse_button_state
);
971 static void do_ioport_read(int count
, int format
, int size
, int addr
, int has_index
, int index
)
977 cpu_outb(NULL
, addr
& 0xffff, index
& 0xff);
985 val
= cpu_inb(NULL
, addr
);
989 val
= cpu_inw(NULL
, addr
);
993 val
= cpu_inl(NULL
, addr
);
997 term_printf("port%c[0x%04x] = %#0*x\n",
998 suffix
, addr
, size
* 2, val
);
1001 static void do_system_reset(void)
1003 qemu_system_reset_request();
1006 static void do_system_powerdown(void)
1008 qemu_system_powerdown_request();
1011 #if defined(TARGET_I386)
1012 static void print_pte(uint32_t addr
, uint32_t pte
, uint32_t mask
)
1014 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
1017 pte
& PG_GLOBAL_MASK
? 'G' : '-',
1018 pte
& PG_PSE_MASK
? 'P' : '-',
1019 pte
& PG_DIRTY_MASK
? 'D' : '-',
1020 pte
& PG_ACCESSED_MASK
? 'A' : '-',
1021 pte
& PG_PCD_MASK
? 'C' : '-',
1022 pte
& PG_PWT_MASK
? 'T' : '-',
1023 pte
& PG_USER_MASK
? 'U' : '-',
1024 pte
& PG_RW_MASK
? 'W' : '-');
1027 static void tlb_info(void)
1031 uint32_t pgd
, pde
, pte
;
1033 env
= mon_get_cpu();
1037 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1038 term_printf("PG disabled\n");
1041 pgd
= env
->cr
[3] & ~0xfff;
1042 for(l1
= 0; l1
< 1024; l1
++) {
1043 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1044 pde
= le32_to_cpu(pde
);
1045 if (pde
& PG_PRESENT_MASK
) {
1046 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1047 print_pte((l1
<< 22), pde
, ~((1 << 20) - 1));
1049 for(l2
= 0; l2
< 1024; l2
++) {
1050 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1051 (uint8_t *)&pte
, 4);
1052 pte
= le32_to_cpu(pte
);
1053 if (pte
& PG_PRESENT_MASK
) {
1054 print_pte((l1
<< 22) + (l2
<< 12),
1064 static void mem_print(uint32_t *pstart
, int *plast_prot
,
1065 uint32_t end
, int prot
)
1068 prot1
= *plast_prot
;
1069 if (prot
!= prot1
) {
1070 if (*pstart
!= -1) {
1071 term_printf("%08x-%08x %08x %c%c%c\n",
1072 *pstart
, end
, end
- *pstart
,
1073 prot1
& PG_USER_MASK
? 'u' : '-',
1075 prot1
& PG_RW_MASK
? 'w' : '-');
1085 static void mem_info(void)
1088 int l1
, l2
, prot
, last_prot
;
1089 uint32_t pgd
, pde
, pte
, start
, end
;
1091 env
= mon_get_cpu();
1095 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1096 term_printf("PG disabled\n");
1099 pgd
= env
->cr
[3] & ~0xfff;
1102 for(l1
= 0; l1
< 1024; l1
++) {
1103 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1104 pde
= le32_to_cpu(pde
);
1106 if (pde
& PG_PRESENT_MASK
) {
1107 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1108 prot
= pde
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1109 mem_print(&start
, &last_prot
, end
, prot
);
1111 for(l2
= 0; l2
< 1024; l2
++) {
1112 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1113 (uint8_t *)&pte
, 4);
1114 pte
= le32_to_cpu(pte
);
1115 end
= (l1
<< 22) + (l2
<< 12);
1116 if (pte
& PG_PRESENT_MASK
) {
1117 prot
= pte
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1121 mem_print(&start
, &last_prot
, end
, prot
);
1126 mem_print(&start
, &last_prot
, end
, prot
);
1132 static void do_info_kqemu(void)
1138 env
= mon_get_cpu();
1140 term_printf("No cpu initialized yet");
1143 val
= env
->kqemu_enabled
;
1144 term_printf("kqemu support: ");
1148 term_printf("disabled\n");
1151 term_printf("enabled for user code\n");
1154 term_printf("enabled for user and kernel code\n");
1158 term_printf("kqemu support: not compiled\n");
1162 #ifdef CONFIG_PROFILER
1166 int64_t kqemu_exec_count
;
1168 int64_t kqemu_ret_int_count
;
1169 int64_t kqemu_ret_excp_count
;
1170 int64_t kqemu_ret_intr_count
;
1172 static void do_info_profile(void)
1178 term_printf("async time %" PRId64
" (%0.3f)\n",
1179 dev_time
, dev_time
/ (double)ticks_per_sec
);
1180 term_printf("qemu time %" PRId64
" (%0.3f)\n",
1181 qemu_time
, qemu_time
/ (double)ticks_per_sec
);
1182 term_printf("kqemu time %" PRId64
" (%0.3f %0.1f%%) count=%" PRId64
" int=%" PRId64
" excp=%" PRId64
" intr=%" PRId64
"\n",
1183 kqemu_time
, kqemu_time
/ (double)ticks_per_sec
,
1184 kqemu_time
/ (double)total
* 100.0,
1186 kqemu_ret_int_count
,
1187 kqemu_ret_excp_count
,
1188 kqemu_ret_intr_count
);
1191 kqemu_exec_count
= 0;
1193 kqemu_ret_int_count
= 0;
1194 kqemu_ret_excp_count
= 0;
1195 kqemu_ret_intr_count
= 0;
1197 kqemu_record_dump();
1201 static void do_info_profile(void)
1203 term_printf("Internal profiler not compiled\n");
1207 /* Capture support */
1208 static LIST_HEAD (capture_list_head
, CaptureState
) capture_head
;
1210 static void do_info_capture (void)
1215 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1216 term_printf ("[%d]: ", i
);
1217 s
->ops
.info (s
->opaque
);
1221 static void do_stop_capture (int n
)
1226 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1228 s
->ops
.destroy (s
->opaque
);
1229 LIST_REMOVE (s
, entries
);
1237 int wav_start_capture (CaptureState
*s
, const char *path
, int freq
,
1238 int bits
, int nchannels
);
1240 static void do_wav_capture (const char *path
,
1241 int has_freq
, int freq
,
1242 int has_bits
, int bits
,
1243 int has_channels
, int nchannels
)
1247 s
= qemu_mallocz (sizeof (*s
));
1249 term_printf ("Not enough memory to add wave capture\n");
1253 freq
= has_freq
? freq
: 44100;
1254 bits
= has_bits
? bits
: 16;
1255 nchannels
= has_channels
? nchannels
: 2;
1257 if (wav_start_capture (s
, path
, freq
, bits
, nchannels
)) {
1258 term_printf ("Faied to add wave capture\n");
1261 LIST_INSERT_HEAD (&capture_head
, s
, entries
);
1265 static term_cmd_t term_cmds
[] = {
1266 { "help|?", "s?", do_help
,
1267 "[cmd]", "show the help" },
1268 { "commit", "s", do_commit
,
1269 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
1270 { "info", "s?", do_info
,
1271 "subcommand", "show various information about the system state" },
1272 { "q|quit", "", do_quit
,
1273 "", "quit the emulator" },
1274 { "eject", "-fB", do_eject
,
1275 "[-f] device", "eject a removable medium (use -f to force it)" },
1276 { "change", "BF", do_change
,
1277 "device filename", "change a removable medium" },
1278 { "screendump", "F", do_screen_dump
,
1279 "filename", "save screen into PPM image 'filename'" },
1280 { "logfile", "s", do_logfile
,
1281 "filename", "output logs to 'filename'" },
1282 { "log", "s", do_log
,
1283 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
1284 { "savevm", "s?", do_savevm
,
1285 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
1286 { "loadvm", "s", do_loadvm
,
1287 "tag|id", "restore a VM snapshot from its tag or id" },
1288 { "delvm", "s", do_delvm
,
1289 "tag|id", "delete a VM snapshot from its tag or id" },
1290 { "stop", "", do_stop
,
1291 "", "stop emulation", },
1292 { "c|cont", "", do_cont
,
1293 "", "resume emulation", },
1294 #ifdef CONFIG_GDBSTUB
1295 { "gdbserver", "s?", do_gdbserver
,
1296 "[port]", "start gdbserver session (default port=1234)", },
1298 { "x", "/l", do_memory_dump
,
1299 "/fmt addr", "virtual memory dump starting at 'addr'", },
1300 { "xp", "/l", do_physical_memory_dump
,
1301 "/fmt addr", "physical memory dump starting at 'addr'", },
1302 { "p|print", "/l", do_print
,
1303 "/fmt expr", "print expression value (use $reg for CPU register access)", },
1304 { "i", "/ii.", do_ioport_read
,
1305 "/fmt addr", "I/O port read" },
1307 { "sendkey", "s", do_send_key
,
1308 "keys", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1')" },
1309 { "system_reset", "", do_system_reset
,
1310 "", "reset the system" },
1311 { "system_powerdown", "", do_system_powerdown
,
1312 "", "send system power down event" },
1313 { "sum", "ii", do_sum
,
1314 "addr size", "compute the checksum of a memory region" },
1315 { "usb_add", "s", do_usb_add
,
1316 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1317 { "usb_del", "s", do_usb_del
,
1318 "device", "remove USB device 'bus.addr'" },
1319 { "cpu", "i", do_cpu_set
,
1320 "index", "set the default CPU" },
1321 { "mouse_move", "sss?", do_mouse_move
,
1322 "dx dy [dz]", "send mouse move events" },
1323 { "mouse_button", "i", do_mouse_button
,
1324 "state", "change mouse button state (1=L, 2=M, 4=R)" },
1325 { "mouse_set", "i", do_mouse_set
,
1326 "index", "set which mouse device receives events" },
1328 { "wavcapture", "si?i?i?", do_wav_capture
,
1329 "path [frequency bits channels]",
1330 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1332 { "stopcapture", "i", do_stop_capture
,
1333 "capture index", "stop capture" },
1334 { "memsave", "lis", do_memory_save
,
1335 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
1336 { "migrate", "-ds", do_migrate
,
1337 "[-d] command", "migrate the VM using command (use -d to not wait for command to complete)" },
1338 { "migrate_cancel", "", do_migrate_cancel
,
1339 "", "cancel the current VM migration" },
1340 { "migrate_set_speed", "s", do_migrate_set_speed
,
1341 "value", "set maximum speed (in bytes) for migrations" },
1345 static term_cmd_t info_cmds
[] = {
1346 { "version", "", do_info_version
,
1347 "", "show the version of qemu" },
1348 { "network", "", do_info_network
,
1349 "", "show the network state" },
1350 { "block", "", do_info_block
,
1351 "", "show the block devices" },
1352 { "blockstats", "", do_info_blockstats
,
1353 "", "show block device statistics" },
1354 { "registers", "", do_info_registers
,
1355 "", "show the cpu registers" },
1356 { "cpus", "", do_info_cpus
,
1357 "", "show infos for each CPU" },
1358 { "history", "", do_info_history
,
1359 "", "show the command line history", },
1360 { "irq", "", irq_info
,
1361 "", "show the interrupts statistics (if available)", },
1362 { "pic", "", pic_info
,
1363 "", "show i8259 (PIC) state", },
1364 { "pci", "", pci_info
,
1365 "", "show PCI info", },
1366 #if defined(TARGET_I386)
1367 { "tlb", "", tlb_info
,
1368 "", "show virtual to physical memory mappings", },
1369 { "mem", "", mem_info
,
1370 "", "show the active virtual memory mappings", },
1372 { "jit", "", do_info_jit
,
1373 "", "show dynamic compiler info", },
1374 { "kqemu", "", do_info_kqemu
,
1375 "", "show kqemu information", },
1376 { "usb", "", usb_info
,
1377 "", "show guest USB devices", },
1378 { "usbhost", "", usb_host_info
,
1379 "", "show host USB devices", },
1380 { "profile", "", do_info_profile
,
1381 "", "show profiling information", },
1382 { "capture", "", do_info_capture
,
1383 "", "show capture information" },
1384 { "snapshots", "", do_info_snapshots
,
1385 "", "show the currently saved VM snapshots" },
1386 { "pcmcia", "", pcmcia_info
,
1387 "", "show guest PCMCIA status" },
1388 { "mice", "", do_info_mice
,
1389 "", "show which guest mouse is receiving events" },
1390 { "vnc", "", do_info_vnc
,
1391 "", "show the vnc server status"},
1392 { "name", "", do_info_name
,
1393 "", "show the current VM name" },
1394 #if defined(TARGET_PPC)
1395 { "cpustats", "", do_info_cpu_stats
,
1396 "", "show CPU statistics", },
1398 #if defined(CONFIG_SLIRP)
1399 { "slirp", "", do_info_slirp
,
1400 "", "show SLIRP statistics", },
1402 { "migration", "", do_info_migration
,
1403 "", "show migration information" },
1407 /*******************************************************************/
1409 static const char *pch
;
1410 static jmp_buf expr_env
;
1415 typedef struct MonitorDef
{
1418 target_long (*get_value
)(struct MonitorDef
*md
, int val
);
1422 #if defined(TARGET_I386)
1423 static target_long
monitor_get_pc (struct MonitorDef
*md
, int val
)
1425 CPUState
*env
= mon_get_cpu();
1428 return env
->eip
+ env
->segs
[R_CS
].base
;
1432 #if defined(TARGET_PPC)
1433 static target_long
monitor_get_ccr (struct MonitorDef
*md
, int val
)
1435 CPUState
*env
= mon_get_cpu();
1443 for (i
= 0; i
< 8; i
++)
1444 u
|= env
->crf
[i
] << (32 - (4 * i
));
1449 static target_long
monitor_get_msr (struct MonitorDef
*md
, int val
)
1451 CPUState
*env
= mon_get_cpu();
1457 static target_long
monitor_get_xer (struct MonitorDef
*md
, int val
)
1459 CPUState
*env
= mon_get_cpu();
1462 return ppc_load_xer(env
);
1465 static target_long
monitor_get_decr (struct MonitorDef
*md
, int val
)
1467 CPUState
*env
= mon_get_cpu();
1470 return cpu_ppc_load_decr(env
);
1473 static target_long
monitor_get_tbu (struct MonitorDef
*md
, int val
)
1475 CPUState
*env
= mon_get_cpu();
1478 return cpu_ppc_load_tbu(env
);
1481 static target_long
monitor_get_tbl (struct MonitorDef
*md
, int val
)
1483 CPUState
*env
= mon_get_cpu();
1486 return cpu_ppc_load_tbl(env
);
1490 #if defined(TARGET_SPARC)
1491 #ifndef TARGET_SPARC64
1492 static target_long
monitor_get_psr (struct MonitorDef
*md
, int val
)
1494 CPUState
*env
= mon_get_cpu();
1497 return GET_PSR(env
);
1501 static target_long
monitor_get_reg(struct MonitorDef
*md
, int val
)
1503 CPUState
*env
= mon_get_cpu();
1506 return env
->regwptr
[val
];
1510 static MonitorDef monitor_defs
[] = {
1513 #define SEG(name, seg) \
1514 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
1515 { name ".base", offsetof(CPUState, segs[seg].base) },\
1516 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
1518 { "eax", offsetof(CPUState
, regs
[0]) },
1519 { "ecx", offsetof(CPUState
, regs
[1]) },
1520 { "edx", offsetof(CPUState
, regs
[2]) },
1521 { "ebx", offsetof(CPUState
, regs
[3]) },
1522 { "esp|sp", offsetof(CPUState
, regs
[4]) },
1523 { "ebp|fp", offsetof(CPUState
, regs
[5]) },
1524 { "esi", offsetof(CPUState
, regs
[6]) },
1525 { "edi", offsetof(CPUState
, regs
[7]) },
1526 #ifdef TARGET_X86_64
1527 { "r8", offsetof(CPUState
, regs
[8]) },
1528 { "r9", offsetof(CPUState
, regs
[9]) },
1529 { "r10", offsetof(CPUState
, regs
[10]) },
1530 { "r11", offsetof(CPUState
, regs
[11]) },
1531 { "r12", offsetof(CPUState
, regs
[12]) },
1532 { "r13", offsetof(CPUState
, regs
[13]) },
1533 { "r14", offsetof(CPUState
, regs
[14]) },
1534 { "r15", offsetof(CPUState
, regs
[15]) },
1536 { "eflags", offsetof(CPUState
, eflags
) },
1537 { "eip", offsetof(CPUState
, eip
) },
1544 { "pc", 0, monitor_get_pc
, },
1545 #elif defined(TARGET_PPC)
1546 /* General purpose registers */
1547 { "r0", offsetof(CPUState
, gpr
[0]) },
1548 { "r1", offsetof(CPUState
, gpr
[1]) },
1549 { "r2", offsetof(CPUState
, gpr
[2]) },
1550 { "r3", offsetof(CPUState
, gpr
[3]) },
1551 { "r4", offsetof(CPUState
, gpr
[4]) },
1552 { "r5", offsetof(CPUState
, gpr
[5]) },
1553 { "r6", offsetof(CPUState
, gpr
[6]) },
1554 { "r7", offsetof(CPUState
, gpr
[7]) },
1555 { "r8", offsetof(CPUState
, gpr
[8]) },
1556 { "r9", offsetof(CPUState
, gpr
[9]) },
1557 { "r10", offsetof(CPUState
, gpr
[10]) },
1558 { "r11", offsetof(CPUState
, gpr
[11]) },
1559 { "r12", offsetof(CPUState
, gpr
[12]) },
1560 { "r13", offsetof(CPUState
, gpr
[13]) },
1561 { "r14", offsetof(CPUState
, gpr
[14]) },
1562 { "r15", offsetof(CPUState
, gpr
[15]) },
1563 { "r16", offsetof(CPUState
, gpr
[16]) },
1564 { "r17", offsetof(CPUState
, gpr
[17]) },
1565 { "r18", offsetof(CPUState
, gpr
[18]) },
1566 { "r19", offsetof(CPUState
, gpr
[19]) },
1567 { "r20", offsetof(CPUState
, gpr
[20]) },
1568 { "r21", offsetof(CPUState
, gpr
[21]) },
1569 { "r22", offsetof(CPUState
, gpr
[22]) },
1570 { "r23", offsetof(CPUState
, gpr
[23]) },
1571 { "r24", offsetof(CPUState
, gpr
[24]) },
1572 { "r25", offsetof(CPUState
, gpr
[25]) },
1573 { "r26", offsetof(CPUState
, gpr
[26]) },
1574 { "r27", offsetof(CPUState
, gpr
[27]) },
1575 { "r28", offsetof(CPUState
, gpr
[28]) },
1576 { "r29", offsetof(CPUState
, gpr
[29]) },
1577 { "r30", offsetof(CPUState
, gpr
[30]) },
1578 { "r31", offsetof(CPUState
, gpr
[31]) },
1579 /* Floating point registers */
1580 { "f0", offsetof(CPUState
, fpr
[0]) },
1581 { "f1", offsetof(CPUState
, fpr
[1]) },
1582 { "f2", offsetof(CPUState
, fpr
[2]) },
1583 { "f3", offsetof(CPUState
, fpr
[3]) },
1584 { "f4", offsetof(CPUState
, fpr
[4]) },
1585 { "f5", offsetof(CPUState
, fpr
[5]) },
1586 { "f6", offsetof(CPUState
, fpr
[6]) },
1587 { "f7", offsetof(CPUState
, fpr
[7]) },
1588 { "f8", offsetof(CPUState
, fpr
[8]) },
1589 { "f9", offsetof(CPUState
, fpr
[9]) },
1590 { "f10", offsetof(CPUState
, fpr
[10]) },
1591 { "f11", offsetof(CPUState
, fpr
[11]) },
1592 { "f12", offsetof(CPUState
, fpr
[12]) },
1593 { "f13", offsetof(CPUState
, fpr
[13]) },
1594 { "f14", offsetof(CPUState
, fpr
[14]) },
1595 { "f15", offsetof(CPUState
, fpr
[15]) },
1596 { "f16", offsetof(CPUState
, fpr
[16]) },
1597 { "f17", offsetof(CPUState
, fpr
[17]) },
1598 { "f18", offsetof(CPUState
, fpr
[18]) },
1599 { "f19", offsetof(CPUState
, fpr
[19]) },
1600 { "f20", offsetof(CPUState
, fpr
[20]) },
1601 { "f21", offsetof(CPUState
, fpr
[21]) },
1602 { "f22", offsetof(CPUState
, fpr
[22]) },
1603 { "f23", offsetof(CPUState
, fpr
[23]) },
1604 { "f24", offsetof(CPUState
, fpr
[24]) },
1605 { "f25", offsetof(CPUState
, fpr
[25]) },
1606 { "f26", offsetof(CPUState
, fpr
[26]) },
1607 { "f27", offsetof(CPUState
, fpr
[27]) },
1608 { "f28", offsetof(CPUState
, fpr
[28]) },
1609 { "f29", offsetof(CPUState
, fpr
[29]) },
1610 { "f30", offsetof(CPUState
, fpr
[30]) },
1611 { "f31", offsetof(CPUState
, fpr
[31]) },
1612 { "fpscr", offsetof(CPUState
, fpscr
) },
1613 /* Next instruction pointer */
1614 { "nip|pc", offsetof(CPUState
, nip
) },
1615 { "lr", offsetof(CPUState
, lr
) },
1616 { "ctr", offsetof(CPUState
, ctr
) },
1617 { "decr", 0, &monitor_get_decr
, },
1618 { "ccr", 0, &monitor_get_ccr
, },
1619 /* Machine state register */
1620 { "msr", 0, &monitor_get_msr
, },
1621 { "xer", 0, &monitor_get_xer
, },
1622 { "tbu", 0, &monitor_get_tbu
, },
1623 { "tbl", 0, &monitor_get_tbl
, },
1624 #if defined(TARGET_PPC64)
1625 /* Address space register */
1626 { "asr", offsetof(CPUState
, asr
) },
1628 /* Segment registers */
1629 { "sdr1", offsetof(CPUState
, sdr1
) },
1630 { "sr0", offsetof(CPUState
, sr
[0]) },
1631 { "sr1", offsetof(CPUState
, sr
[1]) },
1632 { "sr2", offsetof(CPUState
, sr
[2]) },
1633 { "sr3", offsetof(CPUState
, sr
[3]) },
1634 { "sr4", offsetof(CPUState
, sr
[4]) },
1635 { "sr5", offsetof(CPUState
, sr
[5]) },
1636 { "sr6", offsetof(CPUState
, sr
[6]) },
1637 { "sr7", offsetof(CPUState
, sr
[7]) },
1638 { "sr8", offsetof(CPUState
, sr
[8]) },
1639 { "sr9", offsetof(CPUState
, sr
[9]) },
1640 { "sr10", offsetof(CPUState
, sr
[10]) },
1641 { "sr11", offsetof(CPUState
, sr
[11]) },
1642 { "sr12", offsetof(CPUState
, sr
[12]) },
1643 { "sr13", offsetof(CPUState
, sr
[13]) },
1644 { "sr14", offsetof(CPUState
, sr
[14]) },
1645 { "sr15", offsetof(CPUState
, sr
[15]) },
1646 /* Too lazy to put BATs and SPRs ... */
1647 #elif defined(TARGET_SPARC)
1648 { "g0", offsetof(CPUState
, gregs
[0]) },
1649 { "g1", offsetof(CPUState
, gregs
[1]) },
1650 { "g2", offsetof(CPUState
, gregs
[2]) },
1651 { "g3", offsetof(CPUState
, gregs
[3]) },
1652 { "g4", offsetof(CPUState
, gregs
[4]) },
1653 { "g5", offsetof(CPUState
, gregs
[5]) },
1654 { "g6", offsetof(CPUState
, gregs
[6]) },
1655 { "g7", offsetof(CPUState
, gregs
[7]) },
1656 { "o0", 0, monitor_get_reg
},
1657 { "o1", 1, monitor_get_reg
},
1658 { "o2", 2, monitor_get_reg
},
1659 { "o3", 3, monitor_get_reg
},
1660 { "o4", 4, monitor_get_reg
},
1661 { "o5", 5, monitor_get_reg
},
1662 { "o6", 6, monitor_get_reg
},
1663 { "o7", 7, monitor_get_reg
},
1664 { "l0", 8, monitor_get_reg
},
1665 { "l1", 9, monitor_get_reg
},
1666 { "l2", 10, monitor_get_reg
},
1667 { "l3", 11, monitor_get_reg
},
1668 { "l4", 12, monitor_get_reg
},
1669 { "l5", 13, monitor_get_reg
},
1670 { "l6", 14, monitor_get_reg
},
1671 { "l7", 15, monitor_get_reg
},
1672 { "i0", 16, monitor_get_reg
},
1673 { "i1", 17, monitor_get_reg
},
1674 { "i2", 18, monitor_get_reg
},
1675 { "i3", 19, monitor_get_reg
},
1676 { "i4", 20, monitor_get_reg
},
1677 { "i5", 21, monitor_get_reg
},
1678 { "i6", 22, monitor_get_reg
},
1679 { "i7", 23, monitor_get_reg
},
1680 { "pc", offsetof(CPUState
, pc
) },
1681 { "npc", offsetof(CPUState
, npc
) },
1682 { "y", offsetof(CPUState
, y
) },
1683 #ifndef TARGET_SPARC64
1684 { "psr", 0, &monitor_get_psr
, },
1685 { "wim", offsetof(CPUState
, wim
) },
1687 { "tbr", offsetof(CPUState
, tbr
) },
1688 { "fsr", offsetof(CPUState
, fsr
) },
1689 { "f0", offsetof(CPUState
, fpr
[0]) },
1690 { "f1", offsetof(CPUState
, fpr
[1]) },
1691 { "f2", offsetof(CPUState
, fpr
[2]) },
1692 { "f3", offsetof(CPUState
, fpr
[3]) },
1693 { "f4", offsetof(CPUState
, fpr
[4]) },
1694 { "f5", offsetof(CPUState
, fpr
[5]) },
1695 { "f6", offsetof(CPUState
, fpr
[6]) },
1696 { "f7", offsetof(CPUState
, fpr
[7]) },
1697 { "f8", offsetof(CPUState
, fpr
[8]) },
1698 { "f9", offsetof(CPUState
, fpr
[9]) },
1699 { "f10", offsetof(CPUState
, fpr
[10]) },
1700 { "f11", offsetof(CPUState
, fpr
[11]) },
1701 { "f12", offsetof(CPUState
, fpr
[12]) },
1702 { "f13", offsetof(CPUState
, fpr
[13]) },
1703 { "f14", offsetof(CPUState
, fpr
[14]) },
1704 { "f15", offsetof(CPUState
, fpr
[15]) },
1705 { "f16", offsetof(CPUState
, fpr
[16]) },
1706 { "f17", offsetof(CPUState
, fpr
[17]) },
1707 { "f18", offsetof(CPUState
, fpr
[18]) },
1708 { "f19", offsetof(CPUState
, fpr
[19]) },
1709 { "f20", offsetof(CPUState
, fpr
[20]) },
1710 { "f21", offsetof(CPUState
, fpr
[21]) },
1711 { "f22", offsetof(CPUState
, fpr
[22]) },
1712 { "f23", offsetof(CPUState
, fpr
[23]) },
1713 { "f24", offsetof(CPUState
, fpr
[24]) },
1714 { "f25", offsetof(CPUState
, fpr
[25]) },
1715 { "f26", offsetof(CPUState
, fpr
[26]) },
1716 { "f27", offsetof(CPUState
, fpr
[27]) },
1717 { "f28", offsetof(CPUState
, fpr
[28]) },
1718 { "f29", offsetof(CPUState
, fpr
[29]) },
1719 { "f30", offsetof(CPUState
, fpr
[30]) },
1720 { "f31", offsetof(CPUState
, fpr
[31]) },
1721 #ifdef TARGET_SPARC64
1722 { "f32", offsetof(CPUState
, fpr
[32]) },
1723 { "f34", offsetof(CPUState
, fpr
[34]) },
1724 { "f36", offsetof(CPUState
, fpr
[36]) },
1725 { "f38", offsetof(CPUState
, fpr
[38]) },
1726 { "f40", offsetof(CPUState
, fpr
[40]) },
1727 { "f42", offsetof(CPUState
, fpr
[42]) },
1728 { "f44", offsetof(CPUState
, fpr
[44]) },
1729 { "f46", offsetof(CPUState
, fpr
[46]) },
1730 { "f48", offsetof(CPUState
, fpr
[48]) },
1731 { "f50", offsetof(CPUState
, fpr
[50]) },
1732 { "f52", offsetof(CPUState
, fpr
[52]) },
1733 { "f54", offsetof(CPUState
, fpr
[54]) },
1734 { "f56", offsetof(CPUState
, fpr
[56]) },
1735 { "f58", offsetof(CPUState
, fpr
[58]) },
1736 { "f60", offsetof(CPUState
, fpr
[60]) },
1737 { "f62", offsetof(CPUState
, fpr
[62]) },
1738 { "asi", offsetof(CPUState
, asi
) },
1739 { "pstate", offsetof(CPUState
, pstate
) },
1740 { "cansave", offsetof(CPUState
, cansave
) },
1741 { "canrestore", offsetof(CPUState
, canrestore
) },
1742 { "otherwin", offsetof(CPUState
, otherwin
) },
1743 { "wstate", offsetof(CPUState
, wstate
) },
1744 { "cleanwin", offsetof(CPUState
, cleanwin
) },
1745 { "fprs", offsetof(CPUState
, fprs
) },
1751 static void expr_error(const char *fmt
)
1755 longjmp(expr_env
, 1);
1758 /* return 0 if OK, -1 if not found, -2 if no CPU defined */
1759 static int get_monitor_def(target_long
*pval
, const char *name
)
1764 for(md
= monitor_defs
; md
->name
!= NULL
; md
++) {
1765 if (compare_cmd(name
, md
->name
)) {
1766 if (md
->get_value
) {
1767 *pval
= md
->get_value(md
, md
->offset
);
1769 CPUState
*env
= mon_get_cpu();
1772 ptr
= (uint8_t *)env
+ md
->offset
;
1775 *pval
= *(int32_t *)ptr
;
1778 *pval
= *(target_long
*)ptr
;
1791 static void next(void)
1795 while (isspace(*pch
))
1800 static int64_t expr_sum(void);
1802 static int64_t expr_unary(void)
1825 expr_error("')' expected");
1832 expr_error("character constant expected");
1836 expr_error("missing terminating \' character");
1846 while ((*pch
>= 'a' && *pch
<= 'z') ||
1847 (*pch
>= 'A' && *pch
<= 'Z') ||
1848 (*pch
>= '0' && *pch
<= '9') ||
1849 *pch
== '_' || *pch
== '.') {
1850 if ((q
- buf
) < sizeof(buf
) - 1)
1854 while (isspace(*pch
))
1857 ret
= get_monitor_def(®
, buf
);
1859 expr_error("unknown register");
1861 expr_error("no cpu defined");
1866 expr_error("unexpected end of expression");
1870 #if TARGET_PHYS_ADDR_BITS > 32
1871 n
= strtoull(pch
, &p
, 0);
1873 n
= strtoul(pch
, &p
, 0);
1876 expr_error("invalid char in expression");
1879 while (isspace(*pch
))
1887 static int64_t expr_prod(void)
1895 if (op
!= '*' && op
!= '/' && op
!= '%')
1898 val2
= expr_unary();
1907 expr_error("division by zero");
1918 static int64_t expr_logic(void)
1926 if (op
!= '&' && op
!= '|' && op
!= '^')
1946 static int64_t expr_sum(void)
1954 if (op
!= '+' && op
!= '-')
1957 val2
= expr_logic();
1966 static int get_expr(int64_t *pval
, const char **pp
)
1969 if (setjmp(expr_env
)) {
1973 while (isspace(*pch
))
1980 static int get_str(char *buf
, int buf_size
, const char **pp
)
1998 while (*p
!= '\0' && *p
!= '\"') {
2014 qemu_printf("unsupported escape code: '\\%c'\n", c
);
2017 if ((q
- buf
) < buf_size
- 1) {
2021 if ((q
- buf
) < buf_size
- 1) {
2028 qemu_printf("unterminated string\n");
2033 while (*p
!= '\0' && !isspace(*p
)) {
2034 if ((q
- buf
) < buf_size
- 1) {
2045 static int default_fmt_format
= 'x';
2046 static int default_fmt_size
= 4;
2050 static void monitor_handle_command(const char *cmdline
)
2052 const char *p
, *pstart
, *typestr
;
2054 int c
, nb_args
, len
, i
, has_arg
;
2058 void *str_allocated
[MAX_ARGS
];
2059 void *args
[MAX_ARGS
];
2062 term_printf("command='%s'\n", cmdline
);
2065 /* extract the command name */
2073 while (*p
!= '\0' && *p
!= '/' && !isspace(*p
))
2076 if (len
> sizeof(cmdname
) - 1)
2077 len
= sizeof(cmdname
) - 1;
2078 memcpy(cmdname
, pstart
, len
);
2079 cmdname
[len
] = '\0';
2081 /* find the command */
2082 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2083 if (compare_cmd(cmdname
, cmd
->name
))
2086 term_printf("unknown command: '%s'\n", cmdname
);
2090 for(i
= 0; i
< MAX_ARGS
; i
++)
2091 str_allocated
[i
] = NULL
;
2093 /* parse the parameters */
2094 typestr
= cmd
->args_type
;
2111 if (*typestr
== '?') {
2114 /* no optional string: NULL argument */
2119 ret
= get_str(buf
, sizeof(buf
), &p
);
2123 term_printf("%s: filename expected\n", cmdname
);
2126 term_printf("%s: block device name expected\n", cmdname
);
2129 term_printf("%s: string expected\n", cmdname
);
2134 str
= qemu_malloc(strlen(buf
) + 1);
2136 str_allocated
[nb_args
] = str
;
2138 if (nb_args
>= MAX_ARGS
) {
2140 term_printf("%s: too many arguments\n", cmdname
);
2143 args
[nb_args
++] = str
;
2148 int count
, format
, size
;
2158 while (isdigit(*p
)) {
2159 count
= count
* 10 + (*p
- '0');
2197 if (*p
!= '\0' && !isspace(*p
)) {
2198 term_printf("invalid char in format: '%c'\n", *p
);
2202 format
= default_fmt_format
;
2203 if (format
!= 'i') {
2204 /* for 'i', not specifying a size gives -1 as size */
2206 size
= default_fmt_size
;
2208 default_fmt_size
= size
;
2209 default_fmt_format
= format
;
2212 format
= default_fmt_format
;
2213 if (format
!= 'i') {
2214 size
= default_fmt_size
;
2219 if (nb_args
+ 3 > MAX_ARGS
)
2221 args
[nb_args
++] = (void*)(long)count
;
2222 args
[nb_args
++] = (void*)(long)format
;
2223 args
[nb_args
++] = (void*)(long)size
;
2233 if (*typestr
== '?' || *typestr
== '.') {
2234 if (*typestr
== '?') {
2250 if (nb_args
>= MAX_ARGS
)
2252 args
[nb_args
++] = (void *)(long)has_arg
;
2254 if (nb_args
>= MAX_ARGS
)
2260 if (get_expr(&val
, &p
))
2264 if (nb_args
>= MAX_ARGS
)
2266 args
[nb_args
++] = (void *)(long)val
;
2268 if ((nb_args
+ 1) >= MAX_ARGS
)
2270 #if TARGET_PHYS_ADDR_BITS > 32
2271 args
[nb_args
++] = (void *)(long)((val
>> 32) & 0xffffffff);
2273 args
[nb_args
++] = (void *)0;
2275 args
[nb_args
++] = (void *)(long)(val
& 0xffffffff);
2293 term_printf("%s: unsupported option -%c\n",
2300 if (nb_args
>= MAX_ARGS
)
2302 args
[nb_args
++] = (void *)(long)has_option
;
2307 term_printf("%s: unknown type '%c'\n", cmdname
, c
);
2311 /* check that all arguments were parsed */
2315 term_printf("%s: extraneous characters at the end of line\n",
2325 cmd
->handler(args
[0]);
2328 cmd
->handler(args
[0], args
[1]);
2331 cmd
->handler(args
[0], args
[1], args
[2]);
2334 cmd
->handler(args
[0], args
[1], args
[2], args
[3]);
2337 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4]);
2340 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5]);
2343 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5], args
[6]);
2346 term_printf("unsupported number of arguments: %d\n", nb_args
);
2350 for(i
= 0; i
< MAX_ARGS
; i
++)
2351 qemu_free(str_allocated
[i
]);
2355 static void cmd_completion(const char *name
, const char *list
)
2357 const char *p
, *pstart
;
2366 p
= pstart
+ strlen(pstart
);
2368 if (len
> sizeof(cmd
) - 2)
2369 len
= sizeof(cmd
) - 2;
2370 memcpy(cmd
, pstart
, len
);
2372 if (name
[0] == '\0' || !strncmp(name
, cmd
, strlen(name
))) {
2373 add_completion(cmd
);
2381 static void file_completion(const char *input
)
2386 char file
[1024], file_prefix
[1024];
2390 p
= strrchr(input
, '/');
2393 pstrcpy(file_prefix
, sizeof(file_prefix
), input
);
2396 input_path_len
= p
- input
+ 1;
2397 memcpy(path
, input
, input_path_len
);
2398 if (input_path_len
> sizeof(path
) - 1)
2399 input_path_len
= sizeof(path
) - 1;
2400 path
[input_path_len
] = '\0';
2401 pstrcpy(file_prefix
, sizeof(file_prefix
), p
+ 1);
2403 #ifdef DEBUG_COMPLETION
2404 term_printf("input='%s' path='%s' prefix='%s'\n", input
, path
, file_prefix
);
2406 ffs
= opendir(path
);
2414 if (strstart(d
->d_name
, file_prefix
, NULL
)) {
2415 memcpy(file
, input
, input_path_len
);
2416 strcpy(file
+ input_path_len
, d
->d_name
);
2417 /* stat the file to find out if it's a directory.
2418 * In that case add a slash to speed up typing long paths
2421 if(S_ISDIR(sb
.st_mode
))
2423 add_completion(file
);
2429 static void block_completion_it(void *opaque
, const char *name
)
2431 const char *input
= opaque
;
2433 if (input
[0] == '\0' ||
2434 !strncmp(name
, (char *)input
, strlen(input
))) {
2435 add_completion(name
);
2439 /* NOTE: this parser is an approximate form of the real command parser */
2440 static void parse_cmdline(const char *cmdline
,
2441 int *pnb_args
, char **args
)
2454 if (nb_args
>= MAX_ARGS
)
2456 ret
= get_str(buf
, sizeof(buf
), &p
);
2457 args
[nb_args
] = qemu_strdup(buf
);
2462 *pnb_args
= nb_args
;
2465 void readline_find_completion(const char *cmdline
)
2467 const char *cmdname
;
2468 char *args
[MAX_ARGS
];
2469 int nb_args
, i
, len
;
2470 const char *ptype
, *str
;
2474 parse_cmdline(cmdline
, &nb_args
, args
);
2475 #ifdef DEBUG_COMPLETION
2476 for(i
= 0; i
< nb_args
; i
++) {
2477 term_printf("arg%d = '%s'\n", i
, (char *)args
[i
]);
2481 /* if the line ends with a space, it means we want to complete the
2483 len
= strlen(cmdline
);
2484 if (len
> 0 && isspace(cmdline
[len
- 1])) {
2485 if (nb_args
>= MAX_ARGS
)
2487 args
[nb_args
++] = qemu_strdup("");
2490 /* command completion */
2495 completion_index
= strlen(cmdname
);
2496 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2497 cmd_completion(cmdname
, cmd
->name
);
2500 /* find the command */
2501 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2502 if (compare_cmd(args
[0], cmd
->name
))
2507 ptype
= cmd
->args_type
;
2508 for(i
= 0; i
< nb_args
- 2; i
++) {
2509 if (*ptype
!= '\0') {
2511 while (*ptype
== '?')
2515 str
= args
[nb_args
- 1];
2518 /* file completion */
2519 completion_index
= strlen(str
);
2520 file_completion(str
);
2523 /* block device name completion */
2524 completion_index
= strlen(str
);
2525 bdrv_iterate(block_completion_it
, (void *)str
);
2528 /* XXX: more generic ? */
2529 if (!strcmp(cmd
->name
, "info")) {
2530 completion_index
= strlen(str
);
2531 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
2532 cmd_completion(str
, cmd
->name
);
2534 } else if (!strcmp(cmd
->name
, "sendkey")) {
2535 completion_index
= strlen(str
);
2536 for(key
= key_defs
; key
->name
!= NULL
; key
++) {
2537 cmd_completion(str
, key
->name
);
2545 for(i
= 0; i
< nb_args
; i
++)
2549 static int term_can_read(void *opaque
)
2554 static void term_read(void *opaque
, const uint8_t *buf
, int size
)
2557 for(i
= 0; i
< size
; i
++)
2558 readline_handle_byte(buf
[i
]);
2561 static int monitor_suspended
;
2563 void monitor_suspend(void)
2565 monitor_suspended
= 1;
2568 void monitor_resume(void)
2570 monitor_suspended
= 0;
2571 monitor_start_input();
2574 static void monitor_start_input(void);
2576 static void monitor_handle_command1(void *opaque
, const char *cmdline
)
2578 monitor_handle_command(cmdline
);
2579 if (!monitor_suspended
)
2580 monitor_start_input();
2583 static void monitor_start_input(void)
2585 readline_start("(qemu) ", 0, monitor_handle_command1
, NULL
);
2588 static void term_event(void *opaque
, int event
)
2590 if (event
!= CHR_EVENT_RESET
)
2594 term_printf("QEMU %s monitor - type 'help' for more information\n",
2596 monitor_start_input();
2599 static int is_first_init
= 1;
2601 void monitor_init(CharDriverState
*hd
, int show_banner
)
2605 if (is_first_init
) {
2606 for (i
= 0; i
< MAX_MON
; i
++) {
2607 monitor_hd
[i
] = NULL
;
2611 for (i
= 0; i
< MAX_MON
; i
++) {
2612 if (monitor_hd
[i
] == NULL
) {
2618 hide_banner
= !show_banner
;
2620 qemu_chr_add_handlers(hd
, term_can_read
, term_read
, term_event
, NULL
);
2622 readline_start("", 0, monitor_handle_command1
, NULL
);
2625 /* XXX: use threads ? */
2626 /* modal monitor readline */
2627 static int monitor_readline_started
;
2628 static char *monitor_readline_buf
;
2629 static int monitor_readline_buf_size
;
2631 static void monitor_readline_cb(void *opaque
, const char *input
)
2633 pstrcpy(monitor_readline_buf
, monitor_readline_buf_size
, input
);
2634 monitor_readline_started
= 0;
2637 void monitor_readline(const char *prompt
, int is_password
,
2638 char *buf
, int buf_size
)
2643 for (i
= 0; i
< MAX_MON
; i
++)
2644 if (monitor_hd
[i
] && monitor_hd
[i
]->focus
== 0)
2645 qemu_chr_send_event(monitor_hd
[i
], CHR_EVENT_FOCUS
);
2647 readline_start(prompt
, is_password
, monitor_readline_cb
, NULL
);
2648 monitor_readline_buf
= buf
;
2649 monitor_readline_buf_size
= buf_size
;
2650 monitor_readline_started
= 1;
2651 while (monitor_readline_started
) {