]> git.proxmox.com Git - qemu.git/blob - monitor.c
monitor: Port handler_3 to use QDict
[qemu.git] / monitor.c
1 /*
2 * QEMU monitor
3 *
4 * Copyright (c) 2003-2004 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24 #include <dirent.h>
25 #include "hw/hw.h"
26 #include "hw/qdev.h"
27 #include "hw/usb.h"
28 #include "hw/pcmcia.h"
29 #include "hw/pc.h"
30 #include "hw/pci.h"
31 #include "hw/watchdog.h"
32 #include "gdbstub.h"
33 #include "net.h"
34 #include "qemu-char.h"
35 #include "sysemu.h"
36 #include "monitor.h"
37 #include "readline.h"
38 #include "console.h"
39 #include "block.h"
40 #include "audio/audio.h"
41 #include "disas.h"
42 #include "balloon.h"
43 #include "qemu-timer.h"
44 #include "migration.h"
45 #include "kvm.h"
46 #include "acl.h"
47 #include "qint.h"
48 #include "qdict.h"
49 #include "qstring.h"
50
51 //#define DEBUG
52 //#define DEBUG_COMPLETION
53
54 /*
55 * Supported types:
56 *
57 * 'F' filename
58 * 'B' block device name
59 * 's' string (accept optional quote)
60 * 'i' 32 bit integer
61 * 'l' target long (32 or 64 bit)
62 * '/' optional gdb-like print format (like "/10x")
63 *
64 * '?' optional type (for 'F', 's' and 'i')
65 *
66 */
67
68 typedef struct mon_cmd_t {
69 const char *name;
70 const char *args_type;
71 void *handler;
72 const char *params;
73 const char *help;
74 } mon_cmd_t;
75
76 /* file descriptors passed via SCM_RIGHTS */
77 typedef struct mon_fd_t mon_fd_t;
78 struct mon_fd_t {
79 char *name;
80 int fd;
81 LIST_ENTRY(mon_fd_t) next;
82 };
83
84 struct Monitor {
85 CharDriverState *chr;
86 int flags;
87 int suspend_cnt;
88 uint8_t outbuf[1024];
89 int outbuf_index;
90 ReadLineState *rs;
91 CPUState *mon_cpu;
92 BlockDriverCompletionFunc *password_completion_cb;
93 void *password_opaque;
94 LIST_HEAD(,mon_fd_t) fds;
95 LIST_ENTRY(Monitor) entry;
96 };
97
98 static LIST_HEAD(mon_list, Monitor) mon_list;
99
100 static const mon_cmd_t mon_cmds[];
101 static const mon_cmd_t info_cmds[];
102
103 Monitor *cur_mon = NULL;
104
105 static void monitor_command_cb(Monitor *mon, const char *cmdline,
106 void *opaque);
107
108 static void monitor_read_command(Monitor *mon, int show_prompt)
109 {
110 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
111 if (show_prompt)
112 readline_show_prompt(mon->rs);
113 }
114
115 static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
116 void *opaque)
117 {
118 if (mon->rs) {
119 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
120 /* prompt is printed on return from the command handler */
121 return 0;
122 } else {
123 monitor_printf(mon, "terminal does not support password prompting\n");
124 return -ENOTTY;
125 }
126 }
127
128 void monitor_flush(Monitor *mon)
129 {
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;
133 }
134 }
135
136 /* flush at every end of line or if the buffer is full */
137 static void monitor_puts(Monitor *mon, const char *str)
138 {
139 char c;
140
141 if (!mon)
142 return;
143
144 for(;;) {
145 c = *str++;
146 if (c == '\0')
147 break;
148 if (c == '\n')
149 mon->outbuf[mon->outbuf_index++] = '\r';
150 mon->outbuf[mon->outbuf_index++] = c;
151 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
152 || c == '\n')
153 monitor_flush(mon);
154 }
155 }
156
157 void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
158 {
159 char buf[4096];
160 vsnprintf(buf, sizeof(buf), fmt, ap);
161 monitor_puts(mon, buf);
162 }
163
164 void monitor_printf(Monitor *mon, const char *fmt, ...)
165 {
166 va_list ap;
167 va_start(ap, fmt);
168 monitor_vprintf(mon, fmt, ap);
169 va_end(ap);
170 }
171
172 void monitor_print_filename(Monitor *mon, const char *filename)
173 {
174 int i;
175
176 for (i = 0; filename[i]; i++) {
177 switch (filename[i]) {
178 case ' ':
179 case '"':
180 case '\\':
181 monitor_printf(mon, "\\%c", filename[i]);
182 break;
183 case '\t':
184 monitor_printf(mon, "\\t");
185 break;
186 case '\r':
187 monitor_printf(mon, "\\r");
188 break;
189 case '\n':
190 monitor_printf(mon, "\\n");
191 break;
192 default:
193 monitor_printf(mon, "%c", filename[i]);
194 break;
195 }
196 }
197 }
198
199 static int monitor_fprintf(FILE *stream, const char *fmt, ...)
200 {
201 va_list ap;
202 va_start(ap, fmt);
203 monitor_vprintf((Monitor *)stream, fmt, ap);
204 va_end(ap);
205 return 0;
206 }
207
208 static int compare_cmd(const char *name, const char *list)
209 {
210 const char *p, *pstart;
211 int len;
212 len = strlen(name);
213 p = list;
214 for(;;) {
215 pstart = p;
216 p = strchr(p, '|');
217 if (!p)
218 p = pstart + strlen(pstart);
219 if ((p - pstart) == len && !memcmp(pstart, name, len))
220 return 1;
221 if (*p == '\0')
222 break;
223 p++;
224 }
225 return 0;
226 }
227
228 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
229 const char *prefix, const char *name)
230 {
231 const mon_cmd_t *cmd;
232
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);
237 }
238 }
239
240 static void help_cmd(Monitor *mon, const char *name)
241 {
242 if (name && !strcmp(name, "info")) {
243 help_cmd_dump(mon, info_cmds, "info ", NULL);
244 } else {
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);
252 }
253 }
254 }
255 }
256
257 static void do_help_cmd(Monitor *mon, const QDict *qdict)
258 {
259 help_cmd(mon, qdict_get_try_str(qdict, "name"));
260 }
261
262 static void do_commit(Monitor *mon, const QDict *qdict)
263 {
264 int all_devices;
265 DriveInfo *dinfo;
266 const char *device = qdict_get_str(qdict, "device");
267
268 all_devices = !strcmp(device, "all");
269 TAILQ_FOREACH(dinfo, &drives, next) {
270 if (!all_devices)
271 if (strcmp(bdrv_get_device_name(dinfo->bdrv), device))
272 continue;
273 bdrv_commit(dinfo->bdrv);
274 }
275 }
276
277 static void do_info(Monitor *mon, const QDict *qdict)
278 {
279 const mon_cmd_t *cmd;
280 const char *item = qdict_get_try_str(qdict, "item");
281 void (*handler)(Monitor *);
282
283 if (!item)
284 goto help;
285 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
286 if (compare_cmd(item, cmd->name))
287 goto found;
288 }
289 help:
290 help_cmd(mon, "info");
291 return;
292 found:
293 handler = cmd->handler;
294 handler(mon);
295 }
296
297 static void do_info_version(Monitor *mon)
298 {
299 monitor_printf(mon, "%s\n", QEMU_VERSION QEMU_PKGVERSION);
300 }
301
302 static void do_info_name(Monitor *mon)
303 {
304 if (qemu_name)
305 monitor_printf(mon, "%s\n", qemu_name);
306 }
307
308 #if defined(TARGET_I386)
309 static void do_info_hpet(Monitor *mon)
310 {
311 monitor_printf(mon, "HPET is %s by QEMU\n",
312 (no_hpet) ? "disabled" : "enabled");
313 }
314 #endif
315
316 static void do_info_uuid(Monitor *mon)
317 {
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]);
323 }
324
325 /* get the current CPU defined by the user */
326 static int mon_set_cpu(int cpu_index)
327 {
328 CPUState *env;
329
330 for(env = first_cpu; env != NULL; env = env->next_cpu) {
331 if (env->cpu_index == cpu_index) {
332 cur_mon->mon_cpu = env;
333 return 0;
334 }
335 }
336 return -1;
337 }
338
339 static CPUState *mon_get_cpu(void)
340 {
341 if (!cur_mon->mon_cpu) {
342 mon_set_cpu(0);
343 }
344 cpu_synchronize_state(cur_mon->mon_cpu);
345 return cur_mon->mon_cpu;
346 }
347
348 static void do_info_registers(Monitor *mon)
349 {
350 CPUState *env;
351 env = mon_get_cpu();
352 if (!env)
353 return;
354 #ifdef TARGET_I386
355 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
356 X86_DUMP_FPU);
357 #else
358 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
359 0);
360 #endif
361 }
362
363 static void do_info_cpus(Monitor *mon)
364 {
365 CPUState *env;
366
367 /* just to set the default cpu if not already done */
368 mon_get_cpu();
369
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) ? '*' : ' ',
374 env->cpu_index);
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,
382 env->pc, env->npc);
383 #elif defined(TARGET_MIPS)
384 monitor_printf(mon, " PC=0x" TARGET_FMT_lx, env->active_tc.PC);
385 #endif
386 if (env->halted)
387 monitor_printf(mon, " (halted)");
388 monitor_printf(mon, "\n");
389 }
390 }
391
392 static void do_cpu_set(Monitor *mon, const QDict *qdict)
393 {
394 int index = qdict_get_int(qdict, "index");
395 if (mon_set_cpu(index) < 0)
396 monitor_printf(mon, "Invalid CPU index\n");
397 }
398
399 static void do_info_jit(Monitor *mon)
400 {
401 dump_exec_info((FILE *)mon, monitor_fprintf);
402 }
403
404 static void do_info_history(Monitor *mon)
405 {
406 int i;
407 const char *str;
408
409 if (!mon->rs)
410 return;
411 i = 0;
412 for(;;) {
413 str = readline_get_history(mon->rs, i);
414 if (!str)
415 break;
416 monitor_printf(mon, "%d: '%s'\n", i, str);
417 i++;
418 }
419 }
420
421 #if defined(TARGET_PPC)
422 /* XXX: not implemented in other targets */
423 static void do_info_cpu_stats(Monitor *mon)
424 {
425 CPUState *env;
426
427 env = mon_get_cpu();
428 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
429 }
430 #endif
431
432 static void do_quit(Monitor *mon, const QDict *qdict)
433 {
434 exit(0);
435 }
436
437 static int eject_device(Monitor *mon, BlockDriverState *bs, int force)
438 {
439 if (bdrv_is_inserted(bs)) {
440 if (!force) {
441 if (!bdrv_is_removable(bs)) {
442 monitor_printf(mon, "device is not removable\n");
443 return -1;
444 }
445 if (bdrv_is_locked(bs)) {
446 monitor_printf(mon, "device is locked\n");
447 return -1;
448 }
449 }
450 bdrv_close(bs);
451 }
452 return 0;
453 }
454
455 static void do_eject(Monitor *mon, const QDict *qdict)
456 {
457 BlockDriverState *bs;
458 int force = qdict_get_int(qdict, "force");
459 const char *filename = qdict_get_str(qdict, "filename");
460
461 bs = bdrv_find(filename);
462 if (!bs) {
463 monitor_printf(mon, "device not found\n");
464 return;
465 }
466 eject_device(mon, bs, force);
467 }
468
469 static void do_change_block(Monitor *mon, const char *device,
470 const char *filename, const char *fmt)
471 {
472 BlockDriverState *bs;
473 BlockDriver *drv = NULL;
474
475 bs = bdrv_find(device);
476 if (!bs) {
477 monitor_printf(mon, "device not found\n");
478 return;
479 }
480 if (fmt) {
481 drv = bdrv_find_format(fmt);
482 if (!drv) {
483 monitor_printf(mon, "invalid format %s\n", fmt);
484 return;
485 }
486 }
487 if (eject_device(mon, bs, 0) < 0)
488 return;
489 bdrv_open2(bs, filename, 0, drv);
490 monitor_read_bdrv_key_start(mon, bs, NULL, NULL);
491 }
492
493 static void change_vnc_password_cb(Monitor *mon, const char *password,
494 void *opaque)
495 {
496 if (vnc_display_password(NULL, password) < 0)
497 monitor_printf(mon, "could not set VNC server password\n");
498
499 monitor_read_command(mon, 1);
500 }
501
502 static void do_change_vnc(Monitor *mon, const char *target, const char *arg)
503 {
504 if (strcmp(target, "passwd") == 0 ||
505 strcmp(target, "password") == 0) {
506 if (arg) {
507 char password[9];
508 strncpy(password, arg, sizeof(password));
509 password[sizeof(password) - 1] = '\0';
510 change_vnc_password_cb(mon, password, NULL);
511 } else {
512 monitor_read_password(mon, change_vnc_password_cb, NULL);
513 }
514 } else {
515 if (vnc_display_open(NULL, target) < 0)
516 monitor_printf(mon, "could not start VNC server on %s\n", target);
517 }
518 }
519
520 static void do_change(Monitor *mon, const QDict *qdict)
521 {
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);
527 } else {
528 do_change_block(mon, device, target, arg);
529 }
530 }
531
532 static void do_screen_dump(Monitor *mon, const QDict *qdict)
533 {
534 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
535 }
536
537 static void do_logfile(Monitor *mon, const QDict *qdict)
538 {
539 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
540 }
541
542 static void do_log(Monitor *mon, const QDict *qdict)
543 {
544 int mask;
545 const char *items = qdict_get_str(qdict, "items");
546
547 if (!strcmp(items, "none")) {
548 mask = 0;
549 } else {
550 mask = cpu_str_to_log_mask(items);
551 if (!mask) {
552 help_cmd(mon, "log");
553 return;
554 }
555 }
556 cpu_set_log(mask);
557 }
558
559 static void do_singlestep(Monitor *mon, const QDict *qdict)
560 {
561 const char *option = qdict_get_try_str(qdict, "option");
562 if (!option || !strcmp(option, "on")) {
563 singlestep = 1;
564 } else if (!strcmp(option, "off")) {
565 singlestep = 0;
566 } else {
567 monitor_printf(mon, "unexpected option %s\n", option);
568 }
569 }
570
571 static void do_stop(Monitor *mon, const QDict *qdict)
572 {
573 vm_stop(EXCP_INTERRUPT);
574 }
575
576 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
577
578 struct bdrv_iterate_context {
579 Monitor *mon;
580 int err;
581 };
582
583 static void do_cont(Monitor *mon, const QDict *qdict)
584 {
585 struct bdrv_iterate_context context = { mon, 0 };
586
587 bdrv_iterate(encrypted_bdrv_it, &context);
588 /* only resume the vm if all keys are set and valid */
589 if (!context.err)
590 vm_start();
591 }
592
593 static void bdrv_key_cb(void *opaque, int err)
594 {
595 Monitor *mon = opaque;
596
597 /* another key was set successfully, retry to continue */
598 if (!err)
599 do_cont(mon, NULL);
600 }
601
602 static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
603 {
604 struct bdrv_iterate_context *context = opaque;
605
606 if (!context->err && bdrv_key_required(bs)) {
607 context->err = -EBUSY;
608 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
609 context->mon);
610 }
611 }
612
613 static void do_gdbserver(Monitor *mon, const QDict *qdict)
614 {
615 const char *device = qdict_get_try_str(qdict, "device");
616 if (!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",
620 device);
621 } else if (strcmp(device, "none") == 0) {
622 monitor_printf(mon, "Disabled gdbserver\n");
623 } else {
624 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
625 device);
626 }
627 }
628
629 static void do_watchdog_action(Monitor *mon, const QDict *qdict)
630 {
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);
634 }
635 }
636
637 static void monitor_printc(Monitor *mon, int c)
638 {
639 monitor_printf(mon, "'");
640 switch(c) {
641 case '\'':
642 monitor_printf(mon, "\\'");
643 break;
644 case '\\':
645 monitor_printf(mon, "\\\\");
646 break;
647 case '\n':
648 monitor_printf(mon, "\\n");
649 break;
650 case '\r':
651 monitor_printf(mon, "\\r");
652 break;
653 default:
654 if (c >= 32 && c <= 126) {
655 monitor_printf(mon, "%c", c);
656 } else {
657 monitor_printf(mon, "\\x%02x", c);
658 }
659 break;
660 }
661 monitor_printf(mon, "'");
662 }
663
664 static void memory_dump(Monitor *mon, int count, int format, int wsize,
665 target_phys_addr_t addr, int is_physical)
666 {
667 CPUState *env;
668 int nb_per_line, l, line_size, i, max_digits, len;
669 uint8_t buf[16];
670 uint64_t v;
671
672 if (format == 'i') {
673 int flags;
674 flags = 0;
675 env = mon_get_cpu();
676 if (!env && !is_physical)
677 return;
678 #ifdef TARGET_I386
679 if (wsize == 2) {
680 flags = 1;
681 } else if (wsize == 4) {
682 flags = 0;
683 } else {
684 /* as default we use the current CS size */
685 flags = 0;
686 if (env) {
687 #ifdef TARGET_X86_64
688 if ((env->efer & MSR_EFER_LMA) &&
689 (env->segs[R_CS].flags & DESC_L_MASK))
690 flags = 2;
691 else
692 #endif
693 if (!(env->segs[R_CS].flags & DESC_B_MASK))
694 flags = 1;
695 }
696 }
697 #endif
698 monitor_disas(mon, env, addr, count, is_physical, flags);
699 return;
700 }
701
702 len = wsize * count;
703 if (wsize == 1)
704 line_size = 8;
705 else
706 line_size = 16;
707 nb_per_line = line_size / wsize;
708 max_digits = 0;
709
710 switch(format) {
711 case 'o':
712 max_digits = (wsize * 8 + 2) / 3;
713 break;
714 default:
715 case 'x':
716 max_digits = (wsize * 8) / 4;
717 break;
718 case 'u':
719 case 'd':
720 max_digits = (wsize * 8 * 10 + 32) / 33;
721 break;
722 case 'c':
723 wsize = 1;
724 break;
725 }
726
727 while (len > 0) {
728 if (is_physical)
729 monitor_printf(mon, TARGET_FMT_plx ":", addr);
730 else
731 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
732 l = len;
733 if (l > line_size)
734 l = line_size;
735 if (is_physical) {
736 cpu_physical_memory_rw(addr, buf, l, 0);
737 } else {
738 env = mon_get_cpu();
739 if (!env)
740 break;
741 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
742 monitor_printf(mon, " Cannot access memory\n");
743 break;
744 }
745 }
746 i = 0;
747 while (i < l) {
748 switch(wsize) {
749 default:
750 case 1:
751 v = ldub_raw(buf + i);
752 break;
753 case 2:
754 v = lduw_raw(buf + i);
755 break;
756 case 4:
757 v = (uint32_t)ldl_raw(buf + i);
758 break;
759 case 8:
760 v = ldq_raw(buf + i);
761 break;
762 }
763 monitor_printf(mon, " ");
764 switch(format) {
765 case 'o':
766 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
767 break;
768 case 'x':
769 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
770 break;
771 case 'u':
772 monitor_printf(mon, "%*" PRIu64, max_digits, v);
773 break;
774 case 'd':
775 monitor_printf(mon, "%*" PRId64, max_digits, v);
776 break;
777 case 'c':
778 monitor_printc(mon, v);
779 break;
780 }
781 i += wsize;
782 }
783 monitor_printf(mon, "\n");
784 addr += l;
785 len -= l;
786 }
787 }
788
789 #if TARGET_LONG_BITS == 64
790 #define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l))
791 #else
792 #define GET_TLONG(h, l) (l)
793 #endif
794
795 static void do_memory_dump(Monitor *mon, int count, int format, int size,
796 uint32_t addrh, uint32_t addrl)
797 {
798 target_long addr = GET_TLONG(addrh, addrl);
799 memory_dump(mon, count, format, size, addr, 0);
800 }
801
802 #if TARGET_PHYS_ADDR_BITS > 32
803 #define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l))
804 #else
805 #define GET_TPHYSADDR(h, l) (l)
806 #endif
807
808 static void do_physical_memory_dump(Monitor *mon, int count, int format,
809 int size, uint32_t addrh, uint32_t addrl)
810
811 {
812 target_phys_addr_t addr = GET_TPHYSADDR(addrh, addrl);
813 memory_dump(mon, count, format, size, addr, 1);
814 }
815
816 static void do_print(Monitor *mon, int count, int format, int size,
817 unsigned int valh, unsigned int vall)
818 {
819 target_phys_addr_t val = GET_TPHYSADDR(valh, vall);
820 #if TARGET_PHYS_ADDR_BITS == 32
821 switch(format) {
822 case 'o':
823 monitor_printf(mon, "%#o", val);
824 break;
825 case 'x':
826 monitor_printf(mon, "%#x", val);
827 break;
828 case 'u':
829 monitor_printf(mon, "%u", val);
830 break;
831 default:
832 case 'd':
833 monitor_printf(mon, "%d", val);
834 break;
835 case 'c':
836 monitor_printc(mon, val);
837 break;
838 }
839 #else
840 switch(format) {
841 case 'o':
842 monitor_printf(mon, "%#" PRIo64, val);
843 break;
844 case 'x':
845 monitor_printf(mon, "%#" PRIx64, val);
846 break;
847 case 'u':
848 monitor_printf(mon, "%" PRIu64, val);
849 break;
850 default:
851 case 'd':
852 monitor_printf(mon, "%" PRId64, val);
853 break;
854 case 'c':
855 monitor_printc(mon, val);
856 break;
857 }
858 #endif
859 monitor_printf(mon, "\n");
860 }
861
862 static void do_memory_save(Monitor *mon, unsigned int valh, unsigned int vall,
863 uint32_t size, const char *filename)
864 {
865 FILE *f;
866 target_long addr = GET_TLONG(valh, vall);
867 uint32_t l;
868 CPUState *env;
869 uint8_t buf[1024];
870
871 env = mon_get_cpu();
872 if (!env)
873 return;
874
875 f = fopen(filename, "wb");
876 if (!f) {
877 monitor_printf(mon, "could not open '%s'\n", filename);
878 return;
879 }
880 while (size != 0) {
881 l = sizeof(buf);
882 if (l > size)
883 l = size;
884 cpu_memory_rw_debug(env, addr, buf, l, 0);
885 fwrite(buf, 1, l, f);
886 addr += l;
887 size -= l;
888 }
889 fclose(f);
890 }
891
892 static void do_physical_memory_save(Monitor *mon, unsigned int valh,
893 unsigned int vall, uint32_t size,
894 const char *filename)
895 {
896 FILE *f;
897 uint32_t l;
898 uint8_t buf[1024];
899 target_phys_addr_t addr = GET_TPHYSADDR(valh, vall);
900
901 f = fopen(filename, "wb");
902 if (!f) {
903 monitor_printf(mon, "could not open '%s'\n", filename);
904 return;
905 }
906 while (size != 0) {
907 l = sizeof(buf);
908 if (l > size)
909 l = size;
910 cpu_physical_memory_rw(addr, buf, l, 0);
911 fwrite(buf, 1, l, f);
912 fflush(f);
913 addr += l;
914 size -= l;
915 }
916 fclose(f);
917 }
918
919 static void do_sum(Monitor *mon, const QDict *qdict)
920 {
921 uint32_t addr;
922 uint8_t buf[1];
923 uint16_t sum;
924 uint32_t start = qdict_get_int(qdict, "start");
925 uint32_t size = qdict_get_int(qdict, "size");
926
927 sum = 0;
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);
932 sum += buf[0];
933 }
934 monitor_printf(mon, "%05d\n", sum);
935 }
936
937 typedef struct {
938 int keycode;
939 const char *name;
940 } KeyDef;
941
942 static const KeyDef key_defs[] = {
943 { 0x2a, "shift" },
944 { 0x36, "shift_r" },
945
946 { 0x38, "alt" },
947 { 0xb8, "alt_r" },
948 { 0x64, "altgr" },
949 { 0xe4, "altgr_r" },
950 { 0x1d, "ctrl" },
951 { 0x9d, "ctrl_r" },
952
953 { 0xdd, "menu" },
954
955 { 0x01, "esc" },
956
957 { 0x02, "1" },
958 { 0x03, "2" },
959 { 0x04, "3" },
960 { 0x05, "4" },
961 { 0x06, "5" },
962 { 0x07, "6" },
963 { 0x08, "7" },
964 { 0x09, "8" },
965 { 0x0a, "9" },
966 { 0x0b, "0" },
967 { 0x0c, "minus" },
968 { 0x0d, "equal" },
969 { 0x0e, "backspace" },
970
971 { 0x0f, "tab" },
972 { 0x10, "q" },
973 { 0x11, "w" },
974 { 0x12, "e" },
975 { 0x13, "r" },
976 { 0x14, "t" },
977 { 0x15, "y" },
978 { 0x16, "u" },
979 { 0x17, "i" },
980 { 0x18, "o" },
981 { 0x19, "p" },
982
983 { 0x1c, "ret" },
984
985 { 0x1e, "a" },
986 { 0x1f, "s" },
987 { 0x20, "d" },
988 { 0x21, "f" },
989 { 0x22, "g" },
990 { 0x23, "h" },
991 { 0x24, "j" },
992 { 0x25, "k" },
993 { 0x26, "l" },
994
995 { 0x2c, "z" },
996 { 0x2d, "x" },
997 { 0x2e, "c" },
998 { 0x2f, "v" },
999 { 0x30, "b" },
1000 { 0x31, "n" },
1001 { 0x32, "m" },
1002 { 0x33, "comma" },
1003 { 0x34, "dot" },
1004 { 0x35, "slash" },
1005
1006 { 0x37, "asterisk" },
1007
1008 { 0x39, "spc" },
1009 { 0x3a, "caps_lock" },
1010 { 0x3b, "f1" },
1011 { 0x3c, "f2" },
1012 { 0x3d, "f3" },
1013 { 0x3e, "f4" },
1014 { 0x3f, "f5" },
1015 { 0x40, "f6" },
1016 { 0x41, "f7" },
1017 { 0x42, "f8" },
1018 { 0x43, "f9" },
1019 { 0x44, "f10" },
1020 { 0x45, "num_lock" },
1021 { 0x46, "scroll_lock" },
1022
1023 { 0xb5, "kp_divide" },
1024 { 0x37, "kp_multiply" },
1025 { 0x4a, "kp_subtract" },
1026 { 0x4e, "kp_add" },
1027 { 0x9c, "kp_enter" },
1028 { 0x53, "kp_decimal" },
1029 { 0x54, "sysrq" },
1030
1031 { 0x52, "kp_0" },
1032 { 0x4f, "kp_1" },
1033 { 0x50, "kp_2" },
1034 { 0x51, "kp_3" },
1035 { 0x4b, "kp_4" },
1036 { 0x4c, "kp_5" },
1037 { 0x4d, "kp_6" },
1038 { 0x47, "kp_7" },
1039 { 0x48, "kp_8" },
1040 { 0x49, "kp_9" },
1041
1042 { 0x56, "<" },
1043
1044 { 0x57, "f11" },
1045 { 0x58, "f12" },
1046
1047 { 0xb7, "print" },
1048
1049 { 0xc7, "home" },
1050 { 0xc9, "pgup" },
1051 { 0xd1, "pgdn" },
1052 { 0xcf, "end" },
1053
1054 { 0xcb, "left" },
1055 { 0xc8, "up" },
1056 { 0xd0, "down" },
1057 { 0xcd, "right" },
1058
1059 { 0xd2, "insert" },
1060 { 0xd3, "delete" },
1061 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1062 { 0xf0, "stop" },
1063 { 0xf1, "again" },
1064 { 0xf2, "props" },
1065 { 0xf3, "undo" },
1066 { 0xf4, "front" },
1067 { 0xf5, "copy" },
1068 { 0xf6, "open" },
1069 { 0xf7, "paste" },
1070 { 0xf8, "find" },
1071 { 0xf9, "cut" },
1072 { 0xfa, "lf" },
1073 { 0xfb, "help" },
1074 { 0xfc, "meta_l" },
1075 { 0xfd, "meta_r" },
1076 { 0xfe, "compose" },
1077 #endif
1078 { 0, NULL },
1079 };
1080
1081 static int get_keycode(const char *key)
1082 {
1083 const KeyDef *p;
1084 char *endp;
1085 int ret;
1086
1087 for(p = key_defs; p->name != NULL; p++) {
1088 if (!strcmp(key, p->name))
1089 return p->keycode;
1090 }
1091 if (strstart(key, "0x", NULL)) {
1092 ret = strtoul(key, &endp, 0);
1093 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1094 return ret;
1095 }
1096 return -1;
1097 }
1098
1099 #define MAX_KEYCODES 16
1100 static uint8_t keycodes[MAX_KEYCODES];
1101 static int nb_pending_keycodes;
1102 static QEMUTimer *key_timer;
1103
1104 static void release_keys(void *opaque)
1105 {
1106 int keycode;
1107
1108 while (nb_pending_keycodes > 0) {
1109 nb_pending_keycodes--;
1110 keycode = keycodes[nb_pending_keycodes];
1111 if (keycode & 0x80)
1112 kbd_put_keycode(0xe0);
1113 kbd_put_keycode(keycode | 0x80);
1114 }
1115 }
1116
1117 static void do_sendkey(Monitor *mon, const QDict *qdict)
1118 {
1119 char keyname_buf[16];
1120 char *separator;
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);
1125
1126 if (nb_pending_keycodes > 0) {
1127 qemu_del_timer(key_timer);
1128 release_keys(NULL);
1129 }
1130 if (!has_hold_time)
1131 hold_time = 100;
1132 i = 0;
1133 while (1) {
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);
1140 return;
1141 }
1142 if (i == MAX_KEYCODES) {
1143 monitor_printf(mon, "too many keys\n");
1144 return;
1145 }
1146 keyname_buf[keyname_len] = 0;
1147 keycode = get_keycode(keyname_buf);
1148 if (keycode < 0) {
1149 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
1150 return;
1151 }
1152 keycodes[i++] = keycode;
1153 }
1154 if (!separator)
1155 break;
1156 string = separator + 1;
1157 }
1158 nb_pending_keycodes = i;
1159 /* key down events */
1160 for (i = 0; i < nb_pending_keycodes; i++) {
1161 keycode = keycodes[i];
1162 if (keycode & 0x80)
1163 kbd_put_keycode(0xe0);
1164 kbd_put_keycode(keycode & 0x7f);
1165 }
1166 /* delayed key up events */
1167 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
1168 muldiv64(ticks_per_sec, hold_time, 1000));
1169 }
1170
1171 static int mouse_button_state;
1172
1173 static void do_mouse_move(Monitor *mon, const QDict *qdict)
1174 {
1175 int dx, dy, dz;
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);
1181 dz = 0;
1182 if (dz_str)
1183 dz = strtol(dz_str, NULL, 0);
1184 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1185 }
1186
1187 static void do_mouse_button(Monitor *mon, const QDict *qdict)
1188 {
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);
1192 }
1193
1194 static void do_ioport_read(Monitor *mon, int count, int format, int size,
1195 int addr, int has_index, int index)
1196 {
1197 uint32_t val;
1198 int suffix;
1199
1200 if (has_index) {
1201 cpu_outb(NULL, addr & IOPORTS_MASK, index & 0xff);
1202 addr++;
1203 }
1204 addr &= 0xffff;
1205
1206 switch(size) {
1207 default:
1208 case 1:
1209 val = cpu_inb(NULL, addr);
1210 suffix = 'b';
1211 break;
1212 case 2:
1213 val = cpu_inw(NULL, addr);
1214 suffix = 'w';
1215 break;
1216 case 4:
1217 val = cpu_inl(NULL, addr);
1218 suffix = 'l';
1219 break;
1220 }
1221 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1222 suffix, addr, size * 2, val);
1223 }
1224
1225 static void do_ioport_write(Monitor *mon, int count, int format, int size,
1226 int addr, int val)
1227 {
1228 addr &= IOPORTS_MASK;
1229
1230 switch (size) {
1231 default:
1232 case 1:
1233 cpu_outb(NULL, addr, val);
1234 break;
1235 case 2:
1236 cpu_outw(NULL, addr, val);
1237 break;
1238 case 4:
1239 cpu_outl(NULL, addr, val);
1240 break;
1241 }
1242 }
1243
1244 static void do_boot_set(Monitor *mon, const QDict *qdict)
1245 {
1246 int res;
1247 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1248
1249 res = qemu_boot_set(bootdevice);
1250 if (res == 0) {
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");
1254 } else {
1255 monitor_printf(mon, "no function defined to set boot device list for "
1256 "this architecture\n");
1257 }
1258 }
1259
1260 static void do_system_reset(Monitor *mon, const QDict *qdict)
1261 {
1262 qemu_system_reset_request();
1263 }
1264
1265 static void do_system_powerdown(Monitor *mon, const QDict *qdict)
1266 {
1267 qemu_system_powerdown_request();
1268 }
1269
1270 #if defined(TARGET_I386)
1271 static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
1272 {
1273 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1274 addr,
1275 pte & mask,
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' : '-');
1284 }
1285
1286 static void tlb_info(Monitor *mon)
1287 {
1288 CPUState *env;
1289 int l1, l2;
1290 uint32_t pgd, pde, pte;
1291
1292 env = mon_get_cpu();
1293 if (!env)
1294 return;
1295
1296 if (!(env->cr[0] & CR0_PG_MASK)) {
1297 monitor_printf(mon, "PG disabled\n");
1298 return;
1299 }
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));
1307 } else {
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),
1314 pte & ~PG_PSE_MASK,
1315 ~0xfff);
1316 }
1317 }
1318 }
1319 }
1320 }
1321 }
1322
1323 static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
1324 uint32_t end, int prot)
1325 {
1326 int prot1;
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' : '-',
1333 'r',
1334 prot1 & PG_RW_MASK ? 'w' : '-');
1335 }
1336 if (prot != 0)
1337 *pstart = end;
1338 else
1339 *pstart = -1;
1340 *plast_prot = prot;
1341 }
1342 }
1343
1344 static void mem_info(Monitor *mon)
1345 {
1346 CPUState *env;
1347 int l1, l2, prot, last_prot;
1348 uint32_t pgd, pde, pte, start, end;
1349
1350 env = mon_get_cpu();
1351 if (!env)
1352 return;
1353
1354 if (!(env->cr[0] & CR0_PG_MASK)) {
1355 monitor_printf(mon, "PG disabled\n");
1356 return;
1357 }
1358 pgd = env->cr[3] & ~0xfff;
1359 last_prot = 0;
1360 start = -1;
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);
1364 end = l1 << 22;
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);
1369 } else {
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);
1377 } else {
1378 prot = 0;
1379 }
1380 mem_print(mon, &start, &last_prot, end, prot);
1381 }
1382 }
1383 } else {
1384 prot = 0;
1385 mem_print(mon, &start, &last_prot, end, prot);
1386 }
1387 }
1388 }
1389 #endif
1390
1391 #if defined(TARGET_SH4)
1392
1393 static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
1394 {
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",
1399 idx,
1400 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1401 tlb->v, tlb->sh, tlb->c, tlb->pr,
1402 tlb->d, tlb->wt);
1403 }
1404
1405 static void tlb_info(Monitor *mon)
1406 {
1407 CPUState *env = mon_get_cpu();
1408 int i;
1409
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]);
1416 }
1417
1418 #endif
1419
1420 static void do_info_kvm(Monitor *mon)
1421 {
1422 #ifdef CONFIG_KVM
1423 monitor_printf(mon, "kvm support: ");
1424 if (kvm_enabled())
1425 monitor_printf(mon, "enabled\n");
1426 else
1427 monitor_printf(mon, "disabled\n");
1428 #else
1429 monitor_printf(mon, "kvm support: not compiled\n");
1430 #endif
1431 }
1432
1433 static void do_info_numa(Monitor *mon)
1434 {
1435 int i;
1436 CPUState *env;
1437
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);
1444 }
1445 }
1446 monitor_printf(mon, "\n");
1447 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1448 node_mem[i] >> 20);
1449 }
1450 }
1451
1452 #ifdef CONFIG_PROFILER
1453
1454 static void do_info_profile(Monitor *mon)
1455 {
1456 int64_t total;
1457 total = qemu_time;
1458 if (total == 0)
1459 total = 1;
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);
1464 qemu_time = 0;
1465 dev_time = 0;
1466 }
1467 #else
1468 static void do_info_profile(Monitor *mon)
1469 {
1470 monitor_printf(mon, "Internal profiler not compiled\n");
1471 }
1472 #endif
1473
1474 /* Capture support */
1475 static LIST_HEAD (capture_list_head, CaptureState) capture_head;
1476
1477 static void do_info_capture(Monitor *mon)
1478 {
1479 int i;
1480 CaptureState *s;
1481
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);
1485 }
1486 }
1487
1488 #ifdef HAS_AUDIO
1489 static void do_stop_capture(Monitor *mon, const QDict *qdict)
1490 {
1491 int i;
1492 int n = qdict_get_int(qdict, "n");
1493 CaptureState *s;
1494
1495 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1496 if (i == n) {
1497 s->ops.destroy (s->opaque);
1498 LIST_REMOVE (s, entries);
1499 qemu_free (s);
1500 return;
1501 }
1502 }
1503 }
1504
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)
1509 {
1510 CaptureState *s;
1511
1512 s = qemu_mallocz (sizeof (*s));
1513
1514 freq = has_freq ? freq : 44100;
1515 bits = has_bits ? bits : 16;
1516 nchannels = has_channels ? nchannels : 2;
1517
1518 if (wav_start_capture (s, path, freq, bits, nchannels)) {
1519 monitor_printf(mon, "Faied to add wave capture\n");
1520 qemu_free (s);
1521 }
1522 LIST_INSERT_HEAD (&capture_head, s, entries);
1523 }
1524 #endif
1525
1526 #if defined(TARGET_I386)
1527 static void do_inject_nmi(Monitor *mon, const QDict *qdict)
1528 {
1529 CPUState *env;
1530 int cpu_index = qdict_get_int(qdict, "cpu_index");
1531
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);
1535 break;
1536 }
1537 }
1538 #endif
1539
1540 static void do_info_status(Monitor *mon)
1541 {
1542 if (vm_running) {
1543 if (singlestep) {
1544 monitor_printf(mon, "VM status: running (single step mode)\n");
1545 } else {
1546 monitor_printf(mon, "VM status: running\n");
1547 }
1548 } else
1549 monitor_printf(mon, "VM status: paused\n");
1550 }
1551
1552
1553 static void do_balloon(Monitor *mon, const QDict *qdict)
1554 {
1555 int value = qdict_get_int(qdict, "value");
1556 ram_addr_t target = value;
1557 qemu_balloon(target << 20);
1558 }
1559
1560 static void do_info_balloon(Monitor *mon)
1561 {
1562 ram_addr_t actual;
1563
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");
1570 else
1571 monitor_printf(mon, "balloon: actual=%d\n", (int)(actual >> 20));
1572 }
1573
1574 static qemu_acl *find_acl(Monitor *mon, const char *name)
1575 {
1576 qemu_acl *acl = qemu_acl_find(name);
1577
1578 if (!acl) {
1579 monitor_printf(mon, "acl: unknown list '%s'\n", name);
1580 }
1581 return acl;
1582 }
1583
1584 static void do_acl_show(Monitor *mon, const QDict *qdict)
1585 {
1586 const char *aclname = qdict_get_str(qdict, "aclname");
1587 qemu_acl *acl = find_acl(mon, aclname);
1588 qemu_acl_entry *entry;
1589 int i = 0;
1590
1591 if (acl) {
1592 monitor_printf(mon, "policy: %s\n",
1593 acl->defaultDeny ? "deny" : "allow");
1594 TAILQ_FOREACH(entry, &acl->entries, next) {
1595 i++;
1596 monitor_printf(mon, "%d: %s %s\n", i,
1597 entry->deny ? "deny" : "allow", entry->match);
1598 }
1599 }
1600 }
1601
1602 static void do_acl_reset(Monitor *mon, const QDict *qdict)
1603 {
1604 const char *aclname = qdict_get_str(qdict, "aclname");
1605 qemu_acl *acl = find_acl(mon, aclname);
1606
1607 if (acl) {
1608 qemu_acl_reset(acl);
1609 monitor_printf(mon, "acl: removed all rules\n");
1610 }
1611 }
1612
1613 static void do_acl_policy(Monitor *mon, const QDict *qdict)
1614 {
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);
1618
1619 if (acl) {
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");
1626 } else {
1627 monitor_printf(mon, "acl: unknown policy '%s', "
1628 "expected 'deny' or 'allow'\n", policy);
1629 }
1630 }
1631 }
1632
1633 static void do_acl_add(Monitor *mon, const char *aclname,
1634 const char *match, const char *policy,
1635 int has_index, int index)
1636 {
1637 qemu_acl *acl = find_acl(mon, aclname);
1638 int deny, ret;
1639
1640 if (acl) {
1641 if (strcmp(policy, "allow") == 0) {
1642 deny = 0;
1643 } else if (strcmp(policy, "deny") == 0) {
1644 deny = 1;
1645 } else {
1646 monitor_printf(mon, "acl: unknown policy '%s', "
1647 "expected 'deny' or 'allow'\n", policy);
1648 return;
1649 }
1650 if (has_index)
1651 ret = qemu_acl_insert(acl, deny, match, index);
1652 else
1653 ret = qemu_acl_append(acl, deny, match);
1654 if (ret < 0)
1655 monitor_printf(mon, "acl: unable to add acl entry\n");
1656 else
1657 monitor_printf(mon, "acl: added rule at position %d\n", ret);
1658 }
1659 }
1660
1661 static void do_acl_remove(Monitor *mon, const QDict *qdict)
1662 {
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);
1666 int ret;
1667
1668 if (acl) {
1669 ret = qemu_acl_remove(acl, match);
1670 if (ret < 0)
1671 monitor_printf(mon, "acl: no matching acl entry\n");
1672 else
1673 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
1674 }
1675 }
1676
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)
1684 {
1685 CPUState *cenv;
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;
1690
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);
1694 break;
1695 }
1696 }
1697 #endif
1698
1699 static void do_getfd(Monitor *mon, const QDict *qdict)
1700 {
1701 const char *fdname = qdict_get_str(qdict, "fdname");
1702 mon_fd_t *monfd;
1703 int fd;
1704
1705 fd = qemu_chr_get_msgfd(mon->chr);
1706 if (fd == -1) {
1707 monitor_printf(mon, "getfd: no file descriptor supplied via SCM_RIGHTS\n");
1708 return;
1709 }
1710
1711 if (qemu_isdigit(fdname[0])) {
1712 monitor_printf(mon, "getfd: monitor names may not begin with a number\n");
1713 return;
1714 }
1715
1716 fd = dup(fd);
1717 if (fd == -1) {
1718 monitor_printf(mon, "Failed to dup() file descriptor: %s\n",
1719 strerror(errno));
1720 return;
1721 }
1722
1723 LIST_FOREACH(monfd, &mon->fds, next) {
1724 if (strcmp(monfd->name, fdname) != 0) {
1725 continue;
1726 }
1727
1728 close(monfd->fd);
1729 monfd->fd = fd;
1730 return;
1731 }
1732
1733 monfd = qemu_mallocz(sizeof(mon_fd_t));
1734 monfd->name = qemu_strdup(fdname);
1735 monfd->fd = fd;
1736
1737 LIST_INSERT_HEAD(&mon->fds, monfd, next);
1738 }
1739
1740 static void do_closefd(Monitor *mon, const QDict *qdict)
1741 {
1742 const char *fdname = qdict_get_str(qdict, "fdname");
1743 mon_fd_t *monfd;
1744
1745 LIST_FOREACH(monfd, &mon->fds, next) {
1746 if (strcmp(monfd->name, fdname) != 0) {
1747 continue;
1748 }
1749
1750 LIST_REMOVE(monfd, next);
1751 close(monfd->fd);
1752 qemu_free(monfd->name);
1753 qemu_free(monfd);
1754 return;
1755 }
1756
1757 monitor_printf(mon, "Failed to find file descriptor named %s\n",
1758 fdname);
1759 }
1760
1761 static void do_loadvm(Monitor *mon, const QDict *qdict)
1762 {
1763 int saved_vm_running = vm_running;
1764 const char *name = qdict_get_str(qdict, "name");
1765
1766 vm_stop(0);
1767
1768 if (load_vmstate(mon, name) >= 0 && saved_vm_running)
1769 vm_start();
1770 }
1771
1772 int monitor_get_fd(Monitor *mon, const char *fdname)
1773 {
1774 mon_fd_t *monfd;
1775
1776 LIST_FOREACH(monfd, &mon->fds, next) {
1777 int fd;
1778
1779 if (strcmp(monfd->name, fdname) != 0) {
1780 continue;
1781 }
1782
1783 fd = monfd->fd;
1784
1785 /* caller takes ownership of fd */
1786 LIST_REMOVE(monfd, next);
1787 qemu_free(monfd->name);
1788 qemu_free(monfd);
1789
1790 return fd;
1791 }
1792
1793 return -1;
1794 }
1795
1796 static const mon_cmd_t mon_cmds[] = {
1797 #include "qemu-monitor.h"
1798 { NULL, NULL, },
1799 };
1800
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", },
1828 #endif
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", },
1834 #endif
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", },
1866 #endif
1867 #if defined(CONFIG_SLIRP)
1868 { "usernet", "", do_info_usernet,
1869 "", "show user network stack connection states", },
1870 #endif
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" },
1878 { NULL, NULL, },
1879 };
1880
1881 /*******************************************************************/
1882
1883 static const char *pch;
1884 static jmp_buf expr_env;
1885
1886 #define MD_TLONG 0
1887 #define MD_I32 1
1888
1889 typedef struct MonitorDef {
1890 const char *name;
1891 int offset;
1892 target_long (*get_value)(const struct MonitorDef *md, int val);
1893 int type;
1894 } MonitorDef;
1895
1896 #if defined(TARGET_I386)
1897 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
1898 {
1899 CPUState *env = mon_get_cpu();
1900 if (!env)
1901 return 0;
1902 return env->eip + env->segs[R_CS].base;
1903 }
1904 #endif
1905
1906 #if defined(TARGET_PPC)
1907 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
1908 {
1909 CPUState *env = mon_get_cpu();
1910 unsigned int u;
1911 int i;
1912
1913 if (!env)
1914 return 0;
1915
1916 u = 0;
1917 for (i = 0; i < 8; i++)
1918 u |= env->crf[i] << (32 - (4 * i));
1919
1920 return u;
1921 }
1922
1923 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
1924 {
1925 CPUState *env = mon_get_cpu();
1926 if (!env)
1927 return 0;
1928 return env->msr;
1929 }
1930
1931 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
1932 {
1933 CPUState *env = mon_get_cpu();
1934 if (!env)
1935 return 0;
1936 return env->xer;
1937 }
1938
1939 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
1940 {
1941 CPUState *env = mon_get_cpu();
1942 if (!env)
1943 return 0;
1944 return cpu_ppc_load_decr(env);
1945 }
1946
1947 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
1948 {
1949 CPUState *env = mon_get_cpu();
1950 if (!env)
1951 return 0;
1952 return cpu_ppc_load_tbu(env);
1953 }
1954
1955 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
1956 {
1957 CPUState *env = mon_get_cpu();
1958 if (!env)
1959 return 0;
1960 return cpu_ppc_load_tbl(env);
1961 }
1962 #endif
1963
1964 #if defined(TARGET_SPARC)
1965 #ifndef TARGET_SPARC64
1966 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
1967 {
1968 CPUState *env = mon_get_cpu();
1969 if (!env)
1970 return 0;
1971 return GET_PSR(env);
1972 }
1973 #endif
1974
1975 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
1976 {
1977 CPUState *env = mon_get_cpu();
1978 if (!env)
1979 return 0;
1980 return env->regwptr[val];
1981 }
1982 #endif
1983
1984 static const MonitorDef monitor_defs[] = {
1985 #ifdef TARGET_I386
1986
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 },
1991
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]) },
2009 #endif
2010 { "eflags", offsetof(CPUState, eflags) },
2011 { "eip", offsetof(CPUState, eip) },
2012 SEG("cs", R_CS)
2013 SEG("ds", R_DS)
2014 SEG("es", R_ES)
2015 SEG("ss", R_SS)
2016 SEG("fs", R_FS)
2017 SEG("gs", R_GS)
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) },
2101 #endif
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) },
2160 #endif
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) },
2220 #endif
2221 #endif
2222 { NULL },
2223 };
2224
2225 static void expr_error(Monitor *mon, const char *msg)
2226 {
2227 monitor_printf(mon, "%s\n", msg);
2228 longjmp(expr_env, 1);
2229 }
2230
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)
2233 {
2234 const MonitorDef *md;
2235 void *ptr;
2236
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);
2241 } else {
2242 CPUState *env = mon_get_cpu();
2243 if (!env)
2244 return -2;
2245 ptr = (uint8_t *)env + md->offset;
2246 switch(md->type) {
2247 case MD_I32:
2248 *pval = *(int32_t *)ptr;
2249 break;
2250 case MD_TLONG:
2251 *pval = *(target_long *)ptr;
2252 break;
2253 default:
2254 *pval = 0;
2255 break;
2256 }
2257 }
2258 return 0;
2259 }
2260 }
2261 return -1;
2262 }
2263
2264 static void next(void)
2265 {
2266 if (*pch != '\0') {
2267 pch++;
2268 while (qemu_isspace(*pch))
2269 pch++;
2270 }
2271 }
2272
2273 static int64_t expr_sum(Monitor *mon);
2274
2275 static int64_t expr_unary(Monitor *mon)
2276 {
2277 int64_t n;
2278 char *p;
2279 int ret;
2280
2281 switch(*pch) {
2282 case '+':
2283 next();
2284 n = expr_unary(mon);
2285 break;
2286 case '-':
2287 next();
2288 n = -expr_unary(mon);
2289 break;
2290 case '~':
2291 next();
2292 n = ~expr_unary(mon);
2293 break;
2294 case '(':
2295 next();
2296 n = expr_sum(mon);
2297 if (*pch != ')') {
2298 expr_error(mon, "')' expected");
2299 }
2300 next();
2301 break;
2302 case '\'':
2303 pch++;
2304 if (*pch == '\0')
2305 expr_error(mon, "character constant expected");
2306 n = *pch;
2307 pch++;
2308 if (*pch != '\'')
2309 expr_error(mon, "missing terminating \' character");
2310 next();
2311 break;
2312 case '$':
2313 {
2314 char buf[128], *q;
2315 target_long reg=0;
2316
2317 pch++;
2318 q = buf;
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)
2324 *q++ = *pch;
2325 pch++;
2326 }
2327 while (qemu_isspace(*pch))
2328 pch++;
2329 *q = 0;
2330 ret = get_monitor_def(&reg, buf);
2331 if (ret == -1)
2332 expr_error(mon, "unknown register");
2333 else if (ret == -2)
2334 expr_error(mon, "no cpu defined");
2335 n = reg;
2336 }
2337 break;
2338 case '\0':
2339 expr_error(mon, "unexpected end of expression");
2340 n = 0;
2341 break;
2342 default:
2343 #if TARGET_PHYS_ADDR_BITS > 32
2344 n = strtoull(pch, &p, 0);
2345 #else
2346 n = strtoul(pch, &p, 0);
2347 #endif
2348 if (pch == p) {
2349 expr_error(mon, "invalid char in expression");
2350 }
2351 pch = p;
2352 while (qemu_isspace(*pch))
2353 pch++;
2354 break;
2355 }
2356 return n;
2357 }
2358
2359
2360 static int64_t expr_prod(Monitor *mon)
2361 {
2362 int64_t val, val2;
2363 int op;
2364
2365 val = expr_unary(mon);
2366 for(;;) {
2367 op = *pch;
2368 if (op != '*' && op != '/' && op != '%')
2369 break;
2370 next();
2371 val2 = expr_unary(mon);
2372 switch(op) {
2373 default:
2374 case '*':
2375 val *= val2;
2376 break;
2377 case '/':
2378 case '%':
2379 if (val2 == 0)
2380 expr_error(mon, "division by zero");
2381 if (op == '/')
2382 val /= val2;
2383 else
2384 val %= val2;
2385 break;
2386 }
2387 }
2388 return val;
2389 }
2390
2391 static int64_t expr_logic(Monitor *mon)
2392 {
2393 int64_t val, val2;
2394 int op;
2395
2396 val = expr_prod(mon);
2397 for(;;) {
2398 op = *pch;
2399 if (op != '&' && op != '|' && op != '^')
2400 break;
2401 next();
2402 val2 = expr_prod(mon);
2403 switch(op) {
2404 default:
2405 case '&':
2406 val &= val2;
2407 break;
2408 case '|':
2409 val |= val2;
2410 break;
2411 case '^':
2412 val ^= val2;
2413 break;
2414 }
2415 }
2416 return val;
2417 }
2418
2419 static int64_t expr_sum(Monitor *mon)
2420 {
2421 int64_t val, val2;
2422 int op;
2423
2424 val = expr_logic(mon);
2425 for(;;) {
2426 op = *pch;
2427 if (op != '+' && op != '-')
2428 break;
2429 next();
2430 val2 = expr_logic(mon);
2431 if (op == '+')
2432 val += val2;
2433 else
2434 val -= val2;
2435 }
2436 return val;
2437 }
2438
2439 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
2440 {
2441 pch = *pp;
2442 if (setjmp(expr_env)) {
2443 *pp = pch;
2444 return -1;
2445 }
2446 while (qemu_isspace(*pch))
2447 pch++;
2448 *pval = expr_sum(mon);
2449 *pp = pch;
2450 return 0;
2451 }
2452
2453 static int get_str(char *buf, int buf_size, const char **pp)
2454 {
2455 const char *p;
2456 char *q;
2457 int c;
2458
2459 q = buf;
2460 p = *pp;
2461 while (qemu_isspace(*p))
2462 p++;
2463 if (*p == '\0') {
2464 fail:
2465 *q = '\0';
2466 *pp = p;
2467 return -1;
2468 }
2469 if (*p == '\"') {
2470 p++;
2471 while (*p != '\0' && *p != '\"') {
2472 if (*p == '\\') {
2473 p++;
2474 c = *p++;
2475 switch(c) {
2476 case 'n':
2477 c = '\n';
2478 break;
2479 case 'r':
2480 c = '\r';
2481 break;
2482 case '\\':
2483 case '\'':
2484 case '\"':
2485 break;
2486 default:
2487 qemu_printf("unsupported escape code: '\\%c'\n", c);
2488 goto fail;
2489 }
2490 if ((q - buf) < buf_size - 1) {
2491 *q++ = c;
2492 }
2493 } else {
2494 if ((q - buf) < buf_size - 1) {
2495 *q++ = *p;
2496 }
2497 p++;
2498 }
2499 }
2500 if (*p != '\"') {
2501 qemu_printf("unterminated string\n");
2502 goto fail;
2503 }
2504 p++;
2505 } else {
2506 while (*p != '\0' && !qemu_isspace(*p)) {
2507 if ((q - buf) < buf_size - 1) {
2508 *q++ = *p;
2509 }
2510 p++;
2511 }
2512 }
2513 *q = '\0';
2514 *pp = p;
2515 return 0;
2516 }
2517
2518 /*
2519 * Store the command-name in cmdname, and return a pointer to
2520 * the remaining of the command string.
2521 */
2522 static const char *get_command_name(const char *cmdline,
2523 char *cmdname, size_t nlen)
2524 {
2525 size_t len;
2526 const char *p, *pstart;
2527
2528 p = cmdline;
2529 while (qemu_isspace(*p))
2530 p++;
2531 if (*p == '\0')
2532 return NULL;
2533 pstart = p;
2534 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
2535 p++;
2536 len = p - pstart;
2537 if (len > nlen - 1)
2538 len = nlen - 1;
2539 memcpy(cmdname, pstart, len);
2540 cmdname[len] = '\0';
2541 return p;
2542 }
2543
2544 /**
2545 * Read key of 'type' into 'key' and return the current
2546 * 'type' pointer.
2547 */
2548 static char *key_get_info(const char *type, char **key)
2549 {
2550 size_t len;
2551 char *p, *str;
2552
2553 if (*type == ',')
2554 type++;
2555
2556 p = strchr(type, ':');
2557 if (!p) {
2558 *key = NULL;
2559 return NULL;
2560 }
2561 len = p - type;
2562
2563 str = qemu_malloc(len + 1);
2564 memcpy(str, type, len);
2565 str[len] = '\0';
2566
2567 *key = str;
2568 return ++p;
2569 }
2570
2571 static int default_fmt_format = 'x';
2572 static int default_fmt_size = 4;
2573
2574 #define MAX_ARGS 16
2575
2576 static void monitor_handle_command(Monitor *mon, const char *cmdline)
2577 {
2578 const char *p, *typestr;
2579 int c, nb_args, i, has_arg;
2580 const mon_cmd_t *cmd;
2581 char cmdname[256];
2582 char buf[1024];
2583 char *key;
2584 QDict *qdict;
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,
2589 void *arg3);
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,
2598 void *arg7);
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);
2605
2606 #ifdef DEBUG
2607 monitor_printf(mon, "command='%s'\n", cmdline);
2608 #endif
2609
2610 /* extract the command name */
2611 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
2612 if (!p)
2613 return;
2614
2615 /* find the command */
2616 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
2617 if (compare_cmd(cmdname, cmd->name))
2618 break;
2619 }
2620
2621 if (cmd->name == NULL) {
2622 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
2623 return;
2624 }
2625
2626 qdict = qdict_new();
2627
2628 for(i = 0; i < MAX_ARGS; i++)
2629 str_allocated[i] = NULL;
2630
2631 /* parse the parameters */
2632 typestr = cmd->args_type;
2633 nb_args = 0;
2634 for(;;) {
2635 typestr = key_get_info(typestr, &key);
2636 if (!typestr)
2637 break;
2638 c = *typestr;
2639 typestr++;
2640 switch(c) {
2641 case 'F':
2642 case 'B':
2643 case 's':
2644 {
2645 int ret;
2646 char *str;
2647
2648 while (qemu_isspace(*p))
2649 p++;
2650 if (*typestr == '?') {
2651 typestr++;
2652 if (*p == '\0') {
2653 /* no optional string: NULL argument */
2654 str = NULL;
2655 goto add_str;
2656 }
2657 }
2658 ret = get_str(buf, sizeof(buf), &p);
2659 if (ret < 0) {
2660 switch(c) {
2661 case 'F':
2662 monitor_printf(mon, "%s: filename expected\n",
2663 cmdname);
2664 break;
2665 case 'B':
2666 monitor_printf(mon, "%s: block device name expected\n",
2667 cmdname);
2668 break;
2669 default:
2670 monitor_printf(mon, "%s: string expected\n", cmdname);
2671 break;
2672 }
2673 goto fail;
2674 }
2675 str = qemu_malloc(strlen(buf) + 1);
2676 pstrcpy(str, sizeof(buf), buf);
2677 str_allocated[nb_args] = str;
2678 add_str:
2679 if (nb_args >= MAX_ARGS) {
2680 error_args:
2681 monitor_printf(mon, "%s: too many arguments\n", cmdname);
2682 goto fail;
2683 }
2684 args[nb_args++] = str;
2685 if (str)
2686 qdict_put(qdict, key, qstring_from_str(str));
2687 }
2688 break;
2689 case '/':
2690 {
2691 int count, format, size;
2692
2693 while (qemu_isspace(*p))
2694 p++;
2695 if (*p == '/') {
2696 /* format found */
2697 p++;
2698 count = 1;
2699 if (qemu_isdigit(*p)) {
2700 count = 0;
2701 while (qemu_isdigit(*p)) {
2702 count = count * 10 + (*p - '0');
2703 p++;
2704 }
2705 }
2706 size = -1;
2707 format = -1;
2708 for(;;) {
2709 switch(*p) {
2710 case 'o':
2711 case 'd':
2712 case 'u':
2713 case 'x':
2714 case 'i':
2715 case 'c':
2716 format = *p++;
2717 break;
2718 case 'b':
2719 size = 1;
2720 p++;
2721 break;
2722 case 'h':
2723 size = 2;
2724 p++;
2725 break;
2726 case 'w':
2727 size = 4;
2728 p++;
2729 break;
2730 case 'g':
2731 case 'L':
2732 size = 8;
2733 p++;
2734 break;
2735 default:
2736 goto next;
2737 }
2738 }
2739 next:
2740 if (*p != '\0' && !qemu_isspace(*p)) {
2741 monitor_printf(mon, "invalid char in format: '%c'\n",
2742 *p);
2743 goto fail;
2744 }
2745 if (format < 0)
2746 format = default_fmt_format;
2747 if (format != 'i') {
2748 /* for 'i', not specifying a size gives -1 as size */
2749 if (size < 0)
2750 size = default_fmt_size;
2751 default_fmt_size = size;
2752 }
2753 default_fmt_format = format;
2754 } else {
2755 count = 1;
2756 format = default_fmt_format;
2757 if (format != 'i') {
2758 size = default_fmt_size;
2759 } else {
2760 size = -1;
2761 }
2762 }
2763 if (nb_args + 3 > MAX_ARGS)
2764 goto error_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));
2771 }
2772 break;
2773 case 'i':
2774 case 'l':
2775 {
2776 int64_t val;
2777 int dict_add = 1;
2778
2779 while (qemu_isspace(*p))
2780 p++;
2781 if (*typestr == '?' || *typestr == '.') {
2782 if (*typestr == '?') {
2783 if (*p == '\0')
2784 has_arg = 0;
2785 else
2786 has_arg = 1;
2787 } else {
2788 if (*p == '.') {
2789 p++;
2790 while (qemu_isspace(*p))
2791 p++;
2792 has_arg = 1;
2793 } else {
2794 has_arg = 0;
2795 }
2796 }
2797 typestr++;
2798 if (nb_args >= MAX_ARGS)
2799 goto error_args;
2800 dict_add = has_arg;
2801 args[nb_args++] = (void *)(long)has_arg;
2802 if (!has_arg) {
2803 if (nb_args >= MAX_ARGS)
2804 goto error_args;
2805 val = -1;
2806 goto add_num;
2807 }
2808 }
2809 if (get_expr(mon, &val, &p))
2810 goto fail;
2811 add_num:
2812 if (c == 'i') {
2813 if (nb_args >= MAX_ARGS)
2814 goto error_args;
2815 args[nb_args++] = (void *)(long)val;
2816 if (dict_add)
2817 qdict_put(qdict, key, qint_from_int(val));
2818 } else {
2819 if ((nb_args + 1) >= MAX_ARGS)
2820 goto error_args;
2821 #if TARGET_PHYS_ADDR_BITS > 32
2822 args[nb_args++] = (void *)(long)((val >> 32) & 0xffffffff);
2823 #else
2824 args[nb_args++] = (void *)0;
2825 #endif
2826 args[nb_args++] = (void *)(long)(val & 0xffffffff);
2827 qdict_put(qdict, key, qint_from_int(val));
2828 }
2829 }
2830 break;
2831 case '-':
2832 {
2833 int has_option;
2834 /* option */
2835
2836 c = *typestr++;
2837 if (c == '\0')
2838 goto bad_type;
2839 while (qemu_isspace(*p))
2840 p++;
2841 has_option = 0;
2842 if (*p == '-') {
2843 p++;
2844 if (*p != c) {
2845 monitor_printf(mon, "%s: unsupported option -%c\n",
2846 cmdname, *p);
2847 goto fail;
2848 }
2849 p++;
2850 has_option = 1;
2851 }
2852 if (nb_args >= MAX_ARGS)
2853 goto error_args;
2854 args[nb_args++] = (void *)(long)has_option;
2855 qdict_put(qdict, key, qint_from_int(has_option));
2856 }
2857 break;
2858 default:
2859 bad_type:
2860 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
2861 goto fail;
2862 }
2863 qemu_free(key);
2864 key = NULL;
2865 }
2866 /* check that all arguments were parsed */
2867 while (qemu_isspace(*p))
2868 p++;
2869 if (*p != '\0') {
2870 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
2871 cmdname);
2872 goto fail;
2873 }
2874
2875 qemu_errors_to_mon(mon);
2876 switch(nb_args) {
2877 case 0:
2878 case 1:
2879 case 2:
2880 case 3:
2881 handler_d = cmd->handler;
2882 handler_d(mon, qdict);
2883 break;
2884 case 4:
2885 handler_4 = cmd->handler;
2886 handler_4(mon, args[0], args[1], args[2], args[3]);
2887 break;
2888 case 5:
2889 handler_5 = cmd->handler;
2890 handler_5(mon, args[0], args[1], args[2], args[3], args[4]);
2891 break;
2892 case 6:
2893 handler_6 = cmd->handler;
2894 handler_6(mon, args[0], args[1], args[2], args[3], args[4], args[5]);
2895 break;
2896 case 7:
2897 handler_7 = cmd->handler;
2898 handler_7(mon, args[0], args[1], args[2], args[3], args[4], args[5],
2899 args[6]);
2900 break;
2901 case 8:
2902 handler_8 = cmd->handler;
2903 handler_8(mon, args[0], args[1], args[2], args[3], args[4], args[5],
2904 args[6], args[7]);
2905 break;
2906 case 9:
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]);
2910 break;
2911 case 10:
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]);
2915 break;
2916 default:
2917 monitor_printf(mon, "unsupported number of arguments: %d\n", nb_args);
2918 break;
2919 }
2920 qemu_errors_to_previous();
2921
2922 fail:
2923 qemu_free(key);
2924 for(i = 0; i < MAX_ARGS; i++)
2925 qemu_free(str_allocated[i]);
2926 QDECREF(qdict);
2927 }
2928
2929 static void cmd_completion(const char *name, const char *list)
2930 {
2931 const char *p, *pstart;
2932 char cmd[128];
2933 int len;
2934
2935 p = list;
2936 for(;;) {
2937 pstart = p;
2938 p = strchr(p, '|');
2939 if (!p)
2940 p = pstart + strlen(pstart);
2941 len = p - pstart;
2942 if (len > sizeof(cmd) - 2)
2943 len = sizeof(cmd) - 2;
2944 memcpy(cmd, pstart, len);
2945 cmd[len] = '\0';
2946 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
2947 readline_add_completion(cur_mon->rs, cmd);
2948 }
2949 if (*p == '\0')
2950 break;
2951 p++;
2952 }
2953 }
2954
2955 static void file_completion(const char *input)
2956 {
2957 DIR *ffs;
2958 struct dirent *d;
2959 char path[1024];
2960 char file[1024], file_prefix[1024];
2961 int input_path_len;
2962 const char *p;
2963
2964 p = strrchr(input, '/');
2965 if (!p) {
2966 input_path_len = 0;
2967 pstrcpy(file_prefix, sizeof(file_prefix), input);
2968 pstrcpy(path, sizeof(path), ".");
2969 } else {
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);
2976 }
2977 #ifdef DEBUG_COMPLETION
2978 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
2979 input, path, file_prefix);
2980 #endif
2981 ffs = opendir(path);
2982 if (!ffs)
2983 return;
2984 for(;;) {
2985 struct stat sb;
2986 d = readdir(ffs);
2987 if (!d)
2988 break;
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,
2993 d->d_name);
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
2996 */
2997 stat(file, &sb);
2998 if(S_ISDIR(sb.st_mode))
2999 pstrcat(file, sizeof(file), "/");
3000 readline_add_completion(cur_mon->rs, file);
3001 }
3002 }
3003 closedir(ffs);
3004 }
3005
3006 static void block_completion_it(void *opaque, BlockDriverState *bs)
3007 {
3008 const char *name = bdrv_get_device_name(bs);
3009 const char *input = opaque;
3010
3011 if (input[0] == '\0' ||
3012 !strncmp(name, (char *)input, strlen(input))) {
3013 readline_add_completion(cur_mon->rs, name);
3014 }
3015 }
3016
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)
3020 {
3021 const char *p;
3022 int nb_args, ret;
3023 char buf[1024];
3024
3025 p = cmdline;
3026 nb_args = 0;
3027 for(;;) {
3028 while (qemu_isspace(*p))
3029 p++;
3030 if (*p == '\0')
3031 break;
3032 if (nb_args >= MAX_ARGS)
3033 break;
3034 ret = get_str(buf, sizeof(buf), &p);
3035 args[nb_args] = qemu_strdup(buf);
3036 nb_args++;
3037 if (ret < 0)
3038 break;
3039 }
3040 *pnb_args = nb_args;
3041 }
3042
3043 static const char *next_arg_type(const char *typestr)
3044 {
3045 const char *p = strchr(typestr, ':');
3046 return (p != NULL ? ++p : typestr);
3047 }
3048
3049 static void monitor_find_completion(const char *cmdline)
3050 {
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;
3056 const KeyDef *key;
3057
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]);
3062 }
3063 #endif
3064
3065 /* if the line ends with a space, it means we want to complete the
3066 next arg */
3067 len = strlen(cmdline);
3068 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
3069 if (nb_args >= MAX_ARGS)
3070 return;
3071 args[nb_args++] = qemu_strdup("");
3072 }
3073 if (nb_args <= 1) {
3074 /* command completion */
3075 if (nb_args == 0)
3076 cmdname = "";
3077 else
3078 cmdname = args[0];
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);
3082 }
3083 } else {
3084 /* find the command */
3085 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
3086 if (compare_cmd(args[0], cmd->name))
3087 goto found;
3088 }
3089 return;
3090 found:
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);
3097 }
3098 }
3099 str = args[nb_args - 1];
3100 if (*ptype == '-' && ptype[1] != '\0') {
3101 ptype += 2;
3102 }
3103 switch(*ptype) {
3104 case 'F':
3105 /* file completion */
3106 readline_set_completion_index(cur_mon->rs, strlen(str));
3107 file_completion(str);
3108 break;
3109 case 'B':
3110 /* block device name completion */
3111 readline_set_completion_index(cur_mon->rs, strlen(str));
3112 bdrv_iterate(block_completion_it, (void *)str);
3113 break;
3114 case 's':
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);
3120 }
3121 } else if (!strcmp(cmd->name, "sendkey")) {
3122 char *sep = strrchr(str, '-');
3123 if (sep)
3124 str = sep + 1;
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);
3128 }
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);
3133 }
3134 }
3135 break;
3136 default:
3137 break;
3138 }
3139 }
3140 for(i = 0; i < nb_args; i++)
3141 qemu_free(args[i]);
3142 }
3143
3144 static int monitor_can_read(void *opaque)
3145 {
3146 Monitor *mon = opaque;
3147
3148 return (mon->suspend_cnt == 0) ? 128 : 0;
3149 }
3150
3151 static void monitor_read(void *opaque, const uint8_t *buf, int size)
3152 {
3153 Monitor *old_mon = cur_mon;
3154 int i;
3155
3156 cur_mon = opaque;
3157
3158 if (cur_mon->rs) {
3159 for (i = 0; i < size; i++)
3160 readline_handle_byte(cur_mon->rs, buf[i]);
3161 } else {
3162 if (size == 0 || buf[size - 1] != 0)
3163 monitor_printf(cur_mon, "corrupted command\n");
3164 else
3165 monitor_handle_command(cur_mon, (char *)buf);
3166 }
3167
3168 cur_mon = old_mon;
3169 }
3170
3171 static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
3172 {
3173 monitor_suspend(mon);
3174 monitor_handle_command(mon, cmdline);
3175 monitor_resume(mon);
3176 }
3177
3178 int monitor_suspend(Monitor *mon)
3179 {
3180 if (!mon->rs)
3181 return -ENOTTY;
3182 mon->suspend_cnt++;
3183 return 0;
3184 }
3185
3186 void monitor_resume(Monitor *mon)
3187 {
3188 if (!mon->rs)
3189 return;
3190 if (--mon->suspend_cnt == 0)
3191 readline_show_prompt(mon->rs);
3192 }
3193
3194 static void monitor_event(void *opaque, int event)
3195 {
3196 Monitor *mon = opaque;
3197
3198 switch (event) {
3199 case CHR_EVENT_MUX_IN:
3200 readline_restart(mon->rs);
3201 monitor_resume(mon);
3202 monitor_flush(mon);
3203 break;
3204
3205 case CHR_EVENT_MUX_OUT:
3206 if (mon->suspend_cnt == 0)
3207 monitor_printf(mon, "\n");
3208 monitor_flush(mon);
3209 monitor_suspend(mon);
3210 break;
3211
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);
3217 break;
3218 }
3219 }
3220
3221
3222 /*
3223 * Local variables:
3224 * c-indent-level: 4
3225 * c-basic-offset: 4
3226 * tab-width: 8
3227 * End:
3228 */
3229
3230 void monitor_init(CharDriverState *chr, int flags)
3231 {
3232 static int is_first_init = 1;
3233 Monitor *mon;
3234
3235 if (is_first_init) {
3236 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
3237 is_first_init = 0;
3238 }
3239
3240 mon = qemu_mallocz(sizeof(*mon));
3241
3242 mon->chr = chr;
3243 mon->flags = flags;
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);
3249 }
3250
3251 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read, monitor_event,
3252 mon);
3253
3254 LIST_INSERT_HEAD(&mon_list, mon, entry);
3255 if (!cur_mon || (flags & MONITOR_IS_DEFAULT))
3256 cur_mon = mon;
3257 }
3258
3259 static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
3260 {
3261 BlockDriverState *bs = opaque;
3262 int ret = 0;
3263
3264 if (bdrv_set_key(bs, password) != 0) {
3265 monitor_printf(mon, "invalid password\n");
3266 ret = -EPERM;
3267 }
3268 if (mon->password_completion_cb)
3269 mon->password_completion_cb(mon->password_opaque, ret);
3270
3271 monitor_read_command(mon, 1);
3272 }
3273
3274 void monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
3275 BlockDriverCompletionFunc *completion_cb,
3276 void *opaque)
3277 {
3278 int err;
3279
3280 if (!bdrv_key_required(bs)) {
3281 if (completion_cb)
3282 completion_cb(opaque, 0);
3283 return;
3284 }
3285
3286 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
3287 bdrv_get_encrypted_filename(bs));
3288
3289 mon->password_completion_cb = completion_cb;
3290 mon->password_opaque = opaque;
3291
3292 err = monitor_read_password(mon, bdrv_password_cb, bs);
3293
3294 if (err && completion_cb)
3295 completion_cb(opaque, err);
3296 }
3297
3298 typedef struct QemuErrorSink QemuErrorSink;
3299 struct QemuErrorSink {
3300 enum {
3301 ERR_SINK_FILE,
3302 ERR_SINK_MONITOR,
3303 } dest;
3304 union {
3305 FILE *fp;
3306 Monitor *mon;
3307 };
3308 QemuErrorSink *previous;
3309 };
3310
3311 static QemuErrorSink *qemu_error_sink;
3312
3313 void qemu_errors_to_file(FILE *fp)
3314 {
3315 QemuErrorSink *sink;
3316
3317 sink = qemu_mallocz(sizeof(*sink));
3318 sink->dest = ERR_SINK_FILE;
3319 sink->fp = fp;
3320 sink->previous = qemu_error_sink;
3321 qemu_error_sink = sink;
3322 }
3323
3324 void qemu_errors_to_mon(Monitor *mon)
3325 {
3326 QemuErrorSink *sink;
3327
3328 sink = qemu_mallocz(sizeof(*sink));
3329 sink->dest = ERR_SINK_MONITOR;
3330 sink->mon = mon;
3331 sink->previous = qemu_error_sink;
3332 qemu_error_sink = sink;
3333 }
3334
3335 void qemu_errors_to_previous(void)
3336 {
3337 QemuErrorSink *sink;
3338
3339 assert(qemu_error_sink != NULL);
3340 sink = qemu_error_sink;
3341 qemu_error_sink = sink->previous;
3342 qemu_free(sink);
3343 }
3344
3345 void qemu_error(const char *fmt, ...)
3346 {
3347 va_list args;
3348
3349 assert(qemu_error_sink != NULL);
3350 switch (qemu_error_sink->dest) {
3351 case ERR_SINK_FILE:
3352 va_start(args, fmt);
3353 vfprintf(qemu_error_sink->fp, fmt, args);
3354 va_end(args);
3355 break;
3356 case ERR_SINK_MONITOR:
3357 va_start(args, fmt);
3358 monitor_vprintf(qemu_error_sink->mon, fmt, args);
3359 va_end(args);
3360 break;
3361 }
3362 }