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