kvm: external module: backward compatibility for CONFIG_HAVE_KVM_IRQCHIP
[qemu-kvm/fedora.git] / monitor.c
blobd3d097f34b69c957cbce227aa6f14058aaadd09b
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 "hw/hw.h"
25 #include "hw/usb.h"
26 #include "hw/pcmcia.h"
27 #include "hw/pc.h"
28 #include "hw/pci.h"
29 #include "gdbstub.h"
30 #include "net.h"
31 #include "qemu-char.h"
32 #include "sysemu.h"
33 #include "console.h"
34 #include "block.h"
35 #include "audio/audio.h"
36 #include "disas.h"
37 #include "balloon.h"
38 #include <dirent.h>
39 #include "qemu-timer.h"
40 #include "migration.h"
41 #include "kvm.h"
43 #include "qemu-kvm.h"
45 //#define DEBUG
46 //#define DEBUG_COMPLETION
49 * Supported types:
51 * 'F' filename
52 * 'B' block device name
53 * 's' string (accept optional quote)
54 * 'i' 32 bit integer
55 * 'l' target long (32 or 64 bit)
56 * '/' optional gdb-like print format (like "/10x")
58 * '?' optional type (for 'F', 's' and 'i')
62 typedef struct term_cmd_t {
63 const char *name;
64 const char *args_type;
65 void *handler;
66 const char *params;
67 const char *help;
68 } term_cmd_t;
70 #define MAX_MON 4
71 static CharDriverState *monitor_hd[MAX_MON];
72 static int hide_banner;
74 static const term_cmd_t term_cmds[];
75 static const term_cmd_t info_cmds[];
77 static uint8_t term_outbuf[1024];
78 static int term_outbuf_index;
80 static void monitor_start_input(void);
82 static CPUState *mon_cpu = NULL;
84 void term_flush(void)
86 int i;
87 if (term_outbuf_index > 0) {
88 for (i = 0; i < MAX_MON; i++)
89 if (monitor_hd[i] && monitor_hd[i]->focus == 0)
90 qemu_chr_write(monitor_hd[i], term_outbuf, term_outbuf_index);
91 term_outbuf_index = 0;
95 /* flush at every end of line or if the buffer is full */
96 void term_puts(const char *str)
98 char c;
99 for(;;) {
100 c = *str++;
101 if (c == '\0')
102 break;
103 if (c == '\n')
104 term_outbuf[term_outbuf_index++] = '\r';
105 term_outbuf[term_outbuf_index++] = c;
106 if (term_outbuf_index >= (sizeof(term_outbuf) - 1) ||
107 c == '\n')
108 term_flush();
112 void term_vprintf(const char *fmt, va_list ap)
114 char buf[4096];
115 vsnprintf(buf, sizeof(buf), fmt, ap);
116 term_puts(buf);
119 void term_printf(const char *fmt, ...)
121 va_list ap;
122 va_start(ap, fmt);
123 term_vprintf(fmt, ap);
124 va_end(ap);
127 void term_print_filename(const char *filename)
129 int i;
131 for (i = 0; filename[i]; i++) {
132 switch (filename[i]) {
133 case ' ':
134 case '"':
135 case '\\':
136 term_printf("\\%c", filename[i]);
137 break;
138 case '\t':
139 term_printf("\\t");
140 break;
141 case '\r':
142 term_printf("\\r");
143 break;
144 case '\n':
145 term_printf("\\n");
146 break;
147 default:
148 term_printf("%c", filename[i]);
149 break;
154 static int monitor_fprintf(FILE *stream, const char *fmt, ...)
156 va_list ap;
157 va_start(ap, fmt);
158 term_vprintf(fmt, ap);
159 va_end(ap);
160 return 0;
163 static int compare_cmd(const char *name, const char *list)
165 const char *p, *pstart;
166 int len;
167 len = strlen(name);
168 p = list;
169 for(;;) {
170 pstart = p;
171 p = strchr(p, '|');
172 if (!p)
173 p = pstart + strlen(pstart);
174 if ((p - pstart) == len && !memcmp(pstart, name, len))
175 return 1;
176 if (*p == '\0')
177 break;
178 p++;
180 return 0;
183 static void help_cmd1(const term_cmd_t *cmds, const char *prefix, const char *name)
185 const term_cmd_t *cmd;
187 for(cmd = cmds; cmd->name != NULL; cmd++) {
188 if (!name || !strcmp(name, cmd->name))
189 term_printf("%s%s %s -- %s\n", prefix, cmd->name, cmd->params, cmd->help);
193 static void help_cmd(const char *name)
195 if (name && !strcmp(name, "info")) {
196 help_cmd1(info_cmds, "info ", NULL);
197 } else {
198 help_cmd1(term_cmds, "", name);
199 if (name && !strcmp(name, "log")) {
200 const CPULogItem *item;
201 term_printf("Log items (comma separated):\n");
202 term_printf("%-10s %s\n", "none", "remove all logs");
203 for(item = cpu_log_items; item->mask != 0; item++) {
204 term_printf("%-10s %s\n", item->name, item->help);
210 static void do_help(const char *name)
212 help_cmd(name);
215 static void do_commit(const char *device)
217 int i, all_devices;
219 all_devices = !strcmp(device, "all");
220 for (i = 0; i < nb_drives; i++) {
221 if (all_devices ||
222 !strcmp(bdrv_get_device_name(drives_table[i].bdrv), device))
223 bdrv_commit(drives_table[i].bdrv);
227 static void do_info(const char *item)
229 const term_cmd_t *cmd;
230 void (*handler)(void);
232 if (!item)
233 goto help;
234 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
235 if (compare_cmd(item, cmd->name))
236 goto found;
238 help:
239 help_cmd("info");
240 return;
241 found:
242 handler = cmd->handler;
243 handler();
246 static void do_info_version(void)
248 term_printf("%s\n", QEMU_VERSION);
251 static void do_info_name(void)
253 if (qemu_name)
254 term_printf("%s\n", qemu_name);
257 #if defined(TARGET_I386)
258 static void do_info_hpet(void)
260 term_printf("HPET is %s by QEMU\n", (no_hpet) ? "disabled" : "enabled");
262 #endif
264 static void do_info_uuid(void)
266 term_printf(UUID_FMT "\n", qemu_uuid[0], qemu_uuid[1], qemu_uuid[2],
267 qemu_uuid[3], qemu_uuid[4], qemu_uuid[5], qemu_uuid[6],
268 qemu_uuid[7], qemu_uuid[8], qemu_uuid[9], qemu_uuid[10],
269 qemu_uuid[11], qemu_uuid[12], qemu_uuid[13], qemu_uuid[14],
270 qemu_uuid[15]);
273 static void do_info_block(void)
275 bdrv_info();
278 static void do_info_blockstats(void)
280 bdrv_info_stats();
283 /* get the current CPU defined by the user */
284 static int mon_set_cpu(int cpu_index)
286 CPUState *env;
288 for(env = first_cpu; env != NULL; env = env->next_cpu) {
289 if (env->cpu_index == cpu_index) {
290 mon_cpu = env;
291 return 0;
294 return -1;
297 static CPUState *mon_get_cpu(void)
299 if (!mon_cpu) {
300 mon_set_cpu(0);
303 kvm_save_registers(mon_cpu);
305 return mon_cpu;
308 static void do_info_registers(void)
310 CPUState *env;
311 env = mon_get_cpu();
312 if (!env)
313 return;
314 #ifdef TARGET_I386
315 cpu_dump_state(env, NULL, monitor_fprintf,
316 X86_DUMP_FPU);
317 #else
318 cpu_dump_state(env, NULL, monitor_fprintf,
320 #endif
323 static void do_info_cpus(void)
325 CPUState *env;
327 /* just to set the default cpu if not already done */
328 mon_get_cpu();
330 for(env = first_cpu; env != NULL; env = env->next_cpu) {
331 kvm_save_registers(env);
332 term_printf("%c CPU #%d:",
333 (env == mon_cpu) ? '*' : ' ',
334 env->cpu_index);
335 #if defined(TARGET_I386)
336 term_printf(" pc=0x" TARGET_FMT_lx, env->eip + env->segs[R_CS].base);
337 #elif defined(TARGET_PPC)
338 term_printf(" nip=0x" TARGET_FMT_lx, env->nip);
339 #elif defined(TARGET_SPARC)
340 term_printf(" pc=0x" TARGET_FMT_lx " npc=0x" TARGET_FMT_lx, env->pc, env->npc);
341 #elif defined(TARGET_MIPS)
342 term_printf(" PC=0x" TARGET_FMT_lx, env->active_tc.PC);
343 #endif
344 if (env->halted)
345 term_printf(" (halted)");
346 term_printf(" thread_id=%d", env->thread_id);
347 term_printf("\n");
351 static void do_cpu_set(int index)
353 if (mon_set_cpu(index) < 0)
354 term_printf("Invalid CPU index\n");
357 static void do_cpu_set_nr(int value, const char *status)
359 int state;
361 if (!strcmp(status, "online"))
362 state = 1;
363 else if (!strcmp(status, "offline"))
364 state = 0;
365 else {
366 term_printf("invalid status: %s\n", status);
367 return;
369 #if defined(TARGET_I386) || defined(TARGET_X86_64)
370 qemu_system_cpu_hot_add(value, state);
371 #endif
374 static void do_info_jit(void)
376 dump_exec_info(NULL, monitor_fprintf);
379 static void do_info_history (void)
381 int i;
382 const char *str;
384 i = 0;
385 for(;;) {
386 str = readline_get_history(i);
387 if (!str)
388 break;
389 term_printf("%d: '%s'\n", i, str);
390 i++;
394 #if defined(TARGET_PPC)
395 /* XXX: not implemented in other targets */
396 static void do_info_cpu_stats (void)
398 CPUState *env;
400 env = mon_get_cpu();
401 cpu_dump_statistics(env, NULL, &monitor_fprintf, 0);
403 #endif
405 static void do_quit(void)
407 exit(0);
410 static int eject_device(BlockDriverState *bs, int force)
412 if (bdrv_is_inserted(bs)) {
413 if (!force) {
414 if (!bdrv_is_removable(bs)) {
415 term_printf("device is not removable\n");
416 return -1;
418 if (bdrv_is_locked(bs)) {
419 term_printf("device is locked\n");
420 return -1;
423 bdrv_close(bs);
425 return 0;
428 static void do_eject(int force, const char *filename)
430 BlockDriverState *bs;
432 bs = bdrv_find(filename);
433 if (!bs) {
434 term_printf("device not found\n");
435 return;
437 eject_device(bs, force);
440 static void do_change_block(const char *device, const char *filename, const char *fmt)
442 BlockDriverState *bs;
443 BlockDriver *drv = NULL;
445 bs = bdrv_find(device);
446 if (!bs) {
447 term_printf("device not found\n");
448 return;
450 if (fmt) {
451 drv = bdrv_find_format(fmt);
452 if (!drv) {
453 term_printf("invalid format %s\n", fmt);
454 return;
457 if (eject_device(bs, 0) < 0)
458 return;
459 bdrv_open2(bs, filename, 0, drv);
460 qemu_key_check(bs, filename);
463 static void do_change_vnc(const char *target, const char *arg)
465 if (strcmp(target, "passwd") == 0 ||
466 strcmp(target, "password") == 0) {
467 char password[9];
468 if (arg) {
469 strncpy(password, arg, sizeof(password));
470 password[sizeof(password) - 1] = '\0';
471 } else
472 monitor_readline("Password: ", 1, password, sizeof(password));
473 if (vnc_display_password(NULL, password) < 0)
474 term_printf("could not set VNC server password\n");
475 } else {
476 if (vnc_display_open(NULL, target) < 0)
477 term_printf("could not start VNC server on %s\n", target);
481 static void do_change(const char *device, const char *target, const char *arg)
483 if (strcmp(device, "vnc") == 0) {
484 do_change_vnc(target, arg);
485 } else {
486 do_change_block(device, target, arg);
490 static void do_screen_dump(const char *filename)
492 vga_hw_screen_dump(filename);
495 static void do_logfile(const char *filename)
497 cpu_set_log_filename(filename);
500 static void do_log(const char *items)
502 int mask;
504 if (!strcmp(items, "none")) {
505 mask = 0;
506 } else {
507 mask = cpu_str_to_log_mask(items);
508 if (!mask) {
509 help_cmd("log");
510 return;
513 cpu_set_log(mask);
516 static void do_stop(void)
518 vm_stop(EXCP_INTERRUPT);
521 static void do_cont(void)
523 vm_start();
526 #ifdef CONFIG_GDBSTUB
527 static void do_gdbserver(const char *port)
529 if (!port)
530 port = DEFAULT_GDBSTUB_PORT;
531 if (gdbserver_start(port) < 0) {
532 qemu_printf("Could not open gdbserver socket on port '%s'\n", port);
533 } else {
534 qemu_printf("Waiting gdb connection on port '%s'\n", port);
537 #endif
539 static void term_printc(int c)
541 term_printf("'");
542 switch(c) {
543 case '\'':
544 term_printf("\\'");
545 break;
546 case '\\':
547 term_printf("\\\\");
548 break;
549 case '\n':
550 term_printf("\\n");
551 break;
552 case '\r':
553 term_printf("\\r");
554 break;
555 default:
556 if (c >= 32 && c <= 126) {
557 term_printf("%c", c);
558 } else {
559 term_printf("\\x%02x", c);
561 break;
563 term_printf("'");
566 static void memory_dump(int count, int format, int wsize,
567 target_phys_addr_t addr, int is_physical)
569 CPUState *env;
570 int nb_per_line, l, line_size, i, max_digits, len;
571 uint8_t buf[16];
572 uint64_t v;
574 if (format == 'i') {
575 int flags;
576 flags = 0;
577 env = mon_get_cpu();
578 if (!env && !is_physical)
579 return;
580 #ifdef TARGET_I386
581 if (wsize == 2) {
582 flags = 1;
583 } else if (wsize == 4) {
584 flags = 0;
585 } else {
586 /* as default we use the current CS size */
587 flags = 0;
588 if (env) {
589 #ifdef TARGET_X86_64
590 if ((env->efer & MSR_EFER_LMA) &&
591 (env->segs[R_CS].flags & DESC_L_MASK))
592 flags = 2;
593 else
594 #endif
595 if (!(env->segs[R_CS].flags & DESC_B_MASK))
596 flags = 1;
599 #endif
600 monitor_disas(env, addr, count, is_physical, flags);
601 return;
604 len = wsize * count;
605 if (wsize == 1)
606 line_size = 8;
607 else
608 line_size = 16;
609 nb_per_line = line_size / wsize;
610 max_digits = 0;
612 switch(format) {
613 case 'o':
614 max_digits = (wsize * 8 + 2) / 3;
615 break;
616 default:
617 case 'x':
618 max_digits = (wsize * 8) / 4;
619 break;
620 case 'u':
621 case 'd':
622 max_digits = (wsize * 8 * 10 + 32) / 33;
623 break;
624 case 'c':
625 wsize = 1;
626 break;
629 while (len > 0) {
630 if (is_physical)
631 term_printf(TARGET_FMT_plx ":", addr);
632 else
633 term_printf(TARGET_FMT_lx ":", (target_ulong)addr);
634 l = len;
635 if (l > line_size)
636 l = line_size;
637 if (is_physical) {
638 cpu_physical_memory_rw(addr, buf, l, 0);
639 } else {
640 env = mon_get_cpu();
641 if (!env)
642 break;
643 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
644 term_printf(" Cannot access memory\n");
645 break;
648 i = 0;
649 while (i < l) {
650 switch(wsize) {
651 default:
652 case 1:
653 v = ldub_raw(buf + i);
654 break;
655 case 2:
656 v = lduw_raw(buf + i);
657 break;
658 case 4:
659 v = (uint32_t)ldl_raw(buf + i);
660 break;
661 case 8:
662 v = ldq_raw(buf + i);
663 break;
665 term_printf(" ");
666 switch(format) {
667 case 'o':
668 term_printf("%#*" PRIo64, max_digits, v);
669 break;
670 case 'x':
671 term_printf("0x%0*" PRIx64, max_digits, v);
672 break;
673 case 'u':
674 term_printf("%*" PRIu64, max_digits, v);
675 break;
676 case 'd':
677 term_printf("%*" PRId64, max_digits, v);
678 break;
679 case 'c':
680 term_printc(v);
681 break;
683 i += wsize;
685 term_printf("\n");
686 addr += l;
687 len -= l;
691 #if TARGET_LONG_BITS == 64
692 #define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
693 #else
694 #define GET_TLONG(h, l) (l)
695 #endif
697 static void do_memory_dump(int count, int format, int size,
698 uint32_t addrh, uint32_t addrl)
700 target_long addr = GET_TLONG(addrh, addrl);
701 memory_dump(count, format, size, addr, 0);
704 #if TARGET_PHYS_ADDR_BITS > 32
705 #define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
706 #else
707 #define GET_TPHYSADDR(h, l) (l)
708 #endif
710 static void do_physical_memory_dump(int count, int format, int size,
711 uint32_t addrh, uint32_t addrl)
714 target_phys_addr_t addr = GET_TPHYSADDR(addrh, addrl);
715 memory_dump(count, format, size, addr, 1);
718 static void do_print(int count, int format, int size, unsigned int valh, unsigned int vall)
720 target_phys_addr_t val = GET_TPHYSADDR(valh, vall);
721 #if TARGET_PHYS_ADDR_BITS == 32
722 switch(format) {
723 case 'o':
724 term_printf("%#o", val);
725 break;
726 case 'x':
727 term_printf("%#x", val);
728 break;
729 case 'u':
730 term_printf("%u", val);
731 break;
732 default:
733 case 'd':
734 term_printf("%d", val);
735 break;
736 case 'c':
737 term_printc(val);
738 break;
740 #else
741 switch(format) {
742 case 'o':
743 term_printf("%#" PRIo64, val);
744 break;
745 case 'x':
746 term_printf("%#" PRIx64, val);
747 break;
748 case 'u':
749 term_printf("%" PRIu64, val);
750 break;
751 default:
752 case 'd':
753 term_printf("%" PRId64, val);
754 break;
755 case 'c':
756 term_printc(val);
757 break;
759 #endif
760 term_printf("\n");
763 static void do_memory_save(unsigned int valh, unsigned int vall,
764 uint32_t size, const char *filename)
766 FILE *f;
767 target_long addr = GET_TLONG(valh, vall);
768 uint32_t l;
769 CPUState *env;
770 uint8_t buf[1024];
772 env = mon_get_cpu();
773 if (!env)
774 return;
776 f = fopen(filename, "wb");
777 if (!f) {
778 term_printf("could not open '%s'\n", filename);
779 return;
781 while (size != 0) {
782 l = sizeof(buf);
783 if (l > size)
784 l = size;
785 cpu_memory_rw_debug(env, addr, buf, l, 0);
786 fwrite(buf, 1, l, f);
787 addr += l;
788 size -= l;
790 fclose(f);
793 static void do_physical_memory_save(unsigned int valh, unsigned int vall,
794 uint32_t size, const char *filename)
796 FILE *f;
797 uint32_t l;
798 uint8_t buf[1024];
799 target_phys_addr_t addr = GET_TPHYSADDR(valh, vall);
801 f = fopen(filename, "wb");
802 if (!f) {
803 term_printf("could not open '%s'\n", filename);
804 return;
806 while (size != 0) {
807 l = sizeof(buf);
808 if (l > size)
809 l = size;
810 cpu_physical_memory_rw(addr, buf, l, 0);
811 fwrite(buf, 1, l, f);
812 fflush(f);
813 addr += l;
814 size -= l;
816 fclose(f);
819 static void do_sum(uint32_t start, uint32_t size)
821 uint32_t addr;
822 uint8_t buf[1];
823 uint16_t sum;
825 sum = 0;
826 for(addr = start; addr < (start + size); addr++) {
827 cpu_physical_memory_rw(addr, buf, 1, 0);
828 /* BSD sum algorithm ('sum' Unix command) */
829 sum = (sum >> 1) | (sum << 15);
830 sum += buf[0];
832 term_printf("%05d\n", sum);
835 typedef struct {
836 int keycode;
837 const char *name;
838 } KeyDef;
840 static const KeyDef key_defs[] = {
841 { 0x2a, "shift" },
842 { 0x36, "shift_r" },
844 { 0x38, "alt" },
845 { 0xb8, "alt_r" },
846 { 0x64, "altgr" },
847 { 0xe4, "altgr_r" },
848 { 0x1d, "ctrl" },
849 { 0x9d, "ctrl_r" },
851 { 0xdd, "menu" },
853 { 0x01, "esc" },
855 { 0x02, "1" },
856 { 0x03, "2" },
857 { 0x04, "3" },
858 { 0x05, "4" },
859 { 0x06, "5" },
860 { 0x07, "6" },
861 { 0x08, "7" },
862 { 0x09, "8" },
863 { 0x0a, "9" },
864 { 0x0b, "0" },
865 { 0x0c, "minus" },
866 { 0x0d, "equal" },
867 { 0x0e, "backspace" },
869 { 0x0f, "tab" },
870 { 0x10, "q" },
871 { 0x11, "w" },
872 { 0x12, "e" },
873 { 0x13, "r" },
874 { 0x14, "t" },
875 { 0x15, "y" },
876 { 0x16, "u" },
877 { 0x17, "i" },
878 { 0x18, "o" },
879 { 0x19, "p" },
881 { 0x1c, "ret" },
883 { 0x1e, "a" },
884 { 0x1f, "s" },
885 { 0x20, "d" },
886 { 0x21, "f" },
887 { 0x22, "g" },
888 { 0x23, "h" },
889 { 0x24, "j" },
890 { 0x25, "k" },
891 { 0x26, "l" },
893 { 0x2c, "z" },
894 { 0x2d, "x" },
895 { 0x2e, "c" },
896 { 0x2f, "v" },
897 { 0x30, "b" },
898 { 0x31, "n" },
899 { 0x32, "m" },
900 { 0x33, "comma" },
901 { 0x34, "dot" },
902 { 0x35, "slash" },
904 { 0x37, "asterisk" },
906 { 0x39, "spc" },
907 { 0x3a, "caps_lock" },
908 { 0x3b, "f1" },
909 { 0x3c, "f2" },
910 { 0x3d, "f3" },
911 { 0x3e, "f4" },
912 { 0x3f, "f5" },
913 { 0x40, "f6" },
914 { 0x41, "f7" },
915 { 0x42, "f8" },
916 { 0x43, "f9" },
917 { 0x44, "f10" },
918 { 0x45, "num_lock" },
919 { 0x46, "scroll_lock" },
921 { 0xb5, "kp_divide" },
922 { 0x37, "kp_multiply" },
923 { 0x4a, "kp_subtract" },
924 { 0x4e, "kp_add" },
925 { 0x9c, "kp_enter" },
926 { 0x53, "kp_decimal" },
927 { 0x54, "sysrq" },
929 { 0x52, "kp_0" },
930 { 0x4f, "kp_1" },
931 { 0x50, "kp_2" },
932 { 0x51, "kp_3" },
933 { 0x4b, "kp_4" },
934 { 0x4c, "kp_5" },
935 { 0x4d, "kp_6" },
936 { 0x47, "kp_7" },
937 { 0x48, "kp_8" },
938 { 0x49, "kp_9" },
940 { 0x56, "<" },
942 { 0x57, "f11" },
943 { 0x58, "f12" },
945 { 0xb7, "print" },
947 { 0xc7, "home" },
948 { 0xc9, "pgup" },
949 { 0xd1, "pgdn" },
950 { 0xcf, "end" },
952 { 0xcb, "left" },
953 { 0xc8, "up" },
954 { 0xd0, "down" },
955 { 0xcd, "right" },
957 { 0xd2, "insert" },
958 { 0xd3, "delete" },
959 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
960 { 0xf0, "stop" },
961 { 0xf1, "again" },
962 { 0xf2, "props" },
963 { 0xf3, "undo" },
964 { 0xf4, "front" },
965 { 0xf5, "copy" },
966 { 0xf6, "open" },
967 { 0xf7, "paste" },
968 { 0xf8, "find" },
969 { 0xf9, "cut" },
970 { 0xfa, "lf" },
971 { 0xfb, "help" },
972 { 0xfc, "meta_l" },
973 { 0xfd, "meta_r" },
974 { 0xfe, "compose" },
975 #endif
976 { 0, NULL },
979 static int get_keycode(const char *key)
981 const KeyDef *p;
982 char *endp;
983 int ret;
985 for(p = key_defs; p->name != NULL; p++) {
986 if (!strcmp(key, p->name))
987 return p->keycode;
989 if (strstart(key, "0x", NULL)) {
990 ret = strtoul(key, &endp, 0);
991 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
992 return ret;
994 return -1;
997 #define MAX_KEYCODES 16
998 static uint8_t keycodes[MAX_KEYCODES];
999 static int nb_pending_keycodes;
1000 static QEMUTimer *key_timer;
1002 static void release_keys(void *opaque)
1004 int keycode;
1006 while (nb_pending_keycodes > 0) {
1007 nb_pending_keycodes--;
1008 keycode = keycodes[nb_pending_keycodes];
1009 if (keycode & 0x80)
1010 kbd_put_keycode(0xe0);
1011 kbd_put_keycode(keycode | 0x80);
1015 static void do_sendkey(const char *string, int has_hold_time, int hold_time)
1017 char keyname_buf[16];
1018 char *separator;
1019 int keyname_len, keycode, i;
1021 if (nb_pending_keycodes > 0) {
1022 qemu_del_timer(key_timer);
1023 release_keys(NULL);
1025 if (!has_hold_time)
1026 hold_time = 100;
1027 i = 0;
1028 while (1) {
1029 separator = strchr(string, '-');
1030 keyname_len = separator ? separator - string : strlen(string);
1031 if (keyname_len > 0) {
1032 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1033 if (keyname_len > sizeof(keyname_buf) - 1) {
1034 term_printf("invalid key: '%s...'\n", keyname_buf);
1035 return;
1037 if (i == MAX_KEYCODES) {
1038 term_printf("too many keys\n");
1039 return;
1041 keyname_buf[keyname_len] = 0;
1042 keycode = get_keycode(keyname_buf);
1043 if (keycode < 0) {
1044 term_printf("unknown key: '%s'\n", keyname_buf);
1045 return;
1047 keycodes[i++] = keycode;
1049 if (!separator)
1050 break;
1051 string = separator + 1;
1053 nb_pending_keycodes = i;
1054 /* key down events */
1055 for (i = 0; i < nb_pending_keycodes; i++) {
1056 keycode = keycodes[i];
1057 if (keycode & 0x80)
1058 kbd_put_keycode(0xe0);
1059 kbd_put_keycode(keycode & 0x7f);
1061 /* delayed key up events */
1062 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
1063 muldiv64(ticks_per_sec, hold_time, 1000));
1066 static int mouse_button_state;
1068 static void do_mouse_move(const char *dx_str, const char *dy_str,
1069 const char *dz_str)
1071 int dx, dy, dz;
1072 dx = strtol(dx_str, NULL, 0);
1073 dy = strtol(dy_str, NULL, 0);
1074 dz = 0;
1075 if (dz_str)
1076 dz = strtol(dz_str, NULL, 0);
1077 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1080 static void do_mouse_button(int button_state)
1082 mouse_button_state = button_state;
1083 kbd_mouse_event(0, 0, 0, mouse_button_state);
1086 static void do_ioport_read(int count, int format, int size, int addr, int has_index, int index)
1088 uint32_t val;
1089 int suffix;
1091 if (has_index) {
1092 cpu_outb(NULL, addr & 0xffff, index & 0xff);
1093 addr++;
1095 addr &= 0xffff;
1097 switch(size) {
1098 default:
1099 case 1:
1100 val = cpu_inb(NULL, addr);
1101 suffix = 'b';
1102 break;
1103 case 2:
1104 val = cpu_inw(NULL, addr);
1105 suffix = 'w';
1106 break;
1107 case 4:
1108 val = cpu_inl(NULL, addr);
1109 suffix = 'l';
1110 break;
1112 term_printf("port%c[0x%04x] = %#0*x\n",
1113 suffix, addr, size * 2, val);
1116 /* boot_set handler */
1117 static QEMUBootSetHandler *qemu_boot_set_handler = NULL;
1118 static void *boot_opaque;
1120 void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
1122 qemu_boot_set_handler = func;
1123 boot_opaque = opaque;
1126 static void do_boot_set(const char *bootdevice)
1128 int res;
1130 if (qemu_boot_set_handler) {
1131 res = qemu_boot_set_handler(boot_opaque, bootdevice);
1132 if (res == 0)
1133 term_printf("boot device list now set to %s\n", bootdevice);
1134 else
1135 term_printf("setting boot device list failed with error %i\n", res);
1136 } else {
1137 term_printf("no function defined to set boot device list for this architecture\n");
1141 static void do_system_reset(void)
1143 qemu_system_reset_request();
1146 static void do_system_powerdown(void)
1148 qemu_system_powerdown_request();
1151 #if defined(TARGET_I386)
1152 static void print_pte(uint32_t addr, uint32_t pte, uint32_t mask)
1154 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
1155 addr,
1156 pte & mask,
1157 pte & PG_GLOBAL_MASK ? 'G' : '-',
1158 pte & PG_PSE_MASK ? 'P' : '-',
1159 pte & PG_DIRTY_MASK ? 'D' : '-',
1160 pte & PG_ACCESSED_MASK ? 'A' : '-',
1161 pte & PG_PCD_MASK ? 'C' : '-',
1162 pte & PG_PWT_MASK ? 'T' : '-',
1163 pte & PG_USER_MASK ? 'U' : '-',
1164 pte & PG_RW_MASK ? 'W' : '-');
1167 static void tlb_info(void)
1169 CPUState *env;
1170 int l1, l2;
1171 uint32_t pgd, pde, pte;
1173 env = mon_get_cpu();
1174 if (!env)
1175 return;
1177 if (!(env->cr[0] & CR0_PG_MASK)) {
1178 term_printf("PG disabled\n");
1179 return;
1181 pgd = env->cr[3] & ~0xfff;
1182 for(l1 = 0; l1 < 1024; l1++) {
1183 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1184 pde = le32_to_cpu(pde);
1185 if (pde & PG_PRESENT_MASK) {
1186 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1187 print_pte((l1 << 22), pde, ~((1 << 20) - 1));
1188 } else {
1189 for(l2 = 0; l2 < 1024; l2++) {
1190 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
1191 (uint8_t *)&pte, 4);
1192 pte = le32_to_cpu(pte);
1193 if (pte & PG_PRESENT_MASK) {
1194 print_pte((l1 << 22) + (l2 << 12),
1195 pte & ~PG_PSE_MASK,
1196 ~0xfff);
1204 static void mem_print(uint32_t *pstart, int *plast_prot,
1205 uint32_t end, int prot)
1207 int prot1;
1208 prot1 = *plast_prot;
1209 if (prot != prot1) {
1210 if (*pstart != -1) {
1211 term_printf("%08x-%08x %08x %c%c%c\n",
1212 *pstart, end, end - *pstart,
1213 prot1 & PG_USER_MASK ? 'u' : '-',
1214 'r',
1215 prot1 & PG_RW_MASK ? 'w' : '-');
1217 if (prot != 0)
1218 *pstart = end;
1219 else
1220 *pstart = -1;
1221 *plast_prot = prot;
1225 static void mem_info(void)
1227 CPUState *env;
1228 int l1, l2, prot, last_prot;
1229 uint32_t pgd, pde, pte, start, end;
1231 env = mon_get_cpu();
1232 if (!env)
1233 return;
1235 if (!(env->cr[0] & CR0_PG_MASK)) {
1236 term_printf("PG disabled\n");
1237 return;
1239 pgd = env->cr[3] & ~0xfff;
1240 last_prot = 0;
1241 start = -1;
1242 for(l1 = 0; l1 < 1024; l1++) {
1243 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1244 pde = le32_to_cpu(pde);
1245 end = l1 << 22;
1246 if (pde & PG_PRESENT_MASK) {
1247 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1248 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1249 mem_print(&start, &last_prot, end, prot);
1250 } else {
1251 for(l2 = 0; l2 < 1024; l2++) {
1252 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
1253 (uint8_t *)&pte, 4);
1254 pte = le32_to_cpu(pte);
1255 end = (l1 << 22) + (l2 << 12);
1256 if (pte & PG_PRESENT_MASK) {
1257 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1258 } else {
1259 prot = 0;
1261 mem_print(&start, &last_prot, end, prot);
1264 } else {
1265 prot = 0;
1266 mem_print(&start, &last_prot, end, prot);
1270 #endif
1272 static void do_info_kqemu(void)
1274 #ifdef USE_KQEMU
1275 CPUState *env;
1276 int val;
1277 val = 0;
1278 env = mon_get_cpu();
1279 if (!env) {
1280 term_printf("No cpu initialized yet");
1281 return;
1283 val = env->kqemu_enabled;
1284 term_printf("kqemu support: ");
1285 switch(val) {
1286 default:
1287 case 0:
1288 term_printf("disabled\n");
1289 break;
1290 case 1:
1291 term_printf("enabled for user code\n");
1292 break;
1293 case 2:
1294 term_printf("enabled for user and kernel code\n");
1295 break;
1297 #else
1298 term_printf("kqemu support: not compiled\n");
1299 #endif
1302 static void do_info_kvm(void)
1304 #if defined(USE_KVM) || defined(CONFIG_KVM)
1305 term_printf("kvm support: ");
1306 if (kvm_enabled())
1307 term_printf("enabled\n");
1308 else
1309 term_printf("disabled\n");
1310 #else
1311 term_printf("kvm support: not compiled\n");
1312 #endif
1315 #ifdef CONFIG_PROFILER
1317 int64_t kqemu_time;
1318 int64_t qemu_time;
1319 int64_t kqemu_exec_count;
1320 int64_t dev_time;
1321 int64_t kqemu_ret_int_count;
1322 int64_t kqemu_ret_excp_count;
1323 int64_t kqemu_ret_intr_count;
1325 static void do_info_profile(void)
1327 int64_t total;
1328 total = qemu_time;
1329 if (total == 0)
1330 total = 1;
1331 term_printf("async time %" PRId64 " (%0.3f)\n",
1332 dev_time, dev_time / (double)ticks_per_sec);
1333 term_printf("qemu time %" PRId64 " (%0.3f)\n",
1334 qemu_time, qemu_time / (double)ticks_per_sec);
1335 term_printf("kqemu time %" PRId64 " (%0.3f %0.1f%%) count=%" PRId64 " int=%" PRId64 " excp=%" PRId64 " intr=%" PRId64 "\n",
1336 kqemu_time, kqemu_time / (double)ticks_per_sec,
1337 kqemu_time / (double)total * 100.0,
1338 kqemu_exec_count,
1339 kqemu_ret_int_count,
1340 kqemu_ret_excp_count,
1341 kqemu_ret_intr_count);
1342 qemu_time = 0;
1343 kqemu_time = 0;
1344 kqemu_exec_count = 0;
1345 dev_time = 0;
1346 kqemu_ret_int_count = 0;
1347 kqemu_ret_excp_count = 0;
1348 kqemu_ret_intr_count = 0;
1349 #ifdef USE_KQEMU
1350 kqemu_record_dump();
1351 #endif
1353 #else
1354 static void do_info_profile(void)
1356 term_printf("Internal profiler not compiled\n");
1358 #endif
1360 /* Capture support */
1361 static LIST_HEAD (capture_list_head, CaptureState) capture_head;
1363 static void do_info_capture (void)
1365 int i;
1366 CaptureState *s;
1368 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1369 term_printf ("[%d]: ", i);
1370 s->ops.info (s->opaque);
1374 static void do_stop_capture (int n)
1376 int i;
1377 CaptureState *s;
1379 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1380 if (i == n) {
1381 s->ops.destroy (s->opaque);
1382 LIST_REMOVE (s, entries);
1383 qemu_free (s);
1384 return;
1389 #ifdef HAS_AUDIO
1390 static void do_wav_capture (const char *path,
1391 int has_freq, int freq,
1392 int has_bits, int bits,
1393 int has_channels, int nchannels)
1395 CaptureState *s;
1397 s = qemu_mallocz (sizeof (*s));
1398 if (!s) {
1399 term_printf ("Not enough memory to add wave capture\n");
1400 return;
1403 freq = has_freq ? freq : 44100;
1404 bits = has_bits ? bits : 16;
1405 nchannels = has_channels ? nchannels : 2;
1407 if (wav_start_capture (s, path, freq, bits, nchannels)) {
1408 term_printf ("Faied to add wave capture\n");
1409 qemu_free (s);
1411 LIST_INSERT_HEAD (&capture_head, s, entries);
1413 #endif
1415 #if defined(TARGET_I386)
1416 static void do_inject_nmi(int cpu_index)
1418 CPUState *env;
1420 for (env = first_cpu; env != NULL; env = env->next_cpu)
1421 if (env->cpu_index == cpu_index) {
1422 if (kvm_enabled())
1423 kvm_inject_interrupt(env, CPU_INTERRUPT_NMI);
1424 else
1425 cpu_interrupt(env, CPU_INTERRUPT_NMI);
1426 break;
1429 #endif
1431 static void do_info_status(void)
1433 if (vm_running)
1434 term_printf("VM status: running\n");
1435 else
1436 term_printf("VM status: paused\n");
1440 static void do_balloon(int value)
1442 ram_addr_t target = value;
1443 qemu_balloon(target << 20);
1446 static void do_info_balloon(void)
1448 ram_addr_t actual;
1450 actual = qemu_balloon_status();
1451 if (kvm_enabled() && !kvm_has_sync_mmu())
1452 term_printf("Using KVM without synchronous MMU, ballooning disabled\n");
1453 else if (actual == 0)
1454 term_printf("Ballooning not activated in VM\n");
1455 else
1456 term_printf("balloon: actual=%d\n", (int)(actual >> 20));
1459 static const term_cmd_t term_cmds[] = {
1460 { "help|?", "s?", do_help,
1461 "[cmd]", "show the help" },
1462 { "commit", "s", do_commit,
1463 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
1464 { "info", "s?", do_info,
1465 "subcommand", "show various information about the system state" },
1466 { "q|quit", "", do_quit,
1467 "", "quit the emulator" },
1468 { "eject", "-fB", do_eject,
1469 "[-f] device", "eject a removable medium (use -f to force it)" },
1470 { "change", "BFs?", do_change,
1471 "device filename [format]", "change a removable medium, optional format" },
1472 { "screendump", "F", do_screen_dump,
1473 "filename", "save screen into PPM image 'filename'" },
1474 { "logfile", "F", do_logfile,
1475 "filename", "output logs to 'filename'" },
1476 { "log", "s", do_log,
1477 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
1478 { "savevm", "s?", do_savevm,
1479 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
1480 { "loadvm", "s", do_loadvm,
1481 "tag|id", "restore a VM snapshot from its tag or id" },
1482 { "delvm", "s", do_delvm,
1483 "tag|id", "delete a VM snapshot from its tag or id" },
1484 { "stop", "", do_stop,
1485 "", "stop emulation", },
1486 { "c|cont", "", do_cont,
1487 "", "resume emulation", },
1488 #ifdef CONFIG_GDBSTUB
1489 { "gdbserver", "s?", do_gdbserver,
1490 "[port]", "start gdbserver session (default port=1234)", },
1491 #endif
1492 { "x", "/l", do_memory_dump,
1493 "/fmt addr", "virtual memory dump starting at 'addr'", },
1494 { "xp", "/l", do_physical_memory_dump,
1495 "/fmt addr", "physical memory dump starting at 'addr'", },
1496 { "p|print", "/l", do_print,
1497 "/fmt expr", "print expression value (use $reg for CPU register access)", },
1498 { "i", "/ii.", do_ioport_read,
1499 "/fmt addr", "I/O port read" },
1501 { "sendkey", "si?", do_sendkey,
1502 "keys [hold_ms]", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)" },
1503 { "system_reset", "", do_system_reset,
1504 "", "reset the system" },
1505 { "system_powerdown", "", do_system_powerdown,
1506 "", "send system power down event" },
1507 { "sum", "ii", do_sum,
1508 "addr size", "compute the checksum of a memory region" },
1509 { "usb_add", "s", do_usb_add,
1510 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1511 { "usb_del", "s", do_usb_del,
1512 "device", "remove USB device 'bus.addr'" },
1513 { "cpu", "i", do_cpu_set,
1514 "index", "set the default CPU" },
1515 { "mouse_move", "sss?", do_mouse_move,
1516 "dx dy [dz]", "send mouse move events" },
1517 { "mouse_button", "i", do_mouse_button,
1518 "state", "change mouse button state (1=L, 2=M, 4=R)" },
1519 { "mouse_set", "i", do_mouse_set,
1520 "index", "set which mouse device receives events" },
1521 #ifdef HAS_AUDIO
1522 { "wavcapture", "si?i?i?", do_wav_capture,
1523 "path [frequency bits channels]",
1524 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1525 #endif
1526 { "stopcapture", "i", do_stop_capture,
1527 "capture index", "stop capture" },
1528 { "memsave", "lis", do_memory_save,
1529 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
1530 { "pmemsave", "lis", do_physical_memory_save,
1531 "addr size file", "save to disk physical memory dump starting at 'addr' of size 'size'", },
1532 { "boot_set", "s", do_boot_set,
1533 "bootdevice", "define new values for the boot device list" },
1534 #if defined(TARGET_I386)
1535 { "nmi", "i", do_inject_nmi,
1536 "cpu", "inject an NMI on the given CPU", },
1537 #endif
1538 { "migrate", "-ds", do_migrate,
1539 "[-d] uri", "migrate to URI (using -d to not wait for completion)" },
1540 { "migrate_cancel", "", do_migrate_cancel,
1541 "", "cancel the current VM migration" },
1542 { "migrate_set_speed", "s", do_migrate_set_speed,
1543 "value", "set maximum speed (in bytes) for migrations" },
1544 { "balloon", "i", do_balloon,
1545 "target", "request VM to change it's memory allocation (in MB)" },
1546 { "cpu_set", "is", do_cpu_set_nr, "cpu [online|offline]", "change cpu state" },
1547 #if defined(TARGET_I386) || defined(TARGET_X86_64)
1548 { "drive_add", "iss", drive_hot_add, "pcibus pcidevfn [file=file][,if=type][,bus=n]\n"
1549 "[,unit=m][,media=d][index=i]\n"
1550 "[,cyls=c,heads=h,secs=s[,trans=t]]\n"
1551 "[snapshot=on|off][,cache=on|off]",
1552 "add drive to PCI storage controller" },
1553 { "pci_add", "iss", device_hot_add, "bus nic|storage|host [[vlan=n][,macaddr=addr][,model=type]] [file=file][,if=type][,bus=nr]... [host=02:00.0[,name=string][,dma=none]", "hot-add PCI device" },
1554 { "pci_del", "ii", device_hot_remove, "bus slot-number", "hot remove PCI device" },
1555 #endif
1556 { NULL, NULL, },
1559 static const term_cmd_t info_cmds[] = {
1560 { "version", "", do_info_version,
1561 "", "show the version of qemu" },
1562 { "network", "", do_info_network,
1563 "", "show the network state" },
1564 { "chardev", "", qemu_chr_info,
1565 "", "show the character devices" },
1566 { "block", "", do_info_block,
1567 "", "show the block devices" },
1568 { "blockstats", "", do_info_blockstats,
1569 "", "show block device statistics" },
1570 { "registers", "", do_info_registers,
1571 "", "show the cpu registers" },
1572 { "cpus", "", do_info_cpus,
1573 "", "show infos for each CPU" },
1574 { "history", "", do_info_history,
1575 "", "show the command line history", },
1576 { "irq", "", irq_info,
1577 "", "show the interrupts statistics (if available)", },
1578 { "pic", "", pic_info,
1579 "", "show i8259 (PIC) state", },
1580 { "pci", "", pci_info,
1581 "", "show PCI info", },
1582 #if defined(TARGET_I386)
1583 { "tlb", "", tlb_info,
1584 "", "show virtual to physical memory mappings", },
1585 { "mem", "", mem_info,
1586 "", "show the active virtual memory mappings", },
1587 { "hpet", "", do_info_hpet,
1588 "", "show state of HPET", },
1589 #endif
1590 { "jit", "", do_info_jit,
1591 "", "show dynamic compiler info", },
1592 { "kqemu", "", do_info_kqemu,
1593 "", "show kqemu information", },
1594 { "kvm", "", do_info_kvm,
1595 "", "show kvm information", },
1596 { "usb", "", usb_info,
1597 "", "show guest USB devices", },
1598 { "usbhost", "", usb_host_info,
1599 "", "show host USB devices", },
1600 { "profile", "", do_info_profile,
1601 "", "show profiling information", },
1602 { "capture", "", do_info_capture,
1603 "", "show capture information" },
1604 { "snapshots", "", do_info_snapshots,
1605 "", "show the currently saved VM snapshots" },
1606 { "status", "", do_info_status,
1607 "", "show the current VM status (running|paused)" },
1608 { "pcmcia", "", pcmcia_info,
1609 "", "show guest PCMCIA status" },
1610 { "mice", "", do_info_mice,
1611 "", "show which guest mouse is receiving events" },
1612 { "vnc", "", do_info_vnc,
1613 "", "show the vnc server status"},
1614 { "name", "", do_info_name,
1615 "", "show the current VM name" },
1616 { "uuid", "", do_info_uuid,
1617 "", "show the current VM UUID" },
1618 #if defined(TARGET_PPC)
1619 { "cpustats", "", do_info_cpu_stats,
1620 "", "show CPU statistics", },
1621 #endif
1622 #if defined(CONFIG_SLIRP)
1623 { "slirp", "", do_info_slirp,
1624 "", "show SLIRP statistics", },
1625 #endif
1626 { "migrate", "", do_info_migrate, "", "show migration status" },
1627 { "balloon", "", do_info_balloon,
1628 "", "show balloon information" },
1629 { NULL, NULL, },
1632 /*******************************************************************/
1634 static const char *pch;
1635 static jmp_buf expr_env;
1637 #define MD_TLONG 0
1638 #define MD_I32 1
1640 typedef struct MonitorDef {
1641 const char *name;
1642 int offset;
1643 target_long (*get_value)(const struct MonitorDef *md, int val);
1644 int type;
1645 } MonitorDef;
1647 #if defined(TARGET_I386)
1648 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
1650 CPUState *env = mon_get_cpu();
1651 if (!env)
1652 return 0;
1653 return env->eip + env->segs[R_CS].base;
1655 #endif
1657 #if defined(TARGET_PPC)
1658 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
1660 CPUState *env = mon_get_cpu();
1661 unsigned int u;
1662 int i;
1664 if (!env)
1665 return 0;
1667 u = 0;
1668 for (i = 0; i < 8; i++)
1669 u |= env->crf[i] << (32 - (4 * i));
1671 return u;
1674 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
1676 CPUState *env = mon_get_cpu();
1677 if (!env)
1678 return 0;
1679 return env->msr;
1682 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
1684 CPUState *env = mon_get_cpu();
1685 if (!env)
1686 return 0;
1687 return env->xer;
1690 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
1692 CPUState *env = mon_get_cpu();
1693 if (!env)
1694 return 0;
1695 return cpu_ppc_load_decr(env);
1698 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
1700 CPUState *env = mon_get_cpu();
1701 if (!env)
1702 return 0;
1703 return cpu_ppc_load_tbu(env);
1706 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
1708 CPUState *env = mon_get_cpu();
1709 if (!env)
1710 return 0;
1711 return cpu_ppc_load_tbl(env);
1713 #endif
1715 #if defined(TARGET_SPARC)
1716 #ifndef TARGET_SPARC64
1717 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
1719 CPUState *env = mon_get_cpu();
1720 if (!env)
1721 return 0;
1722 return GET_PSR(env);
1724 #endif
1726 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
1728 CPUState *env = mon_get_cpu();
1729 if (!env)
1730 return 0;
1731 return env->regwptr[val];
1733 #endif
1735 static const MonitorDef monitor_defs[] = {
1736 #ifdef TARGET_I386
1738 #define SEG(name, seg) \
1739 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
1740 { name ".base", offsetof(CPUState, segs[seg].base) },\
1741 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
1743 { "eax", offsetof(CPUState, regs[0]) },
1744 { "ecx", offsetof(CPUState, regs[1]) },
1745 { "edx", offsetof(CPUState, regs[2]) },
1746 { "ebx", offsetof(CPUState, regs[3]) },
1747 { "esp|sp", offsetof(CPUState, regs[4]) },
1748 { "ebp|fp", offsetof(CPUState, regs[5]) },
1749 { "esi", offsetof(CPUState, regs[6]) },
1750 { "edi", offsetof(CPUState, regs[7]) },
1751 #ifdef TARGET_X86_64
1752 { "r8", offsetof(CPUState, regs[8]) },
1753 { "r9", offsetof(CPUState, regs[9]) },
1754 { "r10", offsetof(CPUState, regs[10]) },
1755 { "r11", offsetof(CPUState, regs[11]) },
1756 { "r12", offsetof(CPUState, regs[12]) },
1757 { "r13", offsetof(CPUState, regs[13]) },
1758 { "r14", offsetof(CPUState, regs[14]) },
1759 { "r15", offsetof(CPUState, regs[15]) },
1760 #endif
1761 { "eflags", offsetof(CPUState, eflags) },
1762 { "eip", offsetof(CPUState, eip) },
1763 SEG("cs", R_CS)
1764 SEG("ds", R_DS)
1765 SEG("es", R_ES)
1766 SEG("ss", R_SS)
1767 SEG("fs", R_FS)
1768 SEG("gs", R_GS)
1769 { "pc", 0, monitor_get_pc, },
1770 #elif defined(TARGET_PPC)
1771 /* General purpose registers */
1772 { "r0", offsetof(CPUState, gpr[0]) },
1773 { "r1", offsetof(CPUState, gpr[1]) },
1774 { "r2", offsetof(CPUState, gpr[2]) },
1775 { "r3", offsetof(CPUState, gpr[3]) },
1776 { "r4", offsetof(CPUState, gpr[4]) },
1777 { "r5", offsetof(CPUState, gpr[5]) },
1778 { "r6", offsetof(CPUState, gpr[6]) },
1779 { "r7", offsetof(CPUState, gpr[7]) },
1780 { "r8", offsetof(CPUState, gpr[8]) },
1781 { "r9", offsetof(CPUState, gpr[9]) },
1782 { "r10", offsetof(CPUState, gpr[10]) },
1783 { "r11", offsetof(CPUState, gpr[11]) },
1784 { "r12", offsetof(CPUState, gpr[12]) },
1785 { "r13", offsetof(CPUState, gpr[13]) },
1786 { "r14", offsetof(CPUState, gpr[14]) },
1787 { "r15", offsetof(CPUState, gpr[15]) },
1788 { "r16", offsetof(CPUState, gpr[16]) },
1789 { "r17", offsetof(CPUState, gpr[17]) },
1790 { "r18", offsetof(CPUState, gpr[18]) },
1791 { "r19", offsetof(CPUState, gpr[19]) },
1792 { "r20", offsetof(CPUState, gpr[20]) },
1793 { "r21", offsetof(CPUState, gpr[21]) },
1794 { "r22", offsetof(CPUState, gpr[22]) },
1795 { "r23", offsetof(CPUState, gpr[23]) },
1796 { "r24", offsetof(CPUState, gpr[24]) },
1797 { "r25", offsetof(CPUState, gpr[25]) },
1798 { "r26", offsetof(CPUState, gpr[26]) },
1799 { "r27", offsetof(CPUState, gpr[27]) },
1800 { "r28", offsetof(CPUState, gpr[28]) },
1801 { "r29", offsetof(CPUState, gpr[29]) },
1802 { "r30", offsetof(CPUState, gpr[30]) },
1803 { "r31", offsetof(CPUState, gpr[31]) },
1804 /* Floating point registers */
1805 { "f0", offsetof(CPUState, fpr[0]) },
1806 { "f1", offsetof(CPUState, fpr[1]) },
1807 { "f2", offsetof(CPUState, fpr[2]) },
1808 { "f3", offsetof(CPUState, fpr[3]) },
1809 { "f4", offsetof(CPUState, fpr[4]) },
1810 { "f5", offsetof(CPUState, fpr[5]) },
1811 { "f6", offsetof(CPUState, fpr[6]) },
1812 { "f7", offsetof(CPUState, fpr[7]) },
1813 { "f8", offsetof(CPUState, fpr[8]) },
1814 { "f9", offsetof(CPUState, fpr[9]) },
1815 { "f10", offsetof(CPUState, fpr[10]) },
1816 { "f11", offsetof(CPUState, fpr[11]) },
1817 { "f12", offsetof(CPUState, fpr[12]) },
1818 { "f13", offsetof(CPUState, fpr[13]) },
1819 { "f14", offsetof(CPUState, fpr[14]) },
1820 { "f15", offsetof(CPUState, fpr[15]) },
1821 { "f16", offsetof(CPUState, fpr[16]) },
1822 { "f17", offsetof(CPUState, fpr[17]) },
1823 { "f18", offsetof(CPUState, fpr[18]) },
1824 { "f19", offsetof(CPUState, fpr[19]) },
1825 { "f20", offsetof(CPUState, fpr[20]) },
1826 { "f21", offsetof(CPUState, fpr[21]) },
1827 { "f22", offsetof(CPUState, fpr[22]) },
1828 { "f23", offsetof(CPUState, fpr[23]) },
1829 { "f24", offsetof(CPUState, fpr[24]) },
1830 { "f25", offsetof(CPUState, fpr[25]) },
1831 { "f26", offsetof(CPUState, fpr[26]) },
1832 { "f27", offsetof(CPUState, fpr[27]) },
1833 { "f28", offsetof(CPUState, fpr[28]) },
1834 { "f29", offsetof(CPUState, fpr[29]) },
1835 { "f30", offsetof(CPUState, fpr[30]) },
1836 { "f31", offsetof(CPUState, fpr[31]) },
1837 { "fpscr", offsetof(CPUState, fpscr) },
1838 /* Next instruction pointer */
1839 { "nip|pc", offsetof(CPUState, nip) },
1840 { "lr", offsetof(CPUState, lr) },
1841 { "ctr", offsetof(CPUState, ctr) },
1842 { "decr", 0, &monitor_get_decr, },
1843 { "ccr", 0, &monitor_get_ccr, },
1844 /* Machine state register */
1845 { "msr", 0, &monitor_get_msr, },
1846 { "xer", 0, &monitor_get_xer, },
1847 { "tbu", 0, &monitor_get_tbu, },
1848 { "tbl", 0, &monitor_get_tbl, },
1849 #if defined(TARGET_PPC64)
1850 /* Address space register */
1851 { "asr", offsetof(CPUState, asr) },
1852 #endif
1853 /* Segment registers */
1854 { "sdr1", offsetof(CPUState, sdr1) },
1855 { "sr0", offsetof(CPUState, sr[0]) },
1856 { "sr1", offsetof(CPUState, sr[1]) },
1857 { "sr2", offsetof(CPUState, sr[2]) },
1858 { "sr3", offsetof(CPUState, sr[3]) },
1859 { "sr4", offsetof(CPUState, sr[4]) },
1860 { "sr5", offsetof(CPUState, sr[5]) },
1861 { "sr6", offsetof(CPUState, sr[6]) },
1862 { "sr7", offsetof(CPUState, sr[7]) },
1863 { "sr8", offsetof(CPUState, sr[8]) },
1864 { "sr9", offsetof(CPUState, sr[9]) },
1865 { "sr10", offsetof(CPUState, sr[10]) },
1866 { "sr11", offsetof(CPUState, sr[11]) },
1867 { "sr12", offsetof(CPUState, sr[12]) },
1868 { "sr13", offsetof(CPUState, sr[13]) },
1869 { "sr14", offsetof(CPUState, sr[14]) },
1870 { "sr15", offsetof(CPUState, sr[15]) },
1871 /* Too lazy to put BATs and SPRs ... */
1872 #elif defined(TARGET_SPARC)
1873 { "g0", offsetof(CPUState, gregs[0]) },
1874 { "g1", offsetof(CPUState, gregs[1]) },
1875 { "g2", offsetof(CPUState, gregs[2]) },
1876 { "g3", offsetof(CPUState, gregs[3]) },
1877 { "g4", offsetof(CPUState, gregs[4]) },
1878 { "g5", offsetof(CPUState, gregs[5]) },
1879 { "g6", offsetof(CPUState, gregs[6]) },
1880 { "g7", offsetof(CPUState, gregs[7]) },
1881 { "o0", 0, monitor_get_reg },
1882 { "o1", 1, monitor_get_reg },
1883 { "o2", 2, monitor_get_reg },
1884 { "o3", 3, monitor_get_reg },
1885 { "o4", 4, monitor_get_reg },
1886 { "o5", 5, monitor_get_reg },
1887 { "o6", 6, monitor_get_reg },
1888 { "o7", 7, monitor_get_reg },
1889 { "l0", 8, monitor_get_reg },
1890 { "l1", 9, monitor_get_reg },
1891 { "l2", 10, monitor_get_reg },
1892 { "l3", 11, monitor_get_reg },
1893 { "l4", 12, monitor_get_reg },
1894 { "l5", 13, monitor_get_reg },
1895 { "l6", 14, monitor_get_reg },
1896 { "l7", 15, monitor_get_reg },
1897 { "i0", 16, monitor_get_reg },
1898 { "i1", 17, monitor_get_reg },
1899 { "i2", 18, monitor_get_reg },
1900 { "i3", 19, monitor_get_reg },
1901 { "i4", 20, monitor_get_reg },
1902 { "i5", 21, monitor_get_reg },
1903 { "i6", 22, monitor_get_reg },
1904 { "i7", 23, monitor_get_reg },
1905 { "pc", offsetof(CPUState, pc) },
1906 { "npc", offsetof(CPUState, npc) },
1907 { "y", offsetof(CPUState, y) },
1908 #ifndef TARGET_SPARC64
1909 { "psr", 0, &monitor_get_psr, },
1910 { "wim", offsetof(CPUState, wim) },
1911 #endif
1912 { "tbr", offsetof(CPUState, tbr) },
1913 { "fsr", offsetof(CPUState, fsr) },
1914 { "f0", offsetof(CPUState, fpr[0]) },
1915 { "f1", offsetof(CPUState, fpr[1]) },
1916 { "f2", offsetof(CPUState, fpr[2]) },
1917 { "f3", offsetof(CPUState, fpr[3]) },
1918 { "f4", offsetof(CPUState, fpr[4]) },
1919 { "f5", offsetof(CPUState, fpr[5]) },
1920 { "f6", offsetof(CPUState, fpr[6]) },
1921 { "f7", offsetof(CPUState, fpr[7]) },
1922 { "f8", offsetof(CPUState, fpr[8]) },
1923 { "f9", offsetof(CPUState, fpr[9]) },
1924 { "f10", offsetof(CPUState, fpr[10]) },
1925 { "f11", offsetof(CPUState, fpr[11]) },
1926 { "f12", offsetof(CPUState, fpr[12]) },
1927 { "f13", offsetof(CPUState, fpr[13]) },
1928 { "f14", offsetof(CPUState, fpr[14]) },
1929 { "f15", offsetof(CPUState, fpr[15]) },
1930 { "f16", offsetof(CPUState, fpr[16]) },
1931 { "f17", offsetof(CPUState, fpr[17]) },
1932 { "f18", offsetof(CPUState, fpr[18]) },
1933 { "f19", offsetof(CPUState, fpr[19]) },
1934 { "f20", offsetof(CPUState, fpr[20]) },
1935 { "f21", offsetof(CPUState, fpr[21]) },
1936 { "f22", offsetof(CPUState, fpr[22]) },
1937 { "f23", offsetof(CPUState, fpr[23]) },
1938 { "f24", offsetof(CPUState, fpr[24]) },
1939 { "f25", offsetof(CPUState, fpr[25]) },
1940 { "f26", offsetof(CPUState, fpr[26]) },
1941 { "f27", offsetof(CPUState, fpr[27]) },
1942 { "f28", offsetof(CPUState, fpr[28]) },
1943 { "f29", offsetof(CPUState, fpr[29]) },
1944 { "f30", offsetof(CPUState, fpr[30]) },
1945 { "f31", offsetof(CPUState, fpr[31]) },
1946 #ifdef TARGET_SPARC64
1947 { "f32", offsetof(CPUState, fpr[32]) },
1948 { "f34", offsetof(CPUState, fpr[34]) },
1949 { "f36", offsetof(CPUState, fpr[36]) },
1950 { "f38", offsetof(CPUState, fpr[38]) },
1951 { "f40", offsetof(CPUState, fpr[40]) },
1952 { "f42", offsetof(CPUState, fpr[42]) },
1953 { "f44", offsetof(CPUState, fpr[44]) },
1954 { "f46", offsetof(CPUState, fpr[46]) },
1955 { "f48", offsetof(CPUState, fpr[48]) },
1956 { "f50", offsetof(CPUState, fpr[50]) },
1957 { "f52", offsetof(CPUState, fpr[52]) },
1958 { "f54", offsetof(CPUState, fpr[54]) },
1959 { "f56", offsetof(CPUState, fpr[56]) },
1960 { "f58", offsetof(CPUState, fpr[58]) },
1961 { "f60", offsetof(CPUState, fpr[60]) },
1962 { "f62", offsetof(CPUState, fpr[62]) },
1963 { "asi", offsetof(CPUState, asi) },
1964 { "pstate", offsetof(CPUState, pstate) },
1965 { "cansave", offsetof(CPUState, cansave) },
1966 { "canrestore", offsetof(CPUState, canrestore) },
1967 { "otherwin", offsetof(CPUState, otherwin) },
1968 { "wstate", offsetof(CPUState, wstate) },
1969 { "cleanwin", offsetof(CPUState, cleanwin) },
1970 { "fprs", offsetof(CPUState, fprs) },
1971 #endif
1972 #endif
1973 { NULL },
1976 static void expr_error(const char *msg)
1978 term_printf("%s\n", msg);
1979 longjmp(expr_env, 1);
1982 /* return 0 if OK, -1 if not found, -2 if no CPU defined */
1983 static int get_monitor_def(target_long *pval, const char *name)
1985 const MonitorDef *md;
1986 void *ptr;
1988 for(md = monitor_defs; md->name != NULL; md++) {
1989 if (compare_cmd(name, md->name)) {
1990 if (md->get_value) {
1991 *pval = md->get_value(md, md->offset);
1992 } else {
1993 CPUState *env = mon_get_cpu();
1994 if (!env)
1995 return -2;
1996 ptr = (uint8_t *)env + md->offset;
1997 switch(md->type) {
1998 case MD_I32:
1999 *pval = *(int32_t *)ptr;
2000 break;
2001 case MD_TLONG:
2002 *pval = *(target_long *)ptr;
2003 break;
2004 default:
2005 *pval = 0;
2006 break;
2009 return 0;
2012 return -1;
2015 static void next(void)
2017 if (pch != '\0') {
2018 pch++;
2019 while (qemu_isspace(*pch))
2020 pch++;
2024 static int64_t expr_sum(void);
2026 static int64_t expr_unary(void)
2028 int64_t n;
2029 char *p;
2030 int ret;
2032 switch(*pch) {
2033 case '+':
2034 next();
2035 n = expr_unary();
2036 break;
2037 case '-':
2038 next();
2039 n = -expr_unary();
2040 break;
2041 case '~':
2042 next();
2043 n = ~expr_unary();
2044 break;
2045 case '(':
2046 next();
2047 n = expr_sum();
2048 if (*pch != ')') {
2049 expr_error("')' expected");
2051 next();
2052 break;
2053 case '\'':
2054 pch++;
2055 if (*pch == '\0')
2056 expr_error("character constant expected");
2057 n = *pch;
2058 pch++;
2059 if (*pch != '\'')
2060 expr_error("missing terminating \' character");
2061 next();
2062 break;
2063 case '$':
2065 char buf[128], *q;
2066 target_long reg=0;
2068 pch++;
2069 q = buf;
2070 while ((*pch >= 'a' && *pch <= 'z') ||
2071 (*pch >= 'A' && *pch <= 'Z') ||
2072 (*pch >= '0' && *pch <= '9') ||
2073 *pch == '_' || *pch == '.') {
2074 if ((q - buf) < sizeof(buf) - 1)
2075 *q++ = *pch;
2076 pch++;
2078 while (qemu_isspace(*pch))
2079 pch++;
2080 *q = 0;
2081 ret = get_monitor_def(&reg, buf);
2082 if (ret == -1)
2083 expr_error("unknown register");
2084 else if (ret == -2)
2085 expr_error("no cpu defined");
2086 n = reg;
2088 break;
2089 case '\0':
2090 expr_error("unexpected end of expression");
2091 n = 0;
2092 break;
2093 default:
2094 #if TARGET_PHYS_ADDR_BITS > 32
2095 n = strtoull(pch, &p, 0);
2096 #else
2097 n = strtoul(pch, &p, 0);
2098 #endif
2099 if (pch == p) {
2100 expr_error("invalid char in expression");
2102 pch = p;
2103 while (qemu_isspace(*pch))
2104 pch++;
2105 break;
2107 return n;
2111 static int64_t expr_prod(void)
2113 int64_t val, val2;
2114 int op;
2116 val = expr_unary();
2117 for(;;) {
2118 op = *pch;
2119 if (op != '*' && op != '/' && op != '%')
2120 break;
2121 next();
2122 val2 = expr_unary();
2123 switch(op) {
2124 default:
2125 case '*':
2126 val *= val2;
2127 break;
2128 case '/':
2129 case '%':
2130 if (val2 == 0)
2131 expr_error("division by zero");
2132 if (op == '/')
2133 val /= val2;
2134 else
2135 val %= val2;
2136 break;
2139 return val;
2142 static int64_t expr_logic(void)
2144 int64_t val, val2;
2145 int op;
2147 val = expr_prod();
2148 for(;;) {
2149 op = *pch;
2150 if (op != '&' && op != '|' && op != '^')
2151 break;
2152 next();
2153 val2 = expr_prod();
2154 switch(op) {
2155 default:
2156 case '&':
2157 val &= val2;
2158 break;
2159 case '|':
2160 val |= val2;
2161 break;
2162 case '^':
2163 val ^= val2;
2164 break;
2167 return val;
2170 static int64_t expr_sum(void)
2172 int64_t val, val2;
2173 int op;
2175 val = expr_logic();
2176 for(;;) {
2177 op = *pch;
2178 if (op != '+' && op != '-')
2179 break;
2180 next();
2181 val2 = expr_logic();
2182 if (op == '+')
2183 val += val2;
2184 else
2185 val -= val2;
2187 return val;
2190 static int get_expr(int64_t *pval, const char **pp)
2192 pch = *pp;
2193 if (setjmp(expr_env)) {
2194 *pp = pch;
2195 return -1;
2197 while (qemu_isspace(*pch))
2198 pch++;
2199 *pval = expr_sum();
2200 *pp = pch;
2201 return 0;
2204 static int get_str(char *buf, int buf_size, const char **pp)
2206 const char *p;
2207 char *q;
2208 int c;
2210 q = buf;
2211 p = *pp;
2212 while (qemu_isspace(*p))
2213 p++;
2214 if (*p == '\0') {
2215 fail:
2216 *q = '\0';
2217 *pp = p;
2218 return -1;
2220 if (*p == '\"') {
2221 p++;
2222 while (*p != '\0' && *p != '\"') {
2223 if (*p == '\\') {
2224 p++;
2225 c = *p++;
2226 switch(c) {
2227 case 'n':
2228 c = '\n';
2229 break;
2230 case 'r':
2231 c = '\r';
2232 break;
2233 case '\\':
2234 case '\'':
2235 case '\"':
2236 break;
2237 default:
2238 qemu_printf("unsupported escape code: '\\%c'\n", c);
2239 goto fail;
2241 if ((q - buf) < buf_size - 1) {
2242 *q++ = c;
2244 } else {
2245 if ((q - buf) < buf_size - 1) {
2246 *q++ = *p;
2248 p++;
2251 if (*p != '\"') {
2252 qemu_printf("unterminated string\n");
2253 goto fail;
2255 p++;
2256 } else {
2257 while (*p != '\0' && !qemu_isspace(*p)) {
2258 if ((q - buf) < buf_size - 1) {
2259 *q++ = *p;
2261 p++;
2264 *q = '\0';
2265 *pp = p;
2266 return 0;
2269 static int default_fmt_format = 'x';
2270 static int default_fmt_size = 4;
2272 #define MAX_ARGS 16
2274 static void monitor_handle_command(const char *cmdline)
2276 const char *p, *pstart, *typestr;
2277 char *q;
2278 int c, nb_args, len, i, has_arg;
2279 const term_cmd_t *cmd;
2280 char cmdname[256];
2281 char buf[1024];
2282 void *str_allocated[MAX_ARGS];
2283 void *args[MAX_ARGS];
2284 void (*handler_0)(void);
2285 void (*handler_1)(void *arg0);
2286 void (*handler_2)(void *arg0, void *arg1);
2287 void (*handler_3)(void *arg0, void *arg1, void *arg2);
2288 void (*handler_4)(void *arg0, void *arg1, void *arg2, void *arg3);
2289 void (*handler_5)(void *arg0, void *arg1, void *arg2, void *arg3,
2290 void *arg4);
2291 void (*handler_6)(void *arg0, void *arg1, void *arg2, void *arg3,
2292 void *arg4, void *arg5);
2293 void (*handler_7)(void *arg0, void *arg1, void *arg2, void *arg3,
2294 void *arg4, void *arg5, void *arg6);
2296 #ifdef DEBUG
2297 term_printf("command='%s'\n", cmdline);
2298 #endif
2300 /* extract the command name */
2301 p = cmdline;
2302 q = cmdname;
2303 while (qemu_isspace(*p))
2304 p++;
2305 if (*p == '\0')
2306 return;
2307 pstart = p;
2308 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
2309 p++;
2310 len = p - pstart;
2311 if (len > sizeof(cmdname) - 1)
2312 len = sizeof(cmdname) - 1;
2313 memcpy(cmdname, pstart, len);
2314 cmdname[len] = '\0';
2316 /* find the command */
2317 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2318 if (compare_cmd(cmdname, cmd->name))
2319 goto found;
2321 term_printf("unknown command: '%s'\n", cmdname);
2322 return;
2323 found:
2325 for(i = 0; i < MAX_ARGS; i++)
2326 str_allocated[i] = NULL;
2328 /* parse the parameters */
2329 typestr = cmd->args_type;
2330 nb_args = 0;
2331 for(;;) {
2332 c = *typestr;
2333 if (c == '\0')
2334 break;
2335 typestr++;
2336 switch(c) {
2337 case 'F':
2338 case 'B':
2339 case 's':
2341 int ret;
2342 char *str;
2344 while (qemu_isspace(*p))
2345 p++;
2346 if (*typestr == '?') {
2347 typestr++;
2348 if (*p == '\0') {
2349 /* no optional string: NULL argument */
2350 str = NULL;
2351 goto add_str;
2354 ret = get_str(buf, sizeof(buf), &p);
2355 if (ret < 0) {
2356 switch(c) {
2357 case 'F':
2358 term_printf("%s: filename expected\n", cmdname);
2359 break;
2360 case 'B':
2361 term_printf("%s: block device name expected\n", cmdname);
2362 break;
2363 default:
2364 term_printf("%s: string expected\n", cmdname);
2365 break;
2367 goto fail;
2369 str = qemu_malloc(strlen(buf) + 1);
2370 pstrcpy(str, sizeof(buf), buf);
2371 str_allocated[nb_args] = str;
2372 add_str:
2373 if (nb_args >= MAX_ARGS) {
2374 error_args:
2375 term_printf("%s: too many arguments\n", cmdname);
2376 goto fail;
2378 args[nb_args++] = str;
2380 break;
2381 case '/':
2383 int count, format, size;
2385 while (qemu_isspace(*p))
2386 p++;
2387 if (*p == '/') {
2388 /* format found */
2389 p++;
2390 count = 1;
2391 if (qemu_isdigit(*p)) {
2392 count = 0;
2393 while (qemu_isdigit(*p)) {
2394 count = count * 10 + (*p - '0');
2395 p++;
2398 size = -1;
2399 format = -1;
2400 for(;;) {
2401 switch(*p) {
2402 case 'o':
2403 case 'd':
2404 case 'u':
2405 case 'x':
2406 case 'i':
2407 case 'c':
2408 format = *p++;
2409 break;
2410 case 'b':
2411 size = 1;
2412 p++;
2413 break;
2414 case 'h':
2415 size = 2;
2416 p++;
2417 break;
2418 case 'w':
2419 size = 4;
2420 p++;
2421 break;
2422 case 'g':
2423 case 'L':
2424 size = 8;
2425 p++;
2426 break;
2427 default:
2428 goto next;
2431 next:
2432 if (*p != '\0' && !qemu_isspace(*p)) {
2433 term_printf("invalid char in format: '%c'\n", *p);
2434 goto fail;
2436 if (format < 0)
2437 format = default_fmt_format;
2438 if (format != 'i') {
2439 /* for 'i', not specifying a size gives -1 as size */
2440 if (size < 0)
2441 size = default_fmt_size;
2442 default_fmt_size = size;
2444 default_fmt_format = format;
2445 } else {
2446 count = 1;
2447 format = default_fmt_format;
2448 if (format != 'i') {
2449 size = default_fmt_size;
2450 } else {
2451 size = -1;
2454 if (nb_args + 3 > MAX_ARGS)
2455 goto error_args;
2456 args[nb_args++] = (void*)(long)count;
2457 args[nb_args++] = (void*)(long)format;
2458 args[nb_args++] = (void*)(long)size;
2460 break;
2461 case 'i':
2462 case 'l':
2464 int64_t val;
2466 while (qemu_isspace(*p))
2467 p++;
2468 if (*typestr == '?' || *typestr == '.') {
2469 if (*typestr == '?') {
2470 if (*p == '\0')
2471 has_arg = 0;
2472 else
2473 has_arg = 1;
2474 } else {
2475 if (*p == '.') {
2476 p++;
2477 while (qemu_isspace(*p))
2478 p++;
2479 has_arg = 1;
2480 } else {
2481 has_arg = 0;
2484 typestr++;
2485 if (nb_args >= MAX_ARGS)
2486 goto error_args;
2487 args[nb_args++] = (void *)(long)has_arg;
2488 if (!has_arg) {
2489 if (nb_args >= MAX_ARGS)
2490 goto error_args;
2491 val = -1;
2492 goto add_num;
2495 if (get_expr(&val, &p))
2496 goto fail;
2497 add_num:
2498 if (c == 'i') {
2499 if (nb_args >= MAX_ARGS)
2500 goto error_args;
2501 args[nb_args++] = (void *)(long)val;
2502 } else {
2503 if ((nb_args + 1) >= MAX_ARGS)
2504 goto error_args;
2505 #if TARGET_PHYS_ADDR_BITS > 32
2506 args[nb_args++] = (void *)(long)((val >> 32) & 0xffffffff);
2507 #else
2508 args[nb_args++] = (void *)0;
2509 #endif
2510 args[nb_args++] = (void *)(long)(val & 0xffffffff);
2513 break;
2514 case '-':
2516 int has_option;
2517 /* option */
2519 c = *typestr++;
2520 if (c == '\0')
2521 goto bad_type;
2522 while (qemu_isspace(*p))
2523 p++;
2524 has_option = 0;
2525 if (*p == '-') {
2526 p++;
2527 if (*p != c) {
2528 term_printf("%s: unsupported option -%c\n",
2529 cmdname, *p);
2530 goto fail;
2532 p++;
2533 has_option = 1;
2535 if (nb_args >= MAX_ARGS)
2536 goto error_args;
2537 args[nb_args++] = (void *)(long)has_option;
2539 break;
2540 default:
2541 bad_type:
2542 term_printf("%s: unknown type '%c'\n", cmdname, c);
2543 goto fail;
2546 /* check that all arguments were parsed */
2547 while (qemu_isspace(*p))
2548 p++;
2549 if (*p != '\0') {
2550 term_printf("%s: extraneous characters at the end of line\n",
2551 cmdname);
2552 goto fail;
2555 switch(nb_args) {
2556 case 0:
2557 handler_0 = cmd->handler;
2558 handler_0();
2559 break;
2560 case 1:
2561 handler_1 = cmd->handler;
2562 handler_1(args[0]);
2563 break;
2564 case 2:
2565 handler_2 = cmd->handler;
2566 handler_2(args[0], args[1]);
2567 break;
2568 case 3:
2569 handler_3 = cmd->handler;
2570 handler_3(args[0], args[1], args[2]);
2571 break;
2572 case 4:
2573 handler_4 = cmd->handler;
2574 handler_4(args[0], args[1], args[2], args[3]);
2575 break;
2576 case 5:
2577 handler_5 = cmd->handler;
2578 handler_5(args[0], args[1], args[2], args[3], args[4]);
2579 break;
2580 case 6:
2581 handler_6 = cmd->handler;
2582 handler_6(args[0], args[1], args[2], args[3], args[4], args[5]);
2583 break;
2584 case 7:
2585 handler_7 = cmd->handler;
2586 handler_7(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
2587 break;
2588 default:
2589 term_printf("unsupported number of arguments: %d\n", nb_args);
2590 goto fail;
2592 fail:
2593 for(i = 0; i < MAX_ARGS; i++)
2594 qemu_free(str_allocated[i]);
2595 return;
2598 static void cmd_completion(const char *name, const char *list)
2600 const char *p, *pstart;
2601 char cmd[128];
2602 int len;
2604 p = list;
2605 for(;;) {
2606 pstart = p;
2607 p = strchr(p, '|');
2608 if (!p)
2609 p = pstart + strlen(pstart);
2610 len = p - pstart;
2611 if (len > sizeof(cmd) - 2)
2612 len = sizeof(cmd) - 2;
2613 memcpy(cmd, pstart, len);
2614 cmd[len] = '\0';
2615 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
2616 add_completion(cmd);
2618 if (*p == '\0')
2619 break;
2620 p++;
2624 static void file_completion(const char *input)
2626 DIR *ffs;
2627 struct dirent *d;
2628 char path[1024];
2629 char file[1024], file_prefix[1024];
2630 int input_path_len;
2631 const char *p;
2633 p = strrchr(input, '/');
2634 if (!p) {
2635 input_path_len = 0;
2636 pstrcpy(file_prefix, sizeof(file_prefix), input);
2637 pstrcpy(path, sizeof(path), ".");
2638 } else {
2639 input_path_len = p - input + 1;
2640 memcpy(path, input, input_path_len);
2641 if (input_path_len > sizeof(path) - 1)
2642 input_path_len = sizeof(path) - 1;
2643 path[input_path_len] = '\0';
2644 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
2646 #ifdef DEBUG_COMPLETION
2647 term_printf("input='%s' path='%s' prefix='%s'\n", input, path, file_prefix);
2648 #endif
2649 ffs = opendir(path);
2650 if (!ffs)
2651 return;
2652 for(;;) {
2653 struct stat sb;
2654 d = readdir(ffs);
2655 if (!d)
2656 break;
2657 if (strstart(d->d_name, file_prefix, NULL)) {
2658 memcpy(file, input, input_path_len);
2659 if (input_path_len < sizeof(file))
2660 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
2661 d->d_name);
2662 /* stat the file to find out if it's a directory.
2663 * In that case add a slash to speed up typing long paths
2665 stat(file, &sb);
2666 if(S_ISDIR(sb.st_mode))
2667 pstrcat(file, sizeof(file), "/");
2668 add_completion(file);
2671 closedir(ffs);
2674 static void block_completion_it(void *opaque, const char *name)
2676 const char *input = opaque;
2678 if (input[0] == '\0' ||
2679 !strncmp(name, (char *)input, strlen(input))) {
2680 add_completion(name);
2684 /* NOTE: this parser is an approximate form of the real command parser */
2685 static void parse_cmdline(const char *cmdline,
2686 int *pnb_args, char **args)
2688 const char *p;
2689 int nb_args, ret;
2690 char buf[1024];
2692 p = cmdline;
2693 nb_args = 0;
2694 for(;;) {
2695 while (qemu_isspace(*p))
2696 p++;
2697 if (*p == '\0')
2698 break;
2699 if (nb_args >= MAX_ARGS)
2700 break;
2701 ret = get_str(buf, sizeof(buf), &p);
2702 args[nb_args] = qemu_strdup(buf);
2703 nb_args++;
2704 if (ret < 0)
2705 break;
2707 *pnb_args = nb_args;
2710 void readline_find_completion(const char *cmdline)
2712 const char *cmdname;
2713 char *args[MAX_ARGS];
2714 int nb_args, i, len;
2715 const char *ptype, *str;
2716 const term_cmd_t *cmd;
2717 const KeyDef *key;
2719 parse_cmdline(cmdline, &nb_args, args);
2720 #ifdef DEBUG_COMPLETION
2721 for(i = 0; i < nb_args; i++) {
2722 term_printf("arg%d = '%s'\n", i, (char *)args[i]);
2724 #endif
2726 /* if the line ends with a space, it means we want to complete the
2727 next arg */
2728 len = strlen(cmdline);
2729 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
2730 if (nb_args >= MAX_ARGS)
2731 return;
2732 args[nb_args++] = qemu_strdup("");
2734 if (nb_args <= 1) {
2735 /* command completion */
2736 if (nb_args == 0)
2737 cmdname = "";
2738 else
2739 cmdname = args[0];
2740 completion_index = strlen(cmdname);
2741 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2742 cmd_completion(cmdname, cmd->name);
2744 } else {
2745 /* find the command */
2746 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2747 if (compare_cmd(args[0], cmd->name))
2748 goto found;
2750 return;
2751 found:
2752 ptype = cmd->args_type;
2753 for(i = 0; i < nb_args - 2; i++) {
2754 if (*ptype != '\0') {
2755 ptype++;
2756 while (*ptype == '?')
2757 ptype++;
2760 str = args[nb_args - 1];
2761 switch(*ptype) {
2762 case 'F':
2763 /* file completion */
2764 completion_index = strlen(str);
2765 file_completion(str);
2766 break;
2767 case 'B':
2768 /* block device name completion */
2769 completion_index = strlen(str);
2770 bdrv_iterate(block_completion_it, (void *)str);
2771 break;
2772 case 's':
2773 /* XXX: more generic ? */
2774 if (!strcmp(cmd->name, "info")) {
2775 completion_index = strlen(str);
2776 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
2777 cmd_completion(str, cmd->name);
2779 } else if (!strcmp(cmd->name, "sendkey")) {
2780 completion_index = strlen(str);
2781 for(key = key_defs; key->name != NULL; key++) {
2782 cmd_completion(str, key->name);
2785 break;
2786 default:
2787 break;
2790 for(i = 0; i < nb_args; i++)
2791 qemu_free(args[i]);
2794 static int term_can_read(void *opaque)
2796 return 128;
2799 static void term_read(void *opaque, const uint8_t *buf, int size)
2801 int i;
2802 for(i = 0; i < size; i++)
2803 readline_handle_byte(buf[i]);
2806 static int monitor_suspended;
2808 static void monitor_handle_command1(void *opaque, const char *cmdline)
2810 monitor_handle_command(cmdline);
2811 if (!monitor_suspended)
2812 monitor_start_input();
2813 else
2814 monitor_suspended = 2;
2817 void monitor_suspend(void)
2819 monitor_suspended = 1;
2822 void monitor_resume(void)
2824 if (monitor_suspended == 2)
2825 monitor_start_input();
2826 monitor_suspended = 0;
2829 static void monitor_start_input(void)
2831 readline_start("(qemu) ", 0, monitor_handle_command1, NULL);
2834 static void term_event(void *opaque, int event)
2836 if (event != CHR_EVENT_RESET)
2837 return;
2839 if (!hide_banner)
2840 term_printf("QEMU %s monitor - type 'help' for more information\n",
2841 QEMU_VERSION);
2842 monitor_start_input();
2845 static int is_first_init = 1;
2847 void monitor_init(CharDriverState *hd, int show_banner)
2849 int i;
2851 if (is_first_init) {
2852 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
2853 if (!key_timer)
2854 return;
2855 for (i = 0; i < MAX_MON; i++) {
2856 monitor_hd[i] = NULL;
2858 is_first_init = 0;
2860 for (i = 0; i < MAX_MON; i++) {
2861 if (monitor_hd[i] == NULL) {
2862 monitor_hd[i] = hd;
2863 break;
2867 hide_banner = !show_banner;
2869 qemu_chr_add_handlers(hd, term_can_read, term_read, term_event, NULL);
2871 readline_start("", 0, monitor_handle_command1, NULL);
2874 /* XXX: use threads ? */
2875 /* modal monitor readline */
2876 static int monitor_readline_started;
2877 static char *monitor_readline_buf;
2878 static int monitor_readline_buf_size;
2880 static void monitor_readline_cb(void *opaque, const char *input)
2882 pstrcpy(monitor_readline_buf, monitor_readline_buf_size, input);
2883 monitor_readline_started = 0;
2886 void monitor_readline(const char *prompt, int is_password,
2887 char *buf, int buf_size)
2889 int i;
2890 int old_focus[MAX_MON];
2892 if (is_password) {
2893 for (i = 0; i < MAX_MON; i++) {
2894 old_focus[i] = 0;
2895 if (monitor_hd[i]) {
2896 old_focus[i] = monitor_hd[i]->focus;
2897 monitor_hd[i]->focus = 0;
2898 qemu_chr_send_event(monitor_hd[i], CHR_EVENT_FOCUS);
2903 readline_start(prompt, is_password, monitor_readline_cb, NULL);
2904 monitor_readline_buf = buf;
2905 monitor_readline_buf_size = buf_size;
2906 monitor_readline_started = 1;
2907 while (monitor_readline_started) {
2908 main_loop_wait(10);
2910 /* restore original focus */
2911 if (is_password) {
2912 for (i = 0; i < MAX_MON; i++)
2913 if (old_focus[i])
2914 monitor_hd[i]->focus = old_focus[i];