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;
353 /* we use the current CS size */
354 if (!(cpu_single_env->segs[R_CS].flags & DESC_B_MASK))
357 monitor_disas(addr, count, is_physical, flags);
366 nb_per_line = line_size / wsize;
371 max_digits = (wsize * 8 + 2) / 3;
375 max_digits = (wsize * 8) / 4;
379 max_digits = (wsize * 8 * 10 + 32) / 33;
387 term_printf("0x%08x:", addr);
392 cpu_physical_memory_rw(addr, buf, l, 0);
394 cpu_memory_rw_debug(cpu_single_env, addr, buf, l, 0);
401 v = ldub_raw(buf + i);
404 v = lduw_raw(buf + i);
407 v = ldl_raw(buf + i);
410 v = ldq_raw(buf + i);
416 term_printf("%#*llo", max_digits, v);
419 term_printf("0x%0*llx", max_digits, v);
422 term_printf("%*llu", max_digits, v);
425 term_printf("%*lld", max_digits, v);
439 static void do_memory_dump(int count, int format, int size, int addr)
441 memory_dump(count, format, size, addr, 0);
444 static void do_physical_memory_dump(int count, int format, int size, int addr)
446 memory_dump(count, format, size, addr, 1);
449 static void do_print(int count, int format, int size, int val)
453 term_printf("%#o", val);
456 term_printf("%#x", val);
459 term_printf("%u", val);
463 term_printf("%d", val);
472 static term_cmd_t term_cmds[] = {
473 { "help|?", "s?", do_help,
474 "[cmd]", "show the help" },
475 { "commit", "", do_commit,
476 "", "commit changes to the disk images (if -snapshot is used)" },
477 { "info", "s?", do_info,
478 "subcommand", "show various information about the system state" },
479 { "q|quit", "", do_quit,
480 "", "quit the emulator" },
481 { "eject", "-fs", do_eject,
482 "[-f] device", "eject a removable media (use -f to force it)" },
483 { "change", "sF", do_change,
484 "device filename", "change a removable media" },
485 { "screendump", "F", do_screen_dump,
486 "filename", "save screen into PPM image 'filename'" },
487 { "log", "s", do_log,
488 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
489 { "savevm", "F", do_savevm,
490 "filename", "save the whole virtual machine state to 'filename'" },
491 { "loadvm", "F", do_loadvm,
492 "filename", "restore the whole virtual machine state from 'filename'" },
493 { "stop", "", do_stop,
494 "", "stop emulation", },
495 { "c|cont", "", do_cont,
496 "", "resume emulation", },
497 #ifdef CONFIG_GDBSTUB
498 { "gdbserver", "i?", do_gdbserver,
499 "[port]", "start gdbserver session (default port=1234)", },
501 { "x", "/i", do_memory_dump,
502 "/fmt addr", "virtual memory dump starting at 'addr'", },
503 { "xp", "/i", do_physical_memory_dump,
504 "/fmt addr", "physical memory dump starting at 'addr'", },
505 { "p|print", "/i", do_print,
506 "/fmt expr", "print expression value (use $reg for CPU register access)", },
510 static term_cmd_t info_cmds[] = {
511 { "network", "", do_info_network,
512 "", "show the network state" },
513 { "block", "", do_info_block,
514 "", "show the block devices" },
515 { "registers", "", do_info_registers,
516 "", "show the cpu registers" },
517 { "history", "", do_info_history,
518 "", "show the command line history", },
522 /*******************************************************************/
524 static const char *pch;
525 static jmp_buf expr_env;
527 typedef struct MonitorDef {
530 int (*get_value)(struct MonitorDef *md);
533 #if defined(TARGET_PPC)
534 static int monitor_get_ccr (struct MonitorDef *md)
540 for (i = 0; i < 8; i++)
541 u |= cpu_single_env->crf[i] << (32 - (4 * i));
546 static int monitor_get_msr (struct MonitorDef *md)
548 return (cpu_single_env->msr[MSR_POW] << MSR_POW) |
549 (cpu_single_env->msr[MSR_ILE] << MSR_ILE) |
550 (cpu_single_env->msr[MSR_EE] << MSR_EE) |
551 (cpu_single_env->msr[MSR_PR] << MSR_PR) |
552 (cpu_single_env->msr[MSR_FP] << MSR_FP) |
553 (cpu_single_env->msr[MSR_ME] << MSR_ME) |
554 (cpu_single_env->msr[MSR_FE0] << MSR_FE0) |
555 (cpu_single_env->msr[MSR_SE] << MSR_SE) |
556 (cpu_single_env->msr[MSR_BE] << MSR_BE) |
557 (cpu_single_env->msr[MSR_FE1] << MSR_FE1) |
558 (cpu_single_env->msr[MSR_IP] << MSR_IP) |
559 (cpu_single_env->msr[MSR_IR] << MSR_IR) |
560 (cpu_single_env->msr[MSR_DR] << MSR_DR) |
561 (cpu_single_env->msr[MSR_RI] << MSR_RI) |
562 (cpu_single_env->msr[MSR_LE] << MSR_LE);
565 static int monitor_get_xer (struct MonitorDef *md)
567 return (cpu_single_env->xer[XER_SO] << XER_SO) |
568 (cpu_single_env->xer[XER_OV] << XER_OV) |
569 (cpu_single_env->xer[XER_CA] << XER_CA) |
570 (cpu_single_env->xer[XER_BC] << XER_BC);
574 static MonitorDef monitor_defs[] = {
576 { "eax", offsetof(CPUState, regs[0]) },
577 { "ecx", offsetof(CPUState, regs[1]) },
578 { "edx", offsetof(CPUState, regs[2]) },
579 { "ebx", offsetof(CPUState, regs[3]) },
580 { "esp|sp", offsetof(CPUState, regs[4]) },
581 { "ebp|fp", offsetof(CPUState, regs[5]) },
582 { "esi", offsetof(CPUState, regs[6]) },
583 { "esi", offsetof(CPUState, regs[7]) },
584 { "eflags", offsetof(CPUState, eflags) },
585 { "eip|pc", offsetof(CPUState, eip) },
586 #elif defined(TARGET_PPC)
587 { "r0", offsetof(CPUState, gpr[0]) },
588 { "r1", offsetof(CPUState, gpr[1]) },
589 { "r2", offsetof(CPUState, gpr[2]) },
590 { "r3", offsetof(CPUState, gpr[3]) },
591 { "r4", offsetof(CPUState, gpr[4]) },
592 { "r5", offsetof(CPUState, gpr[5]) },
593 { "r6", offsetof(CPUState, gpr[6]) },
594 { "r7", offsetof(CPUState, gpr[7]) },
595 { "r8", offsetof(CPUState, gpr[8]) },
596 { "r9", offsetof(CPUState, gpr[9]) },
597 { "r10", offsetof(CPUState, gpr[10]) },
598 { "r11", offsetof(CPUState, gpr[11]) },
599 { "r12", offsetof(CPUState, gpr[12]) },
600 { "r13", offsetof(CPUState, gpr[13]) },
601 { "r14", offsetof(CPUState, gpr[14]) },
602 { "r15", offsetof(CPUState, gpr[15]) },
603 { "r16", offsetof(CPUState, gpr[16]) },
604 { "r17", offsetof(CPUState, gpr[17]) },
605 { "r18", offsetof(CPUState, gpr[18]) },
606 { "r19", offsetof(CPUState, gpr[19]) },
607 { "r20", offsetof(CPUState, gpr[20]) },
608 { "r21", offsetof(CPUState, gpr[21]) },
609 { "r22", offsetof(CPUState, gpr[22]) },
610 { "r23", offsetof(CPUState, gpr[23]) },
611 { "r24", offsetof(CPUState, gpr[24]) },
612 { "r25", offsetof(CPUState, gpr[25]) },
613 { "r26", offsetof(CPUState, gpr[26]) },
614 { "r27", offsetof(CPUState, gpr[27]) },
615 { "r28", offsetof(CPUState, gpr[28]) },
616 { "r29", offsetof(CPUState, gpr[29]) },
617 { "r30", offsetof(CPUState, gpr[30]) },
618 { "r31", offsetof(CPUState, gpr[31]) },
619 { "lr", offsetof(CPUState, lr) },
620 { "ctr", offsetof(CPUState, ctr) },
621 { "decr", offsetof(CPUState, decr) },
622 { "ccr", 0, &monitor_get_ccr, },
623 { "msr", 0, &monitor_get_msr, },
624 { "xer", 0, &monitor_get_xer, },
625 { "tbu", offsetof(CPUState, tb[0]) },
626 { "tbl", offsetof(CPUState, tb[1]) },
627 { "sdr1", offsetof(CPUState, sdr1) },
628 { "sr0", offsetof(CPUState, sr[0]) },
629 { "sr1", offsetof(CPUState, sr[1]) },
630 { "sr2", offsetof(CPUState, sr[2]) },
631 { "sr3", offsetof(CPUState, sr[3]) },
632 { "sr4", offsetof(CPUState, sr[4]) },
633 { "sr5", offsetof(CPUState, sr[5]) },
634 { "sr6", offsetof(CPUState, sr[6]) },
635 { "sr7", offsetof(CPUState, sr[7]) },
636 { "sr8", offsetof(CPUState, sr[8]) },
637 { "sr9", offsetof(CPUState, sr[9]) },
638 { "sr10", offsetof(CPUState, sr[10]) },
639 { "sr11", offsetof(CPUState, sr[11]) },
640 { "sr12", offsetof(CPUState, sr[12]) },
641 { "sr13", offsetof(CPUState, sr[13]) },
642 { "sr14", offsetof(CPUState, sr[14]) },
643 { "sr15", offsetof(CPUState, sr[15]) },
644 /* Too lazy to put BATs and SPRs ... */
649 static void expr_error(const char *fmt)
653 longjmp(expr_env, 1);
656 static int get_monitor_def(int *pval, const char *name)
659 for(md = monitor_defs; md->name != NULL; md++) {
660 if (compare_cmd(name, md->name)) {
662 *pval = md->get_value(md);
664 *pval = *(uint32_t *)((uint8_t *)cpu_single_env + md->offset);
672 static void next(void)
676 while (isspace(*pch))
681 static int expr_sum(void);
683 static int expr_unary(void)
705 expr_error("')' expected");
715 while ((*pch >= 'a' && *pch <= 'z') ||
716 (*pch >= 'A' && *pch <= 'Z') ||
717 (*pch >= '0' && *pch <= '9') ||
719 if ((q - buf) < sizeof(buf) - 1)
723 while (isspace(*pch))
726 if (get_monitor_def(&n, buf))
727 expr_error("unknown register");
731 expr_error("unexpected end of expression");
735 n = strtoul(pch, &p, 0);
737 expr_error("invalid char in expression");
740 while (isspace(*pch))
748 static int expr_prod(void)
755 if (op != '*' && op != '/' && op != '%')
767 expr_error("divison by zero");
778 static int expr_logic(void)
785 if (op != '&' && op != '|' && op != '^')
805 static int expr_sum(void)
812 if (op != '+' && op != '-')
824 static int get_expr(int *pval, const char **pp)
827 if (setjmp(expr_env)) {
831 while (isspace(*pch))
838 static int get_str(char *buf, int buf_size, const char **pp)
855 while (*p != '\0' && *p != '\"') {
871 qemu_printf("unsupported escape code: '\\%c'\n", c);
874 if ((q - buf) < buf_size - 1) {
878 if ((q - buf) < buf_size - 1) {
885 qemu_printf("untermintated string\n");
890 while (*p != '\0' && !isspace(*p)) {
891 if ((q - buf) < buf_size - 1) {
902 static int default_fmt_format = 'x';
903 static int default_fmt_size = 4;
907 static void term_handle_command(const char *cmdline)
909 const char *p, *pstart, *typestr;
911 int c, nb_args, len, i, has_arg;
915 void *str_allocated[MAX_ARGS];
916 void *args[MAX_ARGS];
919 term_printf("command='%s'\n", cmdline);
922 /* extract the command name */
930 while (*p != '\0' && *p != '/' && !isspace(*p))
933 if (len > sizeof(cmdname) - 1)
934 len = sizeof(cmdname) - 1;
935 memcpy(cmdname, pstart, len);
938 /* find the command */
939 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
940 if (compare_cmd(cmdname, cmd->name))
943 term_printf("unknown command: '%s'\n", cmdname);
947 for(i = 0; i < MAX_ARGS; i++)
948 str_allocated[i] = NULL;
950 /* parse the parameters */
951 typestr = cmd->args_type;
967 if (*typestr == '?') {
970 /* no optional string: NULL argument */
975 ret = get_str(buf, sizeof(buf), &p);
978 term_printf("%s: filename expected\n", cmdname);
980 term_printf("%s: string expected\n", cmdname);
983 str = qemu_malloc(strlen(buf) + 1);
985 str_allocated[nb_args] = str;
987 if (nb_args >= MAX_ARGS) {
989 term_printf("%s: too many arguments\n", cmdname);
992 args[nb_args++] = str;
997 int count, format, size;
1007 while (isdigit(*p)) {
1008 count = count * 10 + (*p - '0');
1046 if (*p != '\0' && !isspace(*p)) {
1047 term_printf("invalid char in format: '%c'\n", *p);
1051 size = default_fmt_size;
1053 format = default_fmt_format;
1054 default_fmt_size = size;
1055 default_fmt_format = format;
1058 format = default_fmt_format;
1059 size = default_fmt_size;
1061 if (nb_args + 3 > MAX_ARGS)
1063 args[nb_args++] = (void*)count;
1064 args[nb_args++] = (void*)format;
1065 args[nb_args++] = (void*)size;
1073 if (*typestr == '?') {
1079 if (nb_args >= MAX_ARGS)
1081 args[nb_args++] = (void *)has_arg;
1083 if (nb_args >= MAX_ARGS)
1089 if (get_expr(&val, &p))
1092 if (nb_args >= MAX_ARGS)
1094 args[nb_args++] = (void *)val;
1111 term_printf("%s: unsupported option -%c\n",
1118 if (nb_args >= MAX_ARGS)
1120 args[nb_args++] = (void *)has_option;
1125 term_printf("%s: unknown type '%c'\n", cmdname, c);
1129 /* check that all arguments were parsed */
1133 term_printf("%s: extraneous characters at the end of line\n",
1143 cmd->handler(args[0]);
1146 cmd->handler(args[0], args[1]);
1149 cmd->handler(args[0], args[1], args[2]);
1152 cmd->handler(args[0], args[1], args[2], args[3]);
1155 cmd->handler(args[0], args[1], args[2], args[3], args[4]);
1158 term_printf("unsupported number of arguments: %d\n", nb_args);
1162 for(i = 0; i < MAX_ARGS; i++)
1163 qemu_free(str_allocated[i]);
1167 static void term_show_prompt(void)
1169 term_printf("(qemu) ");
1171 term_cmd_buf_index = 0;
1172 term_cmd_buf_size = 0;
1173 term_esc_state = IS_NORM;
1176 static void term_print_cmdline (const char *cmdline)
1179 term_printf(cmdline);
1183 static void term_insert_char(int ch)
1185 if (term_cmd_buf_index < TERM_CMD_BUF_SIZE) {
1186 memmove(term_cmd_buf + term_cmd_buf_index + 1,
1187 term_cmd_buf + term_cmd_buf_index,
1188 term_cmd_buf_size - term_cmd_buf_index);
1189 term_cmd_buf[term_cmd_buf_index] = ch;
1190 term_cmd_buf_size++;
1191 term_printf("\033[@%c", ch);
1192 term_cmd_buf_index++;
1197 static void term_backward_char(void)
1199 if (term_cmd_buf_index > 0) {
1200 term_cmd_buf_index--;
1201 term_printf("\033[D");
1206 static void term_forward_char(void)
1208 if (term_cmd_buf_index < term_cmd_buf_size) {
1209 term_cmd_buf_index++;
1210 term_printf("\033[C");
1215 static void term_delete_char(void)
1217 if (term_cmd_buf_index < term_cmd_buf_size) {
1218 memmove(term_cmd_buf + term_cmd_buf_index,
1219 term_cmd_buf + term_cmd_buf_index + 1,
1220 term_cmd_buf_size - term_cmd_buf_index - 1);
1221 term_printf("\033[P");
1222 term_cmd_buf_size--;
1227 static void term_backspace(void)
1229 if (term_cmd_buf_index > 0) {
1230 term_backward_char();
1235 static void term_bol(void)
1237 while (term_cmd_buf_index > 0)
1238 term_backward_char();
1241 static void term_eol(void)
1243 while (term_cmd_buf_index < term_cmd_buf_size)
1244 term_forward_char();
1247 static void term_up_char(void)
1251 if (term_hist_entry == 0)
1253 if (term_hist_entry == -1) {
1254 /* Find latest entry */
1255 for (idx = 0; idx < TERM_MAX_CMDS; idx++) {
1256 if (term_history[idx] == NULL)
1259 term_hist_entry = idx;
1262 if (term_hist_entry >= 0) {
1263 strcpy(term_cmd_buf, term_history[term_hist_entry]);
1265 term_print_cmdline(term_cmd_buf);
1266 term_cmd_buf_index = term_cmd_buf_size = strlen(term_cmd_buf);
1270 static void term_down_char(void)
1272 if (term_hist_entry == TERM_MAX_CMDS - 1 || term_hist_entry == -1)
1274 if (term_history[++term_hist_entry] != NULL) {
1275 strcpy(term_cmd_buf, term_history[term_hist_entry]);
1277 term_hist_entry = -1;
1280 term_print_cmdline(term_cmd_buf);
1281 term_cmd_buf_index = term_cmd_buf_size = strlen(term_cmd_buf);
1284 static void term_hist_add(const char *cmdline)
1286 char *hist_entry, *new_entry;
1289 if (cmdline[0] == '\0')
1292 if (term_hist_entry != -1) {
1293 /* We were editing an existing history entry: replace it */
1294 hist_entry = term_history[term_hist_entry];
1295 idx = term_hist_entry;
1296 if (strcmp(hist_entry, cmdline) == 0) {
1300 /* Search cmdline in history buffers */
1301 for (idx = 0; idx < TERM_MAX_CMDS; idx++) {
1302 hist_entry = term_history[idx];
1303 if (hist_entry == NULL)
1305 if (strcmp(hist_entry, cmdline) == 0) {
1307 new_entry = hist_entry;
1308 /* Put this entry at the end of history */
1309 memmove(&term_history[idx], &term_history[idx + 1],
1310 &term_history[TERM_MAX_CMDS] - &term_history[idx + 1]);
1311 term_history[TERM_MAX_CMDS - 1] = NULL;
1312 for (; idx < TERM_MAX_CMDS; idx++) {
1313 if (term_history[idx] == NULL)
1319 if (idx == TERM_MAX_CMDS) {
1320 /* Need to get one free slot */
1321 free(term_history[0]);
1322 memcpy(term_history, &term_history[1],
1323 &term_history[TERM_MAX_CMDS] - &term_history[1]);
1324 term_history[TERM_MAX_CMDS - 1] = NULL;
1325 idx = TERM_MAX_CMDS - 1;
1327 if (new_entry == NULL)
1328 new_entry = strdup(cmdline);
1329 term_history[idx] = new_entry;
1330 term_hist_entry = -1;
1333 /* return true if command handled */
1334 static void term_handle_byte(int ch)
1336 switch(term_esc_state) {
1347 term_cmd_buf[term_cmd_buf_size] = '\0';
1348 term_hist_add(term_cmd_buf);
1350 term_handle_command(term_cmd_buf);
1354 term_esc_state = IS_ESC;
1361 term_esc_state = IS_CSI;
1365 term_insert_char(ch);
1372 term_esc_state = IS_CSI;
1375 term_esc_state = IS_NORM;
1389 term_backward_char();
1392 term_forward_char();
1395 term_esc_param = term_esc_param * 10 + (ch - '0');
1398 switch(term_esc_param) {
1413 term_esc_state = IS_NORM;
1419 /*************************************************************/
1420 /* serial console support */
1422 #define TERM_ESCAPE 0x01 /* ctrl-a is used for escape */
1424 static int term_got_escape, term_command;
1426 void term_print_help(void)
1429 "C-a h print this help\n"
1430 "C-a x exit emulatior\n"
1431 "C-a s save disk data back to file (if -snapshot)\n"
1432 "C-a b send break (magic sysrq)\n"
1433 "C-a c switch between console and monitor\n"
1434 "C-a C-a send C-a\n"
1438 /* called when a char is received */
1439 static void term_received_byte(int ch)
1441 if (!serial_console) {
1442 /* if no serial console, handle every command */
1443 term_handle_byte(ch);
1445 if (term_got_escape) {
1446 term_got_escape = 0;
1457 for (i = 0; i < MAX_DISKS; i++) {
1459 bdrv_commit(bs_table[i]);
1465 serial_receive_break(serial_console);
1468 if (!term_command) {
1478 } else if (ch == TERM_ESCAPE) {
1479 term_got_escape = 1;
1483 term_handle_byte(ch);
1486 serial_receive_byte(serial_console, ch);
1492 static int term_can_read(void *opaque)
1494 if (serial_console) {
1495 return serial_can_receive(serial_console);
1501 static void term_read(void *opaque, const uint8_t *buf, int size)
1504 for(i = 0; i < size; i++)
1505 term_received_byte(buf[i]);
1508 void monitor_init(void)
1510 if (!serial_console) {
1511 term_printf("QEMU %s monitor - type 'help' for more information\n",
1515 term_hist_entry = -1;
1516 qemu_add_fd_read_handler(0, term_can_read, term_read, NULL);