Don't require all drivers to use virtio_net_hdr
[qemu-kvm/markmc.git] / monitor.c
blob4acf3460d00a8fc339765a3be648c71c82442442
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 "migration.h"
38 #include <dirent.h>
39 #include "qemu-timer.h"
41 #include "qemu-kvm.h"
43 //#define DEBUG
44 //#define DEBUG_COMPLETION
46 #ifndef offsetof
47 #define offsetof(type, field) ((size_t) &((type *)0)->field)
48 #endif
51 * Supported types:
53 * 'F' filename
54 * 'B' block device name
55 * 's' string (accept optional quote)
56 * 'i' 32 bit integer
57 * 'l' target long (32 or 64 bit)
58 * '/' optional gdb-like print format (like "/10x")
60 * '?' optional type (for 'F', 's' and 'i')
64 typedef struct term_cmd_t {
65 const char *name;
66 const char *args_type;
67 void (*handler)();
68 const char *params;
69 const char *help;
70 } term_cmd_t;
72 #define MAX_MON 4
73 static CharDriverState *monitor_hd[MAX_MON];
74 static int hide_banner;
76 static term_cmd_t term_cmds[];
77 static term_cmd_t info_cmds[];
79 static uint8_t term_outbuf[1024];
80 static int term_outbuf_index;
82 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(term_cmd_t *cmds, const char *prefix, const char *name)
185 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 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 term_cmd_t *cmd;
231 if (!item)
232 goto help;
233 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
234 if (compare_cmd(item, cmd->name))
235 goto found;
237 help:
238 help_cmd("info");
239 return;
240 found:
241 cmd->handler();
244 static void do_info_version(void)
246 term_printf("%s\n", QEMU_VERSION);
249 static void do_info_name(void)
251 if (qemu_name)
252 term_printf("%s\n", qemu_name);
255 static void do_info_block(void)
257 bdrv_info();
260 static void do_info_blockstats(void)
262 bdrv_info_stats();
265 /* get the current CPU defined by the user */
266 static int mon_set_cpu(int cpu_index)
268 CPUState *env;
270 for(env = first_cpu; env != NULL; env = env->next_cpu) {
271 if (env->cpu_index == cpu_index) {
272 mon_cpu = env;
273 return 0;
276 return -1;
279 static CPUState *mon_get_cpu(void)
281 if (!mon_cpu) {
282 mon_set_cpu(0);
285 kvm_save_registers(mon_cpu);
287 return mon_cpu;
290 static void do_info_registers(void)
292 CPUState *env;
293 env = mon_get_cpu();
294 if (!env)
295 return;
296 #ifdef TARGET_I386
297 cpu_dump_state(env, NULL, monitor_fprintf,
298 X86_DUMP_FPU);
299 #else
300 cpu_dump_state(env, NULL, monitor_fprintf,
302 #endif
305 static void do_info_cpus(void)
307 CPUState *env;
309 /* just to set the default cpu if not already done */
310 mon_get_cpu();
312 for(env = first_cpu; env != NULL; env = env->next_cpu) {
313 kvm_save_registers(env);
314 term_printf("%c CPU #%d:",
315 (env == mon_cpu) ? '*' : ' ',
316 env->cpu_index);
317 #if defined(TARGET_I386)
318 term_printf(" pc=0x" TARGET_FMT_lx, env->eip + env->segs[R_CS].base);
319 #elif defined(TARGET_PPC)
320 term_printf(" nip=0x" TARGET_FMT_lx, env->nip);
321 #elif defined(TARGET_SPARC)
322 term_printf(" pc=0x" TARGET_FMT_lx " npc=0x" TARGET_FMT_lx, env->pc, env->npc);
323 #elif defined(TARGET_MIPS)
324 term_printf(" PC=0x" TARGET_FMT_lx, env->active_tc.PC);
325 #endif
326 if (env->halted)
327 term_printf(" (halted)");
328 term_printf(" thread_id=%d", env->thread_id);
329 term_printf("\n");
333 static void do_cpu_set(int index)
335 if (mon_set_cpu(index) < 0)
336 term_printf("Invalid CPU index\n");
339 static void do_cpu_set_nr(int value, const char *status)
341 int state;
343 if (!strcmp(status, "online"))
344 state = 1;
345 else if (!strcmp(status, "offline"))
346 state = 0;
347 else {
348 term_printf("invalid status: %s\n", status);
349 return;
351 #if defined(TARGET_I386) || defined(TARGET_X86_64)
352 qemu_system_cpu_hot_add(value, state);
353 #endif
356 static void do_info_jit(void)
358 dump_exec_info(NULL, monitor_fprintf);
361 static void do_info_history (void)
363 int i;
364 const char *str;
366 i = 0;
367 for(;;) {
368 str = readline_get_history(i);
369 if (!str)
370 break;
371 term_printf("%d: '%s'\n", i, str);
372 i++;
376 #if defined(TARGET_PPC)
377 /* XXX: not implemented in other targets */
378 static void do_info_cpu_stats (void)
380 CPUState *env;
382 env = mon_get_cpu();
383 cpu_dump_statistics(env, NULL, &monitor_fprintf, 0);
385 #endif
387 static void do_quit(void)
389 exit(0);
392 static int eject_device(BlockDriverState *bs, int force)
394 if (bdrv_is_inserted(bs)) {
395 if (!force) {
396 if (!bdrv_is_removable(bs)) {
397 term_printf("device is not removable\n");
398 return -1;
400 if (bdrv_is_locked(bs)) {
401 term_printf("device is locked\n");
402 return -1;
405 bdrv_close(bs);
407 return 0;
410 static void do_eject(int force, const char *filename)
412 BlockDriverState *bs;
414 bs = bdrv_find(filename);
415 if (!bs) {
416 term_printf("device not found\n");
417 return;
419 eject_device(bs, force);
422 static void do_change_block(const char *device, const char *filename, const char *fmt)
424 BlockDriverState *bs;
425 BlockDriver *drv = NULL;
427 bs = bdrv_find(device);
428 if (!bs) {
429 term_printf("device not found\n");
430 return;
432 if (fmt) {
433 drv = bdrv_find_format(fmt);
434 if (!drv) {
435 term_printf("invalid format %s\n", fmt);
436 return;
439 if (eject_device(bs, 0) < 0)
440 return;
441 bdrv_open2(bs, filename, 0, drv);
442 qemu_key_check(bs, filename);
445 static void do_change_vnc(const char *target)
447 if (strcmp(target, "passwd") == 0 ||
448 strcmp(target, "password") == 0) {
449 char password[9];
450 monitor_readline("Password: ", 1, password, sizeof(password)-1);
451 password[sizeof(password)-1] = '\0';
452 if (vnc_display_password(NULL, password) < 0)
453 term_printf("could not set VNC server password\n");
454 } else {
455 if (vnc_display_open(NULL, target) < 0)
456 term_printf("could not start VNC server on %s\n", target);
460 static void do_change(const char *device, const char *target, const char *fmt)
462 if (strcmp(device, "vnc") == 0) {
463 do_change_vnc(target);
464 } else {
465 do_change_block(device, target, fmt);
469 static void do_screen_dump(const char *filename)
471 vga_hw_screen_dump(filename);
474 static void do_logfile(const char *filename)
476 cpu_set_log_filename(filename);
479 static void do_log(const char *items)
481 int mask;
483 if (!strcmp(items, "none")) {
484 mask = 0;
485 } else {
486 mask = cpu_str_to_log_mask(items);
487 if (!mask) {
488 help_cmd("log");
489 return;
492 cpu_set_log(mask);
495 static void do_stop(void)
497 vm_stop(EXCP_INTERRUPT);
500 static void do_cont(void)
502 vm_start();
505 #ifdef CONFIG_GDBSTUB
506 static void do_gdbserver(const char *port)
508 if (!port)
509 port = DEFAULT_GDBSTUB_PORT;
510 if (gdbserver_start(port) < 0) {
511 qemu_printf("Could not open gdbserver socket on port '%s'\n", port);
512 } else {
513 qemu_printf("Waiting gdb connection on port '%s'\n", port);
516 #endif
518 static void term_printc(int c)
520 term_printf("'");
521 switch(c) {
522 case '\'':
523 term_printf("\\'");
524 break;
525 case '\\':
526 term_printf("\\\\");
527 break;
528 case '\n':
529 term_printf("\\n");
530 break;
531 case '\r':
532 term_printf("\\r");
533 break;
534 default:
535 if (c >= 32 && c <= 126) {
536 term_printf("%c", c);
537 } else {
538 term_printf("\\x%02x", c);
540 break;
542 term_printf("'");
545 static void memory_dump(int count, int format, int wsize,
546 target_phys_addr_t addr, int is_physical)
548 CPUState *env;
549 int nb_per_line, l, line_size, i, max_digits, len;
550 uint8_t buf[16];
551 uint64_t v;
553 if (format == 'i') {
554 int flags;
555 flags = 0;
556 env = mon_get_cpu();
557 if (!env && !is_physical)
558 return;
559 #ifdef TARGET_I386
560 if (wsize == 2) {
561 flags = 1;
562 } else if (wsize == 4) {
563 flags = 0;
564 } else {
565 /* as default we use the current CS size */
566 flags = 0;
567 if (env) {
568 #ifdef TARGET_X86_64
569 if ((env->efer & MSR_EFER_LMA) &&
570 (env->segs[R_CS].flags & DESC_L_MASK))
571 flags = 2;
572 else
573 #endif
574 if (!(env->segs[R_CS].flags & DESC_B_MASK))
575 flags = 1;
578 #endif
579 monitor_disas(env, addr, count, is_physical, flags);
580 return;
583 len = wsize * count;
584 if (wsize == 1)
585 line_size = 8;
586 else
587 line_size = 16;
588 nb_per_line = line_size / wsize;
589 max_digits = 0;
591 switch(format) {
592 case 'o':
593 max_digits = (wsize * 8 + 2) / 3;
594 break;
595 default:
596 case 'x':
597 max_digits = (wsize * 8) / 4;
598 break;
599 case 'u':
600 case 'd':
601 max_digits = (wsize * 8 * 10 + 32) / 33;
602 break;
603 case 'c':
604 wsize = 1;
605 break;
608 while (len > 0) {
609 if (is_physical)
610 term_printf(TARGET_FMT_plx ":", addr);
611 else
612 term_printf(TARGET_FMT_lx ":", (target_ulong)addr);
613 l = len;
614 if (l > line_size)
615 l = line_size;
616 if (is_physical) {
617 cpu_physical_memory_rw(addr, buf, l, 0);
618 } else {
619 env = mon_get_cpu();
620 if (!env)
621 break;
622 cpu_memory_rw_debug(env, addr, buf, l, 0);
624 i = 0;
625 while (i < l) {
626 switch(wsize) {
627 default:
628 case 1:
629 v = ldub_raw(buf + i);
630 break;
631 case 2:
632 v = lduw_raw(buf + i);
633 break;
634 case 4:
635 v = (uint32_t)ldl_raw(buf + i);
636 break;
637 case 8:
638 v = ldq_raw(buf + i);
639 break;
641 term_printf(" ");
642 switch(format) {
643 case 'o':
644 term_printf("%#*" PRIo64, max_digits, v);
645 break;
646 case 'x':
647 term_printf("0x%0*" PRIx64, max_digits, v);
648 break;
649 case 'u':
650 term_printf("%*" PRIu64, max_digits, v);
651 break;
652 case 'd':
653 term_printf("%*" PRId64, max_digits, v);
654 break;
655 case 'c':
656 term_printc(v);
657 break;
659 i += wsize;
661 term_printf("\n");
662 addr += l;
663 len -= l;
667 #if TARGET_LONG_BITS == 64
668 #define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
669 #else
670 #define GET_TLONG(h, l) (l)
671 #endif
673 static void do_memory_dump(int count, int format, int size,
674 uint32_t addrh, uint32_t addrl)
676 target_long addr = GET_TLONG(addrh, addrl);
677 memory_dump(count, format, size, addr, 0);
680 #if TARGET_PHYS_ADDR_BITS > 32
681 #define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
682 #else
683 #define GET_TPHYSADDR(h, l) (l)
684 #endif
686 static void do_physical_memory_dump(int count, int format, int size,
687 uint32_t addrh, uint32_t addrl)
690 target_phys_addr_t addr = GET_TPHYSADDR(addrh, addrl);
691 memory_dump(count, format, size, addr, 1);
694 static void do_print(int count, int format, int size, unsigned int valh, unsigned int vall)
696 target_phys_addr_t val = GET_TPHYSADDR(valh, vall);
697 #if TARGET_PHYS_ADDR_BITS == 32
698 switch(format) {
699 case 'o':
700 term_printf("%#o", val);
701 break;
702 case 'x':
703 term_printf("%#x", val);
704 break;
705 case 'u':
706 term_printf("%u", val);
707 break;
708 default:
709 case 'd':
710 term_printf("%d", val);
711 break;
712 case 'c':
713 term_printc(val);
714 break;
716 #else
717 switch(format) {
718 case 'o':
719 term_printf("%#" PRIo64, val);
720 break;
721 case 'x':
722 term_printf("%#" PRIx64, val);
723 break;
724 case 'u':
725 term_printf("%" PRIu64, val);
726 break;
727 default:
728 case 'd':
729 term_printf("%" PRId64, val);
730 break;
731 case 'c':
732 term_printc(val);
733 break;
735 #endif
736 term_printf("\n");
739 static void do_memory_save(unsigned int valh, unsigned int vall,
740 uint32_t size, const char *filename)
742 FILE *f;
743 target_long addr = GET_TLONG(valh, vall);
744 uint32_t l;
745 CPUState *env;
746 uint8_t buf[1024];
748 env = mon_get_cpu();
749 if (!env)
750 return;
752 f = fopen(filename, "wb");
753 if (!f) {
754 term_printf("could not open '%s'\n", filename);
755 return;
757 while (size != 0) {
758 l = sizeof(buf);
759 if (l > size)
760 l = size;
761 cpu_memory_rw_debug(env, addr, buf, l, 0);
762 fwrite(buf, 1, l, f);
763 addr += l;
764 size -= l;
766 fclose(f);
769 static void do_physical_memory_save(unsigned int valh, unsigned int vall,
770 uint32_t size, const char *filename)
772 FILE *f;
773 uint32_t l;
774 uint8_t buf[1024];
775 target_phys_addr_t addr = GET_TPHYSADDR(valh, vall);
777 f = fopen(filename, "wb");
778 if (!f) {
779 term_printf("could not open '%s'\n", filename);
780 return;
782 while (size != 0) {
783 l = sizeof(buf);
784 if (l > size)
785 l = size;
786 cpu_physical_memory_rw(addr, buf, l, 0);
787 fwrite(buf, 1, l, f);
788 fflush(f);
789 addr += l;
790 size -= l;
792 fclose(f);
795 static void do_sum(uint32_t start, uint32_t size)
797 uint32_t addr;
798 uint8_t buf[1];
799 uint16_t sum;
801 sum = 0;
802 for(addr = start; addr < (start + size); addr++) {
803 cpu_physical_memory_rw(addr, buf, 1, 0);
804 /* BSD sum algorithm ('sum' Unix command) */
805 sum = (sum >> 1) | (sum << 15);
806 sum += buf[0];
808 term_printf("%05d\n", sum);
811 typedef struct {
812 int keycode;
813 const char *name;
814 } KeyDef;
816 static const KeyDef key_defs[] = {
817 { 0x2a, "shift" },
818 { 0x36, "shift_r" },
820 { 0x38, "alt" },
821 { 0xb8, "alt_r" },
822 { 0x1d, "ctrl" },
823 { 0x9d, "ctrl_r" },
825 { 0xdd, "menu" },
827 { 0x01, "esc" },
829 { 0x02, "1" },
830 { 0x03, "2" },
831 { 0x04, "3" },
832 { 0x05, "4" },
833 { 0x06, "5" },
834 { 0x07, "6" },
835 { 0x08, "7" },
836 { 0x09, "8" },
837 { 0x0a, "9" },
838 { 0x0b, "0" },
839 { 0x0c, "minus" },
840 { 0x0d, "equal" },
841 { 0x0e, "backspace" },
843 { 0x0f, "tab" },
844 { 0x10, "q" },
845 { 0x11, "w" },
846 { 0x12, "e" },
847 { 0x13, "r" },
848 { 0x14, "t" },
849 { 0x15, "y" },
850 { 0x16, "u" },
851 { 0x17, "i" },
852 { 0x18, "o" },
853 { 0x19, "p" },
855 { 0x1c, "ret" },
857 { 0x1e, "a" },
858 { 0x1f, "s" },
859 { 0x20, "d" },
860 { 0x21, "f" },
861 { 0x22, "g" },
862 { 0x23, "h" },
863 { 0x24, "j" },
864 { 0x25, "k" },
865 { 0x26, "l" },
867 { 0x2c, "z" },
868 { 0x2d, "x" },
869 { 0x2e, "c" },
870 { 0x2f, "v" },
871 { 0x30, "b" },
872 { 0x31, "n" },
873 { 0x32, "m" },
875 { 0x37, "asterisk" },
877 { 0x39, "spc" },
878 { 0x3a, "caps_lock" },
879 { 0x3b, "f1" },
880 { 0x3c, "f2" },
881 { 0x3d, "f3" },
882 { 0x3e, "f4" },
883 { 0x3f, "f5" },
884 { 0x40, "f6" },
885 { 0x41, "f7" },
886 { 0x42, "f8" },
887 { 0x43, "f9" },
888 { 0x44, "f10" },
889 { 0x45, "num_lock" },
890 { 0x46, "scroll_lock" },
892 { 0xb5, "kp_divide" },
893 { 0x37, "kp_multiply" },
894 { 0x4a, "kp_subtract" },
895 { 0x4e, "kp_add" },
896 { 0x9c, "kp_enter" },
897 { 0x53, "kp_decimal" },
898 { 0x54, "sysrq" },
900 { 0x52, "kp_0" },
901 { 0x4f, "kp_1" },
902 { 0x50, "kp_2" },
903 { 0x51, "kp_3" },
904 { 0x4b, "kp_4" },
905 { 0x4c, "kp_5" },
906 { 0x4d, "kp_6" },
907 { 0x47, "kp_7" },
908 { 0x48, "kp_8" },
909 { 0x49, "kp_9" },
911 { 0x56, "<" },
913 { 0x57, "f11" },
914 { 0x58, "f12" },
916 { 0xb7, "print" },
918 { 0xc7, "home" },
919 { 0xc9, "pgup" },
920 { 0xd1, "pgdn" },
921 { 0xcf, "end" },
923 { 0xcb, "left" },
924 { 0xc8, "up" },
925 { 0xd0, "down" },
926 { 0xcd, "right" },
928 { 0xd2, "insert" },
929 { 0xd3, "delete" },
930 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
931 { 0xf0, "stop" },
932 { 0xf1, "again" },
933 { 0xf2, "props" },
934 { 0xf3, "undo" },
935 { 0xf4, "front" },
936 { 0xf5, "copy" },
937 { 0xf6, "open" },
938 { 0xf7, "paste" },
939 { 0xf8, "find" },
940 { 0xf9, "cut" },
941 { 0xfa, "lf" },
942 { 0xfb, "help" },
943 { 0xfc, "meta_l" },
944 { 0xfd, "meta_r" },
945 { 0xfe, "compose" },
946 #endif
947 { 0, NULL },
950 static int get_keycode(const char *key)
952 const KeyDef *p;
953 char *endp;
954 int ret;
956 for(p = key_defs; p->name != NULL; p++) {
957 if (!strcmp(key, p->name))
958 return p->keycode;
960 if (strstart(key, "0x", NULL)) {
961 ret = strtoul(key, &endp, 0);
962 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
963 return ret;
965 return -1;
968 #define MAX_KEYCODES 16
969 static uint8_t keycodes[MAX_KEYCODES];
970 static int nb_pending_keycodes;
971 static QEMUTimer *key_timer;
973 static void release_keys(void *opaque)
975 int keycode;
977 while (nb_pending_keycodes > 0) {
978 nb_pending_keycodes--;
979 keycode = keycodes[nb_pending_keycodes];
980 if (keycode & 0x80)
981 kbd_put_keycode(0xe0);
982 kbd_put_keycode(keycode | 0x80);
986 static void do_sendkey(const char *string, int has_hold_time, int hold_time)
988 char keyname_buf[16];
989 char *separator;
990 int keyname_len, keycode, i;
992 if (nb_pending_keycodes > 0) {
993 qemu_del_timer(key_timer);
994 release_keys(NULL);
996 if (!has_hold_time)
997 hold_time = 100;
998 i = 0;
999 while (1) {
1000 separator = strchr(string, '-');
1001 keyname_len = separator ? separator - string : strlen(string);
1002 if (keyname_len > 0) {
1003 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1004 if (keyname_len > sizeof(keyname_buf) - 1) {
1005 term_printf("invalid key: '%s...'\n", keyname_buf);
1006 return;
1008 if (i == MAX_KEYCODES) {
1009 term_printf("too many keys\n");
1010 return;
1012 keyname_buf[keyname_len] = 0;
1013 keycode = get_keycode(keyname_buf);
1014 if (keycode < 0) {
1015 term_printf("unknown key: '%s'\n", keyname_buf);
1016 return;
1018 keycodes[i++] = keycode;
1020 if (!separator)
1021 break;
1022 string = separator + 1;
1024 nb_pending_keycodes = i;
1025 /* key down events */
1026 for (i = 0; i < nb_pending_keycodes; i++) {
1027 keycode = keycodes[i];
1028 if (keycode & 0x80)
1029 kbd_put_keycode(0xe0);
1030 kbd_put_keycode(keycode & 0x7f);
1032 /* delayed key up events */
1033 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
1034 muldiv64(ticks_per_sec, hold_time, 1000));
1037 static int mouse_button_state;
1039 static void do_mouse_move(const char *dx_str, const char *dy_str,
1040 const char *dz_str)
1042 int dx, dy, dz;
1043 dx = strtol(dx_str, NULL, 0);
1044 dy = strtol(dy_str, NULL, 0);
1045 dz = 0;
1046 if (dz_str)
1047 dz = strtol(dz_str, NULL, 0);
1048 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1051 static void do_mouse_button(int button_state)
1053 mouse_button_state = button_state;
1054 kbd_mouse_event(0, 0, 0, mouse_button_state);
1057 static void do_ioport_read(int count, int format, int size, int addr, int has_index, int index)
1059 uint32_t val;
1060 int suffix;
1062 if (has_index) {
1063 cpu_outb(NULL, addr & 0xffff, index & 0xff);
1064 addr++;
1066 addr &= 0xffff;
1068 switch(size) {
1069 default:
1070 case 1:
1071 val = cpu_inb(NULL, addr);
1072 suffix = 'b';
1073 break;
1074 case 2:
1075 val = cpu_inw(NULL, addr);
1076 suffix = 'w';
1077 break;
1078 case 4:
1079 val = cpu_inl(NULL, addr);
1080 suffix = 'l';
1081 break;
1083 term_printf("port%c[0x%04x] = %#0*x\n",
1084 suffix, addr, size * 2, val);
1087 /* boot_set handler */
1088 static QEMUBootSetHandler *qemu_boot_set_handler = NULL;
1089 static void *boot_opaque;
1091 void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
1093 qemu_boot_set_handler = func;
1094 boot_opaque = opaque;
1097 static void do_boot_set(const char *bootdevice)
1099 int res;
1101 if (qemu_boot_set_handler) {
1102 res = qemu_boot_set_handler(boot_opaque, bootdevice);
1103 if (res == 0)
1104 term_printf("boot device list now set to %s\n", bootdevice);
1105 else
1106 term_printf("setting boot device list failed with error %i\n", res);
1107 } else {
1108 term_printf("no function defined to set boot device list for this architecture\n");
1112 static void do_system_reset(void)
1114 qemu_system_reset_request();
1117 static void do_system_powerdown(void)
1119 qemu_system_powerdown_request();
1122 #if defined(TARGET_I386)
1123 static void print_pte(uint32_t addr, uint32_t pte, uint32_t mask)
1125 term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n",
1126 addr,
1127 pte & mask,
1128 pte & PG_GLOBAL_MASK ? 'G' : '-',
1129 pte & PG_PSE_MASK ? 'P' : '-',
1130 pte & PG_DIRTY_MASK ? 'D' : '-',
1131 pte & PG_ACCESSED_MASK ? 'A' : '-',
1132 pte & PG_PCD_MASK ? 'C' : '-',
1133 pte & PG_PWT_MASK ? 'T' : '-',
1134 pte & PG_USER_MASK ? 'U' : '-',
1135 pte & PG_RW_MASK ? 'W' : '-');
1138 static void tlb_info(void)
1140 CPUState *env;
1141 int l1, l2;
1142 uint32_t pgd, pde, pte;
1144 env = mon_get_cpu();
1145 if (!env)
1146 return;
1148 if (!(env->cr[0] & CR0_PG_MASK)) {
1149 term_printf("PG disabled\n");
1150 return;
1152 pgd = env->cr[3] & ~0xfff;
1153 for(l1 = 0; l1 < 1024; l1++) {
1154 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1155 pde = le32_to_cpu(pde);
1156 if (pde & PG_PRESENT_MASK) {
1157 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1158 print_pte((l1 << 22), pde, ~((1 << 20) - 1));
1159 } else {
1160 for(l2 = 0; l2 < 1024; l2++) {
1161 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
1162 (uint8_t *)&pte, 4);
1163 pte = le32_to_cpu(pte);
1164 if (pte & PG_PRESENT_MASK) {
1165 print_pte((l1 << 22) + (l2 << 12),
1166 pte & ~PG_PSE_MASK,
1167 ~0xfff);
1175 static void mem_print(uint32_t *pstart, int *plast_prot,
1176 uint32_t end, int prot)
1178 int prot1;
1179 prot1 = *plast_prot;
1180 if (prot != prot1) {
1181 if (*pstart != -1) {
1182 term_printf("%08x-%08x %08x %c%c%c\n",
1183 *pstart, end, end - *pstart,
1184 prot1 & PG_USER_MASK ? 'u' : '-',
1185 'r',
1186 prot1 & PG_RW_MASK ? 'w' : '-');
1188 if (prot != 0)
1189 *pstart = end;
1190 else
1191 *pstart = -1;
1192 *plast_prot = prot;
1196 static void mem_info(void)
1198 CPUState *env;
1199 int l1, l2, prot, last_prot;
1200 uint32_t pgd, pde, pte, start, end;
1202 env = mon_get_cpu();
1203 if (!env)
1204 return;
1206 if (!(env->cr[0] & CR0_PG_MASK)) {
1207 term_printf("PG disabled\n");
1208 return;
1210 pgd = env->cr[3] & ~0xfff;
1211 last_prot = 0;
1212 start = -1;
1213 for(l1 = 0; l1 < 1024; l1++) {
1214 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1215 pde = le32_to_cpu(pde);
1216 end = l1 << 22;
1217 if (pde & PG_PRESENT_MASK) {
1218 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1219 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1220 mem_print(&start, &last_prot, end, prot);
1221 } else {
1222 for(l2 = 0; l2 < 1024; l2++) {
1223 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
1224 (uint8_t *)&pte, 4);
1225 pte = le32_to_cpu(pte);
1226 end = (l1 << 22) + (l2 << 12);
1227 if (pte & PG_PRESENT_MASK) {
1228 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1229 } else {
1230 prot = 0;
1232 mem_print(&start, &last_prot, end, prot);
1235 } else {
1236 prot = 0;
1237 mem_print(&start, &last_prot, end, prot);
1241 #endif
1243 static void do_info_kqemu(void)
1245 #ifdef USE_KQEMU
1246 CPUState *env;
1247 int val;
1248 val = 0;
1249 env = mon_get_cpu();
1250 if (!env) {
1251 term_printf("No cpu initialized yet");
1252 return;
1254 val = env->kqemu_enabled;
1255 term_printf("kqemu support: ");
1256 switch(val) {
1257 default:
1258 case 0:
1259 term_printf("disabled\n");
1260 break;
1261 case 1:
1262 term_printf("enabled for user code\n");
1263 break;
1264 case 2:
1265 term_printf("enabled for user and kernel code\n");
1266 break;
1268 #else
1269 term_printf("kqemu support: not compiled\n");
1270 #endif
1273 static void do_info_kvm(void)
1275 #ifdef USE_KVM
1276 term_printf("kvm support: ");
1277 if (kvm_enabled())
1278 term_printf("enabled\n");
1279 else
1280 term_printf("disabled\n");
1281 #else
1282 term_printf("kvm support: not compiled\n");
1283 #endif
1286 #ifdef CONFIG_PROFILER
1288 int64_t kqemu_time;
1289 int64_t qemu_time;
1290 int64_t kqemu_exec_count;
1291 int64_t dev_time;
1292 int64_t kqemu_ret_int_count;
1293 int64_t kqemu_ret_excp_count;
1294 int64_t kqemu_ret_intr_count;
1296 static void do_info_profile(void)
1298 int64_t total;
1299 total = qemu_time;
1300 if (total == 0)
1301 total = 1;
1302 term_printf("async time %" PRId64 " (%0.3f)\n",
1303 dev_time, dev_time / (double)ticks_per_sec);
1304 term_printf("qemu time %" PRId64 " (%0.3f)\n",
1305 qemu_time, qemu_time / (double)ticks_per_sec);
1306 term_printf("kqemu time %" PRId64 " (%0.3f %0.1f%%) count=%" PRId64 " int=%" PRId64 " excp=%" PRId64 " intr=%" PRId64 "\n",
1307 kqemu_time, kqemu_time / (double)ticks_per_sec,
1308 kqemu_time / (double)total * 100.0,
1309 kqemu_exec_count,
1310 kqemu_ret_int_count,
1311 kqemu_ret_excp_count,
1312 kqemu_ret_intr_count);
1313 qemu_time = 0;
1314 kqemu_time = 0;
1315 kqemu_exec_count = 0;
1316 dev_time = 0;
1317 kqemu_ret_int_count = 0;
1318 kqemu_ret_excp_count = 0;
1319 kqemu_ret_intr_count = 0;
1320 #ifdef USE_KQEMU
1321 kqemu_record_dump();
1322 #endif
1324 #else
1325 static void do_info_profile(void)
1327 term_printf("Internal profiler not compiled\n");
1329 #endif
1331 /* Capture support */
1332 static LIST_HEAD (capture_list_head, CaptureState) capture_head;
1334 static void do_info_capture (void)
1336 int i;
1337 CaptureState *s;
1339 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1340 term_printf ("[%d]: ", i);
1341 s->ops.info (s->opaque);
1345 static void do_stop_capture (int n)
1347 int i;
1348 CaptureState *s;
1350 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1351 if (i == n) {
1352 s->ops.destroy (s->opaque);
1353 LIST_REMOVE (s, entries);
1354 qemu_free (s);
1355 return;
1360 #ifdef HAS_AUDIO
1361 int wav_start_capture (CaptureState *s, const char *path, int freq,
1362 int bits, int nchannels);
1364 static void do_wav_capture (const char *path,
1365 int has_freq, int freq,
1366 int has_bits, int bits,
1367 int has_channels, int nchannels)
1369 CaptureState *s;
1371 s = qemu_mallocz (sizeof (*s));
1372 if (!s) {
1373 term_printf ("Not enough memory to add wave capture\n");
1374 return;
1377 freq = has_freq ? freq : 44100;
1378 bits = has_bits ? bits : 16;
1379 nchannels = has_channels ? nchannels : 2;
1381 if (wav_start_capture (s, path, freq, bits, nchannels)) {
1382 term_printf ("Faied to add wave capture\n");
1383 qemu_free (s);
1385 LIST_INSERT_HEAD (&capture_head, s, entries);
1387 #endif
1389 #if defined(TARGET_I386)
1390 static void do_inject_nmi(int cpu_index)
1392 CPUState *env;
1394 for (env = first_cpu; env != NULL; env = env->next_cpu)
1395 if (env->cpu_index == cpu_index) {
1396 cpu_interrupt(env, CPU_INTERRUPT_NMI);
1397 break;
1400 #endif
1402 static term_cmd_t term_cmds[] = {
1403 { "help|?", "s?", do_help,
1404 "[cmd]", "show the help" },
1405 { "commit", "s", do_commit,
1406 "device|all", "commit changes to the disk images (if -snapshot is used) or backing files" },
1407 { "info", "s?", do_info,
1408 "subcommand", "show various information about the system state" },
1409 { "q|quit", "", do_quit,
1410 "", "quit the emulator" },
1411 { "eject", "-fB", do_eject,
1412 "[-f] device", "eject a removable medium (use -f to force it)" },
1413 { "change", "BFs?", do_change,
1414 "device filename [format]", "change a removable medium, optional format" },
1415 { "screendump", "F", do_screen_dump,
1416 "filename", "save screen into PPM image 'filename'" },
1417 { "logfile", "F", do_logfile,
1418 "filename", "output logs to 'filename'" },
1419 { "log", "s", do_log,
1420 "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" },
1421 { "savevm", "s?", do_savevm,
1422 "tag|id", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
1423 { "loadvm", "s", do_loadvm,
1424 "tag|id", "restore a VM snapshot from its tag or id" },
1425 { "delvm", "s", do_delvm,
1426 "tag|id", "delete a VM snapshot from its tag or id" },
1427 { "stop", "", do_stop,
1428 "", "stop emulation", },
1429 { "c|cont", "", do_cont,
1430 "", "resume emulation", },
1431 #ifdef CONFIG_GDBSTUB
1432 { "gdbserver", "s?", do_gdbserver,
1433 "[port]", "start gdbserver session (default port=1234)", },
1434 #endif
1435 { "x", "/l", do_memory_dump,
1436 "/fmt addr", "virtual memory dump starting at 'addr'", },
1437 { "xp", "/l", do_physical_memory_dump,
1438 "/fmt addr", "physical memory dump starting at 'addr'", },
1439 { "p|print", "/l", do_print,
1440 "/fmt expr", "print expression value (use $reg for CPU register access)", },
1441 { "i", "/ii.", do_ioport_read,
1442 "/fmt addr", "I/O port read" },
1444 { "sendkey", "si?", do_sendkey,
1445 "keys [hold_ms]", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)" },
1446 { "system_reset", "", do_system_reset,
1447 "", "reset the system" },
1448 { "system_powerdown", "", do_system_powerdown,
1449 "", "send system power down event" },
1450 { "sum", "ii", do_sum,
1451 "addr size", "compute the checksum of a memory region" },
1452 { "usb_add", "s", do_usb_add,
1453 "device", "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')" },
1454 { "usb_del", "s", do_usb_del,
1455 "device", "remove USB device 'bus.addr'" },
1456 { "cpu", "i", do_cpu_set,
1457 "index", "set the default CPU" },
1458 { "mouse_move", "sss?", do_mouse_move,
1459 "dx dy [dz]", "send mouse move events" },
1460 { "mouse_button", "i", do_mouse_button,
1461 "state", "change mouse button state (1=L, 2=M, 4=R)" },
1462 { "mouse_set", "i", do_mouse_set,
1463 "index", "set which mouse device receives events" },
1464 #ifdef HAS_AUDIO
1465 { "wavcapture", "si?i?i?", do_wav_capture,
1466 "path [frequency bits channels]",
1467 "capture audio to a wave file (default frequency=44100 bits=16 channels=2)" },
1468 #endif
1469 { "stopcapture", "i", do_stop_capture,
1470 "capture index", "stop capture" },
1471 { "memsave", "lis", do_memory_save,
1472 "addr size file", "save to disk virtual memory dump starting at 'addr' of size 'size'", },
1473 { "pmemsave", "lis", do_physical_memory_save,
1474 "addr size file", "save to disk physical memory dump starting at 'addr' of size 'size'", },
1475 { "boot_set", "s", do_boot_set,
1476 "bootdevice", "define new values for the boot device list" },
1477 #if defined(TARGET_I386)
1478 { "nmi", "i", do_inject_nmi,
1479 "cpu", "inject an NMI on the given CPU", },
1480 #endif
1481 { "migrate", "-ds", do_migrate,
1482 "[-d] command", "migrate the VM using command (use -d to not wait for command to complete)" },
1483 { "migrate_cancel", "", do_migrate_cancel,
1484 "", "cancel the current VM migration" },
1485 { "migrate_set_speed", "s", do_migrate_set_speed,
1486 "value", "set maximum speed (in bytes) for migrations" },
1487 { "cpu_set", "is", do_cpu_set_nr, "cpu [online|offline]", "change cpu state" },
1488 #if defined(TARGET_I386) || defined(TARGET_X86_64)
1489 { "drive_add", "iss", drive_hot_add, "pcibus pcidevfn [file=file][,if=type][,bus=n]\n"
1490 "[,unit=m][,media=d][index=i]\n"
1491 "[,cyls=c,heads=h,secs=s[,trans=t]]\n"
1492 "[snapshot=on|off][,cache=on|off]",
1493 "add drive to PCI storage controller" },
1494 { "pci_add", "iss", device_hot_add, "bus nic|storage [[vlan=n][,macaddr=addr][,model=type]] [file=file][,if=type][,bus=nr]...", "hot-add PCI device" },
1495 { "pci_del", "ii", device_hot_remove, "bus slot-number", "hot remove PCI device" },
1496 #endif
1497 { NULL, NULL, },
1500 static term_cmd_t info_cmds[] = {
1501 { "version", "", do_info_version,
1502 "", "show the version of qemu" },
1503 { "network", "", do_info_network,
1504 "", "show the network state" },
1505 { "block", "", do_info_block,
1506 "", "show the block devices" },
1507 { "blockstats", "", do_info_blockstats,
1508 "", "show block device statistics" },
1509 { "registers", "", do_info_registers,
1510 "", "show the cpu registers" },
1511 { "cpus", "", do_info_cpus,
1512 "", "show infos for each CPU" },
1513 { "history", "", do_info_history,
1514 "", "show the command line history", },
1515 { "irq", "", irq_info,
1516 "", "show the interrupts statistics (if available)", },
1517 { "pic", "", pic_info,
1518 "", "show i8259 (PIC) state", },
1519 { "pci", "", pci_info,
1520 "", "show PCI info", },
1521 #if defined(TARGET_I386)
1522 { "tlb", "", tlb_info,
1523 "", "show virtual to physical memory mappings", },
1524 { "mem", "", mem_info,
1525 "", "show the active virtual memory mappings", },
1526 #endif
1527 { "jit", "", do_info_jit,
1528 "", "show dynamic compiler info", },
1529 { "kqemu", "", do_info_kqemu,
1530 "", "show kqemu information", },
1531 { "kvm", "", do_info_kvm,
1532 "", "show kvm information", },
1533 { "usb", "", usb_info,
1534 "", "show guest USB devices", },
1535 { "usbhost", "", usb_host_info,
1536 "", "show host USB devices", },
1537 { "profile", "", do_info_profile,
1538 "", "show profiling information", },
1539 { "capture", "", do_info_capture,
1540 "", "show capture information" },
1541 { "snapshots", "", do_info_snapshots,
1542 "", "show the currently saved VM snapshots" },
1543 { "pcmcia", "", pcmcia_info,
1544 "", "show guest PCMCIA status" },
1545 { "mice", "", do_info_mice,
1546 "", "show which guest mouse is receiving events" },
1547 { "vnc", "", do_info_vnc,
1548 "", "show the vnc server status"},
1549 { "name", "", do_info_name,
1550 "", "show the current VM name" },
1551 #if defined(TARGET_PPC)
1552 { "cpustats", "", do_info_cpu_stats,
1553 "", "show CPU statistics", },
1554 #endif
1555 #if defined(CONFIG_SLIRP)
1556 { "slirp", "", do_info_slirp,
1557 "", "show SLIRP statistics", },
1558 #endif
1559 { "migration", "", do_info_migration,
1560 "", "show migration information" },
1561 { NULL, NULL, },
1564 /*******************************************************************/
1566 static const char *pch;
1567 static jmp_buf expr_env;
1569 #define MD_TLONG 0
1570 #define MD_I32 1
1572 typedef struct MonitorDef {
1573 const char *name;
1574 int offset;
1575 target_long (*get_value)(struct MonitorDef *md, int val);
1576 int type;
1577 } MonitorDef;
1579 #if defined(TARGET_I386)
1580 static target_long monitor_get_pc (struct MonitorDef *md, int val)
1582 CPUState *env = mon_get_cpu();
1583 if (!env)
1584 return 0;
1585 return env->eip + env->segs[R_CS].base;
1587 #endif
1589 #if defined(TARGET_PPC)
1590 static target_long monitor_get_ccr (struct MonitorDef *md, int val)
1592 CPUState *env = mon_get_cpu();
1593 unsigned int u;
1594 int i;
1596 if (!env)
1597 return 0;
1599 u = 0;
1600 for (i = 0; i < 8; i++)
1601 u |= env->crf[i] << (32 - (4 * i));
1603 return u;
1606 static target_long monitor_get_msr (struct MonitorDef *md, int val)
1608 CPUState *env = mon_get_cpu();
1609 if (!env)
1610 return 0;
1611 return env->msr;
1614 static target_long monitor_get_xer (struct MonitorDef *md, int val)
1616 CPUState *env = mon_get_cpu();
1617 if (!env)
1618 return 0;
1619 return ppc_load_xer(env);
1622 static target_long monitor_get_decr (struct MonitorDef *md, int val)
1624 CPUState *env = mon_get_cpu();
1625 if (!env)
1626 return 0;
1627 return cpu_ppc_load_decr(env);
1630 static target_long monitor_get_tbu (struct MonitorDef *md, int val)
1632 CPUState *env = mon_get_cpu();
1633 if (!env)
1634 return 0;
1635 return cpu_ppc_load_tbu(env);
1638 static target_long monitor_get_tbl (struct MonitorDef *md, int val)
1640 CPUState *env = mon_get_cpu();
1641 if (!env)
1642 return 0;
1643 return cpu_ppc_load_tbl(env);
1645 #endif
1647 #if defined(TARGET_SPARC)
1648 #ifndef TARGET_SPARC64
1649 static target_long monitor_get_psr (struct MonitorDef *md, int val)
1651 CPUState *env = mon_get_cpu();
1652 if (!env)
1653 return 0;
1654 return GET_PSR(env);
1656 #endif
1658 static target_long monitor_get_reg(struct MonitorDef *md, int val)
1660 CPUState *env = mon_get_cpu();
1661 if (!env)
1662 return 0;
1663 return env->regwptr[val];
1665 #endif
1667 static MonitorDef monitor_defs[] = {
1668 #ifdef TARGET_I386
1670 #define SEG(name, seg) \
1671 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
1672 { name ".base", offsetof(CPUState, segs[seg].base) },\
1673 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
1675 { "eax", offsetof(CPUState, regs[0]) },
1676 { "ecx", offsetof(CPUState, regs[1]) },
1677 { "edx", offsetof(CPUState, regs[2]) },
1678 { "ebx", offsetof(CPUState, regs[3]) },
1679 { "esp|sp", offsetof(CPUState, regs[4]) },
1680 { "ebp|fp", offsetof(CPUState, regs[5]) },
1681 { "esi", offsetof(CPUState, regs[6]) },
1682 { "edi", offsetof(CPUState, regs[7]) },
1683 #ifdef TARGET_X86_64
1684 { "r8", offsetof(CPUState, regs[8]) },
1685 { "r9", offsetof(CPUState, regs[9]) },
1686 { "r10", offsetof(CPUState, regs[10]) },
1687 { "r11", offsetof(CPUState, regs[11]) },
1688 { "r12", offsetof(CPUState, regs[12]) },
1689 { "r13", offsetof(CPUState, regs[13]) },
1690 { "r14", offsetof(CPUState, regs[14]) },
1691 { "r15", offsetof(CPUState, regs[15]) },
1692 #endif
1693 { "eflags", offsetof(CPUState, eflags) },
1694 { "eip", offsetof(CPUState, eip) },
1695 SEG("cs", R_CS)
1696 SEG("ds", R_DS)
1697 SEG("es", R_ES)
1698 SEG("ss", R_SS)
1699 SEG("fs", R_FS)
1700 SEG("gs", R_GS)
1701 { "pc", 0, monitor_get_pc, },
1702 #elif defined(TARGET_PPC)
1703 /* General purpose registers */
1704 { "r0", offsetof(CPUState, gpr[0]) },
1705 { "r1", offsetof(CPUState, gpr[1]) },
1706 { "r2", offsetof(CPUState, gpr[2]) },
1707 { "r3", offsetof(CPUState, gpr[3]) },
1708 { "r4", offsetof(CPUState, gpr[4]) },
1709 { "r5", offsetof(CPUState, gpr[5]) },
1710 { "r6", offsetof(CPUState, gpr[6]) },
1711 { "r7", offsetof(CPUState, gpr[7]) },
1712 { "r8", offsetof(CPUState, gpr[8]) },
1713 { "r9", offsetof(CPUState, gpr[9]) },
1714 { "r10", offsetof(CPUState, gpr[10]) },
1715 { "r11", offsetof(CPUState, gpr[11]) },
1716 { "r12", offsetof(CPUState, gpr[12]) },
1717 { "r13", offsetof(CPUState, gpr[13]) },
1718 { "r14", offsetof(CPUState, gpr[14]) },
1719 { "r15", offsetof(CPUState, gpr[15]) },
1720 { "r16", offsetof(CPUState, gpr[16]) },
1721 { "r17", offsetof(CPUState, gpr[17]) },
1722 { "r18", offsetof(CPUState, gpr[18]) },
1723 { "r19", offsetof(CPUState, gpr[19]) },
1724 { "r20", offsetof(CPUState, gpr[20]) },
1725 { "r21", offsetof(CPUState, gpr[21]) },
1726 { "r22", offsetof(CPUState, gpr[22]) },
1727 { "r23", offsetof(CPUState, gpr[23]) },
1728 { "r24", offsetof(CPUState, gpr[24]) },
1729 { "r25", offsetof(CPUState, gpr[25]) },
1730 { "r26", offsetof(CPUState, gpr[26]) },
1731 { "r27", offsetof(CPUState, gpr[27]) },
1732 { "r28", offsetof(CPUState, gpr[28]) },
1733 { "r29", offsetof(CPUState, gpr[29]) },
1734 { "r30", offsetof(CPUState, gpr[30]) },
1735 { "r31", offsetof(CPUState, gpr[31]) },
1736 /* Floating point registers */
1737 { "f0", offsetof(CPUState, fpr[0]) },
1738 { "f1", offsetof(CPUState, fpr[1]) },
1739 { "f2", offsetof(CPUState, fpr[2]) },
1740 { "f3", offsetof(CPUState, fpr[3]) },
1741 { "f4", offsetof(CPUState, fpr[4]) },
1742 { "f5", offsetof(CPUState, fpr[5]) },
1743 { "f6", offsetof(CPUState, fpr[6]) },
1744 { "f7", offsetof(CPUState, fpr[7]) },
1745 { "f8", offsetof(CPUState, fpr[8]) },
1746 { "f9", offsetof(CPUState, fpr[9]) },
1747 { "f10", offsetof(CPUState, fpr[10]) },
1748 { "f11", offsetof(CPUState, fpr[11]) },
1749 { "f12", offsetof(CPUState, fpr[12]) },
1750 { "f13", offsetof(CPUState, fpr[13]) },
1751 { "f14", offsetof(CPUState, fpr[14]) },
1752 { "f15", offsetof(CPUState, fpr[15]) },
1753 { "f16", offsetof(CPUState, fpr[16]) },
1754 { "f17", offsetof(CPUState, fpr[17]) },
1755 { "f18", offsetof(CPUState, fpr[18]) },
1756 { "f19", offsetof(CPUState, fpr[19]) },
1757 { "f20", offsetof(CPUState, fpr[20]) },
1758 { "f21", offsetof(CPUState, fpr[21]) },
1759 { "f22", offsetof(CPUState, fpr[22]) },
1760 { "f23", offsetof(CPUState, fpr[23]) },
1761 { "f24", offsetof(CPUState, fpr[24]) },
1762 { "f25", offsetof(CPUState, fpr[25]) },
1763 { "f26", offsetof(CPUState, fpr[26]) },
1764 { "f27", offsetof(CPUState, fpr[27]) },
1765 { "f28", offsetof(CPUState, fpr[28]) },
1766 { "f29", offsetof(CPUState, fpr[29]) },
1767 { "f30", offsetof(CPUState, fpr[30]) },
1768 { "f31", offsetof(CPUState, fpr[31]) },
1769 { "fpscr", offsetof(CPUState, fpscr) },
1770 /* Next instruction pointer */
1771 { "nip|pc", offsetof(CPUState, nip) },
1772 { "lr", offsetof(CPUState, lr) },
1773 { "ctr", offsetof(CPUState, ctr) },
1774 { "decr", 0, &monitor_get_decr, },
1775 { "ccr", 0, &monitor_get_ccr, },
1776 /* Machine state register */
1777 { "msr", 0, &monitor_get_msr, },
1778 { "xer", 0, &monitor_get_xer, },
1779 { "tbu", 0, &monitor_get_tbu, },
1780 { "tbl", 0, &monitor_get_tbl, },
1781 #if defined(TARGET_PPC64)
1782 /* Address space register */
1783 { "asr", offsetof(CPUState, asr) },
1784 #endif
1785 /* Segment registers */
1786 { "sdr1", offsetof(CPUState, sdr1) },
1787 { "sr0", offsetof(CPUState, sr[0]) },
1788 { "sr1", offsetof(CPUState, sr[1]) },
1789 { "sr2", offsetof(CPUState, sr[2]) },
1790 { "sr3", offsetof(CPUState, sr[3]) },
1791 { "sr4", offsetof(CPUState, sr[4]) },
1792 { "sr5", offsetof(CPUState, sr[5]) },
1793 { "sr6", offsetof(CPUState, sr[6]) },
1794 { "sr7", offsetof(CPUState, sr[7]) },
1795 { "sr8", offsetof(CPUState, sr[8]) },
1796 { "sr9", offsetof(CPUState, sr[9]) },
1797 { "sr10", offsetof(CPUState, sr[10]) },
1798 { "sr11", offsetof(CPUState, sr[11]) },
1799 { "sr12", offsetof(CPUState, sr[12]) },
1800 { "sr13", offsetof(CPUState, sr[13]) },
1801 { "sr14", offsetof(CPUState, sr[14]) },
1802 { "sr15", offsetof(CPUState, sr[15]) },
1803 /* Too lazy to put BATs and SPRs ... */
1804 #elif defined(TARGET_SPARC)
1805 { "g0", offsetof(CPUState, gregs[0]) },
1806 { "g1", offsetof(CPUState, gregs[1]) },
1807 { "g2", offsetof(CPUState, gregs[2]) },
1808 { "g3", offsetof(CPUState, gregs[3]) },
1809 { "g4", offsetof(CPUState, gregs[4]) },
1810 { "g5", offsetof(CPUState, gregs[5]) },
1811 { "g6", offsetof(CPUState, gregs[6]) },
1812 { "g7", offsetof(CPUState, gregs[7]) },
1813 { "o0", 0, monitor_get_reg },
1814 { "o1", 1, monitor_get_reg },
1815 { "o2", 2, monitor_get_reg },
1816 { "o3", 3, monitor_get_reg },
1817 { "o4", 4, monitor_get_reg },
1818 { "o5", 5, monitor_get_reg },
1819 { "o6", 6, monitor_get_reg },
1820 { "o7", 7, monitor_get_reg },
1821 { "l0", 8, monitor_get_reg },
1822 { "l1", 9, monitor_get_reg },
1823 { "l2", 10, monitor_get_reg },
1824 { "l3", 11, monitor_get_reg },
1825 { "l4", 12, monitor_get_reg },
1826 { "l5", 13, monitor_get_reg },
1827 { "l6", 14, monitor_get_reg },
1828 { "l7", 15, monitor_get_reg },
1829 { "i0", 16, monitor_get_reg },
1830 { "i1", 17, monitor_get_reg },
1831 { "i2", 18, monitor_get_reg },
1832 { "i3", 19, monitor_get_reg },
1833 { "i4", 20, monitor_get_reg },
1834 { "i5", 21, monitor_get_reg },
1835 { "i6", 22, monitor_get_reg },
1836 { "i7", 23, monitor_get_reg },
1837 { "pc", offsetof(CPUState, pc) },
1838 { "npc", offsetof(CPUState, npc) },
1839 { "y", offsetof(CPUState, y) },
1840 #ifndef TARGET_SPARC64
1841 { "psr", 0, &monitor_get_psr, },
1842 { "wim", offsetof(CPUState, wim) },
1843 #endif
1844 { "tbr", offsetof(CPUState, tbr) },
1845 { "fsr", offsetof(CPUState, fsr) },
1846 { "f0", offsetof(CPUState, fpr[0]) },
1847 { "f1", offsetof(CPUState, fpr[1]) },
1848 { "f2", offsetof(CPUState, fpr[2]) },
1849 { "f3", offsetof(CPUState, fpr[3]) },
1850 { "f4", offsetof(CPUState, fpr[4]) },
1851 { "f5", offsetof(CPUState, fpr[5]) },
1852 { "f6", offsetof(CPUState, fpr[6]) },
1853 { "f7", offsetof(CPUState, fpr[7]) },
1854 { "f8", offsetof(CPUState, fpr[8]) },
1855 { "f9", offsetof(CPUState, fpr[9]) },
1856 { "f10", offsetof(CPUState, fpr[10]) },
1857 { "f11", offsetof(CPUState, fpr[11]) },
1858 { "f12", offsetof(CPUState, fpr[12]) },
1859 { "f13", offsetof(CPUState, fpr[13]) },
1860 { "f14", offsetof(CPUState, fpr[14]) },
1861 { "f15", offsetof(CPUState, fpr[15]) },
1862 { "f16", offsetof(CPUState, fpr[16]) },
1863 { "f17", offsetof(CPUState, fpr[17]) },
1864 { "f18", offsetof(CPUState, fpr[18]) },
1865 { "f19", offsetof(CPUState, fpr[19]) },
1866 { "f20", offsetof(CPUState, fpr[20]) },
1867 { "f21", offsetof(CPUState, fpr[21]) },
1868 { "f22", offsetof(CPUState, fpr[22]) },
1869 { "f23", offsetof(CPUState, fpr[23]) },
1870 { "f24", offsetof(CPUState, fpr[24]) },
1871 { "f25", offsetof(CPUState, fpr[25]) },
1872 { "f26", offsetof(CPUState, fpr[26]) },
1873 { "f27", offsetof(CPUState, fpr[27]) },
1874 { "f28", offsetof(CPUState, fpr[28]) },
1875 { "f29", offsetof(CPUState, fpr[29]) },
1876 { "f30", offsetof(CPUState, fpr[30]) },
1877 { "f31", offsetof(CPUState, fpr[31]) },
1878 #ifdef TARGET_SPARC64
1879 { "f32", offsetof(CPUState, fpr[32]) },
1880 { "f34", offsetof(CPUState, fpr[34]) },
1881 { "f36", offsetof(CPUState, fpr[36]) },
1882 { "f38", offsetof(CPUState, fpr[38]) },
1883 { "f40", offsetof(CPUState, fpr[40]) },
1884 { "f42", offsetof(CPUState, fpr[42]) },
1885 { "f44", offsetof(CPUState, fpr[44]) },
1886 { "f46", offsetof(CPUState, fpr[46]) },
1887 { "f48", offsetof(CPUState, fpr[48]) },
1888 { "f50", offsetof(CPUState, fpr[50]) },
1889 { "f52", offsetof(CPUState, fpr[52]) },
1890 { "f54", offsetof(CPUState, fpr[54]) },
1891 { "f56", offsetof(CPUState, fpr[56]) },
1892 { "f58", offsetof(CPUState, fpr[58]) },
1893 { "f60", offsetof(CPUState, fpr[60]) },
1894 { "f62", offsetof(CPUState, fpr[62]) },
1895 { "asi", offsetof(CPUState, asi) },
1896 { "pstate", offsetof(CPUState, pstate) },
1897 { "cansave", offsetof(CPUState, cansave) },
1898 { "canrestore", offsetof(CPUState, canrestore) },
1899 { "otherwin", offsetof(CPUState, otherwin) },
1900 { "wstate", offsetof(CPUState, wstate) },
1901 { "cleanwin", offsetof(CPUState, cleanwin) },
1902 { "fprs", offsetof(CPUState, fprs) },
1903 #endif
1904 #endif
1905 { NULL },
1908 static void expr_error(const char *fmt)
1910 term_printf(fmt);
1911 term_printf("\n");
1912 longjmp(expr_env, 1);
1915 /* return 0 if OK, -1 if not found, -2 if no CPU defined */
1916 static int get_monitor_def(target_long *pval, const char *name)
1918 MonitorDef *md;
1919 void *ptr;
1921 for(md = monitor_defs; md->name != NULL; md++) {
1922 if (compare_cmd(name, md->name)) {
1923 if (md->get_value) {
1924 *pval = md->get_value(md, md->offset);
1925 } else {
1926 CPUState *env = mon_get_cpu();
1927 if (!env)
1928 return -2;
1929 ptr = (uint8_t *)env + md->offset;
1930 switch(md->type) {
1931 case MD_I32:
1932 *pval = *(int32_t *)ptr;
1933 break;
1934 case MD_TLONG:
1935 *pval = *(target_long *)ptr;
1936 break;
1937 default:
1938 *pval = 0;
1939 break;
1942 return 0;
1945 return -1;
1948 static void next(void)
1950 if (pch != '\0') {
1951 pch++;
1952 while (isspace(*pch))
1953 pch++;
1957 static int64_t expr_sum(void);
1959 static int64_t expr_unary(void)
1961 int64_t n;
1962 char *p;
1963 int ret;
1965 switch(*pch) {
1966 case '+':
1967 next();
1968 n = expr_unary();
1969 break;
1970 case '-':
1971 next();
1972 n = -expr_unary();
1973 break;
1974 case '~':
1975 next();
1976 n = ~expr_unary();
1977 break;
1978 case '(':
1979 next();
1980 n = expr_sum();
1981 if (*pch != ')') {
1982 expr_error("')' expected");
1984 next();
1985 break;
1986 case '\'':
1987 pch++;
1988 if (*pch == '\0')
1989 expr_error("character constant expected");
1990 n = *pch;
1991 pch++;
1992 if (*pch != '\'')
1993 expr_error("missing terminating \' character");
1994 next();
1995 break;
1996 case '$':
1998 char buf[128], *q;
1999 target_long reg=0;
2001 pch++;
2002 q = buf;
2003 while ((*pch >= 'a' && *pch <= 'z') ||
2004 (*pch >= 'A' && *pch <= 'Z') ||
2005 (*pch >= '0' && *pch <= '9') ||
2006 *pch == '_' || *pch == '.') {
2007 if ((q - buf) < sizeof(buf) - 1)
2008 *q++ = *pch;
2009 pch++;
2011 while (isspace(*pch))
2012 pch++;
2013 *q = 0;
2014 ret = get_monitor_def(&reg, buf);
2015 if (ret == -1)
2016 expr_error("unknown register");
2017 else if (ret == -2)
2018 expr_error("no cpu defined");
2019 n = reg;
2021 break;
2022 case '\0':
2023 expr_error("unexpected end of expression");
2024 n = 0;
2025 break;
2026 default:
2027 #if TARGET_PHYS_ADDR_BITS > 32
2028 n = strtoull(pch, &p, 0);
2029 #else
2030 n = strtoul(pch, &p, 0);
2031 #endif
2032 if (pch == p) {
2033 expr_error("invalid char in expression");
2035 pch = p;
2036 while (isspace(*pch))
2037 pch++;
2038 break;
2040 return n;
2044 static int64_t expr_prod(void)
2046 int64_t val, val2;
2047 int op;
2049 val = expr_unary();
2050 for(;;) {
2051 op = *pch;
2052 if (op != '*' && op != '/' && op != '%')
2053 break;
2054 next();
2055 val2 = expr_unary();
2056 switch(op) {
2057 default:
2058 case '*':
2059 val *= val2;
2060 break;
2061 case '/':
2062 case '%':
2063 if (val2 == 0)
2064 expr_error("division by zero");
2065 if (op == '/')
2066 val /= val2;
2067 else
2068 val %= val2;
2069 break;
2072 return val;
2075 static int64_t expr_logic(void)
2077 int64_t val, val2;
2078 int op;
2080 val = expr_prod();
2081 for(;;) {
2082 op = *pch;
2083 if (op != '&' && op != '|' && op != '^')
2084 break;
2085 next();
2086 val2 = expr_prod();
2087 switch(op) {
2088 default:
2089 case '&':
2090 val &= val2;
2091 break;
2092 case '|':
2093 val |= val2;
2094 break;
2095 case '^':
2096 val ^= val2;
2097 break;
2100 return val;
2103 static int64_t expr_sum(void)
2105 int64_t val, val2;
2106 int op;
2108 val = expr_logic();
2109 for(;;) {
2110 op = *pch;
2111 if (op != '+' && op != '-')
2112 break;
2113 next();
2114 val2 = expr_logic();
2115 if (op == '+')
2116 val += val2;
2117 else
2118 val -= val2;
2120 return val;
2123 static int get_expr(int64_t *pval, const char **pp)
2125 pch = *pp;
2126 if (setjmp(expr_env)) {
2127 *pp = pch;
2128 return -1;
2130 while (isspace(*pch))
2131 pch++;
2132 *pval = expr_sum();
2133 *pp = pch;
2134 return 0;
2137 static int get_str(char *buf, int buf_size, const char **pp)
2139 const char *p;
2140 char *q;
2141 int c;
2143 q = buf;
2144 p = *pp;
2145 while (isspace(*p))
2146 p++;
2147 if (*p == '\0') {
2148 fail:
2149 *q = '\0';
2150 *pp = p;
2151 return -1;
2153 if (*p == '\"') {
2154 p++;
2155 while (*p != '\0' && *p != '\"') {
2156 if (*p == '\\') {
2157 p++;
2158 c = *p++;
2159 switch(c) {
2160 case 'n':
2161 c = '\n';
2162 break;
2163 case 'r':
2164 c = '\r';
2165 break;
2166 case '\\':
2167 case '\'':
2168 case '\"':
2169 break;
2170 default:
2171 qemu_printf("unsupported escape code: '\\%c'\n", c);
2172 goto fail;
2174 if ((q - buf) < buf_size - 1) {
2175 *q++ = c;
2177 } else {
2178 if ((q - buf) < buf_size - 1) {
2179 *q++ = *p;
2181 p++;
2184 if (*p != '\"') {
2185 qemu_printf("unterminated string\n");
2186 goto fail;
2188 p++;
2189 } else {
2190 while (*p != '\0' && !isspace(*p)) {
2191 if ((q - buf) < buf_size - 1) {
2192 *q++ = *p;
2194 p++;
2197 *q = '\0';
2198 *pp = p;
2199 return 0;
2202 static int default_fmt_format = 'x';
2203 static int default_fmt_size = 4;
2205 #define MAX_ARGS 16
2207 static void monitor_handle_command(const char *cmdline)
2209 const char *p, *pstart, *typestr;
2210 char *q;
2211 int c, nb_args, len, i, has_arg;
2212 term_cmd_t *cmd;
2213 char cmdname[256];
2214 char buf[1024];
2215 void *str_allocated[MAX_ARGS];
2216 void *args[MAX_ARGS];
2218 #ifdef DEBUG
2219 term_printf("command='%s'\n", cmdline);
2220 #endif
2222 /* extract the command name */
2223 p = cmdline;
2224 q = cmdname;
2225 while (isspace(*p))
2226 p++;
2227 if (*p == '\0')
2228 return;
2229 pstart = p;
2230 while (*p != '\0' && *p != '/' && !isspace(*p))
2231 p++;
2232 len = p - pstart;
2233 if (len > sizeof(cmdname) - 1)
2234 len = sizeof(cmdname) - 1;
2235 memcpy(cmdname, pstart, len);
2236 cmdname[len] = '\0';
2238 /* find the command */
2239 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2240 if (compare_cmd(cmdname, cmd->name))
2241 goto found;
2243 term_printf("unknown command: '%s'\n", cmdname);
2244 return;
2245 found:
2247 for(i = 0; i < MAX_ARGS; i++)
2248 str_allocated[i] = NULL;
2250 /* parse the parameters */
2251 typestr = cmd->args_type;
2252 nb_args = 0;
2253 for(;;) {
2254 c = *typestr;
2255 if (c == '\0')
2256 break;
2257 typestr++;
2258 switch(c) {
2259 case 'F':
2260 case 'B':
2261 case 's':
2263 int ret;
2264 char *str;
2266 while (isspace(*p))
2267 p++;
2268 if (*typestr == '?') {
2269 typestr++;
2270 if (*p == '\0') {
2271 /* no optional string: NULL argument */
2272 str = NULL;
2273 goto add_str;
2276 ret = get_str(buf, sizeof(buf), &p);
2277 if (ret < 0) {
2278 switch(c) {
2279 case 'F':
2280 term_printf("%s: filename expected\n", cmdname);
2281 break;
2282 case 'B':
2283 term_printf("%s: block device name expected\n", cmdname);
2284 break;
2285 default:
2286 term_printf("%s: string expected\n", cmdname);
2287 break;
2289 goto fail;
2291 str = qemu_malloc(strlen(buf) + 1);
2292 strcpy(str, buf);
2293 str_allocated[nb_args] = str;
2294 add_str:
2295 if (nb_args >= MAX_ARGS) {
2296 error_args:
2297 term_printf("%s: too many arguments\n", cmdname);
2298 goto fail;
2300 args[nb_args++] = str;
2302 break;
2303 case '/':
2305 int count, format, size;
2307 while (isspace(*p))
2308 p++;
2309 if (*p == '/') {
2310 /* format found */
2311 p++;
2312 count = 1;
2313 if (isdigit(*p)) {
2314 count = 0;
2315 while (isdigit(*p)) {
2316 count = count * 10 + (*p - '0');
2317 p++;
2320 size = -1;
2321 format = -1;
2322 for(;;) {
2323 switch(*p) {
2324 case 'o':
2325 case 'd':
2326 case 'u':
2327 case 'x':
2328 case 'i':
2329 case 'c':
2330 format = *p++;
2331 break;
2332 case 'b':
2333 size = 1;
2334 p++;
2335 break;
2336 case 'h':
2337 size = 2;
2338 p++;
2339 break;
2340 case 'w':
2341 size = 4;
2342 p++;
2343 break;
2344 case 'g':
2345 case 'L':
2346 size = 8;
2347 p++;
2348 break;
2349 default:
2350 goto next;
2353 next:
2354 if (*p != '\0' && !isspace(*p)) {
2355 term_printf("invalid char in format: '%c'\n", *p);
2356 goto fail;
2358 if (format < 0)
2359 format = default_fmt_format;
2360 if (format != 'i') {
2361 /* for 'i', not specifying a size gives -1 as size */
2362 if (size < 0)
2363 size = default_fmt_size;
2365 default_fmt_size = size;
2366 default_fmt_format = format;
2367 } else {
2368 count = 1;
2369 format = default_fmt_format;
2370 if (format != 'i') {
2371 size = default_fmt_size;
2372 } else {
2373 size = -1;
2376 if (nb_args + 3 > MAX_ARGS)
2377 goto error_args;
2378 args[nb_args++] = (void*)(long)count;
2379 args[nb_args++] = (void*)(long)format;
2380 args[nb_args++] = (void*)(long)size;
2382 break;
2383 case 'i':
2384 case 'l':
2386 int64_t val;
2388 while (isspace(*p))
2389 p++;
2390 if (*typestr == '?' || *typestr == '.') {
2391 if (*typestr == '?') {
2392 if (*p == '\0')
2393 has_arg = 0;
2394 else
2395 has_arg = 1;
2396 } else {
2397 if (*p == '.') {
2398 p++;
2399 while (isspace(*p))
2400 p++;
2401 has_arg = 1;
2402 } else {
2403 has_arg = 0;
2406 typestr++;
2407 if (nb_args >= MAX_ARGS)
2408 goto error_args;
2409 args[nb_args++] = (void *)(long)has_arg;
2410 if (!has_arg) {
2411 if (nb_args >= MAX_ARGS)
2412 goto error_args;
2413 val = -1;
2414 goto add_num;
2417 if (get_expr(&val, &p))
2418 goto fail;
2419 add_num:
2420 if (c == 'i') {
2421 if (nb_args >= MAX_ARGS)
2422 goto error_args;
2423 args[nb_args++] = (void *)(long)val;
2424 } else {
2425 if ((nb_args + 1) >= MAX_ARGS)
2426 goto error_args;
2427 #if TARGET_PHYS_ADDR_BITS > 32
2428 args[nb_args++] = (void *)(long)((val >> 32) & 0xffffffff);
2429 #else
2430 args[nb_args++] = (void *)0;
2431 #endif
2432 args[nb_args++] = (void *)(long)(val & 0xffffffff);
2435 break;
2436 case '-':
2438 int has_option;
2439 /* option */
2441 c = *typestr++;
2442 if (c == '\0')
2443 goto bad_type;
2444 while (isspace(*p))
2445 p++;
2446 has_option = 0;
2447 if (*p == '-') {
2448 p++;
2449 if (*p != c) {
2450 term_printf("%s: unsupported option -%c\n",
2451 cmdname, *p);
2452 goto fail;
2454 p++;
2455 has_option = 1;
2457 if (nb_args >= MAX_ARGS)
2458 goto error_args;
2459 args[nb_args++] = (void *)(long)has_option;
2461 break;
2462 default:
2463 bad_type:
2464 term_printf("%s: unknown type '%c'\n", cmdname, c);
2465 goto fail;
2468 /* check that all arguments were parsed */
2469 while (isspace(*p))
2470 p++;
2471 if (*p != '\0') {
2472 term_printf("%s: extraneous characters at the end of line\n",
2473 cmdname);
2474 goto fail;
2477 switch(nb_args) {
2478 case 0:
2479 cmd->handler();
2480 break;
2481 case 1:
2482 cmd->handler(args[0]);
2483 break;
2484 case 2:
2485 cmd->handler(args[0], args[1]);
2486 break;
2487 case 3:
2488 cmd->handler(args[0], args[1], args[2]);
2489 break;
2490 case 4:
2491 cmd->handler(args[0], args[1], args[2], args[3]);
2492 break;
2493 case 5:
2494 cmd->handler(args[0], args[1], args[2], args[3], args[4]);
2495 break;
2496 case 6:
2497 cmd->handler(args[0], args[1], args[2], args[3], args[4], args[5]);
2498 break;
2499 case 7:
2500 cmd->handler(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
2501 break;
2502 default:
2503 term_printf("unsupported number of arguments: %d\n", nb_args);
2504 goto fail;
2506 fail:
2507 for(i = 0; i < MAX_ARGS; i++)
2508 qemu_free(str_allocated[i]);
2509 return;
2512 static void cmd_completion(const char *name, const char *list)
2514 const char *p, *pstart;
2515 char cmd[128];
2516 int len;
2518 p = list;
2519 for(;;) {
2520 pstart = p;
2521 p = strchr(p, '|');
2522 if (!p)
2523 p = pstart + strlen(pstart);
2524 len = p - pstart;
2525 if (len > sizeof(cmd) - 2)
2526 len = sizeof(cmd) - 2;
2527 memcpy(cmd, pstart, len);
2528 cmd[len] = '\0';
2529 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
2530 add_completion(cmd);
2532 if (*p == '\0')
2533 break;
2534 p++;
2538 static void file_completion(const char *input)
2540 DIR *ffs;
2541 struct dirent *d;
2542 char path[1024];
2543 char file[1024], file_prefix[1024];
2544 int input_path_len;
2545 const char *p;
2547 p = strrchr(input, '/');
2548 if (!p) {
2549 input_path_len = 0;
2550 pstrcpy(file_prefix, sizeof(file_prefix), input);
2551 strcpy(path, ".");
2552 } else {
2553 input_path_len = p - input + 1;
2554 memcpy(path, input, input_path_len);
2555 if (input_path_len > sizeof(path) - 1)
2556 input_path_len = sizeof(path) - 1;
2557 path[input_path_len] = '\0';
2558 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
2560 #ifdef DEBUG_COMPLETION
2561 term_printf("input='%s' path='%s' prefix='%s'\n", input, path, file_prefix);
2562 #endif
2563 ffs = opendir(path);
2564 if (!ffs)
2565 return;
2566 for(;;) {
2567 struct stat sb;
2568 d = readdir(ffs);
2569 if (!d)
2570 break;
2571 if (strstart(d->d_name, file_prefix, NULL)) {
2572 memcpy(file, input, input_path_len);
2573 strcpy(file + input_path_len, d->d_name);
2574 /* stat the file to find out if it's a directory.
2575 * In that case add a slash to speed up typing long paths
2577 stat(file, &sb);
2578 if(S_ISDIR(sb.st_mode))
2579 strcat(file, "/");
2580 add_completion(file);
2583 closedir(ffs);
2586 static void block_completion_it(void *opaque, const char *name)
2588 const char *input = opaque;
2590 if (input[0] == '\0' ||
2591 !strncmp(name, (char *)input, strlen(input))) {
2592 add_completion(name);
2596 /* NOTE: this parser is an approximate form of the real command parser */
2597 static void parse_cmdline(const char *cmdline,
2598 int *pnb_args, char **args)
2600 const char *p;
2601 int nb_args, ret;
2602 char buf[1024];
2604 p = cmdline;
2605 nb_args = 0;
2606 for(;;) {
2607 while (isspace(*p))
2608 p++;
2609 if (*p == '\0')
2610 break;
2611 if (nb_args >= MAX_ARGS)
2612 break;
2613 ret = get_str(buf, sizeof(buf), &p);
2614 args[nb_args] = qemu_strdup(buf);
2615 nb_args++;
2616 if (ret < 0)
2617 break;
2619 *pnb_args = nb_args;
2622 void readline_find_completion(const char *cmdline)
2624 const char *cmdname;
2625 char *args[MAX_ARGS];
2626 int nb_args, i, len;
2627 const char *ptype, *str;
2628 term_cmd_t *cmd;
2629 const KeyDef *key;
2631 parse_cmdline(cmdline, &nb_args, args);
2632 #ifdef DEBUG_COMPLETION
2633 for(i = 0; i < nb_args; i++) {
2634 term_printf("arg%d = '%s'\n", i, (char *)args[i]);
2636 #endif
2638 /* if the line ends with a space, it means we want to complete the
2639 next arg */
2640 len = strlen(cmdline);
2641 if (len > 0 && isspace(cmdline[len - 1])) {
2642 if (nb_args >= MAX_ARGS)
2643 return;
2644 args[nb_args++] = qemu_strdup("");
2646 if (nb_args <= 1) {
2647 /* command completion */
2648 if (nb_args == 0)
2649 cmdname = "";
2650 else
2651 cmdname = args[0];
2652 completion_index = strlen(cmdname);
2653 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2654 cmd_completion(cmdname, cmd->name);
2656 } else {
2657 /* find the command */
2658 for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2659 if (compare_cmd(args[0], cmd->name))
2660 goto found;
2662 return;
2663 found:
2664 ptype = cmd->args_type;
2665 for(i = 0; i < nb_args - 2; i++) {
2666 if (*ptype != '\0') {
2667 ptype++;
2668 while (*ptype == '?')
2669 ptype++;
2672 str = args[nb_args - 1];
2673 switch(*ptype) {
2674 case 'F':
2675 /* file completion */
2676 completion_index = strlen(str);
2677 file_completion(str);
2678 break;
2679 case 'B':
2680 /* block device name completion */
2681 completion_index = strlen(str);
2682 bdrv_iterate(block_completion_it, (void *)str);
2683 break;
2684 case 's':
2685 /* XXX: more generic ? */
2686 if (!strcmp(cmd->name, "info")) {
2687 completion_index = strlen(str);
2688 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
2689 cmd_completion(str, cmd->name);
2691 } else if (!strcmp(cmd->name, "sendkey")) {
2692 completion_index = strlen(str);
2693 for(key = key_defs; key->name != NULL; key++) {
2694 cmd_completion(str, key->name);
2697 break;
2698 default:
2699 break;
2702 for(i = 0; i < nb_args; i++)
2703 qemu_free(args[i]);
2706 static int term_can_read(void *opaque)
2708 return 128;
2711 static void term_read(void *opaque, const uint8_t *buf, int size)
2713 int i;
2714 for(i = 0; i < size; i++)
2715 readline_handle_byte(buf[i]);
2718 static int monitor_suspended;
2720 void monitor_suspend(void)
2722 monitor_suspended = 1;
2725 void monitor_resume(void)
2727 monitor_suspended = 0;
2728 monitor_start_input();
2731 static void monitor_handle_command1(void *opaque, const char *cmdline)
2733 monitor_handle_command(cmdline);
2734 if (!monitor_suspended)
2735 monitor_start_input();
2738 void monitor_start_input(void)
2740 readline_start("(qemu) ", 0, monitor_handle_command1, NULL);
2743 static void term_event(void *opaque, int event)
2745 if (event != CHR_EVENT_RESET)
2746 return;
2748 if (!hide_banner)
2749 term_printf("QEMU %s monitor - type 'help' for more information\n",
2750 QEMU_VERSION);
2751 monitor_start_input();
2754 static int is_first_init = 1;
2756 void monitor_init(CharDriverState *hd, int show_banner)
2758 int i;
2760 if (is_first_init) {
2761 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
2762 if (!key_timer)
2763 return;
2764 for (i = 0; i < MAX_MON; i++) {
2765 monitor_hd[i] = NULL;
2767 is_first_init = 0;
2769 for (i = 0; i < MAX_MON; i++) {
2770 if (monitor_hd[i] == NULL) {
2771 monitor_hd[i] = hd;
2772 break;
2776 hide_banner = !show_banner;
2778 qemu_chr_add_handlers(hd, term_can_read, term_read, term_event, NULL);
2781 /* XXX: use threads ? */
2782 /* modal monitor readline */
2783 static int monitor_readline_started;
2784 static char *monitor_readline_buf;
2785 static int monitor_readline_buf_size;
2787 static void monitor_readline_cb(void *opaque, const char *input)
2789 pstrcpy(monitor_readline_buf, monitor_readline_buf_size, input);
2790 monitor_readline_started = 0;
2793 void monitor_readline(const char *prompt, int is_password,
2794 char *buf, int buf_size)
2796 int i;
2797 int old_focus[MAX_MON];
2799 if (is_password) {
2800 for (i = 0; i < MAX_MON; i++) {
2801 old_focus[i] = 0;
2802 if (monitor_hd[i]) {
2803 old_focus[i] = monitor_hd[i]->focus;
2804 monitor_hd[i]->focus = 0;
2805 qemu_chr_send_event(monitor_hd[i], CHR_EVENT_FOCUS);
2810 readline_start(prompt, is_password, monitor_readline_cb, NULL);
2811 monitor_readline_buf = buf;
2812 monitor_readline_buf_size = buf_size;
2813 monitor_readline_started = 1;
2814 while (monitor_readline_started) {
2815 main_loop_wait(10);
2817 /* restore original focus */
2818 if (is_password) {
2819 for (i = 0; i < MAX_MON; i++)
2820 if (old_focus[i])
2821 monitor_hd[i]->focus = old_focus[i];