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