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