4 * Copyright (c) 2003-2004 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
28 #include "hw/pcmcia.h"
31 #include "hw/watchdog.h"
34 #include "qemu-char.h"
40 #include "audio/audio.h"
43 #include "qemu-timer.h"
44 #include "migration.h"
52 //#define DEBUG_COMPLETION
58 * 'B' block device name
59 * 's' string (accept optional quote)
61 * 'l' target long (32 or 64 bit)
62 * '/' optional gdb-like print format (like "/10x")
64 * '?' optional type (for 'F', 's' and 'i')
68 typedef struct mon_cmd_t {
70 const char *args_type;
76 /* file descriptors passed via SCM_RIGHTS */
77 typedef struct mon_fd_t mon_fd_t;
81 LIST_ENTRY(mon_fd_t) next;
92 BlockDriverCompletionFunc *password_completion_cb;
93 void *password_opaque;
94 LIST_HEAD(,mon_fd_t) fds;
95 LIST_ENTRY(Monitor) entry;
98 static LIST_HEAD(mon_list, Monitor) mon_list;
100 static const mon_cmd_t mon_cmds[];
101 static const mon_cmd_t info_cmds[];
103 Monitor *cur_mon = NULL;
105 static void monitor_command_cb(Monitor *mon, const char *cmdline,
108 static void monitor_read_command(Monitor *mon, int show_prompt)
110 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
112 readline_show_prompt(mon->rs);
115 static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
119 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
120 /* prompt is printed on return from the command handler */
123 monitor_printf(mon, "terminal does not support password prompting\n");
128 void monitor_flush(Monitor *mon)
130 if (mon && mon->outbuf_index != 0 && mon->chr->focus == 0) {
131 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
132 mon->outbuf_index = 0;
136 /* flush at every end of line or if the buffer is full */
137 static void monitor_puts(Monitor *mon, const char *str)
149 mon->outbuf[mon->outbuf_index++] = '\r';
150 mon->outbuf[mon->outbuf_index++] = c;
151 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
157 void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
160 vsnprintf(buf, sizeof(buf), fmt, ap);
161 monitor_puts(mon, buf);
164 void monitor_printf(Monitor *mon, const char *fmt, ...)
168 monitor_vprintf(mon, fmt, ap);
172 void monitor_print_filename(Monitor *mon, const char *filename)
176 for (i = 0; filename[i]; i++) {
177 switch (filename[i]) {
181 monitor_printf(mon, "\\%c", filename[i]);
184 monitor_printf(mon, "\\t");
187 monitor_printf(mon, "\\r");
190 monitor_printf(mon, "\\n");
193 monitor_printf(mon, "%c", filename[i]);
199 static int monitor_fprintf(FILE *stream, const char *fmt, ...)
203 monitor_vprintf((Monitor *)stream, fmt, ap);
208 static int compare_cmd(const char *name, const char *list)
210 const char *p, *pstart;
218 p = pstart + strlen(pstart);
219 if ((p - pstart) == len && !memcmp(pstart, name, len))
228 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
229 const char *prefix, const char *name)
231 const mon_cmd_t *cmd;
233 for(cmd = cmds; cmd->name != NULL; cmd++) {
234 if (!name || !strcmp(name, cmd->name))
235 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
236 cmd->params, cmd->help);
240 static void help_cmd(Monitor *mon, const char *name)
242 if (name && !strcmp(name, "info")) {
243 help_cmd_dump(mon, info_cmds, "info ", NULL);
245 help_cmd_dump(mon, mon_cmds, "", name);
246 if (name && !strcmp(name, "log")) {
247 const CPULogItem *item;
248 monitor_printf(mon, "Log items (comma separated):\n");
249 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
250 for(item = cpu_log_items; item->mask != 0; item++) {
251 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
257 static void do_help_cmd(Monitor *mon, const QDict *qdict)
259 help_cmd(mon, qdict_get_try_str(qdict, "name"));
262 static void do_commit(Monitor *mon, const QDict *qdict)
266 const char *device = qdict_get_str(qdict, "device");
268 all_devices = !strcmp(device, "all");
269 TAILQ_FOREACH(dinfo, &drives, next) {
271 if (strcmp(bdrv_get_device_name(dinfo->bdrv), device))
273 bdrv_commit(dinfo->bdrv);
277 static void do_info(Monitor *mon, const QDict *qdict)
279 const mon_cmd_t *cmd;
280 const char *item = qdict_get_try_str(qdict, "item");
281 void (*handler)(Monitor *);
285 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
286 if (compare_cmd(item, cmd->name))
290 help_cmd(mon, "info");
293 handler = cmd->handler;
297 static void do_info_version(Monitor *mon)
299 monitor_printf(mon, "%s\n", QEMU_VERSION QEMU_PKGVERSION);
302 static void do_info_name(Monitor *mon)
305 monitor_printf(mon, "%s\n", qemu_name);
308 #if defined(TARGET_I386)
309 static void do_info_hpet(Monitor *mon)
311 monitor_printf(mon, "HPET is %s by QEMU\n",
312 (no_hpet) ? "disabled" : "enabled");
316 static void do_info_uuid(Monitor *mon)
318 monitor_printf(mon, UUID_FMT "\n", qemu_uuid[0], qemu_uuid[1],
319 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
320 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
321 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
322 qemu_uuid[14], qemu_uuid[15]);
325 /* get the current CPU defined by the user */
326 static int mon_set_cpu(int cpu_index)
330 for(env = first_cpu; env != NULL; env = env->next_cpu) {
331 if (env->cpu_index == cpu_index) {
332 cur_mon->mon_cpu = env;
339 static CPUState *mon_get_cpu(void)
341 if (!cur_mon->mon_cpu) {
344 cpu_synchronize_state(cur_mon->mon_cpu);
345 return cur_mon->mon_cpu;
348 static void do_info_registers(Monitor *mon)
355 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
358 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
363 static void do_info_cpus(Monitor *mon)
367 /* just to set the default cpu if not already done */
370 for(env = first_cpu; env != NULL; env = env->next_cpu) {
371 cpu_synchronize_state(env);
372 monitor_printf(mon, "%c CPU #%d:",
373 (env == mon->mon_cpu) ? '*' : ' ',
375 #if defined(TARGET_I386)
376 monitor_printf(mon, " pc=0x" TARGET_FMT_lx,
377 env->eip + env->segs[R_CS].base);
378 #elif defined(TARGET_PPC)
379 monitor_printf(mon, " nip=0x" TARGET_FMT_lx, env->nip);
380 #elif defined(TARGET_SPARC)
381 monitor_printf(mon, " pc=0x" TARGET_FMT_lx " npc=0x" TARGET_FMT_lx,
383 #elif defined(TARGET_MIPS)
384 monitor_printf(mon, " PC=0x" TARGET_FMT_lx, env->active_tc.PC);
387 monitor_printf(mon, " (halted)");
388 monitor_printf(mon, "\n");
392 static void do_cpu_set(Monitor *mon, const QDict *qdict)
394 int index = qdict_get_int(qdict, "index");
395 if (mon_set_cpu(index) < 0)
396 monitor_printf(mon, "Invalid CPU index\n");
399 static void do_info_jit(Monitor *mon)
401 dump_exec_info((FILE *)mon, monitor_fprintf);
404 static void do_info_history(Monitor *mon)
413 str = readline_get_history(mon->rs, i);
416 monitor_printf(mon, "%d: '%s'\n", i, str);
421 #if defined(TARGET_PPC)
422 /* XXX: not implemented in other targets */
423 static void do_info_cpu_stats(Monitor *mon)
428 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
432 static void do_quit(Monitor *mon, const QDict *qdict)
437 static int eject_device(Monitor *mon, BlockDriverState *bs, int force)
439 if (bdrv_is_inserted(bs)) {
441 if (!bdrv_is_removable(bs)) {
442 monitor_printf(mon, "device is not removable\n");
445 if (bdrv_is_locked(bs)) {
446 monitor_printf(mon, "device is locked\n");
455 static void do_eject(Monitor *mon, const QDict *qdict)
457 BlockDriverState *bs;
458 int force = qdict_get_int(qdict, "force");
459 const char *filename = qdict_get_str(qdict, "filename");
461 bs = bdrv_find(filename);
463 monitor_printf(mon, "device not found\n");
466 eject_device(mon, bs, force);
469 static void do_change_block(Monitor *mon, const char *device,
470 const char *filename, const char *fmt)
472 BlockDriverState *bs;
473 BlockDriver *drv = NULL;
475 bs = bdrv_find(device);
477 monitor_printf(mon, "device not found\n");
481 drv = bdrv_find_format(fmt);
483 monitor_printf(mon, "invalid format %s\n", fmt);
487 if (eject_device(mon, bs, 0) < 0)
489 bdrv_open2(bs, filename, 0, drv);
490 monitor_read_bdrv_key_start(mon, bs, NULL, NULL);
493 static void change_vnc_password_cb(Monitor *mon, const char *password,
496 if (vnc_display_password(NULL, password) < 0)
497 monitor_printf(mon, "could not set VNC server password\n");
499 monitor_read_command(mon, 1);
502 static void do_change_vnc(Monitor *mon, const char *target, const char *arg)
504 if (strcmp(target, "passwd") == 0 ||
505 strcmp(target, "password") == 0) {
508 strncpy(password, arg, sizeof(password));
509 password[sizeof(password) - 1] = '\0';
510 change_vnc_password_cb(mon, password, NULL);
512 monitor_read_password(mon, change_vnc_password_cb, NULL);
515 if (vnc_display_open(NULL, target) < 0)
516 monitor_printf(mon, "could not start VNC server on %s\n", target);
520 static void do_change(Monitor *mon, const QDict *qdict)
522 const char *device = qdict_get_str(qdict, "device");
523 const char *target = qdict_get_str(qdict, "target");
524 const char *arg = qdict_get_try_str(qdict, "arg");
525 if (strcmp(device, "vnc") == 0) {
526 do_change_vnc(mon, target, arg);
528 do_change_block(mon, device, target, arg);
532 static void do_screen_dump(Monitor *mon, const QDict *qdict)
534 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
537 static void do_logfile(Monitor *mon, const QDict *qdict)
539 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
542 static void do_log(Monitor *mon, const QDict *qdict)
545 const char *items = qdict_get_str(qdict, "items");
547 if (!strcmp(items, "none")) {
550 mask = cpu_str_to_log_mask(items);
552 help_cmd(mon, "log");
559 static void do_singlestep(Monitor *mon, const QDict *qdict)
561 const char *option = qdict_get_try_str(qdict, "option");
562 if (!option || !strcmp(option, "on")) {
564 } else if (!strcmp(option, "off")) {
567 monitor_printf(mon, "unexpected option %s\n", option);
571 static void do_stop(Monitor *mon, const QDict *qdict)
573 vm_stop(EXCP_INTERRUPT);
576 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
578 struct bdrv_iterate_context {
583 static void do_cont(Monitor *mon, const QDict *qdict)
585 struct bdrv_iterate_context context = { mon, 0 };
587 bdrv_iterate(encrypted_bdrv_it, &context);
588 /* only resume the vm if all keys are set and valid */
593 static void bdrv_key_cb(void *opaque, int err)
595 Monitor *mon = opaque;
597 /* another key was set successfully, retry to continue */
602 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
604 struct bdrv_iterate_context *context = opaque;
606 if (!context->err && bdrv_key_required(bs)) {
607 context->err = -EBUSY;
608 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
613 static void do_gdbserver(Monitor *mon, const QDict *qdict)
615 const char *device = qdict_get_try_str(qdict, "device");
617 device = "tcp::" DEFAULT_GDBSTUB_PORT;
618 if (gdbserver_start(device) < 0) {
619 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
621 } else if (strcmp(device, "none") == 0) {
622 monitor_printf(mon, "Disabled gdbserver\n");
624 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
629 static void do_watchdog_action(Monitor *mon, const QDict *qdict)
631 const char *action = qdict_get_str(qdict, "action");
632 if (select_watchdog_action(action) == -1) {
633 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
637 static void monitor_printc(Monitor *mon, int c)
639 monitor_printf(mon, "'");
642 monitor_printf(mon, "\\'");
645 monitor_printf(mon, "\\\\");
648 monitor_printf(mon, "\\n");
651 monitor_printf(mon, "\\r");
654 if (c >= 32 && c <= 126) {
655 monitor_printf(mon, "%c", c);
657 monitor_printf(mon, "\\x%02x", c);
661 monitor_printf(mon, "'");
664 static void memory_dump(Monitor *mon, int count, int format, int wsize,
665 target_phys_addr_t addr, int is_physical)
668 int nb_per_line, l, line_size, i, max_digits, len;
676 if (!env && !is_physical)
681 } else if (wsize == 4) {
684 /* as default we use the current CS size */
688 if ((env->efer & MSR_EFER_LMA) &&
689 (env->segs[R_CS].flags & DESC_L_MASK))
693 if (!(env->segs[R_CS].flags & DESC_B_MASK))
698 monitor_disas(mon, env, addr, count, is_physical, flags);
707 nb_per_line = line_size / wsize;
712 max_digits = (wsize * 8 + 2) / 3;
716 max_digits = (wsize * 8) / 4;
720 max_digits = (wsize * 8 * 10 + 32) / 33;
729 monitor_printf(mon, TARGET_FMT_plx ":", addr);
731 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
736 cpu_physical_memory_rw(addr, buf, l, 0);
741 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
742 monitor_printf(mon, " Cannot access memory\n");
751 v = ldub_raw(buf + i);
754 v = lduw_raw(buf + i);
757 v = (uint32_t)ldl_raw(buf + i);
760 v = ldq_raw(buf + i);
763 monitor_printf(mon, " ");
766 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
769 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
772 monitor_printf(mon, "%*" PRIu64, max_digits, v);
775 monitor_printf(mon, "%*" PRId64, max_digits, v);
778 monitor_printc(mon, v);
783 monitor_printf(mon, "\n");
789 #if TARGET_LONG_BITS == 64
790 #define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
792 #define GET_TLONG(h, l) (l)
795 static void do_memory_dump(Monitor *mon, int count, int format, int size,
796 uint32_t addrh, uint32_t addrl)
798 target_long addr = GET_TLONG(addrh, addrl);
799 memory_dump(mon, count, format, size, addr, 0);
802 #if TARGET_PHYS_ADDR_BITS > 32
803 #define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
805 #define GET_TPHYSADDR(h, l) (l)
808 static void do_physical_memory_dump(Monitor *mon, int count, int format,
809 int size, uint32_t addrh, uint32_t addrl)
812 target_phys_addr_t addr = GET_TPHYSADDR(addrh, addrl);
813 memory_dump(mon, count, format, size, addr, 1);
816 static void do_print(Monitor *mon, int count, int format, int size,
817 unsigned int valh, unsigned int vall)
819 target_phys_addr_t val = GET_TPHYSADDR(valh, vall);
820 #if TARGET_PHYS_ADDR_BITS == 32
823 monitor_printf(mon, "%#o", val);
826 monitor_printf(mon, "%#x", val);
829 monitor_printf(mon, "%u", val);
833 monitor_printf(mon, "%d", val);
836 monitor_printc(mon, val);
842 monitor_printf(mon, "%#" PRIo64, val);
845 monitor_printf(mon, "%#" PRIx64, val);
848 monitor_printf(mon, "%" PRIu64, val);
852 monitor_printf(mon, "%" PRId64, val);
855 monitor_printc(mon, val);
859 monitor_printf(mon, "\n");
862 static void do_memory_save(Monitor *mon, unsigned int valh, unsigned int vall,
863 uint32_t size, const char *filename)
866 target_long addr = GET_TLONG(valh, vall);
875 f = fopen(filename, "wb");
877 monitor_printf(mon, "could not open '%s'\n", filename);
884 cpu_memory_rw_debug(env, addr, buf, l, 0);
885 fwrite(buf, 1, l, f);
892 static void do_physical_memory_save(Monitor *mon, unsigned int valh,
893 unsigned int vall, uint32_t size,
894 const char *filename)
899 target_phys_addr_t addr = GET_TPHYSADDR(valh, vall);
901 f = fopen(filename, "wb");
903 monitor_printf(mon, "could not open '%s'\n", filename);
910 cpu_physical_memory_rw(addr, buf, l, 0);
911 fwrite(buf, 1, l, f);
919 static void do_sum(Monitor *mon, const QDict *qdict)
924 uint32_t start = qdict_get_int(qdict, "start");
925 uint32_t size = qdict_get_int(qdict, "size");
928 for(addr = start; addr < (start + size); addr++) {
929 cpu_physical_memory_rw(addr, buf, 1, 0);
930 /* BSD sum algorithm ('sum' Unix command) */
931 sum = (sum >> 1) | (sum << 15);
934 monitor_printf(mon, "%05d\n", sum);
942 static const KeyDef key_defs[] = {
969 { 0x0e, "backspace" },
1006 { 0x37, "asterisk" },
1009 { 0x3a, "caps_lock" },
1020 { 0x45, "num_lock" },
1021 { 0x46, "scroll_lock" },
1023 { 0xb5, "kp_divide" },
1024 { 0x37, "kp_multiply" },
1025 { 0x4a, "kp_subtract" },
1027 { 0x9c, "kp_enter" },
1028 { 0x53, "kp_decimal" },
1061 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1076 { 0xfe, "compose" },
1081 static int get_keycode(const char *key)
1087 for(p = key_defs; p->name != NULL; p++) {
1088 if (!strcmp(key, p->name))
1091 if (strstart(key, "0x", NULL)) {
1092 ret = strtoul(key, &endp, 0);
1093 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1099 #define MAX_KEYCODES 16
1100 static uint8_t keycodes[MAX_KEYCODES];
1101 static int nb_pending_keycodes;
1102 static QEMUTimer *key_timer;
1104 static void release_keys(void *opaque)
1108 while (nb_pending_keycodes > 0) {
1109 nb_pending_keycodes--;
1110 keycode = keycodes[nb_pending_keycodes];
1112 kbd_put_keycode(0xe0);
1113 kbd_put_keycode(keycode | 0x80);
1117 static void do_sendkey(Monitor *mon, const QDict *qdict)
1119 char keyname_buf[16];
1121 int keyname_len, keycode, i;
1122 const char *string = qdict_get_str(qdict, "string");
1123 int has_hold_time = qdict_haskey(qdict, "hold_time");
1124 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
1126 if (nb_pending_keycodes > 0) {
1127 qemu_del_timer(key_timer);
1134 separator = strchr(string, '-');
1135 keyname_len = separator ? separator - string : strlen(string);
1136 if (keyname_len > 0) {
1137 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1138 if (keyname_len > sizeof(keyname_buf) - 1) {
1139 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
1142 if (i == MAX_KEYCODES) {
1143 monitor_printf(mon, "too many keys\n");
1146 keyname_buf[keyname_len] = 0;
1147 keycode = get_keycode(keyname_buf);
1149 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
1152 keycodes[i++] = keycode;
1156 string = separator + 1;
1158 nb_pending_keycodes = i;
1159 /* key down events */
1160 for (i = 0; i < nb_pending_keycodes; i++) {
1161 keycode = keycodes[i];
1163 kbd_put_keycode(0xe0);
1164 kbd_put_keycode(keycode & 0x7f);
1166 /* delayed key up events */
1167 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
1168 muldiv64(ticks_per_sec, hold_time, 1000));
1171 static int mouse_button_state;
1173 static void do_mouse_move(Monitor *mon, const QDict *qdict)
1176 const char *dx_str = qdict_get_str(qdict, "dx_str");
1177 const char *dy_str = qdict_get_str(qdict, "dy_str");
1178 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1179 dx = strtol(dx_str, NULL, 0);
1180 dy = strtol(dy_str, NULL, 0);
1183 dz = strtol(dz_str, NULL, 0);
1184 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1187 static void do_mouse_button(Monitor *mon, const QDict *qdict)
1189 int button_state = qdict_get_int(qdict, "button_state");
1190 mouse_button_state = button_state;
1191 kbd_mouse_event(0, 0, 0, mouse_button_state);
1194 static void do_ioport_read(Monitor *mon, int count, int format, int size,
1195 int addr, int has_index, int index)
1201 cpu_outb(NULL, addr & IOPORTS_MASK, index & 0xff);
1209 val = cpu_inb(NULL, addr);
1213 val = cpu_inw(NULL, addr);
1217 val = cpu_inl(NULL, addr);
1221 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1222 suffix, addr, size * 2, val);
1225 static void do_ioport_write(Monitor *mon, int count, int format, int size,
1228 addr &= IOPORTS_MASK;
1233 cpu_outb(NULL, addr, val);
1236 cpu_outw(NULL, addr, val);
1239 cpu_outl(NULL, addr, val);
1244 static void do_boot_set(Monitor *mon, const QDict *qdict)
1247 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1249 res = qemu_boot_set(bootdevice);
1251 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1252 } else if (res > 0) {
1253 monitor_printf(mon, "setting boot device list failed\n");
1255 monitor_printf(mon, "no function defined to set boot device list for "
1256 "this architecture\n");
1260 static void do_system_reset(Monitor *mon, const QDict *qdict)
1262 qemu_system_reset_request();
1265 static void do_system_powerdown(Monitor *mon, const QDict *qdict)
1267 qemu_system_powerdown_request();
1270 #if defined(TARGET_I386)
1271 static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
1273 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1276 pte & PG_GLOBAL_MASK ? 'G' : '-',
1277 pte & PG_PSE_MASK ? 'P' : '-',
1278 pte & PG_DIRTY_MASK ? 'D' : '-',
1279 pte & PG_ACCESSED_MASK ? 'A' : '-',
1280 pte & PG_PCD_MASK ? 'C' : '-',
1281 pte & PG_PWT_MASK ? 'T' : '-',
1282 pte & PG_USER_MASK ? 'U' : '-',
1283 pte & PG_RW_MASK ? 'W' : '-');
1286 static void tlb_info(Monitor *mon)
1290 uint32_t pgd, pde, pte;
1292 env = mon_get_cpu();
1296 if (!(env->cr[0] & CR0_PG_MASK)) {
1297 monitor_printf(mon, "PG disabled\n");
1300 pgd = env->cr[3] & ~0xfff;
1301 for(l1 = 0; l1 < 1024; l1++) {
1302 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1303 pde = le32_to_cpu(pde);
1304 if (pde & PG_PRESENT_MASK) {
1305 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1306 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
1308 for(l2 = 0; l2 < 1024; l2++) {
1309 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
1310 (uint8_t *)&pte, 4);
1311 pte = le32_to_cpu(pte);
1312 if (pte & PG_PRESENT_MASK) {
1313 print_pte(mon, (l1 << 22) + (l2 << 12),
1323 static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
1324 uint32_t end, int prot)
1327 prot1 = *plast_prot;
1328 if (prot != prot1) {
1329 if (*pstart != -1) {
1330 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1331 *pstart, end, end - *pstart,
1332 prot1 & PG_USER_MASK ? 'u' : '-',
1334 prot1 & PG_RW_MASK ? 'w' : '-');
1344 static void mem_info(Monitor *mon)
1347 int l1, l2, prot, last_prot;
1348 uint32_t pgd, pde, pte, start, end;
1350 env = mon_get_cpu();
1354 if (!(env->cr[0] & CR0_PG_MASK)) {
1355 monitor_printf(mon, "PG disabled\n");
1358 pgd = env->cr[3] & ~0xfff;
1361 for(l1 = 0; l1 < 1024; l1++) {
1362 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1363 pde = le32_to_cpu(pde);
1365 if (pde & PG_PRESENT_MASK) {
1366 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1367 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1368 mem_print(mon, &start, &last_prot, end, prot);
1370 for(l2 = 0; l2 < 1024; l2++) {
1371 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
1372 (uint8_t *)&pte, 4);
1373 pte = le32_to_cpu(pte);
1374 end = (l1 << 22) + (l2 << 12);
1375 if (pte & PG_PRESENT_MASK) {
1376 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1380 mem_print(mon, &start, &last_prot, end, prot);
1385 mem_print(mon, &start, &last_prot, end, prot);
1391 #if defined(TARGET_SH4)
1393 static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
1395 monitor_printf(mon, " tlb%i:\t"
1396 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1397 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1398 "dirty=%hhu writethrough=%hhu\n",
1400 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1401 tlb->v, tlb->sh, tlb->c, tlb->pr,
1405 static void tlb_info(Monitor *mon)
1407 CPUState *env = mon_get_cpu();
1410 monitor_printf (mon, "ITLB:\n");
1411 for (i = 0 ; i < ITLB_SIZE ; i++)
1412 print_tlb (mon, i, &env->itlb[i]);
1413 monitor_printf (mon, "UTLB:\n");
1414 for (i = 0 ; i < UTLB_SIZE ; i++)
1415 print_tlb (mon, i, &env->utlb[i]);
1420 static void do_info_kvm(Monitor *mon)
1423 monitor_printf(mon, "kvm support: ");
1425 monitor_printf(mon, "enabled\n");
1427 monitor_printf(mon, "disabled\n");
1429 monitor_printf(mon, "kvm support: not compiled\n");
1433 static void do_info_numa(Monitor *mon)
1438 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1439 for (i = 0; i < nb_numa_nodes; i++) {
1440 monitor_printf(mon, "node %d cpus:", i);
1441 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1442 if (env->numa_node == i) {
1443 monitor_printf(mon, " %d", env->cpu_index);
1446 monitor_printf(mon, "\n");
1447 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1452 #ifdef CONFIG_PROFILER
1454 static void do_info_profile(Monitor *mon)
1460 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
1461 dev_time, dev_time / (double)ticks_per_sec);
1462 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
1463 qemu_time, qemu_time / (double)ticks_per_sec);
1468 static void do_info_profile(Monitor *mon)
1470 monitor_printf(mon, "Internal profiler not compiled\n");
1474 /* Capture support */
1475 static LIST_HEAD (capture_list_head, CaptureState) capture_head;
1477 static void do_info_capture(Monitor *mon)
1482 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1483 monitor_printf(mon, "[%d]: ", i);
1484 s->ops.info (s->opaque);
1489 static void do_stop_capture(Monitor *mon, const QDict *qdict)
1492 int n = qdict_get_int(qdict, "n");
1495 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1497 s->ops.destroy (s->opaque);
1498 LIST_REMOVE (s, entries);
1505 static void do_wav_capture(Monitor *mon, const char *path,
1506 int has_freq, int freq,
1507 int has_bits, int bits,
1508 int has_channels, int nchannels)
1512 s = qemu_mallocz (sizeof (*s));
1514 freq = has_freq ? freq : 44100;
1515 bits = has_bits ? bits : 16;
1516 nchannels = has_channels ? nchannels : 2;
1518 if (wav_start_capture (s, path, freq, bits, nchannels)) {
1519 monitor_printf(mon, "Faied to add wave capture\n");
1522 LIST_INSERT_HEAD (&capture_head, s, entries);
1526 #if defined(TARGET_I386)
1527 static void do_inject_nmi(Monitor *mon, const QDict *qdict)
1530 int cpu_index = qdict_get_int(qdict, "cpu_index");
1532 for (env = first_cpu; env != NULL; env = env->next_cpu)
1533 if (env->cpu_index == cpu_index) {
1534 cpu_interrupt(env, CPU_INTERRUPT_NMI);
1540 static void do_info_status(Monitor *mon)
1544 monitor_printf(mon, "VM status: running (single step mode)\n");
1546 monitor_printf(mon, "VM status: running\n");
1549 monitor_printf(mon, "VM status: paused\n");
1553 static void do_balloon(Monitor *mon, const QDict *qdict)
1555 int value = qdict_get_int(qdict, "value");
1556 ram_addr_t target = value;
1557 qemu_balloon(target << 20);
1560 static void do_info_balloon(Monitor *mon)
1564 actual = qemu_balloon_status();
1565 if (kvm_enabled() && !kvm_has_sync_mmu())
1566 monitor_printf(mon, "Using KVM without synchronous MMU, "
1567 "ballooning disabled\n");
1568 else if (actual == 0)
1569 monitor_printf(mon, "Ballooning not activated in VM\n");
1571 monitor_printf(mon, "balloon: actual=%d\n", (int)(actual >> 20));
1574 static qemu_acl *find_acl(Monitor *mon, const char *name)
1576 qemu_acl *acl = qemu_acl_find(name);
1579 monitor_printf(mon, "acl: unknown list '%s'\n", name);
1584 static void do_acl_show(Monitor *mon, const QDict *qdict)
1586 const char *aclname = qdict_get_str(qdict, "aclname");
1587 qemu_acl *acl = find_acl(mon, aclname);
1588 qemu_acl_entry *entry;
1592 monitor_printf(mon, "policy: %s\n",
1593 acl->defaultDeny ? "deny" : "allow");
1594 TAILQ_FOREACH(entry, &acl->entries, next) {
1596 monitor_printf(mon, "%d: %s %s\n", i,
1597 entry->deny ? "deny" : "allow", entry->match);
1602 static void do_acl_reset(Monitor *mon, const QDict *qdict)
1604 const char *aclname = qdict_get_str(qdict, "aclname");
1605 qemu_acl *acl = find_acl(mon, aclname);
1608 qemu_acl_reset(acl);
1609 monitor_printf(mon, "acl: removed all rules\n");
1613 static void do_acl_policy(Monitor *mon, const QDict *qdict)
1615 const char *aclname = qdict_get_str(qdict, "aclname");
1616 const char *policy = qdict_get_str(qdict, "policy");
1617 qemu_acl *acl = find_acl(mon, aclname);
1620 if (strcmp(policy, "allow") == 0) {
1621 acl->defaultDeny = 0;
1622 monitor_printf(mon, "acl: policy set to 'allow'\n");
1623 } else if (strcmp(policy, "deny") == 0) {
1624 acl->defaultDeny = 1;
1625 monitor_printf(mon, "acl: policy set to 'deny'\n");
1627 monitor_printf(mon, "acl: unknown policy '%s', "
1628 "expected 'deny' or 'allow'\n", policy);
1633 static void do_acl_add(Monitor *mon, const char *aclname,
1634 const char *match, const char *policy,
1635 int has_index, int index)
1637 qemu_acl *acl = find_acl(mon, aclname);
1641 if (strcmp(policy, "allow") == 0) {
1643 } else if (strcmp(policy, "deny") == 0) {
1646 monitor_printf(mon, "acl: unknown policy '%s', "
1647 "expected 'deny' or 'allow'\n", policy);
1651 ret = qemu_acl_insert(acl, deny, match, index);
1653 ret = qemu_acl_append(acl, deny, match);
1655 monitor_printf(mon, "acl: unable to add acl entry\n");
1657 monitor_printf(mon, "acl: added rule at position %d\n", ret);
1661 static void do_acl_remove(Monitor *mon, const QDict *qdict)
1663 const char *aclname = qdict_get_str(qdict, "aclname");
1664 const char *match = qdict_get_str(qdict, "match");
1665 qemu_acl *acl = find_acl(mon, aclname);
1669 ret = qemu_acl_remove(acl, match);
1671 monitor_printf(mon, "acl: no matching acl entry\n");
1673 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
1677 #if defined(TARGET_I386)
1678 static void do_inject_mce(Monitor *mon,
1679 int cpu_index, int bank,
1680 unsigned status_hi, unsigned status_lo,
1681 unsigned mcg_status_hi, unsigned mcg_status_lo,
1682 unsigned addr_hi, unsigned addr_lo,
1683 unsigned misc_hi, unsigned misc_lo)
1686 uint64_t status = ((uint64_t)status_hi << 32) | status_lo;
1687 uint64_t mcg_status = ((uint64_t)mcg_status_hi << 32) | mcg_status_lo;
1688 uint64_t addr = ((uint64_t)addr_hi << 32) | addr_lo;
1689 uint64_t misc = ((uint64_t)misc_hi << 32) | misc_lo;
1691 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
1692 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
1693 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
1699 static void do_getfd(Monitor *mon, const QDict *qdict)
1701 const char *fdname = qdict_get_str(qdict, "fdname");
1705 fd = qemu_chr_get_msgfd(mon->chr);
1707 monitor_printf(mon, "getfd: no file descriptor supplied via SCM_RIGHTS\n");
1711 if (qemu_isdigit(fdname[0])) {
1712 monitor_printf(mon, "getfd: monitor names may not begin with a number\n");
1718 monitor_printf(mon, "Failed to dup() file descriptor: %s\n",
1723 LIST_FOREACH(monfd, &mon->fds, next) {
1724 if (strcmp(monfd->name, fdname) != 0) {
1733 monfd = qemu_mallocz(sizeof(mon_fd_t));
1734 monfd->name = qemu_strdup(fdname);
1737 LIST_INSERT_HEAD(&mon->fds, monfd, next);
1740 static void do_closefd(Monitor *mon, const QDict *qdict)
1742 const char *fdname = qdict_get_str(qdict, "fdname");
1745 LIST_FOREACH(monfd, &mon->fds, next) {
1746 if (strcmp(monfd->name, fdname) != 0) {
1750 LIST_REMOVE(monfd, next);
1752 qemu_free(monfd->name);
1757 monitor_printf(mon, "Failed to find file descriptor named %s\n",
1761 static void do_loadvm(Monitor *mon, const QDict *qdict)
1763 int saved_vm_running = vm_running;
1764 const char *name = qdict_get_str(qdict, "name");
1768 if (load_vmstate(mon, name) >= 0 && saved_vm_running)
1772 int monitor_get_fd(Monitor *mon, const char *fdname)
1776 LIST_FOREACH(monfd, &mon->fds, next) {
1779 if (strcmp(monfd->name, fdname) != 0) {
1785 /* caller takes ownership of fd */
1786 LIST_REMOVE(monfd, next);
1787 qemu_free(monfd->name);
1796 static const mon_cmd_t mon_cmds[] = {
1797 #include "qemu-monitor.h"
1801 /* Please update qemu-monitor.hx when adding or changing commands */
1802 static const mon_cmd_t info_cmds[] = {
1803 { "version", "", do_info_version,
1804 "", "show the version of QEMU" },
1805 { "network", "", do_info_network,
1806 "", "show the network state" },
1807 { "chardev", "", qemu_chr_info,
1808 "", "show the character devices" },
1809 { "block", "", bdrv_info,
1810 "", "show the block devices" },
1811 { "blockstats", "", bdrv_info_stats,
1812 "", "show block device statistics" },
1813 { "registers", "", do_info_registers,
1814 "", "show the cpu registers" },
1815 { "cpus", "", do_info_cpus,
1816 "", "show infos for each CPU" },
1817 { "history", "", do_info_history,
1818 "", "show the command line history", },
1819 { "irq", "", irq_info,
1820 "", "show the interrupts statistics (if available)", },
1821 { "pic", "", pic_info,
1822 "", "show i8259 (PIC) state", },
1823 { "pci", "", pci_info,
1824 "", "show PCI info", },
1825 #if defined(TARGET_I386) || defined(TARGET_SH4)
1826 { "tlb", "", tlb_info,
1827 "", "show virtual to physical memory mappings", },
1829 #if defined(TARGET_I386)
1830 { "mem", "", mem_info,
1831 "", "show the active virtual memory mappings", },
1832 { "hpet", "", do_info_hpet,
1833 "", "show state of HPET", },
1835 { "jit", "", do_info_jit,
1836 "", "show dynamic compiler info", },
1837 { "kvm", "", do_info_kvm,
1838 "", "show KVM information", },
1839 { "numa", "", do_info_numa,
1840 "", "show NUMA information", },
1841 { "usb", "", usb_info,
1842 "", "show guest USB devices", },
1843 { "usbhost", "", usb_host_info,
1844 "", "show host USB devices", },
1845 { "profile", "", do_info_profile,
1846 "", "show profiling information", },
1847 { "capture", "", do_info_capture,
1848 "", "show capture information" },
1849 { "snapshots", "", do_info_snapshots,
1850 "", "show the currently saved VM snapshots" },
1851 { "status", "", do_info_status,
1852 "", "show the current VM status (running|paused)" },
1853 { "pcmcia", "", pcmcia_info,
1854 "", "show guest PCMCIA status" },
1855 { "mice", "", do_info_mice,
1856 "", "show which guest mouse is receiving events" },
1857 { "vnc", "", do_info_vnc,
1858 "", "show the vnc server status"},
1859 { "name", "", do_info_name,
1860 "", "show the current VM name" },
1861 { "uuid", "", do_info_uuid,
1862 "", "show the current VM UUID" },
1863 #if defined(TARGET_PPC)
1864 { "cpustats", "", do_info_cpu_stats,
1865 "", "show CPU statistics", },
1867 #if defined(CONFIG_SLIRP)
1868 { "usernet", "", do_info_usernet,
1869 "", "show user network stack connection states", },
1871 { "migrate", "", do_info_migrate, "", "show migration status" },
1872 { "balloon", "", do_info_balloon,
1873 "", "show balloon information" },
1874 { "qtree", "", do_info_qtree,
1875 "", "show device tree" },
1876 { "qdm", "", do_info_qdm,
1877 "", "show qdev device model list" },
1881 /*******************************************************************/
1883 static const char *pch;
1884 static jmp_buf expr_env;
1889 typedef struct MonitorDef {
1892 target_long (*get_value)(const struct MonitorDef *md, int val);
1896 #if defined(TARGET_I386)
1897 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
1899 CPUState *env = mon_get_cpu();
1902 return env->eip + env->segs[R_CS].base;
1906 #if defined(TARGET_PPC)
1907 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
1909 CPUState *env = mon_get_cpu();
1917 for (i = 0; i < 8; i++)
1918 u |= env->crf[i] << (32 - (4 * i));
1923 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
1925 CPUState *env = mon_get_cpu();
1931 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
1933 CPUState *env = mon_get_cpu();
1939 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
1941 CPUState *env = mon_get_cpu();
1944 return cpu_ppc_load_decr(env);
1947 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
1949 CPUState *env = mon_get_cpu();
1952 return cpu_ppc_load_tbu(env);
1955 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
1957 CPUState *env = mon_get_cpu();
1960 return cpu_ppc_load_tbl(env);
1964 #if defined(TARGET_SPARC)
1965 #ifndef TARGET_SPARC64
1966 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
1968 CPUState *env = mon_get_cpu();
1971 return GET_PSR(env);
1975 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
1977 CPUState *env = mon_get_cpu();
1980 return env->regwptr[val];
1984 static const MonitorDef monitor_defs[] = {
1987 #define SEG(name, seg) \
1988 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
1989 { name ".base", offsetof(CPUState, segs[seg].base) },\
1990 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
1992 { "eax", offsetof(CPUState, regs[0]) },
1993 { "ecx", offsetof(CPUState, regs[1]) },
1994 { "edx", offsetof(CPUState, regs[2]) },
1995 { "ebx", offsetof(CPUState, regs[3]) },
1996 { "esp|sp", offsetof(CPUState, regs[4]) },
1997 { "ebp|fp", offsetof(CPUState, regs[5]) },
1998 { "esi", offsetof(CPUState, regs[6]) },
1999 { "edi", offsetof(CPUState, regs[7]) },
2000 #ifdef TARGET_X86_64
2001 { "r8", offsetof(CPUState, regs[8]) },
2002 { "r9", offsetof(CPUState, regs[9]) },
2003 { "r10", offsetof(CPUState, regs[10]) },
2004 { "r11", offsetof(CPUState, regs[11]) },
2005 { "r12", offsetof(CPUState, regs[12]) },
2006 { "r13", offsetof(CPUState, regs[13]) },
2007 { "r14", offsetof(CPUState, regs[14]) },
2008 { "r15", offsetof(CPUState, regs[15]) },
2010 { "eflags", offsetof(CPUState, eflags) },
2011 { "eip", offsetof(CPUState, eip) },
2018 { "pc", 0, monitor_get_pc, },
2019 #elif defined(TARGET_PPC)
2020 /* General purpose registers */
2021 { "r0", offsetof(CPUState, gpr[0]) },
2022 { "r1", offsetof(CPUState, gpr[1]) },
2023 { "r2", offsetof(CPUState, gpr[2]) },
2024 { "r3", offsetof(CPUState, gpr[3]) },
2025 { "r4", offsetof(CPUState, gpr[4]) },
2026 { "r5", offsetof(CPUState, gpr[5]) },
2027 { "r6", offsetof(CPUState, gpr[6]) },
2028 { "r7", offsetof(CPUState, gpr[7]) },
2029 { "r8", offsetof(CPUState, gpr[8]) },
2030 { "r9", offsetof(CPUState, gpr[9]) },
2031 { "r10", offsetof(CPUState, gpr[10]) },
2032 { "r11", offsetof(CPUState, gpr[11]) },
2033 { "r12", offsetof(CPUState, gpr[12]) },
2034 { "r13", offsetof(CPUState, gpr[13]) },
2035 { "r14", offsetof(CPUState, gpr[14]) },
2036 { "r15", offsetof(CPUState, gpr[15]) },
2037 { "r16", offsetof(CPUState, gpr[16]) },
2038 { "r17", offsetof(CPUState, gpr[17]) },
2039 { "r18", offsetof(CPUState, gpr[18]) },
2040 { "r19", offsetof(CPUState, gpr[19]) },
2041 { "r20", offsetof(CPUState, gpr[20]) },
2042 { "r21", offsetof(CPUState, gpr[21]) },
2043 { "r22", offsetof(CPUState, gpr[22]) },
2044 { "r23", offsetof(CPUState, gpr[23]) },
2045 { "r24", offsetof(CPUState, gpr[24]) },
2046 { "r25", offsetof(CPUState, gpr[25]) },
2047 { "r26", offsetof(CPUState, gpr[26]) },
2048 { "r27", offsetof(CPUState, gpr[27]) },
2049 { "r28", offsetof(CPUState, gpr[28]) },
2050 { "r29", offsetof(CPUState, gpr[29]) },
2051 { "r30", offsetof(CPUState, gpr[30]) },
2052 { "r31", offsetof(CPUState, gpr[31]) },
2053 /* Floating point registers */
2054 { "f0", offsetof(CPUState, fpr[0]) },
2055 { "f1", offsetof(CPUState, fpr[1]) },
2056 { "f2", offsetof(CPUState, fpr[2]) },
2057 { "f3", offsetof(CPUState, fpr[3]) },
2058 { "f4", offsetof(CPUState, fpr[4]) },
2059 { "f5", offsetof(CPUState, fpr[5]) },
2060 { "f6", offsetof(CPUState, fpr[6]) },
2061 { "f7", offsetof(CPUState, fpr[7]) },
2062 { "f8", offsetof(CPUState, fpr[8]) },
2063 { "f9", offsetof(CPUState, fpr[9]) },
2064 { "f10", offsetof(CPUState, fpr[10]) },
2065 { "f11", offsetof(CPUState, fpr[11]) },
2066 { "f12", offsetof(CPUState, fpr[12]) },
2067 { "f13", offsetof(CPUState, fpr[13]) },
2068 { "f14", offsetof(CPUState, fpr[14]) },
2069 { "f15", offsetof(CPUState, fpr[15]) },
2070 { "f16", offsetof(CPUState, fpr[16]) },
2071 { "f17", offsetof(CPUState, fpr[17]) },
2072 { "f18", offsetof(CPUState, fpr[18]) },
2073 { "f19", offsetof(CPUState, fpr[19]) },
2074 { "f20", offsetof(CPUState, fpr[20]) },
2075 { "f21", offsetof(CPUState, fpr[21]) },
2076 { "f22", offsetof(CPUState, fpr[22]) },
2077 { "f23", offsetof(CPUState, fpr[23]) },
2078 { "f24", offsetof(CPUState, fpr[24]) },
2079 { "f25", offsetof(CPUState, fpr[25]) },
2080 { "f26", offsetof(CPUState, fpr[26]) },
2081 { "f27", offsetof(CPUState, fpr[27]) },
2082 { "f28", offsetof(CPUState, fpr[28]) },
2083 { "f29", offsetof(CPUState, fpr[29]) },
2084 { "f30", offsetof(CPUState, fpr[30]) },
2085 { "f31", offsetof(CPUState, fpr[31]) },
2086 { "fpscr", offsetof(CPUState, fpscr) },
2087 /* Next instruction pointer */
2088 { "nip|pc", offsetof(CPUState, nip) },
2089 { "lr", offsetof(CPUState, lr) },
2090 { "ctr", offsetof(CPUState, ctr) },
2091 { "decr", 0, &monitor_get_decr, },
2092 { "ccr", 0, &monitor_get_ccr, },
2093 /* Machine state register */
2094 { "msr", 0, &monitor_get_msr, },
2095 { "xer", 0, &monitor_get_xer, },
2096 { "tbu", 0, &monitor_get_tbu, },
2097 { "tbl", 0, &monitor_get_tbl, },
2098 #if defined(TARGET_PPC64)
2099 /* Address space register */
2100 { "asr", offsetof(CPUState, asr) },
2102 /* Segment registers */
2103 { "sdr1", offsetof(CPUState, sdr1) },
2104 { "sr0", offsetof(CPUState, sr[0]) },
2105 { "sr1", offsetof(CPUState, sr[1]) },
2106 { "sr2", offsetof(CPUState, sr[2]) },
2107 { "sr3", offsetof(CPUState, sr[3]) },
2108 { "sr4", offsetof(CPUState, sr[4]) },
2109 { "sr5", offsetof(CPUState, sr[5]) },
2110 { "sr6", offsetof(CPUState, sr[6]) },
2111 { "sr7", offsetof(CPUState, sr[7]) },
2112 { "sr8", offsetof(CPUState, sr[8]) },
2113 { "sr9", offsetof(CPUState, sr[9]) },
2114 { "sr10", offsetof(CPUState, sr[10]) },
2115 { "sr11", offsetof(CPUState, sr[11]) },
2116 { "sr12", offsetof(CPUState, sr[12]) },
2117 { "sr13", offsetof(CPUState, sr[13]) },
2118 { "sr14", offsetof(CPUState, sr[14]) },
2119 { "sr15", offsetof(CPUState, sr[15]) },
2120 /* Too lazy to put BATs and SPRs ... */
2121 #elif defined(TARGET_SPARC)
2122 { "g0", offsetof(CPUState, gregs[0]) },
2123 { "g1", offsetof(CPUState, gregs[1]) },
2124 { "g2", offsetof(CPUState, gregs[2]) },
2125 { "g3", offsetof(CPUState, gregs[3]) },
2126 { "g4", offsetof(CPUState, gregs[4]) },
2127 { "g5", offsetof(CPUState, gregs[5]) },
2128 { "g6", offsetof(CPUState, gregs[6]) },
2129 { "g7", offsetof(CPUState, gregs[7]) },
2130 { "o0", 0, monitor_get_reg },
2131 { "o1", 1, monitor_get_reg },
2132 { "o2", 2, monitor_get_reg },
2133 { "o3", 3, monitor_get_reg },
2134 { "o4", 4, monitor_get_reg },
2135 { "o5", 5, monitor_get_reg },
2136 { "o6", 6, monitor_get_reg },
2137 { "o7", 7, monitor_get_reg },
2138 { "l0", 8, monitor_get_reg },
2139 { "l1", 9, monitor_get_reg },
2140 { "l2", 10, monitor_get_reg },
2141 { "l3", 11, monitor_get_reg },
2142 { "l4", 12, monitor_get_reg },
2143 { "l5", 13, monitor_get_reg },
2144 { "l6", 14, monitor_get_reg },
2145 { "l7", 15, monitor_get_reg },
2146 { "i0", 16, monitor_get_reg },
2147 { "i1", 17, monitor_get_reg },
2148 { "i2", 18, monitor_get_reg },
2149 { "i3", 19, monitor_get_reg },
2150 { "i4", 20, monitor_get_reg },
2151 { "i5", 21, monitor_get_reg },
2152 { "i6", 22, monitor_get_reg },
2153 { "i7", 23, monitor_get_reg },
2154 { "pc", offsetof(CPUState, pc) },
2155 { "npc", offsetof(CPUState, npc) },
2156 { "y", offsetof(CPUState, y) },
2157 #ifndef TARGET_SPARC64
2158 { "psr", 0, &monitor_get_psr, },
2159 { "wim", offsetof(CPUState, wim) },
2161 { "tbr", offsetof(CPUState, tbr) },
2162 { "fsr", offsetof(CPUState, fsr) },
2163 { "f0", offsetof(CPUState, fpr[0]) },
2164 { "f1", offsetof(CPUState, fpr[1]) },
2165 { "f2", offsetof(CPUState, fpr[2]) },
2166 { "f3", offsetof(CPUState, fpr[3]) },
2167 { "f4", offsetof(CPUState, fpr[4]) },
2168 { "f5", offsetof(CPUState, fpr[5]) },
2169 { "f6", offsetof(CPUState, fpr[6]) },
2170 { "f7", offsetof(CPUState, fpr[7]) },
2171 { "f8", offsetof(CPUState, fpr[8]) },
2172 { "f9", offsetof(CPUState, fpr[9]) },
2173 { "f10", offsetof(CPUState, fpr[10]) },
2174 { "f11", offsetof(CPUState, fpr[11]) },
2175 { "f12", offsetof(CPUState, fpr[12]) },
2176 { "f13", offsetof(CPUState, fpr[13]) },
2177 { "f14", offsetof(CPUState, fpr[14]) },
2178 { "f15", offsetof(CPUState, fpr[15]) },
2179 { "f16", offsetof(CPUState, fpr[16]) },
2180 { "f17", offsetof(CPUState, fpr[17]) },
2181 { "f18", offsetof(CPUState, fpr[18]) },
2182 { "f19", offsetof(CPUState, fpr[19]) },
2183 { "f20", offsetof(CPUState, fpr[20]) },
2184 { "f21", offsetof(CPUState, fpr[21]) },
2185 { "f22", offsetof(CPUState, fpr[22]) },
2186 { "f23", offsetof(CPUState, fpr[23]) },
2187 { "f24", offsetof(CPUState, fpr[24]) },
2188 { "f25", offsetof(CPUState, fpr[25]) },
2189 { "f26", offsetof(CPUState, fpr[26]) },
2190 { "f27", offsetof(CPUState, fpr[27]) },
2191 { "f28", offsetof(CPUState, fpr[28]) },
2192 { "f29", offsetof(CPUState, fpr[29]) },
2193 { "f30", offsetof(CPUState, fpr[30]) },
2194 { "f31", offsetof(CPUState, fpr[31]) },
2195 #ifdef TARGET_SPARC64
2196 { "f32", offsetof(CPUState, fpr[32]) },
2197 { "f34", offsetof(CPUState, fpr[34]) },
2198 { "f36", offsetof(CPUState, fpr[36]) },
2199 { "f38", offsetof(CPUState, fpr[38]) },
2200 { "f40", offsetof(CPUState, fpr[40]) },
2201 { "f42", offsetof(CPUState, fpr[42]) },
2202 { "f44", offsetof(CPUState, fpr[44]) },
2203 { "f46", offsetof(CPUState, fpr[46]) },
2204 { "f48", offsetof(CPUState, fpr[48]) },
2205 { "f50", offsetof(CPUState, fpr[50]) },
2206 { "f52", offsetof(CPUState, fpr[52]) },
2207 { "f54", offsetof(CPUState, fpr[54]) },
2208 { "f56", offsetof(CPUState, fpr[56]) },
2209 { "f58", offsetof(CPUState, fpr[58]) },
2210 { "f60", offsetof(CPUState, fpr[60]) },
2211 { "f62", offsetof(CPUState, fpr[62]) },
2212 { "asi", offsetof(CPUState, asi) },
2213 { "pstate", offsetof(CPUState, pstate) },
2214 { "cansave", offsetof(CPUState, cansave) },
2215 { "canrestore", offsetof(CPUState, canrestore) },
2216 { "otherwin", offsetof(CPUState, otherwin) },
2217 { "wstate", offsetof(CPUState, wstate) },
2218 { "cleanwin", offsetof(CPUState, cleanwin) },
2219 { "fprs", offsetof(CPUState, fprs) },
2225 static void expr_error(Monitor *mon, const char *msg)
2227 monitor_printf(mon, "%s\n", msg);
2228 longjmp(expr_env, 1);
2231 /* return 0 if OK, -1 if not found, -2 if no CPU defined */
2232 static int get_monitor_def(target_long *pval, const char *name)
2234 const MonitorDef *md;
2237 for(md = monitor_defs; md->name != NULL; md++) {
2238 if (compare_cmd(name, md->name)) {
2239 if (md->get_value) {
2240 *pval = md->get_value(md, md->offset);
2242 CPUState *env = mon_get_cpu();
2245 ptr = (uint8_t *)env + md->offset;
2248 *pval = *(int32_t *)ptr;
2251 *pval = *(target_long *)ptr;
2264 static void next(void)
2268 while (qemu_isspace(*pch))
2273 static int64_t expr_sum(Monitor *mon);
2275 static int64_t expr_unary(Monitor *mon)
2284 n = expr_unary(mon);
2288 n = -expr_unary(mon);
2292 n = ~expr_unary(mon);
2298 expr_error(mon, "')' expected");
2305 expr_error(mon, "character constant expected");
2309 expr_error(mon, "missing terminating \' character");
2319 while ((*pch >= 'a' && *pch <= 'z') ||
2320 (*pch >= 'A' && *pch <= 'Z') ||
2321 (*pch >= '0' && *pch <= '9') ||
2322 *pch == '_' || *pch == '.') {
2323 if ((q - buf) < sizeof(buf) - 1)
2327 while (qemu_isspace(*pch))
2330 ret = get_monitor_def(®, buf);
2332 expr_error(mon, "unknown register");
2334 expr_error(mon, "no cpu defined");
2339 expr_error(mon, "unexpected end of expression");
2343 #if TARGET_PHYS_ADDR_BITS > 32
2344 n = strtoull(pch, &p, 0);
2346 n = strtoul(pch, &p, 0);
2349 expr_error(mon, "invalid char in expression");
2352 while (qemu_isspace(*pch))
2360 static int64_t expr_prod(Monitor *mon)
2365 val = expr_unary(mon);
2368 if (op != '*' && op != '/' && op != '%')
2371 val2 = expr_unary(mon);
2380 expr_error(mon, "division by zero");
2391 static int64_t expr_logic(Monitor *mon)
2396 val = expr_prod(mon);
2399 if (op != '&' && op != '|' && op != '^')
2402 val2 = expr_prod(mon);
2419 static int64_t expr_sum(Monitor *mon)
2424 val = expr_logic(mon);
2427 if (op != '+' && op != '-')
2430 val2 = expr_logic(mon);
2439 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
2442 if (setjmp(expr_env)) {
2446 while (qemu_isspace(*pch))
2448 *pval = expr_sum(mon);
2453 static int get_str(char *buf, int buf_size, const char **pp)
2461 while (qemu_isspace(*p))
2471 while (*p != '\0' && *p != '\"') {
2487 qemu_printf("unsupported escape code: '\\%c'\n", c);
2490 if ((q - buf) < buf_size - 1) {
2494 if ((q - buf) < buf_size - 1) {
2501 qemu_printf("unterminated string\n");
2506 while (*p != '\0' && !qemu_isspace(*p)) {
2507 if ((q - buf) < buf_size - 1) {
2519 * Store the command-name in cmdname, and return a pointer to
2520 * the remaining of the command string.
2522 static const char *get_command_name(const char *cmdline,
2523 char *cmdname, size_t nlen)
2526 const char *p, *pstart;
2529 while (qemu_isspace(*p))
2534 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
2539 memcpy(cmdname, pstart, len);
2540 cmdname[len] = '\0';
2545 * Read key of 'type' into 'key' and return the current
2548 static char *key_get_info(const char *type, char **key)
2556 p = strchr(type, ':');
2563 str = qemu_malloc(len + 1);
2564 memcpy(str, type, len);
2571 static int default_fmt_format = 'x';
2572 static int default_fmt_size = 4;
2576 static void monitor_handle_command(Monitor *mon, const char *cmdline)
2578 const char *p, *typestr;
2579 int c, nb_args, i, has_arg;
2580 const mon_cmd_t *cmd;
2585 void *str_allocated[MAX_ARGS];
2586 void *args[MAX_ARGS];
2587 void (*handler_d)(Monitor *mon, const QDict *qdict);
2588 void (*handler_4)(Monitor *mon, void *arg0, void *arg1, void *arg2,
2590 void (*handler_5)(Monitor *mon, void *arg0, void *arg1, void *arg2,
2591 void *arg3, void *arg4);
2592 void (*handler_6)(Monitor *mon, void *arg0, void *arg1, void *arg2,
2593 void *arg3, void *arg4, void *arg5);
2594 void (*handler_7)(Monitor *mon, void *arg0, void *arg1, void *arg2,
2595 void *arg3, void *arg4, void *arg5, void *arg6);
2596 void (*handler_8)(Monitor *mon, void *arg0, void *arg1, void *arg2,
2597 void *arg3, void *arg4, void *arg5, void *arg6,
2599 void (*handler_9)(Monitor *mon, void *arg0, void *arg1, void *arg2,
2600 void *arg3, void *arg4, void *arg5, void *arg6,
2601 void *arg7, void *arg8);
2602 void (*handler_10)(Monitor *mon, void *arg0, void *arg1, void *arg2,
2603 void *arg3, void *arg4, void *arg5, void *arg6,
2604 void *arg7, void *arg8, void *arg9);
2607 monitor_printf(mon, "command='%s'\n", cmdline);
2610 /* extract the command name */
2611 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
2615 /* find the command */
2616 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
2617 if (compare_cmd(cmdname, cmd->name))
2621 if (cmd->name == NULL) {
2622 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
2626 qdict = qdict_new();
2628 for(i = 0; i < MAX_ARGS; i++)
2629 str_allocated[i] = NULL;
2631 /* parse the parameters */
2632 typestr = cmd->args_type;
2635 typestr = key_get_info(typestr, &key);
2648 while (qemu_isspace(*p))
2650 if (*typestr == '?') {
2653 /* no optional string: NULL argument */
2658 ret = get_str(buf, sizeof(buf), &p);
2662 monitor_printf(mon, "%s: filename expected\n",
2666 monitor_printf(mon, "%s: block device name expected\n",
2670 monitor_printf(mon, "%s: string expected\n", cmdname);
2675 str = qemu_malloc(strlen(buf) + 1);
2676 pstrcpy(str, sizeof(buf), buf);
2677 str_allocated[nb_args] = str;
2679 if (nb_args >= MAX_ARGS) {
2681 monitor_printf(mon, "%s: too many arguments\n", cmdname);
2684 args[nb_args++] = str;
2686 qdict_put(qdict, key, qstring_from_str(str));
2691 int count, format, size;
2693 while (qemu_isspace(*p))
2699 if (qemu_isdigit(*p)) {
2701 while (qemu_isdigit(*p)) {
2702 count = count * 10 + (*p - '0');
2740 if (*p != '\0' && !qemu_isspace(*p)) {
2741 monitor_printf(mon, "invalid char in format: '%c'\n",
2746 format = default_fmt_format;
2747 if (format != 'i') {
2748 /* for 'i', not specifying a size gives -1 as size */
2750 size = default_fmt_size;
2751 default_fmt_size = size;
2753 default_fmt_format = format;
2756 format = default_fmt_format;
2757 if (format != 'i') {
2758 size = default_fmt_size;
2763 if (nb_args + 3 > MAX_ARGS)
2765 args[nb_args++] = (void*)(long)count;
2766 args[nb_args++] = (void*)(long)format;
2767 args[nb_args++] = (void*)(long)size;
2768 qdict_put(qdict, "count", qint_from_int(count));
2769 qdict_put(qdict, "format", qint_from_int(format));
2770 qdict_put(qdict, "size", qint_from_int(size));
2779 while (qemu_isspace(*p))
2781 if (*typestr == '?' || *typestr == '.') {
2782 if (*typestr == '?') {
2790 while (qemu_isspace(*p))
2798 if (nb_args >= MAX_ARGS)
2801 args[nb_args++] = (void *)(long)has_arg;
2803 if (nb_args >= MAX_ARGS)
2809 if (get_expr(mon, &val, &p))
2813 if (nb_args >= MAX_ARGS)
2815 args[nb_args++] = (void *)(long)val;
2817 qdict_put(qdict, key, qint_from_int(val));
2819 if ((nb_args + 1) >= MAX_ARGS)
2821 #if TARGET_PHYS_ADDR_BITS > 32
2822 args[nb_args++] = (void *)(long)((val >> 32) & 0xffffffff);
2824 args[nb_args++] = (void *)0;
2826 args[nb_args++] = (void *)(long)(val & 0xffffffff);
2827 qdict_put(qdict, key, qint_from_int(val));
2839 while (qemu_isspace(*p))
2845 monitor_printf(mon, "%s: unsupported option -%c\n",
2852 if (nb_args >= MAX_ARGS)
2854 args[nb_args++] = (void *)(long)has_option;
2855 qdict_put(qdict, key, qint_from_int(has_option));
2860 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
2866 /* check that all arguments were parsed */
2867 while (qemu_isspace(*p))
2870 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
2875 qemu_errors_to_mon(mon);
2881 handler_d = cmd->handler;
2882 handler_d(mon, qdict);
2885 handler_4 = cmd->handler;
2886 handler_4(mon, args[0], args[1], args[2], args[3]);
2889 handler_5 = cmd->handler;
2890 handler_5(mon, args[0], args[1], args[2], args[3], args[4]);
2893 handler_6 = cmd->handler;
2894 handler_6(mon, args[0], args[1], args[2], args[3], args[4], args[5]);
2897 handler_7 = cmd->handler;
2898 handler_7(mon, args[0], args[1], args[2], args[3], args[4], args[5],
2902 handler_8 = cmd->handler;
2903 handler_8(mon, args[0], args[1], args[2], args[3], args[4], args[5],
2907 handler_9 = cmd->handler;
2908 handler_9(mon, args[0], args[1], args[2], args[3], args[4], args[5],
2909 args[6], args[7], args[8]);
2912 handler_10 = cmd->handler;
2913 handler_10(mon, args[0], args[1], args[2], args[3], args[4], args[5],
2914 args[6], args[7], args[8], args[9]);
2917 monitor_printf(mon, "unsupported number of arguments: %d\n", nb_args);
2920 qemu_errors_to_previous();
2924 for(i = 0; i < MAX_ARGS; i++)
2925 qemu_free(str_allocated[i]);
2929 static void cmd_completion(const char *name, const char *list)
2931 const char *p, *pstart;
2940 p = pstart + strlen(pstart);
2942 if (len > sizeof(cmd) - 2)
2943 len = sizeof(cmd) - 2;
2944 memcpy(cmd, pstart, len);
2946 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
2947 readline_add_completion(cur_mon->rs, cmd);
2955 static void file_completion(const char *input)
2960 char file[1024], file_prefix[1024];
2964 p = strrchr(input, '/');
2967 pstrcpy(file_prefix, sizeof(file_prefix), input);
2968 pstrcpy(path, sizeof(path), ".");
2970 input_path_len = p - input + 1;
2971 memcpy(path, input, input_path_len);
2972 if (input_path_len > sizeof(path) - 1)
2973 input_path_len = sizeof(path) - 1;
2974 path[input_path_len] = '\0';
2975 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
2977 #ifdef DEBUG_COMPLETION
2978 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
2979 input, path, file_prefix);
2981 ffs = opendir(path);
2989 if (strstart(d->d_name, file_prefix, NULL)) {
2990 memcpy(file, input, input_path_len);
2991 if (input_path_len < sizeof(file))
2992 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
2994 /* stat the file to find out if it's a directory.
2995 * In that case add a slash to speed up typing long paths
2998 if(S_ISDIR(sb.st_mode))
2999 pstrcat(file, sizeof(file), "/");
3000 readline_add_completion(cur_mon->rs, file);
3006 static void block_completion_it(void *opaque, BlockDriverState *bs)
3008 const char *name = bdrv_get_device_name(bs);
3009 const char *input = opaque;
3011 if (input[0] == '\0' ||
3012 !strncmp(name, (char *)input, strlen(input))) {
3013 readline_add_completion(cur_mon->rs, name);
3017 /* NOTE: this parser is an approximate form of the real command parser */
3018 static void parse_cmdline(const char *cmdline,
3019 int *pnb_args, char **args)
3028 while (qemu_isspace(*p))
3032 if (nb_args >= MAX_ARGS)
3034 ret = get_str(buf, sizeof(buf), &p);
3035 args[nb_args] = qemu_strdup(buf);
3040 *pnb_args = nb_args;
3043 static const char *next_arg_type(const char *typestr)
3045 const char *p = strchr(typestr, ':');
3046 return (p != NULL ? ++p : typestr);
3049 static void monitor_find_completion(const char *cmdline)
3051 const char *cmdname;
3052 char *args[MAX_ARGS];
3053 int nb_args, i, len;
3054 const char *ptype, *str;
3055 const mon_cmd_t *cmd;
3058 parse_cmdline(cmdline, &nb_args, args);
3059 #ifdef DEBUG_COMPLETION
3060 for(i = 0; i < nb_args; i++) {
3061 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
3065 /* if the line ends with a space, it means we want to complete the
3067 len = strlen(cmdline);
3068 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
3069 if (nb_args >= MAX_ARGS)
3071 args[nb_args++] = qemu_strdup("");
3074 /* command completion */
3079 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
3080 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
3081 cmd_completion(cmdname, cmd->name);
3084 /* find the command */
3085 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
3086 if (compare_cmd(args[0], cmd->name))
3091 ptype = next_arg_type(cmd->args_type);
3092 for(i = 0; i < nb_args - 2; i++) {
3093 if (*ptype != '\0') {
3094 ptype = next_arg_type(ptype);
3095 while (*ptype == '?')
3096 ptype = next_arg_type(ptype);
3099 str = args[nb_args - 1];
3100 if (*ptype == '-' && ptype[1] != '\0') {
3105 /* file completion */
3106 readline_set_completion_index(cur_mon->rs, strlen(str));
3107 file_completion(str);
3110 /* block device name completion */
3111 readline_set_completion_index(cur_mon->rs, strlen(str));
3112 bdrv_iterate(block_completion_it, (void *)str);
3115 /* XXX: more generic ? */
3116 if (!strcmp(cmd->name, "info")) {
3117 readline_set_completion_index(cur_mon->rs, strlen(str));
3118 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
3119 cmd_completion(str, cmd->name);
3121 } else if (!strcmp(cmd->name, "sendkey")) {
3122 char *sep = strrchr(str, '-');
3125 readline_set_completion_index(cur_mon->rs, strlen(str));
3126 for(key = key_defs; key->name != NULL; key++) {
3127 cmd_completion(str, key->name);
3129 } else if (!strcmp(cmd->name, "help|?")) {
3130 readline_set_completion_index(cur_mon->rs, strlen(str));
3131 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
3132 cmd_completion(str, cmd->name);
3140 for(i = 0; i < nb_args; i++)
3144 static int monitor_can_read(void *opaque)
3146 Monitor *mon = opaque;
3148 return (mon->suspend_cnt == 0) ? 128 : 0;
3151 static void monitor_read(void *opaque, const uint8_t *buf, int size)
3153 Monitor *old_mon = cur_mon;
3159 for (i = 0; i < size; i++)
3160 readline_handle_byte(cur_mon->rs, buf[i]);
3162 if (size == 0 || buf[size - 1] != 0)
3163 monitor_printf(cur_mon, "corrupted command\n");
3165 monitor_handle_command(cur_mon, (char *)buf);
3171 static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
3173 monitor_suspend(mon);
3174 monitor_handle_command(mon, cmdline);
3175 monitor_resume(mon);
3178 int monitor_suspend(Monitor *mon)
3186 void monitor_resume(Monitor *mon)
3190 if (--mon->suspend_cnt == 0)
3191 readline_show_prompt(mon->rs);
3194 static void monitor_event(void *opaque, int event)
3196 Monitor *mon = opaque;
3199 case CHR_EVENT_MUX_IN:
3200 readline_restart(mon->rs);
3201 monitor_resume(mon);
3205 case CHR_EVENT_MUX_OUT:
3206 if (mon->suspend_cnt == 0)
3207 monitor_printf(mon, "\n");
3209 monitor_suspend(mon);
3212 case CHR_EVENT_RESET:
3213 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
3214 "information\n", QEMU_VERSION);
3215 if (mon->chr->focus == 0)
3216 readline_show_prompt(mon->rs);
3230 void monitor_init(CharDriverState *chr, int flags)
3232 static int is_first_init = 1;
3235 if (is_first_init) {
3236 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
3240 mon = qemu_mallocz(sizeof(*mon));
3244 if (mon->chr->focus != 0)
3245 mon->suspend_cnt = 1; /* mux'ed monitors start suspended */
3246 if (flags & MONITOR_USE_READLINE) {
3247 mon->rs = readline_init(mon, monitor_find_completion);
3248 monitor_read_command(mon, 0);
3251 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read, monitor_event,
3254 LIST_INSERT_HEAD(&mon_list, mon, entry);
3255 if (!cur_mon || (flags & MONITOR_IS_DEFAULT))
3259 static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
3261 BlockDriverState *bs = opaque;
3264 if (bdrv_set_key(bs, password) != 0) {
3265 monitor_printf(mon, "invalid password\n");
3268 if (mon->password_completion_cb)
3269 mon->password_completion_cb(mon->password_opaque, ret);
3271 monitor_read_command(mon, 1);
3274 void monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
3275 BlockDriverCompletionFunc *completion_cb,
3280 if (!bdrv_key_required(bs)) {
3282 completion_cb(opaque, 0);
3286 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
3287 bdrv_get_encrypted_filename(bs));
3289 mon->password_completion_cb = completion_cb;
3290 mon->password_opaque = opaque;
3292 err = monitor_read_password(mon, bdrv_password_cb, bs);
3294 if (err && completion_cb)
3295 completion_cb(opaque, err);
3298 typedef struct QemuErrorSink QemuErrorSink;
3299 struct QemuErrorSink {
3308 QemuErrorSink *previous;
3311 static QemuErrorSink *qemu_error_sink;
3313 void qemu_errors_to_file(FILE *fp)
3315 QemuErrorSink *sink;
3317 sink = qemu_mallocz(sizeof(*sink));
3318 sink->dest = ERR_SINK_FILE;
3320 sink->previous = qemu_error_sink;
3321 qemu_error_sink = sink;
3324 void qemu_errors_to_mon(Monitor *mon)
3326 QemuErrorSink *sink;
3328 sink = qemu_mallocz(sizeof(*sink));
3329 sink->dest = ERR_SINK_MONITOR;
3331 sink->previous = qemu_error_sink;
3332 qemu_error_sink = sink;
3335 void qemu_errors_to_previous(void)
3337 QemuErrorSink *sink;
3339 assert(qemu_error_sink != NULL);
3340 sink = qemu_error_sink;
3341 qemu_error_sink = sink->previous;
3345 void qemu_error(const char *fmt, ...)
3349 assert(qemu_error_sink != NULL);
3350 switch (qemu_error_sink->dest) {
3352 va_start(args, fmt);
3353 vfprintf(qemu_error_sink->fp, fmt, args);
3356 case ERR_SINK_MONITOR:
3357 va_start(args, fmt);
3358 monitor_vprintf(qemu_error_sink->mon, fmt, args);