Use const and static as needed, disable unused code
[qemu/qemu_0_9_1_stable.git] / monitor.c
blobac0c8e872874b681e67602ac4e1337bdcb0ed526
1 /*
2 * QEMU monitor
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
22 * THE SOFTWARE.
24 #include "vl.h"
25 #include "disas.h"
26 #include <dirent.h>
28 //#define DEBUG
29 //#define DEBUG_COMPLETION
31 #ifndef offsetof
32 #define offsetof(type, field) ((size_t) &((type *)0)->field)
33 #endif
36 * Supported types:
38 * 'F' filename
39 * 'B' block device name
40 * 's' string (accept optional quote)
41 * 'i' 32 bit integer
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 {
50 const char *name;
51 const char *args_type;
52 void (*handler)();
53 const char *params;
54 const char *help;
55 } term_cmd_t;
57 #define MAX_MON 4
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;
71 void term_flush(void)
73 int i;
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)
85 int c;
86 for(;;) {
87 c = *str++;
88 if (c == '\0')
89 break;
90 if (c == '\n')
91 term_outbuf[term_outbuf_index++] = '\r';
92 term_outbuf[term_outbuf_index++] = c;
93 if (term_outbuf_index >= (sizeof(term_outbuf) - 1) ||
94 c == '\n')
95 term_flush();
99 void term_vprintf(const char *fmt, va_list ap)
101 char buf[4096];
102 vsnprintf(buf, sizeof(buf), fmt, ap);
103 term_puts(buf);
106 void term_printf(const char *fmt, ...)
108 va_list ap;
109 va_start(ap, fmt);
110 term_vprintf(fmt, ap);
111 va_end(ap);
114 void term_print_filename(const char *filename)
116 int i;
118 for (i = 0; filename[i]; i++) {
119 switch (filename[i]) {
120 case ' ':
121 case '"':
122 case '\\':
123 term_printf("\\%c", filename[i]);
124 break;
125 case '\t':
126 term_printf("\\t");
127 break;
128 case '\r':
129 term_printf("\\r");
130 break;
131 case '\n':
132 term_printf("\\n");
133 break;
134 default:
135 term_printf("%c", filename[i]);
136 break;
141 static int monitor_fprintf(FILE *stream, const char *fmt, ...)
143 va_list ap;
144 va_start(ap, fmt);
145 term_vprintf(fmt, ap);
146 va_end(ap);
147 return 0;
150 static int compare_cmd(const char *name, const char *list)
152 const char *p, *pstart;
153 int len;
154 len = strlen(name);
155 p = list;
156 for(;;) {
157 pstart = p;
158 p = strchr(p, '|');
159 if (!p)
160 p = pstart + strlen(pstart);
161 if ((p - pstart) == len && !memcmp(pstart, name, len))
162 return 1;
163 if (*p == '\0')
164 break;
165 p++;
167 return 0;
170 static void help_cmd1(term_cmd_t *cmds, const char *prefix, const char *name)
172 term_cmd_t *cmd;
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);
184 } else {
185 help_cmd1(term_cmds, "", name);
186 if (name && !strcmp(name, "log")) {
187 CPULogItem *item;
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)
199 help_cmd(name);
202 static void do_commit(const char *device)
204 int i, all_devices;
206 all_devices = !strcmp(device, "all");
207 for (i = 0; i < MAX_DISKS; i++) {
208 if (bs_table[i]) {
209 if (all_devices ||
210 !strcmp(bdrv_get_device_name(bs_table[i]), device))
211 bdrv_commit(bs_table[i]);
214 if (mtd_bdrv)
215 if (all_devices || !strcmp(bdrv_get_device_name(mtd_bdrv), device))
216 bdrv_commit(mtd_bdrv);
219 static void do_info(const char *item)
221 term_cmd_t *cmd;
223 if (!item)
224 goto help;
225 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
226 if (compare_cmd(item, cmd->name))
227 goto found;
229 help:
230 help_cmd("info");
231 return;
232 found:
233 cmd->handler();
236 static void do_info_version(void)
238 term_printf("%s\n", QEMU_VERSION);
241 static void do_info_name(void)
243 if (qemu_name)
244 term_printf("%s\n", qemu_name);
247 static void do_info_block(void)
249 bdrv_info();
252 /* get the current CPU defined by the user */
253 int mon_set_cpu(int cpu_index)
255 CPUState *env;
257 for(env = first_cpu; env != NULL; env = env->next_cpu) {
258 if (env->cpu_index == cpu_index) {
259 mon_cpu = env;
260 return 0;
263 return -1;
266 CPUState *mon_get_cpu(void)
268 if (!mon_cpu) {
269 mon_set_cpu(0);
271 return mon_cpu;
274 static void do_info_registers(void)
276 CPUState *env;
277 env = mon_get_cpu();
278 if (!env)
279 return;
280 #ifdef TARGET_I386
281 cpu_dump_state(env, NULL, monitor_fprintf,
282 X86_DUMP_FPU);
283 #else
284 cpu_dump_state(env, NULL, monitor_fprintf,
286 #endif
289 static void do_info_cpus(void)
291 CPUState *env;
293 /* just to set the default cpu if not already done */
294 mon_get_cpu();
296 for(env = first_cpu; env != NULL; env = env->next_cpu) {
297 term_printf("%c CPU #%d:",
298 (env == mon_cpu) ? '*' : ' ',
299 env->cpu_index);
300 #if defined(TARGET_I386)
301 term_printf(" pc=0x" TARGET_FMT_lx, env->eip + env->segs[R_CS].base);
302 if (env->hflags & HF_HALTED_MASK)
303 term_printf(" (halted)");
304 #elif defined(TARGET_PPC)
305 term_printf(" nip=0x" TARGET_FMT_lx, env->nip);
306 if (env->halted)
307 term_printf(" (halted)");
308 #elif defined(TARGET_SPARC)
309 term_printf(" pc=0x" TARGET_FMT_lx " npc=0x" TARGET_FMT_lx, env->pc, env->npc);
310 if (env->halted)
311 term_printf(" (halted)");
312 #elif defined(TARGET_MIPS)
313 term_printf(" PC=0x" TARGET_FMT_lx, env->PC[env->current_tc]);
314 if (env->halted)
315 term_printf(" (halted)");
316 #endif
317 term_printf("\n");
321 static void do_cpu_set(int index)
323 if (mon_set_cpu(index) < 0)
324 term_printf("Invalid CPU index\n");
327 static void do_info_jit(void)
329 dump_exec_info(NULL, monitor_fprintf);
332 static void do_info_history (void)
334 int i;
335 const char *str;
337 i = 0;
338 for(;;) {
339 str = readline_get_history(i);
340 if (!str)
341 break;
342 term_printf("%d: '%s'\n", i, str);
343 i++;
347 #if defined(TARGET_PPC)
348 /* XXX: not implemented in other targets */
349 static void do_info_cpu_stats (void)
351 CPUState *env;
353 env = mon_get_cpu();
354 cpu_dump_statistics(env, NULL, &monitor_fprintf, 0);
356 #endif
358 static void do_quit(void)
360 exit(0);
363 static int eject_device(BlockDriverState *bs, int force)
365 if (bdrv_is_inserted(bs)) {
366 if (!force) {
367 if (!bdrv_is_removable(bs)) {
368 term_printf("device is not removable\n");
369 return -1;
371 if (bdrv_is_locked(bs)) {
372 term_printf("device is locked\n");
373 return -1;
376 bdrv_close(bs);
378 return 0;
381 static void do_eject(int force, const char *filename)
383 BlockDriverState *bs;
385 bs = bdrv_find(filename);
386 if (!bs) {
387 term_printf("device not found\n");
388 return;
390 eject_device(bs, force);
393 static void do_change_block(const char *device, const char *filename)
395 BlockDriverState *bs;
397 bs = bdrv_find(device);
398 if (!bs) {
399 term_printf("device not found\n");
400 return;
402 if (eject_device(bs, 0) < 0)
403 return;
404 bdrv_open(bs, filename, 0);
405 qemu_key_check(bs, filename);
408 static void do_change_vnc(const char *target)
410 if (strcmp(target, "passwd") == 0 ||
411 strcmp(target, "password") == 0) {
412 char password[9];
413 monitor_readline("Password: ", 1, password, sizeof(password)-1);
414 password[sizeof(password)-1] = '\0';
415 if (vnc_display_password(NULL, password) < 0)
416 term_printf("could not set VNC server password\n");
417 } else {
418 if (vnc_display_open(NULL, target) < 0)
419 term_printf("could not start VNC server on %s\n", target);
423 static void do_change(const char *device, const char *target)
425 if (strcmp(device, "vnc") == 0) {
426 do_change_vnc(target);
427 } else {
428 do_change_block(device, target);
432 static void do_screen_dump(const char *filename)
434 vga_hw_screen_dump(filename);
437 static void do_logfile(const char *filename)
439 cpu_set_log_filename(filename);
442 static void do_log(const char *items)
444 int mask;
446 if (!strcmp(items, "none")) {
447 mask = 0;
448 } else {
449 mask = cpu_str_to_log_mask(items);
450 if (!mask) {
451 help_cmd("log");
452 return;
455 cpu_set_log(mask);
458 static void do_stop(void)
460 vm_stop(EXCP_INTERRUPT);
463 static void do_cont(void)
465 vm_start();
468 #ifdef CONFIG_GDBSTUB
469 static void do_gdbserver(const char *port)
471 if (!port)
472 port = DEFAULT_GDBSTUB_PORT;
473 if (gdbserver_start(port) < 0) {
474 qemu_printf("Could not open gdbserver socket on port '%s'\n", port);
475 } else {
476 qemu_printf("Waiting gdb connection on port '%s'\n", port);
479 #endif
481 static void term_printc(int c)
483 term_printf("'");
484 switch(c) {
485 case '\'':
486 term_printf("\\'");
487 break;
488 case '\\':
489 term_printf("\\\\");
490 break;
491 case '\n':
492 term_printf("\\n");
493 break;
494 case '\r':
495 term_printf("\\r");
496 break;
497 default:
498 if (c >= 32 && c <= 126) {
499 term_printf("%c", c);
500 } else {
501 term_printf("\\x%02x", c);
503 break;
505 term_printf("'");
508 static void memory_dump(int count, int format, int wsize,
509 target_phys_addr_t addr, int is_physical)
511 CPUState *env;
512 int nb_per_line, l, line_size, i, max_digits, len;
513 uint8_t buf[16];
514 uint64_t v;
516 if (format == 'i') {
517 int flags;
518 flags = 0;
519 env = mon_get_cpu();
520 if (!env && !is_physical)
521 return;
522 #ifdef TARGET_I386
523 if (wsize == 2) {
524 flags = 1;
525 } else if (wsize == 4) {
526 flags = 0;
527 } else {
528 /* as default we use the current CS size */
529 flags = 0;
530 if (env) {
531 #ifdef TARGET_X86_64
532 if ((env->efer & MSR_EFER_LMA) &&
533 (env->segs[R_CS].flags & DESC_L_MASK))
534 flags = 2;
535 else
536 #endif
537 if (!(env->segs[R_CS].flags & DESC_B_MASK))
538 flags = 1;
541 #endif
542 monitor_disas(env, addr, count, is_physical, flags);
543 return;
546 len = wsize * count;
547 if (wsize == 1)
548 line_size = 8;
549 else
550 line_size = 16;
551 nb_per_line = line_size / wsize;
552 max_digits = 0;
554 switch(format) {
555 case 'o':
556 max_digits = (wsize * 8 + 2) / 3;
557 break;
558 default:
559 case 'x':
560 max_digits = (wsize * 8) / 4;
561 break;
562 case 'u':
563 case 'd':
564 max_digits = (wsize * 8 * 10 + 32) / 33;
565 break;
566 case 'c':
567 wsize = 1;
568 break;
571 while (len > 0) {
572 if (is_physical)
573 term_printf(TARGET_FMT_plx ":", addr);
574 else
575 term_printf(TARGET_FMT_lx ":", (target_ulong)addr);
576 l = len;
577 if (l > line_size)
578 l = line_size;
579 if (is_physical) {
580 cpu_physical_memory_rw(addr, buf, l, 0);
581 } else {
582 env = mon_get_cpu();
583 if (!env)
584 break;
585 cpu_memory_rw_debug(env, addr, buf, l, 0);
587 i = 0;
588 while (i < l) {
589 switch(wsize) {
590 default:
591 case 1:
592 v = ldub_raw(buf + i);
593 break;
594 case 2:
595 v = lduw_raw(buf + i);
596 break;
597 case 4:
598 v = (uint32_t)ldl_raw(buf + i);
599 break;
600 case 8:
601 v = ldq_raw(buf + i);
602 break;
604 term_printf(" ");
605 switch(format) {
606 case 'o':
607 term_printf("%#*" PRIo64, max_digits, v);
608 break;
609 case 'x':
610 term_printf("0x%0*" PRIx64, max_digits, v);
611 break;
612 case 'u':
613 term_printf("%*" PRIu64, max_digits, v);
614 break;
615 case 'd':
616 term_printf("%*" PRId64, max_digits, v);
617 break;
618 case 'c':
619 term_printc(v);
620 break;
622 i += wsize;
624 term_printf("\n");
625 addr += l;
626 len -= l;
630 #if TARGET_LONG_BITS == 64
631 #define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
632 #else
633 #define GET_TLONG(h, l) (l)
634 #endif
636 static void do_memory_dump(int count, int format, int size,
637 uint32_t addrh, uint32_t addrl)
639 target_long addr = GET_TLONG(addrh, addrl);
640 memory_dump(count, format, size, addr, 0);
643 #if TARGET_PHYS_ADDR_BITS > 32
644 #define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
645 #else
646 #define GET_TPHYSADDR(h, l) (l)
647 #endif
649 static void do_physical_memory_dump(int count, int format, int size,
650 uint32_t addrh, uint32_t addrl)
653 target_phys_addr_t addr = GET_TPHYSADDR(addrh, addrl);
654 memory_dump(count, format, size, addr, 1);
657 static void do_print(int count, int format, int size, unsigned int valh, unsigned int vall)
659 target_phys_addr_t val = GET_TPHYSADDR(valh, vall);
660 #if TARGET_PHYS_ADDR_BITS == 32
661 switch(format) {
662 case 'o':
663 term_printf("%#o", val);
664 break;
665 case 'x':
666 term_printf("%#x", val);
667 break;
668 case 'u':
669 term_printf("%u", val);
670 break;
671 default:
672 case 'd':
673 term_printf("%d", val);
674 break;
675 case 'c':
676 term_printc(val);
677 break;
679 #else
680 switch(format) {
681 case 'o':
682 term_printf("%#" PRIo64, val);
683 break;
684 case 'x':
685 term_printf("%#" PRIx64, val);
686 break;
687 case 'u':
688 term_printf("%" PRIu64, val);
689 break;
690 default:
691 case 'd':
692 term_printf("%" PRId64, val);
693 break;
694 case 'c':
695 term_printc(val);
696 break;
698 #endif
699 term_printf("\n");
702 static void do_memory_save(unsigned int valh, unsigned int vall,
703 uint32_t size, const char *filename)
705 FILE *f;
706 target_long addr = GET_TLONG(valh, vall);
707 uint32_t l;
708 CPUState *env;
709 uint8_t buf[1024];
711 env = mon_get_cpu();
712 if (!env)
713 return;
715 f = fopen(filename, "wb");
716 if (!f) {
717 term_printf("could not open '%s'\n", filename);
718 return;
720 while (size != 0) {
721 l = sizeof(buf);
722 if (l > size)
723 l = size;
724 cpu_memory_rw_debug(env, addr, buf, l, 0);
725 fwrite(buf, 1, l, f);
726 addr += l;
727 size -= l;
729 fclose(f);
732 static void do_sum(uint32_t start, uint32_t size)
734 uint32_t addr;
735 uint8_t buf[1];
736 uint16_t sum;
738 sum = 0;
739 for(addr = start; addr < (start + size); addr++) {
740 cpu_physical_memory_rw(addr, buf, 1, 0);
741 /* BSD sum algorithm ('sum' Unix command) */
742 sum = (sum >> 1) | (sum << 15);
743 sum += buf[0];
745 term_printf("%05d\n", sum);
748 typedef struct {
749 int keycode;
750 const char *name;
751 } KeyDef;
753 static const KeyDef key_defs[] = {
754 { 0x2a, "shift" },
755 { 0x36, "shift_r" },
757 { 0x38, "alt" },
758 { 0xb8, "alt_r" },
759 { 0x1d, "ctrl" },
760 { 0x9d, "ctrl_r" },
762 { 0xdd, "menu" },
764 { 0x01, "esc" },
766 { 0x02, "1" },
767 { 0x03, "2" },
768 { 0x04, "3" },
769 { 0x05, "4" },
770 { 0x06, "5" },
771 { 0x07, "6" },
772 { 0x08, "7" },
773 { 0x09, "8" },
774 { 0x0a, "9" },
775 { 0x0b, "0" },
776 { 0x0c, "minus" },
777 { 0x0d, "equal" },
778 { 0x0e, "backspace" },
780 { 0x0f, "tab" },
781 { 0x10, "q" },
782 { 0x11, "w" },
783 { 0x12, "e" },
784 { 0x13, "r" },
785 { 0x14, "t" },
786 { 0x15, "y" },
787 { 0x16, "u" },
788 { 0x17, "i" },
789 { 0x18, "o" },
790 { 0x19, "p" },
792 { 0x1c, "ret" },
794 { 0x1e, "a" },
795 { 0x1f, "s" },
796 { 0x20, "d" },
797 { 0x21, "f" },
798 { 0x22, "g" },
799 { 0x23, "h" },
800 { 0x24, "j" },
801 { 0x25, "k" },
802 { 0x26, "l" },
804 { 0x2c, "z" },
805 { 0x2d, "x" },
806 { 0x2e, "c" },
807 { 0x2f, "v" },
808 { 0x30, "b" },
809 { 0x31, "n" },
810 { 0x32, "m" },
812 { 0x39, "spc" },
813 { 0x3a, "caps_lock" },
814 { 0x3b, "f1" },
815 { 0x3c, "f2" },
816 { 0x3d, "f3" },
817 { 0x3e, "f4" },
818 { 0x3f, "f5" },
819 { 0x40, "f6" },
820 { 0x41, "f7" },
821 { 0x42, "f8" },
822 { 0x43, "f9" },
823 { 0x44, "f10" },
824 { 0x45, "num_lock" },
825 { 0x46, "scroll_lock" },
827 { 0xb5, "kp_divide" },
828 { 0x37, "kp_multiply" },
829 { 0x4a, "kp_subtract" },
830 { 0x4e, "kp_add" },
831 { 0x9c, "kp_enter" },
832 { 0x53, "kp_decimal" },
834 { 0x52, "kp_0" },
835 { 0x4f, "kp_1" },
836 { 0x50, "kp_2" },
837 { 0x51, "kp_3" },
838 { 0x4b, "kp_4" },
839 { 0x4c, "kp_5" },
840 { 0x4d, "kp_6" },
841 { 0x47, "kp_7" },
842 { 0x48, "kp_8" },
843 { 0x49, "kp_9" },
845 { 0x56, "<" },
847 { 0x57, "f11" },
848 { 0x58, "f12" },
850 { 0xb7, "print" },
852 { 0xc7, "home" },
853 { 0xc9, "pgup" },
854 { 0xd1, "pgdn" },
855 { 0xcf, "end" },
857 { 0xcb, "left" },
858 { 0xc8, "up" },
859 { 0xd0, "down" },
860 { 0xcd, "right" },
862 { 0xd2, "insert" },
863 { 0xd3, "delete" },
864 { 0, NULL },
867 static int get_keycode(const char *key)
869 const KeyDef *p;
870 char *endp;
871 int ret;
873 for(p = key_defs; p->name != NULL; p++) {
874 if (!strcmp(key, p->name))
875 return p->keycode;
877 if (strstart(key, "0x", NULL)) {
878 ret = strtoul(key, &endp, 0);
879 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
880 return ret;
882 return -1;
885 static void do_send_key(const char *string)
887 char keybuf[16], *q;
888 uint8_t keycodes[16];
889 const char *p;
890 int nb_keycodes, keycode, i;
892 nb_keycodes = 0;
893 p = string;
894 while (*p != '\0') {
895 q = keybuf;
896 while (*p != '\0' && *p != '-') {
897 if ((q - keybuf) < sizeof(keybuf) - 1) {
898 *q++ = *p;
900 p++;
902 *q = '\0';
903 keycode = get_keycode(keybuf);
904 if (keycode < 0) {
905 term_printf("unknown key: '%s'\n", keybuf);
906 return;
908 keycodes[nb_keycodes++] = keycode;
909 if (*p == '\0')
910 break;
911 p++;
913 /* key down events */
914 for(i = 0; i < nb_keycodes; i++) {
915 keycode = keycodes[i];
916 if (keycode & 0x80)
917 kbd_put_keycode(0xe0);
918 kbd_put_keycode(keycode & 0x7f);
920 /* key up events */
921 for(i = nb_keycodes - 1; i >= 0; i--) {
922 keycode = keycodes[i];
923 if (keycode & 0x80)
924 kbd_put_keycode(0xe0);
925 kbd_put_keycode(keycode | 0x80);
929 static int mouse_button_state;
931 static void do_mouse_move(const char *dx_str, const char *dy_str,
932 const char *dz_str)
934 int dx, dy, dz;
935 dx = strtol(dx_str, NULL, 0);
936 dy = strtol(dy_str, NULL, 0);
937 dz = 0;
938 if (dz_str)
939 dz = strtol(dz_str, NULL, 0);
940 kbd_mouse_event(dx, dy, dz, mouse_button_state);
943 static void do_mouse_button(int button_state)
945 mouse_button_state = button_state;
946 kbd_mouse_event(0, 0, 0, mouse_button_state);
949 static void do_ioport_read(int count, int format, int size, int addr, int has_index, int index)
951 uint32_t val;
952 int suffix;
954 if (has_index) {
955 cpu_outb(NULL, addr & 0xffff, index & 0xff);
956 addr++;
958 addr &= 0xffff;
960 switch(size) {
961 default:
962 case 1:
963 val = cpu_inb(NULL, addr);
964 suffix = 'b';
965 break;
966 case 2:
967 val = cpu_inw(NULL, addr);
968 suffix = 'w';
969 break;
970 case 4:
971 val = cpu_inl(NULL, addr);
972 suffix = 'l';
973 break;
975 term_printf("port%c[0x%04x] = %#0*x\n",
976 suffix, addr, size * 2, val);
979 static void do_system_reset(void)
981 qemu_system_reset_request();
984 static void do_system_powerdown(void)
986 qemu_system_powerdown_request();
989 #if defined(TARGET_I386)
990 static void print_pte(uint32_t addr, uint32_t pte, uint32_t mask)
992 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
993 addr,
994 pte & mask,
995 pte & PG_GLOBAL_MASK ? 'G' : '-',
996 pte & PG_PSE_MASK ? 'P' : '-',
997 pte & PG_DIRTY_MASK ? 'D' : '-',
998 pte & PG_ACCESSED_MASK ? 'A' : '-',
999 pte & PG_PCD_MASK ? 'C' : '-',
1000 pte & PG_PWT_MASK ? 'T' : '-',
1001 pte & PG_USER_MASK ? 'U' : '-',
1002 pte & PG_RW_MASK ? 'W' : '-');
1005 static void tlb_info(void)
1007 CPUState *env;
1008 int l1, l2;
1009 uint32_t pgd, pde, pte;
1011 env = mon_get_cpu();
1012 if (!env)
1013 return;
1015 if (!(env->cr[0] & CR0_PG_MASK)) {
1016 term_printf("PG disabled\n");
1017 return;
1019 pgd = env->cr[3] & ~0xfff;
1020 for(l1 = 0; l1 < 1024; l1++) {
1021 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1022 pde = le32_to_cpu(pde);
1023 if (pde & PG_PRESENT_MASK) {
1024 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1025 print_pte((l1 << 22), pde, ~((1 << 20) - 1));
1026 } else {
1027 for(l2 = 0; l2 < 1024; l2++) {
1028 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
1029 (uint8_t *)&pte, 4);
1030 pte = le32_to_cpu(pte);
1031 if (pte & PG_PRESENT_MASK) {
1032 print_pte((l1 << 22) + (l2 << 12),
1033 pte & ~PG_PSE_MASK,
1034 ~0xfff);
1042 static void mem_print(uint32_t *pstart, int *plast_prot,
1043 uint32_t end, int prot)
1045 int prot1;
1046 prot1 = *plast_prot;
1047 if (prot != prot1) {
1048 if (*pstart != -1) {
1049 term_printf("%08x-%08x %08x %c%c%c\n",
1050 *pstart, end, end - *pstart,
1051 prot1 & PG_USER_MASK ? 'u' : '-',
1052 'r',
1053 prot1 & PG_RW_MASK ? 'w' : '-');
1055 if (prot != 0)
1056 *pstart = end;
1057 else
1058 *pstart = -1;
1059 *plast_prot = prot;
1063 static void mem_info(void)
1065 CPUState *env;
1066 int l1, l2, prot, last_prot;
1067 uint32_t pgd, pde, pte, start, end;
1069 env = mon_get_cpu();
1070 if (!env)
1071 return;
1073 if (!(env->cr[0] & CR0_PG_MASK)) {
1074 term_printf("PG disabled\n");
1075 return;
1077 pgd = env->cr[3] & ~0xfff;
1078 last_prot = 0;
1079 start = -1;
1080 for(l1 = 0; l1 < 1024; l1++) {
1081 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1082 pde = le32_to_cpu(pde);
1083 end = l1 << 22;
1084 if (pde & PG_PRESENT_MASK) {
1085 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1086 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1087 mem_print(&start, &last_prot, end, prot);
1088 } else {
1089 for(l2 = 0; l2 < 1024; l2++) {
1090 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
1091 (uint8_t *)&pte, 4);
1092 pte = le32_to_cpu(pte);
1093 end = (l1 << 22) + (l2 << 12);
1094 if (pte & PG_PRESENT_MASK) {
1095 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1096 } else {
1097 prot = 0;
1099 mem_print(&start, &last_prot, end, prot);
1102 } else {
1103 prot = 0;
1104 mem_print(&start, &last_prot, end, prot);
1108 #endif
1110 static void do_info_kqemu(void)
1112 #ifdef USE_KQEMU
1113 CPUState *env;
1114 int val;
1115 val = 0;
1116 env = mon_get_cpu();
1117 if (!env) {
1118 term_printf("No cpu initialized yet");
1119 return;
1121 val = env->kqemu_enabled;
1122 term_printf("kqemu support: ");
1123 switch(val) {
1124 default:
1125 case 0:
1126 term_printf("disabled\n");
1127 break;
1128 case 1:
1129 term_printf("enabled for user code\n");
1130 break;
1131 case 2:
1132 term_printf("enabled for user and kernel code\n");
1133 break;
1135 #else
1136 term_printf("kqemu support: not compiled\n");
1137 #endif
1140 #ifdef CONFIG_PROFILER
1142 int64_t kqemu_time;
1143 int64_t qemu_time;
1144 int64_t kqemu_exec_count;
1145 int64_t dev_time;
1146 int64_t kqemu_ret_int_count;
1147 int64_t kqemu_ret_excp_count;
1148 int64_t kqemu_ret_intr_count;
1150 static void do_info_profile(void)
1152 int64_t total;
1153 total = qemu_time;
1154 if (total == 0)
1155 total = 1;
1156 term_printf("async time %" PRId64 " (%0.3f)\n",
1157 dev_time, dev_time / (double)ticks_per_sec);
1158 term_printf("qemu time %" PRId64 " (%0.3f)\n",
1159 qemu_time, qemu_time / (double)ticks_per_sec);
1160 term_printf("kqemu time %" PRId64 " (%0.3f %0.1f%%) count=%" PRId64 " int=%" PRId64 " excp=%" PRId64 " intr=%" PRId64 "\n",
1161 kqemu_time, kqemu_time / (double)ticks_per_sec,
1162 kqemu_time / (double)total * 100.0,
1163 kqemu_exec_count,
1164 kqemu_ret_int_count,
1165 kqemu_ret_excp_count,
1166 kqemu_ret_intr_count);
1167 qemu_time = 0;
1168 kqemu_time = 0;
1169 kqemu_exec_count = 0;
1170 dev_time = 0;
1171 kqemu_ret_int_count = 0;
1172 kqemu_ret_excp_count = 0;
1173 kqemu_ret_intr_count = 0;
1174 #ifdef USE_KQEMU
1175 kqemu_record_dump();
1176 #endif
1178 #else
1179 static void do_info_profile(void)
1181 term_printf("Internal profiler not compiled\n");
1183 #endif
1185 /* Capture support */
1186 static LIST_HEAD (capture_list_head, CaptureState) capture_head;
1188 static void do_info_capture (void)
1190 int i;
1191 CaptureState *s;
1193 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1194 term_printf ("[%d]: ", i);
1195 s->ops.info (s->opaque);
1199 static void do_stop_capture (int n)
1201 int i;
1202 CaptureState *s;
1204 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1205 if (i == n) {
1206 s->ops.destroy (s->opaque);
1207 LIST_REMOVE (s, entries);
1208 qemu_free (s);
1209 return;
1214 #ifdef HAS_AUDIO
1215 int wav_start_capture (CaptureState *s, const char *path, int freq,
1216 int bits, int nchannels);
1218 static void do_wav_capture (const char *path,
1219 int has_freq, int freq,
1220 int has_bits, int bits,
1221 int has_channels, int nchannels)
1223 CaptureState *s;
1225 s = qemu_mallocz (sizeof (*s));
1226 if (!s) {
1227 term_printf ("Not enough memory to add wave capture\n");
1228 return;
1231 freq = has_freq ? freq : 44100;
1232 bits = has_bits ? bits : 16;
1233 nchannels = has_channels ? nchannels : 2;
1235 if (wav_start_capture (s, path, freq, bits, nchannels)) {
1236 term_printf ("Faied to add wave capture\n");
1237 qemu_free (s);
1239 LIST_INSERT_HEAD (&capture_head, s, entries);
1241 #endif
1243 static term_cmd_t term_cmds[] = {
1244 { "help|?", "s?", do_help,
1245 "[cmd]", "show the help" },
1246 { "commit", "s", do_commit,
1247 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
1248 { "info", "s?", do_info,
1249 "subcommand", "show various information about the system state" },
1250 { "q|quit", "", do_quit,
1251 "", "quit the emulator" },
1252 { "eject", "-fB", do_eject,
1253 "[-f] device", "eject a removable medium (use -f to force it)" },
1254 { "change", "BF", do_change,
1255 "device filename", "change a removable medium" },
1256 { "screendump", "F", do_screen_dump,
1257 "filename", "save screen into PPM image 'filename'" },
1258 { "logfile", "s", do_logfile,
1259 "filename", "output logs to 'filename'" },
1260 { "log", "s", do_log,
1261 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
1262 { "savevm", "s?", do_savevm,
1263 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
1264 { "loadvm", "s", do_loadvm,
1265 "tag|id", "restore a VM snapshot from its tag or id" },
1266 { "delvm", "s", do_delvm,
1267 "tag|id", "delete a VM snapshot from its tag or id" },
1268 { "stop", "", do_stop,
1269 "", "stop emulation", },
1270 { "c|cont", "", do_cont,
1271 "", "resume emulation", },
1272 #ifdef CONFIG_GDBSTUB
1273 { "gdbserver", "s?", do_gdbserver,
1274 "[port]", "start gdbserver session (default port=1234)", },
1275 #endif
1276 { "x", "/l", do_memory_dump,
1277 "/fmt addr", "virtual memory dump starting at 'addr'", },
1278 { "xp", "/l", do_physical_memory_dump,
1279 "/fmt addr", "physical memory dump starting at 'addr'", },
1280 { "p|print", "/l", do_print,
1281 "/fmt expr", "print expression value (use $reg for CPU register access)", },
1282 { "i", "/ii.", do_ioport_read,
1283 "/fmt addr", "I/O port read" },
1285 { "sendkey", "s", do_send_key,
1286 "keys", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1')" },
1287 { "system_reset", "", do_system_reset,
1288 "", "reset the system" },
1289 { "system_powerdown", "", do_system_powerdown,
1290 "", "send system power down event" },
1291 { "sum", "ii", do_sum,
1292 "addr size", "compute the checksum of a memory region" },
1293 { "usb_add", "s", do_usb_add,
1294 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1295 { "usb_del", "s", do_usb_del,
1296 "device", "remove USB device 'bus.addr'" },
1297 { "cpu", "i", do_cpu_set,
1298 "index", "set the default CPU" },
1299 { "mouse_move", "sss?", do_mouse_move,
1300 "dx dy [dz]", "send mouse move events" },
1301 { "mouse_button", "i", do_mouse_button,
1302 "state", "change mouse button state (1=L, 2=M, 4=R)" },
1303 { "mouse_set", "i", do_mouse_set,
1304 "index", "set which mouse device receives events" },
1305 #ifdef HAS_AUDIO
1306 { "wavcapture", "si?i?i?", do_wav_capture,
1307 "path [frequency bits channels]",
1308 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1309 #endif
1310 { "stopcapture", "i", do_stop_capture,
1311 "capture index", "stop capture" },
1312 { "memsave", "lis", do_memory_save,
1313 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
1314 { NULL, NULL, },
1317 static term_cmd_t info_cmds[] = {
1318 { "version", "", do_info_version,
1319 "", "show the version of qemu" },
1320 { "network", "", do_info_network,
1321 "", "show the network state" },
1322 { "block", "", do_info_block,
1323 "", "show the block devices" },
1324 { "registers", "", do_info_registers,
1325 "", "show the cpu registers" },
1326 { "cpus", "", do_info_cpus,
1327 "", "show infos for each CPU" },
1328 { "history", "", do_info_history,
1329 "", "show the command line history", },
1330 { "irq", "", irq_info,
1331 "", "show the interrupts statistics (if available)", },
1332 { "pic", "", pic_info,
1333 "", "show i8259 (PIC) state", },
1334 { "pci", "", pci_info,
1335 "", "show PCI info", },
1336 #if defined(TARGET_I386)
1337 { "tlb", "", tlb_info,
1338 "", "show virtual to physical memory mappings", },
1339 { "mem", "", mem_info,
1340 "", "show the active virtual memory mappings", },
1341 #endif
1342 { "jit", "", do_info_jit,
1343 "", "show dynamic compiler info", },
1344 { "kqemu", "", do_info_kqemu,
1345 "", "show kqemu information", },
1346 { "usb", "", usb_info,
1347 "", "show guest USB devices", },
1348 { "usbhost", "", usb_host_info,
1349 "", "show host USB devices", },
1350 { "profile", "", do_info_profile,
1351 "", "show profiling information", },
1352 { "capture", "", do_info_capture,
1353 "", "show capture information" },
1354 { "snapshots", "", do_info_snapshots,
1355 "", "show the currently saved VM snapshots" },
1356 { "pcmcia", "", pcmcia_info,
1357 "", "show guest PCMCIA status" },
1358 { "mice", "", do_info_mice,
1359 "", "show which guest mouse is receiving events" },
1360 { "vnc", "", do_info_vnc,
1361 "", "show the vnc server status"},
1362 { "name", "", do_info_name,
1363 "", "show the current VM name" },
1364 #if defined(TARGET_PPC)
1365 { "cpustats", "", do_info_cpu_stats,
1366 "", "show CPU statistics", },
1367 #endif
1368 #if defined(CONFIG_SLIRP)
1369 { "slirp", "", do_info_slirp,
1370 "", "show SLIRP statistics", },
1371 #endif
1372 { NULL, NULL, },
1375 /*******************************************************************/
1377 static const char *pch;
1378 static jmp_buf expr_env;
1380 #define MD_TLONG 0
1381 #define MD_I32 1
1383 typedef struct MonitorDef {
1384 const char *name;
1385 int offset;
1386 target_long (*get_value)(struct MonitorDef *md, int val);
1387 int type;
1388 } MonitorDef;
1390 #if defined(TARGET_I386)
1391 static target_long monitor_get_pc (struct MonitorDef *md, int val)
1393 CPUState *env = mon_get_cpu();
1394 if (!env)
1395 return 0;
1396 return env->eip + env->segs[R_CS].base;
1398 #endif
1400 #if defined(TARGET_PPC)
1401 static target_long monitor_get_ccr (struct MonitorDef *md, int val)
1403 CPUState *env = mon_get_cpu();
1404 unsigned int u;
1405 int i;
1407 if (!env)
1408 return 0;
1410 u = 0;
1411 for (i = 0; i < 8; i++)
1412 u |= env->crf[i] << (32 - (4 * i));
1414 return u;
1417 static target_long monitor_get_msr (struct MonitorDef *md, int val)
1419 CPUState *env = mon_get_cpu();
1420 if (!env)
1421 return 0;
1422 return env->msr;
1425 static target_long monitor_get_xer (struct MonitorDef *md, int val)
1427 CPUState *env = mon_get_cpu();
1428 if (!env)
1429 return 0;
1430 return ppc_load_xer(env);
1433 static target_long monitor_get_decr (struct MonitorDef *md, int val)
1435 CPUState *env = mon_get_cpu();
1436 if (!env)
1437 return 0;
1438 return cpu_ppc_load_decr(env);
1441 static target_long monitor_get_tbu (struct MonitorDef *md, int val)
1443 CPUState *env = mon_get_cpu();
1444 if (!env)
1445 return 0;
1446 return cpu_ppc_load_tbu(env);
1449 static target_long monitor_get_tbl (struct MonitorDef *md, int val)
1451 CPUState *env = mon_get_cpu();
1452 if (!env)
1453 return 0;
1454 return cpu_ppc_load_tbl(env);
1456 #endif
1458 #if defined(TARGET_SPARC)
1459 #ifndef TARGET_SPARC64
1460 static target_long monitor_get_psr (struct MonitorDef *md, int val)
1462 CPUState *env = mon_get_cpu();
1463 if (!env)
1464 return 0;
1465 return GET_PSR(env);
1467 #endif
1469 static target_long monitor_get_reg(struct MonitorDef *md, int val)
1471 CPUState *env = mon_get_cpu();
1472 if (!env)
1473 return 0;
1474 return env->regwptr[val];
1476 #endif
1478 static MonitorDef monitor_defs[] = {
1479 #ifdef TARGET_I386
1481 #define SEG(name, seg) \
1482 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
1483 { name ".base", offsetof(CPUState, segs[seg].base) },\
1484 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
1486 { "eax", offsetof(CPUState, regs[0]) },
1487 { "ecx", offsetof(CPUState, regs[1]) },
1488 { "edx", offsetof(CPUState, regs[2]) },
1489 { "ebx", offsetof(CPUState, regs[3]) },
1490 { "esp|sp", offsetof(CPUState, regs[4]) },
1491 { "ebp|fp", offsetof(CPUState, regs[5]) },
1492 { "esi", offsetof(CPUState, regs[6]) },
1493 { "edi", offsetof(CPUState, regs[7]) },
1494 #ifdef TARGET_X86_64
1495 { "r8", offsetof(CPUState, regs[8]) },
1496 { "r9", offsetof(CPUState, regs[9]) },
1497 { "r10", offsetof(CPUState, regs[10]) },
1498 { "r11", offsetof(CPUState, regs[11]) },
1499 { "r12", offsetof(CPUState, regs[12]) },
1500 { "r13", offsetof(CPUState, regs[13]) },
1501 { "r14", offsetof(CPUState, regs[14]) },
1502 { "r15", offsetof(CPUState, regs[15]) },
1503 #endif
1504 { "eflags", offsetof(CPUState, eflags) },
1505 { "eip", offsetof(CPUState, eip) },
1506 SEG("cs", R_CS)
1507 SEG("ds", R_DS)
1508 SEG("es", R_ES)
1509 SEG("ss", R_SS)
1510 SEG("fs", R_FS)
1511 SEG("gs", R_GS)
1512 { "pc", 0, monitor_get_pc, },
1513 #elif defined(TARGET_PPC)
1514 /* General purpose registers */
1515 { "r0", offsetof(CPUState, gpr[0]) },
1516 { "r1", offsetof(CPUState, gpr[1]) },
1517 { "r2", offsetof(CPUState, gpr[2]) },
1518 { "r3", offsetof(CPUState, gpr[3]) },
1519 { "r4", offsetof(CPUState, gpr[4]) },
1520 { "r5", offsetof(CPUState, gpr[5]) },
1521 { "r6", offsetof(CPUState, gpr[6]) },
1522 { "r7", offsetof(CPUState, gpr[7]) },
1523 { "r8", offsetof(CPUState, gpr[8]) },
1524 { "r9", offsetof(CPUState, gpr[9]) },
1525 { "r10", offsetof(CPUState, gpr[10]) },
1526 { "r11", offsetof(CPUState, gpr[11]) },
1527 { "r12", offsetof(CPUState, gpr[12]) },
1528 { "r13", offsetof(CPUState, gpr[13]) },
1529 { "r14", offsetof(CPUState, gpr[14]) },
1530 { "r15", offsetof(CPUState, gpr[15]) },
1531 { "r16", offsetof(CPUState, gpr[16]) },
1532 { "r17", offsetof(CPUState, gpr[17]) },
1533 { "r18", offsetof(CPUState, gpr[18]) },
1534 { "r19", offsetof(CPUState, gpr[19]) },
1535 { "r20", offsetof(CPUState, gpr[20]) },
1536 { "r21", offsetof(CPUState, gpr[21]) },
1537 { "r22", offsetof(CPUState, gpr[22]) },
1538 { "r23", offsetof(CPUState, gpr[23]) },
1539 { "r24", offsetof(CPUState, gpr[24]) },
1540 { "r25", offsetof(CPUState, gpr[25]) },
1541 { "r26", offsetof(CPUState, gpr[26]) },
1542 { "r27", offsetof(CPUState, gpr[27]) },
1543 { "r28", offsetof(CPUState, gpr[28]) },
1544 { "r29", offsetof(CPUState, gpr[29]) },
1545 { "r30", offsetof(CPUState, gpr[30]) },
1546 { "r31", offsetof(CPUState, gpr[31]) },
1547 /* Floating point registers */
1548 { "f0", offsetof(CPUState, fpr[0]) },
1549 { "f1", offsetof(CPUState, fpr[1]) },
1550 { "f2", offsetof(CPUState, fpr[2]) },
1551 { "f3", offsetof(CPUState, fpr[3]) },
1552 { "f4", offsetof(CPUState, fpr[4]) },
1553 { "f5", offsetof(CPUState, fpr[5]) },
1554 { "f6", offsetof(CPUState, fpr[6]) },
1555 { "f7", offsetof(CPUState, fpr[7]) },
1556 { "f8", offsetof(CPUState, fpr[8]) },
1557 { "f9", offsetof(CPUState, fpr[9]) },
1558 { "f10", offsetof(CPUState, fpr[10]) },
1559 { "f11", offsetof(CPUState, fpr[11]) },
1560 { "f12", offsetof(CPUState, fpr[12]) },
1561 { "f13", offsetof(CPUState, fpr[13]) },
1562 { "f14", offsetof(CPUState, fpr[14]) },
1563 { "f15", offsetof(CPUState, fpr[15]) },
1564 { "f16", offsetof(CPUState, fpr[16]) },
1565 { "f17", offsetof(CPUState, fpr[17]) },
1566 { "f18", offsetof(CPUState, fpr[18]) },
1567 { "f19", offsetof(CPUState, fpr[19]) },
1568 { "f20", offsetof(CPUState, fpr[20]) },
1569 { "f21", offsetof(CPUState, fpr[21]) },
1570 { "f22", offsetof(CPUState, fpr[22]) },
1571 { "f23", offsetof(CPUState, fpr[23]) },
1572 { "f24", offsetof(CPUState, fpr[24]) },
1573 { "f25", offsetof(CPUState, fpr[25]) },
1574 { "f26", offsetof(CPUState, fpr[26]) },
1575 { "f27", offsetof(CPUState, fpr[27]) },
1576 { "f28", offsetof(CPUState, fpr[28]) },
1577 { "f29", offsetof(CPUState, fpr[29]) },
1578 { "f30", offsetof(CPUState, fpr[30]) },
1579 { "f31", offsetof(CPUState, fpr[31]) },
1580 { "fpscr", offsetof(CPUState, fpscr) },
1581 /* Next instruction pointer */
1582 { "nip|pc", offsetof(CPUState, nip) },
1583 { "lr", offsetof(CPUState, lr) },
1584 { "ctr", offsetof(CPUState, ctr) },
1585 { "decr", 0, &monitor_get_decr, },
1586 { "ccr", 0, &monitor_get_ccr, },
1587 /* Machine state register */
1588 { "msr", 0, &monitor_get_msr, },
1589 { "xer", 0, &monitor_get_xer, },
1590 { "tbu", 0, &monitor_get_tbu, },
1591 { "tbl", 0, &monitor_get_tbl, },
1592 #if defined(TARGET_PPC64)
1593 /* Address space register */
1594 { "asr", offsetof(CPUState, asr) },
1595 #endif
1596 /* Segment registers */
1597 { "sdr1", offsetof(CPUState, sdr1) },
1598 { "sr0", offsetof(CPUState, sr[0]) },
1599 { "sr1", offsetof(CPUState, sr[1]) },
1600 { "sr2", offsetof(CPUState, sr[2]) },
1601 { "sr3", offsetof(CPUState, sr[3]) },
1602 { "sr4", offsetof(CPUState, sr[4]) },
1603 { "sr5", offsetof(CPUState, sr[5]) },
1604 { "sr6", offsetof(CPUState, sr[6]) },
1605 { "sr7", offsetof(CPUState, sr[7]) },
1606 { "sr8", offsetof(CPUState, sr[8]) },
1607 { "sr9", offsetof(CPUState, sr[9]) },
1608 { "sr10", offsetof(CPUState, sr[10]) },
1609 { "sr11", offsetof(CPUState, sr[11]) },
1610 { "sr12", offsetof(CPUState, sr[12]) },
1611 { "sr13", offsetof(CPUState, sr[13]) },
1612 { "sr14", offsetof(CPUState, sr[14]) },
1613 { "sr15", offsetof(CPUState, sr[15]) },
1614 /* Too lazy to put BATs and SPRs ... */
1615 #elif defined(TARGET_SPARC)
1616 { "g0", offsetof(CPUState, gregs[0]) },
1617 { "g1", offsetof(CPUState, gregs[1]) },
1618 { "g2", offsetof(CPUState, gregs[2]) },
1619 { "g3", offsetof(CPUState, gregs[3]) },
1620 { "g4", offsetof(CPUState, gregs[4]) },
1621 { "g5", offsetof(CPUState, gregs[5]) },
1622 { "g6", offsetof(CPUState, gregs[6]) },
1623 { "g7", offsetof(CPUState, gregs[7]) },
1624 { "o0", 0, monitor_get_reg },
1625 { "o1", 1, monitor_get_reg },
1626 { "o2", 2, monitor_get_reg },
1627 { "o3", 3, monitor_get_reg },
1628 { "o4", 4, monitor_get_reg },
1629 { "o5", 5, monitor_get_reg },
1630 { "o6", 6, monitor_get_reg },
1631 { "o7", 7, monitor_get_reg },
1632 { "l0", 8, monitor_get_reg },
1633 { "l1", 9, monitor_get_reg },
1634 { "l2", 10, monitor_get_reg },
1635 { "l3", 11, monitor_get_reg },
1636 { "l4", 12, monitor_get_reg },
1637 { "l5", 13, monitor_get_reg },
1638 { "l6", 14, monitor_get_reg },
1639 { "l7", 15, monitor_get_reg },
1640 { "i0", 16, monitor_get_reg },
1641 { "i1", 17, monitor_get_reg },
1642 { "i2", 18, monitor_get_reg },
1643 { "i3", 19, monitor_get_reg },
1644 { "i4", 20, monitor_get_reg },
1645 { "i5", 21, monitor_get_reg },
1646 { "i6", 22, monitor_get_reg },
1647 { "i7", 23, monitor_get_reg },
1648 { "pc", offsetof(CPUState, pc) },
1649 { "npc", offsetof(CPUState, npc) },
1650 { "y", offsetof(CPUState, y) },
1651 #ifndef TARGET_SPARC64
1652 { "psr", 0, &monitor_get_psr, },
1653 { "wim", offsetof(CPUState, wim) },
1654 #endif
1655 { "tbr", offsetof(CPUState, tbr) },
1656 { "fsr", offsetof(CPUState, fsr) },
1657 { "f0", offsetof(CPUState, fpr[0]) },
1658 { "f1", offsetof(CPUState, fpr[1]) },
1659 { "f2", offsetof(CPUState, fpr[2]) },
1660 { "f3", offsetof(CPUState, fpr[3]) },
1661 { "f4", offsetof(CPUState, fpr[4]) },
1662 { "f5", offsetof(CPUState, fpr[5]) },
1663 { "f6", offsetof(CPUState, fpr[6]) },
1664 { "f7", offsetof(CPUState, fpr[7]) },
1665 { "f8", offsetof(CPUState, fpr[8]) },
1666 { "f9", offsetof(CPUState, fpr[9]) },
1667 { "f10", offsetof(CPUState, fpr[10]) },
1668 { "f11", offsetof(CPUState, fpr[11]) },
1669 { "f12", offsetof(CPUState, fpr[12]) },
1670 { "f13", offsetof(CPUState, fpr[13]) },
1671 { "f14", offsetof(CPUState, fpr[14]) },
1672 { "f15", offsetof(CPUState, fpr[15]) },
1673 { "f16", offsetof(CPUState, fpr[16]) },
1674 { "f17", offsetof(CPUState, fpr[17]) },
1675 { "f18", offsetof(CPUState, fpr[18]) },
1676 { "f19", offsetof(CPUState, fpr[19]) },
1677 { "f20", offsetof(CPUState, fpr[20]) },
1678 { "f21", offsetof(CPUState, fpr[21]) },
1679 { "f22", offsetof(CPUState, fpr[22]) },
1680 { "f23", offsetof(CPUState, fpr[23]) },
1681 { "f24", offsetof(CPUState, fpr[24]) },
1682 { "f25", offsetof(CPUState, fpr[25]) },
1683 { "f26", offsetof(CPUState, fpr[26]) },
1684 { "f27", offsetof(CPUState, fpr[27]) },
1685 { "f28", offsetof(CPUState, fpr[28]) },
1686 { "f29", offsetof(CPUState, fpr[29]) },
1687 { "f30", offsetof(CPUState, fpr[30]) },
1688 { "f31", offsetof(CPUState, fpr[31]) },
1689 #ifdef TARGET_SPARC64
1690 { "f32", offsetof(CPUState, fpr[32]) },
1691 { "f34", offsetof(CPUState, fpr[34]) },
1692 { "f36", offsetof(CPUState, fpr[36]) },
1693 { "f38", offsetof(CPUState, fpr[38]) },
1694 { "f40", offsetof(CPUState, fpr[40]) },
1695 { "f42", offsetof(CPUState, fpr[42]) },
1696 { "f44", offsetof(CPUState, fpr[44]) },
1697 { "f46", offsetof(CPUState, fpr[46]) },
1698 { "f48", offsetof(CPUState, fpr[48]) },
1699 { "f50", offsetof(CPUState, fpr[50]) },
1700 { "f52", offsetof(CPUState, fpr[52]) },
1701 { "f54", offsetof(CPUState, fpr[54]) },
1702 { "f56", offsetof(CPUState, fpr[56]) },
1703 { "f58", offsetof(CPUState, fpr[58]) },
1704 { "f60", offsetof(CPUState, fpr[60]) },
1705 { "f62", offsetof(CPUState, fpr[62]) },
1706 { "asi", offsetof(CPUState, asi) },
1707 { "pstate", offsetof(CPUState, pstate) },
1708 { "cansave", offsetof(CPUState, cansave) },
1709 { "canrestore", offsetof(CPUState, canrestore) },
1710 { "otherwin", offsetof(CPUState, otherwin) },
1711 { "wstate", offsetof(CPUState, wstate) },
1712 { "cleanwin", offsetof(CPUState, cleanwin) },
1713 { "fprs", offsetof(CPUState, fprs) },
1714 #endif
1715 #endif
1716 { NULL },
1719 static void expr_error(const char *fmt)
1721 term_printf(fmt);
1722 term_printf("\n");
1723 longjmp(expr_env, 1);
1726 /* return 0 if OK, -1 if not found, -2 if no CPU defined */
1727 static int get_monitor_def(target_long *pval, const char *name)
1729 MonitorDef *md;
1730 void *ptr;
1732 for(md = monitor_defs; md->name != NULL; md++) {
1733 if (compare_cmd(name, md->name)) {
1734 if (md->get_value) {
1735 *pval = md->get_value(md, md->offset);
1736 } else {
1737 CPUState *env = mon_get_cpu();
1738 if (!env)
1739 return -2;
1740 ptr = (uint8_t *)env + md->offset;
1741 switch(md->type) {
1742 case MD_I32:
1743 *pval = *(int32_t *)ptr;
1744 break;
1745 case MD_TLONG:
1746 *pval = *(target_long *)ptr;
1747 break;
1748 default:
1749 *pval = 0;
1750 break;
1753 return 0;
1756 return -1;
1759 static void next(void)
1761 if (pch != '\0') {
1762 pch++;
1763 while (isspace(*pch))
1764 pch++;
1768 static int64_t expr_sum(void);
1770 static int64_t expr_unary(void)
1772 int64_t n;
1773 char *p;
1774 int ret;
1776 switch(*pch) {
1777 case '+':
1778 next();
1779 n = expr_unary();
1780 break;
1781 case '-':
1782 next();
1783 n = -expr_unary();
1784 break;
1785 case '~':
1786 next();
1787 n = ~expr_unary();
1788 break;
1789 case '(':
1790 next();
1791 n = expr_sum();
1792 if (*pch != ')') {
1793 expr_error("')' expected");
1795 next();
1796 break;
1797 case '\'':
1798 pch++;
1799 if (*pch == '\0')
1800 expr_error("character constant expected");
1801 n = *pch;
1802 pch++;
1803 if (*pch != '\'')
1804 expr_error("missing terminating \' character");
1805 next();
1806 break;
1807 case '$':
1809 char buf[128], *q;
1810 target_long reg;
1812 pch++;
1813 q = buf;
1814 while ((*pch >= 'a' && *pch <= 'z') ||
1815 (*pch >= 'A' && *pch <= 'Z') ||
1816 (*pch >= '0' && *pch <= '9') ||
1817 *pch == '_' || *pch == '.') {
1818 if ((q - buf) < sizeof(buf) - 1)
1819 *q++ = *pch;
1820 pch++;
1822 while (isspace(*pch))
1823 pch++;
1824 *q = 0;
1825 ret = get_monitor_def(&reg, buf);
1826 if (ret == -1)
1827 expr_error("unknown register");
1828 else if (ret == -2)
1829 expr_error("no cpu defined");
1830 n = reg;
1832 break;
1833 case '\0':
1834 expr_error("unexpected end of expression");
1835 n = 0;
1836 break;
1837 default:
1838 #if TARGET_PHYS_ADDR_BITS > 32
1839 n = strtoull(pch, &p, 0);
1840 #else
1841 n = strtoul(pch, &p, 0);
1842 #endif
1843 if (pch == p) {
1844 expr_error("invalid char in expression");
1846 pch = p;
1847 while (isspace(*pch))
1848 pch++;
1849 break;
1851 return n;
1855 static int64_t expr_prod(void)
1857 int64_t val, val2;
1858 int op;
1860 val = expr_unary();
1861 for(;;) {
1862 op = *pch;
1863 if (op != '*' && op != '/' && op != '%')
1864 break;
1865 next();
1866 val2 = expr_unary();
1867 switch(op) {
1868 default:
1869 case '*':
1870 val *= val2;
1871 break;
1872 case '/':
1873 case '%':
1874 if (val2 == 0)
1875 expr_error("division by zero");
1876 if (op == '/')
1877 val /= val2;
1878 else
1879 val %= val2;
1880 break;
1883 return val;
1886 static int64_t expr_logic(void)
1888 int64_t val, val2;
1889 int op;
1891 val = expr_prod();
1892 for(;;) {
1893 op = *pch;
1894 if (op != '&' && op != '|' && op != '^')
1895 break;
1896 next();
1897 val2 = expr_prod();
1898 switch(op) {
1899 default:
1900 case '&':
1901 val &= val2;
1902 break;
1903 case '|':
1904 val |= val2;
1905 break;
1906 case '^':
1907 val ^= val2;
1908 break;
1911 return val;
1914 static int64_t expr_sum(void)
1916 int64_t val, val2;
1917 int op;
1919 val = expr_logic();
1920 for(;;) {
1921 op = *pch;
1922 if (op != '+' && op != '-')
1923 break;
1924 next();
1925 val2 = expr_logic();
1926 if (op == '+')
1927 val += val2;
1928 else
1929 val -= val2;
1931 return val;
1934 static int get_expr(int64_t *pval, const char **pp)
1936 pch = *pp;
1937 if (setjmp(expr_env)) {
1938 *pp = pch;
1939 return -1;
1941 while (isspace(*pch))
1942 pch++;
1943 *pval = expr_sum();
1944 *pp = pch;
1945 return 0;
1948 static int get_str(char *buf, int buf_size, const char **pp)
1950 const char *p;
1951 char *q;
1952 int c;
1954 q = buf;
1955 p = *pp;
1956 while (isspace(*p))
1957 p++;
1958 if (*p == '\0') {
1959 fail:
1960 *q = '\0';
1961 *pp = p;
1962 return -1;
1964 if (*p == '\"') {
1965 p++;
1966 while (*p != '\0' && *p != '\"') {
1967 if (*p == '\\') {
1968 p++;
1969 c = *p++;
1970 switch(c) {
1971 case 'n':
1972 c = '\n';
1973 break;
1974 case 'r':
1975 c = '\r';
1976 break;
1977 case '\\':
1978 case '\'':
1979 case '\"':
1980 break;
1981 default:
1982 qemu_printf("unsupported escape code: '\\%c'\n", c);
1983 goto fail;
1985 if ((q - buf) < buf_size - 1) {
1986 *q++ = c;
1988 } else {
1989 if ((q - buf) < buf_size - 1) {
1990 *q++ = *p;
1992 p++;
1995 if (*p != '\"') {
1996 qemu_printf("unterminated string\n");
1997 goto fail;
1999 p++;
2000 } else {
2001 while (*p != '\0' && !isspace(*p)) {
2002 if ((q - buf) < buf_size - 1) {
2003 *q++ = *p;
2005 p++;
2008 *q = '\0';
2009 *pp = p;
2010 return 0;
2013 static int default_fmt_format = 'x';
2014 static int default_fmt_size = 4;
2016 #define MAX_ARGS 16
2018 static void monitor_handle_command(const char *cmdline)
2020 const char *p, *pstart, *typestr;
2021 char *q;
2022 int c, nb_args, len, i, has_arg;
2023 term_cmd_t *cmd;
2024 char cmdname[256];
2025 char buf[1024];
2026 void *str_allocated[MAX_ARGS];
2027 void *args[MAX_ARGS];
2029 #ifdef DEBUG
2030 term_printf("command='%s'\n", cmdline);
2031 #endif
2033 /* extract the command name */
2034 p = cmdline;
2035 q = cmdname;
2036 while (isspace(*p))
2037 p++;
2038 if (*p == '\0')
2039 return;
2040 pstart = p;
2041 while (*p != '\0' && *p != '/' && !isspace(*p))
2042 p++;
2043 len = p - pstart;
2044 if (len > sizeof(cmdname) - 1)
2045 len = sizeof(cmdname) - 1;
2046 memcpy(cmdname, pstart, len);
2047 cmdname[len] = '\0';
2049 /* find the command */
2050 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2051 if (compare_cmd(cmdname, cmd->name))
2052 goto found;
2054 term_printf("unknown command: '%s'\n", cmdname);
2055 return;
2056 found:
2058 for(i = 0; i < MAX_ARGS; i++)
2059 str_allocated[i] = NULL;
2061 /* parse the parameters */
2062 typestr = cmd->args_type;
2063 nb_args = 0;
2064 for(;;) {
2065 c = *typestr;
2066 if (c == '\0')
2067 break;
2068 typestr++;
2069 switch(c) {
2070 case 'F':
2071 case 'B':
2072 case 's':
2074 int ret;
2075 char *str;
2077 while (isspace(*p))
2078 p++;
2079 if (*typestr == '?') {
2080 typestr++;
2081 if (*p == '\0') {
2082 /* no optional string: NULL argument */
2083 str = NULL;
2084 goto add_str;
2087 ret = get_str(buf, sizeof(buf), &p);
2088 if (ret < 0) {
2089 switch(c) {
2090 case 'F':
2091 term_printf("%s: filename expected\n", cmdname);
2092 break;
2093 case 'B':
2094 term_printf("%s: block device name expected\n", cmdname);
2095 break;
2096 default:
2097 term_printf("%s: string expected\n", cmdname);
2098 break;
2100 goto fail;
2102 str = qemu_malloc(strlen(buf) + 1);
2103 strcpy(str, buf);
2104 str_allocated[nb_args] = str;
2105 add_str:
2106 if (nb_args >= MAX_ARGS) {
2107 error_args:
2108 term_printf("%s: too many arguments\n", cmdname);
2109 goto fail;
2111 args[nb_args++] = str;
2113 break;
2114 case '/':
2116 int count, format, size;
2118 while (isspace(*p))
2119 p++;
2120 if (*p == '/') {
2121 /* format found */
2122 p++;
2123 count = 1;
2124 if (isdigit(*p)) {
2125 count = 0;
2126 while (isdigit(*p)) {
2127 count = count * 10 + (*p - '0');
2128 p++;
2131 size = -1;
2132 format = -1;
2133 for(;;) {
2134 switch(*p) {
2135 case 'o':
2136 case 'd':
2137 case 'u':
2138 case 'x':
2139 case 'i':
2140 case 'c':
2141 format = *p++;
2142 break;
2143 case 'b':
2144 size = 1;
2145 p++;
2146 break;
2147 case 'h':
2148 size = 2;
2149 p++;
2150 break;
2151 case 'w':
2152 size = 4;
2153 p++;
2154 break;
2155 case 'g':
2156 case 'L':
2157 size = 8;
2158 p++;
2159 break;
2160 default:
2161 goto next;
2164 next:
2165 if (*p != '\0' && !isspace(*p)) {
2166 term_printf("invalid char in format: '%c'\n", *p);
2167 goto fail;
2169 if (format < 0)
2170 format = default_fmt_format;
2171 if (format != 'i') {
2172 /* for 'i', not specifying a size gives -1 as size */
2173 if (size < 0)
2174 size = default_fmt_size;
2176 default_fmt_size = size;
2177 default_fmt_format = format;
2178 } else {
2179 count = 1;
2180 format = default_fmt_format;
2181 if (format != 'i') {
2182 size = default_fmt_size;
2183 } else {
2184 size = -1;
2187 if (nb_args + 3 > MAX_ARGS)
2188 goto error_args;
2189 args[nb_args++] = (void*)(long)count;
2190 args[nb_args++] = (void*)(long)format;
2191 args[nb_args++] = (void*)(long)size;
2193 break;
2194 case 'i':
2195 case 'l':
2197 int64_t val;
2199 while (isspace(*p))
2200 p++;
2201 if (*typestr == '?' || *typestr == '.') {
2202 if (*typestr == '?') {
2203 if (*p == '\0')
2204 has_arg = 0;
2205 else
2206 has_arg = 1;
2207 } else {
2208 if (*p == '.') {
2209 p++;
2210 while (isspace(*p))
2211 p++;
2212 has_arg = 1;
2213 } else {
2214 has_arg = 0;
2217 typestr++;
2218 if (nb_args >= MAX_ARGS)
2219 goto error_args;
2220 args[nb_args++] = (void *)(long)has_arg;
2221 if (!has_arg) {
2222 if (nb_args >= MAX_ARGS)
2223 goto error_args;
2224 val = -1;
2225 goto add_num;
2228 if (get_expr(&val, &p))
2229 goto fail;
2230 add_num:
2231 if (c == 'i') {
2232 if (nb_args >= MAX_ARGS)
2233 goto error_args;
2234 args[nb_args++] = (void *)(long)val;
2235 } else {
2236 if ((nb_args + 1) >= MAX_ARGS)
2237 goto error_args;
2238 #if TARGET_PHYS_ADDR_BITS > 32
2239 args[nb_args++] = (void *)(long)((val >> 32) & 0xffffffff);
2240 #else
2241 args[nb_args++] = (void *)0;
2242 #endif
2243 args[nb_args++] = (void *)(long)(val & 0xffffffff);
2246 break;
2247 case '-':
2249 int has_option;
2250 /* option */
2252 c = *typestr++;
2253 if (c == '\0')
2254 goto bad_type;
2255 while (isspace(*p))
2256 p++;
2257 has_option = 0;
2258 if (*p == '-') {
2259 p++;
2260 if (*p != c) {
2261 term_printf("%s: unsupported option -%c\n",
2262 cmdname, *p);
2263 goto fail;
2265 p++;
2266 has_option = 1;
2268 if (nb_args >= MAX_ARGS)
2269 goto error_args;
2270 args[nb_args++] = (void *)(long)has_option;
2272 break;
2273 default:
2274 bad_type:
2275 term_printf("%s: unknown type '%c'\n", cmdname, c);
2276 goto fail;
2279 /* check that all arguments were parsed */
2280 while (isspace(*p))
2281 p++;
2282 if (*p != '\0') {
2283 term_printf("%s: extraneous characters at the end of line\n",
2284 cmdname);
2285 goto fail;
2288 switch(nb_args) {
2289 case 0:
2290 cmd->handler();
2291 break;
2292 case 1:
2293 cmd->handler(args[0]);
2294 break;
2295 case 2:
2296 cmd->handler(args[0], args[1]);
2297 break;
2298 case 3:
2299 cmd->handler(args[0], args[1], args[2]);
2300 break;
2301 case 4:
2302 cmd->handler(args[0], args[1], args[2], args[3]);
2303 break;
2304 case 5:
2305 cmd->handler(args[0], args[1], args[2], args[3], args[4]);
2306 break;
2307 case 6:
2308 cmd->handler(args[0], args[1], args[2], args[3], args[4], args[5]);
2309 break;
2310 case 7:
2311 cmd->handler(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
2312 break;
2313 default:
2314 term_printf("unsupported number of arguments: %d\n", nb_args);
2315 goto fail;
2317 fail:
2318 for(i = 0; i < MAX_ARGS; i++)
2319 qemu_free(str_allocated[i]);
2320 return;
2323 static void cmd_completion(const char *name, const char *list)
2325 const char *p, *pstart;
2326 char cmd[128];
2327 int len;
2329 p = list;
2330 for(;;) {
2331 pstart = p;
2332 p = strchr(p, '|');
2333 if (!p)
2334 p = pstart + strlen(pstart);
2335 len = p - pstart;
2336 if (len > sizeof(cmd) - 2)
2337 len = sizeof(cmd) - 2;
2338 memcpy(cmd, pstart, len);
2339 cmd[len] = '\0';
2340 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
2341 add_completion(cmd);
2343 if (*p == '\0')
2344 break;
2345 p++;
2349 static void file_completion(const char *input)
2351 DIR *ffs;
2352 struct dirent *d;
2353 char path[1024];
2354 char file[1024], file_prefix[1024];
2355 int input_path_len;
2356 const char *p;
2358 p = strrchr(input, '/');
2359 if (!p) {
2360 input_path_len = 0;
2361 pstrcpy(file_prefix, sizeof(file_prefix), input);
2362 strcpy(path, ".");
2363 } else {
2364 input_path_len = p - input + 1;
2365 memcpy(path, input, input_path_len);
2366 if (input_path_len > sizeof(path) - 1)
2367 input_path_len = sizeof(path) - 1;
2368 path[input_path_len] = '\0';
2369 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
2371 #ifdef DEBUG_COMPLETION
2372 term_printf("input='%s' path='%s' prefix='%s'\n", input, path, file_prefix);
2373 #endif
2374 ffs = opendir(path);
2375 if (!ffs)
2376 return;
2377 for(;;) {
2378 struct stat sb;
2379 d = readdir(ffs);
2380 if (!d)
2381 break;
2382 if (strstart(d->d_name, file_prefix, NULL)) {
2383 memcpy(file, input, input_path_len);
2384 strcpy(file + input_path_len, d->d_name);
2385 /* stat the file to find out if it's a directory.
2386 * In that case add a slash to speed up typing long paths
2388 stat(file, &sb);
2389 if(S_ISDIR(sb.st_mode))
2390 strcat(file, "/");
2391 add_completion(file);
2394 closedir(ffs);
2397 static void block_completion_it(void *opaque, const char *name)
2399 const char *input = opaque;
2401 if (input[0] == '\0' ||
2402 !strncmp(name, (char *)input, strlen(input))) {
2403 add_completion(name);
2407 /* NOTE: this parser is an approximate form of the real command parser */
2408 static void parse_cmdline(const char *cmdline,
2409 int *pnb_args, char **args)
2411 const char *p;
2412 int nb_args, ret;
2413 char buf[1024];
2415 p = cmdline;
2416 nb_args = 0;
2417 for(;;) {
2418 while (isspace(*p))
2419 p++;
2420 if (*p == '\0')
2421 break;
2422 if (nb_args >= MAX_ARGS)
2423 break;
2424 ret = get_str(buf, sizeof(buf), &p);
2425 args[nb_args] = qemu_strdup(buf);
2426 nb_args++;
2427 if (ret < 0)
2428 break;
2430 *pnb_args = nb_args;
2433 void readline_find_completion(const char *cmdline)
2435 const char *cmdname;
2436 char *args[MAX_ARGS];
2437 int nb_args, i, len;
2438 const char *ptype, *str;
2439 term_cmd_t *cmd;
2440 const KeyDef *key;
2442 parse_cmdline(cmdline, &nb_args, args);
2443 #ifdef DEBUG_COMPLETION
2444 for(i = 0; i < nb_args; i++) {
2445 term_printf("arg%d = '%s'\n", i, (char *)args[i]);
2447 #endif
2449 /* if the line ends with a space, it means we want to complete the
2450 next arg */
2451 len = strlen(cmdline);
2452 if (len > 0 && isspace(cmdline[len - 1])) {
2453 if (nb_args >= MAX_ARGS)
2454 return;
2455 args[nb_args++] = qemu_strdup("");
2457 if (nb_args <= 1) {
2458 /* command completion */
2459 if (nb_args == 0)
2460 cmdname = "";
2461 else
2462 cmdname = args[0];
2463 completion_index = strlen(cmdname);
2464 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2465 cmd_completion(cmdname, cmd->name);
2467 } else {
2468 /* find the command */
2469 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2470 if (compare_cmd(args[0], cmd->name))
2471 goto found;
2473 return;
2474 found:
2475 ptype = cmd->args_type;
2476 for(i = 0; i < nb_args - 2; i++) {
2477 if (*ptype != '\0') {
2478 ptype++;
2479 while (*ptype == '?')
2480 ptype++;
2483 str = args[nb_args - 1];
2484 switch(*ptype) {
2485 case 'F':
2486 /* file completion */
2487 completion_index = strlen(str);
2488 file_completion(str);
2489 break;
2490 case 'B':
2491 /* block device name completion */
2492 completion_index = strlen(str);
2493 bdrv_iterate(block_completion_it, (void *)str);
2494 break;
2495 case 's':
2496 /* XXX: more generic ? */
2497 if (!strcmp(cmd->name, "info")) {
2498 completion_index = strlen(str);
2499 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
2500 cmd_completion(str, cmd->name);
2502 } else if (!strcmp(cmd->name, "sendkey")) {
2503 completion_index = strlen(str);
2504 for(key = key_defs; key->name != NULL; key++) {
2505 cmd_completion(str, key->name);
2508 break;
2509 default:
2510 break;
2513 for(i = 0; i < nb_args; i++)
2514 qemu_free(args[i]);
2517 static int term_can_read(void *opaque)
2519 return 128;
2522 static void term_read(void *opaque, const uint8_t *buf, int size)
2524 int i;
2525 for(i = 0; i < size; i++)
2526 readline_handle_byte(buf[i]);
2529 static void monitor_start_input(void);
2531 static void monitor_handle_command1(void *opaque, const char *cmdline)
2533 monitor_handle_command(cmdline);
2534 monitor_start_input();
2537 static void monitor_start_input(void)
2539 readline_start("(qemu) ", 0, monitor_handle_command1, NULL);
2542 static void term_event(void *opaque, int event)
2544 if (event != CHR_EVENT_RESET)
2545 return;
2547 if (!hide_banner)
2548 term_printf("QEMU %s monitor - type 'help' for more information\n",
2549 QEMU_VERSION);
2550 monitor_start_input();
2553 static int is_first_init = 1;
2555 void monitor_init(CharDriverState *hd, int show_banner)
2557 int i;
2559 if (is_first_init) {
2560 for (i = 0; i < MAX_MON; i++) {
2561 monitor_hd[i] = NULL;
2563 is_first_init = 0;
2565 for (i = 0; i < MAX_MON; i++) {
2566 if (monitor_hd[i] == NULL) {
2567 monitor_hd[i] = hd;
2568 break;
2572 hide_banner = !show_banner;
2574 qemu_chr_add_handlers(hd, term_can_read, term_read, term_event, NULL);
2577 /* XXX: use threads ? */
2578 /* modal monitor readline */
2579 static int monitor_readline_started;
2580 static char *monitor_readline_buf;
2581 static int monitor_readline_buf_size;
2583 static void monitor_readline_cb(void *opaque, const char *input)
2585 pstrcpy(monitor_readline_buf, monitor_readline_buf_size, input);
2586 monitor_readline_started = 0;
2589 void monitor_readline(const char *prompt, int is_password,
2590 char *buf, int buf_size)
2592 int i;
2594 if (is_password) {
2595 for (i = 0; i < MAX_MON; i++)
2596 if (monitor_hd[i] && monitor_hd[i]->focus == 0)
2597 qemu_chr_send_event(monitor_hd[i], CHR_EVENT_FOCUS);
2599 readline_start(prompt, is_password, monitor_readline_cb, NULL);
2600 monitor_readline_buf = buf;
2601 monitor_readline_buf_size = buf_size;
2602 monitor_readline_started = 1;
2603 while (monitor_readline_started) {
2604 main_loop_wait(10);