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