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