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