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