Fix ACPI GPE registers read/write handling.
[qemu-kvm/fedora.git] / monitor.c
blob1b2adc84fe90098078e2d92c0879b25e8d5307ab
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));
1399 freq = has_freq ? freq : 44100;
1400 bits = has_bits ? bits : 16;
1401 nchannels = has_channels ? nchannels : 2;
1403 if (wav_start_capture (s, path, freq, bits, nchannels)) {
1404 term_printf ("Faied to add wave capture\n");
1405 qemu_free (s);
1407 LIST_INSERT_HEAD (&capture_head, s, entries);
1409 #endif
1411 #if defined(TARGET_I386)
1412 static void do_inject_nmi(int cpu_index)
1414 CPUState *env;
1416 for (env = first_cpu; env != NULL; env = env->next_cpu)
1417 if (env->cpu_index == cpu_index) {
1418 if (kvm_enabled())
1419 kvm_inject_interrupt(env, CPU_INTERRUPT_NMI);
1420 else
1421 cpu_interrupt(env, CPU_INTERRUPT_NMI);
1422 break;
1425 #endif
1427 static void do_info_status(void)
1429 if (vm_running)
1430 term_printf("VM status: running\n");
1431 else
1432 term_printf("VM status: paused\n");
1436 static void do_balloon(int value)
1438 ram_addr_t target = value;
1439 qemu_balloon(target << 20);
1442 static void do_info_balloon(void)
1444 ram_addr_t actual;
1446 actual = qemu_balloon_status();
1447 if (kvm_enabled() && !kvm_has_sync_mmu())
1448 term_printf("Using KVM without synchronous MMU, ballooning disabled\n");
1449 else if (actual == 0)
1450 term_printf("Ballooning not activated in VM\n");
1451 else
1452 term_printf("balloon: actual=%d\n", (int)(actual >> 20));
1455 /* Please update qemu-doc.texi when adding or changing commands */
1456 static const term_cmd_t term_cmds[] = {
1457 { "help|?", "s?", do_help,
1458 "[cmd]", "show the help" },
1459 { "commit", "s", do_commit,
1460 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
1461 { "info", "s?", do_info,
1462 "subcommand", "show various information about the system state" },
1463 { "q|quit", "", do_quit,
1464 "", "quit the emulator" },
1465 { "eject", "-fB", do_eject,
1466 "[-f] device", "eject a removable medium (use -f to force it)" },
1467 { "change", "BFs?", do_change,
1468 "device filename [format]", "change a removable medium, optional format" },
1469 { "screendump", "F", do_screen_dump,
1470 "filename", "save screen into PPM image 'filename'" },
1471 { "logfile", "F", do_logfile,
1472 "filename", "output logs to 'filename'" },
1473 { "log", "s", do_log,
1474 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
1475 { "savevm", "s?", do_savevm,
1476 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
1477 { "loadvm", "s", do_loadvm,
1478 "tag|id", "restore a VM snapshot from its tag or id" },
1479 { "delvm", "s", do_delvm,
1480 "tag|id", "delete a VM snapshot from its tag or id" },
1481 { "stop", "", do_stop,
1482 "", "stop emulation", },
1483 { "c|cont", "", do_cont,
1484 "", "resume emulation", },
1485 #ifdef CONFIG_GDBSTUB
1486 { "gdbserver", "s?", do_gdbserver,
1487 "[port]", "start gdbserver session (default port=1234)", },
1488 #endif
1489 { "x", "/l", do_memory_dump,
1490 "/fmt addr", "virtual memory dump starting at 'addr'", },
1491 { "xp", "/l", do_physical_memory_dump,
1492 "/fmt addr", "physical memory dump starting at 'addr'", },
1493 { "p|print", "/l", do_print,
1494 "/fmt expr", "print expression value (use $reg for CPU register access)", },
1495 { "i", "/ii.", do_ioport_read,
1496 "/fmt addr", "I/O port read" },
1498 { "sendkey", "si?", do_sendkey,
1499 "keys [hold_ms]", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)" },
1500 { "system_reset", "", do_system_reset,
1501 "", "reset the system" },
1502 { "system_powerdown", "", do_system_powerdown,
1503 "", "send system power down event" },
1504 { "sum", "ii", do_sum,
1505 "addr size", "compute the checksum of a memory region" },
1506 { "usb_add", "s", do_usb_add,
1507 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1508 { "usb_del", "s", do_usb_del,
1509 "device", "remove USB device 'bus.addr'" },
1510 { "cpu", "i", do_cpu_set,
1511 "index", "set the default CPU" },
1512 { "mouse_move", "sss?", do_mouse_move,
1513 "dx dy [dz]", "send mouse move events" },
1514 { "mouse_button", "i", do_mouse_button,
1515 "state", "change mouse button state (1=L, 2=M, 4=R)" },
1516 { "mouse_set", "i", do_mouse_set,
1517 "index", "set which mouse device receives events" },
1518 #ifdef HAS_AUDIO
1519 { "wavcapture", "si?i?i?", do_wav_capture,
1520 "path [frequency bits channels]",
1521 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1522 #endif
1523 { "stopcapture", "i", do_stop_capture,
1524 "capture index", "stop capture" },
1525 { "memsave", "lis", do_memory_save,
1526 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
1527 { "pmemsave", "lis", do_physical_memory_save,
1528 "addr size file", "save to disk physical memory dump starting at 'addr' of size 'size'", },
1529 { "boot_set", "s", do_boot_set,
1530 "bootdevice", "define new values for the boot device list" },
1531 #if defined(TARGET_I386)
1532 { "nmi", "i", do_inject_nmi,
1533 "cpu", "inject an NMI on the given CPU", },
1534 #endif
1535 { "migrate", "-ds", do_migrate,
1536 "[-d] uri", "migrate to URI (using -d to not wait for completion)" },
1537 { "migrate_cancel", "", do_migrate_cancel,
1538 "", "cancel the current VM migration" },
1539 { "migrate_set_speed", "s", do_migrate_set_speed,
1540 "value", "set maximum speed (in bytes) for migrations" },
1541 { "balloon", "i", do_balloon,
1542 "target", "request VM to change it's memory allocation (in MB)" },
1543 { "set_link", "ss", do_set_link, "name [up|down]" },
1544 { "cpu_set", "is", do_cpu_set_nr, "cpu [online|offline]", "change cpu state" },
1545 #if defined(TARGET_I386) || defined(TARGET_X86_64)
1546 { "drive_add", "iss", drive_hot_add, "pcibus pcidevfn [file=file][,if=type][,bus=n]\n"
1547 "[,unit=m][,media=d][index=i]\n"
1548 "[,cyls=c,heads=h,secs=s[,trans=t]]\n"
1549 "[snapshot=on|off][,cache=on|off]",
1550 "add drive to PCI storage controller" },
1551 { "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" },
1552 { "pci_del", "ii", device_hot_remove, "bus slot-number", "hot remove PCI device" },
1553 #endif
1554 { NULL, NULL, },
1557 /* Please update qemu-doc.texi when adding or changing commands */
1558 static const term_cmd_t info_cmds[] = {
1559 { "version", "", do_info_version,
1560 "", "show the version of QEMU" },
1561 { "network", "", do_info_network,
1562 "", "show the network state" },
1563 { "chardev", "", qemu_chr_info,
1564 "", "show the character devices" },
1565 { "block", "", do_info_block,
1566 "", "show the block devices" },
1567 { "blockstats", "", do_info_blockstats,
1568 "", "show block device statistics" },
1569 { "registers", "", do_info_registers,
1570 "", "show the cpu registers" },
1571 { "cpus", "", do_info_cpus,
1572 "", "show infos for each CPU" },
1573 { "history", "", do_info_history,
1574 "", "show the command line history", },
1575 { "irq", "", irq_info,
1576 "", "show the interrupts statistics (if available)", },
1577 { "pic", "", pic_info,
1578 "", "show i8259 (PIC) state", },
1579 { "pci", "", pci_info,
1580 "", "show PCI info", },
1581 #if defined(TARGET_I386)
1582 { "tlb", "", tlb_info,
1583 "", "show virtual to physical memory mappings", },
1584 { "mem", "", mem_info,
1585 "", "show the active virtual memory mappings", },
1586 { "hpet", "", do_info_hpet,
1587 "", "show state of HPET", },
1588 #endif
1589 { "jit", "", do_info_jit,
1590 "", "show dynamic compiler info", },
1591 { "kqemu", "", do_info_kqemu,
1592 "", "show KQEMU information", },
1593 { "kvm", "", do_info_kvm,
1594 "", "show KVM information", },
1595 { "usb", "", usb_info,
1596 "", "show guest USB devices", },
1597 { "usbhost", "", usb_host_info,
1598 "", "show host USB devices", },
1599 { "profile", "", do_info_profile,
1600 "", "show profiling information", },
1601 { "capture", "", do_info_capture,
1602 "", "show capture information" },
1603 { "snapshots", "", do_info_snapshots,
1604 "", "show the currently saved VM snapshots" },
1605 { "status", "", do_info_status,
1606 "", "show the current VM status (running|paused)" },
1607 { "pcmcia", "", pcmcia_info,
1608 "", "show guest PCMCIA status" },
1609 { "mice", "", do_info_mice,
1610 "", "show which guest mouse is receiving events" },
1611 { "vnc", "", do_info_vnc,
1612 "", "show the vnc server status"},
1613 { "name", "", do_info_name,
1614 "", "show the current VM name" },
1615 { "uuid", "", do_info_uuid,
1616 "", "show the current VM UUID" },
1617 #if defined(TARGET_PPC)
1618 { "cpustats", "", do_info_cpu_stats,
1619 "", "show CPU statistics", },
1620 #endif
1621 #if defined(CONFIG_SLIRP)
1622 { "slirp", "", do_info_slirp,
1623 "", "show SLIRP statistics", },
1624 #endif
1625 { "migrate", "", do_info_migrate, "", "show migration status" },
1626 { "balloon", "", do_info_balloon,
1627 "", "show balloon information" },
1628 { NULL, NULL, },
1631 /*******************************************************************/
1633 static const char *pch;
1634 static jmp_buf expr_env;
1636 #define MD_TLONG 0
1637 #define MD_I32 1
1639 typedef struct MonitorDef {
1640 const char *name;
1641 int offset;
1642 target_long (*get_value)(const struct MonitorDef *md, int val);
1643 int type;
1644 } MonitorDef;
1646 #if defined(TARGET_I386)
1647 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
1649 CPUState *env = mon_get_cpu();
1650 if (!env)
1651 return 0;
1652 return env->eip + env->segs[R_CS].base;
1654 #endif
1656 #if defined(TARGET_PPC)
1657 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
1659 CPUState *env = mon_get_cpu();
1660 unsigned int u;
1661 int i;
1663 if (!env)
1664 return 0;
1666 u = 0;
1667 for (i = 0; i < 8; i++)
1668 u |= env->crf[i] << (32 - (4 * i));
1670 return u;
1673 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
1675 CPUState *env = mon_get_cpu();
1676 if (!env)
1677 return 0;
1678 return env->msr;
1681 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
1683 CPUState *env = mon_get_cpu();
1684 if (!env)
1685 return 0;
1686 return env->xer;
1689 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
1691 CPUState *env = mon_get_cpu();
1692 if (!env)
1693 return 0;
1694 return cpu_ppc_load_decr(env);
1697 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
1699 CPUState *env = mon_get_cpu();
1700 if (!env)
1701 return 0;
1702 return cpu_ppc_load_tbu(env);
1705 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
1707 CPUState *env = mon_get_cpu();
1708 if (!env)
1709 return 0;
1710 return cpu_ppc_load_tbl(env);
1712 #endif
1714 #if defined(TARGET_SPARC)
1715 #ifndef TARGET_SPARC64
1716 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
1718 CPUState *env = mon_get_cpu();
1719 if (!env)
1720 return 0;
1721 return GET_PSR(env);
1723 #endif
1725 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
1727 CPUState *env = mon_get_cpu();
1728 if (!env)
1729 return 0;
1730 return env->regwptr[val];
1732 #endif
1734 static const MonitorDef monitor_defs[] = {
1735 #ifdef TARGET_I386
1737 #define SEG(name, seg) \
1738 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
1739 { name ".base", offsetof(CPUState, segs[seg].base) },\
1740 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
1742 { "eax", offsetof(CPUState, regs[0]) },
1743 { "ecx", offsetof(CPUState, regs[1]) },
1744 { "edx", offsetof(CPUState, regs[2]) },
1745 { "ebx", offsetof(CPUState, regs[3]) },
1746 { "esp|sp", offsetof(CPUState, regs[4]) },
1747 { "ebp|fp", offsetof(CPUState, regs[5]) },
1748 { "esi", offsetof(CPUState, regs[6]) },
1749 { "edi", offsetof(CPUState, regs[7]) },
1750 #ifdef TARGET_X86_64
1751 { "r8", offsetof(CPUState, regs[8]) },
1752 { "r9", offsetof(CPUState, regs[9]) },
1753 { "r10", offsetof(CPUState, regs[10]) },
1754 { "r11", offsetof(CPUState, regs[11]) },
1755 { "r12", offsetof(CPUState, regs[12]) },
1756 { "r13", offsetof(CPUState, regs[13]) },
1757 { "r14", offsetof(CPUState, regs[14]) },
1758 { "r15", offsetof(CPUState, regs[15]) },
1759 #endif
1760 { "eflags", offsetof(CPUState, eflags) },
1761 { "eip", offsetof(CPUState, eip) },
1762 SEG("cs", R_CS)
1763 SEG("ds", R_DS)
1764 SEG("es", R_ES)
1765 SEG("ss", R_SS)
1766 SEG("fs", R_FS)
1767 SEG("gs", R_GS)
1768 { "pc", 0, monitor_get_pc, },
1769 #elif defined(TARGET_PPC)
1770 /* General purpose registers */
1771 { "r0", offsetof(CPUState, gpr[0]) },
1772 { "r1", offsetof(CPUState, gpr[1]) },
1773 { "r2", offsetof(CPUState, gpr[2]) },
1774 { "r3", offsetof(CPUState, gpr[3]) },
1775 { "r4", offsetof(CPUState, gpr[4]) },
1776 { "r5", offsetof(CPUState, gpr[5]) },
1777 { "r6", offsetof(CPUState, gpr[6]) },
1778 { "r7", offsetof(CPUState, gpr[7]) },
1779 { "r8", offsetof(CPUState, gpr[8]) },
1780 { "r9", offsetof(CPUState, gpr[9]) },
1781 { "r10", offsetof(CPUState, gpr[10]) },
1782 { "r11", offsetof(CPUState, gpr[11]) },
1783 { "r12", offsetof(CPUState, gpr[12]) },
1784 { "r13", offsetof(CPUState, gpr[13]) },
1785 { "r14", offsetof(CPUState, gpr[14]) },
1786 { "r15", offsetof(CPUState, gpr[15]) },
1787 { "r16", offsetof(CPUState, gpr[16]) },
1788 { "r17", offsetof(CPUState, gpr[17]) },
1789 { "r18", offsetof(CPUState, gpr[18]) },
1790 { "r19", offsetof(CPUState, gpr[19]) },
1791 { "r20", offsetof(CPUState, gpr[20]) },
1792 { "r21", offsetof(CPUState, gpr[21]) },
1793 { "r22", offsetof(CPUState, gpr[22]) },
1794 { "r23", offsetof(CPUState, gpr[23]) },
1795 { "r24", offsetof(CPUState, gpr[24]) },
1796 { "r25", offsetof(CPUState, gpr[25]) },
1797 { "r26", offsetof(CPUState, gpr[26]) },
1798 { "r27", offsetof(CPUState, gpr[27]) },
1799 { "r28", offsetof(CPUState, gpr[28]) },
1800 { "r29", offsetof(CPUState, gpr[29]) },
1801 { "r30", offsetof(CPUState, gpr[30]) },
1802 { "r31", offsetof(CPUState, gpr[31]) },
1803 /* Floating point registers */
1804 { "f0", offsetof(CPUState, fpr[0]) },
1805 { "f1", offsetof(CPUState, fpr[1]) },
1806 { "f2", offsetof(CPUState, fpr[2]) },
1807 { "f3", offsetof(CPUState, fpr[3]) },
1808 { "f4", offsetof(CPUState, fpr[4]) },
1809 { "f5", offsetof(CPUState, fpr[5]) },
1810 { "f6", offsetof(CPUState, fpr[6]) },
1811 { "f7", offsetof(CPUState, fpr[7]) },
1812 { "f8", offsetof(CPUState, fpr[8]) },
1813 { "f9", offsetof(CPUState, fpr[9]) },
1814 { "f10", offsetof(CPUState, fpr[10]) },
1815 { "f11", offsetof(CPUState, fpr[11]) },
1816 { "f12", offsetof(CPUState, fpr[12]) },
1817 { "f13", offsetof(CPUState, fpr[13]) },
1818 { "f14", offsetof(CPUState, fpr[14]) },
1819 { "f15", offsetof(CPUState, fpr[15]) },
1820 { "f16", offsetof(CPUState, fpr[16]) },
1821 { "f17", offsetof(CPUState, fpr[17]) },
1822 { "f18", offsetof(CPUState, fpr[18]) },
1823 { "f19", offsetof(CPUState, fpr[19]) },
1824 { "f20", offsetof(CPUState, fpr[20]) },
1825 { "f21", offsetof(CPUState, fpr[21]) },
1826 { "f22", offsetof(CPUState, fpr[22]) },
1827 { "f23", offsetof(CPUState, fpr[23]) },
1828 { "f24", offsetof(CPUState, fpr[24]) },
1829 { "f25", offsetof(CPUState, fpr[25]) },
1830 { "f26", offsetof(CPUState, fpr[26]) },
1831 { "f27", offsetof(CPUState, fpr[27]) },
1832 { "f28", offsetof(CPUState, fpr[28]) },
1833 { "f29", offsetof(CPUState, fpr[29]) },
1834 { "f30", offsetof(CPUState, fpr[30]) },
1835 { "f31", offsetof(CPUState, fpr[31]) },
1836 { "fpscr", offsetof(CPUState, fpscr) },
1837 /* Next instruction pointer */
1838 { "nip|pc", offsetof(CPUState, nip) },
1839 { "lr", offsetof(CPUState, lr) },
1840 { "ctr", offsetof(CPUState, ctr) },
1841 { "decr", 0, &monitor_get_decr, },
1842 { "ccr", 0, &monitor_get_ccr, },
1843 /* Machine state register */
1844 { "msr", 0, &monitor_get_msr, },
1845 { "xer", 0, &monitor_get_xer, },
1846 { "tbu", 0, &monitor_get_tbu, },
1847 { "tbl", 0, &monitor_get_tbl, },
1848 #if defined(TARGET_PPC64)
1849 /* Address space register */
1850 { "asr", offsetof(CPUState, asr) },
1851 #endif
1852 /* Segment registers */
1853 { "sdr1", offsetof(CPUState, sdr1) },
1854 { "sr0", offsetof(CPUState, sr[0]) },
1855 { "sr1", offsetof(CPUState, sr[1]) },
1856 { "sr2", offsetof(CPUState, sr[2]) },
1857 { "sr3", offsetof(CPUState, sr[3]) },
1858 { "sr4", offsetof(CPUState, sr[4]) },
1859 { "sr5", offsetof(CPUState, sr[5]) },
1860 { "sr6", offsetof(CPUState, sr[6]) },
1861 { "sr7", offsetof(CPUState, sr[7]) },
1862 { "sr8", offsetof(CPUState, sr[8]) },
1863 { "sr9", offsetof(CPUState, sr[9]) },
1864 { "sr10", offsetof(CPUState, sr[10]) },
1865 { "sr11", offsetof(CPUState, sr[11]) },
1866 { "sr12", offsetof(CPUState, sr[12]) },
1867 { "sr13", offsetof(CPUState, sr[13]) },
1868 { "sr14", offsetof(CPUState, sr[14]) },
1869 { "sr15", offsetof(CPUState, sr[15]) },
1870 /* Too lazy to put BATs and SPRs ... */
1871 #elif defined(TARGET_SPARC)
1872 { "g0", offsetof(CPUState, gregs[0]) },
1873 { "g1", offsetof(CPUState, gregs[1]) },
1874 { "g2", offsetof(CPUState, gregs[2]) },
1875 { "g3", offsetof(CPUState, gregs[3]) },
1876 { "g4", offsetof(CPUState, gregs[4]) },
1877 { "g5", offsetof(CPUState, gregs[5]) },
1878 { "g6", offsetof(CPUState, gregs[6]) },
1879 { "g7", offsetof(CPUState, gregs[7]) },
1880 { "o0", 0, monitor_get_reg },
1881 { "o1", 1, monitor_get_reg },
1882 { "o2", 2, monitor_get_reg },
1883 { "o3", 3, monitor_get_reg },
1884 { "o4", 4, monitor_get_reg },
1885 { "o5", 5, monitor_get_reg },
1886 { "o6", 6, monitor_get_reg },
1887 { "o7", 7, monitor_get_reg },
1888 { "l0", 8, monitor_get_reg },
1889 { "l1", 9, monitor_get_reg },
1890 { "l2", 10, monitor_get_reg },
1891 { "l3", 11, monitor_get_reg },
1892 { "l4", 12, monitor_get_reg },
1893 { "l5", 13, monitor_get_reg },
1894 { "l6", 14, monitor_get_reg },
1895 { "l7", 15, monitor_get_reg },
1896 { "i0", 16, monitor_get_reg },
1897 { "i1", 17, monitor_get_reg },
1898 { "i2", 18, monitor_get_reg },
1899 { "i3", 19, monitor_get_reg },
1900 { "i4", 20, monitor_get_reg },
1901 { "i5", 21, monitor_get_reg },
1902 { "i6", 22, monitor_get_reg },
1903 { "i7", 23, monitor_get_reg },
1904 { "pc", offsetof(CPUState, pc) },
1905 { "npc", offsetof(CPUState, npc) },
1906 { "y", offsetof(CPUState, y) },
1907 #ifndef TARGET_SPARC64
1908 { "psr", 0, &monitor_get_psr, },
1909 { "wim", offsetof(CPUState, wim) },
1910 #endif
1911 { "tbr", offsetof(CPUState, tbr) },
1912 { "fsr", offsetof(CPUState, fsr) },
1913 { "f0", offsetof(CPUState, fpr[0]) },
1914 { "f1", offsetof(CPUState, fpr[1]) },
1915 { "f2", offsetof(CPUState, fpr[2]) },
1916 { "f3", offsetof(CPUState, fpr[3]) },
1917 { "f4", offsetof(CPUState, fpr[4]) },
1918 { "f5", offsetof(CPUState, fpr[5]) },
1919 { "f6", offsetof(CPUState, fpr[6]) },
1920 { "f7", offsetof(CPUState, fpr[7]) },
1921 { "f8", offsetof(CPUState, fpr[8]) },
1922 { "f9", offsetof(CPUState, fpr[9]) },
1923 { "f10", offsetof(CPUState, fpr[10]) },
1924 { "f11", offsetof(CPUState, fpr[11]) },
1925 { "f12", offsetof(CPUState, fpr[12]) },
1926 { "f13", offsetof(CPUState, fpr[13]) },
1927 { "f14", offsetof(CPUState, fpr[14]) },
1928 { "f15", offsetof(CPUState, fpr[15]) },
1929 { "f16", offsetof(CPUState, fpr[16]) },
1930 { "f17", offsetof(CPUState, fpr[17]) },
1931 { "f18", offsetof(CPUState, fpr[18]) },
1932 { "f19", offsetof(CPUState, fpr[19]) },
1933 { "f20", offsetof(CPUState, fpr[20]) },
1934 { "f21", offsetof(CPUState, fpr[21]) },
1935 { "f22", offsetof(CPUState, fpr[22]) },
1936 { "f23", offsetof(CPUState, fpr[23]) },
1937 { "f24", offsetof(CPUState, fpr[24]) },
1938 { "f25", offsetof(CPUState, fpr[25]) },
1939 { "f26", offsetof(CPUState, fpr[26]) },
1940 { "f27", offsetof(CPUState, fpr[27]) },
1941 { "f28", offsetof(CPUState, fpr[28]) },
1942 { "f29", offsetof(CPUState, fpr[29]) },
1943 { "f30", offsetof(CPUState, fpr[30]) },
1944 { "f31", offsetof(CPUState, fpr[31]) },
1945 #ifdef TARGET_SPARC64
1946 { "f32", offsetof(CPUState, fpr[32]) },
1947 { "f34", offsetof(CPUState, fpr[34]) },
1948 { "f36", offsetof(CPUState, fpr[36]) },
1949 { "f38", offsetof(CPUState, fpr[38]) },
1950 { "f40", offsetof(CPUState, fpr[40]) },
1951 { "f42", offsetof(CPUState, fpr[42]) },
1952 { "f44", offsetof(CPUState, fpr[44]) },
1953 { "f46", offsetof(CPUState, fpr[46]) },
1954 { "f48", offsetof(CPUState, fpr[48]) },
1955 { "f50", offsetof(CPUState, fpr[50]) },
1956 { "f52", offsetof(CPUState, fpr[52]) },
1957 { "f54", offsetof(CPUState, fpr[54]) },
1958 { "f56", offsetof(CPUState, fpr[56]) },
1959 { "f58", offsetof(CPUState, fpr[58]) },
1960 { "f60", offsetof(CPUState, fpr[60]) },
1961 { "f62", offsetof(CPUState, fpr[62]) },
1962 { "asi", offsetof(CPUState, asi) },
1963 { "pstate", offsetof(CPUState, pstate) },
1964 { "cansave", offsetof(CPUState, cansave) },
1965 { "canrestore", offsetof(CPUState, canrestore) },
1966 { "otherwin", offsetof(CPUState, otherwin) },
1967 { "wstate", offsetof(CPUState, wstate) },
1968 { "cleanwin", offsetof(CPUState, cleanwin) },
1969 { "fprs", offsetof(CPUState, fprs) },
1970 #endif
1971 #endif
1972 { NULL },
1975 static void expr_error(const char *msg)
1977 term_printf("%s\n", msg);
1978 longjmp(expr_env, 1);
1981 /* return 0 if OK, -1 if not found, -2 if no CPU defined */
1982 static int get_monitor_def(target_long *pval, const char *name)
1984 const MonitorDef *md;
1985 void *ptr;
1987 for(md = monitor_defs; md->name != NULL; md++) {
1988 if (compare_cmd(name, md->name)) {
1989 if (md->get_value) {
1990 *pval = md->get_value(md, md->offset);
1991 } else {
1992 CPUState *env = mon_get_cpu();
1993 if (!env)
1994 return -2;
1995 ptr = (uint8_t *)env + md->offset;
1996 switch(md->type) {
1997 case MD_I32:
1998 *pval = *(int32_t *)ptr;
1999 break;
2000 case MD_TLONG:
2001 *pval = *(target_long *)ptr;
2002 break;
2003 default:
2004 *pval = 0;
2005 break;
2008 return 0;
2011 return -1;
2014 static void next(void)
2016 if (pch != '\0') {
2017 pch++;
2018 while (qemu_isspace(*pch))
2019 pch++;
2023 static int64_t expr_sum(void);
2025 static int64_t expr_unary(void)
2027 int64_t n;
2028 char *p;
2029 int ret;
2031 switch(*pch) {
2032 case '+':
2033 next();
2034 n = expr_unary();
2035 break;
2036 case '-':
2037 next();
2038 n = -expr_unary();
2039 break;
2040 case '~':
2041 next();
2042 n = ~expr_unary();
2043 break;
2044 case '(':
2045 next();
2046 n = expr_sum();
2047 if (*pch != ')') {
2048 expr_error("')' expected");
2050 next();
2051 break;
2052 case '\'':
2053 pch++;
2054 if (*pch == '\0')
2055 expr_error("character constant expected");
2056 n = *pch;
2057 pch++;
2058 if (*pch != '\'')
2059 expr_error("missing terminating \' character");
2060 next();
2061 break;
2062 case '$':
2064 char buf[128], *q;
2065 target_long reg=0;
2067 pch++;
2068 q = buf;
2069 while ((*pch >= 'a' && *pch <= 'z') ||
2070 (*pch >= 'A' && *pch <= 'Z') ||
2071 (*pch >= '0' && *pch <= '9') ||
2072 *pch == '_' || *pch == '.') {
2073 if ((q - buf) < sizeof(buf) - 1)
2074 *q++ = *pch;
2075 pch++;
2077 while (qemu_isspace(*pch))
2078 pch++;
2079 *q = 0;
2080 ret = get_monitor_def(&reg, buf);
2081 if (ret == -1)
2082 expr_error("unknown register");
2083 else if (ret == -2)
2084 expr_error("no cpu defined");
2085 n = reg;
2087 break;
2088 case '\0':
2089 expr_error("unexpected end of expression");
2090 n = 0;
2091 break;
2092 default:
2093 #if TARGET_PHYS_ADDR_BITS > 32
2094 n = strtoull(pch, &p, 0);
2095 #else
2096 n = strtoul(pch, &p, 0);
2097 #endif
2098 if (pch == p) {
2099 expr_error("invalid char in expression");
2101 pch = p;
2102 while (qemu_isspace(*pch))
2103 pch++;
2104 break;
2106 return n;
2110 static int64_t expr_prod(void)
2112 int64_t val, val2;
2113 int op;
2115 val = expr_unary();
2116 for(;;) {
2117 op = *pch;
2118 if (op != '*' && op != '/' && op != '%')
2119 break;
2120 next();
2121 val2 = expr_unary();
2122 switch(op) {
2123 default:
2124 case '*':
2125 val *= val2;
2126 break;
2127 case '/':
2128 case '%':
2129 if (val2 == 0)
2130 expr_error("division by zero");
2131 if (op == '/')
2132 val /= val2;
2133 else
2134 val %= val2;
2135 break;
2138 return val;
2141 static int64_t expr_logic(void)
2143 int64_t val, val2;
2144 int op;
2146 val = expr_prod();
2147 for(;;) {
2148 op = *pch;
2149 if (op != '&' && op != '|' && op != '^')
2150 break;
2151 next();
2152 val2 = expr_prod();
2153 switch(op) {
2154 default:
2155 case '&':
2156 val &= val2;
2157 break;
2158 case '|':
2159 val |= val2;
2160 break;
2161 case '^':
2162 val ^= val2;
2163 break;
2166 return val;
2169 static int64_t expr_sum(void)
2171 int64_t val, val2;
2172 int op;
2174 val = expr_logic();
2175 for(;;) {
2176 op = *pch;
2177 if (op != '+' && op != '-')
2178 break;
2179 next();
2180 val2 = expr_logic();
2181 if (op == '+')
2182 val += val2;
2183 else
2184 val -= val2;
2186 return val;
2189 static int get_expr(int64_t *pval, const char **pp)
2191 pch = *pp;
2192 if (setjmp(expr_env)) {
2193 *pp = pch;
2194 return -1;
2196 while (qemu_isspace(*pch))
2197 pch++;
2198 *pval = expr_sum();
2199 *pp = pch;
2200 return 0;
2203 static int get_str(char *buf, int buf_size, const char **pp)
2205 const char *p;
2206 char *q;
2207 int c;
2209 q = buf;
2210 p = *pp;
2211 while (qemu_isspace(*p))
2212 p++;
2213 if (*p == '\0') {
2214 fail:
2215 *q = '\0';
2216 *pp = p;
2217 return -1;
2219 if (*p == '\"') {
2220 p++;
2221 while (*p != '\0' && *p != '\"') {
2222 if (*p == '\\') {
2223 p++;
2224 c = *p++;
2225 switch(c) {
2226 case 'n':
2227 c = '\n';
2228 break;
2229 case 'r':
2230 c = '\r';
2231 break;
2232 case '\\':
2233 case '\'':
2234 case '\"':
2235 break;
2236 default:
2237 qemu_printf("unsupported escape code: '\\%c'\n", c);
2238 goto fail;
2240 if ((q - buf) < buf_size - 1) {
2241 *q++ = c;
2243 } else {
2244 if ((q - buf) < buf_size - 1) {
2245 *q++ = *p;
2247 p++;
2250 if (*p != '\"') {
2251 qemu_printf("unterminated string\n");
2252 goto fail;
2254 p++;
2255 } else {
2256 while (*p != '\0' && !qemu_isspace(*p)) {
2257 if ((q - buf) < buf_size - 1) {
2258 *q++ = *p;
2260 p++;
2263 *q = '\0';
2264 *pp = p;
2265 return 0;
2268 static int default_fmt_format = 'x';
2269 static int default_fmt_size = 4;
2271 #define MAX_ARGS 16
2273 static void monitor_handle_command(const char *cmdline)
2275 const char *p, *pstart, *typestr;
2276 char *q;
2277 int c, nb_args, len, i, has_arg;
2278 const term_cmd_t *cmd;
2279 char cmdname[256];
2280 char buf[1024];
2281 void *str_allocated[MAX_ARGS];
2282 void *args[MAX_ARGS];
2283 void (*handler_0)(void);
2284 void (*handler_1)(void *arg0);
2285 void (*handler_2)(void *arg0, void *arg1);
2286 void (*handler_3)(void *arg0, void *arg1, void *arg2);
2287 void (*handler_4)(void *arg0, void *arg1, void *arg2, void *arg3);
2288 void (*handler_5)(void *arg0, void *arg1, void *arg2, void *arg3,
2289 void *arg4);
2290 void (*handler_6)(void *arg0, void *arg1, void *arg2, void *arg3,
2291 void *arg4, void *arg5);
2292 void (*handler_7)(void *arg0, void *arg1, void *arg2, void *arg3,
2293 void *arg4, void *arg5, void *arg6);
2295 #ifdef DEBUG
2296 term_printf("command='%s'\n", cmdline);
2297 #endif
2299 /* extract the command name */
2300 p = cmdline;
2301 q = cmdname;
2302 while (qemu_isspace(*p))
2303 p++;
2304 if (*p == '\0')
2305 return;
2306 pstart = p;
2307 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
2308 p++;
2309 len = p - pstart;
2310 if (len > sizeof(cmdname) - 1)
2311 len = sizeof(cmdname) - 1;
2312 memcpy(cmdname, pstart, len);
2313 cmdname[len] = '\0';
2315 /* find the command */
2316 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2317 if (compare_cmd(cmdname, cmd->name))
2318 goto found;
2320 term_printf("unknown command: '%s'\n", cmdname);
2321 return;
2322 found:
2324 for(i = 0; i < MAX_ARGS; i++)
2325 str_allocated[i] = NULL;
2327 /* parse the parameters */
2328 typestr = cmd->args_type;
2329 nb_args = 0;
2330 for(;;) {
2331 c = *typestr;
2332 if (c == '\0')
2333 break;
2334 typestr++;
2335 switch(c) {
2336 case 'F':
2337 case 'B':
2338 case 's':
2340 int ret;
2341 char *str;
2343 while (qemu_isspace(*p))
2344 p++;
2345 if (*typestr == '?') {
2346 typestr++;
2347 if (*p == '\0') {
2348 /* no optional string: NULL argument */
2349 str = NULL;
2350 goto add_str;
2353 ret = get_str(buf, sizeof(buf), &p);
2354 if (ret < 0) {
2355 switch(c) {
2356 case 'F':
2357 term_printf("%s: filename expected\n", cmdname);
2358 break;
2359 case 'B':
2360 term_printf("%s: block device name expected\n", cmdname);
2361 break;
2362 default:
2363 term_printf("%s: string expected\n", cmdname);
2364 break;
2366 goto fail;
2368 str = qemu_malloc(strlen(buf) + 1);
2369 pstrcpy(str, sizeof(buf), buf);
2370 str_allocated[nb_args] = str;
2371 add_str:
2372 if (nb_args >= MAX_ARGS) {
2373 error_args:
2374 term_printf("%s: too many arguments\n", cmdname);
2375 goto fail;
2377 args[nb_args++] = str;
2379 break;
2380 case '/':
2382 int count, format, size;
2384 while (qemu_isspace(*p))
2385 p++;
2386 if (*p == '/') {
2387 /* format found */
2388 p++;
2389 count = 1;
2390 if (qemu_isdigit(*p)) {
2391 count = 0;
2392 while (qemu_isdigit(*p)) {
2393 count = count * 10 + (*p - '0');
2394 p++;
2397 size = -1;
2398 format = -1;
2399 for(;;) {
2400 switch(*p) {
2401 case 'o':
2402 case 'd':
2403 case 'u':
2404 case 'x':
2405 case 'i':
2406 case 'c':
2407 format = *p++;
2408 break;
2409 case 'b':
2410 size = 1;
2411 p++;
2412 break;
2413 case 'h':
2414 size = 2;
2415 p++;
2416 break;
2417 case 'w':
2418 size = 4;
2419 p++;
2420 break;
2421 case 'g':
2422 case 'L':
2423 size = 8;
2424 p++;
2425 break;
2426 default:
2427 goto next;
2430 next:
2431 if (*p != '\0' && !qemu_isspace(*p)) {
2432 term_printf("invalid char in format: '%c'\n", *p);
2433 goto fail;
2435 if (format < 0)
2436 format = default_fmt_format;
2437 if (format != 'i') {
2438 /* for 'i', not specifying a size gives -1 as size */
2439 if (size < 0)
2440 size = default_fmt_size;
2441 default_fmt_size = size;
2443 default_fmt_format = format;
2444 } else {
2445 count = 1;
2446 format = default_fmt_format;
2447 if (format != 'i') {
2448 size = default_fmt_size;
2449 } else {
2450 size = -1;
2453 if (nb_args + 3 > MAX_ARGS)
2454 goto error_args;
2455 args[nb_args++] = (void*)(long)count;
2456 args[nb_args++] = (void*)(long)format;
2457 args[nb_args++] = (void*)(long)size;
2459 break;
2460 case 'i':
2461 case 'l':
2463 int64_t val;
2465 while (qemu_isspace(*p))
2466 p++;
2467 if (*typestr == '?' || *typestr == '.') {
2468 if (*typestr == '?') {
2469 if (*p == '\0')
2470 has_arg = 0;
2471 else
2472 has_arg = 1;
2473 } else {
2474 if (*p == '.') {
2475 p++;
2476 while (qemu_isspace(*p))
2477 p++;
2478 has_arg = 1;
2479 } else {
2480 has_arg = 0;
2483 typestr++;
2484 if (nb_args >= MAX_ARGS)
2485 goto error_args;
2486 args[nb_args++] = (void *)(long)has_arg;
2487 if (!has_arg) {
2488 if (nb_args >= MAX_ARGS)
2489 goto error_args;
2490 val = -1;
2491 goto add_num;
2494 if (get_expr(&val, &p))
2495 goto fail;
2496 add_num:
2497 if (c == 'i') {
2498 if (nb_args >= MAX_ARGS)
2499 goto error_args;
2500 args[nb_args++] = (void *)(long)val;
2501 } else {
2502 if ((nb_args + 1) >= MAX_ARGS)
2503 goto error_args;
2504 #if TARGET_PHYS_ADDR_BITS > 32
2505 args[nb_args++] = (void *)(long)((val >> 32) & 0xffffffff);
2506 #else
2507 args[nb_args++] = (void *)0;
2508 #endif
2509 args[nb_args++] = (void *)(long)(val & 0xffffffff);
2512 break;
2513 case '-':
2515 int has_option;
2516 /* option */
2518 c = *typestr++;
2519 if (c == '\0')
2520 goto bad_type;
2521 while (qemu_isspace(*p))
2522 p++;
2523 has_option = 0;
2524 if (*p == '-') {
2525 p++;
2526 if (*p != c) {
2527 term_printf("%s: unsupported option -%c\n",
2528 cmdname, *p);
2529 goto fail;
2531 p++;
2532 has_option = 1;
2534 if (nb_args >= MAX_ARGS)
2535 goto error_args;
2536 args[nb_args++] = (void *)(long)has_option;
2538 break;
2539 default:
2540 bad_type:
2541 term_printf("%s: unknown type '%c'\n", cmdname, c);
2542 goto fail;
2545 /* check that all arguments were parsed */
2546 while (qemu_isspace(*p))
2547 p++;
2548 if (*p != '\0') {
2549 term_printf("%s: extraneous characters at the end of line\n",
2550 cmdname);
2551 goto fail;
2554 switch(nb_args) {
2555 case 0:
2556 handler_0 = cmd->handler;
2557 handler_0();
2558 break;
2559 case 1:
2560 handler_1 = cmd->handler;
2561 handler_1(args[0]);
2562 break;
2563 case 2:
2564 handler_2 = cmd->handler;
2565 handler_2(args[0], args[1]);
2566 break;
2567 case 3:
2568 handler_3 = cmd->handler;
2569 handler_3(args[0], args[1], args[2]);
2570 break;
2571 case 4:
2572 handler_4 = cmd->handler;
2573 handler_4(args[0], args[1], args[2], args[3]);
2574 break;
2575 case 5:
2576 handler_5 = cmd->handler;
2577 handler_5(args[0], args[1], args[2], args[3], args[4]);
2578 break;
2579 case 6:
2580 handler_6 = cmd->handler;
2581 handler_6(args[0], args[1], args[2], args[3], args[4], args[5]);
2582 break;
2583 case 7:
2584 handler_7 = cmd->handler;
2585 handler_7(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
2586 break;
2587 default:
2588 term_printf("unsupported number of arguments: %d\n", nb_args);
2589 goto fail;
2591 fail:
2592 for(i = 0; i < MAX_ARGS; i++)
2593 qemu_free(str_allocated[i]);
2594 return;
2597 static void cmd_completion(const char *name, const char *list)
2599 const char *p, *pstart;
2600 char cmd[128];
2601 int len;
2603 p = list;
2604 for(;;) {
2605 pstart = p;
2606 p = strchr(p, '|');
2607 if (!p)
2608 p = pstart + strlen(pstart);
2609 len = p - pstart;
2610 if (len > sizeof(cmd) - 2)
2611 len = sizeof(cmd) - 2;
2612 memcpy(cmd, pstart, len);
2613 cmd[len] = '\0';
2614 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
2615 add_completion(cmd);
2617 if (*p == '\0')
2618 break;
2619 p++;
2623 static void file_completion(const char *input)
2625 DIR *ffs;
2626 struct dirent *d;
2627 char path[1024];
2628 char file[1024], file_prefix[1024];
2629 int input_path_len;
2630 const char *p;
2632 p = strrchr(input, '/');
2633 if (!p) {
2634 input_path_len = 0;
2635 pstrcpy(file_prefix, sizeof(file_prefix), input);
2636 pstrcpy(path, sizeof(path), ".");
2637 } else {
2638 input_path_len = p - input + 1;
2639 memcpy(path, input, input_path_len);
2640 if (input_path_len > sizeof(path) - 1)
2641 input_path_len = sizeof(path) - 1;
2642 path[input_path_len] = '\0';
2643 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
2645 #ifdef DEBUG_COMPLETION
2646 term_printf("input='%s' path='%s' prefix='%s'\n", input, path, file_prefix);
2647 #endif
2648 ffs = opendir(path);
2649 if (!ffs)
2650 return;
2651 for(;;) {
2652 struct stat sb;
2653 d = readdir(ffs);
2654 if (!d)
2655 break;
2656 if (strstart(d->d_name, file_prefix, NULL)) {
2657 memcpy(file, input, input_path_len);
2658 if (input_path_len < sizeof(file))
2659 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
2660 d->d_name);
2661 /* stat the file to find out if it's a directory.
2662 * In that case add a slash to speed up typing long paths
2664 stat(file, &sb);
2665 if(S_ISDIR(sb.st_mode))
2666 pstrcat(file, sizeof(file), "/");
2667 add_completion(file);
2670 closedir(ffs);
2673 static void block_completion_it(void *opaque, const char *name)
2675 const char *input = opaque;
2677 if (input[0] == '\0' ||
2678 !strncmp(name, (char *)input, strlen(input))) {
2679 add_completion(name);
2683 /* NOTE: this parser is an approximate form of the real command parser */
2684 static void parse_cmdline(const char *cmdline,
2685 int *pnb_args, char **args)
2687 const char *p;
2688 int nb_args, ret;
2689 char buf[1024];
2691 p = cmdline;
2692 nb_args = 0;
2693 for(;;) {
2694 while (qemu_isspace(*p))
2695 p++;
2696 if (*p == '\0')
2697 break;
2698 if (nb_args >= MAX_ARGS)
2699 break;
2700 ret = get_str(buf, sizeof(buf), &p);
2701 args[nb_args] = qemu_strdup(buf);
2702 nb_args++;
2703 if (ret < 0)
2704 break;
2706 *pnb_args = nb_args;
2709 void readline_find_completion(const char *cmdline)
2711 const char *cmdname;
2712 char *args[MAX_ARGS];
2713 int nb_args, i, len;
2714 const char *ptype, *str;
2715 const term_cmd_t *cmd;
2716 const KeyDef *key;
2718 parse_cmdline(cmdline, &nb_args, args);
2719 #ifdef DEBUG_COMPLETION
2720 for(i = 0; i < nb_args; i++) {
2721 term_printf("arg%d = '%s'\n", i, (char *)args[i]);
2723 #endif
2725 /* if the line ends with a space, it means we want to complete the
2726 next arg */
2727 len = strlen(cmdline);
2728 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
2729 if (nb_args >= MAX_ARGS)
2730 return;
2731 args[nb_args++] = qemu_strdup("");
2733 if (nb_args <= 1) {
2734 /* command completion */
2735 if (nb_args == 0)
2736 cmdname = "";
2737 else
2738 cmdname = args[0];
2739 completion_index = strlen(cmdname);
2740 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2741 cmd_completion(cmdname, cmd->name);
2743 } else {
2744 /* find the command */
2745 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2746 if (compare_cmd(args[0], cmd->name))
2747 goto found;
2749 return;
2750 found:
2751 ptype = cmd->args_type;
2752 for(i = 0; i < nb_args - 2; i++) {
2753 if (*ptype != '\0') {
2754 ptype++;
2755 while (*ptype == '?')
2756 ptype++;
2759 str = args[nb_args - 1];
2760 switch(*ptype) {
2761 case 'F':
2762 /* file completion */
2763 completion_index = strlen(str);
2764 file_completion(str);
2765 break;
2766 case 'B':
2767 /* block device name completion */
2768 completion_index = strlen(str);
2769 bdrv_iterate(block_completion_it, (void *)str);
2770 break;
2771 case 's':
2772 /* XXX: more generic ? */
2773 if (!strcmp(cmd->name, "info")) {
2774 completion_index = strlen(str);
2775 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
2776 cmd_completion(str, cmd->name);
2778 } else if (!strcmp(cmd->name, "sendkey")) {
2779 completion_index = strlen(str);
2780 for(key = key_defs; key->name != NULL; key++) {
2781 cmd_completion(str, key->name);
2784 break;
2785 default:
2786 break;
2789 for(i = 0; i < nb_args; i++)
2790 qemu_free(args[i]);
2793 static int term_can_read(void *opaque)
2795 return 128;
2798 static void term_read(void *opaque, const uint8_t *buf, int size)
2800 int i;
2801 for(i = 0; i < size; i++)
2802 readline_handle_byte(buf[i]);
2805 static int monitor_suspended;
2807 static void monitor_handle_command1(void *opaque, const char *cmdline)
2809 monitor_handle_command(cmdline);
2810 if (!monitor_suspended)
2811 monitor_start_input();
2812 else
2813 monitor_suspended = 2;
2816 void monitor_suspend(void)
2818 monitor_suspended = 1;
2821 void monitor_resume(void)
2823 if (monitor_suspended == 2)
2824 monitor_start_input();
2825 monitor_suspended = 0;
2828 static void monitor_start_input(void)
2830 readline_start("(qemu) ", 0, monitor_handle_command1, NULL);
2833 static void term_event(void *opaque, int event)
2835 if (event != CHR_EVENT_RESET)
2836 return;
2838 if (!hide_banner)
2839 term_printf("QEMU %s monitor - type 'help' for more information\n",
2840 QEMU_VERSION);
2841 monitor_start_input();
2844 static int is_first_init = 1;
2846 void monitor_init(CharDriverState *hd, int show_banner)
2848 int i;
2850 if (is_first_init) {
2851 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
2852 if (!key_timer)
2853 return;
2854 for (i = 0; i < MAX_MON; i++) {
2855 monitor_hd[i] = NULL;
2857 is_first_init = 0;
2859 for (i = 0; i < MAX_MON; i++) {
2860 if (monitor_hd[i] == NULL) {
2861 monitor_hd[i] = hd;
2862 break;
2866 hide_banner = !show_banner;
2868 qemu_chr_add_handlers(hd, term_can_read, term_read, term_event, NULL);
2870 readline_start("", 0, monitor_handle_command1, NULL);
2873 /* XXX: use threads ? */
2874 /* modal monitor readline */
2875 static int monitor_readline_started;
2876 static char *monitor_readline_buf;
2877 static int monitor_readline_buf_size;
2879 static void monitor_readline_cb(void *opaque, const char *input)
2881 pstrcpy(monitor_readline_buf, monitor_readline_buf_size, input);
2882 monitor_readline_started = 0;
2885 void monitor_readline(const char *prompt, int is_password,
2886 char *buf, int buf_size)
2888 int i;
2889 int old_focus[MAX_MON];
2891 if (is_password) {
2892 for (i = 0; i < MAX_MON; i++) {
2893 old_focus[i] = 0;
2894 if (monitor_hd[i]) {
2895 old_focus[i] = monitor_hd[i]->focus;
2896 monitor_hd[i]->focus = 0;
2897 qemu_chr_send_event(monitor_hd[i], CHR_EVENT_FOCUS);
2902 readline_start(prompt, is_password, monitor_readline_cb, NULL);
2903 monitor_readline_buf = buf;
2904 monitor_readline_buf_size = buf_size;
2905 monitor_readline_started = 1;
2906 while (monitor_readline_started) {
2907 main_loop_wait(10);
2909 /* restore original focus */
2910 if (is_password) {
2911 for (i = 0; i < MAX_MON; i++)
2912 if (old_focus[i])
2913 monitor_hd[i]->focus = old_focus[i];