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