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