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"
38 #include "qemu-timer.h"
39 #include "migration.h"
43 //#define DEBUG_COMPLETION
49 * 'B' block device name
50 * 's' string (accept optional quote)
52 * 'l' target long (32 or 64 bit)
53 * '/' optional gdb-like print format (like "/10x")
55 * '?' optional type (for 'F', 's' and 'i')
59 typedef struct term_cmd_t
{
61 const char *args_type
;
68 static CharDriverState
*monitor_hd
[MAX_MON
];
69 static int hide_banner
;
71 static const term_cmd_t term_cmds
[];
72 static const term_cmd_t info_cmds
[];
74 static uint8_t term_outbuf
[1024];
75 static int term_outbuf_index
;
77 static void monitor_start_input(void);
79 static CPUState
*mon_cpu
= NULL
;
84 if (term_outbuf_index
> 0) {
85 for (i
= 0; i
< MAX_MON
; i
++)
86 if (monitor_hd
[i
] && monitor_hd
[i
]->focus
== 0)
87 qemu_chr_write(monitor_hd
[i
], term_outbuf
, term_outbuf_index
);
88 term_outbuf_index
= 0;
92 /* flush at every end of line or if the buffer is full */
93 void term_puts(const char *str
)
101 term_outbuf
[term_outbuf_index
++] = '\r';
102 term_outbuf
[term_outbuf_index
++] = c
;
103 if (term_outbuf_index
>= (sizeof(term_outbuf
) - 1) ||
109 void term_vprintf(const char *fmt
, va_list ap
)
112 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
116 void term_printf(const char *fmt
, ...)
120 term_vprintf(fmt
, ap
);
124 void term_print_filename(const char *filename
)
128 for (i
= 0; filename
[i
]; i
++) {
129 switch (filename
[i
]) {
133 term_printf("\\%c", filename
[i
]);
145 term_printf("%c", filename
[i
]);
151 static int monitor_fprintf(FILE *stream
, const char *fmt
, ...)
155 term_vprintf(fmt
, ap
);
160 static int compare_cmd(const char *name
, const char *list
)
162 const char *p
, *pstart
;
170 p
= pstart
+ strlen(pstart
);
171 if ((p
- pstart
) == len
&& !memcmp(pstart
, name
, len
))
180 static void help_cmd1(const term_cmd_t
*cmds
, const char *prefix
, const char *name
)
182 const term_cmd_t
*cmd
;
184 for(cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
185 if (!name
|| !strcmp(name
, cmd
->name
))
186 term_printf("%s%s %s -- %s\n", prefix
, cmd
->name
, cmd
->params
, cmd
->help
);
190 static void help_cmd(const char *name
)
192 if (name
&& !strcmp(name
, "info")) {
193 help_cmd1(info_cmds
, "info ", NULL
);
195 help_cmd1(term_cmds
, "", name
);
196 if (name
&& !strcmp(name
, "log")) {
197 const CPULogItem
*item
;
198 term_printf("Log items (comma separated):\n");
199 term_printf("%-10s %s\n", "none", "remove all logs");
200 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
201 term_printf("%-10s %s\n", item
->name
, item
->help
);
207 static void do_help(const char *name
)
212 static void do_commit(const char *device
)
216 all_devices
= !strcmp(device
, "all");
217 for (i
= 0; i
< nb_drives
; i
++) {
219 !strcmp(bdrv_get_device_name(drives_table
[i
].bdrv
), device
))
220 bdrv_commit(drives_table
[i
].bdrv
);
224 static void do_info(const char *item
)
226 const term_cmd_t
*cmd
;
227 void (*handler
)(void);
231 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
232 if (compare_cmd(item
, cmd
->name
))
239 handler
= cmd
->handler
;
243 static void do_info_version(void)
245 term_printf("%s\n", QEMU_VERSION
);
248 static void do_info_name(void)
251 term_printf("%s\n", qemu_name
);
254 static void do_info_uuid(void)
256 term_printf(UUID_FMT
"\n", qemu_uuid
[0], qemu_uuid
[1], qemu_uuid
[2],
257 qemu_uuid
[3], qemu_uuid
[4], qemu_uuid
[5], qemu_uuid
[6],
258 qemu_uuid
[7], qemu_uuid
[8], qemu_uuid
[9], qemu_uuid
[10],
259 qemu_uuid
[11], qemu_uuid
[12], qemu_uuid
[13], qemu_uuid
[14],
263 static void do_info_block(void)
268 static void do_info_blockstats(void)
273 /* get the current CPU defined by the user */
274 static int mon_set_cpu(int cpu_index
)
278 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
279 if (env
->cpu_index
== cpu_index
) {
287 static CPUState
*mon_get_cpu(void)
295 static void do_info_registers(void)
302 cpu_dump_state(env
, NULL
, monitor_fprintf
,
305 cpu_dump_state(env
, NULL
, monitor_fprintf
,
310 static void do_info_cpus(void)
314 /* just to set the default cpu if not already done */
317 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
318 term_printf("%c CPU #%d:",
319 (env
== mon_cpu
) ? '*' : ' ',
321 #if defined(TARGET_I386)
322 term_printf(" pc=0x" TARGET_FMT_lx
, env
->eip
+ env
->segs
[R_CS
].base
);
323 #elif defined(TARGET_PPC)
324 term_printf(" nip=0x" TARGET_FMT_lx
, env
->nip
);
325 #elif defined(TARGET_SPARC)
326 term_printf(" pc=0x" TARGET_FMT_lx
" npc=0x" TARGET_FMT_lx
, env
->pc
, env
->npc
);
327 #elif defined(TARGET_MIPS)
328 term_printf(" PC=0x" TARGET_FMT_lx
, env
->active_tc
.PC
);
331 term_printf(" (halted)");
336 static void do_cpu_set(int index
)
338 if (mon_set_cpu(index
) < 0)
339 term_printf("Invalid CPU index\n");
342 static void do_info_jit(void)
344 dump_exec_info(NULL
, monitor_fprintf
);
347 static void do_info_history (void)
354 str
= readline_get_history(i
);
357 term_printf("%d: '%s'\n", i
, str
);
362 #if defined(TARGET_PPC)
363 /* XXX: not implemented in other targets */
364 static void do_info_cpu_stats (void)
369 cpu_dump_statistics(env
, NULL
, &monitor_fprintf
, 0);
373 static void do_quit(void)
378 static int eject_device(BlockDriverState
*bs
, int force
)
380 if (bdrv_is_inserted(bs
)) {
382 if (!bdrv_is_removable(bs
)) {
383 term_printf("device is not removable\n");
386 if (bdrv_is_locked(bs
)) {
387 term_printf("device is locked\n");
396 static void do_eject(int force
, const char *filename
)
398 BlockDriverState
*bs
;
400 bs
= bdrv_find(filename
);
402 term_printf("device not found\n");
405 eject_device(bs
, force
);
408 static void do_change_block(const char *device
, const char *filename
, const char *fmt
)
410 BlockDriverState
*bs
;
411 BlockDriver
*drv
= NULL
;
413 bs
= bdrv_find(device
);
415 term_printf("device not found\n");
419 drv
= bdrv_find_format(fmt
);
421 term_printf("invalid format %s\n", fmt
);
425 if (eject_device(bs
, 0) < 0)
427 bdrv_open2(bs
, filename
, 0, drv
);
428 qemu_key_check(bs
, filename
);
431 static void do_change_vnc(const char *target
)
433 if (strcmp(target
, "passwd") == 0 ||
434 strcmp(target
, "password") == 0) {
436 monitor_readline("Password: ", 1, password
, sizeof(password
)-1);
437 password
[sizeof(password
)-1] = '\0';
438 if (vnc_display_password(NULL
, password
) < 0)
439 term_printf("could not set VNC server password\n");
441 if (vnc_display_open(NULL
, target
) < 0)
442 term_printf("could not start VNC server on %s\n", target
);
446 static void do_change(const char *device
, const char *target
, const char *fmt
)
448 if (strcmp(device
, "vnc") == 0) {
449 do_change_vnc(target
);
451 do_change_block(device
, target
, fmt
);
455 static void do_screen_dump(const char *filename
)
457 vga_hw_screen_dump(filename
);
460 static void do_logfile(const char *filename
)
462 cpu_set_log_filename(filename
);
465 static void do_log(const char *items
)
469 if (!strcmp(items
, "none")) {
472 mask
= cpu_str_to_log_mask(items
);
481 static void do_stop(void)
483 vm_stop(EXCP_INTERRUPT
);
486 static void do_cont(void)
491 #ifdef CONFIG_GDBSTUB
492 static void do_gdbserver(const char *port
)
495 port
= DEFAULT_GDBSTUB_PORT
;
496 if (gdbserver_start(port
) < 0) {
497 qemu_printf("Could not open gdbserver socket on port '%s'\n", port
);
499 qemu_printf("Waiting gdb connection on port '%s'\n", port
);
504 static void term_printc(int c
)
521 if (c
>= 32 && c
<= 126) {
522 term_printf("%c", c
);
524 term_printf("\\x%02x", c
);
531 static void memory_dump(int count
, int format
, int wsize
,
532 target_phys_addr_t addr
, int is_physical
)
535 int nb_per_line
, l
, line_size
, i
, max_digits
, len
;
543 if (!env
&& !is_physical
)
548 } else if (wsize
== 4) {
551 /* as default we use the current CS size */
555 if ((env
->efer
& MSR_EFER_LMA
) &&
556 (env
->segs
[R_CS
].flags
& DESC_L_MASK
))
560 if (!(env
->segs
[R_CS
].flags
& DESC_B_MASK
))
565 monitor_disas(env
, addr
, count
, is_physical
, flags
);
574 nb_per_line
= line_size
/ wsize
;
579 max_digits
= (wsize
* 8 + 2) / 3;
583 max_digits
= (wsize
* 8) / 4;
587 max_digits
= (wsize
* 8 * 10 + 32) / 33;
596 term_printf(TARGET_FMT_plx
":", addr
);
598 term_printf(TARGET_FMT_lx
":", (target_ulong
)addr
);
603 cpu_physical_memory_rw(addr
, buf
, l
, 0);
608 if (cpu_memory_rw_debug(env
, addr
, buf
, l
, 0) < 0) {
609 term_printf(" Cannot access memory\n");
618 v
= ldub_raw(buf
+ i
);
621 v
= lduw_raw(buf
+ i
);
624 v
= (uint32_t)ldl_raw(buf
+ i
);
627 v
= ldq_raw(buf
+ i
);
633 term_printf("%#*" PRIo64
, max_digits
, v
);
636 term_printf("0x%0*" PRIx64
, max_digits
, v
);
639 term_printf("%*" PRIu64
, max_digits
, v
);
642 term_printf("%*" PRId64
, max_digits
, v
);
656 #if TARGET_LONG_BITS == 64
657 #define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
659 #define GET_TLONG(h, l) (l)
662 static void do_memory_dump(int count
, int format
, int size
,
663 uint32_t addrh
, uint32_t addrl
)
665 target_long addr
= GET_TLONG(addrh
, addrl
);
666 memory_dump(count
, format
, size
, addr
, 0);
669 #if TARGET_PHYS_ADDR_BITS > 32
670 #define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
672 #define GET_TPHYSADDR(h, l) (l)
675 static void do_physical_memory_dump(int count
, int format
, int size
,
676 uint32_t addrh
, uint32_t addrl
)
679 target_phys_addr_t addr
= GET_TPHYSADDR(addrh
, addrl
);
680 memory_dump(count
, format
, size
, addr
, 1);
683 static void do_print(int count
, int format
, int size
, unsigned int valh
, unsigned int vall
)
685 target_phys_addr_t val
= GET_TPHYSADDR(valh
, vall
);
686 #if TARGET_PHYS_ADDR_BITS == 32
689 term_printf("%#o", val
);
692 term_printf("%#x", val
);
695 term_printf("%u", val
);
699 term_printf("%d", val
);
708 term_printf("%#" PRIo64
, val
);
711 term_printf("%#" PRIx64
, val
);
714 term_printf("%" PRIu64
, val
);
718 term_printf("%" PRId64
, val
);
728 static void do_memory_save(unsigned int valh
, unsigned int vall
,
729 uint32_t size
, const char *filename
)
732 target_long addr
= GET_TLONG(valh
, vall
);
741 f
= fopen(filename
, "wb");
743 term_printf("could not open '%s'\n", filename
);
750 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
751 fwrite(buf
, 1, l
, f
);
758 static void do_physical_memory_save(unsigned int valh
, unsigned int vall
,
759 uint32_t size
, const char *filename
)
764 target_phys_addr_t addr
= GET_TPHYSADDR(valh
, vall
);
766 f
= fopen(filename
, "wb");
768 term_printf("could not open '%s'\n", filename
);
775 cpu_physical_memory_rw(addr
, buf
, l
, 0);
776 fwrite(buf
, 1, l
, f
);
784 static void do_sum(uint32_t start
, uint32_t size
)
791 for(addr
= start
; addr
< (start
+ size
); addr
++) {
792 cpu_physical_memory_rw(addr
, buf
, 1, 0);
793 /* BSD sum algorithm ('sum' Unix command) */
794 sum
= (sum
>> 1) | (sum
<< 15);
797 term_printf("%05d\n", sum
);
805 static const KeyDef key_defs
[] = {
832 { 0x0e, "backspace" },
869 { 0x37, "asterisk" },
872 { 0x3a, "caps_lock" },
883 { 0x45, "num_lock" },
884 { 0x46, "scroll_lock" },
886 { 0xb5, "kp_divide" },
887 { 0x37, "kp_multiply" },
888 { 0x4a, "kp_subtract" },
890 { 0x9c, "kp_enter" },
891 { 0x53, "kp_decimal" },
924 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
944 static int get_keycode(const char *key
)
950 for(p
= key_defs
; p
->name
!= NULL
; p
++) {
951 if (!strcmp(key
, p
->name
))
954 if (strstart(key
, "0x", NULL
)) {
955 ret
= strtoul(key
, &endp
, 0);
956 if (*endp
== '\0' && ret
>= 0x01 && ret
<= 0xff)
962 #define MAX_KEYCODES 16
963 static uint8_t keycodes
[MAX_KEYCODES
];
964 static int nb_pending_keycodes
;
965 static QEMUTimer
*key_timer
;
967 static void release_keys(void *opaque
)
971 while (nb_pending_keycodes
> 0) {
972 nb_pending_keycodes
--;
973 keycode
= keycodes
[nb_pending_keycodes
];
975 kbd_put_keycode(0xe0);
976 kbd_put_keycode(keycode
| 0x80);
980 static void do_sendkey(const char *string
, int has_hold_time
, int hold_time
)
982 char keyname_buf
[16];
984 int keyname_len
, keycode
, i
;
986 if (nb_pending_keycodes
> 0) {
987 qemu_del_timer(key_timer
);
994 separator
= strchr(string
, '-');
995 keyname_len
= separator
? separator
- string
: strlen(string
);
996 if (keyname_len
> 0) {
997 pstrcpy(keyname_buf
, sizeof(keyname_buf
), string
);
998 if (keyname_len
> sizeof(keyname_buf
) - 1) {
999 term_printf("invalid key: '%s...'\n", keyname_buf
);
1002 if (i
== MAX_KEYCODES
) {
1003 term_printf("too many keys\n");
1006 keyname_buf
[keyname_len
] = 0;
1007 keycode
= get_keycode(keyname_buf
);
1009 term_printf("unknown key: '%s'\n", keyname_buf
);
1012 keycodes
[i
++] = keycode
;
1016 string
= separator
+ 1;
1018 nb_pending_keycodes
= i
;
1019 /* key down events */
1020 for (i
= 0; i
< nb_pending_keycodes
; i
++) {
1021 keycode
= keycodes
[i
];
1023 kbd_put_keycode(0xe0);
1024 kbd_put_keycode(keycode
& 0x7f);
1026 /* delayed key up events */
1027 qemu_mod_timer(key_timer
, qemu_get_clock(vm_clock
) +
1028 muldiv64(ticks_per_sec
, hold_time
, 1000));
1031 static int mouse_button_state
;
1033 static void do_mouse_move(const char *dx_str
, const char *dy_str
,
1037 dx
= strtol(dx_str
, NULL
, 0);
1038 dy
= strtol(dy_str
, NULL
, 0);
1041 dz
= strtol(dz_str
, NULL
, 0);
1042 kbd_mouse_event(dx
, dy
, dz
, mouse_button_state
);
1045 static void do_mouse_button(int button_state
)
1047 mouse_button_state
= button_state
;
1048 kbd_mouse_event(0, 0, 0, mouse_button_state
);
1051 static void do_ioport_read(int count
, int format
, int size
, int addr
, int has_index
, int index
)
1057 cpu_outb(NULL
, addr
& 0xffff, index
& 0xff);
1065 val
= cpu_inb(NULL
, addr
);
1069 val
= cpu_inw(NULL
, addr
);
1073 val
= cpu_inl(NULL
, addr
);
1077 term_printf("port%c[0x%04x] = %#0*x\n",
1078 suffix
, addr
, size
* 2, val
);
1081 /* boot_set handler */
1082 static QEMUBootSetHandler
*qemu_boot_set_handler
= NULL
;
1083 static void *boot_opaque
;
1085 void qemu_register_boot_set(QEMUBootSetHandler
*func
, void *opaque
)
1087 qemu_boot_set_handler
= func
;
1088 boot_opaque
= opaque
;
1091 static void do_boot_set(const char *bootdevice
)
1095 if (qemu_boot_set_handler
) {
1096 res
= qemu_boot_set_handler(boot_opaque
, bootdevice
);
1098 term_printf("boot device list now set to %s\n", bootdevice
);
1100 term_printf("setting boot device list failed with error %i\n", res
);
1102 term_printf("no function defined to set boot device list for this architecture\n");
1106 static void do_system_reset(void)
1108 qemu_system_reset_request();
1111 static void do_system_powerdown(void)
1113 qemu_system_powerdown_request();
1116 #if defined(TARGET_I386)
1117 static void print_pte(uint32_t addr
, uint32_t pte
, uint32_t mask
)
1119 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
1122 pte
& PG_GLOBAL_MASK
? 'G' : '-',
1123 pte
& PG_PSE_MASK
? 'P' : '-',
1124 pte
& PG_DIRTY_MASK
? 'D' : '-',
1125 pte
& PG_ACCESSED_MASK
? 'A' : '-',
1126 pte
& PG_PCD_MASK
? 'C' : '-',
1127 pte
& PG_PWT_MASK
? 'T' : '-',
1128 pte
& PG_USER_MASK
? 'U' : '-',
1129 pte
& PG_RW_MASK
? 'W' : '-');
1132 static void tlb_info(void)
1136 uint32_t pgd
, pde
, pte
;
1138 env
= mon_get_cpu();
1142 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1143 term_printf("PG disabled\n");
1146 pgd
= env
->cr
[3] & ~0xfff;
1147 for(l1
= 0; l1
< 1024; l1
++) {
1148 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1149 pde
= le32_to_cpu(pde
);
1150 if (pde
& PG_PRESENT_MASK
) {
1151 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1152 print_pte((l1
<< 22), pde
, ~((1 << 20) - 1));
1154 for(l2
= 0; l2
< 1024; l2
++) {
1155 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1156 (uint8_t *)&pte
, 4);
1157 pte
= le32_to_cpu(pte
);
1158 if (pte
& PG_PRESENT_MASK
) {
1159 print_pte((l1
<< 22) + (l2
<< 12),
1169 static void mem_print(uint32_t *pstart
, int *plast_prot
,
1170 uint32_t end
, int prot
)
1173 prot1
= *plast_prot
;
1174 if (prot
!= prot1
) {
1175 if (*pstart
!= -1) {
1176 term_printf("%08x-%08x %08x %c%c%c\n",
1177 *pstart
, end
, end
- *pstart
,
1178 prot1
& PG_USER_MASK
? 'u' : '-',
1180 prot1
& PG_RW_MASK
? 'w' : '-');
1190 static void mem_info(void)
1193 int l1
, l2
, prot
, last_prot
;
1194 uint32_t pgd
, pde
, pte
, start
, end
;
1196 env
= mon_get_cpu();
1200 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1201 term_printf("PG disabled\n");
1204 pgd
= env
->cr
[3] & ~0xfff;
1207 for(l1
= 0; l1
< 1024; l1
++) {
1208 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1209 pde
= le32_to_cpu(pde
);
1211 if (pde
& PG_PRESENT_MASK
) {
1212 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1213 prot
= pde
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1214 mem_print(&start
, &last_prot
, end
, prot
);
1216 for(l2
= 0; l2
< 1024; l2
++) {
1217 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1218 (uint8_t *)&pte
, 4);
1219 pte
= le32_to_cpu(pte
);
1220 end
= (l1
<< 22) + (l2
<< 12);
1221 if (pte
& PG_PRESENT_MASK
) {
1222 prot
= pte
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1226 mem_print(&start
, &last_prot
, end
, prot
);
1231 mem_print(&start
, &last_prot
, end
, prot
);
1237 static void do_info_kqemu(void)
1243 env
= mon_get_cpu();
1245 term_printf("No cpu initialized yet");
1248 val
= env
->kqemu_enabled
;
1249 term_printf("kqemu support: ");
1253 term_printf("disabled\n");
1256 term_printf("enabled for user code\n");
1259 term_printf("enabled for user and kernel code\n");
1263 term_printf("kqemu support: not compiled\n");
1267 static void do_info_kvm(void)
1270 term_printf("kvm support: ");
1272 term_printf("enabled\n");
1274 term_printf("disabled\n");
1276 term_printf("kvm support: not compiled\n");
1280 #ifdef CONFIG_PROFILER
1284 int64_t kqemu_exec_count
;
1286 int64_t kqemu_ret_int_count
;
1287 int64_t kqemu_ret_excp_count
;
1288 int64_t kqemu_ret_intr_count
;
1290 static void do_info_profile(void)
1296 term_printf("async time %" PRId64
" (%0.3f)\n",
1297 dev_time
, dev_time
/ (double)ticks_per_sec
);
1298 term_printf("qemu time %" PRId64
" (%0.3f)\n",
1299 qemu_time
, qemu_time
/ (double)ticks_per_sec
);
1300 term_printf("kqemu time %" PRId64
" (%0.3f %0.1f%%) count=%" PRId64
" int=%" PRId64
" excp=%" PRId64
" intr=%" PRId64
"\n",
1301 kqemu_time
, kqemu_time
/ (double)ticks_per_sec
,
1302 kqemu_time
/ (double)total
* 100.0,
1304 kqemu_ret_int_count
,
1305 kqemu_ret_excp_count
,
1306 kqemu_ret_intr_count
);
1309 kqemu_exec_count
= 0;
1311 kqemu_ret_int_count
= 0;
1312 kqemu_ret_excp_count
= 0;
1313 kqemu_ret_intr_count
= 0;
1315 kqemu_record_dump();
1319 static void do_info_profile(void)
1321 term_printf("Internal profiler not compiled\n");
1325 /* Capture support */
1326 static LIST_HEAD (capture_list_head
, CaptureState
) capture_head
;
1328 static void do_info_capture (void)
1333 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1334 term_printf ("[%d]: ", i
);
1335 s
->ops
.info (s
->opaque
);
1339 static void do_stop_capture (int n
)
1344 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1346 s
->ops
.destroy (s
->opaque
);
1347 LIST_REMOVE (s
, entries
);
1355 static void do_wav_capture (const char *path
,
1356 int has_freq
, int freq
,
1357 int has_bits
, int bits
,
1358 int has_channels
, int nchannels
)
1362 s
= qemu_mallocz (sizeof (*s
));
1364 term_printf ("Not enough memory to add wave capture\n");
1368 freq
= has_freq
? freq
: 44100;
1369 bits
= has_bits
? bits
: 16;
1370 nchannels
= has_channels
? nchannels
: 2;
1372 if (wav_start_capture (s
, path
, freq
, bits
, nchannels
)) {
1373 term_printf ("Faied to add wave capture\n");
1376 LIST_INSERT_HEAD (&capture_head
, s
, entries
);
1380 #if defined(TARGET_I386)
1381 static void do_inject_nmi(int cpu_index
)
1385 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
1386 if (env
->cpu_index
== cpu_index
) {
1387 cpu_interrupt(env
, CPU_INTERRUPT_NMI
);
1393 static const term_cmd_t term_cmds
[] = {
1394 { "help|?", "s?", do_help
,
1395 "[cmd]", "show the help" },
1396 { "commit", "s", do_commit
,
1397 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
1398 { "info", "s?", do_info
,
1399 "subcommand", "show various information about the system state" },
1400 { "q|quit", "", do_quit
,
1401 "", "quit the emulator" },
1402 { "eject", "-fB", do_eject
,
1403 "[-f] device", "eject a removable medium (use -f to force it)" },
1404 { "change", "BFs?", do_change
,
1405 "device filename [format]", "change a removable medium, optional format" },
1406 { "screendump", "F", do_screen_dump
,
1407 "filename", "save screen into PPM image 'filename'" },
1408 { "logfile", "F", do_logfile
,
1409 "filename", "output logs to 'filename'" },
1410 { "log", "s", do_log
,
1411 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
1412 { "savevm", "s?", do_savevm
,
1413 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
1414 { "loadvm", "s", do_loadvm
,
1415 "tag|id", "restore a VM snapshot from its tag or id" },
1416 { "delvm", "s", do_delvm
,
1417 "tag|id", "delete a VM snapshot from its tag or id" },
1418 { "stop", "", do_stop
,
1419 "", "stop emulation", },
1420 { "c|cont", "", do_cont
,
1421 "", "resume emulation", },
1422 #ifdef CONFIG_GDBSTUB
1423 { "gdbserver", "s?", do_gdbserver
,
1424 "[port]", "start gdbserver session (default port=1234)", },
1426 { "x", "/l", do_memory_dump
,
1427 "/fmt addr", "virtual memory dump starting at 'addr'", },
1428 { "xp", "/l", do_physical_memory_dump
,
1429 "/fmt addr", "physical memory dump starting at 'addr'", },
1430 { "p|print", "/l", do_print
,
1431 "/fmt expr", "print expression value (use $reg for CPU register access)", },
1432 { "i", "/ii.", do_ioport_read
,
1433 "/fmt addr", "I/O port read" },
1435 { "sendkey", "si?", do_sendkey
,
1436 "keys [hold_ms]", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)" },
1437 { "system_reset", "", do_system_reset
,
1438 "", "reset the system" },
1439 { "system_powerdown", "", do_system_powerdown
,
1440 "", "send system power down event" },
1441 { "sum", "ii", do_sum
,
1442 "addr size", "compute the checksum of a memory region" },
1443 { "usb_add", "s", do_usb_add
,
1444 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1445 { "usb_del", "s", do_usb_del
,
1446 "device", "remove USB device 'bus.addr'" },
1447 { "cpu", "i", do_cpu_set
,
1448 "index", "set the default CPU" },
1449 { "mouse_move", "sss?", do_mouse_move
,
1450 "dx dy [dz]", "send mouse move events" },
1451 { "mouse_button", "i", do_mouse_button
,
1452 "state", "change mouse button state (1=L, 2=M, 4=R)" },
1453 { "mouse_set", "i", do_mouse_set
,
1454 "index", "set which mouse device receives events" },
1456 { "wavcapture", "si?i?i?", do_wav_capture
,
1457 "path [frequency bits channels]",
1458 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1460 { "stopcapture", "i", do_stop_capture
,
1461 "capture index", "stop capture" },
1462 { "memsave", "lis", do_memory_save
,
1463 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
1464 { "pmemsave", "lis", do_physical_memory_save
,
1465 "addr size file", "save to disk physical memory dump starting at 'addr' of size 'size'", },
1466 { "boot_set", "s", do_boot_set
,
1467 "bootdevice", "define new values for the boot device list" },
1468 #if defined(TARGET_I386)
1469 { "nmi", "i", do_inject_nmi
,
1470 "cpu", "inject an NMI on the given CPU", },
1472 { "migrate", "-ds", do_migrate
,
1473 "[-d] uri", "migrate to URI (using -d to not wait for completion)" },
1474 { "migrate_cancel", "", do_migrate_cancel
,
1475 "", "cancel the current VM migration" },
1476 { "migrate_set_speed", "s", do_migrate_set_speed
,
1477 "value", "set maximum speed (in bytes) for migrations" },
1481 static const term_cmd_t info_cmds
[] = {
1482 { "version", "", do_info_version
,
1483 "", "show the version of qemu" },
1484 { "network", "", do_info_network
,
1485 "", "show the network state" },
1486 { "chardev", "", qemu_chr_info
,
1487 "", "show the character devices" },
1488 { "block", "", do_info_block
,
1489 "", "show the block devices" },
1490 { "blockstats", "", do_info_blockstats
,
1491 "", "show block device statistics" },
1492 { "registers", "", do_info_registers
,
1493 "", "show the cpu registers" },
1494 { "cpus", "", do_info_cpus
,
1495 "", "show infos for each CPU" },
1496 { "history", "", do_info_history
,
1497 "", "show the command line history", },
1498 { "irq", "", irq_info
,
1499 "", "show the interrupts statistics (if available)", },
1500 { "pic", "", pic_info
,
1501 "", "show i8259 (PIC) state", },
1502 { "pci", "", pci_info
,
1503 "", "show PCI info", },
1504 #if defined(TARGET_I386)
1505 { "tlb", "", tlb_info
,
1506 "", "show virtual to physical memory mappings", },
1507 { "mem", "", mem_info
,
1508 "", "show the active virtual memory mappings", },
1510 { "jit", "", do_info_jit
,
1511 "", "show dynamic compiler info", },
1512 { "kqemu", "", do_info_kqemu
,
1513 "", "show kqemu information", },
1514 { "kvm", "", do_info_kvm
,
1515 "", "show kvm information", },
1516 { "usb", "", usb_info
,
1517 "", "show guest USB devices", },
1518 { "usbhost", "", usb_host_info
,
1519 "", "show host USB devices", },
1520 { "profile", "", do_info_profile
,
1521 "", "show profiling information", },
1522 { "capture", "", do_info_capture
,
1523 "", "show capture information" },
1524 { "snapshots", "", do_info_snapshots
,
1525 "", "show the currently saved VM snapshots" },
1526 { "pcmcia", "", pcmcia_info
,
1527 "", "show guest PCMCIA status" },
1528 { "mice", "", do_info_mice
,
1529 "", "show which guest mouse is receiving events" },
1530 { "vnc", "", do_info_vnc
,
1531 "", "show the vnc server status"},
1532 { "name", "", do_info_name
,
1533 "", "show the current VM name" },
1534 { "uuid", "", do_info_uuid
,
1535 "", "show the current VM UUID" },
1536 #if defined(TARGET_PPC)
1537 { "cpustats", "", do_info_cpu_stats
,
1538 "", "show CPU statistics", },
1540 #if defined(CONFIG_SLIRP)
1541 { "slirp", "", do_info_slirp
,
1542 "", "show SLIRP statistics", },
1544 { "migrate", "", do_info_migrate
, "", "show migration status" },
1548 /*******************************************************************/
1550 static const char *pch
;
1551 static jmp_buf expr_env
;
1556 typedef struct MonitorDef
{
1559 target_long (*get_value
)(const struct MonitorDef
*md
, int val
);
1563 #if defined(TARGET_I386)
1564 static target_long
monitor_get_pc (const struct MonitorDef
*md
, int val
)
1566 CPUState
*env
= mon_get_cpu();
1569 return env
->eip
+ env
->segs
[R_CS
].base
;
1573 #if defined(TARGET_PPC)
1574 static target_long
monitor_get_ccr (const struct MonitorDef
*md
, int val
)
1576 CPUState
*env
= mon_get_cpu();
1584 for (i
= 0; i
< 8; i
++)
1585 u
|= env
->crf
[i
] << (32 - (4 * i
));
1590 static target_long
monitor_get_msr (const struct MonitorDef
*md
, int val
)
1592 CPUState
*env
= mon_get_cpu();
1598 static target_long
monitor_get_xer (const struct MonitorDef
*md
, int val
)
1600 CPUState
*env
= mon_get_cpu();
1606 static target_long
monitor_get_decr (const struct MonitorDef
*md
, int val
)
1608 CPUState
*env
= mon_get_cpu();
1611 return cpu_ppc_load_decr(env
);
1614 static target_long
monitor_get_tbu (const struct MonitorDef
*md
, int val
)
1616 CPUState
*env
= mon_get_cpu();
1619 return cpu_ppc_load_tbu(env
);
1622 static target_long
monitor_get_tbl (const struct MonitorDef
*md
, int val
)
1624 CPUState
*env
= mon_get_cpu();
1627 return cpu_ppc_load_tbl(env
);
1631 #if defined(TARGET_SPARC)
1632 #ifndef TARGET_SPARC64
1633 static target_long
monitor_get_psr (const struct MonitorDef
*md
, int val
)
1635 CPUState
*env
= mon_get_cpu();
1638 return GET_PSR(env
);
1642 static target_long
monitor_get_reg(const struct MonitorDef
*md
, int val
)
1644 CPUState
*env
= mon_get_cpu();
1647 return env
->regwptr
[val
];
1651 static const MonitorDef monitor_defs
[] = {
1654 #define SEG(name, seg) \
1655 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
1656 { name ".base", offsetof(CPUState, segs[seg].base) },\
1657 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
1659 { "eax", offsetof(CPUState
, regs
[0]) },
1660 { "ecx", offsetof(CPUState
, regs
[1]) },
1661 { "edx", offsetof(CPUState
, regs
[2]) },
1662 { "ebx", offsetof(CPUState
, regs
[3]) },
1663 { "esp|sp", offsetof(CPUState
, regs
[4]) },
1664 { "ebp|fp", offsetof(CPUState
, regs
[5]) },
1665 { "esi", offsetof(CPUState
, regs
[6]) },
1666 { "edi", offsetof(CPUState
, regs
[7]) },
1667 #ifdef TARGET_X86_64
1668 { "r8", offsetof(CPUState
, regs
[8]) },
1669 { "r9", offsetof(CPUState
, regs
[9]) },
1670 { "r10", offsetof(CPUState
, regs
[10]) },
1671 { "r11", offsetof(CPUState
, regs
[11]) },
1672 { "r12", offsetof(CPUState
, regs
[12]) },
1673 { "r13", offsetof(CPUState
, regs
[13]) },
1674 { "r14", offsetof(CPUState
, regs
[14]) },
1675 { "r15", offsetof(CPUState
, regs
[15]) },
1677 { "eflags", offsetof(CPUState
, eflags
) },
1678 { "eip", offsetof(CPUState
, eip
) },
1685 { "pc", 0, monitor_get_pc
, },
1686 #elif defined(TARGET_PPC)
1687 /* General purpose registers */
1688 { "r0", offsetof(CPUState
, gpr
[0]) },
1689 { "r1", offsetof(CPUState
, gpr
[1]) },
1690 { "r2", offsetof(CPUState
, gpr
[2]) },
1691 { "r3", offsetof(CPUState
, gpr
[3]) },
1692 { "r4", offsetof(CPUState
, gpr
[4]) },
1693 { "r5", offsetof(CPUState
, gpr
[5]) },
1694 { "r6", offsetof(CPUState
, gpr
[6]) },
1695 { "r7", offsetof(CPUState
, gpr
[7]) },
1696 { "r8", offsetof(CPUState
, gpr
[8]) },
1697 { "r9", offsetof(CPUState
, gpr
[9]) },
1698 { "r10", offsetof(CPUState
, gpr
[10]) },
1699 { "r11", offsetof(CPUState
, gpr
[11]) },
1700 { "r12", offsetof(CPUState
, gpr
[12]) },
1701 { "r13", offsetof(CPUState
, gpr
[13]) },
1702 { "r14", offsetof(CPUState
, gpr
[14]) },
1703 { "r15", offsetof(CPUState
, gpr
[15]) },
1704 { "r16", offsetof(CPUState
, gpr
[16]) },
1705 { "r17", offsetof(CPUState
, gpr
[17]) },
1706 { "r18", offsetof(CPUState
, gpr
[18]) },
1707 { "r19", offsetof(CPUState
, gpr
[19]) },
1708 { "r20", offsetof(CPUState
, gpr
[20]) },
1709 { "r21", offsetof(CPUState
, gpr
[21]) },
1710 { "r22", offsetof(CPUState
, gpr
[22]) },
1711 { "r23", offsetof(CPUState
, gpr
[23]) },
1712 { "r24", offsetof(CPUState
, gpr
[24]) },
1713 { "r25", offsetof(CPUState
, gpr
[25]) },
1714 { "r26", offsetof(CPUState
, gpr
[26]) },
1715 { "r27", offsetof(CPUState
, gpr
[27]) },
1716 { "r28", offsetof(CPUState
, gpr
[28]) },
1717 { "r29", offsetof(CPUState
, gpr
[29]) },
1718 { "r30", offsetof(CPUState
, gpr
[30]) },
1719 { "r31", offsetof(CPUState
, gpr
[31]) },
1720 /* Floating point registers */
1721 { "f0", offsetof(CPUState
, fpr
[0]) },
1722 { "f1", offsetof(CPUState
, fpr
[1]) },
1723 { "f2", offsetof(CPUState
, fpr
[2]) },
1724 { "f3", offsetof(CPUState
, fpr
[3]) },
1725 { "f4", offsetof(CPUState
, fpr
[4]) },
1726 { "f5", offsetof(CPUState
, fpr
[5]) },
1727 { "f6", offsetof(CPUState
, fpr
[6]) },
1728 { "f7", offsetof(CPUState
, fpr
[7]) },
1729 { "f8", offsetof(CPUState
, fpr
[8]) },
1730 { "f9", offsetof(CPUState
, fpr
[9]) },
1731 { "f10", offsetof(CPUState
, fpr
[10]) },
1732 { "f11", offsetof(CPUState
, fpr
[11]) },
1733 { "f12", offsetof(CPUState
, fpr
[12]) },
1734 { "f13", offsetof(CPUState
, fpr
[13]) },
1735 { "f14", offsetof(CPUState
, fpr
[14]) },
1736 { "f15", offsetof(CPUState
, fpr
[15]) },
1737 { "f16", offsetof(CPUState
, fpr
[16]) },
1738 { "f17", offsetof(CPUState
, fpr
[17]) },
1739 { "f18", offsetof(CPUState
, fpr
[18]) },
1740 { "f19", offsetof(CPUState
, fpr
[19]) },
1741 { "f20", offsetof(CPUState
, fpr
[20]) },
1742 { "f21", offsetof(CPUState
, fpr
[21]) },
1743 { "f22", offsetof(CPUState
, fpr
[22]) },
1744 { "f23", offsetof(CPUState
, fpr
[23]) },
1745 { "f24", offsetof(CPUState
, fpr
[24]) },
1746 { "f25", offsetof(CPUState
, fpr
[25]) },
1747 { "f26", offsetof(CPUState
, fpr
[26]) },
1748 { "f27", offsetof(CPUState
, fpr
[27]) },
1749 { "f28", offsetof(CPUState
, fpr
[28]) },
1750 { "f29", offsetof(CPUState
, fpr
[29]) },
1751 { "f30", offsetof(CPUState
, fpr
[30]) },
1752 { "f31", offsetof(CPUState
, fpr
[31]) },
1753 { "fpscr", offsetof(CPUState
, fpscr
) },
1754 /* Next instruction pointer */
1755 { "nip|pc", offsetof(CPUState
, nip
) },
1756 { "lr", offsetof(CPUState
, lr
) },
1757 { "ctr", offsetof(CPUState
, ctr
) },
1758 { "decr", 0, &monitor_get_decr
, },
1759 { "ccr", 0, &monitor_get_ccr
, },
1760 /* Machine state register */
1761 { "msr", 0, &monitor_get_msr
, },
1762 { "xer", 0, &monitor_get_xer
, },
1763 { "tbu", 0, &monitor_get_tbu
, },
1764 { "tbl", 0, &monitor_get_tbl
, },
1765 #if defined(TARGET_PPC64)
1766 /* Address space register */
1767 { "asr", offsetof(CPUState
, asr
) },
1769 /* Segment registers */
1770 { "sdr1", offsetof(CPUState
, sdr1
) },
1771 { "sr0", offsetof(CPUState
, sr
[0]) },
1772 { "sr1", offsetof(CPUState
, sr
[1]) },
1773 { "sr2", offsetof(CPUState
, sr
[2]) },
1774 { "sr3", offsetof(CPUState
, sr
[3]) },
1775 { "sr4", offsetof(CPUState
, sr
[4]) },
1776 { "sr5", offsetof(CPUState
, sr
[5]) },
1777 { "sr6", offsetof(CPUState
, sr
[6]) },
1778 { "sr7", offsetof(CPUState
, sr
[7]) },
1779 { "sr8", offsetof(CPUState
, sr
[8]) },
1780 { "sr9", offsetof(CPUState
, sr
[9]) },
1781 { "sr10", offsetof(CPUState
, sr
[10]) },
1782 { "sr11", offsetof(CPUState
, sr
[11]) },
1783 { "sr12", offsetof(CPUState
, sr
[12]) },
1784 { "sr13", offsetof(CPUState
, sr
[13]) },
1785 { "sr14", offsetof(CPUState
, sr
[14]) },
1786 { "sr15", offsetof(CPUState
, sr
[15]) },
1787 /* Too lazy to put BATs and SPRs ... */
1788 #elif defined(TARGET_SPARC)
1789 { "g0", offsetof(CPUState
, gregs
[0]) },
1790 { "g1", offsetof(CPUState
, gregs
[1]) },
1791 { "g2", offsetof(CPUState
, gregs
[2]) },
1792 { "g3", offsetof(CPUState
, gregs
[3]) },
1793 { "g4", offsetof(CPUState
, gregs
[4]) },
1794 { "g5", offsetof(CPUState
, gregs
[5]) },
1795 { "g6", offsetof(CPUState
, gregs
[6]) },
1796 { "g7", offsetof(CPUState
, gregs
[7]) },
1797 { "o0", 0, monitor_get_reg
},
1798 { "o1", 1, monitor_get_reg
},
1799 { "o2", 2, monitor_get_reg
},
1800 { "o3", 3, monitor_get_reg
},
1801 { "o4", 4, monitor_get_reg
},
1802 { "o5", 5, monitor_get_reg
},
1803 { "o6", 6, monitor_get_reg
},
1804 { "o7", 7, monitor_get_reg
},
1805 { "l0", 8, monitor_get_reg
},
1806 { "l1", 9, monitor_get_reg
},
1807 { "l2", 10, monitor_get_reg
},
1808 { "l3", 11, monitor_get_reg
},
1809 { "l4", 12, monitor_get_reg
},
1810 { "l5", 13, monitor_get_reg
},
1811 { "l6", 14, monitor_get_reg
},
1812 { "l7", 15, monitor_get_reg
},
1813 { "i0", 16, monitor_get_reg
},
1814 { "i1", 17, monitor_get_reg
},
1815 { "i2", 18, monitor_get_reg
},
1816 { "i3", 19, monitor_get_reg
},
1817 { "i4", 20, monitor_get_reg
},
1818 { "i5", 21, monitor_get_reg
},
1819 { "i6", 22, monitor_get_reg
},
1820 { "i7", 23, monitor_get_reg
},
1821 { "pc", offsetof(CPUState
, pc
) },
1822 { "npc", offsetof(CPUState
, npc
) },
1823 { "y", offsetof(CPUState
, y
) },
1824 #ifndef TARGET_SPARC64
1825 { "psr", 0, &monitor_get_psr
, },
1826 { "wim", offsetof(CPUState
, wim
) },
1828 { "tbr", offsetof(CPUState
, tbr
) },
1829 { "fsr", offsetof(CPUState
, fsr
) },
1830 { "f0", offsetof(CPUState
, fpr
[0]) },
1831 { "f1", offsetof(CPUState
, fpr
[1]) },
1832 { "f2", offsetof(CPUState
, fpr
[2]) },
1833 { "f3", offsetof(CPUState
, fpr
[3]) },
1834 { "f4", offsetof(CPUState
, fpr
[4]) },
1835 { "f5", offsetof(CPUState
, fpr
[5]) },
1836 { "f6", offsetof(CPUState
, fpr
[6]) },
1837 { "f7", offsetof(CPUState
, fpr
[7]) },
1838 { "f8", offsetof(CPUState
, fpr
[8]) },
1839 { "f9", offsetof(CPUState
, fpr
[9]) },
1840 { "f10", offsetof(CPUState
, fpr
[10]) },
1841 { "f11", offsetof(CPUState
, fpr
[11]) },
1842 { "f12", offsetof(CPUState
, fpr
[12]) },
1843 { "f13", offsetof(CPUState
, fpr
[13]) },
1844 { "f14", offsetof(CPUState
, fpr
[14]) },
1845 { "f15", offsetof(CPUState
, fpr
[15]) },
1846 { "f16", offsetof(CPUState
, fpr
[16]) },
1847 { "f17", offsetof(CPUState
, fpr
[17]) },
1848 { "f18", offsetof(CPUState
, fpr
[18]) },
1849 { "f19", offsetof(CPUState
, fpr
[19]) },
1850 { "f20", offsetof(CPUState
, fpr
[20]) },
1851 { "f21", offsetof(CPUState
, fpr
[21]) },
1852 { "f22", offsetof(CPUState
, fpr
[22]) },
1853 { "f23", offsetof(CPUState
, fpr
[23]) },
1854 { "f24", offsetof(CPUState
, fpr
[24]) },
1855 { "f25", offsetof(CPUState
, fpr
[25]) },
1856 { "f26", offsetof(CPUState
, fpr
[26]) },
1857 { "f27", offsetof(CPUState
, fpr
[27]) },
1858 { "f28", offsetof(CPUState
, fpr
[28]) },
1859 { "f29", offsetof(CPUState
, fpr
[29]) },
1860 { "f30", offsetof(CPUState
, fpr
[30]) },
1861 { "f31", offsetof(CPUState
, fpr
[31]) },
1862 #ifdef TARGET_SPARC64
1863 { "f32", offsetof(CPUState
, fpr
[32]) },
1864 { "f34", offsetof(CPUState
, fpr
[34]) },
1865 { "f36", offsetof(CPUState
, fpr
[36]) },
1866 { "f38", offsetof(CPUState
, fpr
[38]) },
1867 { "f40", offsetof(CPUState
, fpr
[40]) },
1868 { "f42", offsetof(CPUState
, fpr
[42]) },
1869 { "f44", offsetof(CPUState
, fpr
[44]) },
1870 { "f46", offsetof(CPUState
, fpr
[46]) },
1871 { "f48", offsetof(CPUState
, fpr
[48]) },
1872 { "f50", offsetof(CPUState
, fpr
[50]) },
1873 { "f52", offsetof(CPUState
, fpr
[52]) },
1874 { "f54", offsetof(CPUState
, fpr
[54]) },
1875 { "f56", offsetof(CPUState
, fpr
[56]) },
1876 { "f58", offsetof(CPUState
, fpr
[58]) },
1877 { "f60", offsetof(CPUState
, fpr
[60]) },
1878 { "f62", offsetof(CPUState
, fpr
[62]) },
1879 { "asi", offsetof(CPUState
, asi
) },
1880 { "pstate", offsetof(CPUState
, pstate
) },
1881 { "cansave", offsetof(CPUState
, cansave
) },
1882 { "canrestore", offsetof(CPUState
, canrestore
) },
1883 { "otherwin", offsetof(CPUState
, otherwin
) },
1884 { "wstate", offsetof(CPUState
, wstate
) },
1885 { "cleanwin", offsetof(CPUState
, cleanwin
) },
1886 { "fprs", offsetof(CPUState
, fprs
) },
1892 static void expr_error(const char *fmt
)
1896 longjmp(expr_env
, 1);
1899 /* return 0 if OK, -1 if not found, -2 if no CPU defined */
1900 static int get_monitor_def(target_long
*pval
, const char *name
)
1902 const MonitorDef
*md
;
1905 for(md
= monitor_defs
; md
->name
!= NULL
; md
++) {
1906 if (compare_cmd(name
, md
->name
)) {
1907 if (md
->get_value
) {
1908 *pval
= md
->get_value(md
, md
->offset
);
1910 CPUState
*env
= mon_get_cpu();
1913 ptr
= (uint8_t *)env
+ md
->offset
;
1916 *pval
= *(int32_t *)ptr
;
1919 *pval
= *(target_long
*)ptr
;
1932 static void next(void)
1936 while (isspace(*pch
))
1941 static int64_t expr_sum(void);
1943 static int64_t expr_unary(void)
1966 expr_error("')' expected");
1973 expr_error("character constant expected");
1977 expr_error("missing terminating \' character");
1987 while ((*pch
>= 'a' && *pch
<= 'z') ||
1988 (*pch
>= 'A' && *pch
<= 'Z') ||
1989 (*pch
>= '0' && *pch
<= '9') ||
1990 *pch
== '_' || *pch
== '.') {
1991 if ((q
- buf
) < sizeof(buf
) - 1)
1995 while (isspace(*pch
))
1998 ret
= get_monitor_def(®
, buf
);
2000 expr_error("unknown register");
2002 expr_error("no cpu defined");
2007 expr_error("unexpected end of expression");
2011 #if TARGET_PHYS_ADDR_BITS > 32
2012 n
= strtoull(pch
, &p
, 0);
2014 n
= strtoul(pch
, &p
, 0);
2017 expr_error("invalid char in expression");
2020 while (isspace(*pch
))
2028 static int64_t expr_prod(void)
2036 if (op
!= '*' && op
!= '/' && op
!= '%')
2039 val2
= expr_unary();
2048 expr_error("division by zero");
2059 static int64_t expr_logic(void)
2067 if (op
!= '&' && op
!= '|' && op
!= '^')
2087 static int64_t expr_sum(void)
2095 if (op
!= '+' && op
!= '-')
2098 val2
= expr_logic();
2107 static int get_expr(int64_t *pval
, const char **pp
)
2110 if (setjmp(expr_env
)) {
2114 while (isspace(*pch
))
2121 static int get_str(char *buf
, int buf_size
, const char **pp
)
2139 while (*p
!= '\0' && *p
!= '\"') {
2155 qemu_printf("unsupported escape code: '\\%c'\n", c
);
2158 if ((q
- buf
) < buf_size
- 1) {
2162 if ((q
- buf
) < buf_size
- 1) {
2169 qemu_printf("unterminated string\n");
2174 while (*p
!= '\0' && !isspace(*p
)) {
2175 if ((q
- buf
) < buf_size
- 1) {
2186 static int default_fmt_format
= 'x';
2187 static int default_fmt_size
= 4;
2191 static void monitor_handle_command(const char *cmdline
)
2193 const char *p
, *pstart
, *typestr
;
2195 int c
, nb_args
, len
, i
, has_arg
;
2196 const term_cmd_t
*cmd
;
2199 void *str_allocated
[MAX_ARGS
];
2200 void *args
[MAX_ARGS
];
2201 void (*handler_0
)(void);
2202 void (*handler_1
)(void *arg0
);
2203 void (*handler_2
)(void *arg0
, void *arg1
);
2204 void (*handler_3
)(void *arg0
, void *arg1
, void *arg2
);
2205 void (*handler_4
)(void *arg0
, void *arg1
, void *arg2
, void *arg3
);
2206 void (*handler_5
)(void *arg0
, void *arg1
, void *arg2
, void *arg3
,
2208 void (*handler_6
)(void *arg0
, void *arg1
, void *arg2
, void *arg3
,
2209 void *arg4
, void *arg5
);
2210 void (*handler_7
)(void *arg0
, void *arg1
, void *arg2
, void *arg3
,
2211 void *arg4
, void *arg5
, void *arg6
);
2214 term_printf("command='%s'\n", cmdline
);
2217 /* extract the command name */
2225 while (*p
!= '\0' && *p
!= '/' && !isspace(*p
))
2228 if (len
> sizeof(cmdname
) - 1)
2229 len
= sizeof(cmdname
) - 1;
2230 memcpy(cmdname
, pstart
, len
);
2231 cmdname
[len
] = '\0';
2233 /* find the command */
2234 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2235 if (compare_cmd(cmdname
, cmd
->name
))
2238 term_printf("unknown command: '%s'\n", cmdname
);
2242 for(i
= 0; i
< MAX_ARGS
; i
++)
2243 str_allocated
[i
] = NULL
;
2245 /* parse the parameters */
2246 typestr
= cmd
->args_type
;
2263 if (*typestr
== '?') {
2266 /* no optional string: NULL argument */
2271 ret
= get_str(buf
, sizeof(buf
), &p
);
2275 term_printf("%s: filename expected\n", cmdname
);
2278 term_printf("%s: block device name expected\n", cmdname
);
2281 term_printf("%s: string expected\n", cmdname
);
2286 str
= qemu_malloc(strlen(buf
) + 1);
2287 pstrcpy(str
, sizeof(buf
), buf
);
2288 str_allocated
[nb_args
] = str
;
2290 if (nb_args
>= MAX_ARGS
) {
2292 term_printf("%s: too many arguments\n", cmdname
);
2295 args
[nb_args
++] = str
;
2300 int count
, format
, size
;
2310 while (isdigit(*p
)) {
2311 count
= count
* 10 + (*p
- '0');
2349 if (*p
!= '\0' && !isspace(*p
)) {
2350 term_printf("invalid char in format: '%c'\n", *p
);
2354 format
= default_fmt_format
;
2355 if (format
!= 'i') {
2356 /* for 'i', not specifying a size gives -1 as size */
2358 size
= default_fmt_size
;
2359 default_fmt_size
= size
;
2361 default_fmt_format
= format
;
2364 format
= default_fmt_format
;
2365 if (format
!= 'i') {
2366 size
= default_fmt_size
;
2371 if (nb_args
+ 3 > MAX_ARGS
)
2373 args
[nb_args
++] = (void*)(long)count
;
2374 args
[nb_args
++] = (void*)(long)format
;
2375 args
[nb_args
++] = (void*)(long)size
;
2385 if (*typestr
== '?' || *typestr
== '.') {
2386 if (*typestr
== '?') {
2402 if (nb_args
>= MAX_ARGS
)
2404 args
[nb_args
++] = (void *)(long)has_arg
;
2406 if (nb_args
>= MAX_ARGS
)
2412 if (get_expr(&val
, &p
))
2416 if (nb_args
>= MAX_ARGS
)
2418 args
[nb_args
++] = (void *)(long)val
;
2420 if ((nb_args
+ 1) >= MAX_ARGS
)
2422 #if TARGET_PHYS_ADDR_BITS > 32
2423 args
[nb_args
++] = (void *)(long)((val
>> 32) & 0xffffffff);
2425 args
[nb_args
++] = (void *)0;
2427 args
[nb_args
++] = (void *)(long)(val
& 0xffffffff);
2445 term_printf("%s: unsupported option -%c\n",
2452 if (nb_args
>= MAX_ARGS
)
2454 args
[nb_args
++] = (void *)(long)has_option
;
2459 term_printf("%s: unknown type '%c'\n", cmdname
, c
);
2463 /* check that all arguments were parsed */
2467 term_printf("%s: extraneous characters at the end of line\n",
2474 handler_0
= cmd
->handler
;
2478 handler_1
= cmd
->handler
;
2482 handler_2
= cmd
->handler
;
2483 handler_2(args
[0], args
[1]);
2486 handler_3
= cmd
->handler
;
2487 handler_3(args
[0], args
[1], args
[2]);
2490 handler_4
= cmd
->handler
;
2491 handler_4(args
[0], args
[1], args
[2], args
[3]);
2494 handler_5
= cmd
->handler
;
2495 handler_5(args
[0], args
[1], args
[2], args
[3], args
[4]);
2498 handler_6
= cmd
->handler
;
2499 handler_6(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5]);
2502 handler_7
= cmd
->handler
;
2503 handler_7(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5], args
[6]);
2506 term_printf("unsupported number of arguments: %d\n", nb_args
);
2510 for(i
= 0; i
< MAX_ARGS
; i
++)
2511 qemu_free(str_allocated
[i
]);
2515 static void cmd_completion(const char *name
, const char *list
)
2517 const char *p
, *pstart
;
2526 p
= pstart
+ strlen(pstart
);
2528 if (len
> sizeof(cmd
) - 2)
2529 len
= sizeof(cmd
) - 2;
2530 memcpy(cmd
, pstart
, len
);
2532 if (name
[0] == '\0' || !strncmp(name
, cmd
, strlen(name
))) {
2533 add_completion(cmd
);
2541 static void file_completion(const char *input
)
2546 char file
[1024], file_prefix
[1024];
2550 p
= strrchr(input
, '/');
2553 pstrcpy(file_prefix
, sizeof(file_prefix
), input
);
2554 pstrcpy(path
, sizeof(path
), ".");
2556 input_path_len
= p
- input
+ 1;
2557 memcpy(path
, input
, input_path_len
);
2558 if (input_path_len
> sizeof(path
) - 1)
2559 input_path_len
= sizeof(path
) - 1;
2560 path
[input_path_len
] = '\0';
2561 pstrcpy(file_prefix
, sizeof(file_prefix
), p
+ 1);
2563 #ifdef DEBUG_COMPLETION
2564 term_printf("input='%s' path='%s' prefix='%s'\n", input
, path
, file_prefix
);
2566 ffs
= opendir(path
);
2574 if (strstart(d
->d_name
, file_prefix
, NULL
)) {
2575 memcpy(file
, input
, input_path_len
);
2576 if (input_path_len
< sizeof(file
))
2577 pstrcpy(file
+ input_path_len
, sizeof(file
) - input_path_len
,
2579 /* stat the file to find out if it's a directory.
2580 * In that case add a slash to speed up typing long paths
2583 if(S_ISDIR(sb
.st_mode
))
2584 pstrcat(file
, sizeof(file
), "/");
2585 add_completion(file
);
2591 static void block_completion_it(void *opaque
, const char *name
)
2593 const char *input
= opaque
;
2595 if (input
[0] == '\0' ||
2596 !strncmp(name
, (char *)input
, strlen(input
))) {
2597 add_completion(name
);
2601 /* NOTE: this parser is an approximate form of the real command parser */
2602 static void parse_cmdline(const char *cmdline
,
2603 int *pnb_args
, char **args
)
2616 if (nb_args
>= MAX_ARGS
)
2618 ret
= get_str(buf
, sizeof(buf
), &p
);
2619 args
[nb_args
] = qemu_strdup(buf
);
2624 *pnb_args
= nb_args
;
2627 void readline_find_completion(const char *cmdline
)
2629 const char *cmdname
;
2630 char *args
[MAX_ARGS
];
2631 int nb_args
, i
, len
;
2632 const char *ptype
, *str
;
2633 const term_cmd_t
*cmd
;
2636 parse_cmdline(cmdline
, &nb_args
, args
);
2637 #ifdef DEBUG_COMPLETION
2638 for(i
= 0; i
< nb_args
; i
++) {
2639 term_printf("arg%d = '%s'\n", i
, (char *)args
[i
]);
2643 /* if the line ends with a space, it means we want to complete the
2645 len
= strlen(cmdline
);
2646 if (len
> 0 && isspace(cmdline
[len
- 1])) {
2647 if (nb_args
>= MAX_ARGS
)
2649 args
[nb_args
++] = qemu_strdup("");
2652 /* command completion */
2657 completion_index
= strlen(cmdname
);
2658 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2659 cmd_completion(cmdname
, cmd
->name
);
2662 /* find the command */
2663 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2664 if (compare_cmd(args
[0], cmd
->name
))
2669 ptype
= cmd
->args_type
;
2670 for(i
= 0; i
< nb_args
- 2; i
++) {
2671 if (*ptype
!= '\0') {
2673 while (*ptype
== '?')
2677 str
= args
[nb_args
- 1];
2680 /* file completion */
2681 completion_index
= strlen(str
);
2682 file_completion(str
);
2685 /* block device name completion */
2686 completion_index
= strlen(str
);
2687 bdrv_iterate(block_completion_it
, (void *)str
);
2690 /* XXX: more generic ? */
2691 if (!strcmp(cmd
->name
, "info")) {
2692 completion_index
= strlen(str
);
2693 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
2694 cmd_completion(str
, cmd
->name
);
2696 } else if (!strcmp(cmd
->name
, "sendkey")) {
2697 completion_index
= strlen(str
);
2698 for(key
= key_defs
; key
->name
!= NULL
; key
++) {
2699 cmd_completion(str
, key
->name
);
2707 for(i
= 0; i
< nb_args
; i
++)
2711 static int term_can_read(void *opaque
)
2716 static void term_read(void *opaque
, const uint8_t *buf
, int size
)
2719 for(i
= 0; i
< size
; i
++)
2720 readline_handle_byte(buf
[i
]);
2723 static int monitor_suspended
;
2725 static void monitor_handle_command1(void *opaque
, const char *cmdline
)
2727 monitor_handle_command(cmdline
);
2728 if (!monitor_suspended
)
2729 monitor_start_input();
2731 monitor_suspended
= 2;
2734 void monitor_suspend(void)
2736 monitor_suspended
= 1;
2739 void monitor_resume(void)
2741 if (monitor_suspended
== 2)
2742 monitor_start_input();
2743 monitor_suspended
= 0;
2746 static void monitor_start_input(void)
2748 readline_start("(qemu) ", 0, monitor_handle_command1
, NULL
);
2751 static void term_event(void *opaque
, int event
)
2753 if (event
!= CHR_EVENT_RESET
)
2757 term_printf("QEMU %s monitor - type 'help' for more information\n",
2759 monitor_start_input();
2762 static int is_first_init
= 1;
2764 void monitor_init(CharDriverState
*hd
, int show_banner
)
2768 if (is_first_init
) {
2769 key_timer
= qemu_new_timer(vm_clock
, release_keys
, NULL
);
2772 for (i
= 0; i
< MAX_MON
; i
++) {
2773 monitor_hd
[i
] = NULL
;
2777 for (i
= 0; i
< MAX_MON
; i
++) {
2778 if (monitor_hd
[i
] == NULL
) {
2784 hide_banner
= !show_banner
;
2786 qemu_chr_add_handlers(hd
, term_can_read
, term_read
, term_event
, NULL
);
2788 readline_start("", 0, monitor_handle_command1
, NULL
);
2791 /* XXX: use threads ? */
2792 /* modal monitor readline */
2793 static int monitor_readline_started
;
2794 static char *monitor_readline_buf
;
2795 static int monitor_readline_buf_size
;
2797 static void monitor_readline_cb(void *opaque
, const char *input
)
2799 pstrcpy(monitor_readline_buf
, monitor_readline_buf_size
, input
);
2800 monitor_readline_started
= 0;
2803 void monitor_readline(const char *prompt
, int is_password
,
2804 char *buf
, int buf_size
)
2807 int old_focus
[MAX_MON
];
2810 for (i
= 0; i
< MAX_MON
; i
++) {
2812 if (monitor_hd
[i
]) {
2813 old_focus
[i
] = monitor_hd
[i
]->focus
;
2814 monitor_hd
[i
]->focus
= 0;
2815 qemu_chr_send_event(monitor_hd
[i
], CHR_EVENT_FOCUS
);
2820 readline_start(prompt
, is_password
, monitor_readline_cb
, NULL
);
2821 monitor_readline_buf
= buf
;
2822 monitor_readline_buf_size
= buf_size
;
2823 monitor_readline_started
= 1;
2824 while (monitor_readline_started
) {
2827 /* restore original focus */
2829 for (i
= 0; i
< MAX_MON
; i
++)
2831 monitor_hd
[i
]->focus
= old_focus
[i
];