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);
479 static term_cmd_t term_cmds[] = {
480 { "help|?", "s?", do_help,
481 "[cmd]", "show the help" },
482 { "commit", "", do_commit,
483 "", "commit changes to the disk images (if -snapshot is used)" },
484 { "info", "s?", do_info,
485 "subcommand", "show various information about the system state" },
486 { "q|quit", "", do_quit,
487 "", "quit the emulator" },
488 { "eject", "-fs", do_eject,
489 "[-f] device", "eject a removable media (use -f to force it)" },
490 { "change", "sF", do_change,
491 "device filename", "change a removable media" },
492 { "screendump", "F", do_screen_dump,
493 "filename", "save screen into PPM image 'filename'" },
494 { "log", "s", do_log,
495 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
496 { "savevm", "F", do_savevm,
497 "filename", "save the whole virtual machine state to 'filename'" },
498 { "loadvm", "F", do_loadvm,
499 "filename", "restore the whole virtual machine state from 'filename'" },
500 { "stop", "", do_stop,
501 "", "stop emulation", },
502 { "c|cont", "", do_cont,
503 "", "resume emulation", },
504 #ifdef CONFIG_GDBSTUB
505 { "gdbserver", "i?", do_gdbserver,
506 "[port]", "start gdbserver session (default port=1234)", },
508 { "x", "/i", do_memory_dump,
509 "/fmt addr", "virtual memory dump starting at 'addr'", },
510 { "xp", "/i", do_physical_memory_dump,
511 "/fmt addr", "physical memory dump starting at 'addr'", },
512 { "p|print", "/i", do_print,
513 "/fmt expr", "print expression value (use $reg for CPU register access)", },
517 static term_cmd_t info_cmds[] = {
518 { "network", "", do_info_network,
519 "", "show the network state" },
520 { "block", "", do_info_block,
521 "", "show the block devices" },
522 { "registers", "", do_info_registers,
523 "", "show the cpu registers" },
524 { "history", "", do_info_history,
525 "", "show the command line history", },
526 { "irq", "", irq_info,
527 "", "show the interrupts statistics (if available)", },
528 { "pic", "", pic_info,
529 "", "show i8259 (PIC) state", },
530 { "pci", "", pci_info,
531 "", "show PCI info", },
535 /*******************************************************************/
537 static const char *pch;
538 static jmp_buf expr_env;
540 typedef struct MonitorDef {
543 int (*get_value)(struct MonitorDef *md);
546 #if defined(TARGET_I386)
547 static int monitor_get_pc (struct MonitorDef *md)
549 return cpu_single_env->eip + (long)cpu_single_env->segs[R_CS].base;
553 #if defined(TARGET_PPC)
554 static int monitor_get_ccr (struct MonitorDef *md)
560 for (i = 0; i < 8; i++)
561 u |= cpu_single_env->crf[i] << (32 - (4 * i));
566 static int monitor_get_msr (struct MonitorDef *md)
568 return (cpu_single_env->msr[MSR_POW] << MSR_POW) |
569 (cpu_single_env->msr[MSR_ILE] << MSR_ILE) |
570 (cpu_single_env->msr[MSR_EE] << MSR_EE) |
571 (cpu_single_env->msr[MSR_PR] << MSR_PR) |
572 (cpu_single_env->msr[MSR_FP] << MSR_FP) |
573 (cpu_single_env->msr[MSR_ME] << MSR_ME) |
574 (cpu_single_env->msr[MSR_FE0] << MSR_FE0) |
575 (cpu_single_env->msr[MSR_SE] << MSR_SE) |
576 (cpu_single_env->msr[MSR_BE] << MSR_BE) |
577 (cpu_single_env->msr[MSR_FE1] << MSR_FE1) |
578 (cpu_single_env->msr[MSR_IP] << MSR_IP) |
579 (cpu_single_env->msr[MSR_IR] << MSR_IR) |
580 (cpu_single_env->msr[MSR_DR] << MSR_DR) |
581 (cpu_single_env->msr[MSR_RI] << MSR_RI) |
582 (cpu_single_env->msr[MSR_LE] << MSR_LE);
585 static int monitor_get_xer (struct MonitorDef *md)
587 return (cpu_single_env->xer[XER_SO] << XER_SO) |
588 (cpu_single_env->xer[XER_OV] << XER_OV) |
589 (cpu_single_env->xer[XER_CA] << XER_CA) |
590 (cpu_single_env->xer[XER_BC] << XER_BC);
593 uint32_t cpu_ppc_load_decr (CPUState *env);
594 static int monitor_get_decr (struct MonitorDef *md)
596 return cpu_ppc_load_decr(cpu_single_env);
599 uint32_t cpu_ppc_load_tbu (CPUState *env);
600 static int monitor_get_tbu (struct MonitorDef *md)
602 return cpu_ppc_load_tbu(cpu_single_env);
605 uint32_t cpu_ppc_load_tbl (CPUState *env);
606 static int monitor_get_tbl (struct MonitorDef *md)
608 return cpu_ppc_load_tbl(cpu_single_env);
612 static MonitorDef monitor_defs[] = {
615 #define SEG(name, seg) \
616 { name, offsetof(CPUState, segs[seg].selector) },\
617 { name ".base", offsetof(CPUState, segs[seg].base) },\
618 { name ".limit", offsetof(CPUState, segs[seg].limit) },
620 { "eax", offsetof(CPUState, regs[0]) },
621 { "ecx", offsetof(CPUState, regs[1]) },
622 { "edx", offsetof(CPUState, regs[2]) },
623 { "ebx", offsetof(CPUState, regs[3]) },
624 { "esp|sp", offsetof(CPUState, regs[4]) },
625 { "ebp|fp", offsetof(CPUState, regs[5]) },
626 { "esi", offsetof(CPUState, regs[6]) },
627 { "esi", offsetof(CPUState, regs[7]) },
628 { "eflags", offsetof(CPUState, eflags) },
629 { "eip", offsetof(CPUState, eip) },
635 { "pc", 0, monitor_get_pc, },
636 #elif defined(TARGET_PPC)
637 { "r0", offsetof(CPUState, gpr[0]) },
638 { "r1", offsetof(CPUState, gpr[1]) },
639 { "r2", offsetof(CPUState, gpr[2]) },
640 { "r3", offsetof(CPUState, gpr[3]) },
641 { "r4", offsetof(CPUState, gpr[4]) },
642 { "r5", offsetof(CPUState, gpr[5]) },
643 { "r6", offsetof(CPUState, gpr[6]) },
644 { "r7", offsetof(CPUState, gpr[7]) },
645 { "r8", offsetof(CPUState, gpr[8]) },
646 { "r9", offsetof(CPUState, gpr[9]) },
647 { "r10", offsetof(CPUState, gpr[10]) },
648 { "r11", offsetof(CPUState, gpr[11]) },
649 { "r12", offsetof(CPUState, gpr[12]) },
650 { "r13", offsetof(CPUState, gpr[13]) },
651 { "r14", offsetof(CPUState, gpr[14]) },
652 { "r15", offsetof(CPUState, gpr[15]) },
653 { "r16", offsetof(CPUState, gpr[16]) },
654 { "r17", offsetof(CPUState, gpr[17]) },
655 { "r18", offsetof(CPUState, gpr[18]) },
656 { "r19", offsetof(CPUState, gpr[19]) },
657 { "r20", offsetof(CPUState, gpr[20]) },
658 { "r21", offsetof(CPUState, gpr[21]) },
659 { "r22", offsetof(CPUState, gpr[22]) },
660 { "r23", offsetof(CPUState, gpr[23]) },
661 { "r24", offsetof(CPUState, gpr[24]) },
662 { "r25", offsetof(CPUState, gpr[25]) },
663 { "r26", offsetof(CPUState, gpr[26]) },
664 { "r27", offsetof(CPUState, gpr[27]) },
665 { "r28", offsetof(CPUState, gpr[28]) },
666 { "r29", offsetof(CPUState, gpr[29]) },
667 { "r30", offsetof(CPUState, gpr[30]) },
668 { "r31", offsetof(CPUState, gpr[31]) },
669 { "nip|pc", offsetof(CPUState, nip) },
670 { "lr", offsetof(CPUState, lr) },
671 { "ctr", offsetof(CPUState, ctr) },
672 { "decr", 0, &monitor_get_decr, },
673 { "ccr", 0, &monitor_get_ccr, },
674 { "msr", 0, &monitor_get_msr, },
675 { "xer", 0, &monitor_get_xer, },
676 { "tbu", 0, &monitor_get_tbu, },
677 { "tbl", 0, &monitor_get_tbl, },
678 { "sdr1", offsetof(CPUState, sdr1) },
679 { "sr0", offsetof(CPUState, sr[0]) },
680 { "sr1", offsetof(CPUState, sr[1]) },
681 { "sr2", offsetof(CPUState, sr[2]) },
682 { "sr3", offsetof(CPUState, sr[3]) },
683 { "sr4", offsetof(CPUState, sr[4]) },
684 { "sr5", offsetof(CPUState, sr[5]) },
685 { "sr6", offsetof(CPUState, sr[6]) },
686 { "sr7", offsetof(CPUState, sr[7]) },
687 { "sr8", offsetof(CPUState, sr[8]) },
688 { "sr9", offsetof(CPUState, sr[9]) },
689 { "sr10", offsetof(CPUState, sr[10]) },
690 { "sr11", offsetof(CPUState, sr[11]) },
691 { "sr12", offsetof(CPUState, sr[12]) },
692 { "sr13", offsetof(CPUState, sr[13]) },
693 { "sr14", offsetof(CPUState, sr[14]) },
694 { "sr15", offsetof(CPUState, sr[15]) },
695 /* Too lazy to put BATs and SPRs ... */
700 static void expr_error(const char *fmt)
704 longjmp(expr_env, 1);
707 static int get_monitor_def(int *pval, const char *name)
710 for(md = monitor_defs; md->name != NULL; md++) {
711 if (compare_cmd(name, md->name)) {
713 *pval = md->get_value(md);
715 *pval = *(uint32_t *)((uint8_t *)cpu_single_env + md->offset);
723 static void next(void)
727 while (isspace(*pch))
732 static int expr_sum(void);
734 static int expr_unary(void)
756 expr_error("')' expected");
766 while ((*pch >= 'a' && *pch <= 'z') ||
767 (*pch >= 'A' && *pch <= 'Z') ||
768 (*pch >= '0' && *pch <= '9') ||
769 *pch == '_' || *pch == '.') {
770 if ((q - buf) < sizeof(buf) - 1)
774 while (isspace(*pch))
777 if (get_monitor_def(&n, buf))
778 expr_error("unknown register");
782 expr_error("unexpected end of expression");
786 n = strtoul(pch, &p, 0);
788 expr_error("invalid char in expression");
791 while (isspace(*pch))
799 static int expr_prod(void)
806 if (op != '*' && op != '/' && op != '%')
818 expr_error("division by zero");
829 static int expr_logic(void)
836 if (op != '&' && op != '|' && op != '^')
856 static int expr_sum(void)
863 if (op != '+' && op != '-')
875 static int get_expr(int *pval, const char **pp)
878 if (setjmp(expr_env)) {
882 while (isspace(*pch))
889 static int get_str(char *buf, int buf_size, const char **pp)
906 while (*p != '\0' && *p != '\"') {
922 qemu_printf("unsupported escape code: '\\%c'\n", c);
925 if ((q - buf) < buf_size - 1) {
929 if ((q - buf) < buf_size - 1) {
936 qemu_printf("unterminated string\n");
941 while (*p != '\0' && !isspace(*p)) {
942 if ((q - buf) < buf_size - 1) {
953 static int default_fmt_format = 'x';
954 static int default_fmt_size = 4;
958 static void term_handle_command(const char *cmdline)
960 const char *p, *pstart, *typestr;
962 int c, nb_args, len, i, has_arg;
966 void *str_allocated[MAX_ARGS];
967 void *args[MAX_ARGS];
970 term_printf("command='%s'\n", cmdline);
973 /* extract the command name */
981 while (*p != '\0' && *p != '/' && !isspace(*p))
984 if (len > sizeof(cmdname) - 1)
985 len = sizeof(cmdname) - 1;
986 memcpy(cmdname, pstart, len);
989 /* find the command */
990 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
991 if (compare_cmd(cmdname, cmd->name))
994 term_printf("unknown command: '%s'\n", cmdname);
998 for(i = 0; i < MAX_ARGS; i++)
999 str_allocated[i] = NULL;
1001 /* parse the parameters */
1002 typestr = cmd->args_type;
1018 if (*typestr == '?') {
1021 /* no optional string: NULL argument */
1026 ret = get_str(buf, sizeof(buf), &p);
1029 term_printf("%s: filename expected\n", cmdname);
1031 term_printf("%s: string expected\n", cmdname);
1034 str = qemu_malloc(strlen(buf) + 1);
1036 str_allocated[nb_args] = str;
1038 if (nb_args >= MAX_ARGS) {
1040 term_printf("%s: too many arguments\n", cmdname);
1043 args[nb_args++] = str;
1048 int count, format, size;
1058 while (isdigit(*p)) {
1059 count = count * 10 + (*p - '0');
1097 if (*p != '\0' && !isspace(*p)) {
1098 term_printf("invalid char in format: '%c'\n", *p);
1102 format = default_fmt_format;
1103 if (format != 'i') {
1104 /* for 'i', not specifying a size gives -1 as size */
1106 size = default_fmt_size;
1108 default_fmt_size = size;
1109 default_fmt_format = format;
1112 format = default_fmt_format;
1113 if (format != 'i') {
1114 size = default_fmt_size;
1119 if (nb_args + 3 > MAX_ARGS)
1121 args[nb_args++] = (void*)count;
1122 args[nb_args++] = (void*)format;
1123 args[nb_args++] = (void*)size;
1131 if (*typestr == '?') {
1137 if (nb_args >= MAX_ARGS)
1139 args[nb_args++] = (void *)has_arg;
1141 if (nb_args >= MAX_ARGS)
1147 if (get_expr(&val, &p))
1150 if (nb_args >= MAX_ARGS)
1152 args[nb_args++] = (void *)val;
1169 term_printf("%s: unsupported option -%c\n",
1176 if (nb_args >= MAX_ARGS)
1178 args[nb_args++] = (void *)has_option;
1183 term_printf("%s: unknown type '%c'\n", cmdname, c);
1187 /* check that all arguments were parsed */
1191 term_printf("%s: extraneous characters at the end of line\n",
1201 cmd->handler(args[0]);
1204 cmd->handler(args[0], args[1]);
1207 cmd->handler(args[0], args[1], args[2]);
1210 cmd->handler(args[0], args[1], args[2], args[3]);
1213 cmd->handler(args[0], args[1], args[2], args[3], args[4]);
1216 term_printf("unsupported number of arguments: %d\n", nb_args);
1220 for(i = 0; i < MAX_ARGS; i++)
1221 qemu_free(str_allocated[i]);
1225 static void term_show_prompt(void)
1227 term_printf("(qemu) ");
1229 term_cmd_buf_index = 0;
1230 term_cmd_buf_size = 0;
1231 term_esc_state = IS_NORM;
1234 static void term_print_cmdline (const char *cmdline)
1237 term_printf(cmdline);
1241 static void term_insert_char(int ch)
1243 if (term_cmd_buf_index < TERM_CMD_BUF_SIZE) {
1244 memmove(term_cmd_buf + term_cmd_buf_index + 1,
1245 term_cmd_buf + term_cmd_buf_index,
1246 term_cmd_buf_size - term_cmd_buf_index);
1247 term_cmd_buf[term_cmd_buf_index] = ch;
1248 term_cmd_buf_size++;
1249 term_printf("\033[@%c", ch);
1250 term_cmd_buf_index++;
1255 static void term_backward_char(void)
1257 if (term_cmd_buf_index > 0) {
1258 term_cmd_buf_index--;
1259 term_printf("\033[D");
1264 static void term_forward_char(void)
1266 if (term_cmd_buf_index < term_cmd_buf_size) {
1267 term_cmd_buf_index++;
1268 term_printf("\033[C");
1273 static void term_delete_char(void)
1275 if (term_cmd_buf_index < term_cmd_buf_size) {
1276 memmove(term_cmd_buf + term_cmd_buf_index,
1277 term_cmd_buf + term_cmd_buf_index + 1,
1278 term_cmd_buf_size - term_cmd_buf_index - 1);
1279 term_printf("\033[P");
1280 term_cmd_buf_size--;
1285 static void term_backspace(void)
1287 if (term_cmd_buf_index > 0) {
1288 term_backward_char();
1293 static void term_bol(void)
1295 while (term_cmd_buf_index > 0)
1296 term_backward_char();
1299 static void term_eol(void)
1301 while (term_cmd_buf_index < term_cmd_buf_size)
1302 term_forward_char();
1305 static void term_up_char(void)
1309 if (term_hist_entry == 0)
1311 if (term_hist_entry == -1) {
1312 /* Find latest entry */
1313 for (idx = 0; idx < TERM_MAX_CMDS; idx++) {
1314 if (term_history[idx] == NULL)
1317 term_hist_entry = idx;
1320 if (term_hist_entry >= 0) {
1321 strcpy(term_cmd_buf, term_history[term_hist_entry]);
1323 term_print_cmdline(term_cmd_buf);
1324 term_cmd_buf_index = term_cmd_buf_size = strlen(term_cmd_buf);
1328 static void term_down_char(void)
1330 if (term_hist_entry == TERM_MAX_CMDS - 1 || term_hist_entry == -1)
1332 if (term_history[++term_hist_entry] != NULL) {
1333 strcpy(term_cmd_buf, term_history[term_hist_entry]);
1335 term_hist_entry = -1;
1338 term_print_cmdline(term_cmd_buf);
1339 term_cmd_buf_index = term_cmd_buf_size = strlen(term_cmd_buf);
1342 static void term_hist_add(const char *cmdline)
1344 char *hist_entry, *new_entry;
1347 if (cmdline[0] == '\0')
1350 if (term_hist_entry != -1) {
1351 /* We were editing an existing history entry: replace it */
1352 hist_entry = term_history[term_hist_entry];
1353 idx = term_hist_entry;
1354 if (strcmp(hist_entry, cmdline) == 0) {
1358 /* Search cmdline in history buffers */
1359 for (idx = 0; idx < TERM_MAX_CMDS; idx++) {
1360 hist_entry = term_history[idx];
1361 if (hist_entry == NULL)
1363 if (strcmp(hist_entry, cmdline) == 0) {
1365 new_entry = hist_entry;
1366 /* Put this entry at the end of history */
1367 memmove(&term_history[idx], &term_history[idx + 1],
1368 &term_history[TERM_MAX_CMDS] - &term_history[idx + 1]);
1369 term_history[TERM_MAX_CMDS - 1] = NULL;
1370 for (; idx < TERM_MAX_CMDS; idx++) {
1371 if (term_history[idx] == NULL)
1377 if (idx == TERM_MAX_CMDS) {
1378 /* Need to get one free slot */
1379 free(term_history[0]);
1380 memcpy(term_history, &term_history[1],
1381 &term_history[TERM_MAX_CMDS] - &term_history[1]);
1382 term_history[TERM_MAX_CMDS - 1] = NULL;
1383 idx = TERM_MAX_CMDS - 1;
1385 if (new_entry == NULL)
1386 new_entry = strdup(cmdline);
1387 term_history[idx] = new_entry;
1388 term_hist_entry = -1;
1391 /* return true if command handled */
1392 static void term_handle_byte(int ch)
1394 switch(term_esc_state) {
1405 term_cmd_buf[term_cmd_buf_size] = '\0';
1406 term_hist_add(term_cmd_buf);
1408 term_handle_command(term_cmd_buf);
1412 term_esc_state = IS_ESC;
1419 term_esc_state = IS_CSI;
1423 term_insert_char(ch);
1430 term_esc_state = IS_CSI;
1433 term_esc_state = IS_NORM;
1447 term_backward_char();
1450 term_forward_char();
1453 term_esc_param = term_esc_param * 10 + (ch - '0');
1456 switch(term_esc_param) {
1471 term_esc_state = IS_NORM;
1477 /*************************************************************/
1478 /* serial console support */
1480 #define TERM_ESCAPE 0x01 /* ctrl-a is used for escape */
1482 static int term_got_escape, term_command;
1484 void term_print_help(void)
1487 "C-a h print this help\n"
1488 "C-a x exit emulatior\n"
1489 "C-a s save disk data back to file (if -snapshot)\n"
1490 "C-a b send break (magic sysrq)\n"
1491 "C-a c switch between console and monitor\n"
1492 "C-a C-a send C-a\n"
1496 /* called when a char is received */
1497 static void term_received_byte(int ch)
1499 if (!serial_console) {
1500 /* if no serial console, handle every command */
1501 term_handle_byte(ch);
1503 if (term_got_escape) {
1504 term_got_escape = 0;
1515 for (i = 0; i < MAX_DISKS; i++) {
1517 bdrv_commit(bs_table[i]);
1523 serial_receive_break(serial_console);
1526 if (!term_command) {
1536 } else if (ch == TERM_ESCAPE) {
1537 term_got_escape = 1;
1541 term_handle_byte(ch);
1544 serial_receive_byte(serial_console, ch);
1550 static int term_can_read(void *opaque)
1552 if (serial_console) {
1553 return serial_can_receive(serial_console);
1559 static void term_read(void *opaque, const uint8_t *buf, int size)
1562 for(i = 0; i < size; i++)
1563 term_received_byte(buf[i]);
1566 void monitor_init(void)
1568 if (!serial_console) {
1569 term_printf("QEMU %s monitor - type 'help' for more information\n",
1573 term_hist_entry = -1;
1574 qemu_add_fd_read_handler(0, term_can_read, term_read, NULL);