4 * Copyright (c) 2003-2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
29 //#define DEBUG_COMPLETION
32 #define offsetof(type, field) ((size_t) &((type *)0)->field)
39 * 'B' block device name
40 * 's' string (accept optional quote)
42 * 'l' target long (32 or 64 bit)
43 * '/' optional gdb-like print format (like "/10x")
45 * '?' optional type (for 'F', 's' and 'i')
49 typedef struct term_cmd_t
{
51 const char *args_type
;
57 static CharDriverState
*monitor_hd
;
59 static term_cmd_t term_cmds
[];
60 static term_cmd_t info_cmds
[];
62 static char term_outbuf
[1024];
63 static int term_outbuf_index
;
65 static void monitor_start_input(void);
67 CPUState
*mon_cpu
= NULL
;
71 if (term_outbuf_index
> 0) {
72 qemu_chr_write(monitor_hd
, term_outbuf
, term_outbuf_index
);
73 term_outbuf_index
= 0;
77 /* flush at every end of line or if the buffer is full */
78 void term_puts(const char *str
)
86 term_outbuf
[term_outbuf_index
++] = '\r';
87 term_outbuf
[term_outbuf_index
++] = c
;
88 if (term_outbuf_index
>= (sizeof(term_outbuf
) - 1) ||
94 void term_vprintf(const char *fmt
, va_list ap
)
97 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
101 void term_printf(const char *fmt
, ...)
105 term_vprintf(fmt
, ap
);
109 static int monitor_fprintf(FILE *stream
, const char *fmt
, ...)
113 term_vprintf(fmt
, ap
);
118 static int compare_cmd(const char *name
, const char *list
)
120 const char *p
, *pstart
;
128 p
= pstart
+ strlen(pstart
);
129 if ((p
- pstart
) == len
&& !memcmp(pstart
, name
, len
))
138 static void help_cmd1(term_cmd_t
*cmds
, const char *prefix
, const char *name
)
142 for(cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
143 if (!name
|| !strcmp(name
, cmd
->name
))
144 term_printf("%s%s %s -- %s\n", prefix
, cmd
->name
, cmd
->params
, cmd
->help
);
148 static void help_cmd(const char *name
)
150 if (name
&& !strcmp(name
, "info")) {
151 help_cmd1(info_cmds
, "info ", NULL
);
153 help_cmd1(term_cmds
, "", name
);
154 if (name
&& !strcmp(name
, "log")) {
156 term_printf("Log items (comma separated):\n");
157 term_printf("%-10s %s\n", "none", "remove all logs");
158 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
159 term_printf("%-10s %s\n", item
->name
, item
->help
);
165 static void do_help(const char *name
)
170 static void do_commit(const char *device
)
174 all_devices
= !strcmp(device
, "all");
175 for (i
= 0; i
< MAX_DISKS
; i
++) {
178 !strcmp(bdrv_get_device_name(bs_table
[i
]), device
))
179 bdrv_commit(bs_table
[i
]);
184 static void do_info(const char *item
)
190 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
191 if (compare_cmd(item
, cmd
->name
))
201 static void do_info_version(void)
203 term_printf("%s\n", QEMU_VERSION
);
206 static void do_info_block(void)
211 /* get the current CPU defined by the user */
212 int mon_set_cpu(int cpu_index
)
216 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
217 if (env
->cpu_index
== cpu_index
) {
225 CPUState
*mon_get_cpu(void)
233 static void do_info_registers(void)
240 cpu_dump_state(env
, NULL
, monitor_fprintf
,
243 cpu_dump_state(env
, NULL
, monitor_fprintf
,
248 static void do_info_cpus(void)
252 /* just to set the default cpu if not already done */
255 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
256 term_printf("%c CPU #%d:",
257 (env
== mon_cpu
) ? '*' : ' ',
259 #if defined(TARGET_I386)
260 term_printf(" pc=0x" TARGET_FMT_lx
, env
->eip
+ env
->segs
[R_CS
].base
);
261 if (env
->hflags
& HF_HALTED_MASK
)
262 term_printf(" (halted)");
263 #elif defined(TARGET_PPC)
264 term_printf(" nip=0x" TARGET_FMT_lx
, env
->nip
);
266 term_printf(" (halted)");
267 #elif defined(TARGET_SPARC)
268 term_printf(" pc=0x" TARGET_FMT_lx
" npc=0x" TARGET_FMT_lx
, env
->pc
, env
->npc
);
270 term_printf(" (halted)");
276 static void do_cpu_set(int index
)
278 if (mon_set_cpu(index
) < 0)
279 term_printf("Invalid CPU index\n");
282 static void do_info_jit(void)
284 dump_exec_info(NULL
, monitor_fprintf
);
287 static void do_info_history (void)
294 str
= readline_get_history(i
);
297 term_printf("%d: '%s'\n", i
, str
);
302 static void do_quit(void)
307 static int eject_device(BlockDriverState
*bs
, int force
)
309 if (bdrv_is_inserted(bs
)) {
311 if (!bdrv_is_removable(bs
)) {
312 term_printf("device is not removable\n");
315 if (bdrv_is_locked(bs
)) {
316 term_printf("device is locked\n");
325 static void do_eject(int force
, const char *filename
)
327 BlockDriverState
*bs
;
329 bs
= bdrv_find(filename
);
331 term_printf("device not found\n");
334 eject_device(bs
, force
);
337 static void do_change(const char *device
, const char *filename
)
339 BlockDriverState
*bs
;
343 bs
= bdrv_find(device
);
345 term_printf("device not found\n");
348 if (eject_device(bs
, 0) < 0)
350 bdrv_open(bs
, filename
, 0);
351 if (bdrv_is_encrypted(bs
)) {
352 term_printf("%s is encrypted.\n", device
);
353 for(i
= 0; i
< 3; i
++) {
354 monitor_readline("Password: ", 1, password
, sizeof(password
));
355 if (bdrv_set_key(bs
, password
) == 0)
357 term_printf("invalid password\n");
362 static void do_screen_dump(const char *filename
)
364 vga_hw_screen_dump(filename
);
367 static void do_log(const char *items
)
371 if (!strcmp(items
, "none")) {
374 mask
= cpu_str_to_log_mask(items
);
383 static void do_stop(void)
385 vm_stop(EXCP_INTERRUPT
);
388 static void do_cont(void)
393 #ifdef CONFIG_GDBSTUB
394 static void do_gdbserver(int has_port
, int port
)
397 port
= DEFAULT_GDBSTUB_PORT
;
398 if (gdbserver_start(port
) < 0) {
399 qemu_printf("Could not open gdbserver socket on port %d\n", port
);
401 qemu_printf("Waiting gdb connection on port %d\n", port
);
406 static void term_printc(int c
)
423 if (c
>= 32 && c
<= 126) {
424 term_printf("%c", c
);
426 term_printf("\\x%02x", c
);
433 static void memory_dump(int count
, int format
, int wsize
,
434 target_ulong addr
, int is_physical
)
437 int nb_per_line
, l
, line_size
, i
, max_digits
, len
;
445 if (!env
&& !is_physical
)
450 } else if (wsize
== 4) {
453 /* as default we use the current CS size */
457 if ((env
->efer
& MSR_EFER_LMA
) &&
458 (env
->segs
[R_CS
].flags
& DESC_L_MASK
))
462 if (!(env
->segs
[R_CS
].flags
& DESC_B_MASK
))
467 monitor_disas(env
, addr
, count
, is_physical
, flags
);
476 nb_per_line
= line_size
/ wsize
;
481 max_digits
= (wsize
* 8 + 2) / 3;
485 max_digits
= (wsize
* 8) / 4;
489 max_digits
= (wsize
* 8 * 10 + 32) / 33;
497 term_printf(TARGET_FMT_lx
":", addr
);
502 cpu_physical_memory_rw(addr
, buf
, l
, 0);
507 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
514 v
= ldub_raw(buf
+ i
);
517 v
= lduw_raw(buf
+ i
);
520 v
= (uint32_t)ldl_raw(buf
+ i
);
523 v
= ldq_raw(buf
+ i
);
529 term_printf("%#*" PRIo64
, max_digits
, v
);
532 term_printf("0x%0*" PRIx64
, max_digits
, v
);
535 term_printf("%*" PRIu64
, max_digits
, v
);
538 term_printf("%*" PRId64
, max_digits
, v
);
552 #if TARGET_LONG_BITS == 64
553 #define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
555 #define GET_TLONG(h, l) (l)
558 static void do_memory_dump(int count
, int format
, int size
,
559 uint32_t addrh
, uint32_t addrl
)
561 target_long addr
= GET_TLONG(addrh
, addrl
);
562 memory_dump(count
, format
, size
, addr
, 0);
565 static void do_physical_memory_dump(int count
, int format
, int size
,
566 uint32_t addrh
, uint32_t addrl
)
569 target_long addr
= GET_TLONG(addrh
, addrl
);
570 memory_dump(count
, format
, size
, addr
, 1);
573 static void do_print(int count
, int format
, int size
, unsigned int valh
, unsigned int vall
)
575 target_long val
= GET_TLONG(valh
, vall
);
576 #if TARGET_LONG_BITS == 32
579 term_printf("%#o", val
);
582 term_printf("%#x", val
);
585 term_printf("%u", val
);
589 term_printf("%d", val
);
598 term_printf("%#" PRIo64
, val
);
601 term_printf("%#" PRIx64
, val
);
604 term_printf("%" PRIu64
, val
);
608 term_printf("%" PRId64
, val
);
618 static void do_sum(uint32_t start
, uint32_t size
)
625 for(addr
= start
; addr
< (start
+ size
); addr
++) {
626 cpu_physical_memory_rw(addr
, buf
, 1, 0);
627 /* BSD sum algorithm ('sum' Unix command) */
628 sum
= (sum
>> 1) | (sum
<< 15);
631 term_printf("%05d\n", sum
);
639 static const KeyDef key_defs
[] = {
664 { 0x0e, "backspace" },
699 { 0x3a, "caps_lock" },
710 { 0x45, "num_lock" },
711 { 0x46, "scroll_lock" },
713 { 0xb5, "kp_divide" },
714 { 0x37, "kp_multiply" },
715 { 0x4a, "kp_substract" },
717 { 0x9c, "kp_enter" },
718 { 0x53, "kp_decimal" },
753 static int get_keycode(const char *key
)
759 for(p
= key_defs
; p
->name
!= NULL
; p
++) {
760 if (!strcmp(key
, p
->name
))
763 if (strstart(key
, "0x", NULL
)) {
764 ret
= strtoul(key
, &endp
, 0);
765 if (*endp
== '\0' && ret
>= 0x01 && ret
<= 0xff)
771 static void do_send_key(const char *string
)
774 uint8_t keycodes
[16];
776 int nb_keycodes
, keycode
, i
;
782 while (*p
!= '\0' && *p
!= '-') {
783 if ((q
- keybuf
) < sizeof(keybuf
) - 1) {
789 keycode
= get_keycode(keybuf
);
791 term_printf("unknown key: '%s'\n", keybuf
);
794 keycodes
[nb_keycodes
++] = keycode
;
799 /* key down events */
800 for(i
= 0; i
< nb_keycodes
; i
++) {
801 keycode
= keycodes
[i
];
803 kbd_put_keycode(0xe0);
804 kbd_put_keycode(keycode
& 0x7f);
807 for(i
= nb_keycodes
- 1; i
>= 0; i
--) {
808 keycode
= keycodes
[i
];
810 kbd_put_keycode(0xe0);
811 kbd_put_keycode(keycode
| 0x80);
815 static int mouse_button_state
;
817 static void do_mouse_move(const char *dx_str
, const char *dy_str
,
821 dx
= strtol(dx_str
, NULL
, 0);
822 dy
= strtol(dy_str
, NULL
, 0);
825 dz
= strtol(dz_str
, NULL
, 0);
826 kbd_mouse_event(dx
, dy
, dz
, mouse_button_state
);
829 static void do_mouse_button(int button_state
)
831 mouse_button_state
= button_state
;
832 kbd_mouse_event(0, 0, 0, mouse_button_state
);
835 static void do_ioport_read(int count
, int format
, int size
, int addr
, int has_index
, int index
)
841 cpu_outb(NULL
, addr
& 0xffff, index
& 0xff);
849 val
= cpu_inb(NULL
, addr
);
853 val
= cpu_inw(NULL
, addr
);
857 val
= cpu_inl(NULL
, addr
);
861 term_printf("port%c[0x%04x] = %#0*x\n",
862 suffix
, addr
, size
* 2, val
);
865 static void do_system_reset(void)
867 qemu_system_reset_request();
870 static void do_system_powerdown(void)
872 qemu_system_powerdown_request();
875 #if defined(TARGET_I386)
876 static void print_pte(uint32_t addr
, uint32_t pte
, uint32_t mask
)
878 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
881 pte
& PG_GLOBAL_MASK
? 'G' : '-',
882 pte
& PG_PSE_MASK
? 'P' : '-',
883 pte
& PG_DIRTY_MASK
? 'D' : '-',
884 pte
& PG_ACCESSED_MASK
? 'A' : '-',
885 pte
& PG_PCD_MASK
? 'C' : '-',
886 pte
& PG_PWT_MASK
? 'T' : '-',
887 pte
& PG_USER_MASK
? 'U' : '-',
888 pte
& PG_RW_MASK
? 'W' : '-');
891 static void tlb_info(void)
895 uint32_t pgd
, pde
, pte
;
901 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
902 term_printf("PG disabled\n");
905 pgd
= env
->cr
[3] & ~0xfff;
906 for(l1
= 0; l1
< 1024; l1
++) {
907 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
908 pde
= le32_to_cpu(pde
);
909 if (pde
& PG_PRESENT_MASK
) {
910 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
911 print_pte((l1
<< 22), pde
, ~((1 << 20) - 1));
913 for(l2
= 0; l2
< 1024; l2
++) {
914 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
916 pte
= le32_to_cpu(pte
);
917 if (pte
& PG_PRESENT_MASK
) {
918 print_pte((l1
<< 22) + (l2
<< 12),
928 static void mem_print(uint32_t *pstart
, int *plast_prot
,
929 uint32_t end
, int prot
)
935 term_printf("%08x-%08x %08x %c%c%c\n",
936 *pstart
, end
, end
- *pstart
,
937 prot1
& PG_USER_MASK
? 'u' : '-',
939 prot1
& PG_RW_MASK
? 'w' : '-');
949 static void mem_info(void)
952 int l1
, l2
, prot
, last_prot
;
953 uint32_t pgd
, pde
, pte
, start
, end
;
959 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
960 term_printf("PG disabled\n");
963 pgd
= env
->cr
[3] & ~0xfff;
966 for(l1
= 0; l1
< 1024; l1
++) {
967 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
968 pde
= le32_to_cpu(pde
);
970 if (pde
& PG_PRESENT_MASK
) {
971 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
972 prot
= pde
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
973 mem_print(&start
, &last_prot
, end
, prot
);
975 for(l2
= 0; l2
< 1024; l2
++) {
976 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
978 pte
= le32_to_cpu(pte
);
979 end
= (l1
<< 22) + (l2
<< 12);
980 if (pte
& PG_PRESENT_MASK
) {
981 prot
= pte
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
985 mem_print(&start
, &last_prot
, end
, prot
);
990 mem_print(&start
, &last_prot
, end
, prot
);
996 static void do_info_kqemu(void)
1002 env
= mon_get_cpu();
1004 term_printf("No cpu initialized yet");
1007 val
= env
->kqemu_enabled
;
1008 term_printf("kqemu support: ");
1012 term_printf("disabled\n");
1015 term_printf("enabled for user code\n");
1018 term_printf("enabled for user and kernel code\n");
1022 term_printf("kqemu support: not compiled\n");
1026 #ifdef CONFIG_PROFILER
1030 int64_t kqemu_exec_count
;
1032 int64_t kqemu_ret_int_count
;
1033 int64_t kqemu_ret_excp_count
;
1034 int64_t kqemu_ret_intr_count
;
1036 static void do_info_profile(void)
1042 term_printf("async time %" PRId64
" (%0.3f)\n",
1043 dev_time
, dev_time
/ (double)ticks_per_sec
);
1044 term_printf("qemu time %" PRId64
" (%0.3f)\n",
1045 qemu_time
, qemu_time
/ (double)ticks_per_sec
);
1046 term_printf("kqemu time %" PRId64
" (%0.3f %0.1f%%) count=%" PRId64
" int=%" PRId64
" excp=%" PRId64
" intr=%" PRId64
"\n",
1047 kqemu_time
, kqemu_time
/ (double)ticks_per_sec
,
1048 kqemu_time
/ (double)total
* 100.0,
1050 kqemu_ret_int_count
,
1051 kqemu_ret_excp_count
,
1052 kqemu_ret_intr_count
);
1055 kqemu_exec_count
= 0;
1057 kqemu_ret_int_count
= 0;
1058 kqemu_ret_excp_count
= 0;
1059 kqemu_ret_intr_count
= 0;
1061 kqemu_record_dump();
1065 static void do_info_profile(void)
1067 term_printf("Internal profiler not compiled\n");
1071 /* Capture support */
1072 static LIST_HEAD (capture_list_head
, CaptureState
) capture_head
;
1074 static void do_info_capture (void)
1079 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1080 term_printf ("[%d]: ", i
);
1081 s
->ops
.info (s
->opaque
);
1085 static void do_stop_capture (int n
)
1090 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1092 s
->ops
.destroy (s
->opaque
);
1093 LIST_REMOVE (s
, entries
);
1101 int wav_start_capture (CaptureState
*s
, const char *path
, int freq
,
1102 int bits
, int nchannels
);
1104 static void do_wav_capture (const char *path
,
1105 int has_freq
, int freq
,
1106 int has_bits
, int bits
,
1107 int has_channels
, int nchannels
)
1111 s
= qemu_mallocz (sizeof (*s
));
1113 term_printf ("Not enough memory to add wave capture\n");
1117 freq
= has_freq
? freq
: 44100;
1118 bits
= has_bits
? bits
: 16;
1119 nchannels
= has_channels
? nchannels
: 2;
1121 if (wav_start_capture (s
, path
, freq
, bits
, nchannels
)) {
1122 term_printf ("Faied to add wave capture\n");
1125 LIST_INSERT_HEAD (&capture_head
, s
, entries
);
1129 static term_cmd_t term_cmds
[] = {
1130 { "help|?", "s?", do_help
,
1131 "[cmd]", "show the help" },
1132 { "commit", "s", do_commit
,
1133 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
1134 { "info", "s?", do_info
,
1135 "subcommand", "show various information about the system state" },
1136 { "q|quit", "", do_quit
,
1137 "", "quit the emulator" },
1138 { "eject", "-fB", do_eject
,
1139 "[-f] device", "eject a removable media (use -f to force it)" },
1140 { "change", "BF", do_change
,
1141 "device filename", "change a removable media" },
1142 { "screendump", "F", do_screen_dump
,
1143 "filename", "save screen into PPM image 'filename'" },
1144 { "log", "s", do_log
,
1145 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
1146 { "savevm", "s?", do_savevm
,
1147 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
1148 { "loadvm", "s", do_loadvm
,
1149 "tag|id", "restore a VM snapshot from its tag or id" },
1150 { "delvm", "s", do_delvm
,
1151 "tag|id", "delete a VM snapshot from its tag or id" },
1152 { "stop", "", do_stop
,
1153 "", "stop emulation", },
1154 { "c|cont", "", do_cont
,
1155 "", "resume emulation", },
1156 #ifdef CONFIG_GDBSTUB
1157 { "gdbserver", "i?", do_gdbserver
,
1158 "[port]", "start gdbserver session (default port=1234)", },
1160 { "x", "/l", do_memory_dump
,
1161 "/fmt addr", "virtual memory dump starting at 'addr'", },
1162 { "xp", "/l", do_physical_memory_dump
,
1163 "/fmt addr", "physical memory dump starting at 'addr'", },
1164 { "p|print", "/l", do_print
,
1165 "/fmt expr", "print expression value (use $reg for CPU register access)", },
1166 { "i", "/ii.", do_ioport_read
,
1167 "/fmt addr", "I/O port read" },
1169 { "sendkey", "s", do_send_key
,
1170 "keys", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1')" },
1171 { "system_reset", "", do_system_reset
,
1172 "", "reset the system" },
1173 { "system_powerdown", "", do_system_powerdown
,
1174 "", "send system power down event" },
1175 { "sum", "ii", do_sum
,
1176 "addr size", "compute the checksum of a memory region" },
1177 { "usb_add", "s", do_usb_add
,
1178 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1179 { "usb_del", "s", do_usb_del
,
1180 "device", "remove USB device 'bus.addr'" },
1181 { "cpu", "i", do_cpu_set
,
1182 "index", "set the default CPU" },
1183 { "mouse_move", "sss?", do_mouse_move
,
1184 "dx dy [dz]", "send mouse move events" },
1185 { "mouse_button", "i", do_mouse_button
,
1186 "state", "change mouse button state (1=L, 2=M, 4=R)" },
1188 { "wavcapture", "si?i?i?", do_wav_capture
,
1189 "path [frequency bits channels]",
1190 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1192 { "stopcapture", "i", do_stop_capture
,
1193 "capture index", "stop capture" },
1197 static term_cmd_t info_cmds
[] = {
1198 { "version", "", do_info_version
,
1199 "", "show the version of qemu" },
1200 { "network", "", do_info_network
,
1201 "", "show the network state" },
1202 { "block", "", do_info_block
,
1203 "", "show the block devices" },
1204 { "registers", "", do_info_registers
,
1205 "", "show the cpu registers" },
1206 { "cpus", "", do_info_cpus
,
1207 "", "show infos for each CPU" },
1208 { "history", "", do_info_history
,
1209 "", "show the command line history", },
1210 { "irq", "", irq_info
,
1211 "", "show the interrupts statistics (if available)", },
1212 { "pic", "", pic_info
,
1213 "", "show i8259 (PIC) state", },
1214 { "pci", "", pci_info
,
1215 "", "show PCI info", },
1216 #if defined(TARGET_I386)
1217 { "tlb", "", tlb_info
,
1218 "", "show virtual to physical memory mappings", },
1219 { "mem", "", mem_info
,
1220 "", "show the active virtual memory mappings", },
1222 { "jit", "", do_info_jit
,
1223 "", "show dynamic compiler info", },
1224 { "kqemu", "", do_info_kqemu
,
1225 "", "show kqemu information", },
1226 { "usb", "", usb_info
,
1227 "", "show guest USB devices", },
1228 { "usbhost", "", usb_host_info
,
1229 "", "show host USB devices", },
1230 { "profile", "", do_info_profile
,
1231 "", "show profiling information", },
1232 { "capture", "", do_info_capture
,
1233 "show capture information" },
1234 { "snapshots", "", do_info_snapshots
,
1235 "show the currently saved VM snapshots" },
1239 /*******************************************************************/
1241 static const char *pch
;
1242 static jmp_buf expr_env
;
1247 typedef struct MonitorDef
{
1250 target_long (*get_value
)(struct MonitorDef
*md
, int val
);
1254 #if defined(TARGET_I386)
1255 static target_long
monitor_get_pc (struct MonitorDef
*md
, int val
)
1257 CPUState
*env
= mon_get_cpu();
1260 return env
->eip
+ env
->segs
[R_CS
].base
;
1264 #if defined(TARGET_PPC)
1265 static target_long
monitor_get_ccr (struct MonitorDef
*md
, int val
)
1267 CPUState
*env
= mon_get_cpu();
1275 for (i
= 0; i
< 8; i
++)
1276 u
|= env
->crf
[i
] << (32 - (4 * i
));
1281 static target_long
monitor_get_msr (struct MonitorDef
*md
, int val
)
1283 CPUState
*env
= mon_get_cpu();
1286 return (env
->msr
[MSR_POW
] << MSR_POW
) |
1287 (env
->msr
[MSR_ILE
] << MSR_ILE
) |
1288 (env
->msr
[MSR_EE
] << MSR_EE
) |
1289 (env
->msr
[MSR_PR
] << MSR_PR
) |
1290 (env
->msr
[MSR_FP
] << MSR_FP
) |
1291 (env
->msr
[MSR_ME
] << MSR_ME
) |
1292 (env
->msr
[MSR_FE0
] << MSR_FE0
) |
1293 (env
->msr
[MSR_SE
] << MSR_SE
) |
1294 (env
->msr
[MSR_BE
] << MSR_BE
) |
1295 (env
->msr
[MSR_FE1
] << MSR_FE1
) |
1296 (env
->msr
[MSR_IP
] << MSR_IP
) |
1297 (env
->msr
[MSR_IR
] << MSR_IR
) |
1298 (env
->msr
[MSR_DR
] << MSR_DR
) |
1299 (env
->msr
[MSR_RI
] << MSR_RI
) |
1300 (env
->msr
[MSR_LE
] << MSR_LE
);
1303 static target_long
monitor_get_xer (struct MonitorDef
*md
, int val
)
1305 CPUState
*env
= mon_get_cpu();
1308 return (env
->xer
[XER_SO
] << XER_SO
) |
1309 (env
->xer
[XER_OV
] << XER_OV
) |
1310 (env
->xer
[XER_CA
] << XER_CA
) |
1311 (env
->xer
[XER_BC
] << XER_BC
);
1314 static target_long
monitor_get_decr (struct MonitorDef
*md
, int val
)
1316 CPUState
*env
= mon_get_cpu();
1319 return cpu_ppc_load_decr(env
);
1322 static target_long
monitor_get_tbu (struct MonitorDef
*md
, int val
)
1324 CPUState
*env
= mon_get_cpu();
1327 return cpu_ppc_load_tbu(env
);
1330 static target_long
monitor_get_tbl (struct MonitorDef
*md
, int val
)
1332 CPUState
*env
= mon_get_cpu();
1335 return cpu_ppc_load_tbl(env
);
1339 #if defined(TARGET_SPARC)
1340 #ifndef TARGET_SPARC64
1341 static target_long
monitor_get_psr (struct MonitorDef
*md
, int val
)
1343 CPUState
*env
= mon_get_cpu();
1346 return GET_PSR(env
);
1350 static target_long
monitor_get_reg(struct MonitorDef
*md
, int val
)
1352 CPUState
*env
= mon_get_cpu();
1355 return env
->regwptr
[val
];
1359 static MonitorDef monitor_defs
[] = {
1362 #define SEG(name, seg) \
1363 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
1364 { name ".base", offsetof(CPUState, segs[seg].base) },\
1365 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
1367 { "eax", offsetof(CPUState
, regs
[0]) },
1368 { "ecx", offsetof(CPUState
, regs
[1]) },
1369 { "edx", offsetof(CPUState
, regs
[2]) },
1370 { "ebx", offsetof(CPUState
, regs
[3]) },
1371 { "esp|sp", offsetof(CPUState
, regs
[4]) },
1372 { "ebp|fp", offsetof(CPUState
, regs
[5]) },
1373 { "esi", offsetof(CPUState
, regs
[6]) },
1374 { "edi", offsetof(CPUState
, regs
[7]) },
1375 #ifdef TARGET_X86_64
1376 { "r8", offsetof(CPUState
, regs
[8]) },
1377 { "r9", offsetof(CPUState
, regs
[9]) },
1378 { "r10", offsetof(CPUState
, regs
[10]) },
1379 { "r11", offsetof(CPUState
, regs
[11]) },
1380 { "r12", offsetof(CPUState
, regs
[12]) },
1381 { "r13", offsetof(CPUState
, regs
[13]) },
1382 { "r14", offsetof(CPUState
, regs
[14]) },
1383 { "r15", offsetof(CPUState
, regs
[15]) },
1385 { "eflags", offsetof(CPUState
, eflags
) },
1386 { "eip", offsetof(CPUState
, eip
) },
1393 { "pc", 0, monitor_get_pc
, },
1394 #elif defined(TARGET_PPC)
1395 { "r0", offsetof(CPUState
, gpr
[0]) },
1396 { "r1", offsetof(CPUState
, gpr
[1]) },
1397 { "r2", offsetof(CPUState
, gpr
[2]) },
1398 { "r3", offsetof(CPUState
, gpr
[3]) },
1399 { "r4", offsetof(CPUState
, gpr
[4]) },
1400 { "r5", offsetof(CPUState
, gpr
[5]) },
1401 { "r6", offsetof(CPUState
, gpr
[6]) },
1402 { "r7", offsetof(CPUState
, gpr
[7]) },
1403 { "r8", offsetof(CPUState
, gpr
[8]) },
1404 { "r9", offsetof(CPUState
, gpr
[9]) },
1405 { "r10", offsetof(CPUState
, gpr
[10]) },
1406 { "r11", offsetof(CPUState
, gpr
[11]) },
1407 { "r12", offsetof(CPUState
, gpr
[12]) },
1408 { "r13", offsetof(CPUState
, gpr
[13]) },
1409 { "r14", offsetof(CPUState
, gpr
[14]) },
1410 { "r15", offsetof(CPUState
, gpr
[15]) },
1411 { "r16", offsetof(CPUState
, gpr
[16]) },
1412 { "r17", offsetof(CPUState
, gpr
[17]) },
1413 { "r18", offsetof(CPUState
, gpr
[18]) },
1414 { "r19", offsetof(CPUState
, gpr
[19]) },
1415 { "r20", offsetof(CPUState
, gpr
[20]) },
1416 { "r21", offsetof(CPUState
, gpr
[21]) },
1417 { "r22", offsetof(CPUState
, gpr
[22]) },
1418 { "r23", offsetof(CPUState
, gpr
[23]) },
1419 { "r24", offsetof(CPUState
, gpr
[24]) },
1420 { "r25", offsetof(CPUState
, gpr
[25]) },
1421 { "r26", offsetof(CPUState
, gpr
[26]) },
1422 { "r27", offsetof(CPUState
, gpr
[27]) },
1423 { "r28", offsetof(CPUState
, gpr
[28]) },
1424 { "r29", offsetof(CPUState
, gpr
[29]) },
1425 { "r30", offsetof(CPUState
, gpr
[30]) },
1426 { "r31", offsetof(CPUState
, gpr
[31]) },
1427 { "nip|pc", offsetof(CPUState
, nip
) },
1428 { "lr", offsetof(CPUState
, lr
) },
1429 { "ctr", offsetof(CPUState
, ctr
) },
1430 { "decr", 0, &monitor_get_decr
, },
1431 { "ccr", 0, &monitor_get_ccr
, },
1432 { "msr", 0, &monitor_get_msr
, },
1433 { "xer", 0, &monitor_get_xer
, },
1434 { "tbu", 0, &monitor_get_tbu
, },
1435 { "tbl", 0, &monitor_get_tbl
, },
1436 { "sdr1", offsetof(CPUState
, sdr1
) },
1437 { "sr0", offsetof(CPUState
, sr
[0]) },
1438 { "sr1", offsetof(CPUState
, sr
[1]) },
1439 { "sr2", offsetof(CPUState
, sr
[2]) },
1440 { "sr3", offsetof(CPUState
, sr
[3]) },
1441 { "sr4", offsetof(CPUState
, sr
[4]) },
1442 { "sr5", offsetof(CPUState
, sr
[5]) },
1443 { "sr6", offsetof(CPUState
, sr
[6]) },
1444 { "sr7", offsetof(CPUState
, sr
[7]) },
1445 { "sr8", offsetof(CPUState
, sr
[8]) },
1446 { "sr9", offsetof(CPUState
, sr
[9]) },
1447 { "sr10", offsetof(CPUState
, sr
[10]) },
1448 { "sr11", offsetof(CPUState
, sr
[11]) },
1449 { "sr12", offsetof(CPUState
, sr
[12]) },
1450 { "sr13", offsetof(CPUState
, sr
[13]) },
1451 { "sr14", offsetof(CPUState
, sr
[14]) },
1452 { "sr15", offsetof(CPUState
, sr
[15]) },
1453 /* Too lazy to put BATs and SPRs ... */
1454 #elif defined(TARGET_SPARC)
1455 { "g0", offsetof(CPUState
, gregs
[0]) },
1456 { "g1", offsetof(CPUState
, gregs
[1]) },
1457 { "g2", offsetof(CPUState
, gregs
[2]) },
1458 { "g3", offsetof(CPUState
, gregs
[3]) },
1459 { "g4", offsetof(CPUState
, gregs
[4]) },
1460 { "g5", offsetof(CPUState
, gregs
[5]) },
1461 { "g6", offsetof(CPUState
, gregs
[6]) },
1462 { "g7", offsetof(CPUState
, gregs
[7]) },
1463 { "o0", 0, monitor_get_reg
},
1464 { "o1", 1, monitor_get_reg
},
1465 { "o2", 2, monitor_get_reg
},
1466 { "o3", 3, monitor_get_reg
},
1467 { "o4", 4, monitor_get_reg
},
1468 { "o5", 5, monitor_get_reg
},
1469 { "o6", 6, monitor_get_reg
},
1470 { "o7", 7, monitor_get_reg
},
1471 { "l0", 8, monitor_get_reg
},
1472 { "l1", 9, monitor_get_reg
},
1473 { "l2", 10, monitor_get_reg
},
1474 { "l3", 11, monitor_get_reg
},
1475 { "l4", 12, monitor_get_reg
},
1476 { "l5", 13, monitor_get_reg
},
1477 { "l6", 14, monitor_get_reg
},
1478 { "l7", 15, monitor_get_reg
},
1479 { "i0", 16, monitor_get_reg
},
1480 { "i1", 17, monitor_get_reg
},
1481 { "i2", 18, monitor_get_reg
},
1482 { "i3", 19, monitor_get_reg
},
1483 { "i4", 20, monitor_get_reg
},
1484 { "i5", 21, monitor_get_reg
},
1485 { "i6", 22, monitor_get_reg
},
1486 { "i7", 23, monitor_get_reg
},
1487 { "pc", offsetof(CPUState
, pc
) },
1488 { "npc", offsetof(CPUState
, npc
) },
1489 { "y", offsetof(CPUState
, y
) },
1490 #ifndef TARGET_SPARC64
1491 { "psr", 0, &monitor_get_psr
, },
1492 { "wim", offsetof(CPUState
, wim
) },
1494 { "tbr", offsetof(CPUState
, tbr
) },
1495 { "fsr", offsetof(CPUState
, fsr
) },
1496 { "f0", offsetof(CPUState
, fpr
[0]) },
1497 { "f1", offsetof(CPUState
, fpr
[1]) },
1498 { "f2", offsetof(CPUState
, fpr
[2]) },
1499 { "f3", offsetof(CPUState
, fpr
[3]) },
1500 { "f4", offsetof(CPUState
, fpr
[4]) },
1501 { "f5", offsetof(CPUState
, fpr
[5]) },
1502 { "f6", offsetof(CPUState
, fpr
[6]) },
1503 { "f7", offsetof(CPUState
, fpr
[7]) },
1504 { "f8", offsetof(CPUState
, fpr
[8]) },
1505 { "f9", offsetof(CPUState
, fpr
[9]) },
1506 { "f10", offsetof(CPUState
, fpr
[10]) },
1507 { "f11", offsetof(CPUState
, fpr
[11]) },
1508 { "f12", offsetof(CPUState
, fpr
[12]) },
1509 { "f13", offsetof(CPUState
, fpr
[13]) },
1510 { "f14", offsetof(CPUState
, fpr
[14]) },
1511 { "f15", offsetof(CPUState
, fpr
[15]) },
1512 { "f16", offsetof(CPUState
, fpr
[16]) },
1513 { "f17", offsetof(CPUState
, fpr
[17]) },
1514 { "f18", offsetof(CPUState
, fpr
[18]) },
1515 { "f19", offsetof(CPUState
, fpr
[19]) },
1516 { "f20", offsetof(CPUState
, fpr
[20]) },
1517 { "f21", offsetof(CPUState
, fpr
[21]) },
1518 { "f22", offsetof(CPUState
, fpr
[22]) },
1519 { "f23", offsetof(CPUState
, fpr
[23]) },
1520 { "f24", offsetof(CPUState
, fpr
[24]) },
1521 { "f25", offsetof(CPUState
, fpr
[25]) },
1522 { "f26", offsetof(CPUState
, fpr
[26]) },
1523 { "f27", offsetof(CPUState
, fpr
[27]) },
1524 { "f28", offsetof(CPUState
, fpr
[28]) },
1525 { "f29", offsetof(CPUState
, fpr
[29]) },
1526 { "f30", offsetof(CPUState
, fpr
[30]) },
1527 { "f31", offsetof(CPUState
, fpr
[31]) },
1528 #ifdef TARGET_SPARC64
1529 { "f32", offsetof(CPUState
, fpr
[32]) },
1530 { "f34", offsetof(CPUState
, fpr
[34]) },
1531 { "f36", offsetof(CPUState
, fpr
[36]) },
1532 { "f38", offsetof(CPUState
, fpr
[38]) },
1533 { "f40", offsetof(CPUState
, fpr
[40]) },
1534 { "f42", offsetof(CPUState
, fpr
[42]) },
1535 { "f44", offsetof(CPUState
, fpr
[44]) },
1536 { "f46", offsetof(CPUState
, fpr
[46]) },
1537 { "f48", offsetof(CPUState
, fpr
[48]) },
1538 { "f50", offsetof(CPUState
, fpr
[50]) },
1539 { "f52", offsetof(CPUState
, fpr
[52]) },
1540 { "f54", offsetof(CPUState
, fpr
[54]) },
1541 { "f56", offsetof(CPUState
, fpr
[56]) },
1542 { "f58", offsetof(CPUState
, fpr
[58]) },
1543 { "f60", offsetof(CPUState
, fpr
[60]) },
1544 { "f62", offsetof(CPUState
, fpr
[62]) },
1545 { "asi", offsetof(CPUState
, asi
) },
1546 { "pstate", offsetof(CPUState
, pstate
) },
1547 { "cansave", offsetof(CPUState
, cansave
) },
1548 { "canrestore", offsetof(CPUState
, canrestore
) },
1549 { "otherwin", offsetof(CPUState
, otherwin
) },
1550 { "wstate", offsetof(CPUState
, wstate
) },
1551 { "cleanwin", offsetof(CPUState
, cleanwin
) },
1552 { "fprs", offsetof(CPUState
, fprs
) },
1558 static void expr_error(const char *fmt
)
1562 longjmp(expr_env
, 1);
1565 /* return 0 if OK, -1 if not found, -2 if no CPU defined */
1566 static int get_monitor_def(target_long
*pval
, const char *name
)
1571 for(md
= monitor_defs
; md
->name
!= NULL
; md
++) {
1572 if (compare_cmd(name
, md
->name
)) {
1573 if (md
->get_value
) {
1574 *pval
= md
->get_value(md
, md
->offset
);
1576 CPUState
*env
= mon_get_cpu();
1579 ptr
= (uint8_t *)env
+ md
->offset
;
1582 *pval
= *(int32_t *)ptr
;
1585 *pval
= *(target_long
*)ptr
;
1598 static void next(void)
1602 while (isspace(*pch
))
1607 static target_long
expr_sum(void);
1609 static target_long
expr_unary(void)
1632 expr_error("')' expected");
1639 expr_error("character constant expected");
1643 expr_error("missing terminating \' character");
1652 while ((*pch
>= 'a' && *pch
<= 'z') ||
1653 (*pch
>= 'A' && *pch
<= 'Z') ||
1654 (*pch
>= '0' && *pch
<= '9') ||
1655 *pch
== '_' || *pch
== '.') {
1656 if ((q
- buf
) < sizeof(buf
) - 1)
1660 while (isspace(*pch
))
1663 ret
= get_monitor_def(&n
, buf
);
1665 expr_error("unknown register");
1667 expr_error("no cpu defined");
1671 expr_error("unexpected end of expression");
1675 #if TARGET_LONG_BITS == 64
1676 n
= strtoull(pch
, &p
, 0);
1678 n
= strtoul(pch
, &p
, 0);
1681 expr_error("invalid char in expression");
1684 while (isspace(*pch
))
1692 static target_long
expr_prod(void)
1694 target_long val
, val2
;
1700 if (op
!= '*' && op
!= '/' && op
!= '%')
1703 val2
= expr_unary();
1712 expr_error("division by zero");
1723 static target_long
expr_logic(void)
1725 target_long val
, val2
;
1731 if (op
!= '&' && op
!= '|' && op
!= '^')
1751 static target_long
expr_sum(void)
1753 target_long val
, val2
;
1759 if (op
!= '+' && op
!= '-')
1762 val2
= expr_logic();
1771 static int get_expr(target_long
*pval
, const char **pp
)
1774 if (setjmp(expr_env
)) {
1778 while (isspace(*pch
))
1785 static int get_str(char *buf
, int buf_size
, const char **pp
)
1803 while (*p
!= '\0' && *p
!= '\"') {
1819 qemu_printf("unsupported escape code: '\\%c'\n", c
);
1822 if ((q
- buf
) < buf_size
- 1) {
1826 if ((q
- buf
) < buf_size
- 1) {
1833 qemu_printf("unterminated string\n");
1838 while (*p
!= '\0' && !isspace(*p
)) {
1839 if ((q
- buf
) < buf_size
- 1) {
1850 static int default_fmt_format
= 'x';
1851 static int default_fmt_size
= 4;
1855 static void monitor_handle_command(const char *cmdline
)
1857 const char *p
, *pstart
, *typestr
;
1859 int c
, nb_args
, len
, i
, has_arg
;
1863 void *str_allocated
[MAX_ARGS
];
1864 void *args
[MAX_ARGS
];
1867 term_printf("command='%s'\n", cmdline
);
1870 /* extract the command name */
1878 while (*p
!= '\0' && *p
!= '/' && !isspace(*p
))
1881 if (len
> sizeof(cmdname
) - 1)
1882 len
= sizeof(cmdname
) - 1;
1883 memcpy(cmdname
, pstart
, len
);
1884 cmdname
[len
] = '\0';
1886 /* find the command */
1887 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
1888 if (compare_cmd(cmdname
, cmd
->name
))
1891 term_printf("unknown command: '%s'\n", cmdname
);
1895 for(i
= 0; i
< MAX_ARGS
; i
++)
1896 str_allocated
[i
] = NULL
;
1898 /* parse the parameters */
1899 typestr
= cmd
->args_type
;
1916 if (*typestr
== '?') {
1919 /* no optional string: NULL argument */
1924 ret
= get_str(buf
, sizeof(buf
), &p
);
1928 term_printf("%s: filename expected\n", cmdname
);
1931 term_printf("%s: block device name expected\n", cmdname
);
1934 term_printf("%s: string expected\n", cmdname
);
1939 str
= qemu_malloc(strlen(buf
) + 1);
1941 str_allocated
[nb_args
] = str
;
1943 if (nb_args
>= MAX_ARGS
) {
1945 term_printf("%s: too many arguments\n", cmdname
);
1948 args
[nb_args
++] = str
;
1953 int count
, format
, size
;
1963 while (isdigit(*p
)) {
1964 count
= count
* 10 + (*p
- '0');
2002 if (*p
!= '\0' && !isspace(*p
)) {
2003 term_printf("invalid char in format: '%c'\n", *p
);
2007 format
= default_fmt_format
;
2008 if (format
!= 'i') {
2009 /* for 'i', not specifying a size gives -1 as size */
2011 size
= default_fmt_size
;
2013 default_fmt_size
= size
;
2014 default_fmt_format
= format
;
2017 format
= default_fmt_format
;
2018 if (format
!= 'i') {
2019 size
= default_fmt_size
;
2024 if (nb_args
+ 3 > MAX_ARGS
)
2026 args
[nb_args
++] = (void*)count
;
2027 args
[nb_args
++] = (void*)format
;
2028 args
[nb_args
++] = (void*)size
;
2037 if (*typestr
== '?' || *typestr
== '.') {
2038 if (*typestr
== '?') {
2054 if (nb_args
>= MAX_ARGS
)
2056 args
[nb_args
++] = (void *)has_arg
;
2058 if (nb_args
>= MAX_ARGS
)
2064 if (get_expr(&val
, &p
))
2068 if (nb_args
>= MAX_ARGS
)
2070 args
[nb_args
++] = (void *)(int)val
;
2072 if ((nb_args
+ 1) >= MAX_ARGS
)
2074 #if TARGET_LONG_BITS == 64
2075 args
[nb_args
++] = (void *)(int)((val
>> 32) & 0xffffffff);
2077 args
[nb_args
++] = (void *)0;
2079 args
[nb_args
++] = (void *)(int)(val
& 0xffffffff);
2097 term_printf("%s: unsupported option -%c\n",
2104 if (nb_args
>= MAX_ARGS
)
2106 args
[nb_args
++] = (void *)has_option
;
2111 term_printf("%s: unknown type '%c'\n", cmdname
, c
);
2115 /* check that all arguments were parsed */
2119 term_printf("%s: extraneous characters at the end of line\n",
2129 cmd
->handler(args
[0]);
2132 cmd
->handler(args
[0], args
[1]);
2135 cmd
->handler(args
[0], args
[1], args
[2]);
2138 cmd
->handler(args
[0], args
[1], args
[2], args
[3]);
2141 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4]);
2144 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5]);
2147 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5], args
[6]);
2150 term_printf("unsupported number of arguments: %d\n", nb_args
);
2154 for(i
= 0; i
< MAX_ARGS
; i
++)
2155 qemu_free(str_allocated
[i
]);
2159 static void cmd_completion(const char *name
, const char *list
)
2161 const char *p
, *pstart
;
2170 p
= pstart
+ strlen(pstart
);
2172 if (len
> sizeof(cmd
) - 2)
2173 len
= sizeof(cmd
) - 2;
2174 memcpy(cmd
, pstart
, len
);
2176 if (name
[0] == '\0' || !strncmp(name
, cmd
, strlen(name
))) {
2177 add_completion(cmd
);
2185 static void file_completion(const char *input
)
2190 char file
[1024], file_prefix
[1024];
2194 p
= strrchr(input
, '/');
2197 pstrcpy(file_prefix
, sizeof(file_prefix
), input
);
2200 input_path_len
= p
- input
+ 1;
2201 memcpy(path
, input
, input_path_len
);
2202 if (input_path_len
> sizeof(path
) - 1)
2203 input_path_len
= sizeof(path
) - 1;
2204 path
[input_path_len
] = '\0';
2205 pstrcpy(file_prefix
, sizeof(file_prefix
), p
+ 1);
2207 #ifdef DEBUG_COMPLETION
2208 term_printf("input='%s' path='%s' prefix='%s'\n", input
, path
, file_prefix
);
2210 ffs
= opendir(path
);
2218 if (strstart(d
->d_name
, file_prefix
, NULL
)) {
2219 memcpy(file
, input
, input_path_len
);
2220 strcpy(file
+ input_path_len
, d
->d_name
);
2221 /* stat the file to find out if it's a directory.
2222 * In that case add a slash to speed up typing long paths
2225 if(S_ISDIR(sb
.st_mode
))
2227 add_completion(file
);
2233 static void block_completion_it(void *opaque
, const char *name
)
2235 const char *input
= opaque
;
2237 if (input
[0] == '\0' ||
2238 !strncmp(name
, (char *)input
, strlen(input
))) {
2239 add_completion(name
);
2243 /* NOTE: this parser is an approximate form of the real command parser */
2244 static void parse_cmdline(const char *cmdline
,
2245 int *pnb_args
, char **args
)
2258 if (nb_args
>= MAX_ARGS
)
2260 ret
= get_str(buf
, sizeof(buf
), &p
);
2261 args
[nb_args
] = qemu_strdup(buf
);
2266 *pnb_args
= nb_args
;
2269 void readline_find_completion(const char *cmdline
)
2271 const char *cmdname
;
2272 char *args
[MAX_ARGS
];
2273 int nb_args
, i
, len
;
2274 const char *ptype
, *str
;
2278 parse_cmdline(cmdline
, &nb_args
, args
);
2279 #ifdef DEBUG_COMPLETION
2280 for(i
= 0; i
< nb_args
; i
++) {
2281 term_printf("arg%d = '%s'\n", i
, (char *)args
[i
]);
2285 /* if the line ends with a space, it means we want to complete the
2287 len
= strlen(cmdline
);
2288 if (len
> 0 && isspace(cmdline
[len
- 1])) {
2289 if (nb_args
>= MAX_ARGS
)
2291 args
[nb_args
++] = qemu_strdup("");
2294 /* command completion */
2299 completion_index
= strlen(cmdname
);
2300 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2301 cmd_completion(cmdname
, cmd
->name
);
2304 /* find the command */
2305 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2306 if (compare_cmd(args
[0], cmd
->name
))
2311 ptype
= cmd
->args_type
;
2312 for(i
= 0; i
< nb_args
- 2; i
++) {
2313 if (*ptype
!= '\0') {
2315 while (*ptype
== '?')
2319 str
= args
[nb_args
- 1];
2322 /* file completion */
2323 completion_index
= strlen(str
);
2324 file_completion(str
);
2327 /* block device name completion */
2328 completion_index
= strlen(str
);
2329 bdrv_iterate(block_completion_it
, (void *)str
);
2332 /* XXX: more generic ? */
2333 if (!strcmp(cmd
->name
, "info")) {
2334 completion_index
= strlen(str
);
2335 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
2336 cmd_completion(str
, cmd
->name
);
2338 } else if (!strcmp(cmd
->name
, "sendkey")) {
2339 completion_index
= strlen(str
);
2340 for(key
= key_defs
; key
->name
!= NULL
; key
++) {
2341 cmd_completion(str
, key
->name
);
2349 for(i
= 0; i
< nb_args
; i
++)
2353 static int term_can_read(void *opaque
)
2358 static void term_read(void *opaque
, const uint8_t *buf
, int size
)
2361 for(i
= 0; i
< size
; i
++)
2362 readline_handle_byte(buf
[i
]);
2365 static void monitor_start_input(void);
2367 static void monitor_handle_command1(void *opaque
, const char *cmdline
)
2369 monitor_handle_command(cmdline
);
2370 monitor_start_input();
2373 static void monitor_start_input(void)
2375 readline_start("(qemu) ", 0, monitor_handle_command1
, NULL
);
2378 void monitor_init(CharDriverState
*hd
, int show_banner
)
2382 term_printf("QEMU %s monitor - type 'help' for more information\n",
2385 qemu_chr_add_read_handler(hd
, term_can_read
, term_read
, NULL
);
2386 monitor_start_input();
2389 /* XXX: use threads ? */
2390 /* modal monitor readline */
2391 static int monitor_readline_started
;
2392 static char *monitor_readline_buf
;
2393 static int monitor_readline_buf_size
;
2395 static void monitor_readline_cb(void *opaque
, const char *input
)
2397 pstrcpy(monitor_readline_buf
, monitor_readline_buf_size
, input
);
2398 monitor_readline_started
= 0;
2401 void monitor_readline(const char *prompt
, int is_password
,
2402 char *buf
, int buf_size
)
2405 qemu_chr_send_event(monitor_hd
, CHR_EVENT_FOCUS
);
2407 readline_start(prompt
, is_password
, monitor_readline_cb
, NULL
);
2408 monitor_readline_buf
= buf
;
2409 monitor_readline_buf_size
= buf_size
;
2410 monitor_readline_started
= 1;
2411 while (monitor_readline_started
) {