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
)
85 term_outbuf
[term_outbuf_index
++] = c
;
86 if (term_outbuf_index
>= sizeof(term_outbuf
) ||
92 void term_vprintf(const char *fmt
, va_list ap
)
95 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
99 void term_printf(const char *fmt
, ...)
103 term_vprintf(fmt
, ap
);
107 static int monitor_fprintf(FILE *stream
, const char *fmt
, ...)
111 term_vprintf(fmt
, ap
);
116 static int compare_cmd(const char *name
, const char *list
)
118 const char *p
, *pstart
;
126 p
= pstart
+ strlen(pstart
);
127 if ((p
- pstart
) == len
&& !memcmp(pstart
, name
, len
))
136 static void help_cmd1(term_cmd_t
*cmds
, const char *prefix
, const char *name
)
140 for(cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
141 if (!name
|| !strcmp(name
, cmd
->name
))
142 term_printf("%s%s %s -- %s\n", prefix
, cmd
->name
, cmd
->params
, cmd
->help
);
146 static void help_cmd(const char *name
)
148 if (name
&& !strcmp(name
, "info")) {
149 help_cmd1(info_cmds
, "info ", NULL
);
151 help_cmd1(term_cmds
, "", name
);
152 if (name
&& !strcmp(name
, "log")) {
154 term_printf("Log items (comma separated):\n");
155 term_printf("%-10s %s\n", "none", "remove all logs");
156 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
157 term_printf("%-10s %s\n", item
->name
, item
->help
);
163 static void do_help(const char *name
)
168 static void do_commit(void)
172 for (i
= 0; i
< MAX_DISKS
; i
++) {
174 bdrv_commit(bs_table
[i
]);
179 static void do_info(const char *item
)
185 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
186 if (compare_cmd(item
, cmd
->name
))
196 static void do_info_version(void)
198 term_printf("%s\n", QEMU_VERSION
);
201 static void do_info_block(void)
206 /* get the current CPU defined by the user */
207 int mon_set_cpu(int cpu_index
)
211 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
212 if (env
->cpu_index
== cpu_index
) {
220 CPUState
*mon_get_cpu(void)
228 static void do_info_registers(void)
235 cpu_dump_state(env
, NULL
, monitor_fprintf
,
238 cpu_dump_state(env
, NULL
, monitor_fprintf
,
243 static void do_info_cpus(void)
247 /* just to set the default cpu if not already done */
250 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
251 term_printf("%c CPU #%d:",
252 (env
== mon_cpu
) ? '*' : ' ',
254 #if defined(TARGET_I386)
255 term_printf(" pc=0x" TARGET_FMT_lx
, env
->eip
+ env
->segs
[R_CS
].base
);
256 if (env
->hflags
& HF_HALTED_MASK
)
257 term_printf(" (halted)");
258 #elif defined(TARGET_PPC)
259 term_printf(" nip=0x" TARGET_FMT_lx
, env
->nip
);
261 term_printf(" (halted)");
267 static void do_cpu_set(int index
)
269 if (mon_set_cpu(index
) < 0)
270 term_printf("Invalid CPU index\n");
273 static void do_info_jit(void)
275 dump_exec_info(NULL
, monitor_fprintf
);
278 static void do_info_history (void)
285 str
= readline_get_history(i
);
288 term_printf("%d: '%s'\n", i
, str
);
293 static void do_quit(void)
301 static int eject_device(BlockDriverState
*bs
, int force
)
303 if (bdrv_is_inserted(bs
)) {
305 if (!bdrv_is_removable(bs
)) {
306 term_printf("device is not removable\n");
309 if (bdrv_is_locked(bs
)) {
310 term_printf("device is locked\n");
319 static void do_eject(int force
, const char *filename
)
321 BlockDriverState
*bs
;
323 bs
= bdrv_find(filename
);
325 term_printf("device not found\n");
328 eject_device(bs
, force
);
331 static void do_change(const char *device
, const char *filename
)
333 BlockDriverState
*bs
;
337 bs
= bdrv_find(device
);
339 term_printf("device not found\n");
342 if (eject_device(bs
, 0) < 0)
344 bdrv_open(bs
, filename
, 0);
345 if (bdrv_is_encrypted(bs
)) {
346 term_printf("%s is encrypted.\n", device
);
347 for(i
= 0; i
< 3; i
++) {
348 monitor_readline("Password: ", 1, password
, sizeof(password
));
349 if (bdrv_set_key(bs
, password
) == 0)
351 term_printf("invalid password\n");
356 static void do_screen_dump(const char *filename
)
358 vga_screen_dump(filename
);
361 static void do_log(const char *items
)
365 if (!strcmp(items
, "none")) {
368 mask
= cpu_str_to_log_mask(items
);
377 static void do_savevm(const char *filename
)
379 if (qemu_savevm(filename
) < 0)
380 term_printf("I/O error when saving VM to '%s'\n", filename
);
383 static void do_loadvm(const char *filename
)
385 if (qemu_loadvm(filename
) < 0)
386 term_printf("I/O error when loading VM from '%s'\n", filename
);
389 static void do_stop(void)
391 vm_stop(EXCP_INTERRUPT
);
394 static void do_cont(void)
399 #ifdef CONFIG_GDBSTUB
400 static void do_gdbserver(int has_port
, int port
)
403 port
= DEFAULT_GDBSTUB_PORT
;
404 if (gdbserver_start(port
) < 0) {
405 qemu_printf("Could not open gdbserver socket on port %d\n", port
);
407 qemu_printf("Waiting gdb connection on port %d\n", port
);
412 static void term_printc(int c
)
429 if (c
>= 32 && c
<= 126) {
430 term_printf("%c", c
);
432 term_printf("\\x%02x", c
);
439 static void memory_dump(int count
, int format
, int wsize
,
440 target_ulong addr
, int is_physical
)
443 int nb_per_line
, l
, line_size
, i
, max_digits
, len
;
451 if (!env
&& !is_physical
)
456 } else if (wsize
== 4) {
459 /* as default we use the current CS size */
461 if (env
&& !(env
->segs
[R_CS
].flags
& DESC_B_MASK
))
465 monitor_disas(env
, addr
, count
, is_physical
, flags
);
474 nb_per_line
= line_size
/ wsize
;
479 max_digits
= (wsize
* 8 + 2) / 3;
483 max_digits
= (wsize
* 8) / 4;
487 max_digits
= (wsize
* 8 * 10 + 32) / 33;
495 term_printf(TARGET_FMT_lx
":", addr
);
500 cpu_physical_memory_rw(addr
, buf
, l
, 0);
505 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
512 v
= ldub_raw(buf
+ i
);
515 v
= lduw_raw(buf
+ i
);
518 v
= (uint32_t)ldl_raw(buf
+ i
);
521 v
= ldq_raw(buf
+ i
);
527 term_printf("%#*llo", max_digits
, v
);
530 term_printf("0x%0*llx", max_digits
, v
);
533 term_printf("%*llu", max_digits
, v
);
536 term_printf("%*lld", max_digits
, v
);
550 #if TARGET_LONG_BITS == 64
551 #define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
553 #define GET_TLONG(h, l) (l)
556 static void do_memory_dump(int count
, int format
, int size
,
557 uint32_t addrh
, uint32_t addrl
)
559 target_long addr
= GET_TLONG(addrh
, addrl
);
560 memory_dump(count
, format
, size
, addr
, 0);
563 static void do_physical_memory_dump(int count
, int format
, int size
,
564 uint32_t addrh
, uint32_t addrl
)
567 target_long addr
= GET_TLONG(addrh
, addrl
);
568 memory_dump(count
, format
, size
, addr
, 1);
571 static void do_print(int count
, int format
, int size
, unsigned int valh
, unsigned int vall
)
573 target_long val
= GET_TLONG(valh
, vall
);
574 #if TARGET_LONG_BITS == 32
577 term_printf("%#o", val
);
580 term_printf("%#x", val
);
583 term_printf("%u", val
);
587 term_printf("%d", val
);
596 term_printf("%#llo", val
);
599 term_printf("%#llx", val
);
602 term_printf("%llu", val
);
606 term_printf("%lld", val
);
616 static void do_sum(uint32_t start
, uint32_t size
)
623 for(addr
= start
; addr
< (start
+ size
); addr
++) {
624 cpu_physical_memory_rw(addr
, buf
, 1, 0);
625 /* BSD sum algorithm ('sum' Unix command) */
626 sum
= (sum
>> 1) | (sum
<< 15);
629 term_printf("%05d\n", sum
);
637 static const KeyDef key_defs
[] = {
660 { 0x0e, "backspace" },
695 { 0x3a, "caps_lock" },
706 { 0x45, "num_lock" },
707 { 0x46, "scroll_lock" },
731 static int get_keycode(const char *key
)
735 for(p
= key_defs
; p
->name
!= NULL
; p
++) {
736 if (!strcmp(key
, p
->name
))
742 static void do_send_key(const char *string
)
745 uint8_t keycodes
[16];
747 int nb_keycodes
, keycode
, i
;
753 while (*p
!= '\0' && *p
!= '-') {
754 if ((q
- keybuf
) < sizeof(keybuf
) - 1) {
760 keycode
= get_keycode(keybuf
);
762 term_printf("unknown key: '%s'\n", keybuf
);
765 keycodes
[nb_keycodes
++] = keycode
;
770 /* key down events */
771 for(i
= 0; i
< nb_keycodes
; i
++) {
772 keycode
= keycodes
[i
];
774 kbd_put_keycode(0xe0);
775 kbd_put_keycode(keycode
& 0x7f);
778 for(i
= nb_keycodes
- 1; i
>= 0; i
--) {
779 keycode
= keycodes
[i
];
781 kbd_put_keycode(0xe0);
782 kbd_put_keycode(keycode
| 0x80);
786 static void do_ioport_read(int count
, int format
, int size
, int addr
, int has_index
, int index
)
792 cpu_outb(NULL
, addr
& 0xffff, index
& 0xff);
800 val
= cpu_inb(NULL
, addr
);
804 val
= cpu_inw(NULL
, addr
);
808 val
= cpu_inl(NULL
, addr
);
812 term_printf("port%c[0x%04x] = %#0*x\n",
813 suffix
, addr
, size
* 2, val
);
816 static void do_system_reset(void)
818 qemu_system_reset_request();
821 static void do_system_powerdown(void)
823 qemu_system_powerdown_request();
826 #if defined(TARGET_I386)
827 static void print_pte(uint32_t addr
, uint32_t pte
, uint32_t mask
)
829 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
832 pte
& PG_GLOBAL_MASK
? 'G' : '-',
833 pte
& PG_PSE_MASK
? 'P' : '-',
834 pte
& PG_DIRTY_MASK
? 'D' : '-',
835 pte
& PG_ACCESSED_MASK
? 'A' : '-',
836 pte
& PG_PCD_MASK
? 'C' : '-',
837 pte
& PG_PWT_MASK
? 'T' : '-',
838 pte
& PG_USER_MASK
? 'U' : '-',
839 pte
& PG_RW_MASK
? 'W' : '-');
842 static void tlb_info(void)
846 uint32_t pgd
, pde
, pte
;
852 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
853 term_printf("PG disabled\n");
856 pgd
= env
->cr
[3] & ~0xfff;
857 for(l1
= 0; l1
< 1024; l1
++) {
858 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
859 pde
= le32_to_cpu(pde
);
860 if (pde
& PG_PRESENT_MASK
) {
861 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
862 print_pte((l1
<< 22), pde
, ~((1 << 20) - 1));
864 for(l2
= 0; l2
< 1024; l2
++) {
865 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
867 pte
= le32_to_cpu(pte
);
868 if (pte
& PG_PRESENT_MASK
) {
869 print_pte((l1
<< 22) + (l2
<< 12),
879 static void mem_print(uint32_t *pstart
, int *plast_prot
,
880 uint32_t end
, int prot
)
886 term_printf("%08x-%08x %08x %c%c%c\n",
887 *pstart
, end
, end
- *pstart
,
888 prot1
& PG_USER_MASK
? 'u' : '-',
890 prot1
& PG_RW_MASK
? 'w' : '-');
900 static void mem_info(void)
903 int l1
, l2
, prot
, last_prot
;
904 uint32_t pgd
, pde
, pte
, start
, end
;
910 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
911 term_printf("PG disabled\n");
914 pgd
= env
->cr
[3] & ~0xfff;
917 for(l1
= 0; l1
< 1024; l1
++) {
918 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
919 pde
= le32_to_cpu(pde
);
921 if (pde
& PG_PRESENT_MASK
) {
922 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
923 prot
= pde
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
924 mem_print(&start
, &last_prot
, end
, prot
);
926 for(l2
= 0; l2
< 1024; l2
++) {
927 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
929 pte
= le32_to_cpu(pte
);
930 end
= (l1
<< 22) + (l2
<< 12);
931 if (pte
& PG_PRESENT_MASK
) {
932 prot
= pte
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
936 mem_print(&start
, &last_prot
, end
, prot
);
941 mem_print(&start
, &last_prot
, end
, prot
);
947 static void do_info_kqemu(void)
955 term_printf("No cpu initialized yet");
958 val
= env
->kqemu_enabled
;
959 term_printf("kqemu is %s\n", val
? "enabled" : "disabled");
961 term_printf("kqemu support is not compiled\n");
965 static term_cmd_t term_cmds
[] = {
966 { "help|?", "s?", do_help
,
967 "[cmd]", "show the help" },
968 { "commit", "", do_commit
,
969 "", "commit changes to the disk images (if -snapshot is used)" },
970 { "info", "s?", do_info
,
971 "subcommand", "show various information about the system state" },
972 { "q|quit", "", do_quit
,
973 "", "quit the emulator" },
974 { "eject", "-fB", do_eject
,
975 "[-f] device", "eject a removable media (use -f to force it)" },
976 { "change", "BF", do_change
,
977 "device filename", "change a removable media" },
978 { "screendump", "F", do_screen_dump
,
979 "filename", "save screen into PPM image 'filename'" },
980 { "log", "s", do_log
,
981 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
982 { "savevm", "F", do_savevm
,
983 "filename", "save the whole virtual machine state to 'filename'" },
984 { "loadvm", "F", do_loadvm
,
985 "filename", "restore the whole virtual machine state from 'filename'" },
986 { "stop", "", do_stop
,
987 "", "stop emulation", },
988 { "c|cont", "", do_cont
,
989 "", "resume emulation", },
990 #ifdef CONFIG_GDBSTUB
991 { "gdbserver", "i?", do_gdbserver
,
992 "[port]", "start gdbserver session (default port=1234)", },
994 { "x", "/l", do_memory_dump
,
995 "/fmt addr", "virtual memory dump starting at 'addr'", },
996 { "xp", "/l", do_physical_memory_dump
,
997 "/fmt addr", "physical memory dump starting at 'addr'", },
998 { "p|print", "/l", do_print
,
999 "/fmt expr", "print expression value (use $reg for CPU register access)", },
1000 { "i", "/ii.", do_ioport_read
,
1001 "/fmt addr", "I/O port read" },
1003 { "sendkey", "s", do_send_key
,
1004 "keys", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1')" },
1005 { "system_reset", "", do_system_reset
,
1006 "", "reset the system" },
1007 { "system_powerdown", "", do_system_powerdown
,
1008 "", "send system power down event" },
1009 { "sum", "ii", do_sum
,
1010 "addr size", "compute the checksum of a memory region" },
1011 { "usb_add", "s", do_usb_add
,
1012 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1013 { "usb_del", "s", do_usb_del
,
1014 "device", "remove USB device 'bus.addr'" },
1015 { "cpu", "i", do_cpu_set
,
1016 "index", "set the default CPU" },
1020 static term_cmd_t info_cmds
[] = {
1021 { "version", "", do_info_version
,
1022 "", "show the version of qemu" },
1023 { "network", "", do_info_network
,
1024 "", "show the network state" },
1025 { "block", "", do_info_block
,
1026 "", "show the block devices" },
1027 { "registers", "", do_info_registers
,
1028 "", "show the cpu registers" },
1029 { "cpus", "", do_info_cpus
,
1030 "", "show infos for each CPU" },
1031 { "history", "", do_info_history
,
1032 "", "show the command line history", },
1033 { "irq", "", irq_info
,
1034 "", "show the interrupts statistics (if available)", },
1035 { "pic", "", pic_info
,
1036 "", "show i8259 (PIC) state", },
1037 { "pci", "", pci_info
,
1038 "", "show PCI info", },
1039 #if defined(TARGET_I386)
1040 { "tlb", "", tlb_info
,
1041 "", "show virtual to physical memory mappings", },
1042 { "mem", "", mem_info
,
1043 "", "show the active virtual memory mappings", },
1045 { "jit", "", do_info_jit
,
1046 "", "show dynamic compiler info", },
1047 { "kqemu", "", do_info_kqemu
,
1048 "", "show kqemu information", },
1049 { "usb", "", usb_info
,
1050 "", "show guest USB devices", },
1051 { "usbhost", "", usb_host_info
,
1052 "", "show host USB devices", },
1056 /*******************************************************************/
1058 static const char *pch
;
1059 static jmp_buf expr_env
;
1064 typedef struct MonitorDef
{
1067 target_long (*get_value
)(struct MonitorDef
*md
, int val
);
1071 #if defined(TARGET_I386)
1072 static target_long
monitor_get_pc (struct MonitorDef
*md
, int val
)
1074 CPUState
*env
= mon_get_cpu();
1077 return env
->eip
+ env
->segs
[R_CS
].base
;
1081 #if defined(TARGET_PPC)
1082 static target_long
monitor_get_ccr (struct MonitorDef
*md
, int val
)
1084 CPUState
*env
= mon_get_cpu();
1092 for (i
= 0; i
< 8; i
++)
1093 u
|= env
->crf
[i
] << (32 - (4 * i
));
1098 static target_long
monitor_get_msr (struct MonitorDef
*md
, int val
)
1100 CPUState
*env
= mon_get_cpu();
1103 return (env
->msr
[MSR_POW
] << MSR_POW
) |
1104 (env
->msr
[MSR_ILE
] << MSR_ILE
) |
1105 (env
->msr
[MSR_EE
] << MSR_EE
) |
1106 (env
->msr
[MSR_PR
] << MSR_PR
) |
1107 (env
->msr
[MSR_FP
] << MSR_FP
) |
1108 (env
->msr
[MSR_ME
] << MSR_ME
) |
1109 (env
->msr
[MSR_FE0
] << MSR_FE0
) |
1110 (env
->msr
[MSR_SE
] << MSR_SE
) |
1111 (env
->msr
[MSR_BE
] << MSR_BE
) |
1112 (env
->msr
[MSR_FE1
] << MSR_FE1
) |
1113 (env
->msr
[MSR_IP
] << MSR_IP
) |
1114 (env
->msr
[MSR_IR
] << MSR_IR
) |
1115 (env
->msr
[MSR_DR
] << MSR_DR
) |
1116 (env
->msr
[MSR_RI
] << MSR_RI
) |
1117 (env
->msr
[MSR_LE
] << MSR_LE
);
1120 static target_long
monitor_get_xer (struct MonitorDef
*md
, int val
)
1122 CPUState
*env
= mon_get_cpu();
1125 return (env
->xer
[XER_SO
] << XER_SO
) |
1126 (env
->xer
[XER_OV
] << XER_OV
) |
1127 (env
->xer
[XER_CA
] << XER_CA
) |
1128 (env
->xer
[XER_BC
] << XER_BC
);
1131 static target_long
monitor_get_decr (struct MonitorDef
*md
, int val
)
1133 CPUState
*env
= mon_get_cpu();
1136 return cpu_ppc_load_decr(env
);
1139 static target_long
monitor_get_tbu (struct MonitorDef
*md
, int val
)
1141 CPUState
*env
= mon_get_cpu();
1144 return cpu_ppc_load_tbu(env
);
1147 static target_long
monitor_get_tbl (struct MonitorDef
*md
, int val
)
1149 CPUState
*env
= mon_get_cpu();
1152 return cpu_ppc_load_tbl(env
);
1156 #if defined(TARGET_SPARC)
1157 #ifndef TARGET_SPARC64
1158 static target_long
monitor_get_psr (struct MonitorDef
*md
, int val
)
1160 CPUState
*env
= mon_get_cpu();
1163 return GET_PSR(env
);
1167 static target_long
monitor_get_reg(struct MonitorDef
*md
, int val
)
1169 CPUState
*env
= mon_get_cpu();
1172 return env
->regwptr
[val
];
1176 static MonitorDef monitor_defs
[] = {
1179 #define SEG(name, seg) \
1180 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
1181 { name ".base", offsetof(CPUState, segs[seg].base) },\
1182 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
1184 { "eax", offsetof(CPUState
, regs
[0]) },
1185 { "ecx", offsetof(CPUState
, regs
[1]) },
1186 { "edx", offsetof(CPUState
, regs
[2]) },
1187 { "ebx", offsetof(CPUState
, regs
[3]) },
1188 { "esp|sp", offsetof(CPUState
, regs
[4]) },
1189 { "ebp|fp", offsetof(CPUState
, regs
[5]) },
1190 { "esi", offsetof(CPUState
, regs
[6]) },
1191 { "edi", offsetof(CPUState
, regs
[7]) },
1192 #ifdef TARGET_X86_64
1193 { "r8", offsetof(CPUState
, regs
[8]) },
1194 { "r9", offsetof(CPUState
, regs
[9]) },
1195 { "r10", offsetof(CPUState
, regs
[10]) },
1196 { "r11", offsetof(CPUState
, regs
[11]) },
1197 { "r12", offsetof(CPUState
, regs
[12]) },
1198 { "r13", offsetof(CPUState
, regs
[13]) },
1199 { "r14", offsetof(CPUState
, regs
[14]) },
1200 { "r15", offsetof(CPUState
, regs
[15]) },
1202 { "eflags", offsetof(CPUState
, eflags
) },
1203 { "eip", offsetof(CPUState
, eip
) },
1210 { "pc", 0, monitor_get_pc
, },
1211 #elif defined(TARGET_PPC)
1212 { "r0", offsetof(CPUState
, gpr
[0]) },
1213 { "r1", offsetof(CPUState
, gpr
[1]) },
1214 { "r2", offsetof(CPUState
, gpr
[2]) },
1215 { "r3", offsetof(CPUState
, gpr
[3]) },
1216 { "r4", offsetof(CPUState
, gpr
[4]) },
1217 { "r5", offsetof(CPUState
, gpr
[5]) },
1218 { "r6", offsetof(CPUState
, gpr
[6]) },
1219 { "r7", offsetof(CPUState
, gpr
[7]) },
1220 { "r8", offsetof(CPUState
, gpr
[8]) },
1221 { "r9", offsetof(CPUState
, gpr
[9]) },
1222 { "r10", offsetof(CPUState
, gpr
[10]) },
1223 { "r11", offsetof(CPUState
, gpr
[11]) },
1224 { "r12", offsetof(CPUState
, gpr
[12]) },
1225 { "r13", offsetof(CPUState
, gpr
[13]) },
1226 { "r14", offsetof(CPUState
, gpr
[14]) },
1227 { "r15", offsetof(CPUState
, gpr
[15]) },
1228 { "r16", offsetof(CPUState
, gpr
[16]) },
1229 { "r17", offsetof(CPUState
, gpr
[17]) },
1230 { "r18", offsetof(CPUState
, gpr
[18]) },
1231 { "r19", offsetof(CPUState
, gpr
[19]) },
1232 { "r20", offsetof(CPUState
, gpr
[20]) },
1233 { "r21", offsetof(CPUState
, gpr
[21]) },
1234 { "r22", offsetof(CPUState
, gpr
[22]) },
1235 { "r23", offsetof(CPUState
, gpr
[23]) },
1236 { "r24", offsetof(CPUState
, gpr
[24]) },
1237 { "r25", offsetof(CPUState
, gpr
[25]) },
1238 { "r26", offsetof(CPUState
, gpr
[26]) },
1239 { "r27", offsetof(CPUState
, gpr
[27]) },
1240 { "r28", offsetof(CPUState
, gpr
[28]) },
1241 { "r29", offsetof(CPUState
, gpr
[29]) },
1242 { "r30", offsetof(CPUState
, gpr
[30]) },
1243 { "r31", offsetof(CPUState
, gpr
[31]) },
1244 { "nip|pc", offsetof(CPUState
, nip
) },
1245 { "lr", offsetof(CPUState
, lr
) },
1246 { "ctr", offsetof(CPUState
, ctr
) },
1247 { "decr", 0, &monitor_get_decr
, },
1248 { "ccr", 0, &monitor_get_ccr
, },
1249 { "msr", 0, &monitor_get_msr
, },
1250 { "xer", 0, &monitor_get_xer
, },
1251 { "tbu", 0, &monitor_get_tbu
, },
1252 { "tbl", 0, &monitor_get_tbl
, },
1253 { "sdr1", offsetof(CPUState
, sdr1
) },
1254 { "sr0", offsetof(CPUState
, sr
[0]) },
1255 { "sr1", offsetof(CPUState
, sr
[1]) },
1256 { "sr2", offsetof(CPUState
, sr
[2]) },
1257 { "sr3", offsetof(CPUState
, sr
[3]) },
1258 { "sr4", offsetof(CPUState
, sr
[4]) },
1259 { "sr5", offsetof(CPUState
, sr
[5]) },
1260 { "sr6", offsetof(CPUState
, sr
[6]) },
1261 { "sr7", offsetof(CPUState
, sr
[7]) },
1262 { "sr8", offsetof(CPUState
, sr
[8]) },
1263 { "sr9", offsetof(CPUState
, sr
[9]) },
1264 { "sr10", offsetof(CPUState
, sr
[10]) },
1265 { "sr11", offsetof(CPUState
, sr
[11]) },
1266 { "sr12", offsetof(CPUState
, sr
[12]) },
1267 { "sr13", offsetof(CPUState
, sr
[13]) },
1268 { "sr14", offsetof(CPUState
, sr
[14]) },
1269 { "sr15", offsetof(CPUState
, sr
[15]) },
1270 /* Too lazy to put BATs and SPRs ... */
1271 #elif defined(TARGET_SPARC)
1272 { "g0", offsetof(CPUState
, gregs
[0]) },
1273 { "g1", offsetof(CPUState
, gregs
[1]) },
1274 { "g2", offsetof(CPUState
, gregs
[2]) },
1275 { "g3", offsetof(CPUState
, gregs
[3]) },
1276 { "g4", offsetof(CPUState
, gregs
[4]) },
1277 { "g5", offsetof(CPUState
, gregs
[5]) },
1278 { "g6", offsetof(CPUState
, gregs
[6]) },
1279 { "g7", offsetof(CPUState
, gregs
[7]) },
1280 { "o0", 0, monitor_get_reg
},
1281 { "o1", 1, monitor_get_reg
},
1282 { "o2", 2, monitor_get_reg
},
1283 { "o3", 3, monitor_get_reg
},
1284 { "o4", 4, monitor_get_reg
},
1285 { "o5", 5, monitor_get_reg
},
1286 { "o6", 6, monitor_get_reg
},
1287 { "o7", 7, monitor_get_reg
},
1288 { "l0", 8, monitor_get_reg
},
1289 { "l1", 9, monitor_get_reg
},
1290 { "l2", 10, monitor_get_reg
},
1291 { "l3", 11, monitor_get_reg
},
1292 { "l4", 12, monitor_get_reg
},
1293 { "l5", 13, monitor_get_reg
},
1294 { "l6", 14, monitor_get_reg
},
1295 { "l7", 15, monitor_get_reg
},
1296 { "i0", 16, monitor_get_reg
},
1297 { "i1", 17, monitor_get_reg
},
1298 { "i2", 18, monitor_get_reg
},
1299 { "i3", 19, monitor_get_reg
},
1300 { "i4", 20, monitor_get_reg
},
1301 { "i5", 21, monitor_get_reg
},
1302 { "i6", 22, monitor_get_reg
},
1303 { "i7", 23, monitor_get_reg
},
1304 { "pc", offsetof(CPUState
, pc
) },
1305 { "npc", offsetof(CPUState
, npc
) },
1306 { "y", offsetof(CPUState
, y
) },
1307 #ifndef TARGET_SPARC64
1308 { "psr", 0, &monitor_get_psr
, },
1309 { "wim", offsetof(CPUState
, wim
) },
1311 { "tbr", offsetof(CPUState
, tbr
) },
1312 { "fsr", offsetof(CPUState
, fsr
) },
1313 { "f0", offsetof(CPUState
, fpr
[0]) },
1314 { "f1", offsetof(CPUState
, fpr
[1]) },
1315 { "f2", offsetof(CPUState
, fpr
[2]) },
1316 { "f3", offsetof(CPUState
, fpr
[3]) },
1317 { "f4", offsetof(CPUState
, fpr
[4]) },
1318 { "f5", offsetof(CPUState
, fpr
[5]) },
1319 { "f6", offsetof(CPUState
, fpr
[6]) },
1320 { "f7", offsetof(CPUState
, fpr
[7]) },
1321 { "f8", offsetof(CPUState
, fpr
[8]) },
1322 { "f9", offsetof(CPUState
, fpr
[9]) },
1323 { "f10", offsetof(CPUState
, fpr
[10]) },
1324 { "f11", offsetof(CPUState
, fpr
[11]) },
1325 { "f12", offsetof(CPUState
, fpr
[12]) },
1326 { "f13", offsetof(CPUState
, fpr
[13]) },
1327 { "f14", offsetof(CPUState
, fpr
[14]) },
1328 { "f15", offsetof(CPUState
, fpr
[15]) },
1329 { "f16", offsetof(CPUState
, fpr
[16]) },
1330 { "f17", offsetof(CPUState
, fpr
[17]) },
1331 { "f18", offsetof(CPUState
, fpr
[18]) },
1332 { "f19", offsetof(CPUState
, fpr
[19]) },
1333 { "f20", offsetof(CPUState
, fpr
[20]) },
1334 { "f21", offsetof(CPUState
, fpr
[21]) },
1335 { "f22", offsetof(CPUState
, fpr
[22]) },
1336 { "f23", offsetof(CPUState
, fpr
[23]) },
1337 { "f24", offsetof(CPUState
, fpr
[24]) },
1338 { "f25", offsetof(CPUState
, fpr
[25]) },
1339 { "f26", offsetof(CPUState
, fpr
[26]) },
1340 { "f27", offsetof(CPUState
, fpr
[27]) },
1341 { "f28", offsetof(CPUState
, fpr
[28]) },
1342 { "f29", offsetof(CPUState
, fpr
[29]) },
1343 { "f30", offsetof(CPUState
, fpr
[30]) },
1344 { "f31", offsetof(CPUState
, fpr
[31]) },
1345 #ifdef TARGET_SPARC64
1346 { "f32", offsetof(CPUState
, fpr
[32]) },
1347 { "f34", offsetof(CPUState
, fpr
[34]) },
1348 { "f36", offsetof(CPUState
, fpr
[36]) },
1349 { "f38", offsetof(CPUState
, fpr
[38]) },
1350 { "f40", offsetof(CPUState
, fpr
[40]) },
1351 { "f42", offsetof(CPUState
, fpr
[42]) },
1352 { "f44", offsetof(CPUState
, fpr
[44]) },
1353 { "f46", offsetof(CPUState
, fpr
[46]) },
1354 { "f48", offsetof(CPUState
, fpr
[48]) },
1355 { "f50", offsetof(CPUState
, fpr
[50]) },
1356 { "f52", offsetof(CPUState
, fpr
[52]) },
1357 { "f54", offsetof(CPUState
, fpr
[54]) },
1358 { "f56", offsetof(CPUState
, fpr
[56]) },
1359 { "f58", offsetof(CPUState
, fpr
[58]) },
1360 { "f60", offsetof(CPUState
, fpr
[60]) },
1361 { "f62", offsetof(CPUState
, fpr
[62]) },
1362 { "asi", offsetof(CPUState
, asi
) },
1363 { "pstate", offsetof(CPUState
, pstate
) },
1364 { "cansave", offsetof(CPUState
, cansave
) },
1365 { "canrestore", offsetof(CPUState
, canrestore
) },
1366 { "otherwin", offsetof(CPUState
, otherwin
) },
1367 { "wstate", offsetof(CPUState
, wstate
) },
1368 { "cleanwin", offsetof(CPUState
, cleanwin
) },
1369 { "fprs", offsetof(CPUState
, fprs
) },
1375 static void expr_error(const char *fmt
)
1379 longjmp(expr_env
, 1);
1382 /* return 0 if OK, -1 if not found, -2 if no CPU defined */
1383 static int get_monitor_def(target_long
*pval
, const char *name
)
1388 for(md
= monitor_defs
; md
->name
!= NULL
; md
++) {
1389 if (compare_cmd(name
, md
->name
)) {
1390 if (md
->get_value
) {
1391 *pval
= md
->get_value(md
, md
->offset
);
1393 CPUState
*env
= mon_get_cpu();
1396 ptr
= (uint8_t *)env
+ md
->offset
;
1399 *pval
= *(int32_t *)ptr
;
1402 *pval
= *(target_long
*)ptr
;
1415 static void next(void)
1419 while (isspace(*pch
))
1424 static target_long
expr_sum(void);
1426 static target_long
expr_unary(void)
1449 expr_error("')' expected");
1456 expr_error("character constant expected");
1460 expr_error("missing terminating \' character");
1469 while ((*pch
>= 'a' && *pch
<= 'z') ||
1470 (*pch
>= 'A' && *pch
<= 'Z') ||
1471 (*pch
>= '0' && *pch
<= '9') ||
1472 *pch
== '_' || *pch
== '.') {
1473 if ((q
- buf
) < sizeof(buf
) - 1)
1477 while (isspace(*pch
))
1480 ret
= get_monitor_def(&n
, buf
);
1482 expr_error("unknown register");
1484 expr_error("no cpu defined");
1488 expr_error("unexpected end of expression");
1492 n
= strtoul(pch
, &p
, 0);
1494 expr_error("invalid char in expression");
1497 while (isspace(*pch
))
1505 static target_long
expr_prod(void)
1507 target_long val
, val2
;
1513 if (op
!= '*' && op
!= '/' && op
!= '%')
1516 val2
= expr_unary();
1525 expr_error("division by zero");
1536 static target_long
expr_logic(void)
1538 target_long val
, val2
;
1544 if (op
!= '&' && op
!= '|' && op
!= '^')
1564 static target_long
expr_sum(void)
1566 target_long val
, val2
;
1572 if (op
!= '+' && op
!= '-')
1575 val2
= expr_logic();
1584 static int get_expr(target_long
*pval
, const char **pp
)
1587 if (setjmp(expr_env
)) {
1591 while (isspace(*pch
))
1598 static int get_str(char *buf
, int buf_size
, const char **pp
)
1616 while (*p
!= '\0' && *p
!= '\"') {
1632 qemu_printf("unsupported escape code: '\\%c'\n", c
);
1635 if ((q
- buf
) < buf_size
- 1) {
1639 if ((q
- buf
) < buf_size
- 1) {
1646 qemu_printf("unterminated string\n");
1651 while (*p
!= '\0' && !isspace(*p
)) {
1652 if ((q
- buf
) < buf_size
- 1) {
1663 static int default_fmt_format
= 'x';
1664 static int default_fmt_size
= 4;
1668 static void monitor_handle_command(const char *cmdline
)
1670 const char *p
, *pstart
, *typestr
;
1672 int c
, nb_args
, len
, i
, has_arg
;
1676 void *str_allocated
[MAX_ARGS
];
1677 void *args
[MAX_ARGS
];
1680 term_printf("command='%s'\n", cmdline
);
1683 /* extract the command name */
1691 while (*p
!= '\0' && *p
!= '/' && !isspace(*p
))
1694 if (len
> sizeof(cmdname
) - 1)
1695 len
= sizeof(cmdname
) - 1;
1696 memcpy(cmdname
, pstart
, len
);
1697 cmdname
[len
] = '\0';
1699 /* find the command */
1700 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
1701 if (compare_cmd(cmdname
, cmd
->name
))
1704 term_printf("unknown command: '%s'\n", cmdname
);
1708 for(i
= 0; i
< MAX_ARGS
; i
++)
1709 str_allocated
[i
] = NULL
;
1711 /* parse the parameters */
1712 typestr
= cmd
->args_type
;
1729 if (*typestr
== '?') {
1732 /* no optional string: NULL argument */
1737 ret
= get_str(buf
, sizeof(buf
), &p
);
1741 term_printf("%s: filename expected\n", cmdname
);
1744 term_printf("%s: block device name expected\n", cmdname
);
1747 term_printf("%s: string expected\n", cmdname
);
1752 str
= qemu_malloc(strlen(buf
) + 1);
1754 str_allocated
[nb_args
] = str
;
1756 if (nb_args
>= MAX_ARGS
) {
1758 term_printf("%s: too many arguments\n", cmdname
);
1761 args
[nb_args
++] = str
;
1766 int count
, format
, size
;
1776 while (isdigit(*p
)) {
1777 count
= count
* 10 + (*p
- '0');
1815 if (*p
!= '\0' && !isspace(*p
)) {
1816 term_printf("invalid char in format: '%c'\n", *p
);
1820 format
= default_fmt_format
;
1821 if (format
!= 'i') {
1822 /* for 'i', not specifying a size gives -1 as size */
1824 size
= default_fmt_size
;
1826 default_fmt_size
= size
;
1827 default_fmt_format
= format
;
1830 format
= default_fmt_format
;
1831 if (format
!= 'i') {
1832 size
= default_fmt_size
;
1837 if (nb_args
+ 3 > MAX_ARGS
)
1839 args
[nb_args
++] = (void*)count
;
1840 args
[nb_args
++] = (void*)format
;
1841 args
[nb_args
++] = (void*)size
;
1850 if (*typestr
== '?' || *typestr
== '.') {
1852 if (*typestr
== '?') {
1867 if (nb_args
>= MAX_ARGS
)
1869 args
[nb_args
++] = (void *)has_arg
;
1871 if (nb_args
>= MAX_ARGS
)
1877 if (get_expr(&val
, &p
))
1881 if (nb_args
>= MAX_ARGS
)
1883 args
[nb_args
++] = (void *)(int)val
;
1885 if ((nb_args
+ 1) >= MAX_ARGS
)
1887 #if TARGET_LONG_BITS == 64
1888 args
[nb_args
++] = (void *)(int)((val
>> 32) & 0xffffffff);
1890 args
[nb_args
++] = (void *)0;
1892 args
[nb_args
++] = (void *)(int)(val
& 0xffffffff);
1910 term_printf("%s: unsupported option -%c\n",
1917 if (nb_args
>= MAX_ARGS
)
1919 args
[nb_args
++] = (void *)has_option
;
1924 term_printf("%s: unknown type '%c'\n", cmdname
, c
);
1928 /* check that all arguments were parsed */
1932 term_printf("%s: extraneous characters at the end of line\n",
1942 cmd
->handler(args
[0]);
1945 cmd
->handler(args
[0], args
[1]);
1948 cmd
->handler(args
[0], args
[1], args
[2]);
1951 cmd
->handler(args
[0], args
[1], args
[2], args
[3]);
1954 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4]);
1957 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5]);
1960 term_printf("unsupported number of arguments: %d\n", nb_args
);
1964 for(i
= 0; i
< MAX_ARGS
; i
++)
1965 qemu_free(str_allocated
[i
]);
1969 static void cmd_completion(const char *name
, const char *list
)
1971 const char *p
, *pstart
;
1980 p
= pstart
+ strlen(pstart
);
1982 if (len
> sizeof(cmd
) - 2)
1983 len
= sizeof(cmd
) - 2;
1984 memcpy(cmd
, pstart
, len
);
1986 if (name
[0] == '\0' || !strncmp(name
, cmd
, strlen(name
))) {
1987 add_completion(cmd
);
1995 static void file_completion(const char *input
)
2000 char file
[1024], file_prefix
[1024];
2004 p
= strrchr(input
, '/');
2007 pstrcpy(file_prefix
, sizeof(file_prefix
), input
);
2010 input_path_len
= p
- input
+ 1;
2011 memcpy(path
, input
, input_path_len
);
2012 if (input_path_len
> sizeof(path
) - 1)
2013 input_path_len
= sizeof(path
) - 1;
2014 path
[input_path_len
] = '\0';
2015 pstrcpy(file_prefix
, sizeof(file_prefix
), p
+ 1);
2017 #ifdef DEBUG_COMPLETION
2018 term_printf("input='%s' path='%s' prefix='%s'\n", input
, path
, file_prefix
);
2020 ffs
= opendir(path
);
2028 if (strstart(d
->d_name
, file_prefix
, NULL
)) {
2029 memcpy(file
, input
, input_path_len
);
2030 strcpy(file
+ input_path_len
, d
->d_name
);
2031 /* stat the file to find out if it's a directory.
2032 * In that case add a slash to speed up typing long paths
2035 if(S_ISDIR(sb
.st_mode
))
2037 add_completion(file
);
2043 static void block_completion_it(void *opaque
, const char *name
)
2045 const char *input
= opaque
;
2047 if (input
[0] == '\0' ||
2048 !strncmp(name
, (char *)input
, strlen(input
))) {
2049 add_completion(name
);
2053 /* NOTE: this parser is an approximate form of the real command parser */
2054 static void parse_cmdline(const char *cmdline
,
2055 int *pnb_args
, char **args
)
2068 if (nb_args
>= MAX_ARGS
)
2070 ret
= get_str(buf
, sizeof(buf
), &p
);
2071 args
[nb_args
] = qemu_strdup(buf
);
2076 *pnb_args
= nb_args
;
2079 void readline_find_completion(const char *cmdline
)
2081 const char *cmdname
;
2082 char *args
[MAX_ARGS
];
2083 int nb_args
, i
, len
;
2084 const char *ptype
, *str
;
2087 parse_cmdline(cmdline
, &nb_args
, args
);
2088 #ifdef DEBUG_COMPLETION
2089 for(i
= 0; i
< nb_args
; i
++) {
2090 term_printf("arg%d = '%s'\n", i
, (char *)args
[i
]);
2094 /* if the line ends with a space, it means we want to complete the
2096 len
= strlen(cmdline
);
2097 if (len
> 0 && isspace(cmdline
[len
- 1])) {
2098 if (nb_args
>= MAX_ARGS
)
2100 args
[nb_args
++] = qemu_strdup("");
2103 /* command completion */
2108 completion_index
= strlen(cmdname
);
2109 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2110 cmd_completion(cmdname
, cmd
->name
);
2113 /* find the command */
2114 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2115 if (compare_cmd(args
[0], cmd
->name
))
2120 ptype
= cmd
->args_type
;
2121 for(i
= 0; i
< nb_args
- 2; i
++) {
2122 if (*ptype
!= '\0') {
2124 while (*ptype
== '?')
2128 str
= args
[nb_args
- 1];
2131 /* file completion */
2132 completion_index
= strlen(str
);
2133 file_completion(str
);
2136 /* block device name completion */
2137 completion_index
= strlen(str
);
2138 bdrv_iterate(block_completion_it
, (void *)str
);
2141 /* XXX: more generic ? */
2142 if (!strcmp(cmd
->name
, "info")) {
2143 completion_index
= strlen(str
);
2144 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
2145 cmd_completion(str
, cmd
->name
);
2153 for(i
= 0; i
< nb_args
; i
++)
2157 static int term_can_read(void *opaque
)
2162 static void term_read(void *opaque
, const uint8_t *buf
, int size
)
2165 for(i
= 0; i
< size
; i
++)
2166 readline_handle_byte(buf
[i
]);
2169 static void monitor_start_input(void);
2171 static void monitor_handle_command1(void *opaque
, const char *cmdline
)
2173 monitor_handle_command(cmdline
);
2174 monitor_start_input();
2177 static void monitor_start_input(void)
2179 readline_start("(qemu) ", 0, monitor_handle_command1
, NULL
);
2182 void monitor_init(CharDriverState
*hd
, int show_banner
)
2186 term_printf("QEMU %s monitor - type 'help' for more information\n",
2189 qemu_chr_add_read_handler(hd
, term_can_read
, term_read
, NULL
);
2190 monitor_start_input();
2193 /* XXX: use threads ? */
2194 /* modal monitor readline */
2195 static int monitor_readline_started
;
2196 static char *monitor_readline_buf
;
2197 static int monitor_readline_buf_size
;
2199 static void monitor_readline_cb(void *opaque
, const char *input
)
2201 pstrcpy(monitor_readline_buf
, monitor_readline_buf_size
, input
);
2202 monitor_readline_started
= 0;
2205 void monitor_readline(const char *prompt
, int is_password
,
2206 char *buf
, int buf_size
)
2209 qemu_chr_send_event(monitor_hd
, CHR_EVENT_FOCUS
);
2211 readline_start(prompt
, is_password
, monitor_readline_cb
, NULL
);
2212 monitor_readline_buf
= buf
;
2213 monitor_readline_buf_size
= buf_size
;
2214 monitor_readline_started
= 1;
2215 while (monitor_readline_started
) {