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