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