4 * Copyright (c) 2003-2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #include "hw/pcmcia.h"
31 #include "qemu-char.h"
35 #include "audio/audio.h"
37 #include "migration.h"
39 #include "qemu-timer.h"
44 //#define DEBUG_COMPLETION
47 #define offsetof(type, field) ((size_t) &((type *)0)->field)
54 * 'B' block device name
55 * 's' string (accept optional quote)
57 * 'l' target long (32 or 64 bit)
58 * '/' optional gdb-like print format (like "/10x")
60 * '?' optional type (for 'F', 's' and 'i')
64 typedef struct term_cmd_t
{
66 const char *args_type
;
73 static CharDriverState
*monitor_hd
[MAX_MON
];
74 static int hide_banner
;
76 static term_cmd_t term_cmds
[];
77 static term_cmd_t info_cmds
[];
79 static uint8_t term_outbuf
[1024];
80 static int term_outbuf_index
;
82 CPUState
*mon_cpu
= NULL
;
87 if (term_outbuf_index
> 0) {
88 for (i
= 0; i
< MAX_MON
; i
++)
89 if (monitor_hd
[i
] && monitor_hd
[i
]->focus
== 0)
90 qemu_chr_write(monitor_hd
[i
], term_outbuf
, term_outbuf_index
);
91 term_outbuf_index
= 0;
95 /* flush at every end of line or if the buffer is full */
96 void term_puts(const char *str
)
104 term_outbuf
[term_outbuf_index
++] = '\r';
105 term_outbuf
[term_outbuf_index
++] = c
;
106 if (term_outbuf_index
>= (sizeof(term_outbuf
) - 1) ||
112 void term_vprintf(const char *fmt
, va_list ap
)
115 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
119 void term_printf(const char *fmt
, ...)
123 term_vprintf(fmt
, ap
);
127 void term_print_filename(const char *filename
)
131 for (i
= 0; filename
[i
]; i
++) {
132 switch (filename
[i
]) {
136 term_printf("\\%c", filename
[i
]);
148 term_printf("%c", filename
[i
]);
154 static int monitor_fprintf(FILE *stream
, const char *fmt
, ...)
158 term_vprintf(fmt
, ap
);
163 static int compare_cmd(const char *name
, const char *list
)
165 const char *p
, *pstart
;
173 p
= pstart
+ strlen(pstart
);
174 if ((p
- pstart
) == len
&& !memcmp(pstart
, name
, len
))
183 static void help_cmd1(term_cmd_t
*cmds
, const char *prefix
, const char *name
)
187 for(cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
188 if (!name
|| !strcmp(name
, cmd
->name
))
189 term_printf("%s%s %s -- %s\n", prefix
, cmd
->name
, cmd
->params
, cmd
->help
);
193 static void help_cmd(const char *name
)
195 if (name
&& !strcmp(name
, "info")) {
196 help_cmd1(info_cmds
, "info ", NULL
);
198 help_cmd1(term_cmds
, "", name
);
199 if (name
&& !strcmp(name
, "log")) {
201 term_printf("Log items (comma separated):\n");
202 term_printf("%-10s %s\n", "none", "remove all logs");
203 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
204 term_printf("%-10s %s\n", item
->name
, item
->help
);
210 static void do_help(const char *name
)
215 static void do_commit(const char *device
)
219 all_devices
= !strcmp(device
, "all");
220 for (i
= 0; i
< nb_drives
; i
++) {
222 !strcmp(bdrv_get_device_name(drives_table
[i
].bdrv
), device
))
223 bdrv_commit(drives_table
[i
].bdrv
);
227 static void do_info(const char *item
)
233 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
234 if (compare_cmd(item
, cmd
->name
))
244 static void do_info_version(void)
246 term_printf("%s\n", QEMU_VERSION
);
249 static void do_info_name(void)
252 term_printf("%s\n", qemu_name
);
255 static void do_info_block(void)
260 static void do_info_blockstats(void)
265 /* get the current CPU defined by the user */
266 static int mon_set_cpu(int cpu_index
)
270 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
271 if (env
->cpu_index
== cpu_index
) {
279 static CPUState
*mon_get_cpu(void)
285 kvm_save_registers(mon_cpu
);
290 static void do_info_registers(void)
297 cpu_dump_state(env
, NULL
, monitor_fprintf
,
300 cpu_dump_state(env
, NULL
, monitor_fprintf
,
305 static void do_info_cpus(void)
309 /* just to set the default cpu if not already done */
312 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
313 kvm_save_registers(env
);
314 term_printf("%c CPU #%d:",
315 (env
== mon_cpu
) ? '*' : ' ',
317 #if defined(TARGET_I386)
318 term_printf(" pc=0x" TARGET_FMT_lx
, env
->eip
+ env
->segs
[R_CS
].base
);
319 #elif defined(TARGET_PPC)
320 term_printf(" nip=0x" TARGET_FMT_lx
, env
->nip
);
321 #elif defined(TARGET_SPARC)
322 term_printf(" pc=0x" TARGET_FMT_lx
" npc=0x" TARGET_FMT_lx
, env
->pc
, env
->npc
);
323 #elif defined(TARGET_MIPS)
324 term_printf(" PC=0x" TARGET_FMT_lx
, env
->active_tc
.PC
);
327 term_printf(" (halted)");
328 term_printf(" thread_id=%d", env
->thread_id
);
333 static void do_cpu_set(int index
)
335 if (mon_set_cpu(index
) < 0)
336 term_printf("Invalid CPU index\n");
339 static void do_cpu_set_nr(int value
, const char *status
)
343 if (!strcmp(status
, "online"))
345 else if (!strcmp(status
, "offline"))
348 term_printf("invalid status: %s\n", status
);
351 #if defined(TARGET_I386) || defined(TARGET_X86_64)
352 qemu_system_cpu_hot_add(value
, state
);
356 static void do_info_jit(void)
358 dump_exec_info(NULL
, monitor_fprintf
);
361 static void do_info_history (void)
368 str
= readline_get_history(i
);
371 term_printf("%d: '%s'\n", i
, str
);
376 #if defined(TARGET_PPC)
377 /* XXX: not implemented in other targets */
378 static void do_info_cpu_stats (void)
383 cpu_dump_statistics(env
, NULL
, &monitor_fprintf
, 0);
387 static void do_quit(void)
392 static int eject_device(BlockDriverState
*bs
, int force
)
394 if (bdrv_is_inserted(bs
)) {
396 if (!bdrv_is_removable(bs
)) {
397 term_printf("device is not removable\n");
400 if (bdrv_is_locked(bs
)) {
401 term_printf("device is locked\n");
410 static void do_eject(int force
, const char *filename
)
412 BlockDriverState
*bs
;
414 bs
= bdrv_find(filename
);
416 term_printf("device not found\n");
419 eject_device(bs
, force
);
422 static void do_change_block(const char *device
, const char *filename
, const char *fmt
)
424 BlockDriverState
*bs
;
425 BlockDriver
*drv
= NULL
;
427 bs
= bdrv_find(device
);
429 term_printf("device not found\n");
433 drv
= bdrv_find_format(fmt
);
435 term_printf("invalid format %s\n", fmt
);
439 if (eject_device(bs
, 0) < 0)
441 bdrv_open2(bs
, filename
, 0, drv
);
442 qemu_key_check(bs
, filename
);
445 static void do_change_vnc(const char *target
)
447 if (strcmp(target
, "passwd") == 0 ||
448 strcmp(target
, "password") == 0) {
450 monitor_readline("Password: ", 1, password
, sizeof(password
)-1);
451 password
[sizeof(password
)-1] = '\0';
452 if (vnc_display_password(NULL
, password
) < 0)
453 term_printf("could not set VNC server password\n");
455 if (vnc_display_open(NULL
, target
) < 0)
456 term_printf("could not start VNC server on %s\n", target
);
460 static void do_change(const char *device
, const char *target
, const char *fmt
)
462 if (strcmp(device
, "vnc") == 0) {
463 do_change_vnc(target
);
465 do_change_block(device
, target
, fmt
);
469 static void do_screen_dump(const char *filename
)
471 vga_hw_screen_dump(filename
);
474 static void do_logfile(const char *filename
)
476 cpu_set_log_filename(filename
);
479 static void do_log(const char *items
)
483 if (!strcmp(items
, "none")) {
486 mask
= cpu_str_to_log_mask(items
);
495 static void do_stop(void)
497 vm_stop(EXCP_INTERRUPT
);
500 static void do_cont(void)
505 #ifdef CONFIG_GDBSTUB
506 static void do_gdbserver(const char *port
)
509 port
= DEFAULT_GDBSTUB_PORT
;
510 if (gdbserver_start(port
) < 0) {
511 qemu_printf("Could not open gdbserver socket on port '%s'\n", port
);
513 qemu_printf("Waiting gdb connection on port '%s'\n", port
);
518 static void term_printc(int c
)
535 if (c
>= 32 && c
<= 126) {
536 term_printf("%c", c
);
538 term_printf("\\x%02x", c
);
545 static void memory_dump(int count
, int format
, int wsize
,
546 target_phys_addr_t addr
, int is_physical
)
549 int nb_per_line
, l
, line_size
, i
, max_digits
, len
;
557 if (!env
&& !is_physical
)
562 } else if (wsize
== 4) {
565 /* as default we use the current CS size */
569 if ((env
->efer
& MSR_EFER_LMA
) &&
570 (env
->segs
[R_CS
].flags
& DESC_L_MASK
))
574 if (!(env
->segs
[R_CS
].flags
& DESC_B_MASK
))
579 monitor_disas(env
, addr
, count
, is_physical
, flags
);
588 nb_per_line
= line_size
/ wsize
;
593 max_digits
= (wsize
* 8 + 2) / 3;
597 max_digits
= (wsize
* 8) / 4;
601 max_digits
= (wsize
* 8 * 10 + 32) / 33;
610 term_printf(TARGET_FMT_plx
":", addr
);
612 term_printf(TARGET_FMT_lx
":", (target_ulong
)addr
);
617 cpu_physical_memory_rw(addr
, buf
, l
, 0);
622 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
629 v
= ldub_raw(buf
+ i
);
632 v
= lduw_raw(buf
+ i
);
635 v
= (uint32_t)ldl_raw(buf
+ i
);
638 v
= ldq_raw(buf
+ i
);
644 term_printf("%#*" PRIo64
, max_digits
, v
);
647 term_printf("0x%0*" PRIx64
, max_digits
, v
);
650 term_printf("%*" PRIu64
, max_digits
, v
);
653 term_printf("%*" PRId64
, max_digits
, v
);
667 #if TARGET_LONG_BITS == 64
668 #define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
670 #define GET_TLONG(h, l) (l)
673 static void do_memory_dump(int count
, int format
, int size
,
674 uint32_t addrh
, uint32_t addrl
)
676 target_long addr
= GET_TLONG(addrh
, addrl
);
677 memory_dump(count
, format
, size
, addr
, 0);
680 #if TARGET_PHYS_ADDR_BITS > 32
681 #define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
683 #define GET_TPHYSADDR(h, l) (l)
686 static void do_physical_memory_dump(int count
, int format
, int size
,
687 uint32_t addrh
, uint32_t addrl
)
690 target_phys_addr_t addr
= GET_TPHYSADDR(addrh
, addrl
);
691 memory_dump(count
, format
, size
, addr
, 1);
694 static void do_print(int count
, int format
, int size
, unsigned int valh
, unsigned int vall
)
696 target_phys_addr_t val
= GET_TPHYSADDR(valh
, vall
);
697 #if TARGET_PHYS_ADDR_BITS == 32
700 term_printf("%#o", val
);
703 term_printf("%#x", val
);
706 term_printf("%u", val
);
710 term_printf("%d", val
);
719 term_printf("%#" PRIo64
, val
);
722 term_printf("%#" PRIx64
, val
);
725 term_printf("%" PRIu64
, val
);
729 term_printf("%" PRId64
, val
);
739 static void do_memory_save(unsigned int valh
, unsigned int vall
,
740 uint32_t size
, const char *filename
)
743 target_long addr
= GET_TLONG(valh
, vall
);
752 f
= fopen(filename
, "wb");
754 term_printf("could not open '%s'\n", filename
);
761 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
762 fwrite(buf
, 1, l
, f
);
769 static void do_physical_memory_save(unsigned int valh
, unsigned int vall
,
770 uint32_t size
, const char *filename
)
775 target_phys_addr_t addr
= GET_TPHYSADDR(valh
, vall
);
777 f
= fopen(filename
, "wb");
779 term_printf("could not open '%s'\n", filename
);
786 cpu_physical_memory_rw(addr
, buf
, l
, 0);
787 fwrite(buf
, 1, l
, f
);
795 static void do_sum(uint32_t start
, uint32_t size
)
802 for(addr
= start
; addr
< (start
+ size
); addr
++) {
803 cpu_physical_memory_rw(addr
, buf
, 1, 0);
804 /* BSD sum algorithm ('sum' Unix command) */
805 sum
= (sum
>> 1) | (sum
<< 15);
808 term_printf("%05d\n", sum
);
816 static const KeyDef key_defs
[] = {
841 { 0x0e, "backspace" },
875 { 0x37, "asterisk" },
878 { 0x3a, "caps_lock" },
889 { 0x45, "num_lock" },
890 { 0x46, "scroll_lock" },
892 { 0xb5, "kp_divide" },
893 { 0x37, "kp_multiply" },
894 { 0x4a, "kp_subtract" },
896 { 0x9c, "kp_enter" },
897 { 0x53, "kp_decimal" },
930 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
950 static int get_keycode(const char *key
)
956 for(p
= key_defs
; p
->name
!= NULL
; p
++) {
957 if (!strcmp(key
, p
->name
))
960 if (strstart(key
, "0x", NULL
)) {
961 ret
= strtoul(key
, &endp
, 0);
962 if (*endp
== '\0' && ret
>= 0x01 && ret
<= 0xff)
968 #define MAX_KEYCODES 16
969 static uint8_t keycodes
[MAX_KEYCODES
];
970 static int nb_pending_keycodes
;
971 static QEMUTimer
*key_timer
;
973 static void release_keys(void *opaque
)
977 while (nb_pending_keycodes
> 0) {
978 nb_pending_keycodes
--;
979 keycode
= keycodes
[nb_pending_keycodes
];
981 kbd_put_keycode(0xe0);
982 kbd_put_keycode(keycode
| 0x80);
986 static void do_sendkey(const char *string
, int has_hold_time
, int hold_time
)
988 char keyname_buf
[16];
990 int keyname_len
, keycode
, i
;
992 if (nb_pending_keycodes
> 0) {
993 qemu_del_timer(key_timer
);
1000 separator
= strchr(string
, '-');
1001 keyname_len
= separator
? separator
- string
: strlen(string
);
1002 if (keyname_len
> 0) {
1003 pstrcpy(keyname_buf
, sizeof(keyname_buf
), string
);
1004 if (keyname_len
> sizeof(keyname_buf
) - 1) {
1005 term_printf("invalid key: '%s...'\n", keyname_buf
);
1008 if (i
== MAX_KEYCODES
) {
1009 term_printf("too many keys\n");
1012 keyname_buf
[keyname_len
] = 0;
1013 keycode
= get_keycode(keyname_buf
);
1015 term_printf("unknown key: '%s'\n", keyname_buf
);
1018 keycodes
[i
++] = keycode
;
1022 string
= separator
+ 1;
1024 nb_pending_keycodes
= i
;
1025 /* key down events */
1026 for (i
= 0; i
< nb_pending_keycodes
; i
++) {
1027 keycode
= keycodes
[i
];
1029 kbd_put_keycode(0xe0);
1030 kbd_put_keycode(keycode
& 0x7f);
1032 /* delayed key up events */
1033 qemu_mod_timer(key_timer
, qemu_get_clock(vm_clock
) +
1034 muldiv64(ticks_per_sec
, hold_time
, 1000));
1037 static int mouse_button_state
;
1039 static void do_mouse_move(const char *dx_str
, const char *dy_str
,
1043 dx
= strtol(dx_str
, NULL
, 0);
1044 dy
= strtol(dy_str
, NULL
, 0);
1047 dz
= strtol(dz_str
, NULL
, 0);
1048 kbd_mouse_event(dx
, dy
, dz
, mouse_button_state
);
1051 static void do_mouse_button(int button_state
)
1053 mouse_button_state
= button_state
;
1054 kbd_mouse_event(0, 0, 0, mouse_button_state
);
1057 static void do_ioport_read(int count
, int format
, int size
, int addr
, int has_index
, int index
)
1063 cpu_outb(NULL
, addr
& 0xffff, index
& 0xff);
1071 val
= cpu_inb(NULL
, addr
);
1075 val
= cpu_inw(NULL
, addr
);
1079 val
= cpu_inl(NULL
, addr
);
1083 term_printf("port%c[0x%04x] = %#0*x\n",
1084 suffix
, addr
, size
* 2, val
);
1087 /* boot_set handler */
1088 static QEMUBootSetHandler
*qemu_boot_set_handler
= NULL
;
1089 static void *boot_opaque
;
1091 void qemu_register_boot_set(QEMUBootSetHandler
*func
, void *opaque
)
1093 qemu_boot_set_handler
= func
;
1094 boot_opaque
= opaque
;
1097 static void do_boot_set(const char *bootdevice
)
1101 if (qemu_boot_set_handler
) {
1102 res
= qemu_boot_set_handler(boot_opaque
, bootdevice
);
1104 term_printf("boot device list now set to %s\n", bootdevice
);
1106 term_printf("setting boot device list failed with error %i\n", res
);
1108 term_printf("no function defined to set boot device list for this architecture\n");
1112 static void do_system_reset(void)
1114 qemu_system_reset_request();
1117 static void do_system_powerdown(void)
1119 qemu_system_powerdown_request();
1122 #if defined(TARGET_I386)
1123 static void print_pte(uint32_t addr
, uint32_t pte
, uint32_t mask
)
1125 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
1128 pte
& PG_GLOBAL_MASK
? 'G' : '-',
1129 pte
& PG_PSE_MASK
? 'P' : '-',
1130 pte
& PG_DIRTY_MASK
? 'D' : '-',
1131 pte
& PG_ACCESSED_MASK
? 'A' : '-',
1132 pte
& PG_PCD_MASK
? 'C' : '-',
1133 pte
& PG_PWT_MASK
? 'T' : '-',
1134 pte
& PG_USER_MASK
? 'U' : '-',
1135 pte
& PG_RW_MASK
? 'W' : '-');
1138 static void tlb_info(void)
1142 uint32_t pgd
, pde
, pte
;
1144 env
= mon_get_cpu();
1148 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1149 term_printf("PG disabled\n");
1152 pgd
= env
->cr
[3] & ~0xfff;
1153 for(l1
= 0; l1
< 1024; l1
++) {
1154 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1155 pde
= le32_to_cpu(pde
);
1156 if (pde
& PG_PRESENT_MASK
) {
1157 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1158 print_pte((l1
<< 22), pde
, ~((1 << 20) - 1));
1160 for(l2
= 0; l2
< 1024; l2
++) {
1161 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1162 (uint8_t *)&pte
, 4);
1163 pte
= le32_to_cpu(pte
);
1164 if (pte
& PG_PRESENT_MASK
) {
1165 print_pte((l1
<< 22) + (l2
<< 12),
1175 static void mem_print(uint32_t *pstart
, int *plast_prot
,
1176 uint32_t end
, int prot
)
1179 prot1
= *plast_prot
;
1180 if (prot
!= prot1
) {
1181 if (*pstart
!= -1) {
1182 term_printf("%08x-%08x %08x %c%c%c\n",
1183 *pstart
, end
, end
- *pstart
,
1184 prot1
& PG_USER_MASK
? 'u' : '-',
1186 prot1
& PG_RW_MASK
? 'w' : '-');
1196 static void mem_info(void)
1199 int l1
, l2
, prot
, last_prot
;
1200 uint32_t pgd
, pde
, pte
, start
, end
;
1202 env
= mon_get_cpu();
1206 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1207 term_printf("PG disabled\n");
1210 pgd
= env
->cr
[3] & ~0xfff;
1213 for(l1
= 0; l1
< 1024; l1
++) {
1214 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1215 pde
= le32_to_cpu(pde
);
1217 if (pde
& PG_PRESENT_MASK
) {
1218 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1219 prot
= pde
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1220 mem_print(&start
, &last_prot
, end
, prot
);
1222 for(l2
= 0; l2
< 1024; l2
++) {
1223 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1224 (uint8_t *)&pte
, 4);
1225 pte
= le32_to_cpu(pte
);
1226 end
= (l1
<< 22) + (l2
<< 12);
1227 if (pte
& PG_PRESENT_MASK
) {
1228 prot
= pte
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1232 mem_print(&start
, &last_prot
, end
, prot
);
1237 mem_print(&start
, &last_prot
, end
, prot
);
1243 static void do_info_kqemu(void)
1249 env
= mon_get_cpu();
1251 term_printf("No cpu initialized yet");
1254 val
= env
->kqemu_enabled
;
1255 term_printf("kqemu support: ");
1259 term_printf("disabled\n");
1262 term_printf("enabled for user code\n");
1265 term_printf("enabled for user and kernel code\n");
1269 term_printf("kqemu support: not compiled\n");
1273 static void do_info_kvm(void)
1276 term_printf("kvm support: ");
1278 term_printf("enabled\n");
1280 term_printf("disabled\n");
1282 term_printf("kvm support: not compiled\n");
1286 #ifdef CONFIG_PROFILER
1290 int64_t kqemu_exec_count
;
1292 int64_t kqemu_ret_int_count
;
1293 int64_t kqemu_ret_excp_count
;
1294 int64_t kqemu_ret_intr_count
;
1296 static void do_info_profile(void)
1302 term_printf("async time %" PRId64
" (%0.3f)\n",
1303 dev_time
, dev_time
/ (double)ticks_per_sec
);
1304 term_printf("qemu time %" PRId64
" (%0.3f)\n",
1305 qemu_time
, qemu_time
/ (double)ticks_per_sec
);
1306 term_printf("kqemu time %" PRId64
" (%0.3f %0.1f%%) count=%" PRId64
" int=%" PRId64
" excp=%" PRId64
" intr=%" PRId64
"\n",
1307 kqemu_time
, kqemu_time
/ (double)ticks_per_sec
,
1308 kqemu_time
/ (double)total
* 100.0,
1310 kqemu_ret_int_count
,
1311 kqemu_ret_excp_count
,
1312 kqemu_ret_intr_count
);
1315 kqemu_exec_count
= 0;
1317 kqemu_ret_int_count
= 0;
1318 kqemu_ret_excp_count
= 0;
1319 kqemu_ret_intr_count
= 0;
1321 kqemu_record_dump();
1325 static void do_info_profile(void)
1327 term_printf("Internal profiler not compiled\n");
1331 /* Capture support */
1332 static LIST_HEAD (capture_list_head
, CaptureState
) capture_head
;
1334 static void do_info_capture (void)
1339 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1340 term_printf ("[%d]: ", i
);
1341 s
->ops
.info (s
->opaque
);
1345 static void do_stop_capture (int n
)
1350 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1352 s
->ops
.destroy (s
->opaque
);
1353 LIST_REMOVE (s
, entries
);
1361 int wav_start_capture (CaptureState
*s
, const char *path
, int freq
,
1362 int bits
, int nchannels
);
1364 static void do_wav_capture (const char *path
,
1365 int has_freq
, int freq
,
1366 int has_bits
, int bits
,
1367 int has_channels
, int nchannels
)
1371 s
= qemu_mallocz (sizeof (*s
));
1373 term_printf ("Not enough memory to add wave capture\n");
1377 freq
= has_freq
? freq
: 44100;
1378 bits
= has_bits
? bits
: 16;
1379 nchannels
= has_channels
? nchannels
: 2;
1381 if (wav_start_capture (s
, path
, freq
, bits
, nchannels
)) {
1382 term_printf ("Faied to add wave capture\n");
1385 LIST_INSERT_HEAD (&capture_head
, s
, entries
);
1389 #if defined(TARGET_I386)
1390 static void do_inject_nmi(int cpu_index
)
1394 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
1395 if (env
->cpu_index
== cpu_index
) {
1396 cpu_interrupt(env
, CPU_INTERRUPT_NMI
);
1402 static term_cmd_t term_cmds
[] = {
1403 { "help|?", "s?", do_help
,
1404 "[cmd]", "show the help" },
1405 { "commit", "s", do_commit
,
1406 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
1407 { "info", "s?", do_info
,
1408 "subcommand", "show various information about the system state" },
1409 { "q|quit", "", do_quit
,
1410 "", "quit the emulator" },
1411 { "eject", "-fB", do_eject
,
1412 "[-f] device", "eject a removable medium (use -f to force it)" },
1413 { "change", "BFs?", do_change
,
1414 "device filename [format]", "change a removable medium, optional format" },
1415 { "screendump", "F", do_screen_dump
,
1416 "filename", "save screen into PPM image 'filename'" },
1417 { "logfile", "F", do_logfile
,
1418 "filename", "output logs to 'filename'" },
1419 { "log", "s", do_log
,
1420 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
1421 { "savevm", "s?", do_savevm
,
1422 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
1423 { "loadvm", "s", do_loadvm
,
1424 "tag|id", "restore a VM snapshot from its tag or id" },
1425 { "delvm", "s", do_delvm
,
1426 "tag|id", "delete a VM snapshot from its tag or id" },
1427 { "stop", "", do_stop
,
1428 "", "stop emulation", },
1429 { "c|cont", "", do_cont
,
1430 "", "resume emulation", },
1431 #ifdef CONFIG_GDBSTUB
1432 { "gdbserver", "s?", do_gdbserver
,
1433 "[port]", "start gdbserver session (default port=1234)", },
1435 { "x", "/l", do_memory_dump
,
1436 "/fmt addr", "virtual memory dump starting at 'addr'", },
1437 { "xp", "/l", do_physical_memory_dump
,
1438 "/fmt addr", "physical memory dump starting at 'addr'", },
1439 { "p|print", "/l", do_print
,
1440 "/fmt expr", "print expression value (use $reg for CPU register access)", },
1441 { "i", "/ii.", do_ioport_read
,
1442 "/fmt addr", "I/O port read" },
1444 { "sendkey", "si?", do_sendkey
,
1445 "keys [hold_ms]", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)" },
1446 { "system_reset", "", do_system_reset
,
1447 "", "reset the system" },
1448 { "system_powerdown", "", do_system_powerdown
,
1449 "", "send system power down event" },
1450 { "sum", "ii", do_sum
,
1451 "addr size", "compute the checksum of a memory region" },
1452 { "usb_add", "s", do_usb_add
,
1453 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1454 { "usb_del", "s", do_usb_del
,
1455 "device", "remove USB device 'bus.addr'" },
1456 { "cpu", "i", do_cpu_set
,
1457 "index", "set the default CPU" },
1458 { "mouse_move", "sss?", do_mouse_move
,
1459 "dx dy [dz]", "send mouse move events" },
1460 { "mouse_button", "i", do_mouse_button
,
1461 "state", "change mouse button state (1=L, 2=M, 4=R)" },
1462 { "mouse_set", "i", do_mouse_set
,
1463 "index", "set which mouse device receives events" },
1465 { "wavcapture", "si?i?i?", do_wav_capture
,
1466 "path [frequency bits channels]",
1467 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1469 { "stopcapture", "i", do_stop_capture
,
1470 "capture index", "stop capture" },
1471 { "memsave", "lis", do_memory_save
,
1472 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
1473 { "pmemsave", "lis", do_physical_memory_save
,
1474 "addr size file", "save to disk physical memory dump starting at 'addr' of size 'size'", },
1475 { "boot_set", "s", do_boot_set
,
1476 "bootdevice", "define new values for the boot device list" },
1477 #if defined(TARGET_I386)
1478 { "nmi", "i", do_inject_nmi
,
1479 "cpu", "inject an NMI on the given CPU", },
1481 { "migrate", "-ds", do_migrate
,
1482 "[-d] command", "migrate the VM using command (use -d to not wait for command to complete)" },
1483 { "migrate_cancel", "", do_migrate_cancel
,
1484 "", "cancel the current VM migration" },
1485 { "migrate_set_speed", "s", do_migrate_set_speed
,
1486 "value", "set maximum speed (in bytes) for migrations" },
1487 { "cpu_set", "is", do_cpu_set_nr
, "cpu [online|offline]", "change cpu state" },
1488 #if defined(TARGET_I386) || defined(TARGET_X86_64)
1489 { "drive_add", "iss", drive_hot_add
, "pcibus pcidevfn [file=file][,if=type][,bus=n]\n"
1490 "[,unit=m][,media=d][index=i]\n"
1491 "[,cyls=c,heads=h,secs=s[,trans=t]]\n"
1492 "[snapshot=on|off][,cache=on|off]",
1493 "add drive to PCI storage controller" },
1494 { "pci_add", "iss", device_hot_add
, "bus nic|storage [[vlan=n][,macaddr=addr][,model=type]] [file=file][,if=type][,bus=nr]...", "hot-add PCI device" },
1495 { "pci_del", "ii", device_hot_remove
, "bus slot-number", "hot remove PCI device" },
1500 static term_cmd_t info_cmds
[] = {
1501 { "version", "", do_info_version
,
1502 "", "show the version of qemu" },
1503 { "network", "", do_info_network
,
1504 "", "show the network state" },
1505 { "block", "", do_info_block
,
1506 "", "show the block devices" },
1507 { "blockstats", "", do_info_blockstats
,
1508 "", "show block device statistics" },
1509 { "registers", "", do_info_registers
,
1510 "", "show the cpu registers" },
1511 { "cpus", "", do_info_cpus
,
1512 "", "show infos for each CPU" },
1513 { "history", "", do_info_history
,
1514 "", "show the command line history", },
1515 { "irq", "", irq_info
,
1516 "", "show the interrupts statistics (if available)", },
1517 { "pic", "", pic_info
,
1518 "", "show i8259 (PIC) state", },
1519 { "pci", "", pci_info
,
1520 "", "show PCI info", },
1521 #if defined(TARGET_I386)
1522 { "tlb", "", tlb_info
,
1523 "", "show virtual to physical memory mappings", },
1524 { "mem", "", mem_info
,
1525 "", "show the active virtual memory mappings", },
1527 { "jit", "", do_info_jit
,
1528 "", "show dynamic compiler info", },
1529 { "kqemu", "", do_info_kqemu
,
1530 "", "show kqemu information", },
1531 { "kvm", "", do_info_kvm
,
1532 "", "show kvm information", },
1533 { "usb", "", usb_info
,
1534 "", "show guest USB devices", },
1535 { "usbhost", "", usb_host_info
,
1536 "", "show host USB devices", },
1537 { "profile", "", do_info_profile
,
1538 "", "show profiling information", },
1539 { "capture", "", do_info_capture
,
1540 "", "show capture information" },
1541 { "snapshots", "", do_info_snapshots
,
1542 "", "show the currently saved VM snapshots" },
1543 { "pcmcia", "", pcmcia_info
,
1544 "", "show guest PCMCIA status" },
1545 { "mice", "", do_info_mice
,
1546 "", "show which guest mouse is receiving events" },
1547 { "vnc", "", do_info_vnc
,
1548 "", "show the vnc server status"},
1549 { "name", "", do_info_name
,
1550 "", "show the current VM name" },
1551 #if defined(TARGET_PPC)
1552 { "cpustats", "", do_info_cpu_stats
,
1553 "", "show CPU statistics", },
1555 #if defined(CONFIG_SLIRP)
1556 { "slirp", "", do_info_slirp
,
1557 "", "show SLIRP statistics", },
1559 { "migration", "", do_info_migration
,
1560 "", "show migration information" },
1564 /*******************************************************************/
1566 static const char *pch
;
1567 static jmp_buf expr_env
;
1572 typedef struct MonitorDef
{
1575 target_long (*get_value
)(struct MonitorDef
*md
, int val
);
1579 #if defined(TARGET_I386)
1580 static target_long
monitor_get_pc (struct MonitorDef
*md
, int val
)
1582 CPUState
*env
= mon_get_cpu();
1585 return env
->eip
+ env
->segs
[R_CS
].base
;
1589 #if defined(TARGET_PPC)
1590 static target_long
monitor_get_ccr (struct MonitorDef
*md
, int val
)
1592 CPUState
*env
= mon_get_cpu();
1600 for (i
= 0; i
< 8; i
++)
1601 u
|= env
->crf
[i
] << (32 - (4 * i
));
1606 static target_long
monitor_get_msr (struct MonitorDef
*md
, int val
)
1608 CPUState
*env
= mon_get_cpu();
1614 static target_long
monitor_get_xer (struct MonitorDef
*md
, int val
)
1616 CPUState
*env
= mon_get_cpu();
1619 return ppc_load_xer(env
);
1622 static target_long
monitor_get_decr (struct MonitorDef
*md
, int val
)
1624 CPUState
*env
= mon_get_cpu();
1627 return cpu_ppc_load_decr(env
);
1630 static target_long
monitor_get_tbu (struct MonitorDef
*md
, int val
)
1632 CPUState
*env
= mon_get_cpu();
1635 return cpu_ppc_load_tbu(env
);
1638 static target_long
monitor_get_tbl (struct MonitorDef
*md
, int val
)
1640 CPUState
*env
= mon_get_cpu();
1643 return cpu_ppc_load_tbl(env
);
1647 #if defined(TARGET_SPARC)
1648 #ifndef TARGET_SPARC64
1649 static target_long
monitor_get_psr (struct MonitorDef
*md
, int val
)
1651 CPUState
*env
= mon_get_cpu();
1654 return GET_PSR(env
);
1658 static target_long
monitor_get_reg(struct MonitorDef
*md
, int val
)
1660 CPUState
*env
= mon_get_cpu();
1663 return env
->regwptr
[val
];
1667 static MonitorDef monitor_defs
[] = {
1670 #define SEG(name, seg) \
1671 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
1672 { name ".base", offsetof(CPUState, segs[seg].base) },\
1673 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
1675 { "eax", offsetof(CPUState
, regs
[0]) },
1676 { "ecx", offsetof(CPUState
, regs
[1]) },
1677 { "edx", offsetof(CPUState
, regs
[2]) },
1678 { "ebx", offsetof(CPUState
, regs
[3]) },
1679 { "esp|sp", offsetof(CPUState
, regs
[4]) },
1680 { "ebp|fp", offsetof(CPUState
, regs
[5]) },
1681 { "esi", offsetof(CPUState
, regs
[6]) },
1682 { "edi", offsetof(CPUState
, regs
[7]) },
1683 #ifdef TARGET_X86_64
1684 { "r8", offsetof(CPUState
, regs
[8]) },
1685 { "r9", offsetof(CPUState
, regs
[9]) },
1686 { "r10", offsetof(CPUState
, regs
[10]) },
1687 { "r11", offsetof(CPUState
, regs
[11]) },
1688 { "r12", offsetof(CPUState
, regs
[12]) },
1689 { "r13", offsetof(CPUState
, regs
[13]) },
1690 { "r14", offsetof(CPUState
, regs
[14]) },
1691 { "r15", offsetof(CPUState
, regs
[15]) },
1693 { "eflags", offsetof(CPUState
, eflags
) },
1694 { "eip", offsetof(CPUState
, eip
) },
1701 { "pc", 0, monitor_get_pc
, },
1702 #elif defined(TARGET_PPC)
1703 /* General purpose registers */
1704 { "r0", offsetof(CPUState
, gpr
[0]) },
1705 { "r1", offsetof(CPUState
, gpr
[1]) },
1706 { "r2", offsetof(CPUState
, gpr
[2]) },
1707 { "r3", offsetof(CPUState
, gpr
[3]) },
1708 { "r4", offsetof(CPUState
, gpr
[4]) },
1709 { "r5", offsetof(CPUState
, gpr
[5]) },
1710 { "r6", offsetof(CPUState
, gpr
[6]) },
1711 { "r7", offsetof(CPUState
, gpr
[7]) },
1712 { "r8", offsetof(CPUState
, gpr
[8]) },
1713 { "r9", offsetof(CPUState
, gpr
[9]) },
1714 { "r10", offsetof(CPUState
, gpr
[10]) },
1715 { "r11", offsetof(CPUState
, gpr
[11]) },
1716 { "r12", offsetof(CPUState
, gpr
[12]) },
1717 { "r13", offsetof(CPUState
, gpr
[13]) },
1718 { "r14", offsetof(CPUState
, gpr
[14]) },
1719 { "r15", offsetof(CPUState
, gpr
[15]) },
1720 { "r16", offsetof(CPUState
, gpr
[16]) },
1721 { "r17", offsetof(CPUState
, gpr
[17]) },
1722 { "r18", offsetof(CPUState
, gpr
[18]) },
1723 { "r19", offsetof(CPUState
, gpr
[19]) },
1724 { "r20", offsetof(CPUState
, gpr
[20]) },
1725 { "r21", offsetof(CPUState
, gpr
[21]) },
1726 { "r22", offsetof(CPUState
, gpr
[22]) },
1727 { "r23", offsetof(CPUState
, gpr
[23]) },
1728 { "r24", offsetof(CPUState
, gpr
[24]) },
1729 { "r25", offsetof(CPUState
, gpr
[25]) },
1730 { "r26", offsetof(CPUState
, gpr
[26]) },
1731 { "r27", offsetof(CPUState
, gpr
[27]) },
1732 { "r28", offsetof(CPUState
, gpr
[28]) },
1733 { "r29", offsetof(CPUState
, gpr
[29]) },
1734 { "r30", offsetof(CPUState
, gpr
[30]) },
1735 { "r31", offsetof(CPUState
, gpr
[31]) },
1736 /* Floating point registers */
1737 { "f0", offsetof(CPUState
, fpr
[0]) },
1738 { "f1", offsetof(CPUState
, fpr
[1]) },
1739 { "f2", offsetof(CPUState
, fpr
[2]) },
1740 { "f3", offsetof(CPUState
, fpr
[3]) },
1741 { "f4", offsetof(CPUState
, fpr
[4]) },
1742 { "f5", offsetof(CPUState
, fpr
[5]) },
1743 { "f6", offsetof(CPUState
, fpr
[6]) },
1744 { "f7", offsetof(CPUState
, fpr
[7]) },
1745 { "f8", offsetof(CPUState
, fpr
[8]) },
1746 { "f9", offsetof(CPUState
, fpr
[9]) },
1747 { "f10", offsetof(CPUState
, fpr
[10]) },
1748 { "f11", offsetof(CPUState
, fpr
[11]) },
1749 { "f12", offsetof(CPUState
, fpr
[12]) },
1750 { "f13", offsetof(CPUState
, fpr
[13]) },
1751 { "f14", offsetof(CPUState
, fpr
[14]) },
1752 { "f15", offsetof(CPUState
, fpr
[15]) },
1753 { "f16", offsetof(CPUState
, fpr
[16]) },
1754 { "f17", offsetof(CPUState
, fpr
[17]) },
1755 { "f18", offsetof(CPUState
, fpr
[18]) },
1756 { "f19", offsetof(CPUState
, fpr
[19]) },
1757 { "f20", offsetof(CPUState
, fpr
[20]) },
1758 { "f21", offsetof(CPUState
, fpr
[21]) },
1759 { "f22", offsetof(CPUState
, fpr
[22]) },
1760 { "f23", offsetof(CPUState
, fpr
[23]) },
1761 { "f24", offsetof(CPUState
, fpr
[24]) },
1762 { "f25", offsetof(CPUState
, fpr
[25]) },
1763 { "f26", offsetof(CPUState
, fpr
[26]) },
1764 { "f27", offsetof(CPUState
, fpr
[27]) },
1765 { "f28", offsetof(CPUState
, fpr
[28]) },
1766 { "f29", offsetof(CPUState
, fpr
[29]) },
1767 { "f30", offsetof(CPUState
, fpr
[30]) },
1768 { "f31", offsetof(CPUState
, fpr
[31]) },
1769 { "fpscr", offsetof(CPUState
, fpscr
) },
1770 /* Next instruction pointer */
1771 { "nip|pc", offsetof(CPUState
, nip
) },
1772 { "lr", offsetof(CPUState
, lr
) },
1773 { "ctr", offsetof(CPUState
, ctr
) },
1774 { "decr", 0, &monitor_get_decr
, },
1775 { "ccr", 0, &monitor_get_ccr
, },
1776 /* Machine state register */
1777 { "msr", 0, &monitor_get_msr
, },
1778 { "xer", 0, &monitor_get_xer
, },
1779 { "tbu", 0, &monitor_get_tbu
, },
1780 { "tbl", 0, &monitor_get_tbl
, },
1781 #if defined(TARGET_PPC64)
1782 /* Address space register */
1783 { "asr", offsetof(CPUState
, asr
) },
1785 /* Segment registers */
1786 { "sdr1", offsetof(CPUState
, sdr1
) },
1787 { "sr0", offsetof(CPUState
, sr
[0]) },
1788 { "sr1", offsetof(CPUState
, sr
[1]) },
1789 { "sr2", offsetof(CPUState
, sr
[2]) },
1790 { "sr3", offsetof(CPUState
, sr
[3]) },
1791 { "sr4", offsetof(CPUState
, sr
[4]) },
1792 { "sr5", offsetof(CPUState
, sr
[5]) },
1793 { "sr6", offsetof(CPUState
, sr
[6]) },
1794 { "sr7", offsetof(CPUState
, sr
[7]) },
1795 { "sr8", offsetof(CPUState
, sr
[8]) },
1796 { "sr9", offsetof(CPUState
, sr
[9]) },
1797 { "sr10", offsetof(CPUState
, sr
[10]) },
1798 { "sr11", offsetof(CPUState
, sr
[11]) },
1799 { "sr12", offsetof(CPUState
, sr
[12]) },
1800 { "sr13", offsetof(CPUState
, sr
[13]) },
1801 { "sr14", offsetof(CPUState
, sr
[14]) },
1802 { "sr15", offsetof(CPUState
, sr
[15]) },
1803 /* Too lazy to put BATs and SPRs ... */
1804 #elif defined(TARGET_SPARC)
1805 { "g0", offsetof(CPUState
, gregs
[0]) },
1806 { "g1", offsetof(CPUState
, gregs
[1]) },
1807 { "g2", offsetof(CPUState
, gregs
[2]) },
1808 { "g3", offsetof(CPUState
, gregs
[3]) },
1809 { "g4", offsetof(CPUState
, gregs
[4]) },
1810 { "g5", offsetof(CPUState
, gregs
[5]) },
1811 { "g6", offsetof(CPUState
, gregs
[6]) },
1812 { "g7", offsetof(CPUState
, gregs
[7]) },
1813 { "o0", 0, monitor_get_reg
},
1814 { "o1", 1, monitor_get_reg
},
1815 { "o2", 2, monitor_get_reg
},
1816 { "o3", 3, monitor_get_reg
},
1817 { "o4", 4, monitor_get_reg
},
1818 { "o5", 5, monitor_get_reg
},
1819 { "o6", 6, monitor_get_reg
},
1820 { "o7", 7, monitor_get_reg
},
1821 { "l0", 8, monitor_get_reg
},
1822 { "l1", 9, monitor_get_reg
},
1823 { "l2", 10, monitor_get_reg
},
1824 { "l3", 11, monitor_get_reg
},
1825 { "l4", 12, monitor_get_reg
},
1826 { "l5", 13, monitor_get_reg
},
1827 { "l6", 14, monitor_get_reg
},
1828 { "l7", 15, monitor_get_reg
},
1829 { "i0", 16, monitor_get_reg
},
1830 { "i1", 17, monitor_get_reg
},
1831 { "i2", 18, monitor_get_reg
},
1832 { "i3", 19, monitor_get_reg
},
1833 { "i4", 20, monitor_get_reg
},
1834 { "i5", 21, monitor_get_reg
},
1835 { "i6", 22, monitor_get_reg
},
1836 { "i7", 23, monitor_get_reg
},
1837 { "pc", offsetof(CPUState
, pc
) },
1838 { "npc", offsetof(CPUState
, npc
) },
1839 { "y", offsetof(CPUState
, y
) },
1840 #ifndef TARGET_SPARC64
1841 { "psr", 0, &monitor_get_psr
, },
1842 { "wim", offsetof(CPUState
, wim
) },
1844 { "tbr", offsetof(CPUState
, tbr
) },
1845 { "fsr", offsetof(CPUState
, fsr
) },
1846 { "f0", offsetof(CPUState
, fpr
[0]) },
1847 { "f1", offsetof(CPUState
, fpr
[1]) },
1848 { "f2", offsetof(CPUState
, fpr
[2]) },
1849 { "f3", offsetof(CPUState
, fpr
[3]) },
1850 { "f4", offsetof(CPUState
, fpr
[4]) },
1851 { "f5", offsetof(CPUState
, fpr
[5]) },
1852 { "f6", offsetof(CPUState
, fpr
[6]) },
1853 { "f7", offsetof(CPUState
, fpr
[7]) },
1854 { "f8", offsetof(CPUState
, fpr
[8]) },
1855 { "f9", offsetof(CPUState
, fpr
[9]) },
1856 { "f10", offsetof(CPUState
, fpr
[10]) },
1857 { "f11", offsetof(CPUState
, fpr
[11]) },
1858 { "f12", offsetof(CPUState
, fpr
[12]) },
1859 { "f13", offsetof(CPUState
, fpr
[13]) },
1860 { "f14", offsetof(CPUState
, fpr
[14]) },
1861 { "f15", offsetof(CPUState
, fpr
[15]) },
1862 { "f16", offsetof(CPUState
, fpr
[16]) },
1863 { "f17", offsetof(CPUState
, fpr
[17]) },
1864 { "f18", offsetof(CPUState
, fpr
[18]) },
1865 { "f19", offsetof(CPUState
, fpr
[19]) },
1866 { "f20", offsetof(CPUState
, fpr
[20]) },
1867 { "f21", offsetof(CPUState
, fpr
[21]) },
1868 { "f22", offsetof(CPUState
, fpr
[22]) },
1869 { "f23", offsetof(CPUState
, fpr
[23]) },
1870 { "f24", offsetof(CPUState
, fpr
[24]) },
1871 { "f25", offsetof(CPUState
, fpr
[25]) },
1872 { "f26", offsetof(CPUState
, fpr
[26]) },
1873 { "f27", offsetof(CPUState
, fpr
[27]) },
1874 { "f28", offsetof(CPUState
, fpr
[28]) },
1875 { "f29", offsetof(CPUState
, fpr
[29]) },
1876 { "f30", offsetof(CPUState
, fpr
[30]) },
1877 { "f31", offsetof(CPUState
, fpr
[31]) },
1878 #ifdef TARGET_SPARC64
1879 { "f32", offsetof(CPUState
, fpr
[32]) },
1880 { "f34", offsetof(CPUState
, fpr
[34]) },
1881 { "f36", offsetof(CPUState
, fpr
[36]) },
1882 { "f38", offsetof(CPUState
, fpr
[38]) },
1883 { "f40", offsetof(CPUState
, fpr
[40]) },
1884 { "f42", offsetof(CPUState
, fpr
[42]) },
1885 { "f44", offsetof(CPUState
, fpr
[44]) },
1886 { "f46", offsetof(CPUState
, fpr
[46]) },
1887 { "f48", offsetof(CPUState
, fpr
[48]) },
1888 { "f50", offsetof(CPUState
, fpr
[50]) },
1889 { "f52", offsetof(CPUState
, fpr
[52]) },
1890 { "f54", offsetof(CPUState
, fpr
[54]) },
1891 { "f56", offsetof(CPUState
, fpr
[56]) },
1892 { "f58", offsetof(CPUState
, fpr
[58]) },
1893 { "f60", offsetof(CPUState
, fpr
[60]) },
1894 { "f62", offsetof(CPUState
, fpr
[62]) },
1895 { "asi", offsetof(CPUState
, asi
) },
1896 { "pstate", offsetof(CPUState
, pstate
) },
1897 { "cansave", offsetof(CPUState
, cansave
) },
1898 { "canrestore", offsetof(CPUState
, canrestore
) },
1899 { "otherwin", offsetof(CPUState
, otherwin
) },
1900 { "wstate", offsetof(CPUState
, wstate
) },
1901 { "cleanwin", offsetof(CPUState
, cleanwin
) },
1902 { "fprs", offsetof(CPUState
, fprs
) },
1908 static void expr_error(const char *fmt
)
1912 longjmp(expr_env
, 1);
1915 /* return 0 if OK, -1 if not found, -2 if no CPU defined */
1916 static int get_monitor_def(target_long
*pval
, const char *name
)
1921 for(md
= monitor_defs
; md
->name
!= NULL
; md
++) {
1922 if (compare_cmd(name
, md
->name
)) {
1923 if (md
->get_value
) {
1924 *pval
= md
->get_value(md
, md
->offset
);
1926 CPUState
*env
= mon_get_cpu();
1929 ptr
= (uint8_t *)env
+ md
->offset
;
1932 *pval
= *(int32_t *)ptr
;
1935 *pval
= *(target_long
*)ptr
;
1948 static void next(void)
1952 while (isspace(*pch
))
1957 static int64_t expr_sum(void);
1959 static int64_t expr_unary(void)
1982 expr_error("')' expected");
1989 expr_error("character constant expected");
1993 expr_error("missing terminating \' character");
2003 while ((*pch
>= 'a' && *pch
<= 'z') ||
2004 (*pch
>= 'A' && *pch
<= 'Z') ||
2005 (*pch
>= '0' && *pch
<= '9') ||
2006 *pch
== '_' || *pch
== '.') {
2007 if ((q
- buf
) < sizeof(buf
) - 1)
2011 while (isspace(*pch
))
2014 ret
= get_monitor_def(®
, buf
);
2016 expr_error("unknown register");
2018 expr_error("no cpu defined");
2023 expr_error("unexpected end of expression");
2027 #if TARGET_PHYS_ADDR_BITS > 32
2028 n
= strtoull(pch
, &p
, 0);
2030 n
= strtoul(pch
, &p
, 0);
2033 expr_error("invalid char in expression");
2036 while (isspace(*pch
))
2044 static int64_t expr_prod(void)
2052 if (op
!= '*' && op
!= '/' && op
!= '%')
2055 val2
= expr_unary();
2064 expr_error("division by zero");
2075 static int64_t expr_logic(void)
2083 if (op
!= '&' && op
!= '|' && op
!= '^')
2103 static int64_t expr_sum(void)
2111 if (op
!= '+' && op
!= '-')
2114 val2
= expr_logic();
2123 static int get_expr(int64_t *pval
, const char **pp
)
2126 if (setjmp(expr_env
)) {
2130 while (isspace(*pch
))
2137 static int get_str(char *buf
, int buf_size
, const char **pp
)
2155 while (*p
!= '\0' && *p
!= '\"') {
2171 qemu_printf("unsupported escape code: '\\%c'\n", c
);
2174 if ((q
- buf
) < buf_size
- 1) {
2178 if ((q
- buf
) < buf_size
- 1) {
2185 qemu_printf("unterminated string\n");
2190 while (*p
!= '\0' && !isspace(*p
)) {
2191 if ((q
- buf
) < buf_size
- 1) {
2202 static int default_fmt_format
= 'x';
2203 static int default_fmt_size
= 4;
2207 static void monitor_handle_command(const char *cmdline
)
2209 const char *p
, *pstart
, *typestr
;
2211 int c
, nb_args
, len
, i
, has_arg
;
2215 void *str_allocated
[MAX_ARGS
];
2216 void *args
[MAX_ARGS
];
2219 term_printf("command='%s'\n", cmdline
);
2222 /* extract the command name */
2230 while (*p
!= '\0' && *p
!= '/' && !isspace(*p
))
2233 if (len
> sizeof(cmdname
) - 1)
2234 len
= sizeof(cmdname
) - 1;
2235 memcpy(cmdname
, pstart
, len
);
2236 cmdname
[len
] = '\0';
2238 /* find the command */
2239 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2240 if (compare_cmd(cmdname
, cmd
->name
))
2243 term_printf("unknown command: '%s'\n", cmdname
);
2247 for(i
= 0; i
< MAX_ARGS
; i
++)
2248 str_allocated
[i
] = NULL
;
2250 /* parse the parameters */
2251 typestr
= cmd
->args_type
;
2268 if (*typestr
== '?') {
2271 /* no optional string: NULL argument */
2276 ret
= get_str(buf
, sizeof(buf
), &p
);
2280 term_printf("%s: filename expected\n", cmdname
);
2283 term_printf("%s: block device name expected\n", cmdname
);
2286 term_printf("%s: string expected\n", cmdname
);
2291 str
= qemu_malloc(strlen(buf
) + 1);
2293 str_allocated
[nb_args
] = str
;
2295 if (nb_args
>= MAX_ARGS
) {
2297 term_printf("%s: too many arguments\n", cmdname
);
2300 args
[nb_args
++] = str
;
2305 int count
, format
, size
;
2315 while (isdigit(*p
)) {
2316 count
= count
* 10 + (*p
- '0');
2354 if (*p
!= '\0' && !isspace(*p
)) {
2355 term_printf("invalid char in format: '%c'\n", *p
);
2359 format
= default_fmt_format
;
2360 if (format
!= 'i') {
2361 /* for 'i', not specifying a size gives -1 as size */
2363 size
= default_fmt_size
;
2365 default_fmt_size
= size
;
2366 default_fmt_format
= format
;
2369 format
= default_fmt_format
;
2370 if (format
!= 'i') {
2371 size
= default_fmt_size
;
2376 if (nb_args
+ 3 > MAX_ARGS
)
2378 args
[nb_args
++] = (void*)(long)count
;
2379 args
[nb_args
++] = (void*)(long)format
;
2380 args
[nb_args
++] = (void*)(long)size
;
2390 if (*typestr
== '?' || *typestr
== '.') {
2391 if (*typestr
== '?') {
2407 if (nb_args
>= MAX_ARGS
)
2409 args
[nb_args
++] = (void *)(long)has_arg
;
2411 if (nb_args
>= MAX_ARGS
)
2417 if (get_expr(&val
, &p
))
2421 if (nb_args
>= MAX_ARGS
)
2423 args
[nb_args
++] = (void *)(long)val
;
2425 if ((nb_args
+ 1) >= MAX_ARGS
)
2427 #if TARGET_PHYS_ADDR_BITS > 32
2428 args
[nb_args
++] = (void *)(long)((val
>> 32) & 0xffffffff);
2430 args
[nb_args
++] = (void *)0;
2432 args
[nb_args
++] = (void *)(long)(val
& 0xffffffff);
2450 term_printf("%s: unsupported option -%c\n",
2457 if (nb_args
>= MAX_ARGS
)
2459 args
[nb_args
++] = (void *)(long)has_option
;
2464 term_printf("%s: unknown type '%c'\n", cmdname
, c
);
2468 /* check that all arguments were parsed */
2472 term_printf("%s: extraneous characters at the end of line\n",
2482 cmd
->handler(args
[0]);
2485 cmd
->handler(args
[0], args
[1]);
2488 cmd
->handler(args
[0], args
[1], args
[2]);
2491 cmd
->handler(args
[0], args
[1], args
[2], args
[3]);
2494 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4]);
2497 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5]);
2500 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5], args
[6]);
2503 term_printf("unsupported number of arguments: %d\n", nb_args
);
2507 for(i
= 0; i
< MAX_ARGS
; i
++)
2508 qemu_free(str_allocated
[i
]);
2512 static void cmd_completion(const char *name
, const char *list
)
2514 const char *p
, *pstart
;
2523 p
= pstart
+ strlen(pstart
);
2525 if (len
> sizeof(cmd
) - 2)
2526 len
= sizeof(cmd
) - 2;
2527 memcpy(cmd
, pstart
, len
);
2529 if (name
[0] == '\0' || !strncmp(name
, cmd
, strlen(name
))) {
2530 add_completion(cmd
);
2538 static void file_completion(const char *input
)
2543 char file
[1024], file_prefix
[1024];
2547 p
= strrchr(input
, '/');
2550 pstrcpy(file_prefix
, sizeof(file_prefix
), input
);
2553 input_path_len
= p
- input
+ 1;
2554 memcpy(path
, input
, input_path_len
);
2555 if (input_path_len
> sizeof(path
) - 1)
2556 input_path_len
= sizeof(path
) - 1;
2557 path
[input_path_len
] = '\0';
2558 pstrcpy(file_prefix
, sizeof(file_prefix
), p
+ 1);
2560 #ifdef DEBUG_COMPLETION
2561 term_printf("input='%s' path='%s' prefix='%s'\n", input
, path
, file_prefix
);
2563 ffs
= opendir(path
);
2571 if (strstart(d
->d_name
, file_prefix
, NULL
)) {
2572 memcpy(file
, input
, input_path_len
);
2573 strcpy(file
+ input_path_len
, d
->d_name
);
2574 /* stat the file to find out if it's a directory.
2575 * In that case add a slash to speed up typing long paths
2578 if(S_ISDIR(sb
.st_mode
))
2580 add_completion(file
);
2586 static void block_completion_it(void *opaque
, const char *name
)
2588 const char *input
= opaque
;
2590 if (input
[0] == '\0' ||
2591 !strncmp(name
, (char *)input
, strlen(input
))) {
2592 add_completion(name
);
2596 /* NOTE: this parser is an approximate form of the real command parser */
2597 static void parse_cmdline(const char *cmdline
,
2598 int *pnb_args
, char **args
)
2611 if (nb_args
>= MAX_ARGS
)
2613 ret
= get_str(buf
, sizeof(buf
), &p
);
2614 args
[nb_args
] = qemu_strdup(buf
);
2619 *pnb_args
= nb_args
;
2622 void readline_find_completion(const char *cmdline
)
2624 const char *cmdname
;
2625 char *args
[MAX_ARGS
];
2626 int nb_args
, i
, len
;
2627 const char *ptype
, *str
;
2631 parse_cmdline(cmdline
, &nb_args
, args
);
2632 #ifdef DEBUG_COMPLETION
2633 for(i
= 0; i
< nb_args
; i
++) {
2634 term_printf("arg%d = '%s'\n", i
, (char *)args
[i
]);
2638 /* if the line ends with a space, it means we want to complete the
2640 len
= strlen(cmdline
);
2641 if (len
> 0 && isspace(cmdline
[len
- 1])) {
2642 if (nb_args
>= MAX_ARGS
)
2644 args
[nb_args
++] = qemu_strdup("");
2647 /* command completion */
2652 completion_index
= strlen(cmdname
);
2653 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2654 cmd_completion(cmdname
, cmd
->name
);
2657 /* find the command */
2658 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2659 if (compare_cmd(args
[0], cmd
->name
))
2664 ptype
= cmd
->args_type
;
2665 for(i
= 0; i
< nb_args
- 2; i
++) {
2666 if (*ptype
!= '\0') {
2668 while (*ptype
== '?')
2672 str
= args
[nb_args
- 1];
2675 /* file completion */
2676 completion_index
= strlen(str
);
2677 file_completion(str
);
2680 /* block device name completion */
2681 completion_index
= strlen(str
);
2682 bdrv_iterate(block_completion_it
, (void *)str
);
2685 /* XXX: more generic ? */
2686 if (!strcmp(cmd
->name
, "info")) {
2687 completion_index
= strlen(str
);
2688 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
2689 cmd_completion(str
, cmd
->name
);
2691 } else if (!strcmp(cmd
->name
, "sendkey")) {
2692 completion_index
= strlen(str
);
2693 for(key
= key_defs
; key
->name
!= NULL
; key
++) {
2694 cmd_completion(str
, key
->name
);
2702 for(i
= 0; i
< nb_args
; i
++)
2706 static int term_can_read(void *opaque
)
2711 static void term_read(void *opaque
, const uint8_t *buf
, int size
)
2714 for(i
= 0; i
< size
; i
++)
2715 readline_handle_byte(buf
[i
]);
2718 static int monitor_suspended
;
2720 void monitor_suspend(void)
2722 monitor_suspended
= 1;
2725 void monitor_resume(void)
2727 monitor_suspended
= 0;
2728 monitor_start_input();
2731 static void monitor_handle_command1(void *opaque
, const char *cmdline
)
2733 monitor_handle_command(cmdline
);
2734 if (!monitor_suspended
)
2735 monitor_start_input();
2738 void monitor_start_input(void)
2740 readline_start("(qemu) ", 0, monitor_handle_command1
, NULL
);
2743 static void term_event(void *opaque
, int event
)
2745 if (event
!= CHR_EVENT_RESET
)
2749 term_printf("QEMU %s monitor - type 'help' for more information\n",
2751 monitor_start_input();
2754 static int is_first_init
= 1;
2756 void monitor_init(CharDriverState
*hd
, int show_banner
)
2760 if (is_first_init
) {
2761 key_timer
= qemu_new_timer(vm_clock
, release_keys
, NULL
);
2764 for (i
= 0; i
< MAX_MON
; i
++) {
2765 monitor_hd
[i
] = NULL
;
2769 for (i
= 0; i
< MAX_MON
; i
++) {
2770 if (monitor_hd
[i
] == NULL
) {
2776 hide_banner
= !show_banner
;
2778 qemu_chr_add_handlers(hd
, term_can_read
, term_read
, term_event
, NULL
);
2781 /* XXX: use threads ? */
2782 /* modal monitor readline */
2783 static int monitor_readline_started
;
2784 static char *monitor_readline_buf
;
2785 static int monitor_readline_buf_size
;
2787 static void monitor_readline_cb(void *opaque
, const char *input
)
2789 pstrcpy(monitor_readline_buf
, monitor_readline_buf_size
, input
);
2790 monitor_readline_started
= 0;
2793 void monitor_readline(const char *prompt
, int is_password
,
2794 char *buf
, int buf_size
)
2797 int old_focus
[MAX_MON
];
2800 for (i
= 0; i
< MAX_MON
; i
++) {
2802 if (monitor_hd
[i
]) {
2803 old_focus
[i
] = monitor_hd
[i
]->focus
;
2804 monitor_hd
[i
]->focus
= 0;
2805 qemu_chr_send_event(monitor_hd
[i
], CHR_EVENT_FOCUS
);
2810 readline_start(prompt
, is_password
, monitor_readline_cb
, NULL
);
2811 monitor_readline_buf
= buf
;
2812 monitor_readline_buf_size
= buf_size
;
2813 monitor_readline_started
= 1;
2814 while (monitor_readline_started
) {
2817 /* restore original focus */
2819 for (i
= 0; i
< MAX_MON
; i
++)
2821 monitor_hd
[i
]->focus
= old_focus
[i
];