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
30 #define offsetof(type, field) ((size_t) &((type *)0)->field)
33 #define TERM_CMD_BUF_SIZE 4095
34 #define TERM_MAX_CMDS 64
40 #define printf do_not_use_printf
42 static char term_cmd_buf
[TERM_CMD_BUF_SIZE
+ 1];
43 static int term_cmd_buf_index
;
44 static int term_cmd_buf_size
;
45 static int term_esc_state
;
46 static int term_esc_param
;
48 static char *term_history
[TERM_MAX_CMDS
];
49 static int term_hist_entry
;
55 * 's' string (accept optional quote)
57 * '/' optional gdb-like print format (like "/10x")
59 * '?' optional type (for 'F', 's' and 'i')
63 typedef struct term_cmd_t
{
65 const char *args_type
;
71 static term_cmd_t term_cmds
[];
72 static term_cmd_t info_cmds
[];
74 void term_printf(const char *fmt
, ...)
87 static int compare_cmd(const char *name
, const char *list
)
89 const char *p
, *pstart
;
97 p
= pstart
+ strlen(pstart
);
98 if ((p
- pstart
) == len
&& !memcmp(pstart
, name
, len
))
107 static void help_cmd1(term_cmd_t
*cmds
, const char *prefix
, const char *name
)
111 for(cmd
= cmds
; cmd
->name
!= NULL
; cmd
++) {
112 if (!name
|| !strcmp(name
, cmd
->name
))
113 term_printf("%s%s %s -- %s\n", prefix
, cmd
->name
, cmd
->params
, cmd
->help
);
117 static void help_cmd(const char *name
)
119 if (name
&& !strcmp(name
, "info")) {
120 help_cmd1(info_cmds
, "info ", NULL
);
122 help_cmd1(term_cmds
, "", name
);
123 if (name
&& !strcmp(name
, "log")) {
125 term_printf("Log items (comma separated):\n");
126 term_printf("%-10s %s\n", "none", "remove all logs");
127 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
128 term_printf("%-10s %s\n", item
->name
, item
->help
);
134 static void do_help(const char *name
)
139 static void do_commit(void)
143 for (i
= 0; i
< MAX_DISKS
; i
++) {
145 bdrv_commit(bs_table
[i
]);
149 static void do_info(const char *item
)
155 for(cmd
= info_cmds
; cmd
->name
!= NULL
; cmd
++) {
156 if (compare_cmd(item
, cmd
->name
))
166 static void do_info_network(void)
171 for(i
= 0; i
< nb_nics
; i
++) {
173 term_printf("%d: ifname=%s macaddr=", i
, nd
->ifname
);
174 for(j
= 0; j
< 6; j
++) {
177 term_printf("%02x", nd
->macaddr
[j
]);
183 static void do_info_block(void)
188 static void do_info_registers(void)
191 cpu_dump_state(cpu_single_env
, stdout
, X86_DUMP_FPU
| X86_DUMP_CCOP
);
193 cpu_dump_state(cpu_single_env
, stdout
, 0);
197 static void do_info_history (void)
201 for (i
= 0; i
< TERM_MAX_CMDS
; i
++) {
202 if (term_history
[i
] == NULL
)
204 term_printf("%d: '%s'\n", i
, term_history
[i
]);
208 static void do_quit(void)
213 static int eject_device(BlockDriverState
*bs
, int force
)
215 if (bdrv_is_inserted(bs
)) {
217 if (!bdrv_is_removable(bs
)) {
218 term_printf("device is not removable\n");
221 if (bdrv_is_locked(bs
)) {
222 term_printf("device is locked\n");
231 static void do_eject(int force
, const char *filename
)
233 BlockDriverState
*bs
;
235 term_printf("%d %s\n", force
, filename
);
237 bs
= bdrv_find(filename
);
239 term_printf("device not found\n");
242 eject_device(bs
, force
);
245 static void do_change(const char *device
, const char *filename
)
247 BlockDriverState
*bs
;
249 bs
= bdrv_find(device
);
251 term_printf("device not found\n");
254 if (eject_device(bs
, 0) < 0)
256 bdrv_open(bs
, filename
, 0);
259 static void do_screen_dump(const char *filename
)
261 vga_screen_dump(filename
);
264 static void do_log(const char *items
)
268 if (!strcmp(items
, "none")) {
271 mask
= cpu_str_to_log_mask(items
);
280 static void do_savevm(const char *filename
)
282 if (qemu_savevm(filename
) < 0)
283 term_printf("I/O error when saving VM to '%s'\n", filename
);
286 static void do_loadvm(const char *filename
)
288 if (qemu_loadvm(filename
) < 0)
289 term_printf("I/O error when loading VM from '%s'\n", filename
);
292 static void do_stop(void)
294 vm_stop(EXCP_INTERRUPT
);
297 static void do_cont(void)
302 #ifdef CONFIG_GDBSTUB
303 static void do_gdbserver(int has_port
, int port
)
306 port
= DEFAULT_GDBSTUB_PORT
;
307 if (gdbserver_start(port
) < 0) {
308 qemu_printf("Could not open gdbserver socket on port %d\n", port
);
310 qemu_printf("Waiting gdb connection on port %d\n", port
);
315 static void term_printc(int c
)
332 if (c
>= 32 && c
<= 126) {
333 term_printf("%c", c
);
335 term_printf("\\x%02x", c
);
342 static void memory_dump(int count
, int format
, int wsize
,
343 target_ulong addr
, int is_physical
)
345 int nb_per_line
, l
, line_size
, i
, max_digits
, len
;
355 } else if (wsize
== 4) {
358 /* as default we use the current CS size */
360 if (!(cpu_single_env
->segs
[R_CS
].flags
& DESC_B_MASK
))
364 monitor_disas(addr
, count
, is_physical
, flags
);
373 nb_per_line
= line_size
/ wsize
;
378 max_digits
= (wsize
* 8 + 2) / 3;
382 max_digits
= (wsize
* 8) / 4;
386 max_digits
= (wsize
* 8 * 10 + 32) / 33;
394 term_printf("0x%08x:", addr
);
399 cpu_physical_memory_rw(addr
, buf
, l
, 0);
401 cpu_memory_rw_debug(cpu_single_env
, addr
, buf
, l
, 0);
408 v
= ldub_raw(buf
+ i
);
411 v
= lduw_raw(buf
+ i
);
414 v
= ldl_raw(buf
+ i
);
417 v
= ldq_raw(buf
+ i
);
423 term_printf("%#*llo", max_digits
, v
);
426 term_printf("0x%0*llx", max_digits
, v
);
429 term_printf("%*llu", max_digits
, v
);
432 term_printf("%*lld", max_digits
, v
);
446 static void do_memory_dump(int count
, int format
, int size
, int addr
)
448 memory_dump(count
, format
, size
, addr
, 0);
451 static void do_physical_memory_dump(int count
, int format
, int size
, int addr
)
453 memory_dump(count
, format
, size
, addr
, 1);
456 static void do_print(int count
, int format
, int size
, int val
)
460 term_printf("%#o", val
);
463 term_printf("%#x", val
);
466 term_printf("%u", val
);
470 term_printf("%d", val
);
484 static const KeyDef key_defs
[] = {
507 { 0x0e, "backspace" },
542 { 0x3a, "caps_lock" },
553 { 0x45, "num_lock" },
554 { 0x46, "scroll_lock" },
578 static int get_keycode(const char *key
)
582 for(p
= key_defs
; p
->name
!= NULL
; p
++) {
583 if (!strcmp(key
, p
->name
))
589 static void do_send_key(const char *string
)
592 uint8_t keycodes
[16];
594 int nb_keycodes
, keycode
, i
;
600 while (*p
!= '\0' && *p
!= '-') {
601 if ((q
- keybuf
) < sizeof(keybuf
) - 1) {
607 keycode
= get_keycode(keybuf
);
609 term_printf("unknown key: '%s'\n", keybuf
);
612 keycodes
[nb_keycodes
++] = keycode
;
617 /* key down events */
618 for(i
= 0; i
< nb_keycodes
; i
++) {
619 keycode
= keycodes
[i
];
621 kbd_put_keycode(0xe0);
622 kbd_put_keycode(keycode
& 0x7f);
625 for(i
= nb_keycodes
- 1; i
>= 0; i
--) {
626 keycode
= keycodes
[i
];
628 kbd_put_keycode(0xe0);
629 kbd_put_keycode(keycode
| 0x80);
633 static void do_ioport_read(int count
, int format
, int size
, int addr
, int has_index
, int index
)
639 cpu_outb(NULL
, addr
& 0xffff, index
& 0xff);
647 val
= cpu_inb(NULL
, addr
);
651 val
= cpu_inw(NULL
, addr
);
655 val
= cpu_inl(NULL
, addr
);
659 term_printf("port%c[0x%04x] = %#0*x\n",
660 suffix
, addr
, size
* 2, val
);
663 static void do_system_reset(void)
665 qemu_system_reset_request();
668 static term_cmd_t term_cmds
[] = {
669 { "help|?", "s?", do_help
,
670 "[cmd]", "show the help" },
671 { "commit", "", do_commit
,
672 "", "commit changes to the disk images (if -snapshot is used)" },
673 { "info", "s?", do_info
,
674 "subcommand", "show various information about the system state" },
675 { "q|quit", "", do_quit
,
676 "", "quit the emulator" },
677 { "eject", "-fs", do_eject
,
678 "[-f] device", "eject a removable media (use -f to force it)" },
679 { "change", "sF", do_change
,
680 "device filename", "change a removable media" },
681 { "screendump", "F", do_screen_dump
,
682 "filename", "save screen into PPM image 'filename'" },
683 { "log", "s", do_log
,
684 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
685 { "savevm", "F", do_savevm
,
686 "filename", "save the whole virtual machine state to 'filename'" },
687 { "loadvm", "F", do_loadvm
,
688 "filename", "restore the whole virtual machine state from 'filename'" },
689 { "stop", "", do_stop
,
690 "", "stop emulation", },
691 { "c|cont", "", do_cont
,
692 "", "resume emulation", },
693 #ifdef CONFIG_GDBSTUB
694 { "gdbserver", "i?", do_gdbserver
,
695 "[port]", "start gdbserver session (default port=1234)", },
697 { "x", "/i", do_memory_dump
,
698 "/fmt addr", "virtual memory dump starting at 'addr'", },
699 { "xp", "/i", do_physical_memory_dump
,
700 "/fmt addr", "physical memory dump starting at 'addr'", },
701 { "p|print", "/i", do_print
,
702 "/fmt expr", "print expression value (use $reg for CPU register access)", },
703 { "i", "/ii.", do_ioport_read
,
704 "/fmt addr", "I/O port read" },
706 { "sendkey", "s", do_send_key
,
707 "keys", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1')" },
708 { "system_reset", "", do_system_reset
,
709 "", "reset the system" },
713 static term_cmd_t info_cmds
[] = {
714 { "network", "", do_info_network
,
715 "", "show the network state" },
716 { "block", "", do_info_block
,
717 "", "show the block devices" },
718 { "registers", "", do_info_registers
,
719 "", "show the cpu registers" },
720 { "history", "", do_info_history
,
721 "", "show the command line history", },
722 { "irq", "", irq_info
,
723 "", "show the interrupts statistics (if available)", },
724 { "pic", "", pic_info
,
725 "", "show i8259 (PIC) state", },
726 { "pci", "", pci_info
,
727 "", "show PCI info", },
731 /*******************************************************************/
733 static const char *pch
;
734 static jmp_buf expr_env
;
736 typedef struct MonitorDef
{
739 int (*get_value
)(struct MonitorDef
*md
);
742 #if defined(TARGET_I386)
743 static int monitor_get_pc (struct MonitorDef
*md
)
745 return cpu_single_env
->eip
+ (long)cpu_single_env
->segs
[R_CS
].base
;
749 #if defined(TARGET_PPC)
750 static int monitor_get_ccr (struct MonitorDef
*md
)
756 for (i
= 0; i
< 8; i
++)
757 u
|= cpu_single_env
->crf
[i
] << (32 - (4 * i
));
762 static int monitor_get_msr (struct MonitorDef
*md
)
764 return (cpu_single_env
->msr
[MSR_POW
] << MSR_POW
) |
765 (cpu_single_env
->msr
[MSR_ILE
] << MSR_ILE
) |
766 (cpu_single_env
->msr
[MSR_EE
] << MSR_EE
) |
767 (cpu_single_env
->msr
[MSR_PR
] << MSR_PR
) |
768 (cpu_single_env
->msr
[MSR_FP
] << MSR_FP
) |
769 (cpu_single_env
->msr
[MSR_ME
] << MSR_ME
) |
770 (cpu_single_env
->msr
[MSR_FE0
] << MSR_FE0
) |
771 (cpu_single_env
->msr
[MSR_SE
] << MSR_SE
) |
772 (cpu_single_env
->msr
[MSR_BE
] << MSR_BE
) |
773 (cpu_single_env
->msr
[MSR_FE1
] << MSR_FE1
) |
774 (cpu_single_env
->msr
[MSR_IP
] << MSR_IP
) |
775 (cpu_single_env
->msr
[MSR_IR
] << MSR_IR
) |
776 (cpu_single_env
->msr
[MSR_DR
] << MSR_DR
) |
777 (cpu_single_env
->msr
[MSR_RI
] << MSR_RI
) |
778 (cpu_single_env
->msr
[MSR_LE
] << MSR_LE
);
781 static int monitor_get_xer (struct MonitorDef
*md
)
783 return (cpu_single_env
->xer
[XER_SO
] << XER_SO
) |
784 (cpu_single_env
->xer
[XER_OV
] << XER_OV
) |
785 (cpu_single_env
->xer
[XER_CA
] << XER_CA
) |
786 (cpu_single_env
->xer
[XER_BC
] << XER_BC
);
789 uint32_t cpu_ppc_load_decr (CPUState
*env
);
790 static int monitor_get_decr (struct MonitorDef
*md
)
792 return cpu_ppc_load_decr(cpu_single_env
);
795 uint32_t cpu_ppc_load_tbu (CPUState
*env
);
796 static int monitor_get_tbu (struct MonitorDef
*md
)
798 return cpu_ppc_load_tbu(cpu_single_env
);
801 uint32_t cpu_ppc_load_tbl (CPUState
*env
);
802 static int monitor_get_tbl (struct MonitorDef
*md
)
804 return cpu_ppc_load_tbl(cpu_single_env
);
808 static MonitorDef monitor_defs
[] = {
811 #define SEG(name, seg) \
812 { name, offsetof(CPUState, segs[seg].selector) },\
813 { name ".base", offsetof(CPUState, segs[seg].base) },\
814 { name ".limit", offsetof(CPUState, segs[seg].limit) },
816 { "eax", offsetof(CPUState
, regs
[0]) },
817 { "ecx", offsetof(CPUState
, regs
[1]) },
818 { "edx", offsetof(CPUState
, regs
[2]) },
819 { "ebx", offsetof(CPUState
, regs
[3]) },
820 { "esp|sp", offsetof(CPUState
, regs
[4]) },
821 { "ebp|fp", offsetof(CPUState
, regs
[5]) },
822 { "esi", offsetof(CPUState
, regs
[6]) },
823 { "esi", offsetof(CPUState
, regs
[7]) },
824 { "eflags", offsetof(CPUState
, eflags
) },
825 { "eip", offsetof(CPUState
, eip
) },
831 { "pc", 0, monitor_get_pc
, },
832 #elif defined(TARGET_PPC)
833 { "r0", offsetof(CPUState
, gpr
[0]) },
834 { "r1", offsetof(CPUState
, gpr
[1]) },
835 { "r2", offsetof(CPUState
, gpr
[2]) },
836 { "r3", offsetof(CPUState
, gpr
[3]) },
837 { "r4", offsetof(CPUState
, gpr
[4]) },
838 { "r5", offsetof(CPUState
, gpr
[5]) },
839 { "r6", offsetof(CPUState
, gpr
[6]) },
840 { "r7", offsetof(CPUState
, gpr
[7]) },
841 { "r8", offsetof(CPUState
, gpr
[8]) },
842 { "r9", offsetof(CPUState
, gpr
[9]) },
843 { "r10", offsetof(CPUState
, gpr
[10]) },
844 { "r11", offsetof(CPUState
, gpr
[11]) },
845 { "r12", offsetof(CPUState
, gpr
[12]) },
846 { "r13", offsetof(CPUState
, gpr
[13]) },
847 { "r14", offsetof(CPUState
, gpr
[14]) },
848 { "r15", offsetof(CPUState
, gpr
[15]) },
849 { "r16", offsetof(CPUState
, gpr
[16]) },
850 { "r17", offsetof(CPUState
, gpr
[17]) },
851 { "r18", offsetof(CPUState
, gpr
[18]) },
852 { "r19", offsetof(CPUState
, gpr
[19]) },
853 { "r20", offsetof(CPUState
, gpr
[20]) },
854 { "r21", offsetof(CPUState
, gpr
[21]) },
855 { "r22", offsetof(CPUState
, gpr
[22]) },
856 { "r23", offsetof(CPUState
, gpr
[23]) },
857 { "r24", offsetof(CPUState
, gpr
[24]) },
858 { "r25", offsetof(CPUState
, gpr
[25]) },
859 { "r26", offsetof(CPUState
, gpr
[26]) },
860 { "r27", offsetof(CPUState
, gpr
[27]) },
861 { "r28", offsetof(CPUState
, gpr
[28]) },
862 { "r29", offsetof(CPUState
, gpr
[29]) },
863 { "r30", offsetof(CPUState
, gpr
[30]) },
864 { "r31", offsetof(CPUState
, gpr
[31]) },
865 { "nip|pc", offsetof(CPUState
, nip
) },
866 { "lr", offsetof(CPUState
, lr
) },
867 { "ctr", offsetof(CPUState
, ctr
) },
868 { "decr", 0, &monitor_get_decr
, },
869 { "ccr", 0, &monitor_get_ccr
, },
870 { "msr", 0, &monitor_get_msr
, },
871 { "xer", 0, &monitor_get_xer
, },
872 { "tbu", 0, &monitor_get_tbu
, },
873 { "tbl", 0, &monitor_get_tbl
, },
874 { "sdr1", offsetof(CPUState
, sdr1
) },
875 { "sr0", offsetof(CPUState
, sr
[0]) },
876 { "sr1", offsetof(CPUState
, sr
[1]) },
877 { "sr2", offsetof(CPUState
, sr
[2]) },
878 { "sr3", offsetof(CPUState
, sr
[3]) },
879 { "sr4", offsetof(CPUState
, sr
[4]) },
880 { "sr5", offsetof(CPUState
, sr
[5]) },
881 { "sr6", offsetof(CPUState
, sr
[6]) },
882 { "sr7", offsetof(CPUState
, sr
[7]) },
883 { "sr8", offsetof(CPUState
, sr
[8]) },
884 { "sr9", offsetof(CPUState
, sr
[9]) },
885 { "sr10", offsetof(CPUState
, sr
[10]) },
886 { "sr11", offsetof(CPUState
, sr
[11]) },
887 { "sr12", offsetof(CPUState
, sr
[12]) },
888 { "sr13", offsetof(CPUState
, sr
[13]) },
889 { "sr14", offsetof(CPUState
, sr
[14]) },
890 { "sr15", offsetof(CPUState
, sr
[15]) },
891 /* Too lazy to put BATs and SPRs ... */
896 static void expr_error(const char *fmt
)
900 longjmp(expr_env
, 1);
903 static int get_monitor_def(int *pval
, const char *name
)
906 for(md
= monitor_defs
; md
->name
!= NULL
; md
++) {
907 if (compare_cmd(name
, md
->name
)) {
909 *pval
= md
->get_value(md
);
911 *pval
= *(uint32_t *)((uint8_t *)cpu_single_env
+ md
->offset
);
919 static void next(void)
923 while (isspace(*pch
))
928 static int expr_sum(void);
930 static int expr_unary(void)
952 expr_error("')' expected");
962 while ((*pch
>= 'a' && *pch
<= 'z') ||
963 (*pch
>= 'A' && *pch
<= 'Z') ||
964 (*pch
>= '0' && *pch
<= '9') ||
965 *pch
== '_' || *pch
== '.') {
966 if ((q
- buf
) < sizeof(buf
) - 1)
970 while (isspace(*pch
))
973 if (get_monitor_def(&n
, buf
))
974 expr_error("unknown register");
978 expr_error("unexpected end of expression");
982 n
= strtoul(pch
, &p
, 0);
984 expr_error("invalid char in expression");
987 while (isspace(*pch
))
995 static int expr_prod(void)
1002 if (op
!= '*' && op
!= '/' && op
!= '%')
1005 val2
= expr_unary();
1014 expr_error("division by zero");
1025 static int expr_logic(void)
1032 if (op
!= '&' && op
!= '|' && op
!= '^')
1052 static int expr_sum(void)
1059 if (op
!= '+' && op
!= '-')
1062 val2
= expr_logic();
1071 static int get_expr(int *pval
, const char **pp
)
1074 if (setjmp(expr_env
)) {
1078 while (isspace(*pch
))
1085 static int get_str(char *buf
, int buf_size
, const char **pp
)
1102 while (*p
!= '\0' && *p
!= '\"') {
1118 qemu_printf("unsupported escape code: '\\%c'\n", c
);
1121 if ((q
- buf
) < buf_size
- 1) {
1125 if ((q
- buf
) < buf_size
- 1) {
1132 qemu_printf("unterminated string\n");
1137 while (*p
!= '\0' && !isspace(*p
)) {
1138 if ((q
- buf
) < buf_size
- 1) {
1149 static int default_fmt_format
= 'x';
1150 static int default_fmt_size
= 4;
1154 static void term_handle_command(const char *cmdline
)
1156 const char *p
, *pstart
, *typestr
;
1158 int c
, nb_args
, len
, i
, has_arg
;
1162 void *str_allocated
[MAX_ARGS
];
1163 void *args
[MAX_ARGS
];
1166 term_printf("command='%s'\n", cmdline
);
1169 /* extract the command name */
1177 while (*p
!= '\0' && *p
!= '/' && !isspace(*p
))
1180 if (len
> sizeof(cmdname
) - 1)
1181 len
= sizeof(cmdname
) - 1;
1182 memcpy(cmdname
, pstart
, len
);
1183 cmdname
[len
] = '\0';
1185 /* find the command */
1186 for(cmd
= term_cmds
; cmd
->name
!= NULL
; cmd
++) {
1187 if (compare_cmd(cmdname
, cmd
->name
))
1190 term_printf("unknown command: '%s'\n", cmdname
);
1194 for(i
= 0; i
< MAX_ARGS
; i
++)
1195 str_allocated
[i
] = NULL
;
1197 /* parse the parameters */
1198 typestr
= cmd
->args_type
;
1214 if (*typestr
== '?') {
1217 /* no optional string: NULL argument */
1222 ret
= get_str(buf
, sizeof(buf
), &p
);
1225 term_printf("%s: filename expected\n", cmdname
);
1227 term_printf("%s: string expected\n", cmdname
);
1230 str
= qemu_malloc(strlen(buf
) + 1);
1232 str_allocated
[nb_args
] = str
;
1234 if (nb_args
>= MAX_ARGS
) {
1236 term_printf("%s: too many arguments\n", cmdname
);
1239 args
[nb_args
++] = str
;
1244 int count
, format
, size
;
1254 while (isdigit(*p
)) {
1255 count
= count
* 10 + (*p
- '0');
1293 if (*p
!= '\0' && !isspace(*p
)) {
1294 term_printf("invalid char in format: '%c'\n", *p
);
1298 format
= default_fmt_format
;
1299 if (format
!= 'i') {
1300 /* for 'i', not specifying a size gives -1 as size */
1302 size
= default_fmt_size
;
1304 default_fmt_size
= size
;
1305 default_fmt_format
= format
;
1308 format
= default_fmt_format
;
1309 if (format
!= 'i') {
1310 size
= default_fmt_size
;
1315 if (nb_args
+ 3 > MAX_ARGS
)
1317 args
[nb_args
++] = (void*)count
;
1318 args
[nb_args
++] = (void*)format
;
1319 args
[nb_args
++] = (void*)size
;
1327 if (*typestr
== '?' || *typestr
== '.') {
1329 if (*typestr
== '?') {
1344 if (nb_args
>= MAX_ARGS
)
1346 args
[nb_args
++] = (void *)has_arg
;
1348 if (nb_args
>= MAX_ARGS
)
1354 if (get_expr(&val
, &p
))
1357 if (nb_args
>= MAX_ARGS
)
1359 args
[nb_args
++] = (void *)val
;
1376 term_printf("%s: unsupported option -%c\n",
1383 if (nb_args
>= MAX_ARGS
)
1385 args
[nb_args
++] = (void *)has_option
;
1390 term_printf("%s: unknown type '%c'\n", cmdname
, c
);
1394 /* check that all arguments were parsed */
1398 term_printf("%s: extraneous characters at the end of line\n",
1408 cmd
->handler(args
[0]);
1411 cmd
->handler(args
[0], args
[1]);
1414 cmd
->handler(args
[0], args
[1], args
[2]);
1417 cmd
->handler(args
[0], args
[1], args
[2], args
[3]);
1420 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4]);
1423 cmd
->handler(args
[0], args
[1], args
[2], args
[3], args
[4], args
[5]);
1426 term_printf("unsupported number of arguments: %d\n", nb_args
);
1430 for(i
= 0; i
< MAX_ARGS
; i
++)
1431 qemu_free(str_allocated
[i
]);
1435 static void term_show_prompt(void)
1437 term_printf("(qemu) ");
1439 term_cmd_buf_index
= 0;
1440 term_cmd_buf_size
= 0;
1441 term_esc_state
= IS_NORM
;
1444 static void term_print_cmdline (const char *cmdline
)
1447 term_printf("%s", cmdline
);
1451 static void term_insert_char(int ch
)
1453 if (term_cmd_buf_index
< TERM_CMD_BUF_SIZE
) {
1454 memmove(term_cmd_buf
+ term_cmd_buf_index
+ 1,
1455 term_cmd_buf
+ term_cmd_buf_index
,
1456 term_cmd_buf_size
- term_cmd_buf_index
);
1457 term_cmd_buf
[term_cmd_buf_index
] = ch
;
1458 term_cmd_buf_size
++;
1459 term_printf("\033[@%c", ch
);
1460 term_cmd_buf_index
++;
1465 static void term_backward_char(void)
1467 if (term_cmd_buf_index
> 0) {
1468 term_cmd_buf_index
--;
1469 term_printf("\033[D");
1474 static void term_forward_char(void)
1476 if (term_cmd_buf_index
< term_cmd_buf_size
) {
1477 term_cmd_buf_index
++;
1478 term_printf("\033[C");
1483 static void term_delete_char(void)
1485 if (term_cmd_buf_index
< term_cmd_buf_size
) {
1486 memmove(term_cmd_buf
+ term_cmd_buf_index
,
1487 term_cmd_buf
+ term_cmd_buf_index
+ 1,
1488 term_cmd_buf_size
- term_cmd_buf_index
- 1);
1489 term_printf("\033[P");
1490 term_cmd_buf_size
--;
1495 static void term_backspace(void)
1497 if (term_cmd_buf_index
> 0) {
1498 term_backward_char();
1503 static void term_bol(void)
1505 while (term_cmd_buf_index
> 0)
1506 term_backward_char();
1509 static void term_eol(void)
1511 while (term_cmd_buf_index
< term_cmd_buf_size
)
1512 term_forward_char();
1515 static void term_up_char(void)
1519 if (term_hist_entry
== 0)
1521 if (term_hist_entry
== -1) {
1522 /* Find latest entry */
1523 for (idx
= 0; idx
< TERM_MAX_CMDS
; idx
++) {
1524 if (term_history
[idx
] == NULL
)
1527 term_hist_entry
= idx
;
1530 if (term_hist_entry
>= 0) {
1531 pstrcpy(term_cmd_buf
, sizeof(term_cmd_buf
),
1532 term_history
[term_hist_entry
]);
1534 term_print_cmdline(term_cmd_buf
);
1535 term_cmd_buf_index
= term_cmd_buf_size
= strlen(term_cmd_buf
);
1539 static void term_down_char(void)
1541 if (term_hist_entry
== TERM_MAX_CMDS
- 1 || term_hist_entry
== -1)
1543 if (term_history
[++term_hist_entry
] != NULL
) {
1544 pstrcpy(term_cmd_buf
, sizeof(term_cmd_buf
),
1545 term_history
[term_hist_entry
]);
1547 term_hist_entry
= -1;
1550 term_print_cmdline(term_cmd_buf
);
1551 term_cmd_buf_index
= term_cmd_buf_size
= strlen(term_cmd_buf
);
1554 static void term_hist_add(const char *cmdline
)
1556 char *hist_entry
, *new_entry
;
1559 if (cmdline
[0] == '\0')
1562 if (term_hist_entry
!= -1) {
1563 /* We were editing an existing history entry: replace it */
1564 hist_entry
= term_history
[term_hist_entry
];
1565 idx
= term_hist_entry
;
1566 if (strcmp(hist_entry
, cmdline
) == 0) {
1570 /* Search cmdline in history buffers */
1571 for (idx
= 0; idx
< TERM_MAX_CMDS
; idx
++) {
1572 hist_entry
= term_history
[idx
];
1573 if (hist_entry
== NULL
)
1575 if (strcmp(hist_entry
, cmdline
) == 0) {
1577 new_entry
= hist_entry
;
1578 /* Put this entry at the end of history */
1579 memmove(&term_history
[idx
], &term_history
[idx
+ 1],
1580 &term_history
[TERM_MAX_CMDS
] - &term_history
[idx
+ 1]);
1581 term_history
[TERM_MAX_CMDS
- 1] = NULL
;
1582 for (; idx
< TERM_MAX_CMDS
; idx
++) {
1583 if (term_history
[idx
] == NULL
)
1589 if (idx
== TERM_MAX_CMDS
) {
1590 /* Need to get one free slot */
1591 free(term_history
[0]);
1592 memcpy(term_history
, &term_history
[1],
1593 &term_history
[TERM_MAX_CMDS
] - &term_history
[1]);
1594 term_history
[TERM_MAX_CMDS
- 1] = NULL
;
1595 idx
= TERM_MAX_CMDS
- 1;
1597 if (new_entry
== NULL
)
1598 new_entry
= strdup(cmdline
);
1599 term_history
[idx
] = new_entry
;
1600 term_hist_entry
= -1;
1603 /* return true if command handled */
1604 static void term_handle_byte(int ch
)
1606 switch(term_esc_state
) {
1617 term_cmd_buf
[term_cmd_buf_size
] = '\0';
1618 term_hist_add(term_cmd_buf
);
1620 term_handle_command(term_cmd_buf
);
1624 term_esc_state
= IS_ESC
;
1631 term_esc_state
= IS_CSI
;
1635 term_insert_char(ch
);
1642 term_esc_state
= IS_CSI
;
1645 term_esc_state
= IS_NORM
;
1659 term_backward_char();
1662 term_forward_char();
1665 term_esc_param
= term_esc_param
* 10 + (ch
- '0');
1668 switch(term_esc_param
) {
1683 term_esc_state
= IS_NORM
;
1689 /*************************************************************/
1690 /* serial console support */
1692 #define TERM_ESCAPE 0x01 /* ctrl-a is used for escape */
1694 static int term_got_escape
, term_command
;
1696 void term_print_help(void)
1699 "C-a h print this help\n"
1700 "C-a x exit emulatior\n"
1701 "C-a s save disk data back to file (if -snapshot)\n"
1702 "C-a b send break (magic sysrq)\n"
1703 "C-a c switch between console and monitor\n"
1704 "C-a C-a send C-a\n"
1708 /* called when a char is received */
1709 static void term_received_byte(int ch
)
1711 if (!serial_console
) {
1712 /* if no serial console, handle every command */
1713 term_handle_byte(ch
);
1715 if (term_got_escape
) {
1716 term_got_escape
= 0;
1727 for (i
= 0; i
< MAX_DISKS
; i
++) {
1729 bdrv_commit(bs_table
[i
]);
1735 serial_receive_break(serial_console
);
1738 if (!term_command
) {
1748 } else if (ch
== TERM_ESCAPE
) {
1749 term_got_escape
= 1;
1753 term_handle_byte(ch
);
1756 serial_receive_byte(serial_console
, ch
);
1762 static int term_can_read(void *opaque
)
1764 if (serial_console
) {
1765 return serial_can_receive(serial_console
);
1771 static void term_read(void *opaque
, const uint8_t *buf
, int size
)
1774 for(i
= 0; i
< size
; i
++)
1775 term_received_byte(buf
[i
]);
1778 void monitor_init(void)
1780 if (!serial_console
) {
1781 term_printf("QEMU %s monitor - type 'help' for more information\n",
1785 term_hist_entry
= -1;
1786 qemu_add_fd_read_handler(0, term_can_read
, term_read
, NULL
);