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