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