ESP PIO mode, 2k CDROM sector size (Blue Swirl)
[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 "vl.h"
25 #include "disas.h"
26 #include <dirent.h>
27
28 //#define DEBUG
29 //#define DEBUG_COMPLETION
30
31 #ifndef offsetof
32 #define offsetof(type, field) ((size_t) &((type *)0)->field)
33 #endif
34
35 /*
36  * Supported types:
37  * 
38  * 'F'          filename
39  * 'B'          block device name
40  * 's'          string (accept optional quote)
41  * 'i'          32 bit integer
42  * 'l'          target long (32 or 64 bit)
43  * '/'          optional gdb-like print format (like "/10x")
44  *
45  * '?'          optional type (for 'F', 's' and 'i')
46  *
47  */
48
49 typedef struct term_cmd_t {
50     const char *name;
51     const char *args_type;
52     void (*handler)();
53     const char *params;
54     const char *help;
55 } term_cmd_t;
56
57 static CharDriverState *monitor_hd;
58
59 static term_cmd_t term_cmds[];
60 static term_cmd_t info_cmds[];
61
62 static char term_outbuf[1024];
63 static int term_outbuf_index;
64
65 static void monitor_start_input(void);
66
67 void term_flush(void)
68 {
69     if (term_outbuf_index > 0) {
70         qemu_chr_write(monitor_hd, term_outbuf, term_outbuf_index);
71         term_outbuf_index = 0;
72     }
73 }
74
75 /* flush at every end of line or if the buffer is full */
76 void term_puts(const char *str)
77 {
78     int c;
79     for(;;) {
80         c = *str++;
81         if (c == '\0')
82             break;
83         term_outbuf[term_outbuf_index++] = c;
84         if (term_outbuf_index >= sizeof(term_outbuf) ||
85             c == '\n')
86             term_flush();
87     }
88 }
89
90 void term_vprintf(const char *fmt, va_list ap)
91 {
92     char buf[4096];
93     vsnprintf(buf, sizeof(buf), fmt, ap);
94     term_puts(buf);
95 }
96
97 void term_printf(const char *fmt, ...)
98 {
99     va_list ap;
100     va_start(ap, fmt);
101     term_vprintf(fmt, ap);
102     va_end(ap);
103 }
104
105 static int monitor_fprintf(FILE *stream, const char *fmt, ...)
106 {
107     va_list ap;
108     va_start(ap, fmt);
109     term_vprintf(fmt, ap);
110     va_end(ap);
111     return 0;
112 }
113
114 static int compare_cmd(const char *name, const char *list)
115 {
116     const char *p, *pstart;
117     int len;
118     len = strlen(name);
119     p = list;
120     for(;;) {
121         pstart = p;
122         p = strchr(p, '|');
123         if (!p)
124             p = pstart + strlen(pstart);
125         if ((p - pstart) == len && !memcmp(pstart, name, len))
126             return 1;
127         if (*p == '\0')
128             break;
129         p++;
130     }
131     return 0;
132 }
133
134 static void help_cmd1(term_cmd_t *cmds, const char *prefix, const char *name)
135 {
136     term_cmd_t *cmd;
137
138     for(cmd = cmds; cmd->name != NULL; cmd++) {
139         if (!name || !strcmp(name, cmd->name))
140             term_printf("%s%s %s -- %s\n", prefix, cmd->name, cmd->params, cmd->help);
141     }
142 }
143
144 static void help_cmd(const char *name)
145 {
146     if (name && !strcmp(name, "info")) {
147         help_cmd1(info_cmds, "info ", NULL);
148     } else {
149         help_cmd1(term_cmds, "", name);
150         if (name && !strcmp(name, "log")) {
151             CPULogItem *item;
152             term_printf("Log items (comma separated):\n");
153             term_printf("%-10s %s\n", "none", "remove all logs");
154             for(item = cpu_log_items; item->mask != 0; item++) {
155                 term_printf("%-10s %s\n", item->name, item->help);
156             }
157         }
158     }
159 }
160
161 static void do_help(const char *name)
162 {
163     help_cmd(name);
164 }
165
166 static void do_commit(void)
167 {
168     int i;
169
170     for (i = 0; i < MAX_DISKS; i++) {
171         if (bs_table[i]) {
172             bdrv_commit(bs_table[i]);
173         }
174     }
175 }
176
177 static void do_info(const char *item)
178 {
179     term_cmd_t *cmd;
180
181     if (!item)
182         goto help;
183     for(cmd = info_cmds; cmd->name != NULL; cmd++) {
184         if (compare_cmd(item, cmd->name)) 
185             goto found;
186     }
187  help:
188     help_cmd("info");
189     return;
190  found:
191     cmd->handler();
192 }
193
194 static void do_info_version(void)
195 {
196   term_printf("%s\n", QEMU_VERSION);
197 }
198
199 static void do_info_network(void)
200 {
201     int i, j;
202     NetDriverState *nd;
203     
204     for(i = 0; i < nb_nics; i++) {
205         nd = &nd_table[i];
206         term_printf("%d: ifname=%s macaddr=", i, nd->ifname);
207         for(j = 0; j < 6; j++) {
208             if (j > 0)
209                 term_printf(":");
210             term_printf("%02x", nd->macaddr[j]);
211         }
212         term_printf("\n");
213     }
214 }
215  
216 static void do_info_block(void)
217 {
218     bdrv_info();
219 }
220
221 static void do_info_registers(void)
222 {
223 #ifdef TARGET_I386
224     cpu_dump_state(cpu_single_env, NULL, monitor_fprintf,
225                    X86_DUMP_FPU);
226 #else
227     cpu_dump_state(cpu_single_env, NULL, monitor_fprintf, 
228                    0);
229 #endif
230 }
231
232 static void do_info_jit(void)
233 {
234     dump_exec_info(NULL, monitor_fprintf);
235 }
236
237 static void do_info_history (void)
238 {
239     int i;
240     const char *str;
241     
242     i = 0;
243     for(;;) {
244         str = readline_get_history(i);
245         if (!str)
246             break;
247         term_printf("%d: '%s'\n", i, str);
248         i++;
249     }
250 }
251
252 static void do_quit(void)
253 {
254 #ifdef USE_KQEMU
255     kqemu_record_dump();
256 #endif
257     exit(0);
258 }
259
260 static int eject_device(BlockDriverState *bs, int force)
261 {
262     if (bdrv_is_inserted(bs)) {
263         if (!force) {
264             if (!bdrv_is_removable(bs)) {
265                 term_printf("device is not removable\n");
266                 return -1;
267             }
268             if (bdrv_is_locked(bs)) {
269                 term_printf("device is locked\n");
270                 return -1;
271             }
272         }
273         bdrv_close(bs);
274     }
275     return 0;
276 }
277
278 static void do_eject(int force, const char *filename)
279 {
280     BlockDriverState *bs;
281
282     bs = bdrv_find(filename);
283     if (!bs) {
284         term_printf("device not found\n");
285         return;
286     }
287     eject_device(bs, force);
288 }
289
290 static void do_change(const char *device, const char *filename)
291 {
292     BlockDriverState *bs;
293     int i;
294     char password[256];
295
296     bs = bdrv_find(device);
297     if (!bs) {
298         term_printf("device not found\n");
299         return;
300     }
301     if (eject_device(bs, 0) < 0)
302         return;
303     bdrv_open(bs, filename, 0);
304     if (bdrv_is_encrypted(bs)) {
305         term_printf("%s is encrypted.\n", device);
306         for(i = 0; i < 3; i++) {
307             monitor_readline("Password: ", 1, password, sizeof(password));
308             if (bdrv_set_key(bs, password) == 0)
309                 break;
310             term_printf("invalid password\n");
311         }
312     }
313 }
314
315 static void do_screen_dump(const char *filename)
316 {
317     vga_screen_dump(filename);
318 }
319
320 static void do_log(const char *items)
321 {
322     int mask;
323     
324     if (!strcmp(items, "none")) {
325         mask = 0;
326     } else {
327         mask = cpu_str_to_log_mask(items);
328         if (!mask) {
329             help_cmd("log");
330             return;
331         }
332     }
333     cpu_set_log(mask);
334 }
335
336 static void do_savevm(const char *filename)
337 {
338     if (qemu_savevm(filename) < 0)
339         term_printf("I/O error when saving VM to '%s'\n", filename);
340 }
341
342 static void do_loadvm(const char *filename)
343 {
344     if (qemu_loadvm(filename) < 0) 
345         term_printf("I/O error when loading VM from '%s'\n", filename);
346 }
347
348 static void do_stop(void)
349 {
350     vm_stop(EXCP_INTERRUPT);
351 }
352
353 static void do_cont(void)
354 {
355     vm_start();
356 }
357
358 #ifdef CONFIG_GDBSTUB
359 static void do_gdbserver(int has_port, int port)
360 {
361     if (!has_port)
362         port = DEFAULT_GDBSTUB_PORT;
363     if (gdbserver_start(port) < 0) {
364         qemu_printf("Could not open gdbserver socket on port %d\n", port);
365     } else {
366         qemu_printf("Waiting gdb connection on port %d\n", port);
367     }
368 }
369 #endif
370
371 static void term_printc(int c)
372 {
373     term_printf("'");
374     switch(c) {
375     case '\'':
376         term_printf("\\'");
377         break;
378     case '\\':
379         term_printf("\\\\");
380         break;
381     case '\n':
382         term_printf("\\n");
383         break;
384     case '\r':
385         term_printf("\\r");
386         break;
387     default:
388         if (c >= 32 && c <= 126) {
389             term_printf("%c", c);
390         } else {
391             term_printf("\\x%02x", c);
392         }
393         break;
394     }
395     term_printf("'");
396 }
397
398 static void memory_dump(int count, int format, int wsize, 
399                         target_ulong addr, int is_physical)
400 {
401     int nb_per_line, l, line_size, i, max_digits, len;
402     uint8_t buf[16];
403     uint64_t v;
404
405     if (format == 'i') {
406         int flags;
407         flags = 0;
408 #ifdef TARGET_I386
409         if (wsize == 2) {
410             flags = 1;
411         } else if (wsize == 4) {
412             flags = 0;
413         } else {
414             /* as default we use the current CS size */
415             flags = 0;
416             if (!(cpu_single_env->segs[R_CS].flags & DESC_B_MASK))
417                 flags = 1;
418         }
419 #endif
420         monitor_disas(addr, count, is_physical, flags);
421         return;
422     }
423
424     len = wsize * count;
425     if (wsize == 1)
426         line_size = 8;
427     else
428         line_size = 16;
429     nb_per_line = line_size / wsize;
430     max_digits = 0;
431
432     switch(format) {
433     case 'o':
434         max_digits = (wsize * 8 + 2) / 3;
435         break;
436     default:
437     case 'x':
438         max_digits = (wsize * 8) / 4;
439         break;
440     case 'u':
441     case 'd':
442         max_digits = (wsize * 8 * 10 + 32) / 33;
443         break;
444     case 'c':
445         wsize = 1;
446         break;
447     }
448
449     while (len > 0) {
450         term_printf(TARGET_FMT_lx ":", addr);
451         l = len;
452         if (l > line_size)
453             l = line_size;
454         if (is_physical) {
455             cpu_physical_memory_rw(addr, buf, l, 0);
456         } else {
457             cpu_memory_rw_debug(cpu_single_env, addr, buf, l, 0);
458         }
459         i = 0; 
460         while (i < l) {
461             switch(wsize) {
462             default:
463             case 1:
464                 v = ldub_raw(buf + i);
465                 break;
466             case 2:
467                 v = lduw_raw(buf + i);
468                 break;
469             case 4:
470                 v = (uint32_t)ldl_raw(buf + i);
471                 break;
472             case 8:
473                 v = ldq_raw(buf + i);
474                 break;
475             }
476             term_printf(" ");
477             switch(format) {
478             case 'o':
479                 term_printf("%#*llo", max_digits, v);
480                 break;
481             case 'x':
482                 term_printf("0x%0*llx", max_digits, v);
483                 break;
484             case 'u':
485                 term_printf("%*llu", max_digits, v);
486                 break;
487             case 'd':
488                 term_printf("%*lld", max_digits, v);
489                 break;
490             case 'c':
491                 term_printc(v);
492                 break;
493             }
494             i += wsize;
495         }
496         term_printf("\n");
497         addr += l;
498         len -= l;
499     }
500 }
501
502 #if TARGET_LONG_BITS == 64
503 #define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
504 #else
505 #define GET_TLONG(h, l) (l)
506 #endif
507
508 static void do_memory_dump(int count, int format, int size, 
509                            uint32_t addrh, uint32_t addrl)
510 {
511     target_long addr = GET_TLONG(addrh, addrl);
512     memory_dump(count, format, size, addr, 0);
513 }
514
515 static void do_physical_memory_dump(int count, int format, int size,
516                                     uint32_t addrh, uint32_t addrl)
517
518 {
519     target_long addr = GET_TLONG(addrh, addrl);
520     memory_dump(count, format, size, addr, 1);
521 }
522
523 static void do_print(int count, int format, int size, unsigned int valh, unsigned int vall)
524 {
525     target_long val = GET_TLONG(valh, vall);
526 #if TARGET_LONG_BITS == 32
527     switch(format) {
528     case 'o':
529         term_printf("%#o", val);
530         break;
531     case 'x':
532         term_printf("%#x", val);
533         break;
534     case 'u':
535         term_printf("%u", val);
536         break;
537     default:
538     case 'd':
539         term_printf("%d", val);
540         break;
541     case 'c':
542         term_printc(val);
543         break;
544     }
545 #else
546     switch(format) {
547     case 'o':
548         term_printf("%#llo", val);
549         break;
550     case 'x':
551         term_printf("%#llx", val);
552         break;
553     case 'u':
554         term_printf("%llu", val);
555         break;
556     default:
557     case 'd':
558         term_printf("%lld", val);
559         break;
560     case 'c':
561         term_printc(val);
562         break;
563     }
564 #endif
565     term_printf("\n");
566 }
567
568 static void do_sum(uint32_t start, uint32_t size)
569 {
570     uint32_t addr;
571     uint8_t buf[1];
572     uint16_t sum;
573
574     sum = 0;
575     for(addr = start; addr < (start + size); addr++) {
576         cpu_physical_memory_rw(addr, buf, 1, 0);
577         /* BSD sum algorithm ('sum' Unix command) */
578         sum = (sum >> 1) | (sum << 15);
579         sum += buf[0];
580     }
581     term_printf("%05d\n", sum);
582 }
583
584 typedef struct {
585     int keycode;
586     const char *name;
587 } KeyDef;
588
589 static const KeyDef key_defs[] = {
590     { 0x2a, "shift" },
591     { 0x36, "shift_r" },
592     
593     { 0x38, "alt" },
594     { 0xb8, "alt_r" },
595     { 0x1d, "ctrl" },
596     { 0x9d, "ctrl_r" },
597
598     { 0xdd, "menu" },
599
600     { 0x01, "esc" },
601
602     { 0x02, "1" },
603     { 0x03, "2" },
604     { 0x04, "3" },
605     { 0x05, "4" },
606     { 0x06, "5" },
607     { 0x07, "6" },
608     { 0x08, "7" },
609     { 0x09, "8" },
610     { 0x0a, "9" },
611     { 0x0b, "0" },
612     { 0x0e, "backspace" },
613
614     { 0x0f, "tab" },
615     { 0x10, "q" },
616     { 0x11, "w" },
617     { 0x12, "e" },
618     { 0x13, "r" },
619     { 0x14, "t" },
620     { 0x15, "y" },
621     { 0x16, "u" },
622     { 0x17, "i" },
623     { 0x18, "o" },
624     { 0x19, "p" },
625
626     { 0x1c, "ret" },
627
628     { 0x1e, "a" },
629     { 0x1f, "s" },
630     { 0x20, "d" },
631     { 0x21, "f" },
632     { 0x22, "g" },
633     { 0x23, "h" },
634     { 0x24, "j" },
635     { 0x25, "k" },
636     { 0x26, "l" },
637
638     { 0x2c, "z" },
639     { 0x2d, "x" },
640     { 0x2e, "c" },
641     { 0x2f, "v" },
642     { 0x30, "b" },
643     { 0x31, "n" },
644     { 0x32, "m" },
645     
646     { 0x39, "spc" },
647     { 0x3a, "caps_lock" },
648     { 0x3b, "f1" },
649     { 0x3c, "f2" },
650     { 0x3d, "f3" },
651     { 0x3e, "f4" },
652     { 0x3f, "f5" },
653     { 0x40, "f6" },
654     { 0x41, "f7" },
655     { 0x42, "f8" },
656     { 0x43, "f9" },
657     { 0x44, "f10" },
658     { 0x45, "num_lock" },
659     { 0x46, "scroll_lock" },
660
661     { 0x56, "<" },
662
663     { 0x57, "f11" },
664     { 0x58, "f12" },
665
666     { 0xb7, "print" },
667
668     { 0xc7, "home" },
669     { 0xc9, "pgup" },
670     { 0xd1, "pgdn" },
671     { 0xcf, "end" },
672
673     { 0xcb, "left" },
674     { 0xc8, "up" },
675     { 0xd0, "down" },
676     { 0xcd, "right" },
677
678     { 0xd2, "insert" },
679     { 0xd3, "delete" },
680     { 0, NULL },
681 };
682
683 static int get_keycode(const char *key)
684 {
685     const KeyDef *p;
686
687     for(p = key_defs; p->name != NULL; p++) {
688         if (!strcmp(key, p->name))
689             return p->keycode;
690     }
691     return -1;
692 }
693
694 static void do_send_key(const char *string)
695 {
696     char keybuf[16], *q;
697     uint8_t keycodes[16];
698     const char *p;
699     int nb_keycodes, keycode, i;
700     
701     nb_keycodes = 0;
702     p = string;
703     while (*p != '\0') {
704         q = keybuf;
705         while (*p != '\0' && *p != '-') {
706             if ((q - keybuf) < sizeof(keybuf) - 1) {
707                 *q++ = *p;
708             }
709             p++;
710         }
711         *q = '\0';
712         keycode = get_keycode(keybuf);
713         if (keycode < 0) {
714             term_printf("unknown key: '%s'\n", keybuf);
715             return;
716         }
717         keycodes[nb_keycodes++] = keycode;
718         if (*p == '\0')
719             break;
720         p++;
721     }
722     /* key down events */
723     for(i = 0; i < nb_keycodes; i++) {
724         keycode = keycodes[i];
725         if (keycode & 0x80)
726             kbd_put_keycode(0xe0);
727         kbd_put_keycode(keycode & 0x7f);
728     }
729     /* key up events */
730     for(i = nb_keycodes - 1; i >= 0; i--) {
731         keycode = keycodes[i];
732         if (keycode & 0x80)
733             kbd_put_keycode(0xe0);
734         kbd_put_keycode(keycode | 0x80);
735     }
736 }
737
738 static void do_ioport_read(int count, int format, int size, int addr, int has_index, int index)
739 {
740     uint32_t val;
741     int suffix;
742
743     if (has_index) {
744         cpu_outb(NULL, addr & 0xffff, index & 0xff);
745         addr++;
746     }
747     addr &= 0xffff;
748
749     switch(size) {
750     default:
751     case 1:
752         val = cpu_inb(NULL, addr);
753         suffix = 'b';
754         break;
755     case 2:
756         val = cpu_inw(NULL, addr);
757         suffix = 'w';
758         break;
759     case 4:
760         val = cpu_inl(NULL, addr);
761         suffix = 'l';
762         break;
763     }
764     term_printf("port%c[0x%04x] = %#0*x\n",
765                 suffix, addr, size * 2, val);
766 }
767
768 static void do_system_reset(void)
769 {
770     qemu_system_reset_request();
771 }
772
773 static void do_system_powerdown(void)
774 {
775     qemu_system_powerdown_request();
776 }
777
778 #if defined(TARGET_I386)
779 static void print_pte(uint32_t addr, uint32_t pte, uint32_t mask)
780 {
781     term_printf("%08x: %08x %c%c%c%c%c%c%c%c\n", 
782                 addr,
783                 pte & mask,
784                 pte & PG_GLOBAL_MASK ? 'G' : '-',
785                 pte & PG_PSE_MASK ? 'P' : '-',
786                 pte & PG_DIRTY_MASK ? 'D' : '-',
787                 pte & PG_ACCESSED_MASK ? 'A' : '-',
788                 pte & PG_PCD_MASK ? 'C' : '-',
789                 pte & PG_PWT_MASK ? 'T' : '-',
790                 pte & PG_USER_MASK ? 'U' : '-',
791                 pte & PG_RW_MASK ? 'W' : '-');
792 }
793
794 static void tlb_info(void)
795 {
796     CPUState *env = cpu_single_env;
797     int l1, l2;
798     uint32_t pgd, pde, pte;
799
800     if (!(env->cr[0] & CR0_PG_MASK)) {
801         term_printf("PG disabled\n");
802         return;
803     }
804     pgd = env->cr[3] & ~0xfff;
805     for(l1 = 0; l1 < 1024; l1++) {
806         cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
807         pde = le32_to_cpu(pde);
808         if (pde & PG_PRESENT_MASK) {
809             if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
810                 print_pte((l1 << 22), pde, ~((1 << 20) - 1));
811             } else {
812                 for(l2 = 0; l2 < 1024; l2++) {
813                     cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, 
814                                              (uint8_t *)&pte, 4);
815                     pte = le32_to_cpu(pte);
816                     if (pte & PG_PRESENT_MASK) {
817                         print_pte((l1 << 22) + (l2 << 12), 
818                                   pte & ~PG_PSE_MASK, 
819                                   ~0xfff);
820                     }
821                 }
822             }
823         }
824     }
825 }
826
827 static void mem_print(uint32_t *pstart, int *plast_prot, 
828                       uint32_t end, int prot)
829 {
830     int prot1;
831     prot1 = *plast_prot;
832     if (prot != prot1) {
833         if (*pstart != -1) {
834             term_printf("%08x-%08x %08x %c%c%c\n",
835                         *pstart, end, end - *pstart, 
836                         prot1 & PG_USER_MASK ? 'u' : '-',
837                         'r',
838                         prot1 & PG_RW_MASK ? 'w' : '-');
839         }
840         if (prot != 0)
841             *pstart = end;
842         else
843             *pstart = -1;
844         *plast_prot = prot;
845     }
846 }
847
848 static void mem_info(void)
849 {
850     CPUState *env = cpu_single_env;
851     int l1, l2, prot, last_prot;
852     uint32_t pgd, pde, pte, start, end;
853
854     if (!(env->cr[0] & CR0_PG_MASK)) {
855         term_printf("PG disabled\n");
856         return;
857     }
858     pgd = env->cr[3] & ~0xfff;
859     last_prot = 0;
860     start = -1;
861     for(l1 = 0; l1 < 1024; l1++) {
862         cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
863         pde = le32_to_cpu(pde);
864         end = l1 << 22;
865         if (pde & PG_PRESENT_MASK) {
866             if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
867                 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
868                 mem_print(&start, &last_prot, end, prot);
869             } else {
870                 for(l2 = 0; l2 < 1024; l2++) {
871                     cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, 
872                                              (uint8_t *)&pte, 4);
873                     pte = le32_to_cpu(pte);
874                     end = (l1 << 22) + (l2 << 12);
875                     if (pte & PG_PRESENT_MASK) {
876                         prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
877                     } else {
878                         prot = 0;
879                     }
880                     mem_print(&start, &last_prot, end, prot);
881                 }
882             }
883         } else {
884             prot = 0;
885             mem_print(&start, &last_prot, end, prot);
886         }
887     }
888 }
889 #endif
890
891 static void do_info_kqemu(void)
892 {
893 #ifdef USE_KQEMU
894     int val;
895     val = 0;
896     if (cpu_single_env)
897         val = cpu_single_env->kqemu_enabled;
898     term_printf("kqemu is %s\n", val ? "enabled" : "disabled");
899 #else
900     term_printf("kqemu support is not compiled\n");
901 #endif
902
903
904
905 static term_cmd_t term_cmds[] = {
906     { "help|?", "s?", do_help, 
907       "[cmd]", "show the help" },
908     { "commit", "", do_commit, 
909       "", "commit changes to the disk images (if -snapshot is used)" },
910     { "info", "s?", do_info,
911       "subcommand", "show various information about the system state" },
912     { "q|quit", "", do_quit,
913       "", "quit the emulator" },
914     { "eject", "-fB", do_eject,
915       "[-f] device", "eject a removable media (use -f to force it)" },
916     { "change", "BF", do_change,
917       "device filename", "change a removable media" },
918     { "screendump", "F", do_screen_dump, 
919       "filename", "save screen into PPM image 'filename'" },
920     { "log", "s", do_log,
921       "item1[,...]", "activate logging of the specified items to '/tmp/qemu.log'" }, 
922     { "savevm", "F", do_savevm,
923       "filename", "save the whole virtual machine state to 'filename'" }, 
924     { "loadvm", "F", do_loadvm,
925       "filename", "restore the whole virtual machine state from 'filename'" }, 
926     { "stop", "", do_stop, 
927       "", "stop emulation", },
928     { "c|cont", "", do_cont, 
929       "", "resume emulation", },
930 #ifdef CONFIG_GDBSTUB
931     { "gdbserver", "i?", do_gdbserver, 
932       "[port]", "start gdbserver session (default port=1234)", },
933 #endif
934     { "x", "/l", do_memory_dump, 
935       "/fmt addr", "virtual memory dump starting at 'addr'", },
936     { "xp", "/l", do_physical_memory_dump, 
937       "/fmt addr", "physical memory dump starting at 'addr'", },
938     { "p|print", "/l", do_print, 
939       "/fmt expr", "print expression value (use $reg for CPU register access)", },
940     { "i", "/ii.", do_ioport_read, 
941       "/fmt addr", "I/O port read" },
942
943     { "sendkey", "s", do_send_key, 
944       "keys", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1')" },
945     { "system_reset", "", do_system_reset, 
946       "", "reset the system" },
947     { "system_powerdown", "", do_system_powerdown, 
948       "", "send system power down event" },
949     { "sum", "ii", do_sum, 
950       "addr size", "compute the checksum of a memory region" },
951     { NULL, NULL, }, 
952 };
953
954 static term_cmd_t info_cmds[] = {
955     { "version", "", do_info_version,
956       "", "show the version of qemu" },
957     { "network", "", do_info_network,
958       "", "show the network state" },
959     { "block", "", do_info_block,
960       "", "show the block devices" },
961     { "registers", "", do_info_registers,
962       "", "show the cpu registers" },
963     { "history", "", do_info_history,
964       "", "show the command line history", },
965     { "irq", "", irq_info,
966       "", "show the interrupts statistics (if available)", },
967     { "pic", "", pic_info,
968       "", "show i8259 (PIC) state", },
969     { "pci", "", pci_info,
970       "", "show PCI info", },
971 #if defined(TARGET_I386)
972     { "tlb", "", tlb_info,
973       "", "show virtual to physical memory mappings", },
974     { "mem", "", mem_info,
975       "", "show the active virtual memory mappings", },
976 #endif
977     { "jit", "", do_info_jit,
978       "", "show dynamic compiler info", },
979     { "kqemu", "", do_info_kqemu,
980       "", "show kqemu information", },
981     { NULL, NULL, },
982 };
983
984 /*******************************************************************/
985
986 static const char *pch;
987 static jmp_buf expr_env;
988
989 #define MD_TLONG 0
990 #define MD_I32   1
991
992 typedef struct MonitorDef {
993     const char *name;
994     int offset;
995     target_long (*get_value)(struct MonitorDef *md, int val);
996     int type;
997 } MonitorDef;
998
999 #if defined(TARGET_I386)
1000 static target_long monitor_get_pc (struct MonitorDef *md, int val)
1001 {
1002     return cpu_single_env->eip + cpu_single_env->segs[R_CS].base;
1003 }
1004 #endif
1005
1006 #if defined(TARGET_PPC)
1007 static target_long monitor_get_ccr (struct MonitorDef *md, int val)
1008 {
1009     unsigned int u;
1010     int i;
1011
1012     u = 0;
1013     for (i = 0; i < 8; i++)
1014         u |= cpu_single_env->crf[i] << (32 - (4 * i));
1015
1016     return u;
1017 }
1018
1019 static target_long monitor_get_msr (struct MonitorDef *md, int val)
1020 {
1021     return (cpu_single_env->msr[MSR_POW] << MSR_POW) |
1022         (cpu_single_env->msr[MSR_ILE] << MSR_ILE) |
1023         (cpu_single_env->msr[MSR_EE] << MSR_EE) |
1024         (cpu_single_env->msr[MSR_PR] << MSR_PR) |
1025         (cpu_single_env->msr[MSR_FP] << MSR_FP) |
1026         (cpu_single_env->msr[MSR_ME] << MSR_ME) |
1027         (cpu_single_env->msr[MSR_FE0] << MSR_FE0) |
1028         (cpu_single_env->msr[MSR_SE] << MSR_SE) |
1029         (cpu_single_env->msr[MSR_BE] << MSR_BE) |
1030         (cpu_single_env->msr[MSR_FE1] << MSR_FE1) |
1031         (cpu_single_env->msr[MSR_IP] << MSR_IP) |
1032         (cpu_single_env->msr[MSR_IR] << MSR_IR) |
1033         (cpu_single_env->msr[MSR_DR] << MSR_DR) |
1034         (cpu_single_env->msr[MSR_RI] << MSR_RI) |
1035         (cpu_single_env->msr[MSR_LE] << MSR_LE);
1036 }
1037
1038 static target_long monitor_get_xer (struct MonitorDef *md, int val)
1039 {
1040     return (cpu_single_env->xer[XER_SO] << XER_SO) |
1041         (cpu_single_env->xer[XER_OV] << XER_OV) |
1042         (cpu_single_env->xer[XER_CA] << XER_CA) |
1043         (cpu_single_env->xer[XER_BC] << XER_BC);
1044 }
1045
1046 static target_long monitor_get_decr (struct MonitorDef *md, int val)
1047 {
1048     return cpu_ppc_load_decr(cpu_single_env);
1049 }
1050
1051 static target_long monitor_get_tbu (struct MonitorDef *md, int val)
1052 {
1053     return cpu_ppc_load_tbu(cpu_single_env);
1054 }
1055
1056 static target_long monitor_get_tbl (struct MonitorDef *md, int val)
1057 {
1058     return cpu_ppc_load_tbl(cpu_single_env);
1059 }
1060 #endif
1061
1062 #if defined(TARGET_SPARC)
1063 #ifndef TARGET_SPARC64
1064 static target_long monitor_get_psr (struct MonitorDef *md, int val)
1065 {
1066     return GET_PSR(cpu_single_env);
1067 }
1068 #endif
1069
1070 static target_long monitor_get_reg(struct MonitorDef *md, int val)
1071 {
1072     return cpu_single_env->regwptr[val];
1073 }
1074 #endif
1075
1076 static MonitorDef monitor_defs[] = {
1077 #ifdef TARGET_I386
1078
1079 #define SEG(name, seg) \
1080     { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
1081     { name ".base", offsetof(CPUState, segs[seg].base) },\
1082     { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
1083
1084     { "eax", offsetof(CPUState, regs[0]) },
1085     { "ecx", offsetof(CPUState, regs[1]) },
1086     { "edx", offsetof(CPUState, regs[2]) },
1087     { "ebx", offsetof(CPUState, regs[3]) },
1088     { "esp|sp", offsetof(CPUState, regs[4]) },
1089     { "ebp|fp", offsetof(CPUState, regs[5]) },
1090     { "esi", offsetof(CPUState, regs[6]) },
1091     { "edi", offsetof(CPUState, regs[7]) },
1092 #ifdef TARGET_X86_64
1093     { "r8", offsetof(CPUState, regs[8]) },
1094     { "r9", offsetof(CPUState, regs[9]) },
1095     { "r10", offsetof(CPUState, regs[10]) },
1096     { "r11", offsetof(CPUState, regs[11]) },
1097     { "r12", offsetof(CPUState, regs[12]) },
1098     { "r13", offsetof(CPUState, regs[13]) },
1099     { "r14", offsetof(CPUState, regs[14]) },
1100     { "r15", offsetof(CPUState, regs[15]) },
1101 #endif
1102     { "eflags", offsetof(CPUState, eflags) },
1103     { "eip", offsetof(CPUState, eip) },
1104     SEG("cs", R_CS)
1105     SEG("ds", R_DS)
1106     SEG("es", R_ES)
1107     SEG("ss", R_SS)
1108     SEG("fs", R_FS)
1109     SEG("gs", R_GS)
1110     { "pc", 0, monitor_get_pc, },
1111 #elif defined(TARGET_PPC)
1112     { "r0", offsetof(CPUState, gpr[0]) },
1113     { "r1", offsetof(CPUState, gpr[1]) },
1114     { "r2", offsetof(CPUState, gpr[2]) },
1115     { "r3", offsetof(CPUState, gpr[3]) },
1116     { "r4", offsetof(CPUState, gpr[4]) },
1117     { "r5", offsetof(CPUState, gpr[5]) },
1118     { "r6", offsetof(CPUState, gpr[6]) },
1119     { "r7", offsetof(CPUState, gpr[7]) },
1120     { "r8", offsetof(CPUState, gpr[8]) },
1121     { "r9", offsetof(CPUState, gpr[9]) },
1122     { "r10", offsetof(CPUState, gpr[10]) },
1123     { "r11", offsetof(CPUState, gpr[11]) },
1124     { "r12", offsetof(CPUState, gpr[12]) },
1125     { "r13", offsetof(CPUState, gpr[13]) },
1126     { "r14", offsetof(CPUState, gpr[14]) },
1127     { "r15", offsetof(CPUState, gpr[15]) },
1128     { "r16", offsetof(CPUState, gpr[16]) },
1129     { "r17", offsetof(CPUState, gpr[17]) },
1130     { "r18", offsetof(CPUState, gpr[18]) },
1131     { "r19", offsetof(CPUState, gpr[19]) },
1132     { "r20", offsetof(CPUState, gpr[20]) },
1133     { "r21", offsetof(CPUState, gpr[21]) },
1134     { "r22", offsetof(CPUState, gpr[22]) },
1135     { "r23", offsetof(CPUState, gpr[23]) },
1136     { "r24", offsetof(CPUState, gpr[24]) },
1137     { "r25", offsetof(CPUState, gpr[25]) },
1138     { "r26", offsetof(CPUState, gpr[26]) },
1139     { "r27", offsetof(CPUState, gpr[27]) },
1140     { "r28", offsetof(CPUState, gpr[28]) },
1141     { "r29", offsetof(CPUState, gpr[29]) },
1142     { "r30", offsetof(CPUState, gpr[30]) },
1143     { "r31", offsetof(CPUState, gpr[31]) },
1144     { "nip|pc", offsetof(CPUState, nip) },
1145     { "lr", offsetof(CPUState, lr) },
1146     { "ctr", offsetof(CPUState, ctr) },
1147     { "decr", 0, &monitor_get_decr, },
1148     { "ccr", 0, &monitor_get_ccr, },
1149     { "msr", 0, &monitor_get_msr, },
1150     { "xer", 0, &monitor_get_xer, },
1151     { "tbu", 0, &monitor_get_tbu, },
1152     { "tbl", 0, &monitor_get_tbl, },
1153     { "sdr1", offsetof(CPUState, sdr1) },
1154     { "sr0", offsetof(CPUState, sr[0]) },
1155     { "sr1", offsetof(CPUState, sr[1]) },
1156     { "sr2", offsetof(CPUState, sr[2]) },
1157     { "sr3", offsetof(CPUState, sr[3]) },
1158     { "sr4", offsetof(CPUState, sr[4]) },
1159     { "sr5", offsetof(CPUState, sr[5]) },
1160     { "sr6", offsetof(CPUState, sr[6]) },
1161     { "sr7", offsetof(CPUState, sr[7]) },
1162     { "sr8", offsetof(CPUState, sr[8]) },
1163     { "sr9", offsetof(CPUState, sr[9]) },
1164     { "sr10", offsetof(CPUState, sr[10]) },
1165     { "sr11", offsetof(CPUState, sr[11]) },
1166     { "sr12", offsetof(CPUState, sr[12]) },
1167     { "sr13", offsetof(CPUState, sr[13]) },
1168     { "sr14", offsetof(CPUState, sr[14]) },
1169     { "sr15", offsetof(CPUState, sr[15]) },
1170     /* Too lazy to put BATs and SPRs ... */
1171 #elif defined(TARGET_SPARC)
1172     { "g0", offsetof(CPUState, gregs[0]) },
1173     { "g1", offsetof(CPUState, gregs[1]) },
1174     { "g2", offsetof(CPUState, gregs[2]) },
1175     { "g3", offsetof(CPUState, gregs[3]) },
1176     { "g4", offsetof(CPUState, gregs[4]) },
1177     { "g5", offsetof(CPUState, gregs[5]) },
1178     { "g6", offsetof(CPUState, gregs[6]) },
1179     { "g7", offsetof(CPUState, gregs[7]) },
1180     { "o0", 0, monitor_get_reg },
1181     { "o1", 1, monitor_get_reg },
1182     { "o2", 2, monitor_get_reg },
1183     { "o3", 3, monitor_get_reg },
1184     { "o4", 4, monitor_get_reg },
1185     { "o5", 5, monitor_get_reg },
1186     { "o6", 6, monitor_get_reg },
1187     { "o7", 7, monitor_get_reg },
1188     { "l0", 8, monitor_get_reg },
1189     { "l1", 9, monitor_get_reg },
1190     { "l2", 10, monitor_get_reg },
1191     { "l3", 11, monitor_get_reg },
1192     { "l4", 12, monitor_get_reg },
1193     { "l5", 13, monitor_get_reg },
1194     { "l6", 14, monitor_get_reg },
1195     { "l7", 15, monitor_get_reg },
1196     { "i0", 16, monitor_get_reg },
1197     { "i1", 17, monitor_get_reg },
1198     { "i2", 18, monitor_get_reg },
1199     { "i3", 19, monitor_get_reg },
1200     { "i4", 20, monitor_get_reg },
1201     { "i5", 21, monitor_get_reg },
1202     { "i6", 22, monitor_get_reg },
1203     { "i7", 23, monitor_get_reg },
1204     { "pc", offsetof(CPUState, pc) },
1205     { "npc", offsetof(CPUState, npc) },
1206     { "y", offsetof(CPUState, y) },
1207 #ifndef TARGET_SPARC64
1208     { "psr", 0, &monitor_get_psr, },
1209     { "wim", offsetof(CPUState, wim) },
1210 #endif
1211     { "tbr", offsetof(CPUState, tbr) },
1212     { "fsr", offsetof(CPUState, fsr) },
1213     { "f0", offsetof(CPUState, fpr[0]) },
1214     { "f1", offsetof(CPUState, fpr[1]) },
1215     { "f2", offsetof(CPUState, fpr[2]) },
1216     { "f3", offsetof(CPUState, fpr[3]) },
1217     { "f4", offsetof(CPUState, fpr[4]) },
1218     { "f5", offsetof(CPUState, fpr[5]) },
1219     { "f6", offsetof(CPUState, fpr[6]) },
1220     { "f7", offsetof(CPUState, fpr[7]) },
1221     { "f8", offsetof(CPUState, fpr[8]) },
1222     { "f9", offsetof(CPUState, fpr[9]) },
1223     { "f10", offsetof(CPUState, fpr[10]) },
1224     { "f11", offsetof(CPUState, fpr[11]) },
1225     { "f12", offsetof(CPUState, fpr[12]) },
1226     { "f13", offsetof(CPUState, fpr[13]) },
1227     { "f14", offsetof(CPUState, fpr[14]) },
1228     { "f15", offsetof(CPUState, fpr[15]) },
1229     { "f16", offsetof(CPUState, fpr[16]) },
1230     { "f17", offsetof(CPUState, fpr[17]) },
1231     { "f18", offsetof(CPUState, fpr[18]) },
1232     { "f19", offsetof(CPUState, fpr[19]) },
1233     { "f20", offsetof(CPUState, fpr[20]) },
1234     { "f21", offsetof(CPUState, fpr[21]) },
1235     { "f22", offsetof(CPUState, fpr[22]) },
1236     { "f23", offsetof(CPUState, fpr[23]) },
1237     { "f24", offsetof(CPUState, fpr[24]) },
1238     { "f25", offsetof(CPUState, fpr[25]) },
1239     { "f26", offsetof(CPUState, fpr[26]) },
1240     { "f27", offsetof(CPUState, fpr[27]) },
1241     { "f28", offsetof(CPUState, fpr[28]) },
1242     { "f29", offsetof(CPUState, fpr[29]) },
1243     { "f30", offsetof(CPUState, fpr[30]) },
1244     { "f31", offsetof(CPUState, fpr[31]) },
1245 #ifdef TARGET_SPARC64
1246     { "f32", offsetof(CPUState, fpr[32]) },
1247     { "f34", offsetof(CPUState, fpr[34]) },
1248     { "f36", offsetof(CPUState, fpr[36]) },
1249     { "f38", offsetof(CPUState, fpr[38]) },
1250     { "f40", offsetof(CPUState, fpr[40]) },
1251     { "f42", offsetof(CPUState, fpr[42]) },
1252     { "f44", offsetof(CPUState, fpr[44]) },
1253     { "f46", offsetof(CPUState, fpr[46]) },
1254     { "f48", offsetof(CPUState, fpr[48]) },
1255     { "f50", offsetof(CPUState, fpr[50]) },
1256     { "f52", offsetof(CPUState, fpr[52]) },
1257     { "f54", offsetof(CPUState, fpr[54]) },
1258     { "f56", offsetof(CPUState, fpr[56]) },
1259     { "f58", offsetof(CPUState, fpr[58]) },
1260     { "f60", offsetof(CPUState, fpr[60]) },
1261     { "f62", offsetof(CPUState, fpr[62]) },
1262     { "asi", offsetof(CPUState, asi) },
1263     { "pstate", offsetof(CPUState, pstate) },
1264     { "cansave", offsetof(CPUState, cansave) },
1265     { "canrestore", offsetof(CPUState, canrestore) },
1266     { "otherwin", offsetof(CPUState, otherwin) },
1267     { "wstate", offsetof(CPUState, wstate) },
1268     { "cleanwin", offsetof(CPUState, cleanwin) },
1269     { "fprs", offsetof(CPUState, fprs) },
1270 #endif
1271 #endif
1272     { NULL },
1273 };
1274
1275 static void expr_error(const char *fmt) 
1276 {
1277     term_printf(fmt);
1278     term_printf("\n");
1279     longjmp(expr_env, 1);
1280 }
1281
1282 static int get_monitor_def(target_long *pval, const char *name)
1283 {
1284     MonitorDef *md;
1285     void *ptr;
1286
1287     for(md = monitor_defs; md->name != NULL; md++) {
1288         if (compare_cmd(name, md->name)) {
1289             if (md->get_value) {
1290                 *pval = md->get_value(md, md->offset);
1291             } else {
1292                 ptr = (uint8_t *)cpu_single_env + md->offset;
1293                 switch(md->type) {
1294                 case MD_I32:
1295                     *pval = *(int32_t *)ptr;
1296                     break;
1297                 case MD_TLONG:
1298                     *pval = *(target_long *)ptr;
1299                     break;
1300                 default:
1301                     *pval = 0;
1302                     break;
1303                 }
1304             }
1305             return 0;
1306         }
1307     }
1308     return -1;
1309 }
1310
1311 static void next(void)
1312 {
1313     if (pch != '\0') {
1314         pch++;
1315         while (isspace(*pch))
1316             pch++;
1317     }
1318 }
1319
1320 static target_long expr_sum(void);
1321
1322 static target_long expr_unary(void)
1323 {
1324     target_long n;
1325     char *p;
1326
1327     switch(*pch) {
1328     case '+':
1329         next();
1330         n = expr_unary();
1331         break;
1332     case '-':
1333         next();
1334         n = -expr_unary();
1335         break;
1336     case '~':
1337         next();
1338         n = ~expr_unary();
1339         break;
1340     case '(':
1341         next();
1342         n = expr_sum();
1343         if (*pch != ')') {
1344             expr_error("')' expected");
1345         }
1346         next();
1347         break;
1348     case '\'':
1349         pch++;
1350         if (*pch == '\0')
1351             expr_error("character constant expected");
1352         n = *pch;
1353         pch++;
1354         if (*pch != '\'')
1355             expr_error("missing terminating \' character");
1356         next();
1357         break;
1358     case '$':
1359         {
1360             char buf[128], *q;
1361             
1362             pch++;
1363             q = buf;
1364             while ((*pch >= 'a' && *pch <= 'z') ||
1365                    (*pch >= 'A' && *pch <= 'Z') ||
1366                    (*pch >= '0' && *pch <= '9') ||
1367                    *pch == '_' || *pch == '.') {
1368                 if ((q - buf) < sizeof(buf) - 1)
1369                     *q++ = *pch;
1370                 pch++;
1371             }
1372             while (isspace(*pch))
1373                 pch++;
1374             *q = 0;
1375             if (get_monitor_def(&n, buf))
1376                 expr_error("unknown register");
1377         }
1378         break;
1379     case '\0':
1380         expr_error("unexpected end of expression");
1381         n = 0;
1382         break;
1383     default:
1384         n = strtoul(pch, &p, 0);
1385         if (pch == p) {
1386             expr_error("invalid char in expression");
1387         }
1388         pch = p;
1389         while (isspace(*pch))
1390             pch++;
1391         break;
1392     }
1393     return n;
1394 }
1395
1396
1397 static target_long expr_prod(void)
1398 {
1399     target_long val, val2;
1400     int op;
1401     
1402     val = expr_unary();
1403     for(;;) {
1404         op = *pch;
1405         if (op != '*' && op != '/' && op != '%')
1406             break;
1407         next();
1408         val2 = expr_unary();
1409         switch(op) {
1410         default:
1411         case '*':
1412             val *= val2;
1413             break;
1414         case '/':
1415         case '%':
1416             if (val2 == 0) 
1417                 expr_error("division by zero");
1418             if (op == '/')
1419                 val /= val2;
1420             else
1421                 val %= val2;
1422             break;
1423         }
1424     }
1425     return val;
1426 }
1427
1428 static target_long expr_logic(void)
1429 {
1430     target_long val, val2;
1431     int op;
1432
1433     val = expr_prod();
1434     for(;;) {
1435         op = *pch;
1436         if (op != '&' && op != '|' && op != '^')
1437             break;
1438         next();
1439         val2 = expr_prod();
1440         switch(op) {
1441         default:
1442         case '&':
1443             val &= val2;
1444             break;
1445         case '|':
1446             val |= val2;
1447             break;
1448         case '^':
1449             val ^= val2;
1450             break;
1451         }
1452     }
1453     return val;
1454 }
1455
1456 static target_long expr_sum(void)
1457 {
1458     target_long val, val2;
1459     int op;
1460
1461     val = expr_logic();
1462     for(;;) {
1463         op = *pch;
1464         if (op != '+' && op != '-')
1465             break;
1466         next();
1467         val2 = expr_logic();
1468         if (op == '+')
1469             val += val2;
1470         else
1471             val -= val2;
1472     }
1473     return val;
1474 }
1475
1476 static int get_expr(target_long *pval, const char **pp)
1477 {
1478     pch = *pp;
1479     if (setjmp(expr_env)) {
1480         *pp = pch;
1481         return -1;
1482     }
1483     while (isspace(*pch))
1484         pch++;
1485     *pval = expr_sum();
1486     *pp = pch;
1487     return 0;
1488 }
1489
1490 static int get_str(char *buf, int buf_size, const char **pp)
1491 {
1492     const char *p;
1493     char *q;
1494     int c;
1495
1496     q = buf;
1497     p = *pp;
1498     while (isspace(*p))
1499         p++;
1500     if (*p == '\0') {
1501     fail:
1502         *q = '\0';
1503         *pp = p;
1504         return -1;
1505     }
1506     if (*p == '\"') {
1507         p++;
1508         while (*p != '\0' && *p != '\"') {
1509             if (*p == '\\') {
1510                 p++;
1511                 c = *p++;
1512                 switch(c) {
1513                 case 'n':
1514                     c = '\n';
1515                     break;
1516                 case 'r':
1517                     c = '\r';
1518                     break;
1519                 case '\\':
1520                 case '\'':
1521                 case '\"':
1522                     break;
1523                 default:
1524                     qemu_printf("unsupported escape code: '\\%c'\n", c);
1525                     goto fail;
1526                 }
1527                 if ((q - buf) < buf_size - 1) {
1528                     *q++ = c;
1529                 }
1530             } else {
1531                 if ((q - buf) < buf_size - 1) {
1532                     *q++ = *p;
1533                 }
1534                 p++;
1535             }
1536         }
1537         if (*p != '\"') {
1538             qemu_printf("unterminated string\n");
1539             goto fail;
1540         }
1541         p++;
1542     } else {
1543         while (*p != '\0' && !isspace(*p)) {
1544             if ((q - buf) < buf_size - 1) {
1545                 *q++ = *p;
1546             }
1547             p++;
1548         }
1549     }
1550     *q = '\0';
1551     *pp = p;
1552     return 0;
1553 }
1554
1555 static int default_fmt_format = 'x';
1556 static int default_fmt_size = 4;
1557
1558 #define MAX_ARGS 16
1559
1560 static void monitor_handle_command(const char *cmdline)
1561 {
1562     const char *p, *pstart, *typestr;
1563     char *q;
1564     int c, nb_args, len, i, has_arg;
1565     term_cmd_t *cmd;
1566     char cmdname[256];
1567     char buf[1024];
1568     void *str_allocated[MAX_ARGS];
1569     void *args[MAX_ARGS];
1570
1571 #ifdef DEBUG
1572     term_printf("command='%s'\n", cmdline);
1573 #endif
1574     
1575     /* extract the command name */
1576     p = cmdline;
1577     q = cmdname;
1578     while (isspace(*p))
1579         p++;
1580     if (*p == '\0')
1581         return;
1582     pstart = p;
1583     while (*p != '\0' && *p != '/' && !isspace(*p))
1584         p++;
1585     len = p - pstart;
1586     if (len > sizeof(cmdname) - 1)
1587         len = sizeof(cmdname) - 1;
1588     memcpy(cmdname, pstart, len);
1589     cmdname[len] = '\0';
1590     
1591     /* find the command */
1592     for(cmd = term_cmds; cmd->name != NULL; cmd++) {
1593         if (compare_cmd(cmdname, cmd->name)) 
1594             goto found;
1595     }
1596     term_printf("unknown command: '%s'\n", cmdname);
1597     return;
1598  found:
1599
1600     for(i = 0; i < MAX_ARGS; i++)
1601         str_allocated[i] = NULL;
1602     
1603     /* parse the parameters */
1604     typestr = cmd->args_type;
1605     nb_args = 0;
1606     for(;;) {
1607         c = *typestr;
1608         if (c == '\0')
1609             break;
1610         typestr++;
1611         switch(c) {
1612         case 'F':
1613         case 'B':
1614         case 's':
1615             {
1616                 int ret;
1617                 char *str;
1618                 
1619                 while (isspace(*p)) 
1620                     p++;
1621                 if (*typestr == '?') {
1622                     typestr++;
1623                     if (*p == '\0') {
1624                         /* no optional string: NULL argument */
1625                         str = NULL;
1626                         goto add_str;
1627                     }
1628                 }
1629                 ret = get_str(buf, sizeof(buf), &p);
1630                 if (ret < 0) {
1631                     switch(c) {
1632                     case 'F':
1633                         term_printf("%s: filename expected\n", cmdname);
1634                         break;
1635                     case 'B':
1636                         term_printf("%s: block device name expected\n", cmdname);
1637                         break;
1638                     default:
1639                         term_printf("%s: string expected\n", cmdname);
1640                         break;
1641                     }
1642                     goto fail;
1643                 }
1644                 str = qemu_malloc(strlen(buf) + 1);
1645                 strcpy(str, buf);
1646                 str_allocated[nb_args] = str;
1647             add_str:
1648                 if (nb_args >= MAX_ARGS) {
1649                 error_args:
1650                     term_printf("%s: too many arguments\n", cmdname);
1651                     goto fail;
1652                 }
1653                 args[nb_args++] = str;
1654             }
1655             break;
1656         case '/':
1657             {
1658                 int count, format, size;
1659                 
1660                 while (isspace(*p))
1661                     p++;
1662                 if (*p == '/') {
1663                     /* format found */
1664                     p++;
1665                     count = 1;
1666                     if (isdigit(*p)) {
1667                         count = 0;
1668                         while (isdigit(*p)) {
1669                             count = count * 10 + (*p - '0');
1670                             p++;
1671                         }
1672                     }
1673                     size = -1;
1674                     format = -1;
1675                     for(;;) {
1676                         switch(*p) {
1677                         case 'o':
1678                         case 'd':
1679                         case 'u':
1680                         case 'x':
1681                         case 'i':
1682                         case 'c':
1683                             format = *p++;
1684                             break;
1685                         case 'b':
1686                             size = 1;
1687                             p++;
1688                             break;
1689                         case 'h':
1690                             size = 2;
1691                             p++;
1692                             break;
1693                         case 'w':
1694                             size = 4;
1695                             p++;
1696                             break;
1697                         case 'g':
1698                         case 'L':
1699                             size = 8;
1700                             p++;
1701                             break;
1702                         default:
1703                             goto next;
1704                         }
1705                     }
1706                 next:
1707                     if (*p != '\0' && !isspace(*p)) {
1708                         term_printf("invalid char in format: '%c'\n", *p);
1709                         goto fail;
1710                     }
1711                     if (format < 0)
1712                         format = default_fmt_format;
1713                     if (format != 'i') {
1714                         /* for 'i', not specifying a size gives -1 as size */
1715                         if (size < 0)
1716                             size = default_fmt_size;
1717                     }
1718                     default_fmt_size = size;
1719                     default_fmt_format = format;
1720                 } else {
1721                     count = 1;
1722                     format = default_fmt_format;
1723                     if (format != 'i') {
1724                         size = default_fmt_size;
1725                     } else {
1726                         size = -1;
1727                     }
1728                 }
1729                 if (nb_args + 3 > MAX_ARGS)
1730                     goto error_args;
1731                 args[nb_args++] = (void*)count;
1732                 args[nb_args++] = (void*)format;
1733                 args[nb_args++] = (void*)size;
1734             }
1735             break;
1736         case 'i':
1737         case 'l':
1738             {
1739                 target_long val;
1740                 while (isspace(*p)) 
1741                     p++;
1742                 if (*typestr == '?' || *typestr == '.') {
1743                     typestr++;
1744                     if (*typestr == '?') {
1745                         if (*p == '\0')
1746                             has_arg = 0;
1747                         else
1748                             has_arg = 1;
1749                     } else {
1750                         if (*p == '.') {
1751                             p++;
1752                             while (isspace(*p)) 
1753                                 p++;
1754                             has_arg = 1;
1755                         } else {
1756                             has_arg = 0;
1757                         }
1758                     }
1759                     if (nb_args >= MAX_ARGS)
1760                         goto error_args;
1761                     args[nb_args++] = (void *)has_arg;
1762                     if (!has_arg) {
1763                         if (nb_args >= MAX_ARGS)
1764                             goto error_args;
1765                         val = -1;
1766                         goto add_num;
1767                     }
1768                 }
1769                 if (get_expr(&val, &p))
1770                     goto fail;
1771             add_num:
1772                 if (c == 'i') {
1773                     if (nb_args >= MAX_ARGS)
1774                         goto error_args;
1775                     args[nb_args++] = (void *)(int)val;
1776                 } else {
1777                     if ((nb_args + 1) >= MAX_ARGS)
1778                         goto error_args;
1779 #if TARGET_LONG_BITS == 64
1780                     args[nb_args++] = (void *)(int)((val >> 32) & 0xffffffff);
1781 #else
1782                     args[nb_args++] = (void *)0;
1783 #endif
1784                     args[nb_args++] = (void *)(int)(val & 0xffffffff);
1785                 }
1786             }
1787             break;
1788         case '-':
1789             {
1790                 int has_option;
1791                 /* option */
1792                 
1793                 c = *typestr++;
1794                 if (c == '\0')
1795                     goto bad_type;
1796                 while (isspace(*p)) 
1797                     p++;
1798                 has_option = 0;
1799                 if (*p == '-') {
1800                     p++;
1801                     if (*p != c) {
1802                         term_printf("%s: unsupported option -%c\n", 
1803                                     cmdname, *p);
1804                         goto fail;
1805                     }
1806                     p++;
1807                     has_option = 1;
1808                 }
1809                 if (nb_args >= MAX_ARGS)
1810                     goto error_args;
1811                 args[nb_args++] = (void *)has_option;
1812             }
1813             break;
1814         default:
1815         bad_type:
1816             term_printf("%s: unknown type '%c'\n", cmdname, c);
1817             goto fail;
1818         }
1819     }
1820     /* check that all arguments were parsed */
1821     while (isspace(*p))
1822         p++;
1823     if (*p != '\0') {
1824         term_printf("%s: extraneous characters at the end of line\n", 
1825                     cmdname);
1826         goto fail;
1827     }
1828
1829     switch(nb_args) {
1830     case 0:
1831         cmd->handler();
1832         break;
1833     case 1:
1834         cmd->handler(args[0]);
1835         break;
1836     case 2:
1837         cmd->handler(args[0], args[1]);
1838         break;
1839     case 3:
1840         cmd->handler(args[0], args[1], args[2]);
1841         break;
1842     case 4:
1843         cmd->handler(args[0], args[1], args[2], args[3]);
1844         break;
1845     case 5:
1846         cmd->handler(args[0], args[1], args[2], args[3], args[4]);
1847         break;
1848     case 6:
1849         cmd->handler(args[0], args[1], args[2], args[3], args[4], args[5]);
1850         break;
1851     default:
1852         term_printf("unsupported number of arguments: %d\n", nb_args);
1853         goto fail;
1854     }
1855  fail:
1856     for(i = 0; i < MAX_ARGS; i++)
1857         qemu_free(str_allocated[i]);
1858     return;
1859 }
1860
1861 static void cmd_completion(const char *name, const char *list)
1862 {
1863     const char *p, *pstart;
1864     char cmd[128];
1865     int len;
1866
1867     p = list;
1868     for(;;) {
1869         pstart = p;
1870         p = strchr(p, '|');
1871         if (!p)
1872             p = pstart + strlen(pstart);
1873         len = p - pstart;
1874         if (len > sizeof(cmd) - 2)
1875             len = sizeof(cmd) - 2;
1876         memcpy(cmd, pstart, len);
1877         cmd[len] = '\0';
1878         if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
1879             add_completion(cmd);
1880         }
1881         if (*p == '\0')
1882             break;
1883         p++;
1884     }
1885 }
1886
1887 static void file_completion(const char *input)
1888 {
1889     DIR *ffs;
1890     struct dirent *d;
1891     char path[1024];
1892     char file[1024], file_prefix[1024];
1893     int input_path_len;
1894     const char *p;
1895
1896     p = strrchr(input, '/'); 
1897     if (!p) {
1898         input_path_len = 0;
1899         pstrcpy(file_prefix, sizeof(file_prefix), input);
1900         strcpy(path, ".");
1901     } else {
1902         input_path_len = p - input + 1;
1903         memcpy(path, input, input_path_len);
1904         if (input_path_len > sizeof(path) - 1)
1905             input_path_len = sizeof(path) - 1;
1906         path[input_path_len] = '\0';
1907         pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
1908     }
1909 #ifdef DEBUG_COMPLETION
1910     term_printf("input='%s' path='%s' prefix='%s'\n", input, path, file_prefix);
1911 #endif
1912     ffs = opendir(path);
1913     if (!ffs)
1914         return;
1915     for(;;) {
1916         struct stat sb;
1917         d = readdir(ffs);
1918         if (!d)
1919             break;
1920         if (strstart(d->d_name, file_prefix, NULL)) {
1921             memcpy(file, input, input_path_len);
1922             strcpy(file + input_path_len, d->d_name);
1923             /* stat the file to find out if it's a directory.
1924              * In that case add a slash to speed up typing long paths
1925              */
1926             stat(file, &sb);
1927             if(S_ISDIR(sb.st_mode))
1928                 strcat(file, "/");
1929             add_completion(file);
1930         }
1931     }
1932     closedir(ffs);
1933 }
1934
1935 static void block_completion_it(void *opaque, const char *name)
1936 {
1937     const char *input = opaque;
1938
1939     if (input[0] == '\0' ||
1940         !strncmp(name, (char *)input, strlen(input))) {
1941         add_completion(name);
1942     }
1943 }
1944
1945 /* NOTE: this parser is an approximate form of the real command parser */
1946 static void parse_cmdline(const char *cmdline,
1947                          int *pnb_args, char **args)
1948 {
1949     const char *p;
1950     int nb_args, ret;
1951     char buf[1024];
1952
1953     p = cmdline;
1954     nb_args = 0;
1955     for(;;) {
1956         while (isspace(*p))
1957             p++;
1958         if (*p == '\0')
1959             break;
1960         if (nb_args >= MAX_ARGS)
1961             break;
1962         ret = get_str(buf, sizeof(buf), &p);
1963         args[nb_args] = qemu_strdup(buf);
1964         nb_args++;
1965         if (ret < 0)
1966             break;
1967     }
1968     *pnb_args = nb_args;
1969 }
1970
1971 void readline_find_completion(const char *cmdline)
1972 {
1973     const char *cmdname;
1974     char *args[MAX_ARGS];
1975     int nb_args, i, len;
1976     const char *ptype, *str;
1977     term_cmd_t *cmd;
1978
1979     parse_cmdline(cmdline, &nb_args, args);
1980 #ifdef DEBUG_COMPLETION
1981     for(i = 0; i < nb_args; i++) {
1982         term_printf("arg%d = '%s'\n", i, (char *)args[i]);
1983     }
1984 #endif
1985
1986     /* if the line ends with a space, it means we want to complete the
1987        next arg */
1988     len = strlen(cmdline);
1989     if (len > 0 && isspace(cmdline[len - 1])) {
1990         if (nb_args >= MAX_ARGS)
1991             return;
1992         args[nb_args++] = qemu_strdup("");
1993     }
1994     if (nb_args <= 1) {
1995         /* command completion */
1996         if (nb_args == 0)
1997             cmdname = "";
1998         else
1999             cmdname = args[0];
2000         completion_index = strlen(cmdname);
2001         for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2002             cmd_completion(cmdname, cmd->name);
2003         }
2004     } else {
2005         /* find the command */
2006         for(cmd = term_cmds; cmd->name != NULL; cmd++) {
2007             if (compare_cmd(args[0], cmd->name))
2008                 goto found;
2009         }
2010         return;
2011     found:
2012         ptype = cmd->args_type;
2013         for(i = 0; i < nb_args - 2; i++) {
2014             if (*ptype != '\0') {
2015                 ptype++;
2016                 while (*ptype == '?')
2017                     ptype++;
2018             }
2019         }
2020         str = args[nb_args - 1];
2021         switch(*ptype) {
2022         case 'F':
2023             /* file completion */
2024             completion_index = strlen(str);
2025             file_completion(str);
2026             break;
2027         case 'B':
2028             /* block device name completion */
2029             completion_index = strlen(str);
2030             bdrv_iterate(block_completion_it, (void *)str);
2031             break;
2032         case 's':
2033             /* XXX: more generic ? */
2034             if (!strcmp(cmd->name, "info")) {
2035                 completion_index = strlen(str);
2036                 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
2037                     cmd_completion(str, cmd->name);
2038                 }
2039             }
2040             break;
2041         default:
2042             break;
2043         }
2044     }
2045     for(i = 0; i < nb_args; i++)
2046         qemu_free(args[i]);
2047 }
2048
2049 static int term_can_read(void *opaque)
2050 {
2051     return 128;
2052 }
2053
2054 static void term_read(void *opaque, const uint8_t *buf, int size)
2055 {
2056     int i;
2057     for(i = 0; i < size; i++)
2058         readline_handle_byte(buf[i]);
2059 }
2060
2061 static void monitor_start_input(void);
2062
2063 static void monitor_handle_command1(void *opaque, const char *cmdline)
2064 {
2065     monitor_handle_command(cmdline);
2066     monitor_start_input();
2067 }
2068
2069 static void monitor_start_input(void)
2070 {
2071     readline_start("(qemu) ", 0, monitor_handle_command1, NULL);
2072 }
2073
2074 void monitor_init(CharDriverState *hd, int show_banner)
2075 {
2076     monitor_hd = hd;
2077     if (show_banner) {
2078         term_printf("QEMU %s monitor - type 'help' for more information\n",
2079                     QEMU_VERSION);
2080     }
2081     qemu_chr_add_read_handler(hd, term_can_read, term_read, NULL);
2082     monitor_start_input();
2083 }
2084
2085 /* XXX: use threads ? */
2086 /* modal monitor readline */
2087 static int monitor_readline_started;
2088 static char *monitor_readline_buf;
2089 static int monitor_readline_buf_size;
2090
2091 static void monitor_readline_cb(void *opaque, const char *input)
2092 {
2093     pstrcpy(monitor_readline_buf, monitor_readline_buf_size, input);
2094     monitor_readline_started = 0;
2095 }
2096
2097 void monitor_readline(const char *prompt, int is_password,
2098                       char *buf, int buf_size)
2099 {
2100     if (is_password) {
2101         qemu_chr_send_event(monitor_hd, CHR_EVENT_FOCUS);
2102     }
2103     readline_start(prompt, is_password, monitor_readline_cb, NULL);
2104     monitor_readline_buf = buf;
2105     monitor_readline_buf_size = buf_size;
2106     monitor_readline_started = 1;
2107     while (monitor_readline_started) {
2108         main_loop_wait(10);
2109     }
2110 }