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