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