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"
40 #include "qemu-timer.h"
45 //#define DEBUG_COMPLETION
51 * 'B' block device name
52 * 's' string (accept optional quote)
54 * 'l' target long (32 or 64 bit)
55 * '/' optional gdb-like print format (like "/10x")
57 * '?' optional type (for 'F', 's' and 'i')
61 typedef struct term_cmd_t
{
63 const char *args_type
;
70 static CharDriverState
*monitor_hd
[MAX_MON
];
71 static int hide_banner
;
73 static term_cmd_t term_cmds
[];
74 static term_cmd_t info_cmds
[];
76 static uint8_t term_outbuf
[1024];
77 static int term_outbuf_index
;
79 static void monitor_start_input(void);
81 CPUState
*mon_cpu
= NULL
;
86 if (term_outbuf_index
> 0) {
87 for (i
= 0; i
< MAX_MON
; i
++)
88 if (monitor_hd
[i
] && monitor_hd
[i
]->focus
== 0)
89 qemu_chr_write(monitor_hd
[i
], term_outbuf
, term_outbuf_index
);
90 term_outbuf_index
= 0;
94 /* flush at every end of line or if the buffer is full */
95 void term_puts(const char *str
)
103 term_outbuf
[term_outbuf_index
++] = '\r';
104 term_outbuf
[term_outbuf_index
++] = c
;
105 if (term_outbuf_index
>= (sizeof(term_outbuf
) - 1) ||
111 void term_vprintf(const char *fmt
, va_list ap
)
114 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
118 void term_printf(const char *fmt
, ...)
122 term_vprintf(fmt
, ap
);
126 void term_print_filename(const char *filename
)
130 for (i
= 0; filename
[i
]; i
++) {
131 switch (filename
[i
]) {
135 term_printf("\\%c", filename
[i
]);
147 term_printf("%c", filename
[i
]);
153 static int monitor_fprintf(FILE *stream
, const char *fmt
, ...)
157 term_vprintf(fmt
, ap
);
162 static int compare_cmd(const char *name
, const char *list
)
164 const char *p
, *pstart
;
172 p
= pstart
+ strlen(pstart
);
173 if ((p
- pstart
) == len
&& !memcmp(pstart
, name
, len
))
182 static void help_cmd1(term_cmd_t
*cmds
, const char *prefix
, const char *name
)
186 for(cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
187 if (!name
|| !strcmp(name
, cmd
->name
))
188 term_printf("%s%s %s -- %s\n", prefix
, cmd
->name
, cmd
->params
, cmd
->help
);
192 static void help_cmd(const char *name
)
194 if (name
&& !strcmp(name
, "info")) {
195 help_cmd1(info_cmds
, "info ", NULL
);
197 help_cmd1(term_cmds
, "", name
);
198 if (name
&& !strcmp(name
, "log")) {
200 term_printf("Log items (comma separated):\n");
201 term_printf("%-10s %s\n", "none", "remove all logs");
202 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
203 term_printf("%-10s %s\n", item
->name
, item
->help
);
209 static void do_help(const char *name
)
214 static void do_commit(const char *device
)
218 all_devices
= !strcmp(device
, "all");
219 for (i
= 0; i
< nb_drives
; i
++) {
221 !strcmp(bdrv_get_device_name(drives_table
[i
].bdrv
), device
))
222 bdrv_commit(drives_table
[i
].bdrv
);
226 static void do_info(const char *item
)
229 void (*handler
)(void);
233 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
234 if (compare_cmd(item
, cmd
->name
))
241 handler
= cmd
->handler
;
245 static void do_info_version(void)
247 term_printf("%s\n", QEMU_VERSION
);
250 static void do_info_name(void)
253 term_printf("%s\n", qemu_name
);
256 static void do_info_uuid(void)
258 term_printf(UUID_FMT
"\n", qemu_uuid
[0], qemu_uuid
[1], qemu_uuid
[2],
259 qemu_uuid
[3], qemu_uuid
[4], qemu_uuid
[5], qemu_uuid
[6],
260 qemu_uuid
[7], qemu_uuid
[8], qemu_uuid
[9], qemu_uuid
[10],
261 qemu_uuid
[11], qemu_uuid
[12], qemu_uuid
[13], qemu_uuid
[14],
265 static void do_info_block(void)
270 static void do_info_blockstats(void)
275 /* get the current CPU defined by the user */
276 static int mon_set_cpu(int cpu_index
)
280 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
281 if (env
->cpu_index
== cpu_index
) {
289 static CPUState
*mon_get_cpu(void)
295 kvm_save_registers(mon_cpu
);
300 static void do_info_registers(void)
307 cpu_dump_state(env
, NULL
, monitor_fprintf
,
310 cpu_dump_state(env
, NULL
, monitor_fprintf
,
315 static void do_info_cpus(void)
319 /* just to set the default cpu if not already done */
322 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
323 kvm_save_registers(env
);
324 term_printf("%c CPU #%d:",
325 (env
== mon_cpu
) ? '*' : ' ',
327 #if defined(TARGET_I386)
328 term_printf(" pc=0x" TARGET_FMT_lx
, env
->eip
+ env
->segs
[R_CS
].base
);
329 #elif defined(TARGET_PPC)
330 term_printf(" nip=0x" TARGET_FMT_lx
, env
->nip
);
331 #elif defined(TARGET_SPARC)
332 term_printf(" pc=0x" TARGET_FMT_lx
" npc=0x" TARGET_FMT_lx
, env
->pc
, env
->npc
);
333 #elif defined(TARGET_MIPS)
334 term_printf(" PC=0x" TARGET_FMT_lx
, env
->active_tc
.PC
);
337 term_printf(" (halted)");
338 term_printf(" thread_id=%d", env
->thread_id
);
343 static void do_cpu_set(int index
)
345 if (mon_set_cpu(index
) < 0)
346 term_printf("Invalid CPU index\n");
349 static void do_cpu_set_nr(int value
, const char *status
)
353 if (!strcmp(status
, "online"))
355 else if (!strcmp(status
, "offline"))
358 term_printf("invalid status: %s\n", status
);
361 #if defined(TARGET_I386) || defined(TARGET_X86_64)
362 qemu_system_cpu_hot_add(value
, state
);
366 static void do_info_jit(void)
368 dump_exec_info(NULL
, monitor_fprintf
);
371 static void do_info_history (void)
378 str
= readline_get_history(i
);
381 term_printf("%d: '%s'\n", i
, str
);
386 #if defined(TARGET_PPC)
387 /* XXX: not implemented in other targets */
388 static void do_info_cpu_stats (void)
393 cpu_dump_statistics(env
, NULL
, &monitor_fprintf
, 0);
397 static void do_quit(void)
402 static int eject_device(BlockDriverState
*bs
, int force
)
404 if (bdrv_is_inserted(bs
)) {
406 if (!bdrv_is_removable(bs
)) {
407 term_printf("device is not removable\n");
410 if (bdrv_is_locked(bs
)) {
411 term_printf("device is locked\n");
420 static void do_eject(int force
, const char *filename
)
422 BlockDriverState
*bs
;
424 bs
= bdrv_find(filename
);
426 term_printf("device not found\n");
429 eject_device(bs
, force
);
432 static void do_change_block(const char *device
, const char *filename
, const char *fmt
)
434 BlockDriverState
*bs
;
435 BlockDriver
*drv
= NULL
;
437 bs
= bdrv_find(device
);
439 term_printf("device not found\n");
443 drv
= bdrv_find_format(fmt
);
445 term_printf("invalid format %s\n", fmt
);
449 if (eject_device(bs
, 0) < 0)
451 bdrv_open2(bs
, filename
, 0, drv
);
452 qemu_key_check(bs
, filename
);
455 static void do_change_vnc(const char *target
)
457 if (strcmp(target
, "passwd") == 0 ||
458 strcmp(target
, "password") == 0) {
460 monitor_readline("Password: ", 1, password
, sizeof(password
)-1);
461 password
[sizeof(password
)-1] = '\0';
462 if (vnc_display_password(NULL
, password
) < 0)
463 term_printf("could not set VNC server password\n");
465 if (vnc_display_open(NULL
, target
) < 0)
466 term_printf("could not start VNC server on %s\n", target
);
470 static void do_change(const char *device
, const char *target
, const char *fmt
)
472 if (strcmp(device
, "vnc") == 0) {
473 do_change_vnc(target
);
475 do_change_block(device
, target
, fmt
);
479 static void do_screen_dump(const char *filename
)
481 vga_hw_screen_dump(filename
);
484 static void do_logfile(const char *filename
)
486 cpu_set_log_filename(filename
);
489 static void do_log(const char *items
)
493 if (!strcmp(items
, "none")) {
496 mask
= cpu_str_to_log_mask(items
);
505 static void do_stop(void)
507 vm_stop(EXCP_INTERRUPT
);
510 static void do_cont(void)
515 #ifdef CONFIG_GDBSTUB
516 static void do_gdbserver(const char *port
)
519 port
= DEFAULT_GDBSTUB_PORT
;
520 if (gdbserver_start(port
) < 0) {
521 qemu_printf("Could not open gdbserver socket on port '%s'\n", port
);
523 qemu_printf("Waiting gdb connection on port '%s'\n", port
);
528 static void term_printc(int c
)
545 if (c
>= 32 && c
<= 126) {
546 term_printf("%c", c
);
548 term_printf("\\x%02x", c
);
555 static void memory_dump(int count
, int format
, int wsize
,
556 target_phys_addr_t addr
, int is_physical
)
559 int nb_per_line
, l
, line_size
, i
, max_digits
, len
;
567 if (!env
&& !is_physical
)
572 } else if (wsize
== 4) {
575 /* as default we use the current CS size */
579 if ((env
->efer
& MSR_EFER_LMA
) &&
580 (env
->segs
[R_CS
].flags
& DESC_L_MASK
))
584 if (!(env
->segs
[R_CS
].flags
& DESC_B_MASK
))
589 monitor_disas(env
, addr
, count
, is_physical
, flags
);
598 nb_per_line
= line_size
/ wsize
;
603 max_digits
= (wsize
* 8 + 2) / 3;
607 max_digits
= (wsize
* 8) / 4;
611 max_digits
= (wsize
* 8 * 10 + 32) / 33;
620 term_printf(TARGET_FMT_plx
":", addr
);
622 term_printf(TARGET_FMT_lx
":", (target_ulong
)addr
);
627 cpu_physical_memory_rw(addr
, buf
, l
, 0);
632 if (cpu_memory_rw_debug(env
, addr
, buf
, l
, 0) < 0) {
633 term_printf(" Cannot access memory\n");
642 v
= ldub_raw(buf
+ i
);
645 v
= lduw_raw(buf
+ i
);
648 v
= (uint32_t)ldl_raw(buf
+ i
);
651 v
= ldq_raw(buf
+ i
);
657 term_printf("%#*" PRIo64
, max_digits
, v
);
660 term_printf("0x%0*" PRIx64
, max_digits
, v
);
663 term_printf("%*" PRIu64
, max_digits
, v
);
666 term_printf("%*" PRId64
, max_digits
, v
);
680 #if TARGET_LONG_BITS == 64
681 #define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
683 #define GET_TLONG(h, l) (l)
686 static void do_memory_dump(int count
, int format
, int size
,
687 uint32_t addrh
, uint32_t addrl
)
689 target_long addr
= GET_TLONG(addrh
, addrl
);
690 memory_dump(count
, format
, size
, addr
, 0);
693 #if TARGET_PHYS_ADDR_BITS > 32
694 #define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
696 #define GET_TPHYSADDR(h, l) (l)
699 static void do_physical_memory_dump(int count
, int format
, int size
,
700 uint32_t addrh
, uint32_t addrl
)
703 target_phys_addr_t addr
= GET_TPHYSADDR(addrh
, addrl
);
704 memory_dump(count
, format
, size
, addr
, 1);
707 static void do_print(int count
, int format
, int size
, unsigned int valh
, unsigned int vall
)
709 target_phys_addr_t val
= GET_TPHYSADDR(valh
, vall
);
710 #if TARGET_PHYS_ADDR_BITS == 32
713 term_printf("%#o", val
);
716 term_printf("%#x", val
);
719 term_printf("%u", val
);
723 term_printf("%d", val
);
732 term_printf("%#" PRIo64
, val
);
735 term_printf("%#" PRIx64
, val
);
738 term_printf("%" PRIu64
, val
);
742 term_printf("%" PRId64
, val
);
752 static void do_memory_save(unsigned int valh
, unsigned int vall
,
753 uint32_t size
, const char *filename
)
756 target_long addr
= GET_TLONG(valh
, vall
);
765 f
= fopen(filename
, "wb");
767 term_printf("could not open '%s'\n", filename
);
774 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
775 fwrite(buf
, 1, l
, f
);
782 static void do_physical_memory_save(unsigned int valh
, unsigned int vall
,
783 uint32_t size
, const char *filename
)
788 target_phys_addr_t addr
= GET_TPHYSADDR(valh
, vall
);
790 f
= fopen(filename
, "wb");
792 term_printf("could not open '%s'\n", filename
);
799 cpu_physical_memory_rw(addr
, buf
, l
, 0);
800 fwrite(buf
, 1, l
, f
);
808 static void do_sum(uint32_t start
, uint32_t size
)
815 for(addr
= start
; addr
< (start
+ size
); addr
++) {
816 cpu_physical_memory_rw(addr
, buf
, 1, 0);
817 /* BSD sum algorithm ('sum' Unix command) */
818 sum
= (sum
>> 1) | (sum
<< 15);
821 term_printf("%05d\n", sum
);
829 static const KeyDef key_defs
[] = {
856 { 0x0e, "backspace" },
890 { 0x37, "asterisk" },
893 { 0x3a, "caps_lock" },
904 { 0x45, "num_lock" },
905 { 0x46, "scroll_lock" },
907 { 0xb5, "kp_divide" },
908 { 0x37, "kp_multiply" },
909 { 0x4a, "kp_subtract" },
911 { 0x9c, "kp_enter" },
912 { 0x53, "kp_decimal" },
945 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
965 static int get_keycode(const char *key
)
971 for(p
= key_defs
; p
->name
!= NULL
; p
++) {
972 if (!strcmp(key
, p
->name
))
975 if (strstart(key
, "0x", NULL
)) {
976 ret
= strtoul(key
, &endp
, 0);
977 if (*endp
== '\0' && ret
>= 0x01 && ret
<= 0xff)
983 #define MAX_KEYCODES 16
984 static uint8_t keycodes
[MAX_KEYCODES
];
985 static int nb_pending_keycodes
;
986 static QEMUTimer
*key_timer
;
988 static void release_keys(void *opaque
)
992 while (nb_pending_keycodes
> 0) {
993 nb_pending_keycodes
--;
994 keycode
= keycodes
[nb_pending_keycodes
];
996 kbd_put_keycode(0xe0);
997 kbd_put_keycode(keycode
| 0x80);
1001 static void do_sendkey(const char *string
, int has_hold_time
, int hold_time
)
1003 char keyname_buf
[16];
1005 int keyname_len
, keycode
, i
;
1007 if (nb_pending_keycodes
> 0) {
1008 qemu_del_timer(key_timer
);
1015 separator
= strchr(string
, '-');
1016 keyname_len
= separator
? separator
- string
: strlen(string
);
1017 if (keyname_len
> 0) {
1018 pstrcpy(keyname_buf
, sizeof(keyname_buf
), string
);
1019 if (keyname_len
> sizeof(keyname_buf
) - 1) {
1020 term_printf("invalid key: '%s...'\n", keyname_buf
);
1023 if (i
== MAX_KEYCODES
) {
1024 term_printf("too many keys\n");
1027 keyname_buf
[keyname_len
] = 0;
1028 keycode
= get_keycode(keyname_buf
);
1030 term_printf("unknown key: '%s'\n", keyname_buf
);
1033 keycodes
[i
++] = keycode
;
1037 string
= separator
+ 1;
1039 nb_pending_keycodes
= i
;
1040 /* key down events */
1041 for (i
= 0; i
< nb_pending_keycodes
; i
++) {
1042 keycode
= keycodes
[i
];
1044 kbd_put_keycode(0xe0);
1045 kbd_put_keycode(keycode
& 0x7f);
1047 /* delayed key up events */
1048 qemu_mod_timer(key_timer
, qemu_get_clock(vm_clock
) +
1049 muldiv64(ticks_per_sec
, hold_time
, 1000));
1052 static int mouse_button_state
;
1054 static void do_mouse_move(const char *dx_str
, const char *dy_str
,
1058 dx
= strtol(dx_str
, NULL
, 0);
1059 dy
= strtol(dy_str
, NULL
, 0);
1062 dz
= strtol(dz_str
, NULL
, 0);
1063 kbd_mouse_event(dx
, dy
, dz
, mouse_button_state
);
1066 static void do_mouse_button(int button_state
)
1068 mouse_button_state
= button_state
;
1069 kbd_mouse_event(0, 0, 0, mouse_button_state
);
1072 static void do_ioport_read(int count
, int format
, int size
, int addr
, int has_index
, int index
)
1078 cpu_outb(NULL
, addr
& 0xffff, index
& 0xff);
1086 val
= cpu_inb(NULL
, addr
);
1090 val
= cpu_inw(NULL
, addr
);
1094 val
= cpu_inl(NULL
, addr
);
1098 term_printf("port%c[0x%04x] = %#0*x\n",
1099 suffix
, addr
, size
* 2, val
);
1102 /* boot_set handler */
1103 static QEMUBootSetHandler
*qemu_boot_set_handler
= NULL
;
1104 static void *boot_opaque
;
1106 void qemu_register_boot_set(QEMUBootSetHandler
*func
, void *opaque
)
1108 qemu_boot_set_handler
= func
;
1109 boot_opaque
= opaque
;
1112 static void do_boot_set(const char *bootdevice
)
1116 if (qemu_boot_set_handler
) {
1117 res
= qemu_boot_set_handler(boot_opaque
, bootdevice
);
1119 term_printf("boot device list now set to %s\n", bootdevice
);
1121 term_printf("setting boot device list failed with error %i\n", res
);
1123 term_printf("no function defined to set boot device list for this architecture\n");
1127 static void do_system_reset(void)
1129 qemu_system_reset_request();
1132 static void do_system_powerdown(void)
1134 qemu_system_powerdown_request();
1137 #if defined(TARGET_I386)
1138 static void print_pte(uint32_t addr
, uint32_t pte
, uint32_t mask
)
1140 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
1143 pte
& PG_GLOBAL_MASK
? 'G' : '-',
1144 pte
& PG_PSE_MASK
? 'P' : '-',
1145 pte
& PG_DIRTY_MASK
? 'D' : '-',
1146 pte
& PG_ACCESSED_MASK
? 'A' : '-',
1147 pte
& PG_PCD_MASK
? 'C' : '-',
1148 pte
& PG_PWT_MASK
? 'T' : '-',
1149 pte
& PG_USER_MASK
? 'U' : '-',
1150 pte
& PG_RW_MASK
? 'W' : '-');
1153 static void tlb_info(void)
1157 uint32_t pgd
, pde
, pte
;
1159 env
= mon_get_cpu();
1163 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1164 term_printf("PG disabled\n");
1167 pgd
= env
->cr
[3] & ~0xfff;
1168 for(l1
= 0; l1
< 1024; l1
++) {
1169 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1170 pde
= le32_to_cpu(pde
);
1171 if (pde
& PG_PRESENT_MASK
) {
1172 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1173 print_pte((l1
<< 22), pde
, ~((1 << 20) - 1));
1175 for(l2
= 0; l2
< 1024; l2
++) {
1176 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1177 (uint8_t *)&pte
, 4);
1178 pte
= le32_to_cpu(pte
);
1179 if (pte
& PG_PRESENT_MASK
) {
1180 print_pte((l1
<< 22) + (l2
<< 12),
1190 static void mem_print(uint32_t *pstart
, int *plast_prot
,
1191 uint32_t end
, int prot
)
1194 prot1
= *plast_prot
;
1195 if (prot
!= prot1
) {
1196 if (*pstart
!= -1) {
1197 term_printf("%08x-%08x %08x %c%c%c\n",
1198 *pstart
, end
, end
- *pstart
,
1199 prot1
& PG_USER_MASK
? 'u' : '-',
1201 prot1
& PG_RW_MASK
? 'w' : '-');
1211 static void mem_info(void)
1214 int l1
, l2
, prot
, last_prot
;
1215 uint32_t pgd
, pde
, pte
, start
, end
;
1217 env
= mon_get_cpu();
1221 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1222 term_printf("PG disabled\n");
1225 pgd
= env
->cr
[3] & ~0xfff;
1228 for(l1
= 0; l1
< 1024; l1
++) {
1229 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1230 pde
= le32_to_cpu(pde
);
1232 if (pde
& PG_PRESENT_MASK
) {
1233 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1234 prot
= pde
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1235 mem_print(&start
, &last_prot
, end
, prot
);
1237 for(l2
= 0; l2
< 1024; l2
++) {
1238 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1239 (uint8_t *)&pte
, 4);
1240 pte
= le32_to_cpu(pte
);
1241 end
= (l1
<< 22) + (l2
<< 12);
1242 if (pte
& PG_PRESENT_MASK
) {
1243 prot
= pte
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1247 mem_print(&start
, &last_prot
, end
, prot
);
1252 mem_print(&start
, &last_prot
, end
, prot
);
1258 static void do_info_kqemu(void)
1264 env
= mon_get_cpu();
1266 term_printf("No cpu initialized yet");
1269 val
= env
->kqemu_enabled
;
1270 term_printf("kqemu support: ");
1274 term_printf("disabled\n");
1277 term_printf("enabled for user code\n");
1280 term_printf("enabled for user and kernel code\n");
1284 term_printf("kqemu support: not compiled\n");
1288 static void do_info_kvm(void)
1291 term_printf("kvm support: ");
1293 term_printf("enabled\n");
1295 term_printf("disabled\n");
1297 term_printf("kvm support: not compiled\n");
1301 #ifdef CONFIG_PROFILER
1305 int64_t kqemu_exec_count
;
1307 int64_t kqemu_ret_int_count
;
1308 int64_t kqemu_ret_excp_count
;
1309 int64_t kqemu_ret_intr_count
;
1311 static void do_info_profile(void)
1317 term_printf("async time %" PRId64
" (%0.3f)\n",
1318 dev_time
, dev_time
/ (double)ticks_per_sec
);
1319 term_printf("qemu time %" PRId64
" (%0.3f)\n",
1320 qemu_time
, qemu_time
/ (double)ticks_per_sec
);
1321 term_printf("kqemu time %" PRId64
" (%0.3f %0.1f%%) count=%" PRId64
" int=%" PRId64
" excp=%" PRId64
" intr=%" PRId64
"\n",
1322 kqemu_time
, kqemu_time
/ (double)ticks_per_sec
,
1323 kqemu_time
/ (double)total
* 100.0,
1325 kqemu_ret_int_count
,
1326 kqemu_ret_excp_count
,
1327 kqemu_ret_intr_count
);
1330 kqemu_exec_count
= 0;
1332 kqemu_ret_int_count
= 0;
1333 kqemu_ret_excp_count
= 0;
1334 kqemu_ret_intr_count
= 0;
1336 kqemu_record_dump();
1340 static void do_info_profile(void)
1342 term_printf("Internal profiler not compiled\n");
1346 /* Capture support */
1347 static LIST_HEAD (capture_list_head
, CaptureState
) capture_head
;
1349 static void do_info_capture (void)
1354 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1355 term_printf ("[%d]: ", i
);
1356 s
->ops
.info (s
->opaque
);
1360 static void do_stop_capture (int n
)
1365 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1367 s
->ops
.destroy (s
->opaque
);
1368 LIST_REMOVE (s
, entries
);
1376 int wav_start_capture (CaptureState
*s
, const char *path
, int freq
,
1377 int bits
, int nchannels
);
1379 static void do_wav_capture (const char *path
,
1380 int has_freq
, int freq
,
1381 int has_bits
, int bits
,
1382 int has_channels
, int nchannels
)
1386 s
= qemu_mallocz (sizeof (*s
));
1388 term_printf ("Not enough memory to add wave capture\n");
1392 freq
= has_freq
? freq
: 44100;
1393 bits
= has_bits
? bits
: 16;
1394 nchannels
= has_channels
? nchannels
: 2;
1396 if (wav_start_capture (s
, path
, freq
, bits
, nchannels
)) {
1397 term_printf ("Faied to add wave capture\n");
1400 LIST_INSERT_HEAD (&capture_head
, s
, entries
);
1404 #if defined(TARGET_I386)
1405 static void do_inject_nmi(int cpu_index
)
1409 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
1410 if (env
->cpu_index
== cpu_index
) {
1412 kvm_inject_interrupt(env
, CPU_INTERRUPT_NMI
);
1414 cpu_interrupt(env
, CPU_INTERRUPT_NMI
);
1420 static void do_balloon(int value
)
1422 ram_addr_t target
= value
;
1423 qemu_balloon(target
<< 20);
1426 static void do_info_balloon(void)
1430 actual
= qemu_balloon_status();
1431 if (kvm_enabled() && !qemu_kvm_has_sync_mmu())
1432 term_printf("Using KVM without synchronous MMU, ballooning disabled\n");
1433 else if (actual
== 0)
1434 term_printf("Ballooning not activated in VM\n");
1436 term_printf("balloon: actual=%d\n", (int)(actual
>> 20));
1439 static term_cmd_t term_cmds
[] = {
1440 { "help|?", "s?", do_help
,
1441 "[cmd]", "show the help" },
1442 { "commit", "s", do_commit
,
1443 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
1444 { "info", "s?", do_info
,
1445 "subcommand", "show various information about the system state" },
1446 { "q|quit", "", do_quit
,
1447 "", "quit the emulator" },
1448 { "eject", "-fB", do_eject
,
1449 "[-f] device", "eject a removable medium (use -f to force it)" },
1450 { "change", "BFs?", do_change
,
1451 "device filename [format]", "change a removable medium, optional format" },
1452 { "screendump", "F", do_screen_dump
,
1453 "filename", "save screen into PPM image 'filename'" },
1454 { "logfile", "F", do_logfile
,
1455 "filename", "output logs to 'filename'" },
1456 { "log", "s", do_log
,
1457 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
1458 { "savevm", "s?", do_savevm
,
1459 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
1460 { "loadvm", "s", do_loadvm
,
1461 "tag|id", "restore a VM snapshot from its tag or id" },
1462 { "delvm", "s", do_delvm
,
1463 "tag|id", "delete a VM snapshot from its tag or id" },
1464 { "stop", "", do_stop
,
1465 "", "stop emulation", },
1466 { "c|cont", "", do_cont
,
1467 "", "resume emulation", },
1468 #ifdef CONFIG_GDBSTUB
1469 { "gdbserver", "s?", do_gdbserver
,
1470 "[port]", "start gdbserver session (default port=1234)", },
1472 { "x", "/l", do_memory_dump
,
1473 "/fmt addr", "virtual memory dump starting at 'addr'", },
1474 { "xp", "/l", do_physical_memory_dump
,
1475 "/fmt addr", "physical memory dump starting at 'addr'", },
1476 { "p|print", "/l", do_print
,
1477 "/fmt expr", "print expression value (use $reg for CPU register access)", },
1478 { "i", "/ii.", do_ioport_read
,
1479 "/fmt addr", "I/O port read" },
1481 { "sendkey", "si?", do_sendkey
,
1482 "keys [hold_ms]", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)" },
1483 { "system_reset", "", do_system_reset
,
1484 "", "reset the system" },
1485 { "system_powerdown", "", do_system_powerdown
,
1486 "", "send system power down event" },
1487 { "sum", "ii", do_sum
,
1488 "addr size", "compute the checksum of a memory region" },
1489 { "usb_add", "s", do_usb_add
,
1490 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1491 { "usb_del", "s", do_usb_del
,
1492 "device", "remove USB device 'bus.addr'" },
1493 { "cpu", "i", do_cpu_set
,
1494 "index", "set the default CPU" },
1495 { "mouse_move", "sss?", do_mouse_move
,
1496 "dx dy [dz]", "send mouse move events" },
1497 { "mouse_button", "i", do_mouse_button
,
1498 "state", "change mouse button state (1=L, 2=M, 4=R)" },
1499 { "mouse_set", "i", do_mouse_set
,
1500 "index", "set which mouse device receives events" },
1502 { "wavcapture", "si?i?i?", do_wav_capture
,
1503 "path [frequency bits channels]",
1504 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1506 { "stopcapture", "i", do_stop_capture
,
1507 "capture index", "stop capture" },
1508 { "memsave", "lis", do_memory_save
,
1509 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
1510 { "pmemsave", "lis", do_physical_memory_save
,
1511 "addr size file", "save to disk physical memory dump starting at 'addr' of size 'size'", },
1512 { "boot_set", "s", do_boot_set
,
1513 "bootdevice", "define new values for the boot device list" },
1514 #if defined(TARGET_I386)
1515 { "nmi", "i", do_inject_nmi
,
1516 "cpu", "inject an NMI on the given CPU", },
1518 { "migrate", "-ds", do_migrate
,
1519 "[-d] command", "migrate the VM using command (use -d to not wait for command to complete)" },
1520 { "migrate_cancel", "", do_migrate_cancel
,
1521 "", "cancel the current VM migration" },
1522 { "migrate_set_speed", "s", do_migrate_set_speed
,
1523 "value", "set maximum speed (in bytes) for migrations" },
1524 { "cpu_set", "is", do_cpu_set_nr
, "cpu [online|offline]", "change cpu state" },
1525 #if defined(TARGET_I386) || defined(TARGET_X86_64)
1526 { "drive_add", "iss", drive_hot_add
, "pcibus pcidevfn [file=file][,if=type][,bus=n]\n"
1527 "[,unit=m][,media=d][index=i]\n"
1528 "[,cyls=c,heads=h,secs=s[,trans=t]]\n"
1529 "[snapshot=on|off][,cache=on|off]",
1530 "add drive to PCI storage controller" },
1531 { "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" },
1532 { "pci_del", "ii", device_hot_remove
, "bus slot-number", "hot remove PCI device" },
1534 { "balloon", "i", do_balloon
,
1535 "target", "request VM to change it's memory allocation (in MB)" },
1539 static term_cmd_t info_cmds
[] = {
1540 { "version", "", do_info_version
,
1541 "", "show the version of qemu" },
1542 { "network", "", do_info_network
,
1543 "", "show the network state" },
1544 { "block", "", do_info_block
,
1545 "", "show the block devices" },
1546 { "blockstats", "", do_info_blockstats
,
1547 "", "show block device statistics" },
1548 { "registers", "", do_info_registers
,
1549 "", "show the cpu registers" },
1550 { "cpus", "", do_info_cpus
,
1551 "", "show infos for each CPU" },
1552 { "history", "", do_info_history
,
1553 "", "show the command line history", },
1554 { "irq", "", irq_info
,
1555 "", "show the interrupts statistics (if available)", },
1556 { "pic", "", pic_info
,
1557 "", "show i8259 (PIC) state", },
1558 { "pci", "", pci_info
,
1559 "", "show PCI info", },
1560 #if defined(TARGET_I386)
1561 { "tlb", "", tlb_info
,
1562 "", "show virtual to physical memory mappings", },
1563 { "mem", "", mem_info
,
1564 "", "show the active virtual memory mappings", },
1566 { "jit", "", do_info_jit
,
1567 "", "show dynamic compiler info", },
1568 { "kqemu", "", do_info_kqemu
,
1569 "", "show kqemu information", },
1570 { "kvm", "", do_info_kvm
,
1571 "", "show kvm information", },
1572 { "usb", "", usb_info
,
1573 "", "show guest USB devices", },
1574 { "usbhost", "", usb_host_info
,
1575 "", "show host USB devices", },
1576 { "profile", "", do_info_profile
,
1577 "", "show profiling information", },
1578 { "capture", "", do_info_capture
,
1579 "", "show capture information" },
1580 { "snapshots", "", do_info_snapshots
,
1581 "", "show the currently saved VM snapshots" },
1582 { "pcmcia", "", pcmcia_info
,
1583 "", "show guest PCMCIA status" },
1584 { "mice", "", do_info_mice
,
1585 "", "show which guest mouse is receiving events" },
1586 { "vnc", "", do_info_vnc
,
1587 "", "show the vnc server status"},
1588 { "name", "", do_info_name
,
1589 "", "show the current VM name" },
1590 { "uuid", "", do_info_uuid
,
1591 "", "show the current VM UUID" },
1592 #if defined(TARGET_PPC)
1593 { "cpustats", "", do_info_cpu_stats
,
1594 "", "show CPU statistics", },
1596 #if defined(CONFIG_SLIRP)
1597 { "slirp", "", do_info_slirp
,
1598 "", "show SLIRP statistics", },
1600 { "migration", "", do_info_migration
,
1601 "", "show migration information" },
1602 { "balloon", "", do_info_balloon
,
1603 "", "show balloon information" },
1607 /*******************************************************************/
1609 static const char *pch
;
1610 static jmp_buf expr_env
;
1615 typedef struct MonitorDef
{
1618 target_long (*get_value
)(struct MonitorDef
*md
, int val
);
1622 #if defined(TARGET_I386)
1623 static target_long
monitor_get_pc (struct MonitorDef
*md
, int val
)
1625 CPUState
*env
= mon_get_cpu();
1628 return env
->eip
+ env
->segs
[R_CS
].base
;
1632 #if defined(TARGET_PPC)
1633 static target_long
monitor_get_ccr (struct MonitorDef
*md
, int val
)
1635 CPUState
*env
= mon_get_cpu();
1643 for (i
= 0; i
< 8; i
++)
1644 u
|= env
->crf
[i
] << (32 - (4 * i
));
1649 static target_long
monitor_get_msr (struct MonitorDef
*md
, int val
)
1651 CPUState
*env
= mon_get_cpu();
1657 static target_long
monitor_get_xer (struct MonitorDef
*md
, int val
)
1659 CPUState
*env
= mon_get_cpu();
1662 return ppc_load_xer(env
);
1665 static target_long
monitor_get_decr (struct MonitorDef
*md
, int val
)
1667 CPUState
*env
= mon_get_cpu();
1670 return cpu_ppc_load_decr(env
);
1673 static target_long
monitor_get_tbu (struct MonitorDef
*md
, int val
)
1675 CPUState
*env
= mon_get_cpu();
1678 return cpu_ppc_load_tbu(env
);
1681 static target_long
monitor_get_tbl (struct MonitorDef
*md
, int val
)
1683 CPUState
*env
= mon_get_cpu();
1686 return cpu_ppc_load_tbl(env
);
1690 #if defined(TARGET_SPARC)
1691 #ifndef TARGET_SPARC64
1692 static target_long
monitor_get_psr (struct MonitorDef
*md
, int val
)
1694 CPUState
*env
= mon_get_cpu();
1697 return GET_PSR(env
);
1701 static target_long
monitor_get_reg(struct MonitorDef
*md
, int val
)
1703 CPUState
*env
= mon_get_cpu();
1706 return env
->regwptr
[val
];
1710 static MonitorDef monitor_defs
[] = {
1713 #define SEG(name, seg) \
1714 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
1715 { name ".base", offsetof(CPUState, segs[seg].base) },\
1716 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
1718 { "eax", offsetof(CPUState
, regs
[0]) },
1719 { "ecx", offsetof(CPUState
, regs
[1]) },
1720 { "edx", offsetof(CPUState
, regs
[2]) },
1721 { "ebx", offsetof(CPUState
, regs
[3]) },
1722 { "esp|sp", offsetof(CPUState
, regs
[4]) },
1723 { "ebp|fp", offsetof(CPUState
, regs
[5]) },
1724 { "esi", offsetof(CPUState
, regs
[6]) },
1725 { "edi", offsetof(CPUState
, regs
[7]) },
1726 #ifdef TARGET_X86_64
1727 { "r8", offsetof(CPUState
, regs
[8]) },
1728 { "r9", offsetof(CPUState
, regs
[9]) },
1729 { "r10", offsetof(CPUState
, regs
[10]) },
1730 { "r11", offsetof(CPUState
, regs
[11]) },
1731 { "r12", offsetof(CPUState
, regs
[12]) },
1732 { "r13", offsetof(CPUState
, regs
[13]) },
1733 { "r14", offsetof(CPUState
, regs
[14]) },
1734 { "r15", offsetof(CPUState
, regs
[15]) },
1736 { "eflags", offsetof(CPUState
, eflags
) },
1737 { "eip", offsetof(CPUState
, eip
) },
1744 { "pc", 0, monitor_get_pc
, },
1745 #elif defined(TARGET_PPC)
1746 /* General purpose registers */
1747 { "r0", offsetof(CPUState
, gpr
[0]) },
1748 { "r1", offsetof(CPUState
, gpr
[1]) },
1749 { "r2", offsetof(CPUState
, gpr
[2]) },
1750 { "r3", offsetof(CPUState
, gpr
[3]) },
1751 { "r4", offsetof(CPUState
, gpr
[4]) },
1752 { "r5", offsetof(CPUState
, gpr
[5]) },
1753 { "r6", offsetof(CPUState
, gpr
[6]) },
1754 { "r7", offsetof(CPUState
, gpr
[7]) },
1755 { "r8", offsetof(CPUState
, gpr
[8]) },
1756 { "r9", offsetof(CPUState
, gpr
[9]) },
1757 { "r10", offsetof(CPUState
, gpr
[10]) },
1758 { "r11", offsetof(CPUState
, gpr
[11]) },
1759 { "r12", offsetof(CPUState
, gpr
[12]) },
1760 { "r13", offsetof(CPUState
, gpr
[13]) },
1761 { "r14", offsetof(CPUState
, gpr
[14]) },
1762 { "r15", offsetof(CPUState
, gpr
[15]) },
1763 { "r16", offsetof(CPUState
, gpr
[16]) },
1764 { "r17", offsetof(CPUState
, gpr
[17]) },
1765 { "r18", offsetof(CPUState
, gpr
[18]) },
1766 { "r19", offsetof(CPUState
, gpr
[19]) },
1767 { "r20", offsetof(CPUState
, gpr
[20]) },
1768 { "r21", offsetof(CPUState
, gpr
[21]) },
1769 { "r22", offsetof(CPUState
, gpr
[22]) },
1770 { "r23", offsetof(CPUState
, gpr
[23]) },
1771 { "r24", offsetof(CPUState
, gpr
[24]) },
1772 { "r25", offsetof(CPUState
, gpr
[25]) },
1773 { "r26", offsetof(CPUState
, gpr
[26]) },
1774 { "r27", offsetof(CPUState
, gpr
[27]) },
1775 { "r28", offsetof(CPUState
, gpr
[28]) },
1776 { "r29", offsetof(CPUState
, gpr
[29]) },
1777 { "r30", offsetof(CPUState
, gpr
[30]) },
1778 { "r31", offsetof(CPUState
, gpr
[31]) },
1779 /* Floating point registers */
1780 { "f0", offsetof(CPUState
, fpr
[0]) },
1781 { "f1", offsetof(CPUState
, fpr
[1]) },
1782 { "f2", offsetof(CPUState
, fpr
[2]) },
1783 { "f3", offsetof(CPUState
, fpr
[3]) },
1784 { "f4", offsetof(CPUState
, fpr
[4]) },
1785 { "f5", offsetof(CPUState
, fpr
[5]) },
1786 { "f6", offsetof(CPUState
, fpr
[6]) },
1787 { "f7", offsetof(CPUState
, fpr
[7]) },
1788 { "f8", offsetof(CPUState
, fpr
[8]) },
1789 { "f9", offsetof(CPUState
, fpr
[9]) },
1790 { "f10", offsetof(CPUState
, fpr
[10]) },
1791 { "f11", offsetof(CPUState
, fpr
[11]) },
1792 { "f12", offsetof(CPUState
, fpr
[12]) },
1793 { "f13", offsetof(CPUState
, fpr
[13]) },
1794 { "f14", offsetof(CPUState
, fpr
[14]) },
1795 { "f15", offsetof(CPUState
, fpr
[15]) },
1796 { "f16", offsetof(CPUState
, fpr
[16]) },
1797 { "f17", offsetof(CPUState
, fpr
[17]) },
1798 { "f18", offsetof(CPUState
, fpr
[18]) },
1799 { "f19", offsetof(CPUState
, fpr
[19]) },
1800 { "f20", offsetof(CPUState
, fpr
[20]) },
1801 { "f21", offsetof(CPUState
, fpr
[21]) },
1802 { "f22", offsetof(CPUState
, fpr
[22]) },
1803 { "f23", offsetof(CPUState
, fpr
[23]) },
1804 { "f24", offsetof(CPUState
, fpr
[24]) },
1805 { "f25", offsetof(CPUState
, fpr
[25]) },
1806 { "f26", offsetof(CPUState
, fpr
[26]) },
1807 { "f27", offsetof(CPUState
, fpr
[27]) },
1808 { "f28", offsetof(CPUState
, fpr
[28]) },
1809 { "f29", offsetof(CPUState
, fpr
[29]) },
1810 { "f30", offsetof(CPUState
, fpr
[30]) },
1811 { "f31", offsetof(CPUState
, fpr
[31]) },
1812 { "fpscr", offsetof(CPUState
, fpscr
) },
1813 /* Next instruction pointer */
1814 { "nip|pc", offsetof(CPUState
, nip
) },
1815 { "lr", offsetof(CPUState
, lr
) },
1816 { "ctr", offsetof(CPUState
, ctr
) },
1817 { "decr", 0, &monitor_get_decr
, },
1818 { "ccr", 0, &monitor_get_ccr
, },
1819 /* Machine state register */
1820 { "msr", 0, &monitor_get_msr
, },
1821 { "xer", 0, &monitor_get_xer
, },
1822 { "tbu", 0, &monitor_get_tbu
, },
1823 { "tbl", 0, &monitor_get_tbl
, },
1824 #if defined(TARGET_PPC64)
1825 /* Address space register */
1826 { "asr", offsetof(CPUState
, asr
) },
1828 /* Segment registers */
1829 { "sdr1", offsetof(CPUState
, sdr1
) },
1830 { "sr0", offsetof(CPUState
, sr
[0]) },
1831 { "sr1", offsetof(CPUState
, sr
[1]) },
1832 { "sr2", offsetof(CPUState
, sr
[2]) },
1833 { "sr3", offsetof(CPUState
, sr
[3]) },
1834 { "sr4", offsetof(CPUState
, sr
[4]) },
1835 { "sr5", offsetof(CPUState
, sr
[5]) },
1836 { "sr6", offsetof(CPUState
, sr
[6]) },
1837 { "sr7", offsetof(CPUState
, sr
[7]) },
1838 { "sr8", offsetof(CPUState
, sr
[8]) },
1839 { "sr9", offsetof(CPUState
, sr
[9]) },
1840 { "sr10", offsetof(CPUState
, sr
[10]) },
1841 { "sr11", offsetof(CPUState
, sr
[11]) },
1842 { "sr12", offsetof(CPUState
, sr
[12]) },
1843 { "sr13", offsetof(CPUState
, sr
[13]) },
1844 { "sr14", offsetof(CPUState
, sr
[14]) },
1845 { "sr15", offsetof(CPUState
, sr
[15]) },
1846 /* Too lazy to put BATs and SPRs ... */
1847 #elif defined(TARGET_SPARC)
1848 { "g0", offsetof(CPUState
, gregs
[0]) },
1849 { "g1", offsetof(CPUState
, gregs
[1]) },
1850 { "g2", offsetof(CPUState
, gregs
[2]) },
1851 { "g3", offsetof(CPUState
, gregs
[3]) },
1852 { "g4", offsetof(CPUState
, gregs
[4]) },
1853 { "g5", offsetof(CPUState
, gregs
[5]) },
1854 { "g6", offsetof(CPUState
, gregs
[6]) },
1855 { "g7", offsetof(CPUState
, gregs
[7]) },
1856 { "o0", 0, monitor_get_reg
},
1857 { "o1", 1, monitor_get_reg
},
1858 { "o2", 2, monitor_get_reg
},
1859 { "o3", 3, monitor_get_reg
},
1860 { "o4", 4, monitor_get_reg
},
1861 { "o5", 5, monitor_get_reg
},
1862 { "o6", 6, monitor_get_reg
},
1863 { "o7", 7, monitor_get_reg
},
1864 { "l0", 8, monitor_get_reg
},
1865 { "l1", 9, monitor_get_reg
},
1866 { "l2", 10, monitor_get_reg
},
1867 { "l3", 11, monitor_get_reg
},
1868 { "l4", 12, monitor_get_reg
},
1869 { "l5", 13, monitor_get_reg
},
1870 { "l6", 14, monitor_get_reg
},
1871 { "l7", 15, monitor_get_reg
},
1872 { "i0", 16, monitor_get_reg
},
1873 { "i1", 17, monitor_get_reg
},
1874 { "i2", 18, monitor_get_reg
},
1875 { "i3", 19, monitor_get_reg
},
1876 { "i4", 20, monitor_get_reg
},
1877 { "i5", 21, monitor_get_reg
},
1878 { "i6", 22, monitor_get_reg
},
1879 { "i7", 23, monitor_get_reg
},
1880 { "pc", offsetof(CPUState
, pc
) },
1881 { "npc", offsetof(CPUState
, npc
) },
1882 { "y", offsetof(CPUState
, y
) },
1883 #ifndef TARGET_SPARC64
1884 { "psr", 0, &monitor_get_psr
, },
1885 { "wim", offsetof(CPUState
, wim
) },
1887 { "tbr", offsetof(CPUState
, tbr
) },
1888 { "fsr", offsetof(CPUState
, fsr
) },
1889 { "f0", offsetof(CPUState
, fpr
[0]) },
1890 { "f1", offsetof(CPUState
, fpr
[1]) },
1891 { "f2", offsetof(CPUState
, fpr
[2]) },
1892 { "f3", offsetof(CPUState
, fpr
[3]) },
1893 { "f4", offsetof(CPUState
, fpr
[4]) },
1894 { "f5", offsetof(CPUState
, fpr
[5]) },
1895 { "f6", offsetof(CPUState
, fpr
[6]) },
1896 { "f7", offsetof(CPUState
, fpr
[7]) },
1897 { "f8", offsetof(CPUState
, fpr
[8]) },
1898 { "f9", offsetof(CPUState
, fpr
[9]) },
1899 { "f10", offsetof(CPUState
, fpr
[10]) },
1900 { "f11", offsetof(CPUState
, fpr
[11]) },
1901 { "f12", offsetof(CPUState
, fpr
[12]) },
1902 { "f13", offsetof(CPUState
, fpr
[13]) },
1903 { "f14", offsetof(CPUState
, fpr
[14]) },
1904 { "f15", offsetof(CPUState
, fpr
[15]) },
1905 { "f16", offsetof(CPUState
, fpr
[16]) },
1906 { "f17", offsetof(CPUState
, fpr
[17]) },
1907 { "f18", offsetof(CPUState
, fpr
[18]) },
1908 { "f19", offsetof(CPUState
, fpr
[19]) },
1909 { "f20", offsetof(CPUState
, fpr
[20]) },
1910 { "f21", offsetof(CPUState
, fpr
[21]) },
1911 { "f22", offsetof(CPUState
, fpr
[22]) },
1912 { "f23", offsetof(CPUState
, fpr
[23]) },
1913 { "f24", offsetof(CPUState
, fpr
[24]) },
1914 { "f25", offsetof(CPUState
, fpr
[25]) },
1915 { "f26", offsetof(CPUState
, fpr
[26]) },
1916 { "f27", offsetof(CPUState
, fpr
[27]) },
1917 { "f28", offsetof(CPUState
, fpr
[28]) },
1918 { "f29", offsetof(CPUState
, fpr
[29]) },
1919 { "f30", offsetof(CPUState
, fpr
[30]) },
1920 { "f31", offsetof(CPUState
, fpr
[31]) },
1921 #ifdef TARGET_SPARC64
1922 { "f32", offsetof(CPUState
, fpr
[32]) },
1923 { "f34", offsetof(CPUState
, fpr
[34]) },
1924 { "f36", offsetof(CPUState
, fpr
[36]) },
1925 { "f38", offsetof(CPUState
, fpr
[38]) },
1926 { "f40", offsetof(CPUState
, fpr
[40]) },
1927 { "f42", offsetof(CPUState
, fpr
[42]) },
1928 { "f44", offsetof(CPUState
, fpr
[44]) },
1929 { "f46", offsetof(CPUState
, fpr
[46]) },
1930 { "f48", offsetof(CPUState
, fpr
[48]) },
1931 { "f50", offsetof(CPUState
, fpr
[50]) },
1932 { "f52", offsetof(CPUState
, fpr
[52]) },
1933 { "f54", offsetof(CPUState
, fpr
[54]) },
1934 { "f56", offsetof(CPUState
, fpr
[56]) },
1935 { "f58", offsetof(CPUState
, fpr
[58]) },
1936 { "f60", offsetof(CPUState
, fpr
[60]) },
1937 { "f62", offsetof(CPUState
, fpr
[62]) },
1938 { "asi", offsetof(CPUState
, asi
) },
1939 { "pstate", offsetof(CPUState
, pstate
) },
1940 { "cansave", offsetof(CPUState
, cansave
) },
1941 { "canrestore", offsetof(CPUState
, canrestore
) },
1942 { "otherwin", offsetof(CPUState
, otherwin
) },
1943 { "wstate", offsetof(CPUState
, wstate
) },
1944 { "cleanwin", offsetof(CPUState
, cleanwin
) },
1945 { "fprs", offsetof(CPUState
, fprs
) },
1951 static void expr_error(const char *fmt
)
1955 longjmp(expr_env
, 1);
1958 /* return 0 if OK, -1 if not found, -2 if no CPU defined */
1959 static int get_monitor_def(target_long
*pval
, const char *name
)
1964 for(md
= monitor_defs
; md
->name
!= NULL
; md
++) {
1965 if (compare_cmd(name
, md
->name
)) {
1966 if (md
->get_value
) {
1967 *pval
= md
->get_value(md
, md
->offset
);
1969 CPUState
*env
= mon_get_cpu();
1972 ptr
= (uint8_t *)env
+ md
->offset
;
1975 *pval
= *(int32_t *)ptr
;
1978 *pval
= *(target_long
*)ptr
;
1991 static void next(void)
1995 while (isspace(*pch
))
2000 static int64_t expr_sum(void);
2002 static int64_t expr_unary(void)
2025 expr_error("')' expected");
2032 expr_error("character constant expected");
2036 expr_error("missing terminating \' character");
2046 while ((*pch
>= 'a' && *pch
<= 'z') ||
2047 (*pch
>= 'A' && *pch
<= 'Z') ||
2048 (*pch
>= '0' && *pch
<= '9') ||
2049 *pch
== '_' || *pch
== '.') {
2050 if ((q
- buf
) < sizeof(buf
) - 1)
2054 while (isspace(*pch
))
2057 ret
= get_monitor_def(®
, buf
);
2059 expr_error("unknown register");
2061 expr_error("no cpu defined");
2066 expr_error("unexpected end of expression");
2070 #if TARGET_PHYS_ADDR_BITS > 32
2071 n
= strtoull(pch
, &p
, 0);
2073 n
= strtoul(pch
, &p
, 0);
2076 expr_error("invalid char in expression");
2079 while (isspace(*pch
))
2087 static int64_t expr_prod(void)
2095 if (op
!= '*' && op
!= '/' && op
!= '%')
2098 val2
= expr_unary();
2107 expr_error("division by zero");
2118 static int64_t expr_logic(void)
2126 if (op
!= '&' && op
!= '|' && op
!= '^')
2146 static int64_t expr_sum(void)
2154 if (op
!= '+' && op
!= '-')
2157 val2
= expr_logic();
2166 static int get_expr(int64_t *pval
, const char **pp
)
2169 if (setjmp(expr_env
)) {
2173 while (isspace(*pch
))
2180 static int get_str(char *buf
, int buf_size
, const char **pp
)
2198 while (*p
!= '\0' && *p
!= '\"') {
2214 qemu_printf("unsupported escape code: '\\%c'\n", c
);
2217 if ((q
- buf
) < buf_size
- 1) {
2221 if ((q
- buf
) < buf_size
- 1) {
2228 qemu_printf("unterminated string\n");
2233 while (*p
!= '\0' && !isspace(*p
)) {
2234 if ((q
- buf
) < buf_size
- 1) {
2245 static int default_fmt_format
= 'x';
2246 static int default_fmt_size
= 4;
2250 static void monitor_handle_command(const char *cmdline
)
2252 const char *p
, *pstart
, *typestr
;
2254 int c
, nb_args
, len
, i
, has_arg
;
2258 void *str_allocated
[MAX_ARGS
];
2259 void *args
[MAX_ARGS
];
2260 void (*handler_0
)(void);
2261 void (*handler_1
)(void *arg0
);
2262 void (*handler_2
)(void *arg0
, void *arg1
);
2263 void (*handler_3
)(void *arg0
, void *arg1
, void *arg2
);
2264 void (*handler_4
)(void *arg0
, void *arg1
, void *arg2
, void *arg3
);
2265 void (*handler_5
)(void *arg0
, void *arg1
, void *arg2
, void *arg3
,
2267 void (*handler_6
)(void *arg0
, void *arg1
, void *arg2
, void *arg3
,
2268 void *arg4
, void *arg5
);
2269 void (*handler_7
)(void *arg0
, void *arg1
, void *arg2
, void *arg3
,
2270 void *arg4
, void *arg5
, void *arg6
);
2273 term_printf("command='%s'\n", cmdline
);
2276 /* extract the command name */
2284 while (*p
!= '\0' && *p
!= '/' && !isspace(*p
))
2287 if (len
> sizeof(cmdname
) - 1)
2288 len
= sizeof(cmdname
) - 1;
2289 memcpy(cmdname
, pstart
, len
);
2290 cmdname
[len
] = '\0';
2292 /* find the command */
2293 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2294 if (compare_cmd(cmdname
, cmd
->name
))
2297 term_printf("unknown command: '%s'\n", cmdname
);
2301 for(i
= 0; i
< MAX_ARGS
; i
++)
2302 str_allocated
[i
] = NULL
;
2304 /* parse the parameters */
2305 typestr
= cmd
->args_type
;
2322 if (*typestr
== '?') {
2325 /* no optional string: NULL argument */
2330 ret
= get_str(buf
, sizeof(buf
), &p
);
2334 term_printf("%s: filename expected\n", cmdname
);
2337 term_printf("%s: block device name expected\n", cmdname
);
2340 term_printf("%s: string expected\n", cmdname
);
2345 str
= qemu_malloc(strlen(buf
) + 1);
2346 pstrcpy(str
, sizeof(buf
), buf
);
2347 str_allocated
[nb_args
] = str
;
2349 if (nb_args
>= MAX_ARGS
) {
2351 term_printf("%s: too many arguments\n", cmdname
);
2354 args
[nb_args
++] = str
;
2359 int count
, format
, size
;
2369 while (isdigit(*p
)) {
2370 count
= count
* 10 + (*p
- '0');
2408 if (*p
!= '\0' && !isspace(*p
)) {
2409 term_printf("invalid char in format: '%c'\n", *p
);
2413 format
= default_fmt_format
;
2414 if (format
!= 'i') {
2415 /* for 'i', not specifying a size gives -1 as size */
2417 size
= default_fmt_size
;
2419 default_fmt_size
= size
;
2420 default_fmt_format
= format
;
2423 format
= default_fmt_format
;
2424 if (format
!= 'i') {
2425 size
= default_fmt_size
;
2430 if (nb_args
+ 3 > MAX_ARGS
)
2432 args
[nb_args
++] = (void*)(long)count
;
2433 args
[nb_args
++] = (void*)(long)format
;
2434 args
[nb_args
++] = (void*)(long)size
;
2444 if (*typestr
== '?' || *typestr
== '.') {
2445 if (*typestr
== '?') {
2461 if (nb_args
>= MAX_ARGS
)
2463 args
[nb_args
++] = (void *)(long)has_arg
;
2465 if (nb_args
>= MAX_ARGS
)
2471 if (get_expr(&val
, &p
))
2475 if (nb_args
>= MAX_ARGS
)
2477 args
[nb_args
++] = (void *)(long)val
;
2479 if ((nb_args
+ 1) >= MAX_ARGS
)
2481 #if TARGET_PHYS_ADDR_BITS > 32
2482 args
[nb_args
++] = (void *)(long)((val
>> 32) & 0xffffffff);
2484 args
[nb_args
++] = (void *)0;
2486 args
[nb_args
++] = (void *)(long)(val
& 0xffffffff);
2504 term_printf("%s: unsupported option -%c\n",
2511 if (nb_args
>= MAX_ARGS
)
2513 args
[nb_args
++] = (void *)(long)has_option
;
2518 term_printf("%s: unknown type '%c'\n", cmdname
, c
);
2522 /* check that all arguments were parsed */
2526 term_printf("%s: extraneous characters at the end of line\n",
2533 handler_0
= cmd
->handler
;
2537 handler_1
= cmd
->handler
;
2541 handler_2
= cmd
->handler
;
2542 handler_2(args
[0], args
[1]);
2545 handler_3
= cmd
->handler
;
2546 handler_3(args
[0], args
[1], args
[2]);
2549 handler_4
= cmd
->handler
;
2550 handler_4(args
[0], args
[1], args
[2], args
[3]);
2553 handler_5
= cmd
->handler
;
2554 handler_5(args
[0], args
[1], args
[2], args
[3], args
[4]);
2557 handler_6
= cmd
->handler
;
2558 handler_6(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5]);
2561 handler_7
= cmd
->handler
;
2562 handler_7(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5], args
[6]);
2565 term_printf("unsupported number of arguments: %d\n", nb_args
);
2569 for(i
= 0; i
< MAX_ARGS
; i
++)
2570 qemu_free(str_allocated
[i
]);
2574 static void cmd_completion(const char *name
, const char *list
)
2576 const char *p
, *pstart
;
2585 p
= pstart
+ strlen(pstart
);
2587 if (len
> sizeof(cmd
) - 2)
2588 len
= sizeof(cmd
) - 2;
2589 memcpy(cmd
, pstart
, len
);
2591 if (name
[0] == '\0' || !strncmp(name
, cmd
, strlen(name
))) {
2592 add_completion(cmd
);
2600 static void file_completion(const char *input
)
2605 char file
[1024], file_prefix
[1024];
2609 p
= strrchr(input
, '/');
2612 pstrcpy(file_prefix
, sizeof(file_prefix
), input
);
2613 pstrcpy(path
, sizeof(path
), ".");
2615 input_path_len
= p
- input
+ 1;
2616 memcpy(path
, input
, input_path_len
);
2617 if (input_path_len
> sizeof(path
) - 1)
2618 input_path_len
= sizeof(path
) - 1;
2619 path
[input_path_len
] = '\0';
2620 pstrcpy(file_prefix
, sizeof(file_prefix
), p
+ 1);
2622 #ifdef DEBUG_COMPLETION
2623 term_printf("input='%s' path='%s' prefix='%s'\n", input
, path
, file_prefix
);
2625 ffs
= opendir(path
);
2633 if (strstart(d
->d_name
, file_prefix
, NULL
)) {
2634 memcpy(file
, input
, input_path_len
);
2635 if (input_path_len
< sizeof(file
))
2636 pstrcpy(file
+ input_path_len
, sizeof(file
) - input_path_len
,
2638 /* stat the file to find out if it's a directory.
2639 * In that case add a slash to speed up typing long paths
2642 if(S_ISDIR(sb
.st_mode
))
2643 pstrcat(file
, sizeof(file
), "/");
2644 add_completion(file
);
2650 static void block_completion_it(void *opaque
, const char *name
)
2652 const char *input
= opaque
;
2654 if (input
[0] == '\0' ||
2655 !strncmp(name
, (char *)input
, strlen(input
))) {
2656 add_completion(name
);
2660 /* NOTE: this parser is an approximate form of the real command parser */
2661 static void parse_cmdline(const char *cmdline
,
2662 int *pnb_args
, char **args
)
2675 if (nb_args
>= MAX_ARGS
)
2677 ret
= get_str(buf
, sizeof(buf
), &p
);
2678 args
[nb_args
] = qemu_strdup(buf
);
2683 *pnb_args
= nb_args
;
2686 void readline_find_completion(const char *cmdline
)
2688 const char *cmdname
;
2689 char *args
[MAX_ARGS
];
2690 int nb_args
, i
, len
;
2691 const char *ptype
, *str
;
2695 parse_cmdline(cmdline
, &nb_args
, args
);
2696 #ifdef DEBUG_COMPLETION
2697 for(i
= 0; i
< nb_args
; i
++) {
2698 term_printf("arg%d = '%s'\n", i
, (char *)args
[i
]);
2702 /* if the line ends with a space, it means we want to complete the
2704 len
= strlen(cmdline
);
2705 if (len
> 0 && isspace(cmdline
[len
- 1])) {
2706 if (nb_args
>= MAX_ARGS
)
2708 args
[nb_args
++] = qemu_strdup("");
2711 /* command completion */
2716 completion_index
= strlen(cmdname
);
2717 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2718 cmd_completion(cmdname
, cmd
->name
);
2721 /* find the command */
2722 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2723 if (compare_cmd(args
[0], cmd
->name
))
2728 ptype
= cmd
->args_type
;
2729 for(i
= 0; i
< nb_args
- 2; i
++) {
2730 if (*ptype
!= '\0') {
2732 while (*ptype
== '?')
2736 str
= args
[nb_args
- 1];
2739 /* file completion */
2740 completion_index
= strlen(str
);
2741 file_completion(str
);
2744 /* block device name completion */
2745 completion_index
= strlen(str
);
2746 bdrv_iterate(block_completion_it
, (void *)str
);
2749 /* XXX: more generic ? */
2750 if (!strcmp(cmd
->name
, "info")) {
2751 completion_index
= strlen(str
);
2752 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
2753 cmd_completion(str
, cmd
->name
);
2755 } else if (!strcmp(cmd
->name
, "sendkey")) {
2756 completion_index
= strlen(str
);
2757 for(key
= key_defs
; key
->name
!= NULL
; key
++) {
2758 cmd_completion(str
, key
->name
);
2766 for(i
= 0; i
< nb_args
; i
++)
2770 static int term_can_read(void *opaque
)
2775 static void term_read(void *opaque
, const uint8_t *buf
, int size
)
2778 for(i
= 0; i
< size
; i
++)
2779 readline_handle_byte(buf
[i
]);
2782 static void monitor_start_input(void);
2784 static int monitor_suspended
;
2786 void monitor_suspend(void)
2788 monitor_suspended
= 1;
2791 void monitor_resume(void)
2793 monitor_suspended
= 0;
2794 monitor_start_input();
2797 static void monitor_handle_command1(void *opaque
, const char *cmdline
)
2799 monitor_handle_command(cmdline
);
2800 if (!monitor_suspended
)
2801 monitor_start_input();
2804 static void monitor_start_input(void)
2806 readline_start("(qemu) ", 0, monitor_handle_command1
, NULL
);
2809 static void term_event(void *opaque
, int event
)
2811 if (event
!= CHR_EVENT_RESET
)
2815 term_printf("QEMU %s monitor - type 'help' for more information\n",
2817 monitor_start_input();
2820 static int is_first_init
= 1;
2822 void monitor_init(CharDriverState
*hd
, int show_banner
)
2826 if (is_first_init
) {
2827 key_timer
= qemu_new_timer(vm_clock
, release_keys
, NULL
);
2830 for (i
= 0; i
< MAX_MON
; i
++) {
2831 monitor_hd
[i
] = NULL
;
2835 for (i
= 0; i
< MAX_MON
; i
++) {
2836 if (monitor_hd
[i
] == NULL
) {
2842 hide_banner
= !show_banner
;
2844 qemu_chr_add_handlers(hd
, term_can_read
, term_read
, term_event
, NULL
);
2846 readline_start("", 0, monitor_handle_command1
, NULL
);
2849 /* XXX: use threads ? */
2850 /* modal monitor readline */
2851 static int monitor_readline_started
;
2852 static char *monitor_readline_buf
;
2853 static int monitor_readline_buf_size
;
2855 static void monitor_readline_cb(void *opaque
, const char *input
)
2857 pstrcpy(monitor_readline_buf
, monitor_readline_buf_size
, input
);
2858 monitor_readline_started
= 0;
2861 void monitor_readline(const char *prompt
, int is_password
,
2862 char *buf
, int buf_size
)
2865 int old_focus
[MAX_MON
];
2868 for (i
= 0; i
< MAX_MON
; i
++) {
2870 if (monitor_hd
[i
]) {
2871 old_focus
[i
] = monitor_hd
[i
]->focus
;
2872 monitor_hd
[i
]->focus
= 0;
2873 qemu_chr_send_event(monitor_hd
[i
], CHR_EVENT_FOCUS
);
2878 readline_start(prompt
, is_password
, monitor_readline_cb
, NULL
);
2879 monitor_readline_buf
= buf
;
2880 monitor_readline_buf_size
= buf_size
;
2881 monitor_readline_started
= 1;
2882 while (monitor_readline_started
) {
2885 /* restore original focus */
2887 for (i
= 0; i
< MAX_MON
; i
++)
2889 monitor_hd
[i
]->focus
= old_focus
[i
];