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