4 * Copyright (c) 2003-2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
29 //#define DEBUG_COMPLETION
32 #define offsetof(type, field) ((size_t) &((type *)0)->field)
39 * 'B' block device name
40 * 's' string (accept optional quote)
42 * 'l' target long (32 or 64 bit)
43 * '/' optional gdb-like print format (like "/10x")
45 * '?' optional type (for 'F', 's' and 'i')
49 typedef struct term_cmd_t
{
51 const char *args_type
;
58 static CharDriverState
*monitor_hd
[MAX_MON
];
59 static int hide_banner
;
61 static term_cmd_t term_cmds
[];
62 static term_cmd_t info_cmds
[];
64 static char term_outbuf
[1024];
65 static int term_outbuf_index
;
67 static void monitor_start_input(void);
69 CPUState
*mon_cpu
= NULL
;
74 if (term_outbuf_index
> 0) {
75 for (i
= 0; i
< MAX_MON
; i
++)
76 if (monitor_hd
[i
] && monitor_hd
[i
]->focus
== 0)
77 qemu_chr_write(monitor_hd
[i
], term_outbuf
, term_outbuf_index
);
78 term_outbuf_index
= 0;
82 /* flush at every end of line or if the buffer is full */
83 void term_puts(const char *str
)
91 term_outbuf
[term_outbuf_index
++] = '\r';
92 term_outbuf
[term_outbuf_index
++] = c
;
93 if (term_outbuf_index
>= (sizeof(term_outbuf
) - 1) ||
99 void term_vprintf(const char *fmt
, va_list ap
)
102 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
106 void term_printf(const char *fmt
, ...)
110 term_vprintf(fmt
, ap
);
114 void term_print_filename(const char *filename
)
118 for (i
= 0; filename
[i
]; i
++) {
119 switch (filename
[i
]) {
123 term_printf("\\%c", filename
[i
]);
135 term_printf("%c", filename
[i
]);
141 static int monitor_fprintf(FILE *stream
, const char *fmt
, ...)
145 term_vprintf(fmt
, ap
);
150 static int compare_cmd(const char *name
, const char *list
)
152 const char *p
, *pstart
;
160 p
= pstart
+ strlen(pstart
);
161 if ((p
- pstart
) == len
&& !memcmp(pstart
, name
, len
))
170 static void help_cmd1(term_cmd_t
*cmds
, const char *prefix
, const char *name
)
174 for(cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
175 if (!name
|| !strcmp(name
, cmd
->name
))
176 term_printf("%s%s %s -- %s\n", prefix
, cmd
->name
, cmd
->params
, cmd
->help
);
180 static void help_cmd(const char *name
)
182 if (name
&& !strcmp(name
, "info")) {
183 help_cmd1(info_cmds
, "info ", NULL
);
185 help_cmd1(term_cmds
, "", name
);
186 if (name
&& !strcmp(name
, "log")) {
188 term_printf("Log items (comma separated):\n");
189 term_printf("%-10s %s\n", "none", "remove all logs");
190 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
191 term_printf("%-10s %s\n", item
->name
, item
->help
);
197 static void do_help(const char *name
)
202 static void do_commit(const char *device
)
206 all_devices
= !strcmp(device
, "all");
207 for (i
= 0; i
< MAX_DISKS
; i
++) {
210 !strcmp(bdrv_get_device_name(bs_table
[i
]), device
))
211 bdrv_commit(bs_table
[i
]);
216 static void do_info(const char *item
)
222 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
223 if (compare_cmd(item
, cmd
->name
))
233 static void do_info_version(void)
235 term_printf("%s\n", QEMU_VERSION
);
238 static void do_info_name(void)
241 term_printf("%s\n", qemu_name
);
244 static void do_info_block(void)
249 /* get the current CPU defined by the user */
250 int mon_set_cpu(int cpu_index
)
254 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
255 if (env
->cpu_index
== cpu_index
) {
263 CPUState
*mon_get_cpu(void)
271 static void do_info_registers(void)
278 cpu_dump_state(env
, NULL
, monitor_fprintf
,
281 cpu_dump_state(env
, NULL
, monitor_fprintf
,
286 static void do_info_cpus(void)
290 /* just to set the default cpu if not already done */
293 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
294 term_printf("%c CPU #%d:",
295 (env
== mon_cpu
) ? '*' : ' ',
297 #if defined(TARGET_I386)
298 term_printf(" pc=0x" TARGET_FMT_lx
, env
->eip
+ env
->segs
[R_CS
].base
);
299 if (env
->hflags
& HF_HALTED_MASK
)
300 term_printf(" (halted)");
301 #elif defined(TARGET_PPC)
302 term_printf(" nip=0x" TARGET_FMT_lx
, env
->nip
);
304 term_printf(" (halted)");
305 #elif defined(TARGET_SPARC)
306 term_printf(" pc=0x" TARGET_FMT_lx
" npc=0x" TARGET_FMT_lx
, env
->pc
, env
->npc
);
308 term_printf(" (halted)");
314 static void do_cpu_set(int index
)
316 if (mon_set_cpu(index
) < 0)
317 term_printf("Invalid CPU index\n");
320 static void do_info_jit(void)
322 dump_exec_info(NULL
, monitor_fprintf
);
325 static void do_info_history (void)
332 str
= readline_get_history(i
);
335 term_printf("%d: '%s'\n", i
, str
);
340 #if defined(TARGET_PPC)
341 /* XXX: not implemented in other targets */
342 static void do_info_cpu_stats (void)
347 cpu_dump_statistics(env
, NULL
, &monitor_fprintf
, 0);
351 static void do_quit(void)
356 static int eject_device(BlockDriverState
*bs
, int force
)
358 if (bdrv_is_inserted(bs
)) {
360 if (!bdrv_is_removable(bs
)) {
361 term_printf("device is not removable\n");
364 if (bdrv_is_locked(bs
)) {
365 term_printf("device is locked\n");
374 static void do_eject(int force
, const char *filename
)
376 BlockDriverState
*bs
;
378 bs
= bdrv_find(filename
);
380 term_printf("device not found\n");
383 eject_device(bs
, force
);
386 static void do_change(const char *device
, const char *filename
)
388 BlockDriverState
*bs
;
392 bs
= bdrv_find(device
);
394 term_printf("device not found\n");
397 if (eject_device(bs
, 0) < 0)
399 bdrv_open(bs
, filename
, 0);
400 if (bdrv_is_encrypted(bs
)) {
401 term_printf("%s is encrypted.\n", device
);
402 for(i
= 0; i
< 3; i
++) {
403 monitor_readline("Password: ", 1, password
, sizeof(password
));
404 if (bdrv_set_key(bs
, password
) == 0)
406 term_printf("invalid password\n");
411 static void do_screen_dump(const char *filename
)
413 vga_hw_screen_dump(filename
);
416 static void do_log(const char *items
)
420 if (!strcmp(items
, "none")) {
423 mask
= cpu_str_to_log_mask(items
);
432 static void do_stop(void)
434 vm_stop(EXCP_INTERRUPT
);
437 static void do_cont(void)
442 #ifdef CONFIG_GDBSTUB
443 static void do_gdbserver(const char *port
)
446 port
= DEFAULT_GDBSTUB_PORT
;
447 if (gdbserver_start(port
) < 0) {
448 qemu_printf("Could not open gdbserver socket on port '%s'\n", port
);
450 qemu_printf("Waiting gdb connection on port '%s'\n", port
);
455 static void term_printc(int c
)
472 if (c
>= 32 && c
<= 126) {
473 term_printf("%c", c
);
475 term_printf("\\x%02x", c
);
482 static void memory_dump(int count
, int format
, int wsize
,
483 target_ulong addr
, int is_physical
)
486 int nb_per_line
, l
, line_size
, i
, max_digits
, len
;
494 if (!env
&& !is_physical
)
499 } else if (wsize
== 4) {
502 /* as default we use the current CS size */
506 if ((env
->efer
& MSR_EFER_LMA
) &&
507 (env
->segs
[R_CS
].flags
& DESC_L_MASK
))
511 if (!(env
->segs
[R_CS
].flags
& DESC_B_MASK
))
516 monitor_disas(env
, addr
, count
, is_physical
, flags
);
525 nb_per_line
= line_size
/ wsize
;
530 max_digits
= (wsize
* 8 + 2) / 3;
534 max_digits
= (wsize
* 8) / 4;
538 max_digits
= (wsize
* 8 * 10 + 32) / 33;
546 term_printf(TARGET_FMT_lx
":", addr
);
551 cpu_physical_memory_rw(addr
, buf
, l
, 0);
556 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
563 v
= ldub_raw(buf
+ i
);
566 v
= lduw_raw(buf
+ i
);
569 v
= (uint32_t)ldl_raw(buf
+ i
);
572 v
= ldq_raw(buf
+ i
);
578 term_printf("%#*" PRIo64
, max_digits
, v
);
581 term_printf("0x%0*" PRIx64
, max_digits
, v
);
584 term_printf("%*" PRIu64
, max_digits
, v
);
587 term_printf("%*" PRId64
, max_digits
, v
);
601 #if TARGET_LONG_BITS == 64
602 #define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
604 #define GET_TLONG(h, l) (l)
607 static void do_memory_dump(int count
, int format
, int size
,
608 uint32_t addrh
, uint32_t addrl
)
610 target_long addr
= GET_TLONG(addrh
, addrl
);
611 memory_dump(count
, format
, size
, addr
, 0);
614 static void do_physical_memory_dump(int count
, int format
, int size
,
615 uint32_t addrh
, uint32_t addrl
)
618 target_long addr
= GET_TLONG(addrh
, addrl
);
619 memory_dump(count
, format
, size
, addr
, 1);
622 static void do_print(int count
, int format
, int size
, unsigned int valh
, unsigned int vall
)
624 target_long val
= GET_TLONG(valh
, vall
);
625 #if TARGET_LONG_BITS == 32
628 term_printf("%#o", val
);
631 term_printf("%#x", val
);
634 term_printf("%u", val
);
638 term_printf("%d", val
);
647 term_printf("%#" PRIo64
, val
);
650 term_printf("%#" PRIx64
, val
);
653 term_printf("%" PRIu64
, val
);
657 term_printf("%" PRId64
, val
);
667 static void do_memory_save(unsigned int valh
, unsigned int vall
,
668 uint32_t size
, const char *filename
)
671 target_long addr
= GET_TLONG(valh
, vall
);
680 f
= fopen(filename
, "wb");
682 term_printf("could not open '%s'\n", filename
);
689 cpu_memory_rw_debug(env
, addr
, buf
, l
, 0);
690 fwrite(buf
, 1, l
, f
);
697 static void do_sum(uint32_t start
, uint32_t size
)
704 for(addr
= start
; addr
< (start
+ size
); addr
++) {
705 cpu_physical_memory_rw(addr
, buf
, 1, 0);
706 /* BSD sum algorithm ('sum' Unix command) */
707 sum
= (sum
>> 1) | (sum
<< 15);
710 term_printf("%05d\n", sum
);
718 static const KeyDef key_defs
[] = {
743 { 0x0e, "backspace" },
778 { 0x3a, "caps_lock" },
789 { 0x45, "num_lock" },
790 { 0x46, "scroll_lock" },
792 { 0xb5, "kp_divide" },
793 { 0x37, "kp_multiply" },
794 { 0x4a, "kp_substract" },
796 { 0x9c, "kp_enter" },
797 { 0x53, "kp_decimal" },
832 static int get_keycode(const char *key
)
838 for(p
= key_defs
; p
->name
!= NULL
; p
++) {
839 if (!strcmp(key
, p
->name
))
842 if (strstart(key
, "0x", NULL
)) {
843 ret
= strtoul(key
, &endp
, 0);
844 if (*endp
== '\0' && ret
>= 0x01 && ret
<= 0xff)
850 static void do_send_key(const char *string
)
853 uint8_t keycodes
[16];
855 int nb_keycodes
, keycode
, i
;
861 while (*p
!= '\0' && *p
!= '-') {
862 if ((q
- keybuf
) < sizeof(keybuf
) - 1) {
868 keycode
= get_keycode(keybuf
);
870 term_printf("unknown key: '%s'\n", keybuf
);
873 keycodes
[nb_keycodes
++] = keycode
;
878 /* key down events */
879 for(i
= 0; i
< nb_keycodes
; i
++) {
880 keycode
= keycodes
[i
];
882 kbd_put_keycode(0xe0);
883 kbd_put_keycode(keycode
& 0x7f);
886 for(i
= nb_keycodes
- 1; i
>= 0; i
--) {
887 keycode
= keycodes
[i
];
889 kbd_put_keycode(0xe0);
890 kbd_put_keycode(keycode
| 0x80);
894 static int mouse_button_state
;
896 static void do_mouse_move(const char *dx_str
, const char *dy_str
,
900 dx
= strtol(dx_str
, NULL
, 0);
901 dy
= strtol(dy_str
, NULL
, 0);
904 dz
= strtol(dz_str
, NULL
, 0);
905 kbd_mouse_event(dx
, dy
, dz
, mouse_button_state
);
908 static void do_mouse_button(int button_state
)
910 mouse_button_state
= button_state
;
911 kbd_mouse_event(0, 0, 0, mouse_button_state
);
914 static void do_ioport_read(int count
, int format
, int size
, int addr
, int has_index
, int index
)
920 cpu_outb(NULL
, addr
& 0xffff, index
& 0xff);
928 val
= cpu_inb(NULL
, addr
);
932 val
= cpu_inw(NULL
, addr
);
936 val
= cpu_inl(NULL
, addr
);
940 term_printf("port%c[0x%04x] = %#0*x\n",
941 suffix
, addr
, size
* 2, val
);
944 static void do_system_reset(void)
946 qemu_system_reset_request();
949 static void do_system_powerdown(void)
951 qemu_system_powerdown_request();
954 #if defined(TARGET_I386)
955 static void print_pte(uint32_t addr
, uint32_t pte
, uint32_t mask
)
957 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
960 pte
& PG_GLOBAL_MASK
? 'G' : '-',
961 pte
& PG_PSE_MASK
? 'P' : '-',
962 pte
& PG_DIRTY_MASK
? 'D' : '-',
963 pte
& PG_ACCESSED_MASK
? 'A' : '-',
964 pte
& PG_PCD_MASK
? 'C' : '-',
965 pte
& PG_PWT_MASK
? 'T' : '-',
966 pte
& PG_USER_MASK
? 'U' : '-',
967 pte
& PG_RW_MASK
? 'W' : '-');
970 static void tlb_info(void)
974 uint32_t pgd
, pde
, pte
;
980 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
981 term_printf("PG disabled\n");
984 pgd
= env
->cr
[3] & ~0xfff;
985 for(l1
= 0; l1
< 1024; l1
++) {
986 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
987 pde
= le32_to_cpu(pde
);
988 if (pde
& PG_PRESENT_MASK
) {
989 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
990 print_pte((l1
<< 22), pde
, ~((1 << 20) - 1));
992 for(l2
= 0; l2
< 1024; l2
++) {
993 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
995 pte
= le32_to_cpu(pte
);
996 if (pte
& PG_PRESENT_MASK
) {
997 print_pte((l1
<< 22) + (l2
<< 12),
1007 static void mem_print(uint32_t *pstart
, int *plast_prot
,
1008 uint32_t end
, int prot
)
1011 prot1
= *plast_prot
;
1012 if (prot
!= prot1
) {
1013 if (*pstart
!= -1) {
1014 term_printf("%08x-%08x %08x %c%c%c\n",
1015 *pstart
, end
, end
- *pstart
,
1016 prot1
& PG_USER_MASK
? 'u' : '-',
1018 prot1
& PG_RW_MASK
? 'w' : '-');
1028 static void mem_info(void)
1031 int l1
, l2
, prot
, last_prot
;
1032 uint32_t pgd
, pde
, pte
, start
, end
;
1034 env
= mon_get_cpu();
1038 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1039 term_printf("PG disabled\n");
1042 pgd
= env
->cr
[3] & ~0xfff;
1045 for(l1
= 0; l1
< 1024; l1
++) {
1046 cpu_physical_memory_read(pgd
+ l1
* 4, (uint8_t *)&pde
, 4);
1047 pde
= le32_to_cpu(pde
);
1049 if (pde
& PG_PRESENT_MASK
) {
1050 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1051 prot
= pde
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1052 mem_print(&start
, &last_prot
, end
, prot
);
1054 for(l2
= 0; l2
< 1024; l2
++) {
1055 cpu_physical_memory_read((pde
& ~0xfff) + l2
* 4,
1056 (uint8_t *)&pte
, 4);
1057 pte
= le32_to_cpu(pte
);
1058 end
= (l1
<< 22) + (l2
<< 12);
1059 if (pte
& PG_PRESENT_MASK
) {
1060 prot
= pte
& (PG_USER_MASK
| PG_RW_MASK
| PG_PRESENT_MASK
);
1064 mem_print(&start
, &last_prot
, end
, prot
);
1069 mem_print(&start
, &last_prot
, end
, prot
);
1075 static void do_info_kqemu(void)
1081 env
= mon_get_cpu();
1083 term_printf("No cpu initialized yet");
1086 val
= env
->kqemu_enabled
;
1087 term_printf("kqemu support: ");
1091 term_printf("disabled\n");
1094 term_printf("enabled for user code\n");
1097 term_printf("enabled for user and kernel code\n");
1101 term_printf("kqemu support: not compiled\n");
1105 #ifdef CONFIG_PROFILER
1109 int64_t kqemu_exec_count
;
1111 int64_t kqemu_ret_int_count
;
1112 int64_t kqemu_ret_excp_count
;
1113 int64_t kqemu_ret_intr_count
;
1115 static void do_info_profile(void)
1121 term_printf("async time %" PRId64
" (%0.3f)\n",
1122 dev_time
, dev_time
/ (double)ticks_per_sec
);
1123 term_printf("qemu time %" PRId64
" (%0.3f)\n",
1124 qemu_time
, qemu_time
/ (double)ticks_per_sec
);
1125 term_printf("kqemu time %" PRId64
" (%0.3f %0.1f%%) count=%" PRId64
" int=%" PRId64
" excp=%" PRId64
" intr=%" PRId64
"\n",
1126 kqemu_time
, kqemu_time
/ (double)ticks_per_sec
,
1127 kqemu_time
/ (double)total
* 100.0,
1129 kqemu_ret_int_count
,
1130 kqemu_ret_excp_count
,
1131 kqemu_ret_intr_count
);
1134 kqemu_exec_count
= 0;
1136 kqemu_ret_int_count
= 0;
1137 kqemu_ret_excp_count
= 0;
1138 kqemu_ret_intr_count
= 0;
1140 kqemu_record_dump();
1144 static void do_info_profile(void)
1146 term_printf("Internal profiler not compiled\n");
1150 /* Capture support */
1151 static LIST_HEAD (capture_list_head
, CaptureState
) capture_head
;
1153 static void do_info_capture (void)
1158 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1159 term_printf ("[%d]: ", i
);
1160 s
->ops
.info (s
->opaque
);
1164 static void do_stop_capture (int n
)
1169 for (s
= capture_head
.lh_first
, i
= 0; s
; s
= s
->entries
.le_next
, ++i
) {
1171 s
->ops
.destroy (s
->opaque
);
1172 LIST_REMOVE (s
, entries
);
1180 int wav_start_capture (CaptureState
*s
, const char *path
, int freq
,
1181 int bits
, int nchannels
);
1183 static void do_wav_capture (const char *path
,
1184 int has_freq
, int freq
,
1185 int has_bits
, int bits
,
1186 int has_channels
, int nchannels
)
1190 s
= qemu_mallocz (sizeof (*s
));
1192 term_printf ("Not enough memory to add wave capture\n");
1196 freq
= has_freq
? freq
: 44100;
1197 bits
= has_bits
? bits
: 16;
1198 nchannels
= has_channels
? nchannels
: 2;
1200 if (wav_start_capture (s
, path
, freq
, bits
, nchannels
)) {
1201 term_printf ("Faied to add wave capture\n");
1204 LIST_INSERT_HEAD (&capture_head
, s
, entries
);
1208 static term_cmd_t term_cmds
[] = {
1209 { "help|?", "s?", do_help
,
1210 "[cmd]", "show the help" },
1211 { "commit", "s", do_commit
,
1212 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
1213 { "info", "s?", do_info
,
1214 "subcommand", "show various information about the system state" },
1215 { "q|quit", "", do_quit
,
1216 "", "quit the emulator" },
1217 { "eject", "-fB", do_eject
,
1218 "[-f] device", "eject a removable medium (use -f to force it)" },
1219 { "change", "BF", do_change
,
1220 "device filename", "change a removable medium" },
1221 { "screendump", "F", do_screen_dump
,
1222 "filename", "save screen into PPM image 'filename'" },
1223 { "log", "s", do_log
,
1224 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
1225 { "savevm", "s?", do_savevm
,
1226 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
1227 { "loadvm", "s", do_loadvm
,
1228 "tag|id", "restore a VM snapshot from its tag or id" },
1229 { "delvm", "s", do_delvm
,
1230 "tag|id", "delete a VM snapshot from its tag or id" },
1231 { "stop", "", do_stop
,
1232 "", "stop emulation", },
1233 { "c|cont", "", do_cont
,
1234 "", "resume emulation", },
1235 #ifdef CONFIG_GDBSTUB
1236 { "gdbserver", "s?", do_gdbserver
,
1237 "[port]", "start gdbserver session (default port=1234)", },
1239 { "x", "/l", do_memory_dump
,
1240 "/fmt addr", "virtual memory dump starting at 'addr'", },
1241 { "xp", "/l", do_physical_memory_dump
,
1242 "/fmt addr", "physical memory dump starting at 'addr'", },
1243 { "p|print", "/l", do_print
,
1244 "/fmt expr", "print expression value (use $reg for CPU register access)", },
1245 { "i", "/ii.", do_ioport_read
,
1246 "/fmt addr", "I/O port read" },
1248 { "sendkey", "s", do_send_key
,
1249 "keys", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1')" },
1250 { "system_reset", "", do_system_reset
,
1251 "", "reset the system" },
1252 { "system_powerdown", "", do_system_powerdown
,
1253 "", "send system power down event" },
1254 { "sum", "ii", do_sum
,
1255 "addr size", "compute the checksum of a memory region" },
1256 { "usb_add", "s", do_usb_add
,
1257 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1258 { "usb_del", "s", do_usb_del
,
1259 "device", "remove USB device 'bus.addr'" },
1260 { "cpu", "i", do_cpu_set
,
1261 "index", "set the default CPU" },
1262 { "mouse_move", "sss?", do_mouse_move
,
1263 "dx dy [dz]", "send mouse move events" },
1264 { "mouse_button", "i", do_mouse_button
,
1265 "state", "change mouse button state (1=L, 2=M, 4=R)" },
1266 { "mouse_set", "i", do_mouse_set
,
1267 "index", "set which mouse device receives events" },
1269 { "wavcapture", "si?i?i?", do_wav_capture
,
1270 "path [frequency bits channels]",
1271 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1273 { "stopcapture", "i", do_stop_capture
,
1274 "capture index", "stop capture" },
1275 { "memsave", "lis", do_memory_save
,
1276 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
1280 static term_cmd_t info_cmds
[] = {
1281 { "version", "", do_info_version
,
1282 "", "show the version of qemu" },
1283 { "network", "", do_info_network
,
1284 "", "show the network state" },
1285 { "block", "", do_info_block
,
1286 "", "show the block devices" },
1287 { "registers", "", do_info_registers
,
1288 "", "show the cpu registers" },
1289 { "cpus", "", do_info_cpus
,
1290 "", "show infos for each CPU" },
1291 { "history", "", do_info_history
,
1292 "", "show the command line history", },
1293 { "irq", "", irq_info
,
1294 "", "show the interrupts statistics (if available)", },
1295 { "pic", "", pic_info
,
1296 "", "show i8259 (PIC) state", },
1297 { "pci", "", pci_info
,
1298 "", "show PCI info", },
1299 #if defined(TARGET_I386)
1300 { "tlb", "", tlb_info
,
1301 "", "show virtual to physical memory mappings", },
1302 { "mem", "", mem_info
,
1303 "", "show the active virtual memory mappings", },
1305 { "jit", "", do_info_jit
,
1306 "", "show dynamic compiler info", },
1307 { "kqemu", "", do_info_kqemu
,
1308 "", "show kqemu information", },
1309 { "usb", "", usb_info
,
1310 "", "show guest USB devices", },
1311 { "usbhost", "", usb_host_info
,
1312 "", "show host USB devices", },
1313 { "profile", "", do_info_profile
,
1314 "", "show profiling information", },
1315 { "capture", "", do_info_capture
,
1316 "", "show capture information" },
1317 { "snapshots", "", do_info_snapshots
,
1318 "", "show the currently saved VM snapshots" },
1319 { "mice", "", do_info_mice
,
1320 "", "show which guest mouse is receiving events" },
1321 { "vnc", "", do_info_vnc
,
1322 "", "show the vnc server status"},
1323 { "name", "", do_info_name
,
1324 "", "show the current VM name" },
1325 #if defined(TARGET_PPC)
1326 { "cpustats", "", do_info_cpu_stats
,
1327 "", "show CPU statistics", },
1332 /*******************************************************************/
1334 static const char *pch
;
1335 static jmp_buf expr_env
;
1340 typedef struct MonitorDef
{
1343 target_long (*get_value
)(struct MonitorDef
*md
, int val
);
1347 #if defined(TARGET_I386)
1348 static target_long
monitor_get_pc (struct MonitorDef
*md
, int val
)
1350 CPUState
*env
= mon_get_cpu();
1353 return env
->eip
+ env
->segs
[R_CS
].base
;
1357 #if defined(TARGET_PPC)
1358 static target_long
monitor_get_ccr (struct MonitorDef
*md
, int val
)
1360 CPUState
*env
= mon_get_cpu();
1368 for (i
= 0; i
< 8; i
++)
1369 u
|= env
->crf
[i
] << (32 - (4 * i
));
1374 static target_long
monitor_get_msr (struct MonitorDef
*md
, int val
)
1376 CPUState
*env
= mon_get_cpu();
1379 return (env
->msr
[MSR_POW
] << MSR_POW
) |
1380 (env
->msr
[MSR_ILE
] << MSR_ILE
) |
1381 (env
->msr
[MSR_EE
] << MSR_EE
) |
1382 (env
->msr
[MSR_PR
] << MSR_PR
) |
1383 (env
->msr
[MSR_FP
] << MSR_FP
) |
1384 (env
->msr
[MSR_ME
] << MSR_ME
) |
1385 (env
->msr
[MSR_FE0
] << MSR_FE0
) |
1386 (env
->msr
[MSR_SE
] << MSR_SE
) |
1387 (env
->msr
[MSR_BE
] << MSR_BE
) |
1388 (env
->msr
[MSR_FE1
] << MSR_FE1
) |
1389 (env
->msr
[MSR_IP
] << MSR_IP
) |
1390 (env
->msr
[MSR_IR
] << MSR_IR
) |
1391 (env
->msr
[MSR_DR
] << MSR_DR
) |
1392 (env
->msr
[MSR_RI
] << MSR_RI
) |
1393 (env
->msr
[MSR_LE
] << MSR_LE
);
1396 static target_long
monitor_get_xer (struct MonitorDef
*md
, int val
)
1398 CPUState
*env
= mon_get_cpu();
1401 return (env
->xer
[XER_SO
] << XER_SO
) |
1402 (env
->xer
[XER_OV
] << XER_OV
) |
1403 (env
->xer
[XER_CA
] << XER_CA
) |
1404 (env
->xer
[XER_BC
] << XER_BC
);
1407 static target_long
monitor_get_decr (struct MonitorDef
*md
, int val
)
1409 CPUState
*env
= mon_get_cpu();
1412 return cpu_ppc_load_decr(env
);
1415 static target_long
monitor_get_tbu (struct MonitorDef
*md
, int val
)
1417 CPUState
*env
= mon_get_cpu();
1420 return cpu_ppc_load_tbu(env
);
1423 static target_long
monitor_get_tbl (struct MonitorDef
*md
, int val
)
1425 CPUState
*env
= mon_get_cpu();
1428 return cpu_ppc_load_tbl(env
);
1432 #if defined(TARGET_SPARC)
1433 #ifndef TARGET_SPARC64
1434 static target_long
monitor_get_psr (struct MonitorDef
*md
, int val
)
1436 CPUState
*env
= mon_get_cpu();
1439 return GET_PSR(env
);
1443 static target_long
monitor_get_reg(struct MonitorDef
*md
, int val
)
1445 CPUState
*env
= mon_get_cpu();
1448 return env
->regwptr
[val
];
1452 static MonitorDef monitor_defs
[] = {
1455 #define SEG(name, seg) \
1456 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
1457 { name ".base", offsetof(CPUState, segs[seg].base) },\
1458 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
1460 { "eax", offsetof(CPUState
, regs
[0]) },
1461 { "ecx", offsetof(CPUState
, regs
[1]) },
1462 { "edx", offsetof(CPUState
, regs
[2]) },
1463 { "ebx", offsetof(CPUState
, regs
[3]) },
1464 { "esp|sp", offsetof(CPUState
, regs
[4]) },
1465 { "ebp|fp", offsetof(CPUState
, regs
[5]) },
1466 { "esi", offsetof(CPUState
, regs
[6]) },
1467 { "edi", offsetof(CPUState
, regs
[7]) },
1468 #ifdef TARGET_X86_64
1469 { "r8", offsetof(CPUState
, regs
[8]) },
1470 { "r9", offsetof(CPUState
, regs
[9]) },
1471 { "r10", offsetof(CPUState
, regs
[10]) },
1472 { "r11", offsetof(CPUState
, regs
[11]) },
1473 { "r12", offsetof(CPUState
, regs
[12]) },
1474 { "r13", offsetof(CPUState
, regs
[13]) },
1475 { "r14", offsetof(CPUState
, regs
[14]) },
1476 { "r15", offsetof(CPUState
, regs
[15]) },
1478 { "eflags", offsetof(CPUState
, eflags
) },
1479 { "eip", offsetof(CPUState
, eip
) },
1486 { "pc", 0, monitor_get_pc
, },
1487 #elif defined(TARGET_PPC)
1488 { "r0", offsetof(CPUState
, gpr
[0]) },
1489 { "r1", offsetof(CPUState
, gpr
[1]) },
1490 { "r2", offsetof(CPUState
, gpr
[2]) },
1491 { "r3", offsetof(CPUState
, gpr
[3]) },
1492 { "r4", offsetof(CPUState
, gpr
[4]) },
1493 { "r5", offsetof(CPUState
, gpr
[5]) },
1494 { "r6", offsetof(CPUState
, gpr
[6]) },
1495 { "r7", offsetof(CPUState
, gpr
[7]) },
1496 { "r8", offsetof(CPUState
, gpr
[8]) },
1497 { "r9", offsetof(CPUState
, gpr
[9]) },
1498 { "r10", offsetof(CPUState
, gpr
[10]) },
1499 { "r11", offsetof(CPUState
, gpr
[11]) },
1500 { "r12", offsetof(CPUState
, gpr
[12]) },
1501 { "r13", offsetof(CPUState
, gpr
[13]) },
1502 { "r14", offsetof(CPUState
, gpr
[14]) },
1503 { "r15", offsetof(CPUState
, gpr
[15]) },
1504 { "r16", offsetof(CPUState
, gpr
[16]) },
1505 { "r17", offsetof(CPUState
, gpr
[17]) },
1506 { "r18", offsetof(CPUState
, gpr
[18]) },
1507 { "r19", offsetof(CPUState
, gpr
[19]) },
1508 { "r20", offsetof(CPUState
, gpr
[20]) },
1509 { "r21", offsetof(CPUState
, gpr
[21]) },
1510 { "r22", offsetof(CPUState
, gpr
[22]) },
1511 { "r23", offsetof(CPUState
, gpr
[23]) },
1512 { "r24", offsetof(CPUState
, gpr
[24]) },
1513 { "r25", offsetof(CPUState
, gpr
[25]) },
1514 { "r26", offsetof(CPUState
, gpr
[26]) },
1515 { "r27", offsetof(CPUState
, gpr
[27]) },
1516 { "r28", offsetof(CPUState
, gpr
[28]) },
1517 { "r29", offsetof(CPUState
, gpr
[29]) },
1518 { "r30", offsetof(CPUState
, gpr
[30]) },
1519 { "r31", offsetof(CPUState
, gpr
[31]) },
1520 { "nip|pc", offsetof(CPUState
, nip
) },
1521 { "lr", offsetof(CPUState
, lr
) },
1522 { "ctr", offsetof(CPUState
, ctr
) },
1523 { "decr", 0, &monitor_get_decr
, },
1524 { "ccr", 0, &monitor_get_ccr
, },
1525 { "msr", 0, &monitor_get_msr
, },
1526 { "xer", 0, &monitor_get_xer
, },
1527 { "tbu", 0, &monitor_get_tbu
, },
1528 { "tbl", 0, &monitor_get_tbl
, },
1529 { "sdr1", offsetof(CPUState
, sdr1
) },
1530 { "sr0", offsetof(CPUState
, sr
[0]) },
1531 { "sr1", offsetof(CPUState
, sr
[1]) },
1532 { "sr2", offsetof(CPUState
, sr
[2]) },
1533 { "sr3", offsetof(CPUState
, sr
[3]) },
1534 { "sr4", offsetof(CPUState
, sr
[4]) },
1535 { "sr5", offsetof(CPUState
, sr
[5]) },
1536 { "sr6", offsetof(CPUState
, sr
[6]) },
1537 { "sr7", offsetof(CPUState
, sr
[7]) },
1538 { "sr8", offsetof(CPUState
, sr
[8]) },
1539 { "sr9", offsetof(CPUState
, sr
[9]) },
1540 { "sr10", offsetof(CPUState
, sr
[10]) },
1541 { "sr11", offsetof(CPUState
, sr
[11]) },
1542 { "sr12", offsetof(CPUState
, sr
[12]) },
1543 { "sr13", offsetof(CPUState
, sr
[13]) },
1544 { "sr14", offsetof(CPUState
, sr
[14]) },
1545 { "sr15", offsetof(CPUState
, sr
[15]) },
1546 /* Too lazy to put BATs and SPRs ... */
1547 #elif defined(TARGET_SPARC)
1548 { "g0", offsetof(CPUState
, gregs
[0]) },
1549 { "g1", offsetof(CPUState
, gregs
[1]) },
1550 { "g2", offsetof(CPUState
, gregs
[2]) },
1551 { "g3", offsetof(CPUState
, gregs
[3]) },
1552 { "g4", offsetof(CPUState
, gregs
[4]) },
1553 { "g5", offsetof(CPUState
, gregs
[5]) },
1554 { "g6", offsetof(CPUState
, gregs
[6]) },
1555 { "g7", offsetof(CPUState
, gregs
[7]) },
1556 { "o0", 0, monitor_get_reg
},
1557 { "o1", 1, monitor_get_reg
},
1558 { "o2", 2, monitor_get_reg
},
1559 { "o3", 3, monitor_get_reg
},
1560 { "o4", 4, monitor_get_reg
},
1561 { "o5", 5, monitor_get_reg
},
1562 { "o6", 6, monitor_get_reg
},
1563 { "o7", 7, monitor_get_reg
},
1564 { "l0", 8, monitor_get_reg
},
1565 { "l1", 9, monitor_get_reg
},
1566 { "l2", 10, monitor_get_reg
},
1567 { "l3", 11, monitor_get_reg
},
1568 { "l4", 12, monitor_get_reg
},
1569 { "l5", 13, monitor_get_reg
},
1570 { "l6", 14, monitor_get_reg
},
1571 { "l7", 15, monitor_get_reg
},
1572 { "i0", 16, monitor_get_reg
},
1573 { "i1", 17, monitor_get_reg
},
1574 { "i2", 18, monitor_get_reg
},
1575 { "i3", 19, monitor_get_reg
},
1576 { "i4", 20, monitor_get_reg
},
1577 { "i5", 21, monitor_get_reg
},
1578 { "i6", 22, monitor_get_reg
},
1579 { "i7", 23, monitor_get_reg
},
1580 { "pc", offsetof(CPUState
, pc
) },
1581 { "npc", offsetof(CPUState
, npc
) },
1582 { "y", offsetof(CPUState
, y
) },
1583 #ifndef TARGET_SPARC64
1584 { "psr", 0, &monitor_get_psr
, },
1585 { "wim", offsetof(CPUState
, wim
) },
1587 { "tbr", offsetof(CPUState
, tbr
) },
1588 { "fsr", offsetof(CPUState
, fsr
) },
1589 { "f0", offsetof(CPUState
, fpr
[0]) },
1590 { "f1", offsetof(CPUState
, fpr
[1]) },
1591 { "f2", offsetof(CPUState
, fpr
[2]) },
1592 { "f3", offsetof(CPUState
, fpr
[3]) },
1593 { "f4", offsetof(CPUState
, fpr
[4]) },
1594 { "f5", offsetof(CPUState
, fpr
[5]) },
1595 { "f6", offsetof(CPUState
, fpr
[6]) },
1596 { "f7", offsetof(CPUState
, fpr
[7]) },
1597 { "f8", offsetof(CPUState
, fpr
[8]) },
1598 { "f9", offsetof(CPUState
, fpr
[9]) },
1599 { "f10", offsetof(CPUState
, fpr
[10]) },
1600 { "f11", offsetof(CPUState
, fpr
[11]) },
1601 { "f12", offsetof(CPUState
, fpr
[12]) },
1602 { "f13", offsetof(CPUState
, fpr
[13]) },
1603 { "f14", offsetof(CPUState
, fpr
[14]) },
1604 { "f15", offsetof(CPUState
, fpr
[15]) },
1605 { "f16", offsetof(CPUState
, fpr
[16]) },
1606 { "f17", offsetof(CPUState
, fpr
[17]) },
1607 { "f18", offsetof(CPUState
, fpr
[18]) },
1608 { "f19", offsetof(CPUState
, fpr
[19]) },
1609 { "f20", offsetof(CPUState
, fpr
[20]) },
1610 { "f21", offsetof(CPUState
, fpr
[21]) },
1611 { "f22", offsetof(CPUState
, fpr
[22]) },
1612 { "f23", offsetof(CPUState
, fpr
[23]) },
1613 { "f24", offsetof(CPUState
, fpr
[24]) },
1614 { "f25", offsetof(CPUState
, fpr
[25]) },
1615 { "f26", offsetof(CPUState
, fpr
[26]) },
1616 { "f27", offsetof(CPUState
, fpr
[27]) },
1617 { "f28", offsetof(CPUState
, fpr
[28]) },
1618 { "f29", offsetof(CPUState
, fpr
[29]) },
1619 { "f30", offsetof(CPUState
, fpr
[30]) },
1620 { "f31", offsetof(CPUState
, fpr
[31]) },
1621 #ifdef TARGET_SPARC64
1622 { "f32", offsetof(CPUState
, fpr
[32]) },
1623 { "f34", offsetof(CPUState
, fpr
[34]) },
1624 { "f36", offsetof(CPUState
, fpr
[36]) },
1625 { "f38", offsetof(CPUState
, fpr
[38]) },
1626 { "f40", offsetof(CPUState
, fpr
[40]) },
1627 { "f42", offsetof(CPUState
, fpr
[42]) },
1628 { "f44", offsetof(CPUState
, fpr
[44]) },
1629 { "f46", offsetof(CPUState
, fpr
[46]) },
1630 { "f48", offsetof(CPUState
, fpr
[48]) },
1631 { "f50", offsetof(CPUState
, fpr
[50]) },
1632 { "f52", offsetof(CPUState
, fpr
[52]) },
1633 { "f54", offsetof(CPUState
, fpr
[54]) },
1634 { "f56", offsetof(CPUState
, fpr
[56]) },
1635 { "f58", offsetof(CPUState
, fpr
[58]) },
1636 { "f60", offsetof(CPUState
, fpr
[60]) },
1637 { "f62", offsetof(CPUState
, fpr
[62]) },
1638 { "asi", offsetof(CPUState
, asi
) },
1639 { "pstate", offsetof(CPUState
, pstate
) },
1640 { "cansave", offsetof(CPUState
, cansave
) },
1641 { "canrestore", offsetof(CPUState
, canrestore
) },
1642 { "otherwin", offsetof(CPUState
, otherwin
) },
1643 { "wstate", offsetof(CPUState
, wstate
) },
1644 { "cleanwin", offsetof(CPUState
, cleanwin
) },
1645 { "fprs", offsetof(CPUState
, fprs
) },
1651 static void expr_error(const char *fmt
)
1655 longjmp(expr_env
, 1);
1658 /* return 0 if OK, -1 if not found, -2 if no CPU defined */
1659 static int get_monitor_def(target_long
*pval
, const char *name
)
1664 for(md
= monitor_defs
; md
->name
!= NULL
; md
++) {
1665 if (compare_cmd(name
, md
->name
)) {
1666 if (md
->get_value
) {
1667 *pval
= md
->get_value(md
, md
->offset
);
1669 CPUState
*env
= mon_get_cpu();
1672 ptr
= (uint8_t *)env
+ md
->offset
;
1675 *pval
= *(int32_t *)ptr
;
1678 *pval
= *(target_long
*)ptr
;
1691 static void next(void)
1695 while (isspace(*pch
))
1700 static target_long
expr_sum(void);
1702 static target_long
expr_unary(void)
1725 expr_error("')' expected");
1732 expr_error("character constant expected");
1736 expr_error("missing terminating \' character");
1745 while ((*pch
>= 'a' && *pch
<= 'z') ||
1746 (*pch
>= 'A' && *pch
<= 'Z') ||
1747 (*pch
>= '0' && *pch
<= '9') ||
1748 *pch
== '_' || *pch
== '.') {
1749 if ((q
- buf
) < sizeof(buf
) - 1)
1753 while (isspace(*pch
))
1756 ret
= get_monitor_def(&n
, buf
);
1758 expr_error("unknown register");
1760 expr_error("no cpu defined");
1764 expr_error("unexpected end of expression");
1768 #if TARGET_LONG_BITS == 64
1769 n
= strtoull(pch
, &p
, 0);
1771 n
= strtoul(pch
, &p
, 0);
1774 expr_error("invalid char in expression");
1777 while (isspace(*pch
))
1785 static target_long
expr_prod(void)
1787 target_long val
, val2
;
1793 if (op
!= '*' && op
!= '/' && op
!= '%')
1796 val2
= expr_unary();
1805 expr_error("division by zero");
1816 static target_long
expr_logic(void)
1818 target_long val
, val2
;
1824 if (op
!= '&' && op
!= '|' && op
!= '^')
1844 static target_long
expr_sum(void)
1846 target_long val
, val2
;
1852 if (op
!= '+' && op
!= '-')
1855 val2
= expr_logic();
1864 static int get_expr(target_long
*pval
, const char **pp
)
1867 if (setjmp(expr_env
)) {
1871 while (isspace(*pch
))
1878 static int get_str(char *buf
, int buf_size
, const char **pp
)
1896 while (*p
!= '\0' && *p
!= '\"') {
1912 qemu_printf("unsupported escape code: '\\%c'\n", c
);
1915 if ((q
- buf
) < buf_size
- 1) {
1919 if ((q
- buf
) < buf_size
- 1) {
1926 qemu_printf("unterminated string\n");
1931 while (*p
!= '\0' && !isspace(*p
)) {
1932 if ((q
- buf
) < buf_size
- 1) {
1943 static int default_fmt_format
= 'x';
1944 static int default_fmt_size
= 4;
1948 static void monitor_handle_command(const char *cmdline
)
1950 const char *p
, *pstart
, *typestr
;
1952 int c
, nb_args
, len
, i
, has_arg
;
1956 void *str_allocated
[MAX_ARGS
];
1957 void *args
[MAX_ARGS
];
1960 term_printf("command='%s'\n", cmdline
);
1963 /* extract the command name */
1971 while (*p
!= '\0' && *p
!= '/' && !isspace(*p
))
1974 if (len
> sizeof(cmdname
) - 1)
1975 len
= sizeof(cmdname
) - 1;
1976 memcpy(cmdname
, pstart
, len
);
1977 cmdname
[len
] = '\0';
1979 /* find the command */
1980 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
1981 if (compare_cmd(cmdname
, cmd
->name
))
1984 term_printf("unknown command: '%s'\n", cmdname
);
1988 for(i
= 0; i
< MAX_ARGS
; i
++)
1989 str_allocated
[i
] = NULL
;
1991 /* parse the parameters */
1992 typestr
= cmd
->args_type
;
2009 if (*typestr
== '?') {
2012 /* no optional string: NULL argument */
2017 ret
= get_str(buf
, sizeof(buf
), &p
);
2021 term_printf("%s: filename expected\n", cmdname
);
2024 term_printf("%s: block device name expected\n", cmdname
);
2027 term_printf("%s: string expected\n", cmdname
);
2032 str
= qemu_malloc(strlen(buf
) + 1);
2034 str_allocated
[nb_args
] = str
;
2036 if (nb_args
>= MAX_ARGS
) {
2038 term_printf("%s: too many arguments\n", cmdname
);
2041 args
[nb_args
++] = str
;
2046 int count
, format
, size
;
2056 while (isdigit(*p
)) {
2057 count
= count
* 10 + (*p
- '0');
2095 if (*p
!= '\0' && !isspace(*p
)) {
2096 term_printf("invalid char in format: '%c'\n", *p
);
2100 format
= default_fmt_format
;
2101 if (format
!= 'i') {
2102 /* for 'i', not specifying a size gives -1 as size */
2104 size
= default_fmt_size
;
2106 default_fmt_size
= size
;
2107 default_fmt_format
= format
;
2110 format
= default_fmt_format
;
2111 if (format
!= 'i') {
2112 size
= default_fmt_size
;
2117 if (nb_args
+ 3 > MAX_ARGS
)
2119 args
[nb_args
++] = (void*)(long)count
;
2120 args
[nb_args
++] = (void*)(long)format
;
2121 args
[nb_args
++] = (void*)(long)size
;
2130 if (*typestr
== '?' || *typestr
== '.') {
2131 if (*typestr
== '?') {
2147 if (nb_args
>= MAX_ARGS
)
2149 args
[nb_args
++] = (void *)(long)has_arg
;
2151 if (nb_args
>= MAX_ARGS
)
2157 if (get_expr(&val
, &p
))
2161 if (nb_args
>= MAX_ARGS
)
2163 args
[nb_args
++] = (void *)(long)val
;
2165 if ((nb_args
+ 1) >= MAX_ARGS
)
2167 #if TARGET_LONG_BITS == 64
2168 args
[nb_args
++] = (void *)(long)((val
>> 32) & 0xffffffff);
2170 args
[nb_args
++] = (void *)0;
2172 args
[nb_args
++] = (void *)(long)(val
& 0xffffffff);
2190 term_printf("%s: unsupported option -%c\n",
2197 if (nb_args
>= MAX_ARGS
)
2199 args
[nb_args
++] = (void *)(long)has_option
;
2204 term_printf("%s: unknown type '%c'\n", cmdname
, c
);
2208 /* check that all arguments were parsed */
2212 term_printf("%s: extraneous characters at the end of line\n",
2222 cmd
->handler(args
[0]);
2225 cmd
->handler(args
[0], args
[1]);
2228 cmd
->handler(args
[0], args
[1], args
[2]);
2231 cmd
->handler(args
[0], args
[1], args
[2], args
[3]);
2234 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4]);
2237 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5]);
2240 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5], args
[6]);
2243 term_printf("unsupported number of arguments: %d\n", nb_args
);
2247 for(i
= 0; i
< MAX_ARGS
; i
++)
2248 qemu_free(str_allocated
[i
]);
2252 static void cmd_completion(const char *name
, const char *list
)
2254 const char *p
, *pstart
;
2263 p
= pstart
+ strlen(pstart
);
2265 if (len
> sizeof(cmd
) - 2)
2266 len
= sizeof(cmd
) - 2;
2267 memcpy(cmd
, pstart
, len
);
2269 if (name
[0] == '\0' || !strncmp(name
, cmd
, strlen(name
))) {
2270 add_completion(cmd
);
2278 static void file_completion(const char *input
)
2283 char file
[1024], file_prefix
[1024];
2287 p
= strrchr(input
, '/');
2290 pstrcpy(file_prefix
, sizeof(file_prefix
), input
);
2293 input_path_len
= p
- input
+ 1;
2294 memcpy(path
, input
, input_path_len
);
2295 if (input_path_len
> sizeof(path
) - 1)
2296 input_path_len
= sizeof(path
) - 1;
2297 path
[input_path_len
] = '\0';
2298 pstrcpy(file_prefix
, sizeof(file_prefix
), p
+ 1);
2300 #ifdef DEBUG_COMPLETION
2301 term_printf("input='%s' path='%s' prefix='%s'\n", input
, path
, file_prefix
);
2303 ffs
= opendir(path
);
2311 if (strstart(d
->d_name
, file_prefix
, NULL
)) {
2312 memcpy(file
, input
, input_path_len
);
2313 strcpy(file
+ input_path_len
, d
->d_name
);
2314 /* stat the file to find out if it's a directory.
2315 * In that case add a slash to speed up typing long paths
2318 if(S_ISDIR(sb
.st_mode
))
2320 add_completion(file
);
2326 static void block_completion_it(void *opaque
, const char *name
)
2328 const char *input
= opaque
;
2330 if (input
[0] == '\0' ||
2331 !strncmp(name
, (char *)input
, strlen(input
))) {
2332 add_completion(name
);
2336 /* NOTE: this parser is an approximate form of the real command parser */
2337 static void parse_cmdline(const char *cmdline
,
2338 int *pnb_args
, char **args
)
2351 if (nb_args
>= MAX_ARGS
)
2353 ret
= get_str(buf
, sizeof(buf
), &p
);
2354 args
[nb_args
] = qemu_strdup(buf
);
2359 *pnb_args
= nb_args
;
2362 void readline_find_completion(const char *cmdline
)
2364 const char *cmdname
;
2365 char *args
[MAX_ARGS
];
2366 int nb_args
, i
, len
;
2367 const char *ptype
, *str
;
2371 parse_cmdline(cmdline
, &nb_args
, args
);
2372 #ifdef DEBUG_COMPLETION
2373 for(i
= 0; i
< nb_args
; i
++) {
2374 term_printf("arg%d = '%s'\n", i
, (char *)args
[i
]);
2378 /* if the line ends with a space, it means we want to complete the
2380 len
= strlen(cmdline
);
2381 if (len
> 0 && isspace(cmdline
[len
- 1])) {
2382 if (nb_args
>= MAX_ARGS
)
2384 args
[nb_args
++] = qemu_strdup("");
2387 /* command completion */
2392 completion_index
= strlen(cmdname
);
2393 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2394 cmd_completion(cmdname
, cmd
->name
);
2397 /* find the command */
2398 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
2399 if (compare_cmd(args
[0], cmd
->name
))
2404 ptype
= cmd
->args_type
;
2405 for(i
= 0; i
< nb_args
- 2; i
++) {
2406 if (*ptype
!= '\0') {
2408 while (*ptype
== '?')
2412 str
= args
[nb_args
- 1];
2415 /* file completion */
2416 completion_index
= strlen(str
);
2417 file_completion(str
);
2420 /* block device name completion */
2421 completion_index
= strlen(str
);
2422 bdrv_iterate(block_completion_it
, (void *)str
);
2425 /* XXX: more generic ? */
2426 if (!strcmp(cmd
->name
, "info")) {
2427 completion_index
= strlen(str
);
2428 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
2429 cmd_completion(str
, cmd
->name
);
2431 } else if (!strcmp(cmd
->name
, "sendkey")) {
2432 completion_index
= strlen(str
);
2433 for(key
= key_defs
; key
->name
!= NULL
; key
++) {
2434 cmd_completion(str
, key
->name
);
2442 for(i
= 0; i
< nb_args
; i
++)
2446 static int term_can_read(void *opaque
)
2451 static void term_read(void *opaque
, const uint8_t *buf
, int size
)
2454 for(i
= 0; i
< size
; i
++)
2455 readline_handle_byte(buf
[i
]);
2458 static void monitor_start_input(void);
2460 static void monitor_handle_command1(void *opaque
, const char *cmdline
)
2462 monitor_handle_command(cmdline
);
2463 monitor_start_input();
2466 static void monitor_start_input(void)
2468 readline_start("(qemu) ", 0, monitor_handle_command1
, NULL
);
2471 static void term_event(void *opaque
, int event
)
2473 if (event
!= CHR_EVENT_RESET
)
2477 term_printf("QEMU %s monitor - type 'help' for more information\n",
2479 monitor_start_input();
2482 static int is_first_init
= 1;
2484 void monitor_init(CharDriverState
*hd
, int show_banner
)
2488 if (is_first_init
) {
2489 for (i
= 0; i
< MAX_MON
; i
++) {
2490 monitor_hd
[i
] = NULL
;
2494 for (i
= 0; i
< MAX_MON
; i
++) {
2495 if (monitor_hd
[i
] == NULL
) {
2501 hide_banner
= !show_banner
;
2503 qemu_chr_add_handlers(hd
, term_can_read
, term_read
, term_event
, NULL
);
2506 /* XXX: use threads ? */
2507 /* modal monitor readline */
2508 static int monitor_readline_started
;
2509 static char *monitor_readline_buf
;
2510 static int monitor_readline_buf_size
;
2512 static void monitor_readline_cb(void *opaque
, const char *input
)
2514 pstrcpy(monitor_readline_buf
, monitor_readline_buf_size
, input
);
2515 monitor_readline_started
= 0;
2518 void monitor_readline(const char *prompt
, int is_password
,
2519 char *buf
, int buf_size
)
2524 for (i
= 0; i
< MAX_MON
; i
++)
2525 if (monitor_hd
[i
] && monitor_hd
[i
]->focus
== 0)
2526 qemu_chr_send_event(monitor_hd
[i
], CHR_EVENT_FOCUS
);
2528 readline_start(prompt
, is_password
, monitor_readline_cb
, NULL
);
2529 monitor_readline_buf
= buf
;
2530 monitor_readline_buf_size
= buf_size
;
2531 monitor_readline_started
= 1;
2532 while (monitor_readline_started
) {