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