]> git.proxmox.com Git - qemu.git/blob - monitor.c
vnc: Simplify vnc_display_password()
[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 "hw/loader.h"
33 #include "gdbstub.h"
34 #include "net.h"
35 #include "net/slirp.h"
36 #include "qemu-char.h"
37 #include "ui/qemu-spice.h"
38 #include "sysemu.h"
39 #include "monitor.h"
40 #include "readline.h"
41 #include "console.h"
42 #include "blockdev.h"
43 #include "audio/audio.h"
44 #include "disas.h"
45 #include "balloon.h"
46 #include "qemu-timer.h"
47 #include "migration.h"
48 #include "kvm.h"
49 #include "acl.h"
50 #include "qint.h"
51 #include "qfloat.h"
52 #include "qlist.h"
53 #include "qbool.h"
54 #include "qstring.h"
55 #include "qjson.h"
56 #include "json-streamer.h"
57 #include "json-parser.h"
58 #include "osdep.h"
59 #include "cpu.h"
60 #include "trace.h"
61 #include "trace/control.h"
62 #ifdef CONFIG_TRACE_SIMPLE
63 #include "trace/simple.h"
64 #endif
65 #include "ui/qemu-spice.h"
66 #include "memory.h"
67 #include "qmp-commands.h"
68 #include "hmp.h"
69
70 /* for pic/irq_info */
71 #if defined(TARGET_SPARC)
72 #include "hw/sun4m.h"
73 #endif
74 #include "hw/lm32_pic.h"
75
76 //#define DEBUG
77 //#define DEBUG_COMPLETION
78
79 /*
80 * Supported types:
81 *
82 * 'F' filename
83 * 'B' block device name
84 * 's' string (accept optional quote)
85 * 'O' option string of the form NAME=VALUE,...
86 * parsed according to QemuOptsList given by its name
87 * Example: 'device:O' uses qemu_device_opts.
88 * Restriction: only lists with empty desc are supported
89 * TODO lift the restriction
90 * 'i' 32 bit integer
91 * 'l' target long (32 or 64 bit)
92 * 'M' just like 'l', except in user mode the value is
93 * multiplied by 2^20 (think Mebibyte)
94 * 'o' octets (aka bytes)
95 * user mode accepts an optional T, t, G, g, M, m, K, k
96 * suffix, which multiplies the value by 2^40 for
97 * suffixes T and t, 2^30 for suffixes G and g, 2^20 for
98 * M and m, 2^10 for K and k
99 * 'T' double
100 * user mode accepts an optional ms, us, ns suffix,
101 * which divides the value by 1e3, 1e6, 1e9, respectively
102 * '/' optional gdb-like print format (like "/10x")
103 *
104 * '?' optional type (for all types, except '/')
105 * '.' other form of optional type (for 'i' and 'l')
106 * 'b' boolean
107 * user mode accepts "on" or "off"
108 * '-' optional parameter (eg. '-f')
109 *
110 */
111
112 typedef struct MonitorCompletionData MonitorCompletionData;
113 struct MonitorCompletionData {
114 Monitor *mon;
115 void (*user_print)(Monitor *mon, const QObject *data);
116 };
117
118 typedef struct mon_cmd_t {
119 const char *name;
120 const char *args_type;
121 const char *params;
122 const char *help;
123 void (*user_print)(Monitor *mon, const QObject *data);
124 union {
125 void (*info)(Monitor *mon);
126 void (*cmd)(Monitor *mon, const QDict *qdict);
127 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
128 int (*cmd_async)(Monitor *mon, const QDict *params,
129 MonitorCompletion *cb, void *opaque);
130 } mhandler;
131 bool qapi;
132 int flags;
133 } mon_cmd_t;
134
135 /* file descriptors passed via SCM_RIGHTS */
136 typedef struct mon_fd_t mon_fd_t;
137 struct mon_fd_t {
138 char *name;
139 int fd;
140 QLIST_ENTRY(mon_fd_t) next;
141 };
142
143 typedef struct MonitorControl {
144 QObject *id;
145 JSONMessageParser parser;
146 int command_mode;
147 } MonitorControl;
148
149 struct Monitor {
150 CharDriverState *chr;
151 int mux_out;
152 int reset_seen;
153 int flags;
154 int suspend_cnt;
155 uint8_t outbuf[1024];
156 int outbuf_index;
157 ReadLineState *rs;
158 MonitorControl *mc;
159 CPUState *mon_cpu;
160 BlockDriverCompletionFunc *password_completion_cb;
161 void *password_opaque;
162 #ifdef CONFIG_DEBUG_MONITOR
163 int print_calls_nr;
164 #endif
165 QError *error;
166 QLIST_HEAD(,mon_fd_t) fds;
167 QLIST_ENTRY(Monitor) entry;
168 };
169
170 #ifdef CONFIG_DEBUG_MONITOR
171 #define MON_DEBUG(fmt, ...) do { \
172 fprintf(stderr, "Monitor: "); \
173 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
174
175 static inline void mon_print_count_inc(Monitor *mon)
176 {
177 mon->print_calls_nr++;
178 }
179
180 static inline void mon_print_count_init(Monitor *mon)
181 {
182 mon->print_calls_nr = 0;
183 }
184
185 static inline int mon_print_count_get(const Monitor *mon)
186 {
187 return mon->print_calls_nr;
188 }
189
190 #else /* !CONFIG_DEBUG_MONITOR */
191 #define MON_DEBUG(fmt, ...) do { } while (0)
192 static inline void mon_print_count_inc(Monitor *mon) { }
193 static inline void mon_print_count_init(Monitor *mon) { }
194 static inline int mon_print_count_get(const Monitor *mon) { return 0; }
195 #endif /* CONFIG_DEBUG_MONITOR */
196
197 /* QMP checker flags */
198 #define QMP_ACCEPT_UNKNOWNS 1
199
200 static QLIST_HEAD(mon_list, Monitor) mon_list;
201
202 static mon_cmd_t mon_cmds[];
203 static mon_cmd_t info_cmds[];
204
205 static const mon_cmd_t qmp_cmds[];
206
207 Monitor *cur_mon;
208 Monitor *default_mon;
209
210 static void monitor_command_cb(Monitor *mon, const char *cmdline,
211 void *opaque);
212
213 static inline int qmp_cmd_mode(const Monitor *mon)
214 {
215 return (mon->mc ? mon->mc->command_mode : 0);
216 }
217
218 /* Return true if in control mode, false otherwise */
219 static inline int monitor_ctrl_mode(const Monitor *mon)
220 {
221 return (mon->flags & MONITOR_USE_CONTROL);
222 }
223
224 /* Return non-zero iff we have a current monitor, and it is in QMP mode. */
225 int monitor_cur_is_qmp(void)
226 {
227 return cur_mon && monitor_ctrl_mode(cur_mon);
228 }
229
230 static void monitor_read_command(Monitor *mon, int show_prompt)
231 {
232 if (!mon->rs)
233 return;
234
235 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
236 if (show_prompt)
237 readline_show_prompt(mon->rs);
238 }
239
240 static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
241 void *opaque)
242 {
243 if (monitor_ctrl_mode(mon)) {
244 qerror_report(QERR_MISSING_PARAMETER, "password");
245 return -EINVAL;
246 } else if (mon->rs) {
247 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
248 /* prompt is printed on return from the command handler */
249 return 0;
250 } else {
251 monitor_printf(mon, "terminal does not support password prompting\n");
252 return -ENOTTY;
253 }
254 }
255
256 void monitor_flush(Monitor *mon)
257 {
258 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
259 qemu_chr_fe_write(mon->chr, mon->outbuf, mon->outbuf_index);
260 mon->outbuf_index = 0;
261 }
262 }
263
264 /* flush at every end of line or if the buffer is full */
265 static void monitor_puts(Monitor *mon, const char *str)
266 {
267 char c;
268
269 for(;;) {
270 c = *str++;
271 if (c == '\0')
272 break;
273 if (c == '\n')
274 mon->outbuf[mon->outbuf_index++] = '\r';
275 mon->outbuf[mon->outbuf_index++] = c;
276 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
277 || c == '\n')
278 monitor_flush(mon);
279 }
280 }
281
282 void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
283 {
284 char buf[4096];
285
286 if (!mon)
287 return;
288
289 mon_print_count_inc(mon);
290
291 if (monitor_ctrl_mode(mon)) {
292 return;
293 }
294
295 vsnprintf(buf, sizeof(buf), fmt, ap);
296 monitor_puts(mon, buf);
297 }
298
299 void monitor_printf(Monitor *mon, const char *fmt, ...)
300 {
301 va_list ap;
302 va_start(ap, fmt);
303 monitor_vprintf(mon, fmt, ap);
304 va_end(ap);
305 }
306
307 void monitor_print_filename(Monitor *mon, const char *filename)
308 {
309 int i;
310
311 for (i = 0; filename[i]; i++) {
312 switch (filename[i]) {
313 case ' ':
314 case '"':
315 case '\\':
316 monitor_printf(mon, "\\%c", filename[i]);
317 break;
318 case '\t':
319 monitor_printf(mon, "\\t");
320 break;
321 case '\r':
322 monitor_printf(mon, "\\r");
323 break;
324 case '\n':
325 monitor_printf(mon, "\\n");
326 break;
327 default:
328 monitor_printf(mon, "%c", filename[i]);
329 break;
330 }
331 }
332 }
333
334 static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
335 const char *fmt, ...)
336 {
337 va_list ap;
338 va_start(ap, fmt);
339 monitor_vprintf((Monitor *)stream, fmt, ap);
340 va_end(ap);
341 return 0;
342 }
343
344 static void monitor_user_noop(Monitor *mon, const QObject *data) { }
345
346 static inline int handler_is_qobject(const mon_cmd_t *cmd)
347 {
348 return cmd->user_print != NULL;
349 }
350
351 static inline bool handler_is_async(const mon_cmd_t *cmd)
352 {
353 return cmd->flags & MONITOR_CMD_ASYNC;
354 }
355
356 static inline int monitor_has_error(const Monitor *mon)
357 {
358 return mon->error != NULL;
359 }
360
361 static void monitor_json_emitter(Monitor *mon, const QObject *data)
362 {
363 QString *json;
364
365 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
366 qobject_to_json(data);
367 assert(json != NULL);
368
369 qstring_append_chr(json, '\n');
370 monitor_puts(mon, qstring_get_str(json));
371
372 QDECREF(json);
373 }
374
375 static void monitor_protocol_emitter(Monitor *mon, QObject *data)
376 {
377 QDict *qmp;
378
379 trace_monitor_protocol_emitter(mon);
380
381 qmp = qdict_new();
382
383 if (!monitor_has_error(mon)) {
384 /* success response */
385 if (data) {
386 qobject_incref(data);
387 qdict_put_obj(qmp, "return", data);
388 } else {
389 /* return an empty QDict by default */
390 qdict_put(qmp, "return", qdict_new());
391 }
392 } else {
393 /* error response */
394 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
395 qdict_put(qmp, "error", mon->error->error);
396 QINCREF(mon->error->error);
397 QDECREF(mon->error);
398 mon->error = NULL;
399 }
400
401 if (mon->mc->id) {
402 qdict_put_obj(qmp, "id", mon->mc->id);
403 mon->mc->id = NULL;
404 }
405
406 monitor_json_emitter(mon, QOBJECT(qmp));
407 QDECREF(qmp);
408 }
409
410 static void timestamp_put(QDict *qdict)
411 {
412 int err;
413 QObject *obj;
414 qemu_timeval tv;
415
416 err = qemu_gettimeofday(&tv);
417 if (err < 0)
418 return;
419
420 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
421 "'microseconds': %" PRId64 " }",
422 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
423 qdict_put_obj(qdict, "timestamp", obj);
424 }
425
426 /**
427 * monitor_protocol_event(): Generate a Monitor event
428 *
429 * Event-specific data can be emitted through the (optional) 'data' parameter.
430 */
431 void monitor_protocol_event(MonitorEvent event, QObject *data)
432 {
433 QDict *qmp;
434 const char *event_name;
435 Monitor *mon;
436
437 assert(event < QEVENT_MAX);
438
439 switch (event) {
440 case QEVENT_SHUTDOWN:
441 event_name = "SHUTDOWN";
442 break;
443 case QEVENT_RESET:
444 event_name = "RESET";
445 break;
446 case QEVENT_POWERDOWN:
447 event_name = "POWERDOWN";
448 break;
449 case QEVENT_STOP:
450 event_name = "STOP";
451 break;
452 case QEVENT_RESUME:
453 event_name = "RESUME";
454 break;
455 case QEVENT_VNC_CONNECTED:
456 event_name = "VNC_CONNECTED";
457 break;
458 case QEVENT_VNC_INITIALIZED:
459 event_name = "VNC_INITIALIZED";
460 break;
461 case QEVENT_VNC_DISCONNECTED:
462 event_name = "VNC_DISCONNECTED";
463 break;
464 case QEVENT_BLOCK_IO_ERROR:
465 event_name = "BLOCK_IO_ERROR";
466 break;
467 case QEVENT_RTC_CHANGE:
468 event_name = "RTC_CHANGE";
469 break;
470 case QEVENT_WATCHDOG:
471 event_name = "WATCHDOG";
472 break;
473 case QEVENT_SPICE_CONNECTED:
474 event_name = "SPICE_CONNECTED";
475 break;
476 case QEVENT_SPICE_INITIALIZED:
477 event_name = "SPICE_INITIALIZED";
478 break;
479 case QEVENT_SPICE_DISCONNECTED:
480 event_name = "SPICE_DISCONNECTED";
481 break;
482 default:
483 abort();
484 break;
485 }
486
487 qmp = qdict_new();
488 timestamp_put(qmp);
489 qdict_put(qmp, "event", qstring_from_str(event_name));
490 if (data) {
491 qobject_incref(data);
492 qdict_put_obj(qmp, "data", data);
493 }
494
495 QLIST_FOREACH(mon, &mon_list, entry) {
496 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
497 monitor_json_emitter(mon, QOBJECT(qmp));
498 }
499 }
500 QDECREF(qmp);
501 }
502
503 static int do_qmp_capabilities(Monitor *mon, const QDict *params,
504 QObject **ret_data)
505 {
506 /* Will setup QMP capabilities in the future */
507 if (monitor_ctrl_mode(mon)) {
508 mon->mc->command_mode = 1;
509 }
510
511 return 0;
512 }
513
514 static void handle_user_command(Monitor *mon, const char *cmdline);
515
516 char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index,
517 int64_t cpu_index, Error **errp)
518 {
519 char *output = NULL;
520 Monitor *old_mon, hmp;
521 CharDriverState mchar;
522
523 memset(&hmp, 0, sizeof(hmp));
524 qemu_chr_init_mem(&mchar);
525 hmp.chr = &mchar;
526
527 old_mon = cur_mon;
528 cur_mon = &hmp;
529
530 if (has_cpu_index) {
531 int ret = monitor_set_cpu(cpu_index);
532 if (ret < 0) {
533 cur_mon = old_mon;
534 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
535 "a CPU number");
536 goto out;
537 }
538 }
539
540 handle_user_command(&hmp, command_line);
541 cur_mon = old_mon;
542
543 if (qemu_chr_mem_osize(hmp.chr) > 0) {
544 QString *str = qemu_chr_mem_to_qs(hmp.chr);
545 output = g_strdup(qstring_get_str(str));
546 QDECREF(str);
547 } else {
548 output = g_strdup("");
549 }
550
551 out:
552 qemu_chr_close_mem(hmp.chr);
553 return output;
554 }
555
556 static int compare_cmd(const char *name, const char *list)
557 {
558 const char *p, *pstart;
559 int len;
560 len = strlen(name);
561 p = list;
562 for(;;) {
563 pstart = p;
564 p = strchr(p, '|');
565 if (!p)
566 p = pstart + strlen(pstart);
567 if ((p - pstart) == len && !memcmp(pstart, name, len))
568 return 1;
569 if (*p == '\0')
570 break;
571 p++;
572 }
573 return 0;
574 }
575
576 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
577 const char *prefix, const char *name)
578 {
579 const mon_cmd_t *cmd;
580
581 for(cmd = cmds; cmd->name != NULL; cmd++) {
582 if (!name || !strcmp(name, cmd->name))
583 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
584 cmd->params, cmd->help);
585 }
586 }
587
588 static void help_cmd(Monitor *mon, const char *name)
589 {
590 if (name && !strcmp(name, "info")) {
591 help_cmd_dump(mon, info_cmds, "info ", NULL);
592 } else {
593 help_cmd_dump(mon, mon_cmds, "", name);
594 if (name && !strcmp(name, "log")) {
595 const CPULogItem *item;
596 monitor_printf(mon, "Log items (comma separated):\n");
597 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
598 for(item = cpu_log_items; item->mask != 0; item++) {
599 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
600 }
601 }
602 }
603 }
604
605 static void do_help_cmd(Monitor *mon, const QDict *qdict)
606 {
607 help_cmd(mon, qdict_get_try_str(qdict, "name"));
608 }
609
610 static void do_trace_event_set_state(Monitor *mon, const QDict *qdict)
611 {
612 const char *tp_name = qdict_get_str(qdict, "name");
613 bool new_state = qdict_get_bool(qdict, "option");
614 int ret = trace_event_set_state(tp_name, new_state);
615
616 if (!ret) {
617 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
618 }
619 }
620
621 #ifdef CONFIG_TRACE_SIMPLE
622 static void do_trace_file(Monitor *mon, const QDict *qdict)
623 {
624 const char *op = qdict_get_try_str(qdict, "op");
625 const char *arg = qdict_get_try_str(qdict, "arg");
626
627 if (!op) {
628 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
629 } else if (!strcmp(op, "on")) {
630 st_set_trace_file_enabled(true);
631 } else if (!strcmp(op, "off")) {
632 st_set_trace_file_enabled(false);
633 } else if (!strcmp(op, "flush")) {
634 st_flush_trace_buffer();
635 } else if (!strcmp(op, "set")) {
636 if (arg) {
637 st_set_trace_file(arg);
638 }
639 } else {
640 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
641 help_cmd(mon, "trace-file");
642 }
643 }
644 #endif
645
646 static void user_monitor_complete(void *opaque, QObject *ret_data)
647 {
648 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
649
650 if (ret_data) {
651 data->user_print(data->mon, ret_data);
652 }
653 monitor_resume(data->mon);
654 g_free(data);
655 }
656
657 static void qmp_monitor_complete(void *opaque, QObject *ret_data)
658 {
659 monitor_protocol_emitter(opaque, ret_data);
660 }
661
662 static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
663 const QDict *params)
664 {
665 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
666 }
667
668 static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
669 const QDict *params)
670 {
671 int ret;
672
673 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
674 cb_data->mon = mon;
675 cb_data->user_print = cmd->user_print;
676 monitor_suspend(mon);
677 ret = cmd->mhandler.cmd_async(mon, params,
678 user_monitor_complete, cb_data);
679 if (ret < 0) {
680 monitor_resume(mon);
681 g_free(cb_data);
682 }
683 }
684
685 static void do_info(Monitor *mon, const QDict *qdict)
686 {
687 const mon_cmd_t *cmd;
688 const char *item = qdict_get_try_str(qdict, "item");
689
690 if (!item) {
691 goto help;
692 }
693
694 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
695 if (compare_cmd(item, cmd->name))
696 break;
697 }
698
699 if (cmd->name == NULL) {
700 goto help;
701 }
702
703 cmd->mhandler.info(mon);
704 return;
705
706 help:
707 help_cmd(mon, "info");
708 }
709
710 CommandInfoList *qmp_query_commands(Error **errp)
711 {
712 CommandInfoList *info, *cmd_list = NULL;
713 const mon_cmd_t *cmd;
714
715 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
716 info = g_malloc0(sizeof(*info));
717 info->value = g_malloc0(sizeof(*info->value));
718 info->value->name = g_strdup(cmd->name);
719
720 info->next = cmd_list;
721 cmd_list = info;
722 }
723
724 return cmd_list;
725 }
726
727 /* set the current CPU defined by the user */
728 int monitor_set_cpu(int cpu_index)
729 {
730 CPUState *env;
731
732 for(env = first_cpu; env != NULL; env = env->next_cpu) {
733 if (env->cpu_index == cpu_index) {
734 cur_mon->mon_cpu = env;
735 return 0;
736 }
737 }
738 return -1;
739 }
740
741 static CPUState *mon_get_cpu(void)
742 {
743 if (!cur_mon->mon_cpu) {
744 monitor_set_cpu(0);
745 }
746 cpu_synchronize_state(cur_mon->mon_cpu);
747 return cur_mon->mon_cpu;
748 }
749
750 int monitor_get_cpu_index(void)
751 {
752 return mon_get_cpu()->cpu_index;
753 }
754
755 static void do_info_registers(Monitor *mon)
756 {
757 CPUState *env;
758 env = mon_get_cpu();
759 #ifdef TARGET_I386
760 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
761 X86_DUMP_FPU);
762 #else
763 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
764 0);
765 #endif
766 }
767
768 static void do_info_jit(Monitor *mon)
769 {
770 dump_exec_info((FILE *)mon, monitor_fprintf);
771 }
772
773 static void do_info_history(Monitor *mon)
774 {
775 int i;
776 const char *str;
777
778 if (!mon->rs)
779 return;
780 i = 0;
781 for(;;) {
782 str = readline_get_history(mon->rs, i);
783 if (!str)
784 break;
785 monitor_printf(mon, "%d: '%s'\n", i, str);
786 i++;
787 }
788 }
789
790 #if defined(TARGET_PPC)
791 /* XXX: not implemented in other targets */
792 static void do_info_cpu_stats(Monitor *mon)
793 {
794 CPUState *env;
795
796 env = mon_get_cpu();
797 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
798 }
799 #endif
800
801 #if defined(CONFIG_TRACE_SIMPLE)
802 static void do_info_trace(Monitor *mon)
803 {
804 st_print_trace((FILE *)mon, &monitor_fprintf);
805 }
806 #endif
807
808 static void do_trace_print_events(Monitor *mon)
809 {
810 trace_print_events((FILE *)mon, &monitor_fprintf);
811 }
812
813 #ifdef CONFIG_VNC
814 static int change_vnc_password(const char *password)
815 {
816 if (!password || !password[0]) {
817 if (vnc_display_disable_login(NULL)) {
818 qerror_report(QERR_SET_PASSWD_FAILED);
819 return -1;
820 }
821 return 0;
822 }
823
824 if (vnc_display_password(NULL, password) < 0) {
825 qerror_report(QERR_SET_PASSWD_FAILED);
826 return -1;
827 }
828
829 return 0;
830 }
831
832 static void change_vnc_password_cb(Monitor *mon, const char *password,
833 void *opaque)
834 {
835 change_vnc_password(password);
836 monitor_read_command(mon, 1);
837 }
838
839 static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
840 {
841 if (strcmp(target, "passwd") == 0 ||
842 strcmp(target, "password") == 0) {
843 if (arg) {
844 char password[9];
845 strncpy(password, arg, sizeof(password));
846 password[sizeof(password) - 1] = '\0';
847 return change_vnc_password(password);
848 } else {
849 return monitor_read_password(mon, change_vnc_password_cb, NULL);
850 }
851 } else {
852 if (vnc_display_open(NULL, target) < 0) {
853 qerror_report(QERR_VNC_SERVER_FAILED, target);
854 return -1;
855 }
856 }
857
858 return 0;
859 }
860 #else
861 static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
862 {
863 qerror_report(QERR_FEATURE_DISABLED, "vnc");
864 return -ENODEV;
865 }
866 #endif
867
868 /**
869 * do_change(): Change a removable medium, or VNC configuration
870 */
871 static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
872 {
873 const char *device = qdict_get_str(qdict, "device");
874 const char *target = qdict_get_str(qdict, "target");
875 const char *arg = qdict_get_try_str(qdict, "arg");
876 int ret;
877
878 if (strcmp(device, "vnc") == 0) {
879 ret = do_change_vnc(mon, target, arg);
880 } else {
881 ret = do_change_block(mon, device, target, arg);
882 }
883
884 return ret;
885 }
886
887 static int set_password(Monitor *mon, const QDict *qdict, QObject **ret_data)
888 {
889 const char *protocol = qdict_get_str(qdict, "protocol");
890 const char *password = qdict_get_str(qdict, "password");
891 const char *connected = qdict_get_try_str(qdict, "connected");
892 int disconnect_if_connected = 0;
893 int fail_if_connected = 0;
894 int rc;
895
896 if (connected) {
897 if (strcmp(connected, "fail") == 0) {
898 fail_if_connected = 1;
899 } else if (strcmp(connected, "disconnect") == 0) {
900 disconnect_if_connected = 1;
901 } else if (strcmp(connected, "keep") == 0) {
902 /* nothing */
903 } else {
904 qerror_report(QERR_INVALID_PARAMETER, "connected");
905 return -1;
906 }
907 }
908
909 if (strcmp(protocol, "spice") == 0) {
910 if (!using_spice) {
911 /* correct one? spice isn't a device ,,, */
912 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
913 return -1;
914 }
915 rc = qemu_spice_set_passwd(password, fail_if_connected,
916 disconnect_if_connected);
917 if (rc != 0) {
918 qerror_report(QERR_SET_PASSWD_FAILED);
919 return -1;
920 }
921 return 0;
922 }
923
924 if (strcmp(protocol, "vnc") == 0) {
925 if (fail_if_connected || disconnect_if_connected) {
926 /* vnc supports "connected=keep" only */
927 qerror_report(QERR_INVALID_PARAMETER, "connected");
928 return -1;
929 }
930 /* Note that setting an empty password will not disable login through
931 * this interface. */
932 rc = vnc_display_password(NULL, password);
933 if (rc < 0) {
934 qerror_report(QERR_SET_PASSWD_FAILED);
935 return -1;
936 }
937 return 0;
938 }
939
940 qerror_report(QERR_INVALID_PARAMETER, "protocol");
941 return -1;
942 }
943
944 static int expire_password(Monitor *mon, const QDict *qdict, QObject **ret_data)
945 {
946 const char *protocol = qdict_get_str(qdict, "protocol");
947 const char *whenstr = qdict_get_str(qdict, "time");
948 time_t when;
949 int rc;
950
951 if (strcmp(whenstr, "now") == 0) {
952 when = 0;
953 } else if (strcmp(whenstr, "never") == 0) {
954 when = TIME_MAX;
955 } else if (whenstr[0] == '+') {
956 when = time(NULL) + strtoull(whenstr+1, NULL, 10);
957 } else {
958 when = strtoull(whenstr, NULL, 10);
959 }
960
961 if (strcmp(protocol, "spice") == 0) {
962 if (!using_spice) {
963 /* correct one? spice isn't a device ,,, */
964 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
965 return -1;
966 }
967 rc = qemu_spice_set_pw_expire(when);
968 if (rc != 0) {
969 qerror_report(QERR_SET_PASSWD_FAILED);
970 return -1;
971 }
972 return 0;
973 }
974
975 if (strcmp(protocol, "vnc") == 0) {
976 return vnc_display_pw_expire(NULL, when);
977 }
978
979 qerror_report(QERR_INVALID_PARAMETER, "protocol");
980 return -1;
981 }
982
983 static int add_graphics_client(Monitor *mon, const QDict *qdict, QObject **ret_data)
984 {
985 const char *protocol = qdict_get_str(qdict, "protocol");
986 const char *fdname = qdict_get_str(qdict, "fdname");
987 CharDriverState *s;
988
989 if (strcmp(protocol, "spice") == 0) {
990 if (!using_spice) {
991 /* correct one? spice isn't a device ,,, */
992 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
993 return -1;
994 }
995 qerror_report(QERR_ADD_CLIENT_FAILED);
996 return -1;
997 #ifdef CONFIG_VNC
998 } else if (strcmp(protocol, "vnc") == 0) {
999 int fd = monitor_get_fd(mon, fdname);
1000 int skipauth = qdict_get_try_bool(qdict, "skipauth", 0);
1001 vnc_display_add_client(NULL, fd, skipauth);
1002 return 0;
1003 #endif
1004 } else if ((s = qemu_chr_find(protocol)) != NULL) {
1005 int fd = monitor_get_fd(mon, fdname);
1006 if (qemu_chr_add_client(s, fd) < 0) {
1007 qerror_report(QERR_ADD_CLIENT_FAILED);
1008 return -1;
1009 }
1010 return 0;
1011 }
1012
1013 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1014 return -1;
1015 }
1016
1017 static int client_migrate_info(Monitor *mon, const QDict *qdict,
1018 MonitorCompletion cb, void *opaque)
1019 {
1020 const char *protocol = qdict_get_str(qdict, "protocol");
1021 const char *hostname = qdict_get_str(qdict, "hostname");
1022 const char *subject = qdict_get_try_str(qdict, "cert-subject");
1023 int port = qdict_get_try_int(qdict, "port", -1);
1024 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
1025 int ret;
1026
1027 if (strcmp(protocol, "spice") == 0) {
1028 if (!using_spice) {
1029 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1030 return -1;
1031 }
1032
1033 ret = qemu_spice_migrate_info(hostname, port, tls_port, subject,
1034 cb, opaque);
1035 if (ret != 0) {
1036 qerror_report(QERR_UNDEFINED_ERROR);
1037 return -1;
1038 }
1039 return 0;
1040 }
1041
1042 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1043 return -1;
1044 }
1045
1046 static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
1047 {
1048 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
1049 return 0;
1050 }
1051
1052 static void do_logfile(Monitor *mon, const QDict *qdict)
1053 {
1054 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
1055 }
1056
1057 static void do_log(Monitor *mon, const QDict *qdict)
1058 {
1059 int mask;
1060 const char *items = qdict_get_str(qdict, "items");
1061
1062 if (!strcmp(items, "none")) {
1063 mask = 0;
1064 } else {
1065 mask = cpu_str_to_log_mask(items);
1066 if (!mask) {
1067 help_cmd(mon, "log");
1068 return;
1069 }
1070 }
1071 cpu_set_log(mask);
1072 }
1073
1074 static void do_singlestep(Monitor *mon, const QDict *qdict)
1075 {
1076 const char *option = qdict_get_try_str(qdict, "option");
1077 if (!option || !strcmp(option, "on")) {
1078 singlestep = 1;
1079 } else if (!strcmp(option, "off")) {
1080 singlestep = 0;
1081 } else {
1082 monitor_printf(mon, "unexpected option %s\n", option);
1083 }
1084 }
1085
1086 static void do_gdbserver(Monitor *mon, const QDict *qdict)
1087 {
1088 const char *device = qdict_get_try_str(qdict, "device");
1089 if (!device)
1090 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1091 if (gdbserver_start(device) < 0) {
1092 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1093 device);
1094 } else if (strcmp(device, "none") == 0) {
1095 monitor_printf(mon, "Disabled gdbserver\n");
1096 } else {
1097 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1098 device);
1099 }
1100 }
1101
1102 static void do_watchdog_action(Monitor *mon, const QDict *qdict)
1103 {
1104 const char *action = qdict_get_str(qdict, "action");
1105 if (select_watchdog_action(action) == -1) {
1106 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1107 }
1108 }
1109
1110 static void monitor_printc(Monitor *mon, int c)
1111 {
1112 monitor_printf(mon, "'");
1113 switch(c) {
1114 case '\'':
1115 monitor_printf(mon, "\\'");
1116 break;
1117 case '\\':
1118 monitor_printf(mon, "\\\\");
1119 break;
1120 case '\n':
1121 monitor_printf(mon, "\\n");
1122 break;
1123 case '\r':
1124 monitor_printf(mon, "\\r");
1125 break;
1126 default:
1127 if (c >= 32 && c <= 126) {
1128 monitor_printf(mon, "%c", c);
1129 } else {
1130 monitor_printf(mon, "\\x%02x", c);
1131 }
1132 break;
1133 }
1134 monitor_printf(mon, "'");
1135 }
1136
1137 static void memory_dump(Monitor *mon, int count, int format, int wsize,
1138 target_phys_addr_t addr, int is_physical)
1139 {
1140 CPUState *env;
1141 int l, line_size, i, max_digits, len;
1142 uint8_t buf[16];
1143 uint64_t v;
1144
1145 if (format == 'i') {
1146 int flags;
1147 flags = 0;
1148 env = mon_get_cpu();
1149 #ifdef TARGET_I386
1150 if (wsize == 2) {
1151 flags = 1;
1152 } else if (wsize == 4) {
1153 flags = 0;
1154 } else {
1155 /* as default we use the current CS size */
1156 flags = 0;
1157 if (env) {
1158 #ifdef TARGET_X86_64
1159 if ((env->efer & MSR_EFER_LMA) &&
1160 (env->segs[R_CS].flags & DESC_L_MASK))
1161 flags = 2;
1162 else
1163 #endif
1164 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1165 flags = 1;
1166 }
1167 }
1168 #endif
1169 monitor_disas(mon, env, addr, count, is_physical, flags);
1170 return;
1171 }
1172
1173 len = wsize * count;
1174 if (wsize == 1)
1175 line_size = 8;
1176 else
1177 line_size = 16;
1178 max_digits = 0;
1179
1180 switch(format) {
1181 case 'o':
1182 max_digits = (wsize * 8 + 2) / 3;
1183 break;
1184 default:
1185 case 'x':
1186 max_digits = (wsize * 8) / 4;
1187 break;
1188 case 'u':
1189 case 'd':
1190 max_digits = (wsize * 8 * 10 + 32) / 33;
1191 break;
1192 case 'c':
1193 wsize = 1;
1194 break;
1195 }
1196
1197 while (len > 0) {
1198 if (is_physical)
1199 monitor_printf(mon, TARGET_FMT_plx ":", addr);
1200 else
1201 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
1202 l = len;
1203 if (l > line_size)
1204 l = line_size;
1205 if (is_physical) {
1206 cpu_physical_memory_read(addr, buf, l);
1207 } else {
1208 env = mon_get_cpu();
1209 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
1210 monitor_printf(mon, " Cannot access memory\n");
1211 break;
1212 }
1213 }
1214 i = 0;
1215 while (i < l) {
1216 switch(wsize) {
1217 default:
1218 case 1:
1219 v = ldub_raw(buf + i);
1220 break;
1221 case 2:
1222 v = lduw_raw(buf + i);
1223 break;
1224 case 4:
1225 v = (uint32_t)ldl_raw(buf + i);
1226 break;
1227 case 8:
1228 v = ldq_raw(buf + i);
1229 break;
1230 }
1231 monitor_printf(mon, " ");
1232 switch(format) {
1233 case 'o':
1234 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
1235 break;
1236 case 'x':
1237 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
1238 break;
1239 case 'u':
1240 monitor_printf(mon, "%*" PRIu64, max_digits, v);
1241 break;
1242 case 'd':
1243 monitor_printf(mon, "%*" PRId64, max_digits, v);
1244 break;
1245 case 'c':
1246 monitor_printc(mon, v);
1247 break;
1248 }
1249 i += wsize;
1250 }
1251 monitor_printf(mon, "\n");
1252 addr += l;
1253 len -= l;
1254 }
1255 }
1256
1257 static void do_memory_dump(Monitor *mon, const QDict *qdict)
1258 {
1259 int count = qdict_get_int(qdict, "count");
1260 int format = qdict_get_int(qdict, "format");
1261 int size = qdict_get_int(qdict, "size");
1262 target_long addr = qdict_get_int(qdict, "addr");
1263
1264 memory_dump(mon, count, format, size, addr, 0);
1265 }
1266
1267 static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
1268 {
1269 int count = qdict_get_int(qdict, "count");
1270 int format = qdict_get_int(qdict, "format");
1271 int size = qdict_get_int(qdict, "size");
1272 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
1273
1274 memory_dump(mon, count, format, size, addr, 1);
1275 }
1276
1277 static void do_print(Monitor *mon, const QDict *qdict)
1278 {
1279 int format = qdict_get_int(qdict, "format");
1280 target_phys_addr_t val = qdict_get_int(qdict, "val");
1281
1282 #if TARGET_PHYS_ADDR_BITS == 32
1283 switch(format) {
1284 case 'o':
1285 monitor_printf(mon, "%#o", val);
1286 break;
1287 case 'x':
1288 monitor_printf(mon, "%#x", val);
1289 break;
1290 case 'u':
1291 monitor_printf(mon, "%u", val);
1292 break;
1293 default:
1294 case 'd':
1295 monitor_printf(mon, "%d", val);
1296 break;
1297 case 'c':
1298 monitor_printc(mon, val);
1299 break;
1300 }
1301 #else
1302 switch(format) {
1303 case 'o':
1304 monitor_printf(mon, "%#" PRIo64, val);
1305 break;
1306 case 'x':
1307 monitor_printf(mon, "%#" PRIx64, val);
1308 break;
1309 case 'u':
1310 monitor_printf(mon, "%" PRIu64, val);
1311 break;
1312 default:
1313 case 'd':
1314 monitor_printf(mon, "%" PRId64, val);
1315 break;
1316 case 'c':
1317 monitor_printc(mon, val);
1318 break;
1319 }
1320 #endif
1321 monitor_printf(mon, "\n");
1322 }
1323
1324 static void do_sum(Monitor *mon, const QDict *qdict)
1325 {
1326 uint32_t addr;
1327 uint16_t sum;
1328 uint32_t start = qdict_get_int(qdict, "start");
1329 uint32_t size = qdict_get_int(qdict, "size");
1330
1331 sum = 0;
1332 for(addr = start; addr < (start + size); addr++) {
1333 uint8_t val = ldub_phys(addr);
1334 /* BSD sum algorithm ('sum' Unix command) */
1335 sum = (sum >> 1) | (sum << 15);
1336 sum += val;
1337 }
1338 monitor_printf(mon, "%05d\n", sum);
1339 }
1340
1341 typedef struct {
1342 int keycode;
1343 const char *name;
1344 } KeyDef;
1345
1346 static const KeyDef key_defs[] = {
1347 { 0x2a, "shift" },
1348 { 0x36, "shift_r" },
1349
1350 { 0x38, "alt" },
1351 { 0xb8, "alt_r" },
1352 { 0x64, "altgr" },
1353 { 0xe4, "altgr_r" },
1354 { 0x1d, "ctrl" },
1355 { 0x9d, "ctrl_r" },
1356
1357 { 0xdd, "menu" },
1358
1359 { 0x01, "esc" },
1360
1361 { 0x02, "1" },
1362 { 0x03, "2" },
1363 { 0x04, "3" },
1364 { 0x05, "4" },
1365 { 0x06, "5" },
1366 { 0x07, "6" },
1367 { 0x08, "7" },
1368 { 0x09, "8" },
1369 { 0x0a, "9" },
1370 { 0x0b, "0" },
1371 { 0x0c, "minus" },
1372 { 0x0d, "equal" },
1373 { 0x0e, "backspace" },
1374
1375 { 0x0f, "tab" },
1376 { 0x10, "q" },
1377 { 0x11, "w" },
1378 { 0x12, "e" },
1379 { 0x13, "r" },
1380 { 0x14, "t" },
1381 { 0x15, "y" },
1382 { 0x16, "u" },
1383 { 0x17, "i" },
1384 { 0x18, "o" },
1385 { 0x19, "p" },
1386 { 0x1a, "bracket_left" },
1387 { 0x1b, "bracket_right" },
1388 { 0x1c, "ret" },
1389
1390 { 0x1e, "a" },
1391 { 0x1f, "s" },
1392 { 0x20, "d" },
1393 { 0x21, "f" },
1394 { 0x22, "g" },
1395 { 0x23, "h" },
1396 { 0x24, "j" },
1397 { 0x25, "k" },
1398 { 0x26, "l" },
1399 { 0x27, "semicolon" },
1400 { 0x28, "apostrophe" },
1401 { 0x29, "grave_accent" },
1402
1403 { 0x2b, "backslash" },
1404 { 0x2c, "z" },
1405 { 0x2d, "x" },
1406 { 0x2e, "c" },
1407 { 0x2f, "v" },
1408 { 0x30, "b" },
1409 { 0x31, "n" },
1410 { 0x32, "m" },
1411 { 0x33, "comma" },
1412 { 0x34, "dot" },
1413 { 0x35, "slash" },
1414
1415 { 0x37, "asterisk" },
1416
1417 { 0x39, "spc" },
1418 { 0x3a, "caps_lock" },
1419 { 0x3b, "f1" },
1420 { 0x3c, "f2" },
1421 { 0x3d, "f3" },
1422 { 0x3e, "f4" },
1423 { 0x3f, "f5" },
1424 { 0x40, "f6" },
1425 { 0x41, "f7" },
1426 { 0x42, "f8" },
1427 { 0x43, "f9" },
1428 { 0x44, "f10" },
1429 { 0x45, "num_lock" },
1430 { 0x46, "scroll_lock" },
1431
1432 { 0xb5, "kp_divide" },
1433 { 0x37, "kp_multiply" },
1434 { 0x4a, "kp_subtract" },
1435 { 0x4e, "kp_add" },
1436 { 0x9c, "kp_enter" },
1437 { 0x53, "kp_decimal" },
1438 { 0x54, "sysrq" },
1439
1440 { 0x52, "kp_0" },
1441 { 0x4f, "kp_1" },
1442 { 0x50, "kp_2" },
1443 { 0x51, "kp_3" },
1444 { 0x4b, "kp_4" },
1445 { 0x4c, "kp_5" },
1446 { 0x4d, "kp_6" },
1447 { 0x47, "kp_7" },
1448 { 0x48, "kp_8" },
1449 { 0x49, "kp_9" },
1450
1451 { 0x56, "<" },
1452
1453 { 0x57, "f11" },
1454 { 0x58, "f12" },
1455
1456 { 0xb7, "print" },
1457
1458 { 0xc7, "home" },
1459 { 0xc9, "pgup" },
1460 { 0xd1, "pgdn" },
1461 { 0xcf, "end" },
1462
1463 { 0xcb, "left" },
1464 { 0xc8, "up" },
1465 { 0xd0, "down" },
1466 { 0xcd, "right" },
1467
1468 { 0xd2, "insert" },
1469 { 0xd3, "delete" },
1470 #if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1471 { 0xf0, "stop" },
1472 { 0xf1, "again" },
1473 { 0xf2, "props" },
1474 { 0xf3, "undo" },
1475 { 0xf4, "front" },
1476 { 0xf5, "copy" },
1477 { 0xf6, "open" },
1478 { 0xf7, "paste" },
1479 { 0xf8, "find" },
1480 { 0xf9, "cut" },
1481 { 0xfa, "lf" },
1482 { 0xfb, "help" },
1483 { 0xfc, "meta_l" },
1484 { 0xfd, "meta_r" },
1485 { 0xfe, "compose" },
1486 #endif
1487 { 0, NULL },
1488 };
1489
1490 static int get_keycode(const char *key)
1491 {
1492 const KeyDef *p;
1493 char *endp;
1494 int ret;
1495
1496 for(p = key_defs; p->name != NULL; p++) {
1497 if (!strcmp(key, p->name))
1498 return p->keycode;
1499 }
1500 if (strstart(key, "0x", NULL)) {
1501 ret = strtoul(key, &endp, 0);
1502 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1503 return ret;
1504 }
1505 return -1;
1506 }
1507
1508 #define MAX_KEYCODES 16
1509 static uint8_t keycodes[MAX_KEYCODES];
1510 static int nb_pending_keycodes;
1511 static QEMUTimer *key_timer;
1512
1513 static void release_keys(void *opaque)
1514 {
1515 int keycode;
1516
1517 while (nb_pending_keycodes > 0) {
1518 nb_pending_keycodes--;
1519 keycode = keycodes[nb_pending_keycodes];
1520 if (keycode & 0x80)
1521 kbd_put_keycode(0xe0);
1522 kbd_put_keycode(keycode | 0x80);
1523 }
1524 }
1525
1526 static void do_sendkey(Monitor *mon, const QDict *qdict)
1527 {
1528 char keyname_buf[16];
1529 char *separator;
1530 int keyname_len, keycode, i;
1531 const char *string = qdict_get_str(qdict, "string");
1532 int has_hold_time = qdict_haskey(qdict, "hold_time");
1533 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
1534
1535 if (nb_pending_keycodes > 0) {
1536 qemu_del_timer(key_timer);
1537 release_keys(NULL);
1538 }
1539 if (!has_hold_time)
1540 hold_time = 100;
1541 i = 0;
1542 while (1) {
1543 separator = strchr(string, '-');
1544 keyname_len = separator ? separator - string : strlen(string);
1545 if (keyname_len > 0) {
1546 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1547 if (keyname_len > sizeof(keyname_buf) - 1) {
1548 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
1549 return;
1550 }
1551 if (i == MAX_KEYCODES) {
1552 monitor_printf(mon, "too many keys\n");
1553 return;
1554 }
1555 keyname_buf[keyname_len] = 0;
1556 keycode = get_keycode(keyname_buf);
1557 if (keycode < 0) {
1558 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
1559 return;
1560 }
1561 keycodes[i++] = keycode;
1562 }
1563 if (!separator)
1564 break;
1565 string = separator + 1;
1566 }
1567 nb_pending_keycodes = i;
1568 /* key down events */
1569 for (i = 0; i < nb_pending_keycodes; i++) {
1570 keycode = keycodes[i];
1571 if (keycode & 0x80)
1572 kbd_put_keycode(0xe0);
1573 kbd_put_keycode(keycode & 0x7f);
1574 }
1575 /* delayed key up events */
1576 qemu_mod_timer(key_timer, qemu_get_clock_ns(vm_clock) +
1577 muldiv64(get_ticks_per_sec(), hold_time, 1000));
1578 }
1579
1580 static int mouse_button_state;
1581
1582 static void do_mouse_move(Monitor *mon, const QDict *qdict)
1583 {
1584 int dx, dy, dz;
1585 const char *dx_str = qdict_get_str(qdict, "dx_str");
1586 const char *dy_str = qdict_get_str(qdict, "dy_str");
1587 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
1588 dx = strtol(dx_str, NULL, 0);
1589 dy = strtol(dy_str, NULL, 0);
1590 dz = 0;
1591 if (dz_str)
1592 dz = strtol(dz_str, NULL, 0);
1593 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1594 }
1595
1596 static void do_mouse_button(Monitor *mon, const QDict *qdict)
1597 {
1598 int button_state = qdict_get_int(qdict, "button_state");
1599 mouse_button_state = button_state;
1600 kbd_mouse_event(0, 0, 0, mouse_button_state);
1601 }
1602
1603 static void do_ioport_read(Monitor *mon, const QDict *qdict)
1604 {
1605 int size = qdict_get_int(qdict, "size");
1606 int addr = qdict_get_int(qdict, "addr");
1607 int has_index = qdict_haskey(qdict, "index");
1608 uint32_t val;
1609 int suffix;
1610
1611 if (has_index) {
1612 int index = qdict_get_int(qdict, "index");
1613 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
1614 addr++;
1615 }
1616 addr &= 0xffff;
1617
1618 switch(size) {
1619 default:
1620 case 1:
1621 val = cpu_inb(addr);
1622 suffix = 'b';
1623 break;
1624 case 2:
1625 val = cpu_inw(addr);
1626 suffix = 'w';
1627 break;
1628 case 4:
1629 val = cpu_inl(addr);
1630 suffix = 'l';
1631 break;
1632 }
1633 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1634 suffix, addr, size * 2, val);
1635 }
1636
1637 static void do_ioport_write(Monitor *mon, const QDict *qdict)
1638 {
1639 int size = qdict_get_int(qdict, "size");
1640 int addr = qdict_get_int(qdict, "addr");
1641 int val = qdict_get_int(qdict, "val");
1642
1643 addr &= IOPORTS_MASK;
1644
1645 switch (size) {
1646 default:
1647 case 1:
1648 cpu_outb(addr, val);
1649 break;
1650 case 2:
1651 cpu_outw(addr, val);
1652 break;
1653 case 4:
1654 cpu_outl(addr, val);
1655 break;
1656 }
1657 }
1658
1659 static void do_boot_set(Monitor *mon, const QDict *qdict)
1660 {
1661 int res;
1662 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
1663
1664 res = qemu_boot_set(bootdevice);
1665 if (res == 0) {
1666 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1667 } else if (res > 0) {
1668 monitor_printf(mon, "setting boot device list failed\n");
1669 } else {
1670 monitor_printf(mon, "no function defined to set boot device list for "
1671 "this architecture\n");
1672 }
1673 }
1674
1675 #if defined(TARGET_I386)
1676 static void print_pte(Monitor *mon, target_phys_addr_t addr,
1677 target_phys_addr_t pte,
1678 target_phys_addr_t mask)
1679 {
1680 #ifdef TARGET_X86_64
1681 if (addr & (1ULL << 47)) {
1682 addr |= -1LL << 48;
1683 }
1684 #endif
1685 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1686 " %c%c%c%c%c%c%c%c%c\n",
1687 addr,
1688 pte & mask,
1689 pte & PG_NX_MASK ? 'X' : '-',
1690 pte & PG_GLOBAL_MASK ? 'G' : '-',
1691 pte & PG_PSE_MASK ? 'P' : '-',
1692 pte & PG_DIRTY_MASK ? 'D' : '-',
1693 pte & PG_ACCESSED_MASK ? 'A' : '-',
1694 pte & PG_PCD_MASK ? 'C' : '-',
1695 pte & PG_PWT_MASK ? 'T' : '-',
1696 pte & PG_USER_MASK ? 'U' : '-',
1697 pte & PG_RW_MASK ? 'W' : '-');
1698 }
1699
1700 static void tlb_info_32(Monitor *mon, CPUState *env)
1701 {
1702 unsigned int l1, l2;
1703 uint32_t pgd, pde, pte;
1704
1705 pgd = env->cr[3] & ~0xfff;
1706 for(l1 = 0; l1 < 1024; l1++) {
1707 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
1708 pde = le32_to_cpu(pde);
1709 if (pde & PG_PRESENT_MASK) {
1710 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1711 /* 4M pages */
1712 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
1713 } else {
1714 for(l2 = 0; l2 < 1024; l2++) {
1715 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
1716 pte = le32_to_cpu(pte);
1717 if (pte & PG_PRESENT_MASK) {
1718 print_pte(mon, (l1 << 22) + (l2 << 12),
1719 pte & ~PG_PSE_MASK,
1720 ~0xfff);
1721 }
1722 }
1723 }
1724 }
1725 }
1726 }
1727
1728 static void tlb_info_pae32(Monitor *mon, CPUState *env)
1729 {
1730 unsigned int l1, l2, l3;
1731 uint64_t pdpe, pde, pte;
1732 uint64_t pdp_addr, pd_addr, pt_addr;
1733
1734 pdp_addr = env->cr[3] & ~0x1f;
1735 for (l1 = 0; l1 < 4; l1++) {
1736 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
1737 pdpe = le64_to_cpu(pdpe);
1738 if (pdpe & PG_PRESENT_MASK) {
1739 pd_addr = pdpe & 0x3fffffffff000ULL;
1740 for (l2 = 0; l2 < 512; l2++) {
1741 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
1742 pde = le64_to_cpu(pde);
1743 if (pde & PG_PRESENT_MASK) {
1744 if (pde & PG_PSE_MASK) {
1745 /* 2M pages with PAE, CR4.PSE is ignored */
1746 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
1747 ~((target_phys_addr_t)(1 << 20) - 1));
1748 } else {
1749 pt_addr = pde & 0x3fffffffff000ULL;
1750 for (l3 = 0; l3 < 512; l3++) {
1751 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
1752 pte = le64_to_cpu(pte);
1753 if (pte & PG_PRESENT_MASK) {
1754 print_pte(mon, (l1 << 30 ) + (l2 << 21)
1755 + (l3 << 12),
1756 pte & ~PG_PSE_MASK,
1757 ~(target_phys_addr_t)0xfff);
1758 }
1759 }
1760 }
1761 }
1762 }
1763 }
1764 }
1765 }
1766
1767 #ifdef TARGET_X86_64
1768 static void tlb_info_64(Monitor *mon, CPUState *env)
1769 {
1770 uint64_t l1, l2, l3, l4;
1771 uint64_t pml4e, pdpe, pde, pte;
1772 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
1773
1774 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1775 for (l1 = 0; l1 < 512; l1++) {
1776 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
1777 pml4e = le64_to_cpu(pml4e);
1778 if (pml4e & PG_PRESENT_MASK) {
1779 pdp_addr = pml4e & 0x3fffffffff000ULL;
1780 for (l2 = 0; l2 < 512; l2++) {
1781 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
1782 pdpe = le64_to_cpu(pdpe);
1783 if (pdpe & PG_PRESENT_MASK) {
1784 if (pdpe & PG_PSE_MASK) {
1785 /* 1G pages, CR4.PSE is ignored */
1786 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
1787 0x3ffffc0000000ULL);
1788 } else {
1789 pd_addr = pdpe & 0x3fffffffff000ULL;
1790 for (l3 = 0; l3 < 512; l3++) {
1791 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
1792 pde = le64_to_cpu(pde);
1793 if (pde & PG_PRESENT_MASK) {
1794 if (pde & PG_PSE_MASK) {
1795 /* 2M pages, CR4.PSE is ignored */
1796 print_pte(mon, (l1 << 39) + (l2 << 30) +
1797 (l3 << 21), pde,
1798 0x3ffffffe00000ULL);
1799 } else {
1800 pt_addr = pde & 0x3fffffffff000ULL;
1801 for (l4 = 0; l4 < 512; l4++) {
1802 cpu_physical_memory_read(pt_addr
1803 + l4 * 8,
1804 &pte, 8);
1805 pte = le64_to_cpu(pte);
1806 if (pte & PG_PRESENT_MASK) {
1807 print_pte(mon, (l1 << 39) +
1808 (l2 << 30) +
1809 (l3 << 21) + (l4 << 12),
1810 pte & ~PG_PSE_MASK,
1811 0x3fffffffff000ULL);
1812 }
1813 }
1814 }
1815 }
1816 }
1817 }
1818 }
1819 }
1820 }
1821 }
1822 }
1823 #endif
1824
1825 static void tlb_info(Monitor *mon)
1826 {
1827 CPUState *env;
1828
1829 env = mon_get_cpu();
1830
1831 if (!(env->cr[0] & CR0_PG_MASK)) {
1832 monitor_printf(mon, "PG disabled\n");
1833 return;
1834 }
1835 if (env->cr[4] & CR4_PAE_MASK) {
1836 #ifdef TARGET_X86_64
1837 if (env->hflags & HF_LMA_MASK) {
1838 tlb_info_64(mon, env);
1839 } else
1840 #endif
1841 {
1842 tlb_info_pae32(mon, env);
1843 }
1844 } else {
1845 tlb_info_32(mon, env);
1846 }
1847 }
1848
1849 static void mem_print(Monitor *mon, target_phys_addr_t *pstart,
1850 int *plast_prot,
1851 target_phys_addr_t end, int prot)
1852 {
1853 int prot1;
1854 prot1 = *plast_prot;
1855 if (prot != prot1) {
1856 if (*pstart != -1) {
1857 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
1858 TARGET_FMT_plx " %c%c%c\n",
1859 *pstart, end, end - *pstart,
1860 prot1 & PG_USER_MASK ? 'u' : '-',
1861 'r',
1862 prot1 & PG_RW_MASK ? 'w' : '-');
1863 }
1864 if (prot != 0)
1865 *pstart = end;
1866 else
1867 *pstart = -1;
1868 *plast_prot = prot;
1869 }
1870 }
1871
1872 static void mem_info_32(Monitor *mon, CPUState *env)
1873 {
1874 unsigned int l1, l2;
1875 int prot, last_prot;
1876 uint32_t pgd, pde, pte;
1877 target_phys_addr_t start, end;
1878
1879 pgd = env->cr[3] & ~0xfff;
1880 last_prot = 0;
1881 start = -1;
1882 for(l1 = 0; l1 < 1024; l1++) {
1883 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
1884 pde = le32_to_cpu(pde);
1885 end = l1 << 22;
1886 if (pde & PG_PRESENT_MASK) {
1887 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1888 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1889 mem_print(mon, &start, &last_prot, end, prot);
1890 } else {
1891 for(l2 = 0; l2 < 1024; l2++) {
1892 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
1893 pte = le32_to_cpu(pte);
1894 end = (l1 << 22) + (l2 << 12);
1895 if (pte & PG_PRESENT_MASK) {
1896 prot = pte & pde &
1897 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1898 } else {
1899 prot = 0;
1900 }
1901 mem_print(mon, &start, &last_prot, end, prot);
1902 }
1903 }
1904 } else {
1905 prot = 0;
1906 mem_print(mon, &start, &last_prot, end, prot);
1907 }
1908 }
1909 /* Flush last range */
1910 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
1911 }
1912
1913 static void mem_info_pae32(Monitor *mon, CPUState *env)
1914 {
1915 unsigned int l1, l2, l3;
1916 int prot, last_prot;
1917 uint64_t pdpe, pde, pte;
1918 uint64_t pdp_addr, pd_addr, pt_addr;
1919 target_phys_addr_t start, end;
1920
1921 pdp_addr = env->cr[3] & ~0x1f;
1922 last_prot = 0;
1923 start = -1;
1924 for (l1 = 0; l1 < 4; l1++) {
1925 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
1926 pdpe = le64_to_cpu(pdpe);
1927 end = l1 << 30;
1928 if (pdpe & PG_PRESENT_MASK) {
1929 pd_addr = pdpe & 0x3fffffffff000ULL;
1930 for (l2 = 0; l2 < 512; l2++) {
1931 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
1932 pde = le64_to_cpu(pde);
1933 end = (l1 << 30) + (l2 << 21);
1934 if (pde & PG_PRESENT_MASK) {
1935 if (pde & PG_PSE_MASK) {
1936 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1937 PG_PRESENT_MASK);
1938 mem_print(mon, &start, &last_prot, end, prot);
1939 } else {
1940 pt_addr = pde & 0x3fffffffff000ULL;
1941 for (l3 = 0; l3 < 512; l3++) {
1942 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
1943 pte = le64_to_cpu(pte);
1944 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
1945 if (pte & PG_PRESENT_MASK) {
1946 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
1947 PG_PRESENT_MASK);
1948 } else {
1949 prot = 0;
1950 }
1951 mem_print(mon, &start, &last_prot, end, prot);
1952 }
1953 }
1954 } else {
1955 prot = 0;
1956 mem_print(mon, &start, &last_prot, end, prot);
1957 }
1958 }
1959 } else {
1960 prot = 0;
1961 mem_print(mon, &start, &last_prot, end, prot);
1962 }
1963 }
1964 /* Flush last range */
1965 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
1966 }
1967
1968
1969 #ifdef TARGET_X86_64
1970 static void mem_info_64(Monitor *mon, CPUState *env)
1971 {
1972 int prot, last_prot;
1973 uint64_t l1, l2, l3, l4;
1974 uint64_t pml4e, pdpe, pde, pte;
1975 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
1976
1977 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1978 last_prot = 0;
1979 start = -1;
1980 for (l1 = 0; l1 < 512; l1++) {
1981 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
1982 pml4e = le64_to_cpu(pml4e);
1983 end = l1 << 39;
1984 if (pml4e & PG_PRESENT_MASK) {
1985 pdp_addr = pml4e & 0x3fffffffff000ULL;
1986 for (l2 = 0; l2 < 512; l2++) {
1987 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
1988 pdpe = le64_to_cpu(pdpe);
1989 end = (l1 << 39) + (l2 << 30);
1990 if (pdpe & PG_PRESENT_MASK) {
1991 if (pdpe & PG_PSE_MASK) {
1992 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
1993 PG_PRESENT_MASK);
1994 prot &= pml4e;
1995 mem_print(mon, &start, &last_prot, end, prot);
1996 } else {
1997 pd_addr = pdpe & 0x3fffffffff000ULL;
1998 for (l3 = 0; l3 < 512; l3++) {
1999 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
2000 pde = le64_to_cpu(pde);
2001 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
2002 if (pde & PG_PRESENT_MASK) {
2003 if (pde & PG_PSE_MASK) {
2004 prot = pde & (PG_USER_MASK | PG_RW_MASK |
2005 PG_PRESENT_MASK);
2006 prot &= pml4e & pdpe;
2007 mem_print(mon, &start, &last_prot, end, prot);
2008 } else {
2009 pt_addr = pde & 0x3fffffffff000ULL;
2010 for (l4 = 0; l4 < 512; l4++) {
2011 cpu_physical_memory_read(pt_addr
2012 + l4 * 8,
2013 &pte, 8);
2014 pte = le64_to_cpu(pte);
2015 end = (l1 << 39) + (l2 << 30) +
2016 (l3 << 21) + (l4 << 12);
2017 if (pte & PG_PRESENT_MASK) {
2018 prot = pte & (PG_USER_MASK | PG_RW_MASK |
2019 PG_PRESENT_MASK);
2020 prot &= pml4e & pdpe & pde;
2021 } else {
2022 prot = 0;
2023 }
2024 mem_print(mon, &start, &last_prot, end, prot);
2025 }
2026 }
2027 } else {
2028 prot = 0;
2029 mem_print(mon, &start, &last_prot, end, prot);
2030 }
2031 }
2032 }
2033 } else {
2034 prot = 0;
2035 mem_print(mon, &start, &last_prot, end, prot);
2036 }
2037 }
2038 } else {
2039 prot = 0;
2040 mem_print(mon, &start, &last_prot, end, prot);
2041 }
2042 }
2043 /* Flush last range */
2044 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 48, 0);
2045 }
2046 #endif
2047
2048 static void mem_info(Monitor *mon)
2049 {
2050 CPUState *env;
2051
2052 env = mon_get_cpu();
2053
2054 if (!(env->cr[0] & CR0_PG_MASK)) {
2055 monitor_printf(mon, "PG disabled\n");
2056 return;
2057 }
2058 if (env->cr[4] & CR4_PAE_MASK) {
2059 #ifdef TARGET_X86_64
2060 if (env->hflags & HF_LMA_MASK) {
2061 mem_info_64(mon, env);
2062 } else
2063 #endif
2064 {
2065 mem_info_pae32(mon, env);
2066 }
2067 } else {
2068 mem_info_32(mon, env);
2069 }
2070 }
2071 #endif
2072
2073 #if defined(TARGET_SH4)
2074
2075 static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
2076 {
2077 monitor_printf(mon, " tlb%i:\t"
2078 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
2079 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
2080 "dirty=%hhu writethrough=%hhu\n",
2081 idx,
2082 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
2083 tlb->v, tlb->sh, tlb->c, tlb->pr,
2084 tlb->d, tlb->wt);
2085 }
2086
2087 static void tlb_info(Monitor *mon)
2088 {
2089 CPUState *env = mon_get_cpu();
2090 int i;
2091
2092 monitor_printf (mon, "ITLB:\n");
2093 for (i = 0 ; i < ITLB_SIZE ; i++)
2094 print_tlb (mon, i, &env->itlb[i]);
2095 monitor_printf (mon, "UTLB:\n");
2096 for (i = 0 ; i < UTLB_SIZE ; i++)
2097 print_tlb (mon, i, &env->utlb[i]);
2098 }
2099
2100 #endif
2101
2102 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
2103 static void tlb_info(Monitor *mon)
2104 {
2105 CPUState *env1 = mon_get_cpu();
2106
2107 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
2108 }
2109 #endif
2110
2111 static void do_info_mtree(Monitor *mon)
2112 {
2113 mtree_info((fprintf_function)monitor_printf, mon);
2114 }
2115
2116 static void do_info_numa(Monitor *mon)
2117 {
2118 int i;
2119 CPUState *env;
2120
2121 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2122 for (i = 0; i < nb_numa_nodes; i++) {
2123 monitor_printf(mon, "node %d cpus:", i);
2124 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2125 if (env->numa_node == i) {
2126 monitor_printf(mon, " %d", env->cpu_index);
2127 }
2128 }
2129 monitor_printf(mon, "\n");
2130 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2131 node_mem[i] >> 20);
2132 }
2133 }
2134
2135 #ifdef CONFIG_PROFILER
2136
2137 int64_t qemu_time;
2138 int64_t dev_time;
2139
2140 static void do_info_profile(Monitor *mon)
2141 {
2142 int64_t total;
2143 total = qemu_time;
2144 if (total == 0)
2145 total = 1;
2146 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
2147 dev_time, dev_time / (double)get_ticks_per_sec());
2148 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
2149 qemu_time, qemu_time / (double)get_ticks_per_sec());
2150 qemu_time = 0;
2151 dev_time = 0;
2152 }
2153 #else
2154 static void do_info_profile(Monitor *mon)
2155 {
2156 monitor_printf(mon, "Internal profiler not compiled\n");
2157 }
2158 #endif
2159
2160 /* Capture support */
2161 static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
2162
2163 static void do_info_capture(Monitor *mon)
2164 {
2165 int i;
2166 CaptureState *s;
2167
2168 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2169 monitor_printf(mon, "[%d]: ", i);
2170 s->ops.info (s->opaque);
2171 }
2172 }
2173
2174 #ifdef HAS_AUDIO
2175 static void do_stop_capture(Monitor *mon, const QDict *qdict)
2176 {
2177 int i;
2178 int n = qdict_get_int(qdict, "n");
2179 CaptureState *s;
2180
2181 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2182 if (i == n) {
2183 s->ops.destroy (s->opaque);
2184 QLIST_REMOVE (s, entries);
2185 g_free (s);
2186 return;
2187 }
2188 }
2189 }
2190
2191 static void do_wav_capture(Monitor *mon, const QDict *qdict)
2192 {
2193 const char *path = qdict_get_str(qdict, "path");
2194 int has_freq = qdict_haskey(qdict, "freq");
2195 int freq = qdict_get_try_int(qdict, "freq", -1);
2196 int has_bits = qdict_haskey(qdict, "bits");
2197 int bits = qdict_get_try_int(qdict, "bits", -1);
2198 int has_channels = qdict_haskey(qdict, "nchannels");
2199 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
2200 CaptureState *s;
2201
2202 s = g_malloc0 (sizeof (*s));
2203
2204 freq = has_freq ? freq : 44100;
2205 bits = has_bits ? bits : 16;
2206 nchannels = has_channels ? nchannels : 2;
2207
2208 if (wav_start_capture (s, path, freq, bits, nchannels)) {
2209 monitor_printf(mon, "Failed to add wave capture\n");
2210 g_free (s);
2211 return;
2212 }
2213 QLIST_INSERT_HEAD (&capture_head, s, entries);
2214 }
2215 #endif
2216
2217 static qemu_acl *find_acl(Monitor *mon, const char *name)
2218 {
2219 qemu_acl *acl = qemu_acl_find(name);
2220
2221 if (!acl) {
2222 monitor_printf(mon, "acl: unknown list '%s'\n", name);
2223 }
2224 return acl;
2225 }
2226
2227 static void do_acl_show(Monitor *mon, const QDict *qdict)
2228 {
2229 const char *aclname = qdict_get_str(qdict, "aclname");
2230 qemu_acl *acl = find_acl(mon, aclname);
2231 qemu_acl_entry *entry;
2232 int i = 0;
2233
2234 if (acl) {
2235 monitor_printf(mon, "policy: %s\n",
2236 acl->defaultDeny ? "deny" : "allow");
2237 QTAILQ_FOREACH(entry, &acl->entries, next) {
2238 i++;
2239 monitor_printf(mon, "%d: %s %s\n", i,
2240 entry->deny ? "deny" : "allow", entry->match);
2241 }
2242 }
2243 }
2244
2245 static void do_acl_reset(Monitor *mon, const QDict *qdict)
2246 {
2247 const char *aclname = qdict_get_str(qdict, "aclname");
2248 qemu_acl *acl = find_acl(mon, aclname);
2249
2250 if (acl) {
2251 qemu_acl_reset(acl);
2252 monitor_printf(mon, "acl: removed all rules\n");
2253 }
2254 }
2255
2256 static void do_acl_policy(Monitor *mon, const QDict *qdict)
2257 {
2258 const char *aclname = qdict_get_str(qdict, "aclname");
2259 const char *policy = qdict_get_str(qdict, "policy");
2260 qemu_acl *acl = find_acl(mon, aclname);
2261
2262 if (acl) {
2263 if (strcmp(policy, "allow") == 0) {
2264 acl->defaultDeny = 0;
2265 monitor_printf(mon, "acl: policy set to 'allow'\n");
2266 } else if (strcmp(policy, "deny") == 0) {
2267 acl->defaultDeny = 1;
2268 monitor_printf(mon, "acl: policy set to 'deny'\n");
2269 } else {
2270 monitor_printf(mon, "acl: unknown policy '%s', "
2271 "expected 'deny' or 'allow'\n", policy);
2272 }
2273 }
2274 }
2275
2276 static void do_acl_add(Monitor *mon, const QDict *qdict)
2277 {
2278 const char *aclname = qdict_get_str(qdict, "aclname");
2279 const char *match = qdict_get_str(qdict, "match");
2280 const char *policy = qdict_get_str(qdict, "policy");
2281 int has_index = qdict_haskey(qdict, "index");
2282 int index = qdict_get_try_int(qdict, "index", -1);
2283 qemu_acl *acl = find_acl(mon, aclname);
2284 int deny, ret;
2285
2286 if (acl) {
2287 if (strcmp(policy, "allow") == 0) {
2288 deny = 0;
2289 } else if (strcmp(policy, "deny") == 0) {
2290 deny = 1;
2291 } else {
2292 monitor_printf(mon, "acl: unknown policy '%s', "
2293 "expected 'deny' or 'allow'\n", policy);
2294 return;
2295 }
2296 if (has_index)
2297 ret = qemu_acl_insert(acl, deny, match, index);
2298 else
2299 ret = qemu_acl_append(acl, deny, match);
2300 if (ret < 0)
2301 monitor_printf(mon, "acl: unable to add acl entry\n");
2302 else
2303 monitor_printf(mon, "acl: added rule at position %d\n", ret);
2304 }
2305 }
2306
2307 static void do_acl_remove(Monitor *mon, const QDict *qdict)
2308 {
2309 const char *aclname = qdict_get_str(qdict, "aclname");
2310 const char *match = qdict_get_str(qdict, "match");
2311 qemu_acl *acl = find_acl(mon, aclname);
2312 int ret;
2313
2314 if (acl) {
2315 ret = qemu_acl_remove(acl, match);
2316 if (ret < 0)
2317 monitor_printf(mon, "acl: no matching acl entry\n");
2318 else
2319 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
2320 }
2321 }
2322
2323 #if defined(TARGET_I386)
2324 static void do_inject_mce(Monitor *mon, const QDict *qdict)
2325 {
2326 CPUState *cenv;
2327 int cpu_index = qdict_get_int(qdict, "cpu_index");
2328 int bank = qdict_get_int(qdict, "bank");
2329 uint64_t status = qdict_get_int(qdict, "status");
2330 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2331 uint64_t addr = qdict_get_int(qdict, "addr");
2332 uint64_t misc = qdict_get_int(qdict, "misc");
2333 int flags = MCE_INJECT_UNCOND_AO;
2334
2335 if (qdict_get_try_bool(qdict, "broadcast", 0)) {
2336 flags |= MCE_INJECT_BROADCAST;
2337 }
2338 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu) {
2339 if (cenv->cpu_index == cpu_index) {
2340 cpu_x86_inject_mce(mon, cenv, bank, status, mcg_status, addr, misc,
2341 flags);
2342 break;
2343 }
2344 }
2345 }
2346 #endif
2347
2348 static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2349 {
2350 const char *fdname = qdict_get_str(qdict, "fdname");
2351 mon_fd_t *monfd;
2352 int fd;
2353
2354 fd = qemu_chr_fe_get_msgfd(mon->chr);
2355 if (fd == -1) {
2356 qerror_report(QERR_FD_NOT_SUPPLIED);
2357 return -1;
2358 }
2359
2360 if (qemu_isdigit(fdname[0])) {
2361 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2362 "a name not starting with a digit");
2363 return -1;
2364 }
2365
2366 QLIST_FOREACH(monfd, &mon->fds, next) {
2367 if (strcmp(monfd->name, fdname) != 0) {
2368 continue;
2369 }
2370
2371 close(monfd->fd);
2372 monfd->fd = fd;
2373 return 0;
2374 }
2375
2376 monfd = g_malloc0(sizeof(mon_fd_t));
2377 monfd->name = g_strdup(fdname);
2378 monfd->fd = fd;
2379
2380 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
2381 return 0;
2382 }
2383
2384 static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
2385 {
2386 const char *fdname = qdict_get_str(qdict, "fdname");
2387 mon_fd_t *monfd;
2388
2389 QLIST_FOREACH(monfd, &mon->fds, next) {
2390 if (strcmp(monfd->name, fdname) != 0) {
2391 continue;
2392 }
2393
2394 QLIST_REMOVE(monfd, next);
2395 close(monfd->fd);
2396 g_free(monfd->name);
2397 g_free(monfd);
2398 return 0;
2399 }
2400
2401 qerror_report(QERR_FD_NOT_FOUND, fdname);
2402 return -1;
2403 }
2404
2405 static void do_loadvm(Monitor *mon, const QDict *qdict)
2406 {
2407 int saved_vm_running = runstate_is_running();
2408 const char *name = qdict_get_str(qdict, "name");
2409
2410 vm_stop(RUN_STATE_RESTORE_VM);
2411
2412 if (load_vmstate(name) == 0 && saved_vm_running) {
2413 vm_start();
2414 }
2415 }
2416
2417 int monitor_get_fd(Monitor *mon, const char *fdname)
2418 {
2419 mon_fd_t *monfd;
2420
2421 QLIST_FOREACH(monfd, &mon->fds, next) {
2422 int fd;
2423
2424 if (strcmp(monfd->name, fdname) != 0) {
2425 continue;
2426 }
2427
2428 fd = monfd->fd;
2429
2430 /* caller takes ownership of fd */
2431 QLIST_REMOVE(monfd, next);
2432 g_free(monfd->name);
2433 g_free(monfd);
2434
2435 return fd;
2436 }
2437
2438 return -1;
2439 }
2440
2441 /* mon_cmds and info_cmds would be sorted at runtime */
2442 static mon_cmd_t mon_cmds[] = {
2443 #include "hmp-commands.h"
2444 { NULL, NULL, },
2445 };
2446
2447 /* Please update hmp-commands.hx when adding or changing commands */
2448 static mon_cmd_t info_cmds[] = {
2449 {
2450 .name = "version",
2451 .args_type = "",
2452 .params = "",
2453 .help = "show the version of QEMU",
2454 .mhandler.info = hmp_info_version,
2455 },
2456 {
2457 .name = "network",
2458 .args_type = "",
2459 .params = "",
2460 .help = "show the network state",
2461 .mhandler.info = do_info_network,
2462 },
2463 {
2464 .name = "chardev",
2465 .args_type = "",
2466 .params = "",
2467 .help = "show the character devices",
2468 .mhandler.info = hmp_info_chardev,
2469 },
2470 {
2471 .name = "block",
2472 .args_type = "",
2473 .params = "",
2474 .help = "show the block devices",
2475 .mhandler.info = hmp_info_block,
2476 },
2477 {
2478 .name = "blockstats",
2479 .args_type = "",
2480 .params = "",
2481 .help = "show block device statistics",
2482 .mhandler.info = hmp_info_blockstats,
2483 },
2484 {
2485 .name = "registers",
2486 .args_type = "",
2487 .params = "",
2488 .help = "show the cpu registers",
2489 .mhandler.info = do_info_registers,
2490 },
2491 {
2492 .name = "cpus",
2493 .args_type = "",
2494 .params = "",
2495 .help = "show infos for each CPU",
2496 .mhandler.info = hmp_info_cpus,
2497 },
2498 {
2499 .name = "history",
2500 .args_type = "",
2501 .params = "",
2502 .help = "show the command line history",
2503 .mhandler.info = do_info_history,
2504 },
2505 #if defined(TARGET_I386) || defined(TARGET_PPC) || defined(TARGET_MIPS) || \
2506 defined(TARGET_LM32) || (defined(TARGET_SPARC) && !defined(TARGET_SPARC64))
2507 {
2508 .name = "irq",
2509 .args_type = "",
2510 .params = "",
2511 .help = "show the interrupts statistics (if available)",
2512 #ifdef TARGET_SPARC
2513 .mhandler.info = sun4m_irq_info,
2514 #elif defined(TARGET_LM32)
2515 .mhandler.info = lm32_irq_info,
2516 #else
2517 .mhandler.info = irq_info,
2518 #endif
2519 },
2520 {
2521 .name = "pic",
2522 .args_type = "",
2523 .params = "",
2524 .help = "show i8259 (PIC) state",
2525 #ifdef TARGET_SPARC
2526 .mhandler.info = sun4m_pic_info,
2527 #elif defined(TARGET_LM32)
2528 .mhandler.info = lm32_do_pic_info,
2529 #else
2530 .mhandler.info = pic_info,
2531 #endif
2532 },
2533 #endif
2534 {
2535 .name = "pci",
2536 .args_type = "",
2537 .params = "",
2538 .help = "show PCI info",
2539 .mhandler.info = hmp_info_pci,
2540 },
2541 #if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \
2542 defined(TARGET_PPC)
2543 {
2544 .name = "tlb",
2545 .args_type = "",
2546 .params = "",
2547 .help = "show virtual to physical memory mappings",
2548 .mhandler.info = tlb_info,
2549 },
2550 #endif
2551 #if defined(TARGET_I386)
2552 {
2553 .name = "mem",
2554 .args_type = "",
2555 .params = "",
2556 .help = "show the active virtual memory mappings",
2557 .mhandler.info = mem_info,
2558 },
2559 #endif
2560 {
2561 .name = "mtree",
2562 .args_type = "",
2563 .params = "",
2564 .help = "show memory tree",
2565 .mhandler.info = do_info_mtree,
2566 },
2567 {
2568 .name = "jit",
2569 .args_type = "",
2570 .params = "",
2571 .help = "show dynamic compiler info",
2572 .mhandler.info = do_info_jit,
2573 },
2574 {
2575 .name = "kvm",
2576 .args_type = "",
2577 .params = "",
2578 .help = "show KVM information",
2579 .mhandler.info = hmp_info_kvm,
2580 },
2581 {
2582 .name = "numa",
2583 .args_type = "",
2584 .params = "",
2585 .help = "show NUMA information",
2586 .mhandler.info = do_info_numa,
2587 },
2588 {
2589 .name = "usb",
2590 .args_type = "",
2591 .params = "",
2592 .help = "show guest USB devices",
2593 .mhandler.info = usb_info,
2594 },
2595 {
2596 .name = "usbhost",
2597 .args_type = "",
2598 .params = "",
2599 .help = "show host USB devices",
2600 .mhandler.info = usb_host_info,
2601 },
2602 {
2603 .name = "profile",
2604 .args_type = "",
2605 .params = "",
2606 .help = "show profiling information",
2607 .mhandler.info = do_info_profile,
2608 },
2609 {
2610 .name = "capture",
2611 .args_type = "",
2612 .params = "",
2613 .help = "show capture information",
2614 .mhandler.info = do_info_capture,
2615 },
2616 {
2617 .name = "snapshots",
2618 .args_type = "",
2619 .params = "",
2620 .help = "show the currently saved VM snapshots",
2621 .mhandler.info = do_info_snapshots,
2622 },
2623 {
2624 .name = "status",
2625 .args_type = "",
2626 .params = "",
2627 .help = "show the current VM status (running|paused)",
2628 .mhandler.info = hmp_info_status,
2629 },
2630 {
2631 .name = "pcmcia",
2632 .args_type = "",
2633 .params = "",
2634 .help = "show guest PCMCIA status",
2635 .mhandler.info = pcmcia_info,
2636 },
2637 {
2638 .name = "mice",
2639 .args_type = "",
2640 .params = "",
2641 .help = "show which guest mouse is receiving events",
2642 .mhandler.info = hmp_info_mice,
2643 },
2644 {
2645 .name = "vnc",
2646 .args_type = "",
2647 .params = "",
2648 .help = "show the vnc server status",
2649 .mhandler.info = hmp_info_vnc,
2650 },
2651 #if defined(CONFIG_SPICE)
2652 {
2653 .name = "spice",
2654 .args_type = "",
2655 .params = "",
2656 .help = "show the spice server status",
2657 .mhandler.info = hmp_info_spice,
2658 },
2659 #endif
2660 {
2661 .name = "name",
2662 .args_type = "",
2663 .params = "",
2664 .help = "show the current VM name",
2665 .mhandler.info = hmp_info_name,
2666 },
2667 {
2668 .name = "uuid",
2669 .args_type = "",
2670 .params = "",
2671 .help = "show the current VM UUID",
2672 .mhandler.info = hmp_info_uuid,
2673 },
2674 #if defined(TARGET_PPC)
2675 {
2676 .name = "cpustats",
2677 .args_type = "",
2678 .params = "",
2679 .help = "show CPU statistics",
2680 .mhandler.info = do_info_cpu_stats,
2681 },
2682 #endif
2683 #if defined(CONFIG_SLIRP)
2684 {
2685 .name = "usernet",
2686 .args_type = "",
2687 .params = "",
2688 .help = "show user network stack connection states",
2689 .mhandler.info = do_info_usernet,
2690 },
2691 #endif
2692 {
2693 .name = "migrate",
2694 .args_type = "",
2695 .params = "",
2696 .help = "show migration status",
2697 .mhandler.info = hmp_info_migrate,
2698 },
2699 {
2700 .name = "balloon",
2701 .args_type = "",
2702 .params = "",
2703 .help = "show balloon information",
2704 .mhandler.info = hmp_info_balloon,
2705 },
2706 {
2707 .name = "qtree",
2708 .args_type = "",
2709 .params = "",
2710 .help = "show device tree",
2711 .mhandler.info = do_info_qtree,
2712 },
2713 {
2714 .name = "qdm",
2715 .args_type = "",
2716 .params = "",
2717 .help = "show qdev device model list",
2718 .mhandler.info = do_info_qdm,
2719 },
2720 {
2721 .name = "roms",
2722 .args_type = "",
2723 .params = "",
2724 .help = "show roms",
2725 .mhandler.info = do_info_roms,
2726 },
2727 #if defined(CONFIG_TRACE_SIMPLE)
2728 {
2729 .name = "trace",
2730 .args_type = "",
2731 .params = "",
2732 .help = "show current contents of trace buffer",
2733 .mhandler.info = do_info_trace,
2734 },
2735 #endif
2736 {
2737 .name = "trace-events",
2738 .args_type = "",
2739 .params = "",
2740 .help = "show available trace-events & their state",
2741 .mhandler.info = do_trace_print_events,
2742 },
2743 {
2744 .name = NULL,
2745 },
2746 };
2747
2748 static const mon_cmd_t qmp_cmds[] = {
2749 #include "qmp-commands-old.h"
2750 { /* NULL */ },
2751 };
2752
2753 /*******************************************************************/
2754
2755 static const char *pch;
2756 static jmp_buf expr_env;
2757
2758 #define MD_TLONG 0
2759 #define MD_I32 1
2760
2761 typedef struct MonitorDef {
2762 const char *name;
2763 int offset;
2764 target_long (*get_value)(const struct MonitorDef *md, int val);
2765 int type;
2766 } MonitorDef;
2767
2768 #if defined(TARGET_I386)
2769 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
2770 {
2771 CPUState *env = mon_get_cpu();
2772 return env->eip + env->segs[R_CS].base;
2773 }
2774 #endif
2775
2776 #if defined(TARGET_PPC)
2777 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
2778 {
2779 CPUState *env = mon_get_cpu();
2780 unsigned int u;
2781 int i;
2782
2783 u = 0;
2784 for (i = 0; i < 8; i++)
2785 u |= env->crf[i] << (32 - (4 * i));
2786
2787 return u;
2788 }
2789
2790 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
2791 {
2792 CPUState *env = mon_get_cpu();
2793 return env->msr;
2794 }
2795
2796 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
2797 {
2798 CPUState *env = mon_get_cpu();
2799 return env->xer;
2800 }
2801
2802 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
2803 {
2804 CPUState *env = mon_get_cpu();
2805 return cpu_ppc_load_decr(env);
2806 }
2807
2808 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
2809 {
2810 CPUState *env = mon_get_cpu();
2811 return cpu_ppc_load_tbu(env);
2812 }
2813
2814 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
2815 {
2816 CPUState *env = mon_get_cpu();
2817 return cpu_ppc_load_tbl(env);
2818 }
2819 #endif
2820
2821 #if defined(TARGET_SPARC)
2822 #ifndef TARGET_SPARC64
2823 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
2824 {
2825 CPUState *env = mon_get_cpu();
2826
2827 return cpu_get_psr(env);
2828 }
2829 #endif
2830
2831 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
2832 {
2833 CPUState *env = mon_get_cpu();
2834 return env->regwptr[val];
2835 }
2836 #endif
2837
2838 static const MonitorDef monitor_defs[] = {
2839 #ifdef TARGET_I386
2840
2841 #define SEG(name, seg) \
2842 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
2843 { name ".base", offsetof(CPUState, segs[seg].base) },\
2844 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
2845
2846 { "eax", offsetof(CPUState, regs[0]) },
2847 { "ecx", offsetof(CPUState, regs[1]) },
2848 { "edx", offsetof(CPUState, regs[2]) },
2849 { "ebx", offsetof(CPUState, regs[3]) },
2850 { "esp|sp", offsetof(CPUState, regs[4]) },
2851 { "ebp|fp", offsetof(CPUState, regs[5]) },
2852 { "esi", offsetof(CPUState, regs[6]) },
2853 { "edi", offsetof(CPUState, regs[7]) },
2854 #ifdef TARGET_X86_64
2855 { "r8", offsetof(CPUState, regs[8]) },
2856 { "r9", offsetof(CPUState, regs[9]) },
2857 { "r10", offsetof(CPUState, regs[10]) },
2858 { "r11", offsetof(CPUState, regs[11]) },
2859 { "r12", offsetof(CPUState, regs[12]) },
2860 { "r13", offsetof(CPUState, regs[13]) },
2861 { "r14", offsetof(CPUState, regs[14]) },
2862 { "r15", offsetof(CPUState, regs[15]) },
2863 #endif
2864 { "eflags", offsetof(CPUState, eflags) },
2865 { "eip", offsetof(CPUState, eip) },
2866 SEG("cs", R_CS)
2867 SEG("ds", R_DS)
2868 SEG("es", R_ES)
2869 SEG("ss", R_SS)
2870 SEG("fs", R_FS)
2871 SEG("gs", R_GS)
2872 { "pc", 0, monitor_get_pc, },
2873 #elif defined(TARGET_PPC)
2874 /* General purpose registers */
2875 { "r0", offsetof(CPUState, gpr[0]) },
2876 { "r1", offsetof(CPUState, gpr[1]) },
2877 { "r2", offsetof(CPUState, gpr[2]) },
2878 { "r3", offsetof(CPUState, gpr[3]) },
2879 { "r4", offsetof(CPUState, gpr[4]) },
2880 { "r5", offsetof(CPUState, gpr[5]) },
2881 { "r6", offsetof(CPUState, gpr[6]) },
2882 { "r7", offsetof(CPUState, gpr[7]) },
2883 { "r8", offsetof(CPUState, gpr[8]) },
2884 { "r9", offsetof(CPUState, gpr[9]) },
2885 { "r10", offsetof(CPUState, gpr[10]) },
2886 { "r11", offsetof(CPUState, gpr[11]) },
2887 { "r12", offsetof(CPUState, gpr[12]) },
2888 { "r13", offsetof(CPUState, gpr[13]) },
2889 { "r14", offsetof(CPUState, gpr[14]) },
2890 { "r15", offsetof(CPUState, gpr[15]) },
2891 { "r16", offsetof(CPUState, gpr[16]) },
2892 { "r17", offsetof(CPUState, gpr[17]) },
2893 { "r18", offsetof(CPUState, gpr[18]) },
2894 { "r19", offsetof(CPUState, gpr[19]) },
2895 { "r20", offsetof(CPUState, gpr[20]) },
2896 { "r21", offsetof(CPUState, gpr[21]) },
2897 { "r22", offsetof(CPUState, gpr[22]) },
2898 { "r23", offsetof(CPUState, gpr[23]) },
2899 { "r24", offsetof(CPUState, gpr[24]) },
2900 { "r25", offsetof(CPUState, gpr[25]) },
2901 { "r26", offsetof(CPUState, gpr[26]) },
2902 { "r27", offsetof(CPUState, gpr[27]) },
2903 { "r28", offsetof(CPUState, gpr[28]) },
2904 { "r29", offsetof(CPUState, gpr[29]) },
2905 { "r30", offsetof(CPUState, gpr[30]) },
2906 { "r31", offsetof(CPUState, gpr[31]) },
2907 /* Floating point registers */
2908 { "f0", offsetof(CPUState, fpr[0]) },
2909 { "f1", offsetof(CPUState, fpr[1]) },
2910 { "f2", offsetof(CPUState, fpr[2]) },
2911 { "f3", offsetof(CPUState, fpr[3]) },
2912 { "f4", offsetof(CPUState, fpr[4]) },
2913 { "f5", offsetof(CPUState, fpr[5]) },
2914 { "f6", offsetof(CPUState, fpr[6]) },
2915 { "f7", offsetof(CPUState, fpr[7]) },
2916 { "f8", offsetof(CPUState, fpr[8]) },
2917 { "f9", offsetof(CPUState, fpr[9]) },
2918 { "f10", offsetof(CPUState, fpr[10]) },
2919 { "f11", offsetof(CPUState, fpr[11]) },
2920 { "f12", offsetof(CPUState, fpr[12]) },
2921 { "f13", offsetof(CPUState, fpr[13]) },
2922 { "f14", offsetof(CPUState, fpr[14]) },
2923 { "f15", offsetof(CPUState, fpr[15]) },
2924 { "f16", offsetof(CPUState, fpr[16]) },
2925 { "f17", offsetof(CPUState, fpr[17]) },
2926 { "f18", offsetof(CPUState, fpr[18]) },
2927 { "f19", offsetof(CPUState, fpr[19]) },
2928 { "f20", offsetof(CPUState, fpr[20]) },
2929 { "f21", offsetof(CPUState, fpr[21]) },
2930 { "f22", offsetof(CPUState, fpr[22]) },
2931 { "f23", offsetof(CPUState, fpr[23]) },
2932 { "f24", offsetof(CPUState, fpr[24]) },
2933 { "f25", offsetof(CPUState, fpr[25]) },
2934 { "f26", offsetof(CPUState, fpr[26]) },
2935 { "f27", offsetof(CPUState, fpr[27]) },
2936 { "f28", offsetof(CPUState, fpr[28]) },
2937 { "f29", offsetof(CPUState, fpr[29]) },
2938 { "f30", offsetof(CPUState, fpr[30]) },
2939 { "f31", offsetof(CPUState, fpr[31]) },
2940 { "fpscr", offsetof(CPUState, fpscr) },
2941 /* Next instruction pointer */
2942 { "nip|pc", offsetof(CPUState, nip) },
2943 { "lr", offsetof(CPUState, lr) },
2944 { "ctr", offsetof(CPUState, ctr) },
2945 { "decr", 0, &monitor_get_decr, },
2946 { "ccr", 0, &monitor_get_ccr, },
2947 /* Machine state register */
2948 { "msr", 0, &monitor_get_msr, },
2949 { "xer", 0, &monitor_get_xer, },
2950 { "tbu", 0, &monitor_get_tbu, },
2951 { "tbl", 0, &monitor_get_tbl, },
2952 #if defined(TARGET_PPC64)
2953 /* Address space register */
2954 { "asr", offsetof(CPUState, asr) },
2955 #endif
2956 /* Segment registers */
2957 { "sdr1", offsetof(CPUState, spr[SPR_SDR1]) },
2958 { "sr0", offsetof(CPUState, sr[0]) },
2959 { "sr1", offsetof(CPUState, sr[1]) },
2960 { "sr2", offsetof(CPUState, sr[2]) },
2961 { "sr3", offsetof(CPUState, sr[3]) },
2962 { "sr4", offsetof(CPUState, sr[4]) },
2963 { "sr5", offsetof(CPUState, sr[5]) },
2964 { "sr6", offsetof(CPUState, sr[6]) },
2965 { "sr7", offsetof(CPUState, sr[7]) },
2966 { "sr8", offsetof(CPUState, sr[8]) },
2967 { "sr9", offsetof(CPUState, sr[9]) },
2968 { "sr10", offsetof(CPUState, sr[10]) },
2969 { "sr11", offsetof(CPUState, sr[11]) },
2970 { "sr12", offsetof(CPUState, sr[12]) },
2971 { "sr13", offsetof(CPUState, sr[13]) },
2972 { "sr14", offsetof(CPUState, sr[14]) },
2973 { "sr15", offsetof(CPUState, sr[15]) },
2974 /* Too lazy to put BATs... */
2975 { "pvr", offsetof(CPUState, spr[SPR_PVR]) },
2976
2977 { "srr0", offsetof(CPUState, spr[SPR_SRR0]) },
2978 { "srr1", offsetof(CPUState, spr[SPR_SRR1]) },
2979 { "sprg0", offsetof(CPUState, spr[SPR_SPRG0]) },
2980 { "sprg1", offsetof(CPUState, spr[SPR_SPRG1]) },
2981 { "sprg2", offsetof(CPUState, spr[SPR_SPRG2]) },
2982 { "sprg3", offsetof(CPUState, spr[SPR_SPRG3]) },
2983 { "sprg4", offsetof(CPUState, spr[SPR_SPRG4]) },
2984 { "sprg5", offsetof(CPUState, spr[SPR_SPRG5]) },
2985 { "sprg6", offsetof(CPUState, spr[SPR_SPRG6]) },
2986 { "sprg7", offsetof(CPUState, spr[SPR_SPRG7]) },
2987 { "pid", offsetof(CPUState, spr[SPR_BOOKE_PID]) },
2988 { "csrr0", offsetof(CPUState, spr[SPR_BOOKE_CSRR0]) },
2989 { "csrr1", offsetof(CPUState, spr[SPR_BOOKE_CSRR1]) },
2990 { "esr", offsetof(CPUState, spr[SPR_BOOKE_ESR]) },
2991 { "dear", offsetof(CPUState, spr[SPR_BOOKE_DEAR]) },
2992 { "mcsr", offsetof(CPUState, spr[SPR_BOOKE_MCSR]) },
2993 { "tsr", offsetof(CPUState, spr[SPR_BOOKE_TSR]) },
2994 { "tcr", offsetof(CPUState, spr[SPR_BOOKE_TCR]) },
2995 { "vrsave", offsetof(CPUState, spr[SPR_VRSAVE]) },
2996 { "pir", offsetof(CPUState, spr[SPR_BOOKE_PIR]) },
2997 { "mcsrr0", offsetof(CPUState, spr[SPR_BOOKE_MCSRR0]) },
2998 { "mcsrr1", offsetof(CPUState, spr[SPR_BOOKE_MCSRR1]) },
2999 { "decar", offsetof(CPUState, spr[SPR_BOOKE_DECAR]) },
3000 { "ivpr", offsetof(CPUState, spr[SPR_BOOKE_IVPR]) },
3001 { "epcr", offsetof(CPUState, spr[SPR_BOOKE_EPCR]) },
3002 { "sprg8", offsetof(CPUState, spr[SPR_BOOKE_SPRG8]) },
3003 { "ivor0", offsetof(CPUState, spr[SPR_BOOKE_IVOR0]) },
3004 { "ivor1", offsetof(CPUState, spr[SPR_BOOKE_IVOR1]) },
3005 { "ivor2", offsetof(CPUState, spr[SPR_BOOKE_IVOR2]) },
3006 { "ivor3", offsetof(CPUState, spr[SPR_BOOKE_IVOR3]) },
3007 { "ivor4", offsetof(CPUState, spr[SPR_BOOKE_IVOR4]) },
3008 { "ivor5", offsetof(CPUState, spr[SPR_BOOKE_IVOR5]) },
3009 { "ivor6", offsetof(CPUState, spr[SPR_BOOKE_IVOR6]) },
3010 { "ivor7", offsetof(CPUState, spr[SPR_BOOKE_IVOR7]) },
3011 { "ivor8", offsetof(CPUState, spr[SPR_BOOKE_IVOR8]) },
3012 { "ivor9", offsetof(CPUState, spr[SPR_BOOKE_IVOR9]) },
3013 { "ivor10", offsetof(CPUState, spr[SPR_BOOKE_IVOR10]) },
3014 { "ivor11", offsetof(CPUState, spr[SPR_BOOKE_IVOR11]) },
3015 { "ivor12", offsetof(CPUState, spr[SPR_BOOKE_IVOR12]) },
3016 { "ivor13", offsetof(CPUState, spr[SPR_BOOKE_IVOR13]) },
3017 { "ivor14", offsetof(CPUState, spr[SPR_BOOKE_IVOR14]) },
3018 { "ivor15", offsetof(CPUState, spr[SPR_BOOKE_IVOR15]) },
3019 { "ivor32", offsetof(CPUState, spr[SPR_BOOKE_IVOR32]) },
3020 { "ivor33", offsetof(CPUState, spr[SPR_BOOKE_IVOR33]) },
3021 { "ivor34", offsetof(CPUState, spr[SPR_BOOKE_IVOR34]) },
3022 { "ivor35", offsetof(CPUState, spr[SPR_BOOKE_IVOR35]) },
3023 { "ivor36", offsetof(CPUState, spr[SPR_BOOKE_IVOR36]) },
3024 { "ivor37", offsetof(CPUState, spr[SPR_BOOKE_IVOR37]) },
3025 { "mas0", offsetof(CPUState, spr[SPR_BOOKE_MAS0]) },
3026 { "mas1", offsetof(CPUState, spr[SPR_BOOKE_MAS1]) },
3027 { "mas2", offsetof(CPUState, spr[SPR_BOOKE_MAS2]) },
3028 { "mas3", offsetof(CPUState, spr[SPR_BOOKE_MAS3]) },
3029 { "mas4", offsetof(CPUState, spr[SPR_BOOKE_MAS4]) },
3030 { "mas6", offsetof(CPUState, spr[SPR_BOOKE_MAS6]) },
3031 { "mas7", offsetof(CPUState, spr[SPR_BOOKE_MAS7]) },
3032 { "mmucfg", offsetof(CPUState, spr[SPR_MMUCFG]) },
3033 { "tlb0cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB0CFG]) },
3034 { "tlb1cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB1CFG]) },
3035 { "epr", offsetof(CPUState, spr[SPR_BOOKE_EPR]) },
3036 { "eplc", offsetof(CPUState, spr[SPR_BOOKE_EPLC]) },
3037 { "epsc", offsetof(CPUState, spr[SPR_BOOKE_EPSC]) },
3038 { "svr", offsetof(CPUState, spr[SPR_E500_SVR]) },
3039 { "mcar", offsetof(CPUState, spr[SPR_Exxx_MCAR]) },
3040 { "pid1", offsetof(CPUState, spr[SPR_BOOKE_PID1]) },
3041 { "pid2", offsetof(CPUState, spr[SPR_BOOKE_PID2]) },
3042 { "hid0", offsetof(CPUState, spr[SPR_HID0]) },
3043
3044 #elif defined(TARGET_SPARC)
3045 { "g0", offsetof(CPUState, gregs[0]) },
3046 { "g1", offsetof(CPUState, gregs[1]) },
3047 { "g2", offsetof(CPUState, gregs[2]) },
3048 { "g3", offsetof(CPUState, gregs[3]) },
3049 { "g4", offsetof(CPUState, gregs[4]) },
3050 { "g5", offsetof(CPUState, gregs[5]) },
3051 { "g6", offsetof(CPUState, gregs[6]) },
3052 { "g7", offsetof(CPUState, gregs[7]) },
3053 { "o0", 0, monitor_get_reg },
3054 { "o1", 1, monitor_get_reg },
3055 { "o2", 2, monitor_get_reg },
3056 { "o3", 3, monitor_get_reg },
3057 { "o4", 4, monitor_get_reg },
3058 { "o5", 5, monitor_get_reg },
3059 { "o6", 6, monitor_get_reg },
3060 { "o7", 7, monitor_get_reg },
3061 { "l0", 8, monitor_get_reg },
3062 { "l1", 9, monitor_get_reg },
3063 { "l2", 10, monitor_get_reg },
3064 { "l3", 11, monitor_get_reg },
3065 { "l4", 12, monitor_get_reg },
3066 { "l5", 13, monitor_get_reg },
3067 { "l6", 14, monitor_get_reg },
3068 { "l7", 15, monitor_get_reg },
3069 { "i0", 16, monitor_get_reg },
3070 { "i1", 17, monitor_get_reg },
3071 { "i2", 18, monitor_get_reg },
3072 { "i3", 19, monitor_get_reg },
3073 { "i4", 20, monitor_get_reg },
3074 { "i5", 21, monitor_get_reg },
3075 { "i6", 22, monitor_get_reg },
3076 { "i7", 23, monitor_get_reg },
3077 { "pc", offsetof(CPUState, pc) },
3078 { "npc", offsetof(CPUState, npc) },
3079 { "y", offsetof(CPUState, y) },
3080 #ifndef TARGET_SPARC64
3081 { "psr", 0, &monitor_get_psr, },
3082 { "wim", offsetof(CPUState, wim) },
3083 #endif
3084 { "tbr", offsetof(CPUState, tbr) },
3085 { "fsr", offsetof(CPUState, fsr) },
3086 { "f0", offsetof(CPUState, fpr[0].l.upper) },
3087 { "f1", offsetof(CPUState, fpr[0].l.lower) },
3088 { "f2", offsetof(CPUState, fpr[1].l.upper) },
3089 { "f3", offsetof(CPUState, fpr[1].l.lower) },
3090 { "f4", offsetof(CPUState, fpr[2].l.upper) },
3091 { "f5", offsetof(CPUState, fpr[2].l.lower) },
3092 { "f6", offsetof(CPUState, fpr[3].l.upper) },
3093 { "f7", offsetof(CPUState, fpr[3].l.lower) },
3094 { "f8", offsetof(CPUState, fpr[4].l.upper) },
3095 { "f9", offsetof(CPUState, fpr[4].l.lower) },
3096 { "f10", offsetof(CPUState, fpr[5].l.upper) },
3097 { "f11", offsetof(CPUState, fpr[5].l.lower) },
3098 { "f12", offsetof(CPUState, fpr[6].l.upper) },
3099 { "f13", offsetof(CPUState, fpr[6].l.lower) },
3100 { "f14", offsetof(CPUState, fpr[7].l.upper) },
3101 { "f15", offsetof(CPUState, fpr[7].l.lower) },
3102 { "f16", offsetof(CPUState, fpr[8].l.upper) },
3103 { "f17", offsetof(CPUState, fpr[8].l.lower) },
3104 { "f18", offsetof(CPUState, fpr[9].l.upper) },
3105 { "f19", offsetof(CPUState, fpr[9].l.lower) },
3106 { "f20", offsetof(CPUState, fpr[10].l.upper) },
3107 { "f21", offsetof(CPUState, fpr[10].l.lower) },
3108 { "f22", offsetof(CPUState, fpr[11].l.upper) },
3109 { "f23", offsetof(CPUState, fpr[11].l.lower) },
3110 { "f24", offsetof(CPUState, fpr[12].l.upper) },
3111 { "f25", offsetof(CPUState, fpr[12].l.lower) },
3112 { "f26", offsetof(CPUState, fpr[13].l.upper) },
3113 { "f27", offsetof(CPUState, fpr[13].l.lower) },
3114 { "f28", offsetof(CPUState, fpr[14].l.upper) },
3115 { "f29", offsetof(CPUState, fpr[14].l.lower) },
3116 { "f30", offsetof(CPUState, fpr[15].l.upper) },
3117 { "f31", offsetof(CPUState, fpr[15].l.lower) },
3118 #ifdef TARGET_SPARC64
3119 { "f32", offsetof(CPUState, fpr[16]) },
3120 { "f34", offsetof(CPUState, fpr[17]) },
3121 { "f36", offsetof(CPUState, fpr[18]) },
3122 { "f38", offsetof(CPUState, fpr[19]) },
3123 { "f40", offsetof(CPUState, fpr[20]) },
3124 { "f42", offsetof(CPUState, fpr[21]) },
3125 { "f44", offsetof(CPUState, fpr[22]) },
3126 { "f46", offsetof(CPUState, fpr[23]) },
3127 { "f48", offsetof(CPUState, fpr[24]) },
3128 { "f50", offsetof(CPUState, fpr[25]) },
3129 { "f52", offsetof(CPUState, fpr[26]) },
3130 { "f54", offsetof(CPUState, fpr[27]) },
3131 { "f56", offsetof(CPUState, fpr[28]) },
3132 { "f58", offsetof(CPUState, fpr[29]) },
3133 { "f60", offsetof(CPUState, fpr[30]) },
3134 { "f62", offsetof(CPUState, fpr[31]) },
3135 { "asi", offsetof(CPUState, asi) },
3136 { "pstate", offsetof(CPUState, pstate) },
3137 { "cansave", offsetof(CPUState, cansave) },
3138 { "canrestore", offsetof(CPUState, canrestore) },
3139 { "otherwin", offsetof(CPUState, otherwin) },
3140 { "wstate", offsetof(CPUState, wstate) },
3141 { "cleanwin", offsetof(CPUState, cleanwin) },
3142 { "fprs", offsetof(CPUState, fprs) },
3143 #endif
3144 #endif
3145 { NULL },
3146 };
3147
3148 static void expr_error(Monitor *mon, const char *msg)
3149 {
3150 monitor_printf(mon, "%s\n", msg);
3151 longjmp(expr_env, 1);
3152 }
3153
3154 /* return 0 if OK, -1 if not found */
3155 static int get_monitor_def(target_long *pval, const char *name)
3156 {
3157 const MonitorDef *md;
3158 void *ptr;
3159
3160 for(md = monitor_defs; md->name != NULL; md++) {
3161 if (compare_cmd(name, md->name)) {
3162 if (md->get_value) {
3163 *pval = md->get_value(md, md->offset);
3164 } else {
3165 CPUState *env = mon_get_cpu();
3166 ptr = (uint8_t *)env + md->offset;
3167 switch(md->type) {
3168 case MD_I32:
3169 *pval = *(int32_t *)ptr;
3170 break;
3171 case MD_TLONG:
3172 *pval = *(target_long *)ptr;
3173 break;
3174 default:
3175 *pval = 0;
3176 break;
3177 }
3178 }
3179 return 0;
3180 }
3181 }
3182 return -1;
3183 }
3184
3185 static void next(void)
3186 {
3187 if (*pch != '\0') {
3188 pch++;
3189 while (qemu_isspace(*pch))
3190 pch++;
3191 }
3192 }
3193
3194 static int64_t expr_sum(Monitor *mon);
3195
3196 static int64_t expr_unary(Monitor *mon)
3197 {
3198 int64_t n;
3199 char *p;
3200 int ret;
3201
3202 switch(*pch) {
3203 case '+':
3204 next();
3205 n = expr_unary(mon);
3206 break;
3207 case '-':
3208 next();
3209 n = -expr_unary(mon);
3210 break;
3211 case '~':
3212 next();
3213 n = ~expr_unary(mon);
3214 break;
3215 case '(':
3216 next();
3217 n = expr_sum(mon);
3218 if (*pch != ')') {
3219 expr_error(mon, "')' expected");
3220 }
3221 next();
3222 break;
3223 case '\'':
3224 pch++;
3225 if (*pch == '\0')
3226 expr_error(mon, "character constant expected");
3227 n = *pch;
3228 pch++;
3229 if (*pch != '\'')
3230 expr_error(mon, "missing terminating \' character");
3231 next();
3232 break;
3233 case '$':
3234 {
3235 char buf[128], *q;
3236 target_long reg=0;
3237
3238 pch++;
3239 q = buf;
3240 while ((*pch >= 'a' && *pch <= 'z') ||
3241 (*pch >= 'A' && *pch <= 'Z') ||
3242 (*pch >= '0' && *pch <= '9') ||
3243 *pch == '_' || *pch == '.') {
3244 if ((q - buf) < sizeof(buf) - 1)
3245 *q++ = *pch;
3246 pch++;
3247 }
3248 while (qemu_isspace(*pch))
3249 pch++;
3250 *q = 0;
3251 ret = get_monitor_def(&reg, buf);
3252 if (ret < 0)
3253 expr_error(mon, "unknown register");
3254 n = reg;
3255 }
3256 break;
3257 case '\0':
3258 expr_error(mon, "unexpected end of expression");
3259 n = 0;
3260 break;
3261 default:
3262 #if TARGET_PHYS_ADDR_BITS > 32
3263 n = strtoull(pch, &p, 0);
3264 #else
3265 n = strtoul(pch, &p, 0);
3266 #endif
3267 if (pch == p) {
3268 expr_error(mon, "invalid char in expression");
3269 }
3270 pch = p;
3271 while (qemu_isspace(*pch))
3272 pch++;
3273 break;
3274 }
3275 return n;
3276 }
3277
3278
3279 static int64_t expr_prod(Monitor *mon)
3280 {
3281 int64_t val, val2;
3282 int op;
3283
3284 val = expr_unary(mon);
3285 for(;;) {
3286 op = *pch;
3287 if (op != '*' && op != '/' && op != '%')
3288 break;
3289 next();
3290 val2 = expr_unary(mon);
3291 switch(op) {
3292 default:
3293 case '*':
3294 val *= val2;
3295 break;
3296 case '/':
3297 case '%':
3298 if (val2 == 0)
3299 expr_error(mon, "division by zero");
3300 if (op == '/')
3301 val /= val2;
3302 else
3303 val %= val2;
3304 break;
3305 }
3306 }
3307 return val;
3308 }
3309
3310 static int64_t expr_logic(Monitor *mon)
3311 {
3312 int64_t val, val2;
3313 int op;
3314
3315 val = expr_prod(mon);
3316 for(;;) {
3317 op = *pch;
3318 if (op != '&' && op != '|' && op != '^')
3319 break;
3320 next();
3321 val2 = expr_prod(mon);
3322 switch(op) {
3323 default:
3324 case '&':
3325 val &= val2;
3326 break;
3327 case '|':
3328 val |= val2;
3329 break;
3330 case '^':
3331 val ^= val2;
3332 break;
3333 }
3334 }
3335 return val;
3336 }
3337
3338 static int64_t expr_sum(Monitor *mon)
3339 {
3340 int64_t val, val2;
3341 int op;
3342
3343 val = expr_logic(mon);
3344 for(;;) {
3345 op = *pch;
3346 if (op != '+' && op != '-')
3347 break;
3348 next();
3349 val2 = expr_logic(mon);
3350 if (op == '+')
3351 val += val2;
3352 else
3353 val -= val2;
3354 }
3355 return val;
3356 }
3357
3358 static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
3359 {
3360 pch = *pp;
3361 if (setjmp(expr_env)) {
3362 *pp = pch;
3363 return -1;
3364 }
3365 while (qemu_isspace(*pch))
3366 pch++;
3367 *pval = expr_sum(mon);
3368 *pp = pch;
3369 return 0;
3370 }
3371
3372 static int get_double(Monitor *mon, double *pval, const char **pp)
3373 {
3374 const char *p = *pp;
3375 char *tailp;
3376 double d;
3377
3378 d = strtod(p, &tailp);
3379 if (tailp == p) {
3380 monitor_printf(mon, "Number expected\n");
3381 return -1;
3382 }
3383 if (d != d || d - d != 0) {
3384 /* NaN or infinity */
3385 monitor_printf(mon, "Bad number\n");
3386 return -1;
3387 }
3388 *pval = d;
3389 *pp = tailp;
3390 return 0;
3391 }
3392
3393 static int get_str(char *buf, int buf_size, const char **pp)
3394 {
3395 const char *p;
3396 char *q;
3397 int c;
3398
3399 q = buf;
3400 p = *pp;
3401 while (qemu_isspace(*p))
3402 p++;
3403 if (*p == '\0') {
3404 fail:
3405 *q = '\0';
3406 *pp = p;
3407 return -1;
3408 }
3409 if (*p == '\"') {
3410 p++;
3411 while (*p != '\0' && *p != '\"') {
3412 if (*p == '\\') {
3413 p++;
3414 c = *p++;
3415 switch(c) {
3416 case 'n':
3417 c = '\n';
3418 break;
3419 case 'r':
3420 c = '\r';
3421 break;
3422 case '\\':
3423 case '\'':
3424 case '\"':
3425 break;
3426 default:
3427 qemu_printf("unsupported escape code: '\\%c'\n", c);
3428 goto fail;
3429 }
3430 if ((q - buf) < buf_size - 1) {
3431 *q++ = c;
3432 }
3433 } else {
3434 if ((q - buf) < buf_size - 1) {
3435 *q++ = *p;
3436 }
3437 p++;
3438 }
3439 }
3440 if (*p != '\"') {
3441 qemu_printf("unterminated string\n");
3442 goto fail;
3443 }
3444 p++;
3445 } else {
3446 while (*p != '\0' && !qemu_isspace(*p)) {
3447 if ((q - buf) < buf_size - 1) {
3448 *q++ = *p;
3449 }
3450 p++;
3451 }
3452 }
3453 *q = '\0';
3454 *pp = p;
3455 return 0;
3456 }
3457
3458 /*
3459 * Store the command-name in cmdname, and return a pointer to
3460 * the remaining of the command string.
3461 */
3462 static const char *get_command_name(const char *cmdline,
3463 char *cmdname, size_t nlen)
3464 {
3465 size_t len;
3466 const char *p, *pstart;
3467
3468 p = cmdline;
3469 while (qemu_isspace(*p))
3470 p++;
3471 if (*p == '\0')
3472 return NULL;
3473 pstart = p;
3474 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3475 p++;
3476 len = p - pstart;
3477 if (len > nlen - 1)
3478 len = nlen - 1;
3479 memcpy(cmdname, pstart, len);
3480 cmdname[len] = '\0';
3481 return p;
3482 }
3483
3484 /**
3485 * Read key of 'type' into 'key' and return the current
3486 * 'type' pointer.
3487 */
3488 static char *key_get_info(const char *type, char **key)
3489 {
3490 size_t len;
3491 char *p, *str;
3492
3493 if (*type == ',')
3494 type++;
3495
3496 p = strchr(type, ':');
3497 if (!p) {
3498 *key = NULL;
3499 return NULL;
3500 }
3501 len = p - type;
3502
3503 str = g_malloc(len + 1);
3504 memcpy(str, type, len);
3505 str[len] = '\0';
3506
3507 *key = str;
3508 return ++p;
3509 }
3510
3511 static int default_fmt_format = 'x';
3512 static int default_fmt_size = 4;
3513
3514 #define MAX_ARGS 16
3515
3516 static int is_valid_option(const char *c, const char *typestr)
3517 {
3518 char option[3];
3519
3520 option[0] = '-';
3521 option[1] = *c;
3522 option[2] = '\0';
3523
3524 typestr = strstr(typestr, option);
3525 return (typestr != NULL);
3526 }
3527
3528 static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3529 const char *cmdname)
3530 {
3531 const mon_cmd_t *cmd;
3532
3533 for (cmd = disp_table; cmd->name != NULL; cmd++) {
3534 if (compare_cmd(cmdname, cmd->name)) {
3535 return cmd;
3536 }
3537 }
3538
3539 return NULL;
3540 }
3541
3542 static const mon_cmd_t *monitor_find_command(const char *cmdname)
3543 {
3544 return search_dispatch_table(mon_cmds, cmdname);
3545 }
3546
3547 static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3548 {
3549 return search_dispatch_table(qmp_cmds, cmdname);
3550 }
3551
3552 static const mon_cmd_t *monitor_parse_command(Monitor *mon,
3553 const char *cmdline,
3554 QDict *qdict)
3555 {
3556 const char *p, *typestr;
3557 int c;
3558 const mon_cmd_t *cmd;
3559 char cmdname[256];
3560 char buf[1024];
3561 char *key;
3562
3563 #ifdef DEBUG
3564 monitor_printf(mon, "command='%s'\n", cmdline);
3565 #endif
3566
3567 /* extract the command name */
3568 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3569 if (!p)
3570 return NULL;
3571
3572 cmd = monitor_find_command(cmdname);
3573 if (!cmd) {
3574 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
3575 return NULL;
3576 }
3577
3578 /* parse the parameters */
3579 typestr = cmd->args_type;
3580 for(;;) {
3581 typestr = key_get_info(typestr, &key);
3582 if (!typestr)
3583 break;
3584 c = *typestr;
3585 typestr++;
3586 switch(c) {
3587 case 'F':
3588 case 'B':
3589 case 's':
3590 {
3591 int ret;
3592
3593 while (qemu_isspace(*p))
3594 p++;
3595 if (*typestr == '?') {
3596 typestr++;
3597 if (*p == '\0') {
3598 /* no optional string: NULL argument */
3599 break;
3600 }
3601 }
3602 ret = get_str(buf, sizeof(buf), &p);
3603 if (ret < 0) {
3604 switch(c) {
3605 case 'F':
3606 monitor_printf(mon, "%s: filename expected\n",
3607 cmdname);
3608 break;
3609 case 'B':
3610 monitor_printf(mon, "%s: block device name expected\n",
3611 cmdname);
3612 break;
3613 default:
3614 monitor_printf(mon, "%s: string expected\n", cmdname);
3615 break;
3616 }
3617 goto fail;
3618 }
3619 qdict_put(qdict, key, qstring_from_str(buf));
3620 }
3621 break;
3622 case 'O':
3623 {
3624 QemuOptsList *opts_list;
3625 QemuOpts *opts;
3626
3627 opts_list = qemu_find_opts(key);
3628 if (!opts_list || opts_list->desc->name) {
3629 goto bad_type;
3630 }
3631 while (qemu_isspace(*p)) {
3632 p++;
3633 }
3634 if (!*p)
3635 break;
3636 if (get_str(buf, sizeof(buf), &p) < 0) {
3637 goto fail;
3638 }
3639 opts = qemu_opts_parse(opts_list, buf, 1);
3640 if (!opts) {
3641 goto fail;
3642 }
3643 qemu_opts_to_qdict(opts, qdict);
3644 qemu_opts_del(opts);
3645 }
3646 break;
3647 case '/':
3648 {
3649 int count, format, size;
3650
3651 while (qemu_isspace(*p))
3652 p++;
3653 if (*p == '/') {
3654 /* format found */
3655 p++;
3656 count = 1;
3657 if (qemu_isdigit(*p)) {
3658 count = 0;
3659 while (qemu_isdigit(*p)) {
3660 count = count * 10 + (*p - '0');
3661 p++;
3662 }
3663 }
3664 size = -1;
3665 format = -1;
3666 for(;;) {
3667 switch(*p) {
3668 case 'o':
3669 case 'd':
3670 case 'u':
3671 case 'x':
3672 case 'i':
3673 case 'c':
3674 format = *p++;
3675 break;
3676 case 'b':
3677 size = 1;
3678 p++;
3679 break;
3680 case 'h':
3681 size = 2;
3682 p++;
3683 break;
3684 case 'w':
3685 size = 4;
3686 p++;
3687 break;
3688 case 'g':
3689 case 'L':
3690 size = 8;
3691 p++;
3692 break;
3693 default:
3694 goto next;
3695 }
3696 }
3697 next:
3698 if (*p != '\0' && !qemu_isspace(*p)) {
3699 monitor_printf(mon, "invalid char in format: '%c'\n",
3700 *p);
3701 goto fail;
3702 }
3703 if (format < 0)
3704 format = default_fmt_format;
3705 if (format != 'i') {
3706 /* for 'i', not specifying a size gives -1 as size */
3707 if (size < 0)
3708 size = default_fmt_size;
3709 default_fmt_size = size;
3710 }
3711 default_fmt_format = format;
3712 } else {
3713 count = 1;
3714 format = default_fmt_format;
3715 if (format != 'i') {
3716 size = default_fmt_size;
3717 } else {
3718 size = -1;
3719 }
3720 }
3721 qdict_put(qdict, "count", qint_from_int(count));
3722 qdict_put(qdict, "format", qint_from_int(format));
3723 qdict_put(qdict, "size", qint_from_int(size));
3724 }
3725 break;
3726 case 'i':
3727 case 'l':
3728 case 'M':
3729 {
3730 int64_t val;
3731
3732 while (qemu_isspace(*p))
3733 p++;
3734 if (*typestr == '?' || *typestr == '.') {
3735 if (*typestr == '?') {
3736 if (*p == '\0') {
3737 typestr++;
3738 break;
3739 }
3740 } else {
3741 if (*p == '.') {
3742 p++;
3743 while (qemu_isspace(*p))
3744 p++;
3745 } else {
3746 typestr++;
3747 break;
3748 }
3749 }
3750 typestr++;
3751 }
3752 if (get_expr(mon, &val, &p))
3753 goto fail;
3754 /* Check if 'i' is greater than 32-bit */
3755 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3756 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3757 monitor_printf(mon, "integer is for 32-bit values\n");
3758 goto fail;
3759 } else if (c == 'M') {
3760 val <<= 20;
3761 }
3762 qdict_put(qdict, key, qint_from_int(val));
3763 }
3764 break;
3765 case 'o':
3766 {
3767 int64_t val;
3768 char *end;
3769
3770 while (qemu_isspace(*p)) {
3771 p++;
3772 }
3773 if (*typestr == '?') {
3774 typestr++;
3775 if (*p == '\0') {
3776 break;
3777 }
3778 }
3779 val = strtosz(p, &end);
3780 if (val < 0) {
3781 monitor_printf(mon, "invalid size\n");
3782 goto fail;
3783 }
3784 qdict_put(qdict, key, qint_from_int(val));
3785 p = end;
3786 }
3787 break;
3788 case 'T':
3789 {
3790 double val;
3791
3792 while (qemu_isspace(*p))
3793 p++;
3794 if (*typestr == '?') {
3795 typestr++;
3796 if (*p == '\0') {
3797 break;
3798 }
3799 }
3800 if (get_double(mon, &val, &p) < 0) {
3801 goto fail;
3802 }
3803 if (p[0] && p[1] == 's') {
3804 switch (*p) {
3805 case 'm':
3806 val /= 1e3; p += 2; break;
3807 case 'u':
3808 val /= 1e6; p += 2; break;
3809 case 'n':
3810 val /= 1e9; p += 2; break;
3811 }
3812 }
3813 if (*p && !qemu_isspace(*p)) {
3814 monitor_printf(mon, "Unknown unit suffix\n");
3815 goto fail;
3816 }
3817 qdict_put(qdict, key, qfloat_from_double(val));
3818 }
3819 break;
3820 case 'b':
3821 {
3822 const char *beg;
3823 int val;
3824
3825 while (qemu_isspace(*p)) {
3826 p++;
3827 }
3828 beg = p;
3829 while (qemu_isgraph(*p)) {
3830 p++;
3831 }
3832 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3833 val = 1;
3834 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3835 val = 0;
3836 } else {
3837 monitor_printf(mon, "Expected 'on' or 'off'\n");
3838 goto fail;
3839 }
3840 qdict_put(qdict, key, qbool_from_int(val));
3841 }
3842 break;
3843 case '-':
3844 {
3845 const char *tmp = p;
3846 int skip_key = 0;
3847 /* option */
3848
3849 c = *typestr++;
3850 if (c == '\0')
3851 goto bad_type;
3852 while (qemu_isspace(*p))
3853 p++;
3854 if (*p == '-') {
3855 p++;
3856 if(c != *p) {
3857 if(!is_valid_option(p, typestr)) {
3858
3859 monitor_printf(mon, "%s: unsupported option -%c\n",
3860 cmdname, *p);
3861 goto fail;
3862 } else {
3863 skip_key = 1;
3864 }
3865 }
3866 if(skip_key) {
3867 p = tmp;
3868 } else {
3869 /* has option */
3870 p++;
3871 qdict_put(qdict, key, qbool_from_int(1));
3872 }
3873 }
3874 }
3875 break;
3876 default:
3877 bad_type:
3878 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
3879 goto fail;
3880 }
3881 g_free(key);
3882 key = NULL;
3883 }
3884 /* check that all arguments were parsed */
3885 while (qemu_isspace(*p))
3886 p++;
3887 if (*p != '\0') {
3888 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3889 cmdname);
3890 goto fail;
3891 }
3892
3893 return cmd;
3894
3895 fail:
3896 g_free(key);
3897 return NULL;
3898 }
3899
3900 void monitor_set_error(Monitor *mon, QError *qerror)
3901 {
3902 /* report only the first error */
3903 if (!mon->error) {
3904 mon->error = qerror;
3905 } else {
3906 MON_DEBUG("Additional error report at %s:%d\n",
3907 qerror->file, qerror->linenr);
3908 QDECREF(qerror);
3909 }
3910 }
3911
3912 static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3913 {
3914 if (ret && !monitor_has_error(mon)) {
3915 /*
3916 * If it returns failure, it must have passed on error.
3917 *
3918 * Action: Report an internal error to the client if in QMP.
3919 */
3920 qerror_report(QERR_UNDEFINED_ERROR);
3921 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
3922 cmd->name);
3923 }
3924
3925 #ifdef CONFIG_DEBUG_MONITOR
3926 if (!ret && monitor_has_error(mon)) {
3927 /*
3928 * If it returns success, it must not have passed an error.
3929 *
3930 * Action: Report the passed error to the client.
3931 */
3932 MON_DEBUG("command '%s' returned success but passed an error\n",
3933 cmd->name);
3934 }
3935
3936 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
3937 /*
3938 * Handlers should not call Monitor print functions.
3939 *
3940 * Action: Ignore them in QMP.
3941 *
3942 * (XXX: we don't check any 'info' or 'query' command here
3943 * because the user print function _is_ called by do_info(), hence
3944 * we will trigger this check. This problem will go away when we
3945 * make 'query' commands real and kill do_info())
3946 */
3947 MON_DEBUG("command '%s' called print functions %d time(s)\n",
3948 cmd->name, mon_print_count_get(mon));
3949 }
3950 #endif
3951 }
3952
3953 static void handle_user_command(Monitor *mon, const char *cmdline)
3954 {
3955 QDict *qdict;
3956 const mon_cmd_t *cmd;
3957
3958 qdict = qdict_new();
3959
3960 cmd = monitor_parse_command(mon, cmdline, qdict);
3961 if (!cmd)
3962 goto out;
3963
3964 if (handler_is_async(cmd)) {
3965 user_async_cmd_handler(mon, cmd, qdict);
3966 } else if (handler_is_qobject(cmd)) {
3967 QObject *data = NULL;
3968
3969 /* XXX: ignores the error code */
3970 cmd->mhandler.cmd_new(mon, qdict, &data);
3971 assert(!monitor_has_error(mon));
3972 if (data) {
3973 cmd->user_print(mon, data);
3974 qobject_decref(data);
3975 }
3976 } else {
3977 cmd->mhandler.cmd(mon, qdict);
3978 }
3979
3980 out:
3981 QDECREF(qdict);
3982 }
3983
3984 static void cmd_completion(const char *name, const char *list)
3985 {
3986 const char *p, *pstart;
3987 char cmd[128];
3988 int len;
3989
3990 p = list;
3991 for(;;) {
3992 pstart = p;
3993 p = strchr(p, '|');
3994 if (!p)
3995 p = pstart + strlen(pstart);
3996 len = p - pstart;
3997 if (len > sizeof(cmd) - 2)
3998 len = sizeof(cmd) - 2;
3999 memcpy(cmd, pstart, len);
4000 cmd[len] = '\0';
4001 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
4002 readline_add_completion(cur_mon->rs, cmd);
4003 }
4004 if (*p == '\0')
4005 break;
4006 p++;
4007 }
4008 }
4009
4010 static void file_completion(const char *input)
4011 {
4012 DIR *ffs;
4013 struct dirent *d;
4014 char path[1024];
4015 char file[1024], file_prefix[1024];
4016 int input_path_len;
4017 const char *p;
4018
4019 p = strrchr(input, '/');
4020 if (!p) {
4021 input_path_len = 0;
4022 pstrcpy(file_prefix, sizeof(file_prefix), input);
4023 pstrcpy(path, sizeof(path), ".");
4024 } else {
4025 input_path_len = p - input + 1;
4026 memcpy(path, input, input_path_len);
4027 if (input_path_len > sizeof(path) - 1)
4028 input_path_len = sizeof(path) - 1;
4029 path[input_path_len] = '\0';
4030 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4031 }
4032 #ifdef DEBUG_COMPLETION
4033 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
4034 input, path, file_prefix);
4035 #endif
4036 ffs = opendir(path);
4037 if (!ffs)
4038 return;
4039 for(;;) {
4040 struct stat sb;
4041 d = readdir(ffs);
4042 if (!d)
4043 break;
4044
4045 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4046 continue;
4047 }
4048
4049 if (strstart(d->d_name, file_prefix, NULL)) {
4050 memcpy(file, input, input_path_len);
4051 if (input_path_len < sizeof(file))
4052 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4053 d->d_name);
4054 /* stat the file to find out if it's a directory.
4055 * In that case add a slash to speed up typing long paths
4056 */
4057 if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) {
4058 pstrcat(file, sizeof(file), "/");
4059 }
4060 readline_add_completion(cur_mon->rs, file);
4061 }
4062 }
4063 closedir(ffs);
4064 }
4065
4066 static void block_completion_it(void *opaque, BlockDriverState *bs)
4067 {
4068 const char *name = bdrv_get_device_name(bs);
4069 const char *input = opaque;
4070
4071 if (input[0] == '\0' ||
4072 !strncmp(name, (char *)input, strlen(input))) {
4073 readline_add_completion(cur_mon->rs, name);
4074 }
4075 }
4076
4077 /* NOTE: this parser is an approximate form of the real command parser */
4078 static void parse_cmdline(const char *cmdline,
4079 int *pnb_args, char **args)
4080 {
4081 const char *p;
4082 int nb_args, ret;
4083 char buf[1024];
4084
4085 p = cmdline;
4086 nb_args = 0;
4087 for(;;) {
4088 while (qemu_isspace(*p))
4089 p++;
4090 if (*p == '\0')
4091 break;
4092 if (nb_args >= MAX_ARGS)
4093 break;
4094 ret = get_str(buf, sizeof(buf), &p);
4095 args[nb_args] = g_strdup(buf);
4096 nb_args++;
4097 if (ret < 0)
4098 break;
4099 }
4100 *pnb_args = nb_args;
4101 }
4102
4103 static const char *next_arg_type(const char *typestr)
4104 {
4105 const char *p = strchr(typestr, ':');
4106 return (p != NULL ? ++p : typestr);
4107 }
4108
4109 static void monitor_find_completion(const char *cmdline)
4110 {
4111 const char *cmdname;
4112 char *args[MAX_ARGS];
4113 int nb_args, i, len;
4114 const char *ptype, *str;
4115 const mon_cmd_t *cmd;
4116 const KeyDef *key;
4117
4118 parse_cmdline(cmdline, &nb_args, args);
4119 #ifdef DEBUG_COMPLETION
4120 for(i = 0; i < nb_args; i++) {
4121 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
4122 }
4123 #endif
4124
4125 /* if the line ends with a space, it means we want to complete the
4126 next arg */
4127 len = strlen(cmdline);
4128 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
4129 if (nb_args >= MAX_ARGS) {
4130 goto cleanup;
4131 }
4132 args[nb_args++] = g_strdup("");
4133 }
4134 if (nb_args <= 1) {
4135 /* command completion */
4136 if (nb_args == 0)
4137 cmdname = "";
4138 else
4139 cmdname = args[0];
4140 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
4141 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
4142 cmd_completion(cmdname, cmd->name);
4143 }
4144 } else {
4145 /* find the command */
4146 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4147 if (compare_cmd(args[0], cmd->name)) {
4148 break;
4149 }
4150 }
4151 if (!cmd->name) {
4152 goto cleanup;
4153 }
4154
4155 ptype = next_arg_type(cmd->args_type);
4156 for(i = 0; i < nb_args - 2; i++) {
4157 if (*ptype != '\0') {
4158 ptype = next_arg_type(ptype);
4159 while (*ptype == '?')
4160 ptype = next_arg_type(ptype);
4161 }
4162 }
4163 str = args[nb_args - 1];
4164 if (*ptype == '-' && ptype[1] != '\0') {
4165 ptype = next_arg_type(ptype);
4166 }
4167 switch(*ptype) {
4168 case 'F':
4169 /* file completion */
4170 readline_set_completion_index(cur_mon->rs, strlen(str));
4171 file_completion(str);
4172 break;
4173 case 'B':
4174 /* block device name completion */
4175 readline_set_completion_index(cur_mon->rs, strlen(str));
4176 bdrv_iterate(block_completion_it, (void *)str);
4177 break;
4178 case 's':
4179 /* XXX: more generic ? */
4180 if (!strcmp(cmd->name, "info")) {
4181 readline_set_completion_index(cur_mon->rs, strlen(str));
4182 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4183 cmd_completion(str, cmd->name);
4184 }
4185 } else if (!strcmp(cmd->name, "sendkey")) {
4186 char *sep = strrchr(str, '-');
4187 if (sep)
4188 str = sep + 1;
4189 readline_set_completion_index(cur_mon->rs, strlen(str));
4190 for(key = key_defs; key->name != NULL; key++) {
4191 cmd_completion(str, key->name);
4192 }
4193 } else if (!strcmp(cmd->name, "help|?")) {
4194 readline_set_completion_index(cur_mon->rs, strlen(str));
4195 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4196 cmd_completion(str, cmd->name);
4197 }
4198 }
4199 break;
4200 default:
4201 break;
4202 }
4203 }
4204
4205 cleanup:
4206 for (i = 0; i < nb_args; i++) {
4207 g_free(args[i]);
4208 }
4209 }
4210
4211 static int monitor_can_read(void *opaque)
4212 {
4213 Monitor *mon = opaque;
4214
4215 return (mon->suspend_cnt == 0) ? 1 : 0;
4216 }
4217
4218 static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4219 {
4220 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4221 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4222 }
4223
4224 /*
4225 * Argument validation rules:
4226 *
4227 * 1. The argument must exist in cmd_args qdict
4228 * 2. The argument type must be the expected one
4229 *
4230 * Special case: If the argument doesn't exist in cmd_args and
4231 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4232 * checking is skipped for it.
4233 */
4234 static int check_client_args_type(const QDict *client_args,
4235 const QDict *cmd_args, int flags)
4236 {
4237 const QDictEntry *ent;
4238
4239 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4240 QObject *obj;
4241 QString *arg_type;
4242 const QObject *client_arg = qdict_entry_value(ent);
4243 const char *client_arg_name = qdict_entry_key(ent);
4244
4245 obj = qdict_get(cmd_args, client_arg_name);
4246 if (!obj) {
4247 if (flags & QMP_ACCEPT_UNKNOWNS) {
4248 /* handler accepts unknowns */
4249 continue;
4250 }
4251 /* client arg doesn't exist */
4252 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4253 return -1;
4254 }
4255
4256 arg_type = qobject_to_qstring(obj);
4257 assert(arg_type != NULL);
4258
4259 /* check if argument's type is correct */
4260 switch (qstring_get_str(arg_type)[0]) {
4261 case 'F':
4262 case 'B':
4263 case 's':
4264 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4265 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4266 "string");
4267 return -1;
4268 }
4269 break;
4270 case 'i':
4271 case 'l':
4272 case 'M':
4273 case 'o':
4274 if (qobject_type(client_arg) != QTYPE_QINT) {
4275 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4276 "int");
4277 return -1;
4278 }
4279 break;
4280 case 'T':
4281 if (qobject_type(client_arg) != QTYPE_QINT &&
4282 qobject_type(client_arg) != QTYPE_QFLOAT) {
4283 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4284 "number");
4285 return -1;
4286 }
4287 break;
4288 case 'b':
4289 case '-':
4290 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4291 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4292 "bool");
4293 return -1;
4294 }
4295 break;
4296 case 'O':
4297 assert(flags & QMP_ACCEPT_UNKNOWNS);
4298 break;
4299 case '/':
4300 case '.':
4301 /*
4302 * These types are not supported by QMP and thus are not
4303 * handled here. Fall through.
4304 */
4305 default:
4306 abort();
4307 }
4308 }
4309
4310 return 0;
4311 }
4312
4313 /*
4314 * - Check if the client has passed all mandatory args
4315 * - Set special flags for argument validation
4316 */
4317 static int check_mandatory_args(const QDict *cmd_args,
4318 const QDict *client_args, int *flags)
4319 {
4320 const QDictEntry *ent;
4321
4322 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4323 const char *cmd_arg_name = qdict_entry_key(ent);
4324 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4325 assert(type != NULL);
4326
4327 if (qstring_get_str(type)[0] == 'O') {
4328 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4329 *flags |= QMP_ACCEPT_UNKNOWNS;
4330 } else if (qstring_get_str(type)[0] != '-' &&
4331 qstring_get_str(type)[1] != '?' &&
4332 !qdict_haskey(client_args, cmd_arg_name)) {
4333 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4334 return -1;
4335 }
4336 }
4337
4338 return 0;
4339 }
4340
4341 static QDict *qdict_from_args_type(const char *args_type)
4342 {
4343 int i;
4344 QDict *qdict;
4345 QString *key, *type, *cur_qs;
4346
4347 assert(args_type != NULL);
4348
4349 qdict = qdict_new();
4350
4351 if (args_type == NULL || args_type[0] == '\0') {
4352 /* no args, empty qdict */
4353 goto out;
4354 }
4355
4356 key = qstring_new();
4357 type = qstring_new();
4358
4359 cur_qs = key;
4360
4361 for (i = 0;; i++) {
4362 switch (args_type[i]) {
4363 case ',':
4364 case '\0':
4365 qdict_put(qdict, qstring_get_str(key), type);
4366 QDECREF(key);
4367 if (args_type[i] == '\0') {
4368 goto out;
4369 }
4370 type = qstring_new(); /* qdict has ref */
4371 cur_qs = key = qstring_new();
4372 break;
4373 case ':':
4374 cur_qs = type;
4375 break;
4376 default:
4377 qstring_append_chr(cur_qs, args_type[i]);
4378 break;
4379 }
4380 }
4381
4382 out:
4383 return qdict;
4384 }
4385
4386 /*
4387 * Client argument checking rules:
4388 *
4389 * 1. Client must provide all mandatory arguments
4390 * 2. Each argument provided by the client must be expected
4391 * 3. Each argument provided by the client must have the type expected
4392 * by the command
4393 */
4394 static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4395 {
4396 int flags, err;
4397 QDict *cmd_args;
4398
4399 cmd_args = qdict_from_args_type(cmd->args_type);
4400
4401 flags = 0;
4402 err = check_mandatory_args(cmd_args, client_args, &flags);
4403 if (err) {
4404 goto out;
4405 }
4406
4407 err = check_client_args_type(client_args, cmd_args, flags);
4408
4409 out:
4410 QDECREF(cmd_args);
4411 return err;
4412 }
4413
4414 /*
4415 * Input object checking rules
4416 *
4417 * 1. Input object must be a dict
4418 * 2. The "execute" key must exist
4419 * 3. The "execute" key must be a string
4420 * 4. If the "arguments" key exists, it must be a dict
4421 * 5. If the "id" key exists, it can be anything (ie. json-value)
4422 * 6. Any argument not listed above is considered invalid
4423 */
4424 static QDict *qmp_check_input_obj(QObject *input_obj)
4425 {
4426 const QDictEntry *ent;
4427 int has_exec_key = 0;
4428 QDict *input_dict;
4429
4430 if (qobject_type(input_obj) != QTYPE_QDICT) {
4431 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4432 return NULL;
4433 }
4434
4435 input_dict = qobject_to_qdict(input_obj);
4436
4437 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4438 const char *arg_name = qdict_entry_key(ent);
4439 const QObject *arg_obj = qdict_entry_value(ent);
4440
4441 if (!strcmp(arg_name, "execute")) {
4442 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4443 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4444 "string");
4445 return NULL;
4446 }
4447 has_exec_key = 1;
4448 } else if (!strcmp(arg_name, "arguments")) {
4449 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4450 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4451 "object");
4452 return NULL;
4453 }
4454 } else if (!strcmp(arg_name, "id")) {
4455 /* FIXME: check duplicated IDs for async commands */
4456 } else {
4457 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4458 return NULL;
4459 }
4460 }
4461
4462 if (!has_exec_key) {
4463 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4464 return NULL;
4465 }
4466
4467 return input_dict;
4468 }
4469
4470 static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4471 const QDict *params)
4472 {
4473 int ret;
4474 QObject *data = NULL;
4475
4476 mon_print_count_init(mon);
4477
4478 ret = cmd->mhandler.cmd_new(mon, params, &data);
4479 handler_audit(mon, cmd, ret);
4480 monitor_protocol_emitter(mon, data);
4481 qobject_decref(data);
4482 }
4483
4484 static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4485 {
4486 int err;
4487 QObject *obj;
4488 QDict *input, *args;
4489 const mon_cmd_t *cmd;
4490 const char *cmd_name;
4491 Monitor *mon = cur_mon;
4492
4493 args = input = NULL;
4494
4495 obj = json_parser_parse(tokens, NULL);
4496 if (!obj) {
4497 // FIXME: should be triggered in json_parser_parse()
4498 qerror_report(QERR_JSON_PARSING);
4499 goto err_out;
4500 }
4501
4502 input = qmp_check_input_obj(obj);
4503 if (!input) {
4504 qobject_decref(obj);
4505 goto err_out;
4506 }
4507
4508 mon->mc->id = qdict_get(input, "id");
4509 qobject_incref(mon->mc->id);
4510
4511 cmd_name = qdict_get_str(input, "execute");
4512 trace_handle_qmp_command(mon, cmd_name);
4513 if (invalid_qmp_mode(mon, cmd_name)) {
4514 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4515 goto err_out;
4516 }
4517
4518 cmd = qmp_find_cmd(cmd_name);
4519 if (!cmd) {
4520 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4521 goto err_out;
4522 }
4523
4524 obj = qdict_get(input, "arguments");
4525 if (!obj) {
4526 args = qdict_new();
4527 } else {
4528 args = qobject_to_qdict(obj);
4529 QINCREF(args);
4530 }
4531
4532 err = qmp_check_client_args(cmd, args);
4533 if (err < 0) {
4534 goto err_out;
4535 }
4536
4537 if (handler_is_async(cmd)) {
4538 err = qmp_async_cmd_handler(mon, cmd, args);
4539 if (err) {
4540 /* emit the error response */
4541 goto err_out;
4542 }
4543 } else {
4544 qmp_call_cmd(mon, cmd, args);
4545 }
4546
4547 goto out;
4548
4549 err_out:
4550 monitor_protocol_emitter(mon, NULL);
4551 out:
4552 QDECREF(input);
4553 QDECREF(args);
4554 }
4555
4556 /**
4557 * monitor_control_read(): Read and handle QMP input
4558 */
4559 static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4560 {
4561 Monitor *old_mon = cur_mon;
4562
4563 cur_mon = opaque;
4564
4565 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
4566
4567 cur_mon = old_mon;
4568 }
4569
4570 static void monitor_read(void *opaque, const uint8_t *buf, int size)
4571 {
4572 Monitor *old_mon = cur_mon;
4573 int i;
4574
4575 cur_mon = opaque;
4576
4577 if (cur_mon->rs) {
4578 for (i = 0; i < size; i++)
4579 readline_handle_byte(cur_mon->rs, buf[i]);
4580 } else {
4581 if (size == 0 || buf[size - 1] != 0)
4582 monitor_printf(cur_mon, "corrupted command\n");
4583 else
4584 handle_user_command(cur_mon, (char *)buf);
4585 }
4586
4587 cur_mon = old_mon;
4588 }
4589
4590 static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
4591 {
4592 monitor_suspend(mon);
4593 handle_user_command(mon, cmdline);
4594 monitor_resume(mon);
4595 }
4596
4597 int monitor_suspend(Monitor *mon)
4598 {
4599 if (!mon->rs)
4600 return -ENOTTY;
4601 mon->suspend_cnt++;
4602 return 0;
4603 }
4604
4605 void monitor_resume(Monitor *mon)
4606 {
4607 if (!mon->rs)
4608 return;
4609 if (--mon->suspend_cnt == 0)
4610 readline_show_prompt(mon->rs);
4611 }
4612
4613 static QObject *get_qmp_greeting(void)
4614 {
4615 QObject *ver = NULL;
4616
4617 qmp_marshal_input_query_version(NULL, NULL, &ver);
4618 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4619 }
4620
4621 /**
4622 * monitor_control_event(): Print QMP gretting
4623 */
4624 static void monitor_control_event(void *opaque, int event)
4625 {
4626 QObject *data;
4627 Monitor *mon = opaque;
4628
4629 switch (event) {
4630 case CHR_EVENT_OPENED:
4631 mon->mc->command_mode = 0;
4632 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
4633 data = get_qmp_greeting();
4634 monitor_json_emitter(mon, data);
4635 qobject_decref(data);
4636 break;
4637 case CHR_EVENT_CLOSED:
4638 json_message_parser_destroy(&mon->mc->parser);
4639 break;
4640 }
4641 }
4642
4643 static void monitor_event(void *opaque, int event)
4644 {
4645 Monitor *mon = opaque;
4646
4647 switch (event) {
4648 case CHR_EVENT_MUX_IN:
4649 mon->mux_out = 0;
4650 if (mon->reset_seen) {
4651 readline_restart(mon->rs);
4652 monitor_resume(mon);
4653 monitor_flush(mon);
4654 } else {
4655 mon->suspend_cnt = 0;
4656 }
4657 break;
4658
4659 case CHR_EVENT_MUX_OUT:
4660 if (mon->reset_seen) {
4661 if (mon->suspend_cnt == 0) {
4662 monitor_printf(mon, "\n");
4663 }
4664 monitor_flush(mon);
4665 monitor_suspend(mon);
4666 } else {
4667 mon->suspend_cnt++;
4668 }
4669 mon->mux_out = 1;
4670 break;
4671
4672 case CHR_EVENT_OPENED:
4673 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4674 "information\n", QEMU_VERSION);
4675 if (!mon->mux_out) {
4676 readline_show_prompt(mon->rs);
4677 }
4678 mon->reset_seen = 1;
4679 break;
4680 }
4681 }
4682
4683 static int
4684 compare_mon_cmd(const void *a, const void *b)
4685 {
4686 return strcmp(((const mon_cmd_t *)a)->name,
4687 ((const mon_cmd_t *)b)->name);
4688 }
4689
4690 static void sortcmdlist(void)
4691 {
4692 int array_num;
4693 int elem_size = sizeof(mon_cmd_t);
4694
4695 array_num = sizeof(mon_cmds)/elem_size-1;
4696 qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd);
4697
4698 array_num = sizeof(info_cmds)/elem_size-1;
4699 qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd);
4700 }
4701
4702
4703 /*
4704 * Local variables:
4705 * c-indent-level: 4
4706 * c-basic-offset: 4
4707 * tab-width: 8
4708 * End:
4709 */
4710
4711 void monitor_init(CharDriverState *chr, int flags)
4712 {
4713 static int is_first_init = 1;
4714 Monitor *mon;
4715
4716 if (is_first_init) {
4717 key_timer = qemu_new_timer_ns(vm_clock, release_keys, NULL);
4718 is_first_init = 0;
4719 }
4720
4721 mon = g_malloc0(sizeof(*mon));
4722
4723 mon->chr = chr;
4724 mon->flags = flags;
4725 if (flags & MONITOR_USE_READLINE) {
4726 mon->rs = readline_init(mon, monitor_find_completion);
4727 monitor_read_command(mon, 0);
4728 }
4729
4730 if (monitor_ctrl_mode(mon)) {
4731 mon->mc = g_malloc0(sizeof(MonitorControl));
4732 /* Control mode requires special handlers */
4733 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4734 monitor_control_event, mon);
4735 qemu_chr_fe_set_echo(chr, true);
4736 } else {
4737 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4738 monitor_event, mon);
4739 }
4740
4741 QLIST_INSERT_HEAD(&mon_list, mon, entry);
4742 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4743 default_mon = mon;
4744
4745 sortcmdlist();
4746 }
4747
4748 static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
4749 {
4750 BlockDriverState *bs = opaque;
4751 int ret = 0;
4752
4753 if (bdrv_set_key(bs, password) != 0) {
4754 monitor_printf(mon, "invalid password\n");
4755 ret = -EPERM;
4756 }
4757 if (mon->password_completion_cb)
4758 mon->password_completion_cb(mon->password_opaque, ret);
4759
4760 monitor_read_command(mon, 1);
4761 }
4762
4763 int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4764 BlockDriverCompletionFunc *completion_cb,
4765 void *opaque)
4766 {
4767 int err;
4768
4769 if (!bdrv_key_required(bs)) {
4770 if (completion_cb)
4771 completion_cb(opaque, 0);
4772 return 0;
4773 }
4774
4775 if (monitor_ctrl_mode(mon)) {
4776 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
4777 return -1;
4778 }
4779
4780 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4781 bdrv_get_encrypted_filename(bs));
4782
4783 mon->password_completion_cb = completion_cb;
4784 mon->password_opaque = opaque;
4785
4786 err = monitor_read_password(mon, bdrv_password_cb, bs);
4787
4788 if (err && completion_cb)
4789 completion_cb(opaque, err);
4790
4791 return err;
4792 }
4793
4794 int monitor_read_block_device_key(Monitor *mon, const char *device,
4795 BlockDriverCompletionFunc *completion_cb,
4796 void *opaque)
4797 {
4798 BlockDriverState *bs;
4799
4800 bs = bdrv_find(device);
4801 if (!bs) {
4802 monitor_printf(mon, "Device not found %s\n", device);
4803 return -1;
4804 }
4805
4806 return monitor_read_bdrv_key_start(mon, bs, completion_cb, opaque);
4807 }