blob: d4bd5feb60e7fe5314d26f2833592e82a596973f [file] [log] [blame]
bellard9dc39cb2004-03-14 21:38:27 +00001/*
2 * QEMU monitor
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard9dc39cb2004-03-14 21:38:27 +00004 * Copyright (c) 2003-2004 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellard9dc39cb2004-03-14 21:38:27 +00006 * 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 */
blueswir1511d2b12009-03-07 15:32:56 +000024#include <dirent.h>
pbrook87ecb682007-11-17 17:14:51 +000025#include "hw/hw.h"
Gerd Hoffmanncae49562009-06-05 15:53:17 +010026#include "hw/qdev.h"
pbrook87ecb682007-11-17 17:14:51 +000027#include "hw/usb.h"
28#include "hw/pcmcia.h"
29#include "hw/pc.h"
30#include "hw/pci.h"
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +010031#include "hw/watchdog.h"
Gerd Hoffmann45a50b12009-10-01 16:42:33 +020032#include "hw/loader.h"
pbrook87ecb682007-11-17 17:14:51 +000033#include "gdbstub.h"
34#include "net.h"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000035#include "net/slirp.h"
pbrook87ecb682007-11-17 17:14:51 +000036#include "qemu-char.h"
Gerd Hoffmann75721502010-10-07 12:22:54 +020037#include "ui/qemu-spice.h"
pbrook87ecb682007-11-17 17:14:51 +000038#include "sysemu.h"
aliguori376253e2009-03-05 23:01:23 +000039#include "monitor.h"
40#include "readline.h"
pbrook87ecb682007-11-17 17:14:51 +000041#include "console.h"
Markus Armbruster666daa62010-06-02 18:48:27 +020042#include "blockdev.h"
pbrook87ecb682007-11-17 17:14:51 +000043#include "audio/audio.h"
bellard9307c4c2004-04-04 12:57:25 +000044#include "disas.h"
aliguoridf751fa2008-12-04 20:19:35 +000045#include "balloon.h"
balrogc8256f92008-06-08 22:45:01 +000046#include "qemu-timer.h"
aliguori5bb79102008-10-13 03:12:02 +000047#include "migration.h"
aliguori7ba1e612008-11-05 16:04:33 +000048#include "kvm.h"
aliguori76655d62009-03-06 20:27:37 +000049#include "acl.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030050#include "qint.h"
Markus Armbruster3350a4d2010-01-25 14:23:03 +010051#include "qfloat.h"
Luiz Capitulino8f3cec02009-10-07 13:42:04 -030052#include "qlist.h"
Luiz Capitulino5fa737a2009-11-26 22:59:01 -020053#include "qbool.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030054#include "qstring.h"
Luiz Capitulino9b57c022009-11-26 22:58:58 -020055#include "qjson.h"
Luiz Capitulino5fa737a2009-11-26 22:59:01 -020056#include "json-streamer.h"
57#include "json-parser.h"
Blue Swirld08d6f02009-12-04 18:06:39 +000058#include "osdep.h"
Blue Swirl2b41f102011-06-19 20:38:22 +000059#include "cpu.h"
Stefan Hajnoczi89bd8202011-09-23 08:23:06 +010060#include "trace.h"
Lluís31965ae2011-08-31 20:31:24 +020061#include "trace/control.h"
Lluís6d8a7642011-08-31 20:30:43 +020062#ifdef CONFIG_TRACE_SIMPLE
Lluís31965ae2011-08-31 20:31:24 +020063#include "trace/simple.h"
Prerna Saxena22890ab2010-06-24 17:04:53 +053064#endif
Gerd Hoffmann6f8c63f2010-10-11 18:03:51 +020065#include "ui/qemu-spice.h"
Blue Swirl314e2982011-09-11 20:22:05 +000066#include "memory.h"
Anthony Liguori48a32be2011-09-02 12:34:48 -050067#include "qmp-commands.h"
68#include "hmp.h"
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +010069#include "qemu-thread.h"
ths6a5bd302007-12-03 17:05:38 +000070
Jan Kiszka661f1922011-10-16 11:53:13 +020071/* for pic/irq_info */
72#if defined(TARGET_SPARC)
73#include "hw/sun4m.h"
74#endif
75#include "hw/lm32_pic.h"
76
bellard9dc39cb2004-03-14 21:38:27 +000077//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000078//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000079
bellard9307c4c2004-04-04 12:57:25 +000080/*
81 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000082 *
bellard9307c4c2004-04-04 12:57:25 +000083 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000084 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000085 * 's' string (accept optional quote)
Markus Armbruster361127d2010-02-10 20:24:35 +010086 * 'O' option string of the form NAME=VALUE,...
87 * parsed according to QemuOptsList given by its name
88 * Example: 'device:O' uses qemu_device_opts.
89 * Restriction: only lists with empty desc are supported
90 * TODO lift the restriction
bellard92a31b12005-02-10 22:00:52 +000091 * 'i' 32 bit integer
92 * 'l' target long (32 or 64 bit)
Luiz Capitulino91162842012-04-26 17:34:30 -030093 * 'M' Non-negative target long (32 or 64 bit), in user mode the
94 * value is multiplied by 2^20 (think Mebibyte)
Jes Sorensendbc0c672010-10-21 17:15:47 +020095 * 'o' octets (aka bytes)
96 * user mode accepts an optional T, t, G, g, M, m, K, k
97 * suffix, which multiplies the value by 2^40 for
98 * suffixes T and t, 2^30 for suffixes G and g, 2^20 for
99 * M and m, 2^10 for K and k
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +0100100 * 'T' double
101 * user mode accepts an optional ms, us, ns suffix,
102 * which divides the value by 1e3, 1e6, 1e9, respectively
bellard9307c4c2004-04-04 12:57:25 +0000103 * '/' optional gdb-like print format (like "/10x")
104 *
Luiz Capitulinofb466602009-08-28 15:27:27 -0300105 * '?' optional type (for all types, except '/')
106 * '.' other form of optional type (for 'i' and 'l')
Markus Armbruster942cd1f2010-03-26 09:07:09 +0100107 * 'b' boolean
108 * user mode accepts "on" or "off"
Luiz Capitulinofb466602009-08-28 15:27:27 -0300109 * '-' optional parameter (eg. '-f')
bellard9307c4c2004-04-04 12:57:25 +0000110 *
111 */
112
Adam Litke940cc302010-01-25 12:18:44 -0600113typedef struct MonitorCompletionData MonitorCompletionData;
114struct MonitorCompletionData {
115 Monitor *mon;
116 void (*user_print)(Monitor *mon, const QObject *data);
117};
118
Anthony Liguoric227f092009-10-01 16:12:16 -0500119typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +0000120 const char *name;
bellard9307c4c2004-04-04 12:57:25 +0000121 const char *args_type;
bellard9dc39cb2004-03-14 21:38:27 +0000122 const char *params;
123 const char *help;
Luiz Capitulinoa2876f52009-10-07 13:41:53 -0300124 void (*user_print)(Monitor *mon, const QObject *data);
Luiz Capitulino910df892009-10-07 13:41:51 -0300125 union {
126 void (*info)(Monitor *mon);
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300127 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino261394d2010-02-10 23:50:02 -0200128 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600129 int (*cmd_async)(Monitor *mon, const QDict *params,
130 MonitorCompletion *cb, void *opaque);
Luiz Capitulino910df892009-10-07 13:41:51 -0300131 } mhandler;
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200132 int flags;
Anthony Liguoric227f092009-10-01 16:12:16 -0500133} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +0000134
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100135/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -0500136typedef struct mon_fd_t mon_fd_t;
137struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100138 char *name;
139 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -0500140 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100141};
142
Corey Bryantba1c0482012-08-14 16:43:43 -0400143/* file descriptor associated with a file descriptor set */
144typedef struct MonFdsetFd MonFdsetFd;
145struct MonFdsetFd {
146 int fd;
147 bool removed;
148 char *opaque;
149 QLIST_ENTRY(MonFdsetFd) next;
150};
151
152/* file descriptor set containing fds passed via SCM_RIGHTS */
153typedef struct MonFdset MonFdset;
154struct MonFdset {
155 int64_t id;
156 QLIST_HEAD(, MonFdsetFd) fds;
Corey Bryantadb696f2012-08-14 16:43:47 -0400157 QLIST_HEAD(, MonFdsetFd) dup_fds;
Corey Bryantba1c0482012-08-14 16:43:43 -0400158 QLIST_ENTRY(MonFdset) next;
159};
160
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200161typedef struct MonitorControl {
162 QObject *id;
163 JSONMessageParser parser;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200164 int command_mode;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200165} MonitorControl;
166
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100167/*
168 * To prevent flooding clients, events can be throttled. The
169 * throttling is calculated globally, rather than per-Monitor
170 * instance.
171 */
172typedef struct MonitorEventState {
173 MonitorEvent event; /* Event being tracked */
174 int64_t rate; /* Period over which to throttle. 0 to disable */
175 int64_t last; /* Time at which event was last emitted */
176 QEMUTimer *timer; /* Timer for handling delayed events */
177 QObject *data; /* Event pending delayed dispatch */
178} MonitorEventState;
179
aliguori87127162009-03-05 23:01:29 +0000180struct Monitor {
181 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200182 int mux_out;
183 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000184 int flags;
185 int suspend_cnt;
186 uint8_t outbuf[1024];
187 int outbuf_index;
188 ReadLineState *rs;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200189 MonitorControl *mc;
Andreas Färber9349b4f2012-03-14 01:38:32 +0100190 CPUArchState *mon_cpu;
aliguori731b0362009-03-05 23:01:42 +0000191 BlockDriverCompletionFunc *password_completion_cb;
192 void *password_opaque;
Luiz Capitulino8204a912009-11-18 23:05:31 -0200193 QError *error;
Anthony Liguoric227f092009-10-01 16:12:16 -0500194 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000195 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000196};
197
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -0300198/* QMP checker flags */
199#define QMP_ACCEPT_UNKNOWNS 1
200
Blue Swirl72cf2d42009-09-12 07:36:22 +0000201static QLIST_HEAD(mon_list, Monitor) mon_list;
Corey Bryantba1c0482012-08-14 16:43:43 -0400202static QLIST_HEAD(mon_fdsets, MonFdset) mon_fdsets;
Corey Bryantefb87c12012-08-14 16:43:48 -0400203static int mon_refcount;
bellard7e2515e2004-08-01 21:52:19 +0000204
Wayne Xia816f8922011-10-12 11:32:41 +0800205static mon_cmd_t mon_cmds[];
206static mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000207
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300208static const mon_cmd_t qmp_cmds[];
209
Markus Armbruster8631b602010-02-18 11:41:55 +0100210Monitor *cur_mon;
211Monitor *default_mon;
aliguori376253e2009-03-05 23:01:23 +0000212
aliguori731b0362009-03-05 23:01:42 +0000213static void monitor_command_cb(Monitor *mon, const char *cmdline,
214 void *opaque);
aliguori83ab7952008-08-19 14:44:22 +0000215
Luiz Capitulino09069b12010-02-04 18:10:06 -0200216static inline int qmp_cmd_mode(const Monitor *mon)
217{
218 return (mon->mc ? mon->mc->command_mode : 0);
219}
220
Luiz Capitulino418173c2009-11-26 22:58:51 -0200221/* Return true if in control mode, false otherwise */
222static inline int monitor_ctrl_mode(const Monitor *mon)
223{
224 return (mon->flags & MONITOR_USE_CONTROL);
225}
226
Markus Armbruster6620d3c2010-02-11 17:05:43 +0100227/* Return non-zero iff we have a current monitor, and it is in QMP mode. */
228int monitor_cur_is_qmp(void)
229{
230 return cur_mon && monitor_ctrl_mode(cur_mon);
231}
232
Anthony Liguori7060b472011-09-02 12:34:50 -0500233void monitor_read_command(Monitor *mon, int show_prompt)
aliguori731b0362009-03-05 23:01:42 +0000234{
Luiz Capitulino183e6e52009-12-14 18:53:23 -0200235 if (!mon->rs)
236 return;
237
aliguori731b0362009-03-05 23:01:42 +0000238 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
239 if (show_prompt)
240 readline_show_prompt(mon->rs);
241}
bellard6a00d602005-11-21 23:25:50 +0000242
Anthony Liguori7060b472011-09-02 12:34:50 -0500243int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
244 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000245{
Luiz Capitulino94171e12009-12-07 21:37:00 +0100246 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100247 qerror_report(QERR_MISSING_PARAMETER, "password");
Luiz Capitulino94171e12009-12-07 21:37:00 +0100248 return -EINVAL;
249 } else if (mon->rs) {
aliguoricde76ee2009-03-05 23:01:51 +0000250 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
251 /* prompt is printed on return from the command handler */
252 return 0;
253 } else {
254 monitor_printf(mon, "terminal does not support password prompting\n");
255 return -ENOTTY;
256 }
aliguoribb5fc202009-03-05 23:01:15 +0000257}
258
aliguori376253e2009-03-05 23:01:23 +0000259void monitor_flush(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000260{
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200261 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
Anthony Liguori2cc6e0a2011-08-15 11:17:28 -0500262 qemu_chr_fe_write(mon->chr, mon->outbuf, mon->outbuf_index);
aliguori731b0362009-03-05 23:01:42 +0000263 mon->outbuf_index = 0;
bellard7e2515e2004-08-01 21:52:19 +0000264 }
265}
266
267/* flush at every end of line or if the buffer is full */
aliguori376253e2009-03-05 23:01:23 +0000268static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000269{
ths60fe76f2007-12-16 03:02:09 +0000270 char c;
aliguori731b0362009-03-05 23:01:42 +0000271
bellard7e2515e2004-08-01 21:52:19 +0000272 for(;;) {
273 c = *str++;
274 if (c == '\0')
275 break;
bellard7ba12602006-07-14 20:26:42 +0000276 if (c == '\n')
aliguori731b0362009-03-05 23:01:42 +0000277 mon->outbuf[mon->outbuf_index++] = '\r';
278 mon->outbuf[mon->outbuf_index++] = c;
279 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
280 || c == '\n')
aliguori376253e2009-03-05 23:01:23 +0000281 monitor_flush(mon);
bellard7e2515e2004-08-01 21:52:19 +0000282 }
283}
284
aliguori376253e2009-03-05 23:01:23 +0000285void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000286{
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200287 char buf[4096];
288
Luiz Capitulino2daa1192009-12-14 18:53:24 -0200289 if (!mon)
290 return;
291
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200292 if (monitor_ctrl_mode(mon)) {
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200293 return;
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200294 }
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200295
296 vsnprintf(buf, sizeof(buf), fmt, ap);
297 monitor_puts(mon, buf);
bellard7e2515e2004-08-01 21:52:19 +0000298}
299
aliguori376253e2009-03-05 23:01:23 +0000300void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000301{
302 va_list ap;
303 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000304 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000305 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000306}
307
aliguori376253e2009-03-05 23:01:23 +0000308void monitor_print_filename(Monitor *mon, const char *filename)
thsfef30742006-12-22 14:11:32 +0000309{
310 int i;
311
312 for (i = 0; filename[i]; i++) {
aliguori28a76be2009-03-06 20:27:40 +0000313 switch (filename[i]) {
314 case ' ':
315 case '"':
316 case '\\':
317 monitor_printf(mon, "\\%c", filename[i]);
318 break;
319 case '\t':
320 monitor_printf(mon, "\\t");
321 break;
322 case '\r':
323 monitor_printf(mon, "\\r");
324 break;
325 case '\n':
326 monitor_printf(mon, "\\n");
327 break;
328 default:
329 monitor_printf(mon, "%c", filename[i]);
330 break;
331 }
thsfef30742006-12-22 14:11:32 +0000332 }
333}
334
Stefan Weil8b7968f2010-09-23 21:28:05 +0200335static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
336 const char *fmt, ...)
bellard7fe48482004-10-09 18:08:01 +0000337{
338 va_list ap;
339 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000340 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000341 va_end(ap);
342 return 0;
343}
344
Luiz Capitulino13c74252009-10-07 13:41:55 -0300345static void monitor_user_noop(Monitor *mon, const QObject *data) { }
346
Luiz Capitulino9e807212010-09-16 10:58:59 -0300347static inline int handler_is_qobject(const mon_cmd_t *cmd)
Luiz Capitulino13917be2009-10-07 13:41:54 -0300348{
349 return cmd->user_print != NULL;
350}
351
Luiz Capitulino4903de02010-09-16 11:01:32 -0300352static inline bool handler_is_async(const mon_cmd_t *cmd)
Adam Litke940cc302010-01-25 12:18:44 -0600353{
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200354 return cmd->flags & MONITOR_CMD_ASYNC;
Adam Litke940cc302010-01-25 12:18:44 -0600355}
356
Luiz Capitulino8204a912009-11-18 23:05:31 -0200357static inline int monitor_has_error(const Monitor *mon)
358{
359 return mon->error != NULL;
360}
361
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200362static void monitor_json_emitter(Monitor *mon, const QObject *data)
363{
364 QString *json;
365
Luiz Capitulino83a27d42010-11-22 17:10:37 -0200366 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
367 qobject_to_json(data);
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200368 assert(json != NULL);
369
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200370 qstring_append_chr(json, '\n');
371 monitor_puts(mon, qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200372
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200373 QDECREF(json);
374}
375
Luiz Capitulinode253f12012-07-27 16:18:16 -0300376static QDict *build_qmp_error_dict(const QError *err)
377{
378 QObject *obj;
379
380 obj = qobject_from_jsonf("{ 'error': { 'class': %s, 'desc': %p } }",
381 ErrorClass_lookup[err->err_class],
382 qerror_human(err));
383
384 return qobject_to_qdict(obj);
385}
386
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200387static void monitor_protocol_emitter(Monitor *mon, QObject *data)
388{
389 QDict *qmp;
390
Stefan Hajnoczi89bd8202011-09-23 08:23:06 +0100391 trace_monitor_protocol_emitter(mon);
392
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200393 if (!monitor_has_error(mon)) {
394 /* success response */
Luiz Capitulinode253f12012-07-27 16:18:16 -0300395 qmp = qdict_new();
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200396 if (data) {
397 qobject_incref(data);
398 qdict_put_obj(qmp, "return", data);
399 } else {
Luiz Capitulino0abc6572009-12-18 13:25:00 -0200400 /* return an empty QDict by default */
401 qdict_put(qmp, "return", qdict_new());
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200402 }
403 } else {
404 /* error response */
Luiz Capitulinode253f12012-07-27 16:18:16 -0300405 qmp = build_qmp_error_dict(mon->error);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200406 QDECREF(mon->error);
407 mon->error = NULL;
408 }
409
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200410 if (mon->mc->id) {
411 qdict_put_obj(qmp, "id", mon->mc->id);
412 mon->mc->id = NULL;
413 }
414
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200415 monitor_json_emitter(mon, QOBJECT(qmp));
416 QDECREF(qmp);
417}
418
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200419static void timestamp_put(QDict *qdict)
420{
421 int err;
422 QObject *obj;
Blue Swirld08d6f02009-12-04 18:06:39 +0000423 qemu_timeval tv;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200424
Blue Swirld08d6f02009-12-04 18:06:39 +0000425 err = qemu_gettimeofday(&tv);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200426 if (err < 0)
427 return;
428
429 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
430 "'microseconds': %" PRId64 " }",
431 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200432 qdict_put_obj(qdict, "timestamp", obj);
433}
434
Daniel P. Berrange48608532012-05-21 17:59:51 +0100435
436static const char *monitor_event_names[] = {
437 [QEVENT_SHUTDOWN] = "SHUTDOWN",
438 [QEVENT_RESET] = "RESET",
439 [QEVENT_POWERDOWN] = "POWERDOWN",
440 [QEVENT_STOP] = "STOP",
441 [QEVENT_RESUME] = "RESUME",
442 [QEVENT_VNC_CONNECTED] = "VNC_CONNECTED",
443 [QEVENT_VNC_INITIALIZED] = "VNC_INITIALIZED",
444 [QEVENT_VNC_DISCONNECTED] = "VNC_DISCONNECTED",
445 [QEVENT_BLOCK_IO_ERROR] = "BLOCK_IO_ERROR",
446 [QEVENT_RTC_CHANGE] = "RTC_CHANGE",
447 [QEVENT_WATCHDOG] = "WATCHDOG",
448 [QEVENT_SPICE_CONNECTED] = "SPICE_CONNECTED",
449 [QEVENT_SPICE_INITIALIZED] = "SPICE_INITIALIZED",
450 [QEVENT_SPICE_DISCONNECTED] = "SPICE_DISCONNECTED",
451 [QEVENT_BLOCK_JOB_COMPLETED] = "BLOCK_JOB_COMPLETED",
452 [QEVENT_BLOCK_JOB_CANCELLED] = "BLOCK_JOB_CANCELLED",
Paolo Bonzini32c81a42012-09-28 17:22:58 +0200453 [QEVENT_BLOCK_JOB_ERROR] = "BLOCK_JOB_ERROR",
Daniel P. Berrange48608532012-05-21 17:59:51 +0100454 [QEVENT_DEVICE_TRAY_MOVED] = "DEVICE_TRAY_MOVED",
455 [QEVENT_SUSPEND] = "SUSPEND",
Luiz Capitulino25df49f2012-08-08 17:03:01 -0300456 [QEVENT_SUSPEND_DISK] = "SUSPEND_DISK",
Daniel P. Berrange48608532012-05-21 17:59:51 +0100457 [QEVENT_WAKEUP] = "WAKEUP",
Daniel P. Berrange973603a2012-06-14 18:12:56 +0100458 [QEVENT_BALLOON_CHANGE] = "BALLOON_CHANGE",
Yonit Halperin2fdd16e2012-08-21 11:51:57 +0300459 [QEVENT_SPICE_MIGRATE_COMPLETED] = "SPICE_MIGRATE_COMPLETED",
Daniel P. Berrange48608532012-05-21 17:59:51 +0100460};
461QEMU_BUILD_BUG_ON(ARRAY_SIZE(monitor_event_names) != QEVENT_MAX)
462
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100463MonitorEventState monitor_event_state[QEVENT_MAX];
464QemuMutex monitor_event_state_lock;
465
466/*
467 * Emits the event to every monitor instance
468 */
469static void
470monitor_protocol_event_emit(MonitorEvent event,
471 QObject *data)
472{
473 Monitor *mon;
474
475 trace_monitor_protocol_event_emit(event, data);
476 QLIST_FOREACH(mon, &mon_list, entry) {
477 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
478 monitor_json_emitter(mon, data);
479 }
480 }
481}
482
483
484/*
485 * Queue a new event for emission to Monitor instances,
486 * applying any rate limiting if required.
487 */
488static void
489monitor_protocol_event_queue(MonitorEvent event,
490 QObject *data)
491{
492 MonitorEventState *evstate;
493 int64_t now = qemu_get_clock_ns(rt_clock);
494 assert(event < QEVENT_MAX);
495
496 qemu_mutex_lock(&monitor_event_state_lock);
497 evstate = &(monitor_event_state[event]);
498 trace_monitor_protocol_event_queue(event,
499 data,
500 evstate->rate,
501 evstate->last,
502 now);
503
504 /* Rate limit of 0 indicates no throttling */
505 if (!evstate->rate) {
506 monitor_protocol_event_emit(event, data);
507 evstate->last = now;
508 } else {
509 int64_t delta = now - evstate->last;
510 if (evstate->data ||
511 delta < evstate->rate) {
512 /* If there's an existing event pending, replace
513 * it with the new event, otherwise schedule a
514 * timer for delayed emission
515 */
516 if (evstate->data) {
517 qobject_decref(evstate->data);
518 } else {
519 int64_t then = evstate->last + evstate->rate;
520 qemu_mod_timer_ns(evstate->timer, then);
521 }
522 evstate->data = data;
523 qobject_incref(evstate->data);
524 } else {
525 monitor_protocol_event_emit(event, data);
526 evstate->last = now;
527 }
528 }
529 qemu_mutex_unlock(&monitor_event_state_lock);
530}
531
532
533/*
534 * The callback invoked by QemuTimer when a delayed
535 * event is ready to be emitted
536 */
537static void monitor_protocol_event_handler(void *opaque)
538{
539 MonitorEventState *evstate = opaque;
540 int64_t now = qemu_get_clock_ns(rt_clock);
541
542 qemu_mutex_lock(&monitor_event_state_lock);
543
544 trace_monitor_protocol_event_handler(evstate->event,
545 evstate->data,
546 evstate->last,
547 now);
548 if (evstate->data) {
549 monitor_protocol_event_emit(evstate->event, evstate->data);
550 qobject_decref(evstate->data);
551 evstate->data = NULL;
552 }
553 evstate->last = now;
554 qemu_mutex_unlock(&monitor_event_state_lock);
555}
556
557
558/*
559 * @event: the event ID to be limited
560 * @rate: the rate limit in milliseconds
561 *
562 * Sets a rate limit on a particular event, so no
563 * more than 1 event will be emitted within @rate
564 * milliseconds
565 */
566static void
567monitor_protocol_event_throttle(MonitorEvent event,
568 int64_t rate)
569{
570 MonitorEventState *evstate;
571 assert(event < QEVENT_MAX);
572
573 evstate = &(monitor_event_state[event]);
574
575 trace_monitor_protocol_event_throttle(event, rate);
576 evstate->event = event;
577 evstate->rate = rate * SCALE_MS;
578 evstate->timer = qemu_new_timer(rt_clock,
579 SCALE_MS,
580 monitor_protocol_event_handler,
581 evstate);
582 evstate->last = 0;
583 evstate->data = NULL;
584}
585
586
587/* Global, one-time initializer to configure the rate limiting
588 * and initialize state */
589static void monitor_protocol_event_init(void)
590{
591 qemu_mutex_init(&monitor_event_state_lock);
592 /* Limit RTC & BALLOON events to 1 per second */
593 monitor_protocol_event_throttle(QEVENT_RTC_CHANGE, 1000);
594 monitor_protocol_event_throttle(QEVENT_BALLOON_CHANGE, 1000);
595 monitor_protocol_event_throttle(QEVENT_WATCHDOG, 1000);
596}
597
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200598/**
599 * monitor_protocol_event(): Generate a Monitor event
600 *
601 * Event-specific data can be emitted through the (optional) 'data' parameter.
602 */
603void monitor_protocol_event(MonitorEvent event, QObject *data)
604{
605 QDict *qmp;
606 const char *event_name;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200607
Blue Swirl242cd002009-12-04 18:05:45 +0000608 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200609
Daniel P. Berrange48608532012-05-21 17:59:51 +0100610 event_name = monitor_event_names[event];
611 assert(event_name != NULL);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200612
613 qmp = qdict_new();
614 timestamp_put(qmp);
615 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200616 if (data) {
617 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200618 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200619 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200620
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100621 trace_monitor_protocol_event(event, event_name, qmp);
622 monitor_protocol_event_queue(event, QOBJECT(qmp));
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200623 QDECREF(qmp);
624}
625
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200626static int do_qmp_capabilities(Monitor *mon, const QDict *params,
627 QObject **ret_data)
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200628{
629 /* Will setup QMP capabilities in the future */
630 if (monitor_ctrl_mode(mon)) {
631 mon->mc->command_mode = 1;
632 }
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200633
634 return 0;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200635}
636
Luiz Capitulino0268d972010-10-22 10:08:02 -0200637static void handle_user_command(Monitor *mon, const char *cmdline);
638
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200639char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index,
640 int64_t cpu_index, Error **errp)
Luiz Capitulino0268d972010-10-22 10:08:02 -0200641{
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200642 char *output = NULL;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200643 Monitor *old_mon, hmp;
644 CharDriverState mchar;
645
646 memset(&hmp, 0, sizeof(hmp));
647 qemu_chr_init_mem(&mchar);
648 hmp.chr = &mchar;
649
650 old_mon = cur_mon;
651 cur_mon = &hmp;
652
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200653 if (has_cpu_index) {
654 int ret = monitor_set_cpu(cpu_index);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200655 if (ret < 0) {
656 cur_mon = old_mon;
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200657 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
658 "a CPU number");
Luiz Capitulino0268d972010-10-22 10:08:02 -0200659 goto out;
660 }
661 }
662
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200663 handle_user_command(&hmp, command_line);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200664 cur_mon = old_mon;
665
666 if (qemu_chr_mem_osize(hmp.chr) > 0) {
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200667 QString *str = qemu_chr_mem_to_qs(hmp.chr);
668 output = g_strdup(qstring_get_str(str));
669 QDECREF(str);
670 } else {
671 output = g_strdup("");
Luiz Capitulino0268d972010-10-22 10:08:02 -0200672 }
673
674out:
675 qemu_chr_close_mem(hmp.chr);
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200676 return output;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200677}
678
bellard9dc39cb2004-03-14 21:38:27 +0000679static int compare_cmd(const char *name, const char *list)
680{
681 const char *p, *pstart;
682 int len;
683 len = strlen(name);
684 p = list;
685 for(;;) {
686 pstart = p;
687 p = strchr(p, '|');
688 if (!p)
689 p = pstart + strlen(pstart);
690 if ((p - pstart) == len && !memcmp(pstart, name, len))
691 return 1;
692 if (*p == '\0')
693 break;
694 p++;
695 }
696 return 0;
697}
698
Anthony Liguoric227f092009-10-01 16:12:16 -0500699static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000700 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000701{
Anthony Liguoric227f092009-10-01 16:12:16 -0500702 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000703
704 for(cmd = cmds; cmd->name != NULL; cmd++) {
705 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000706 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
707 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000708 }
709}
710
aliguori376253e2009-03-05 23:01:23 +0000711static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000712{
713 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000714 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000715 } else {
aliguori376253e2009-03-05 23:01:23 +0000716 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000717 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000718 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000719 monitor_printf(mon, "Log items (comma separated):\n");
720 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000721 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000722 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000723 }
724 }
bellard9dc39cb2004-03-14 21:38:27 +0000725 }
726}
727
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300728static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300729{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300730 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300731}
732
Lluísfc764102011-08-31 20:31:18 +0200733static void do_trace_event_set_state(Monitor *mon, const QDict *qdict)
Prerna Saxena22890ab2010-06-24 17:04:53 +0530734{
735 const char *tp_name = qdict_get_str(qdict, "name");
736 bool new_state = qdict_get_bool(qdict, "option");
Lluísfc764102011-08-31 20:31:18 +0200737 int ret = trace_event_set_state(tp_name, new_state);
Blue Swirlf871d682010-10-13 19:14:29 +0000738
739 if (!ret) {
740 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
741 }
Prerna Saxena22890ab2010-06-24 17:04:53 +0530742}
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100743
Michael Rothc45a8162011-10-02 08:44:37 -0500744#ifdef CONFIG_TRACE_SIMPLE
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100745static void do_trace_file(Monitor *mon, const QDict *qdict)
746{
747 const char *op = qdict_get_try_str(qdict, "op");
748 const char *arg = qdict_get_try_str(qdict, "arg");
749
750 if (!op) {
751 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
752 } else if (!strcmp(op, "on")) {
753 st_set_trace_file_enabled(true);
754 } else if (!strcmp(op, "off")) {
755 st_set_trace_file_enabled(false);
756 } else if (!strcmp(op, "flush")) {
757 st_flush_trace_buffer();
758 } else if (!strcmp(op, "set")) {
759 if (arg) {
760 st_set_trace_file(arg);
761 }
762 } else {
763 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
764 help_cmd(mon, "trace-file");
765 }
766}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530767#endif
768
Adam Litke940cc302010-01-25 12:18:44 -0600769static void user_monitor_complete(void *opaque, QObject *ret_data)
770{
771 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
772
773 if (ret_data) {
774 data->user_print(data->mon, ret_data);
775 }
776 monitor_resume(data->mon);
Anthony Liguori7267c092011-08-20 22:09:37 -0500777 g_free(data);
Adam Litke940cc302010-01-25 12:18:44 -0600778}
779
780static void qmp_monitor_complete(void *opaque, QObject *ret_data)
781{
782 monitor_protocol_emitter(opaque, ret_data);
783}
784
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300785static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
786 const QDict *params)
Adam Litke940cc302010-01-25 12:18:44 -0600787{
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300788 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
Adam Litke940cc302010-01-25 12:18:44 -0600789}
790
Adam Litke940cc302010-01-25 12:18:44 -0600791static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
792 const QDict *params)
793{
794 int ret;
795
Anthony Liguori7267c092011-08-20 22:09:37 -0500796 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
Adam Litke940cc302010-01-25 12:18:44 -0600797 cb_data->mon = mon;
798 cb_data->user_print = cmd->user_print;
799 monitor_suspend(mon);
800 ret = cmd->mhandler.cmd_async(mon, params,
801 user_monitor_complete, cb_data);
802 if (ret < 0) {
803 monitor_resume(mon);
Anthony Liguori7267c092011-08-20 22:09:37 -0500804 g_free(cb_data);
Adam Litke940cc302010-01-25 12:18:44 -0600805 }
806}
807
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300808static void do_info(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000809{
Anthony Liguoric227f092009-10-01 16:12:16 -0500810 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300811 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000812
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200813 if (!item) {
bellard9dc39cb2004-03-14 21:38:27 +0000814 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200815 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300816
817 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000818 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300819 break;
bellard9dc39cb2004-03-14 21:38:27 +0000820 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300821
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200822 if (cmd->name == NULL) {
Luiz Capitulino13c74252009-10-07 13:41:55 -0300823 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200824 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300825
Luiz Capitulinob5c30582011-10-21 16:24:28 -0200826 cmd->mhandler.info(mon);
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300827 return;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300828
829help:
830 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000831}
832
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300833CommandInfoList *qmp_query_commands(Error **errp)
bellard9bc9d1c2004-10-10 15:15:51 +0000834{
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300835 CommandInfoList *info, *cmd_list = NULL;
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200836 const mon_cmd_t *cmd;
837
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300838 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino40e5a012011-10-21 16:15:31 -0200839 info = g_malloc0(sizeof(*info));
840 info->value = g_malloc0(sizeof(*info->value));
841 info->value->name = g_strdup(cmd->name);
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200842
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300843 info->next = cmd_list;
844 cmd_list = info;
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200845 }
846
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300847 return cmd_list;
thsa36e69d2007-12-02 05:18:19 +0000848}
849
Daniel P. Berrange48608532012-05-21 17:59:51 +0100850EventInfoList *qmp_query_events(Error **errp)
851{
852 EventInfoList *info, *ev_list = NULL;
853 MonitorEvent e;
854
855 for (e = 0 ; e < QEVENT_MAX ; e++) {
856 const char *event_name = monitor_event_names[e];
857 assert(event_name != NULL);
858 info = g_malloc0(sizeof(*info));
859 info->value = g_malloc0(sizeof(*info->value));
860 info->value->name = g_strdup(event_name);
861
862 info->next = ev_list;
863 ev_list = info;
864 }
865
866 return ev_list;
867}
868
Luiz Capitulinob025c8b2011-10-06 14:02:57 -0300869/* set the current CPU defined by the user */
870int monitor_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000871{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100872 CPUArchState *env;
bellard6a00d602005-11-21 23:25:50 +0000873
874 for(env = first_cpu; env != NULL; env = env->next_cpu) {
875 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000876 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000877 return 0;
878 }
879 }
880 return -1;
881}
882
Andreas Färber9349b4f2012-03-14 01:38:32 +0100883static CPUArchState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000884{
aliguori731b0362009-03-05 23:01:42 +0000885 if (!cur_mon->mon_cpu) {
Luiz Capitulinob025c8b2011-10-06 14:02:57 -0300886 monitor_set_cpu(0);
bellard6a00d602005-11-21 23:25:50 +0000887 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300888 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000889 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000890}
891
Luiz Capitulino99b77962011-10-24 10:53:44 -0200892int monitor_get_cpu_index(void)
893{
894 return mon_get_cpu()->cpu_index;
895}
896
aliguori376253e2009-03-05 23:01:23 +0000897static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000898{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100899 CPUArchState *env;
bellard6a00d602005-11-21 23:25:50 +0000900 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +0000901#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000902 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000903 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000904#else
aliguori376253e2009-03-05 23:01:23 +0000905 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000906 0);
bellard9307c4c2004-04-04 12:57:25 +0000907#endif
908}
909
aliguori376253e2009-03-05 23:01:23 +0000910static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000911{
aliguori376253e2009-03-05 23:01:23 +0000912 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000913}
914
aliguori376253e2009-03-05 23:01:23 +0000915static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000916{
917 int i;
bellard7e2515e2004-08-01 21:52:19 +0000918 const char *str;
ths3b46e622007-09-17 08:09:54 +0000919
aliguoricde76ee2009-03-05 23:01:51 +0000920 if (!mon->rs)
921 return;
bellard7e2515e2004-08-01 21:52:19 +0000922 i = 0;
923 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000924 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000925 if (!str)
926 break;
aliguori376253e2009-03-05 23:01:23 +0000927 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000928 i++;
bellardaa455482004-04-04 13:07:25 +0000929 }
930}
931
j_mayer76a66252007-03-07 08:32:30 +0000932#if defined(TARGET_PPC)
933/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000934static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000935{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100936 CPUArchState *env;
j_mayer76a66252007-03-07 08:32:30 +0000937
938 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000939 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000940}
941#endif
942
Lluísfc764102011-08-31 20:31:18 +0200943static void do_trace_print_events(Monitor *mon)
Prerna Saxena22890ab2010-06-24 17:04:53 +0530944{
Lluísfc764102011-08-31 20:31:18 +0200945 trace_print_events((FILE *)mon, &monitor_fprintf);
Prerna Saxena22890ab2010-06-24 17:04:53 +0530946}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530947
Daniel P. Berrange13661082011-06-23 13:31:42 +0100948static int add_graphics_client(Monitor *mon, const QDict *qdict, QObject **ret_data)
949{
950 const char *protocol = qdict_get_str(qdict, "protocol");
951 const char *fdname = qdict_get_str(qdict, "fdname");
Daniel P. Berrange13661082011-06-23 13:31:42 +0100952 CharDriverState *s;
953
954 if (strcmp(protocol, "spice") == 0) {
Daniel P. Berrangef1f5f402012-02-13 13:43:08 +0000955 int fd = monitor_get_fd(mon, fdname);
956 int skipauth = qdict_get_try_bool(qdict, "skipauth", 0);
957 int tls = qdict_get_try_bool(qdict, "tls", 0);
Daniel P. Berrange13661082011-06-23 13:31:42 +0100958 if (!using_spice) {
959 /* correct one? spice isn't a device ,,, */
960 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
961 return -1;
962 }
Daniel P. Berrangef1f5f402012-02-13 13:43:08 +0000963 if (qemu_spice_display_add_client(fd, skipauth, tls) < 0) {
964 close(fd);
965 }
966 return 0;
TeLeManc62f6d12011-07-25 16:29:14 +0800967#ifdef CONFIG_VNC
Daniel P. Berrange13661082011-06-23 13:31:42 +0100968 } else if (strcmp(protocol, "vnc") == 0) {
969 int fd = monitor_get_fd(mon, fdname);
Jamie Iles860341f2011-08-10 15:18:42 +0100970 int skipauth = qdict_get_try_bool(qdict, "skipauth", 0);
Daniel P. Berrange13661082011-06-23 13:31:42 +0100971 vnc_display_add_client(NULL, fd, skipauth);
972 return 0;
TeLeManc62f6d12011-07-25 16:29:14 +0800973#endif
Daniel P. Berrange13661082011-06-23 13:31:42 +0100974 } else if ((s = qemu_chr_find(protocol)) != NULL) {
975 int fd = monitor_get_fd(mon, fdname);
976 if (qemu_chr_add_client(s, fd) < 0) {
977 qerror_report(QERR_ADD_CLIENT_FAILED);
978 return -1;
979 }
980 return 0;
981 }
982
983 qerror_report(QERR_INVALID_PARAMETER, "protocol");
984 return -1;
985}
986
Yonit Halperinedc5cb12011-10-17 10:03:18 +0200987static int client_migrate_info(Monitor *mon, const QDict *qdict,
988 MonitorCompletion cb, void *opaque)
Gerd Hoffmanne866e232010-04-23 13:28:21 +0200989{
990 const char *protocol = qdict_get_str(qdict, "protocol");
991 const char *hostname = qdict_get_str(qdict, "hostname");
992 const char *subject = qdict_get_try_str(qdict, "cert-subject");
993 int port = qdict_get_try_int(qdict, "port", -1);
994 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
995 int ret;
996
997 if (strcmp(protocol, "spice") == 0) {
998 if (!using_spice) {
999 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1000 return -1;
1001 }
1002
Yonit Halperin6ec5dae2012-03-18 09:42:39 +02001003 if (port == -1 && tls_port == -1) {
1004 qerror_report(QERR_MISSING_PARAMETER, "port/tls-port");
1005 return -1;
1006 }
1007
Yonit Halperinedc5cb12011-10-17 10:03:18 +02001008 ret = qemu_spice_migrate_info(hostname, port, tls_port, subject,
1009 cb, opaque);
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001010 if (ret != 0) {
1011 qerror_report(QERR_UNDEFINED_ERROR);
1012 return -1;
1013 }
1014 return 0;
1015 }
1016
1017 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1018 return -1;
1019}
1020
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001021static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +00001022{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001023 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +00001024}
1025
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001026static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +00001027{
1028 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001029 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +00001030
bellard9307c4c2004-04-04 12:57:25 +00001031 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +00001032 mask = 0;
1033 } else {
bellard9307c4c2004-04-04 12:57:25 +00001034 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +00001035 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001036 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001037 return;
1038 }
1039 }
1040 cpu_set_log(mask);
1041}
1042
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001043static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001044{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001045 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001046 if (!option || !strcmp(option, "on")) {
1047 singlestep = 1;
1048 } else if (!strcmp(option, "off")) {
1049 singlestep = 0;
1050 } else {
1051 monitor_printf(mon, "unexpected option %s\n", option);
1052 }
1053}
1054
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001055static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001056{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001057 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001058 if (!device)
1059 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1060 if (gdbserver_start(device) < 0) {
1061 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1062 device);
1063 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001064 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001065 } else {
aliguori59030a82009-04-05 18:43:41 +00001066 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1067 device);
bellard8a7ddc32004-03-31 19:00:16 +00001068 }
1069}
1070
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001071static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001072{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001073 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001074 if (select_watchdog_action(action) == -1) {
1075 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1076 }
1077}
1078
aliguori376253e2009-03-05 23:01:23 +00001079static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001080{
aliguori376253e2009-03-05 23:01:23 +00001081 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001082 switch(c) {
1083 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001084 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001085 break;
1086 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001087 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001088 break;
1089 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001090 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001091 break;
1092 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001093 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001094 break;
1095 default:
1096 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001097 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001098 } else {
aliguori376253e2009-03-05 23:01:23 +00001099 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001100 }
1101 break;
1102 }
aliguori376253e2009-03-05 23:01:23 +00001103 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001104}
1105
aliguori376253e2009-03-05 23:01:23 +00001106static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -05001107 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001108{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001109 CPUArchState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +00001110 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001111 uint8_t buf[16];
1112 uint64_t v;
1113
1114 if (format == 'i') {
1115 int flags;
1116 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001117 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +00001118#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001119 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001120 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001121 } else if (wsize == 4) {
1122 flags = 0;
1123 } else {
bellard6a15fd12006-04-12 21:07:07 +00001124 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001125 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001126 if (env) {
1127#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001128 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001129 (env->segs[R_CS].flags & DESC_L_MASK))
1130 flags = 2;
1131 else
1132#endif
1133 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1134 flags = 1;
1135 }
bellard4c27ba22004-04-25 18:05:08 +00001136 }
1137#endif
aliguori376253e2009-03-05 23:01:23 +00001138 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001139 return;
1140 }
1141
1142 len = wsize * count;
1143 if (wsize == 1)
1144 line_size = 8;
1145 else
1146 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001147 max_digits = 0;
1148
1149 switch(format) {
1150 case 'o':
1151 max_digits = (wsize * 8 + 2) / 3;
1152 break;
1153 default:
1154 case 'x':
1155 max_digits = (wsize * 8) / 4;
1156 break;
1157 case 'u':
1158 case 'd':
1159 max_digits = (wsize * 8 * 10 + 32) / 33;
1160 break;
1161 case 'c':
1162 wsize = 1;
1163 break;
1164 }
1165
1166 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001167 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001168 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001169 else
aliguori376253e2009-03-05 23:01:23 +00001170 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001171 l = len;
1172 if (l > line_size)
1173 l = line_size;
1174 if (is_physical) {
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001175 cpu_physical_memory_read(addr, buf, l);
bellard9307c4c2004-04-04 12:57:25 +00001176 } else {
bellard6a00d602005-11-21 23:25:50 +00001177 env = mon_get_cpu();
aliguoric8f79b62008-08-18 14:00:20 +00001178 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001179 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001180 break;
1181 }
bellard9307c4c2004-04-04 12:57:25 +00001182 }
ths5fafdf22007-09-16 21:08:06 +00001183 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001184 while (i < l) {
1185 switch(wsize) {
1186 default:
1187 case 1:
1188 v = ldub_raw(buf + i);
1189 break;
1190 case 2:
1191 v = lduw_raw(buf + i);
1192 break;
1193 case 4:
bellard92a31b12005-02-10 22:00:52 +00001194 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001195 break;
1196 case 8:
1197 v = ldq_raw(buf + i);
1198 break;
1199 }
aliguori376253e2009-03-05 23:01:23 +00001200 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001201 switch(format) {
1202 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001203 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001204 break;
1205 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001206 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001207 break;
1208 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001209 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001210 break;
1211 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001212 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001213 break;
1214 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001215 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001216 break;
1217 }
1218 i += wsize;
1219 }
aliguori376253e2009-03-05 23:01:23 +00001220 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001221 addr += l;
1222 len -= l;
1223 }
1224}
1225
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001226static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001227{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001228 int count = qdict_get_int(qdict, "count");
1229 int format = qdict_get_int(qdict, "format");
1230 int size = qdict_get_int(qdict, "size");
1231 target_long addr = qdict_get_int(qdict, "addr");
1232
aliguori376253e2009-03-05 23:01:23 +00001233 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001234}
1235
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001236static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001237{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001238 int count = qdict_get_int(qdict, "count");
1239 int format = qdict_get_int(qdict, "format");
1240 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001241 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001242
aliguori376253e2009-03-05 23:01:23 +00001243 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001244}
1245
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001246static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001247{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001248 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001249 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001250
bellard9307c4c2004-04-04 12:57:25 +00001251 switch(format) {
1252 case 'o':
Peter Maydell66f27e62012-06-25 16:52:24 +01001253 monitor_printf(mon, "%#" TARGET_PRIoPHYS, val);
bellard9307c4c2004-04-04 12:57:25 +00001254 break;
1255 case 'x':
Peter Maydell66f27e62012-06-25 16:52:24 +01001256 monitor_printf(mon, "%#" TARGET_PRIxPHYS, val);
bellard9307c4c2004-04-04 12:57:25 +00001257 break;
1258 case 'u':
Peter Maydell66f27e62012-06-25 16:52:24 +01001259 monitor_printf(mon, "%" TARGET_PRIuPHYS, val);
bellard9307c4c2004-04-04 12:57:25 +00001260 break;
1261 default:
1262 case 'd':
Peter Maydell66f27e62012-06-25 16:52:24 +01001263 monitor_printf(mon, "%" TARGET_PRIdPHYS, val);
bellard9307c4c2004-04-04 12:57:25 +00001264 break;
1265 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001266 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001267 break;
1268 }
aliguori376253e2009-03-05 23:01:23 +00001269 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001270}
1271
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001272static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001273{
1274 uint32_t addr;
bellarde4cf1ad2005-06-04 20:15:57 +00001275 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001276 uint32_t start = qdict_get_int(qdict, "start");
1277 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001278
1279 sum = 0;
1280 for(addr = start; addr < (start + size); addr++) {
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001281 uint8_t val = ldub_phys(addr);
bellarde4cf1ad2005-06-04 20:15:57 +00001282 /* BSD sum algorithm ('sum' Unix command) */
1283 sum = (sum >> 1) | (sum << 15);
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001284 sum += val;
bellarde4cf1ad2005-06-04 20:15:57 +00001285 }
aliguori376253e2009-03-05 23:01:23 +00001286 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001287}
1288
bellard13224a82006-07-14 22:03:35 +00001289static int mouse_button_state;
1290
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001291static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001292{
1293 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001294 const char *dx_str = qdict_get_str(qdict, "dx_str");
1295 const char *dy_str = qdict_get_str(qdict, "dy_str");
1296 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001297 dx = strtol(dx_str, NULL, 0);
1298 dy = strtol(dy_str, NULL, 0);
1299 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001300 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001301 dz = strtol(dz_str, NULL, 0);
1302 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1303}
1304
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001305static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001306{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001307 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001308 mouse_button_state = button_state;
1309 kbd_mouse_event(0, 0, 0, mouse_button_state);
1310}
1311
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001312static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001313{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001314 int size = qdict_get_int(qdict, "size");
1315 int addr = qdict_get_int(qdict, "addr");
1316 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001317 uint32_t val;
1318 int suffix;
1319
1320 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001321 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001322 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001323 addr++;
1324 }
1325 addr &= 0xffff;
1326
1327 switch(size) {
1328 default:
1329 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001330 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001331 suffix = 'b';
1332 break;
1333 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001334 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001335 suffix = 'w';
1336 break;
1337 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001338 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001339 suffix = 'l';
1340 break;
1341 }
aliguori376253e2009-03-05 23:01:23 +00001342 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1343 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001344}
bellarda3a91a32004-06-04 11:06:21 +00001345
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001346static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001347{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001348 int size = qdict_get_int(qdict, "size");
1349 int addr = qdict_get_int(qdict, "addr");
1350 int val = qdict_get_int(qdict, "val");
1351
Jan Kiszkaf1147842009-07-14 10:20:11 +02001352 addr &= IOPORTS_MASK;
1353
1354 switch (size) {
1355 default:
1356 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001357 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001358 break;
1359 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001360 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001361 break;
1362 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001363 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001364 break;
1365 }
1366}
1367
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001368static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001369{
1370 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001371 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001372
Jan Kiszka76e30d02009-07-02 00:19:02 +02001373 res = qemu_boot_set(bootdevice);
1374 if (res == 0) {
1375 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1376 } else if (res > 0) {
1377 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001378 } else {
aliguori376253e2009-03-05 23:01:23 +00001379 monitor_printf(mon, "no function defined to set boot device list for "
1380 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001381 }
1382}
1383
bellardb86bda52004-09-18 19:32:46 +00001384#if defined(TARGET_I386)
Blue Swirld65aaf32010-12-11 18:56:24 +00001385static void print_pte(Monitor *mon, target_phys_addr_t addr,
1386 target_phys_addr_t pte,
1387 target_phys_addr_t mask)
bellardb86bda52004-09-18 19:32:46 +00001388{
Blue Swirld65aaf32010-12-11 18:56:24 +00001389#ifdef TARGET_X86_64
1390 if (addr & (1ULL << 47)) {
1391 addr |= -1LL << 48;
1392 }
1393#endif
1394 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1395 " %c%c%c%c%c%c%c%c%c\n",
aliguori376253e2009-03-05 23:01:23 +00001396 addr,
1397 pte & mask,
Blue Swirld65aaf32010-12-11 18:56:24 +00001398 pte & PG_NX_MASK ? 'X' : '-',
aliguori376253e2009-03-05 23:01:23 +00001399 pte & PG_GLOBAL_MASK ? 'G' : '-',
1400 pte & PG_PSE_MASK ? 'P' : '-',
1401 pte & PG_DIRTY_MASK ? 'D' : '-',
1402 pte & PG_ACCESSED_MASK ? 'A' : '-',
1403 pte & PG_PCD_MASK ? 'C' : '-',
1404 pte & PG_PWT_MASK ? 'T' : '-',
1405 pte & PG_USER_MASK ? 'U' : '-',
1406 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001407}
1408
Andreas Färber9349b4f2012-03-14 01:38:32 +01001409static void tlb_info_32(Monitor *mon, CPUArchState *env)
bellardb86bda52004-09-18 19:32:46 +00001410{
Austin Clements94ac5cd2011-08-21 14:49:45 -04001411 unsigned int l1, l2;
bellardb86bda52004-09-18 19:32:46 +00001412 uint32_t pgd, pde, pte;
1413
bellardb86bda52004-09-18 19:32:46 +00001414 pgd = env->cr[3] & ~0xfff;
1415 for(l1 = 0; l1 < 1024; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001416 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
bellardb86bda52004-09-18 19:32:46 +00001417 pde = le32_to_cpu(pde);
1418 if (pde & PG_PRESENT_MASK) {
1419 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
Blue Swirld65aaf32010-12-11 18:56:24 +00001420 /* 4M pages */
1421 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
bellardb86bda52004-09-18 19:32:46 +00001422 } else {
1423 for(l2 = 0; l2 < 1024; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001424 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
bellardb86bda52004-09-18 19:32:46 +00001425 pte = le32_to_cpu(pte);
1426 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001427 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001428 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001429 ~0xfff);
1430 }
1431 }
1432 }
1433 }
1434 }
1435}
1436
Andreas Färber9349b4f2012-03-14 01:38:32 +01001437static void tlb_info_pae32(Monitor *mon, CPUArchState *env)
Blue Swirld65aaf32010-12-11 18:56:24 +00001438{
Austin Clements94ac5cd2011-08-21 14:49:45 -04001439 unsigned int l1, l2, l3;
Blue Swirld65aaf32010-12-11 18:56:24 +00001440 uint64_t pdpe, pde, pte;
1441 uint64_t pdp_addr, pd_addr, pt_addr;
1442
1443 pdp_addr = env->cr[3] & ~0x1f;
1444 for (l1 = 0; l1 < 4; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001445 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001446 pdpe = le64_to_cpu(pdpe);
1447 if (pdpe & PG_PRESENT_MASK) {
1448 pd_addr = pdpe & 0x3fffffffff000ULL;
1449 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001450 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001451 pde = le64_to_cpu(pde);
1452 if (pde & PG_PRESENT_MASK) {
1453 if (pde & PG_PSE_MASK) {
1454 /* 2M pages with PAE, CR4.PSE is ignored */
1455 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
1456 ~((target_phys_addr_t)(1 << 20) - 1));
1457 } else {
1458 pt_addr = pde & 0x3fffffffff000ULL;
1459 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001460 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001461 pte = le64_to_cpu(pte);
1462 if (pte & PG_PRESENT_MASK) {
1463 print_pte(mon, (l1 << 30 ) + (l2 << 21)
1464 + (l3 << 12),
1465 pte & ~PG_PSE_MASK,
1466 ~(target_phys_addr_t)0xfff);
1467 }
1468 }
1469 }
1470 }
1471 }
1472 }
1473 }
1474}
1475
1476#ifdef TARGET_X86_64
Andreas Färber9349b4f2012-03-14 01:38:32 +01001477static void tlb_info_64(Monitor *mon, CPUArchState *env)
Blue Swirld65aaf32010-12-11 18:56:24 +00001478{
1479 uint64_t l1, l2, l3, l4;
1480 uint64_t pml4e, pdpe, pde, pte;
1481 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
1482
1483 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1484 for (l1 = 0; l1 < 512; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001485 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001486 pml4e = le64_to_cpu(pml4e);
1487 if (pml4e & PG_PRESENT_MASK) {
1488 pdp_addr = pml4e & 0x3fffffffff000ULL;
1489 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001490 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001491 pdpe = le64_to_cpu(pdpe);
1492 if (pdpe & PG_PRESENT_MASK) {
1493 if (pdpe & PG_PSE_MASK) {
1494 /* 1G pages, CR4.PSE is ignored */
1495 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
1496 0x3ffffc0000000ULL);
1497 } else {
1498 pd_addr = pdpe & 0x3fffffffff000ULL;
1499 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001500 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001501 pde = le64_to_cpu(pde);
1502 if (pde & PG_PRESENT_MASK) {
1503 if (pde & PG_PSE_MASK) {
1504 /* 2M pages, CR4.PSE is ignored */
1505 print_pte(mon, (l1 << 39) + (l2 << 30) +
1506 (l3 << 21), pde,
1507 0x3ffffffe00000ULL);
1508 } else {
1509 pt_addr = pde & 0x3fffffffff000ULL;
1510 for (l4 = 0; l4 < 512; l4++) {
1511 cpu_physical_memory_read(pt_addr
1512 + l4 * 8,
Stefan Weilb8b79322011-03-26 21:11:05 +01001513 &pte, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001514 pte = le64_to_cpu(pte);
1515 if (pte & PG_PRESENT_MASK) {
1516 print_pte(mon, (l1 << 39) +
1517 (l2 << 30) +
1518 (l3 << 21) + (l4 << 12),
1519 pte & ~PG_PSE_MASK,
1520 0x3fffffffff000ULL);
1521 }
1522 }
1523 }
1524 }
1525 }
1526 }
1527 }
1528 }
1529 }
1530 }
1531}
1532#endif
1533
1534static void tlb_info(Monitor *mon)
1535{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001536 CPUArchState *env;
Blue Swirld65aaf32010-12-11 18:56:24 +00001537
1538 env = mon_get_cpu();
1539
1540 if (!(env->cr[0] & CR0_PG_MASK)) {
1541 monitor_printf(mon, "PG disabled\n");
1542 return;
1543 }
1544 if (env->cr[4] & CR4_PAE_MASK) {
1545#ifdef TARGET_X86_64
1546 if (env->hflags & HF_LMA_MASK) {
1547 tlb_info_64(mon, env);
1548 } else
1549#endif
1550 {
1551 tlb_info_pae32(mon, env);
1552 }
1553 } else {
1554 tlb_info_32(mon, env);
1555 }
1556}
1557
Blue Swirl1b3cba62010-12-11 18:56:27 +00001558static void mem_print(Monitor *mon, target_phys_addr_t *pstart,
1559 int *plast_prot,
1560 target_phys_addr_t end, int prot)
bellardb86bda52004-09-18 19:32:46 +00001561{
bellard9746b152004-11-11 18:30:24 +00001562 int prot1;
1563 prot1 = *plast_prot;
1564 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001565 if (*pstart != -1) {
Blue Swirl1b3cba62010-12-11 18:56:27 +00001566 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
1567 TARGET_FMT_plx " %c%c%c\n",
aliguori376253e2009-03-05 23:01:23 +00001568 *pstart, end, end - *pstart,
1569 prot1 & PG_USER_MASK ? 'u' : '-',
1570 'r',
1571 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001572 }
1573 if (prot != 0)
1574 *pstart = end;
1575 else
1576 *pstart = -1;
1577 *plast_prot = prot;
1578 }
1579}
1580
Andreas Färber9349b4f2012-03-14 01:38:32 +01001581static void mem_info_32(Monitor *mon, CPUArchState *env)
bellardb86bda52004-09-18 19:32:46 +00001582{
Austin Clementsb49ca722011-08-14 23:19:21 -04001583 unsigned int l1, l2;
1584 int prot, last_prot;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001585 uint32_t pgd, pde, pte;
1586 target_phys_addr_t start, end;
bellardb86bda52004-09-18 19:32:46 +00001587
bellardb86bda52004-09-18 19:32:46 +00001588 pgd = env->cr[3] & ~0xfff;
1589 last_prot = 0;
1590 start = -1;
1591 for(l1 = 0; l1 < 1024; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001592 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
bellardb86bda52004-09-18 19:32:46 +00001593 pde = le32_to_cpu(pde);
1594 end = l1 << 22;
1595 if (pde & PG_PRESENT_MASK) {
1596 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1597 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001598 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001599 } else {
1600 for(l2 = 0; l2 < 1024; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001601 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
bellardb86bda52004-09-18 19:32:46 +00001602 pte = le32_to_cpu(pte);
1603 end = (l1 << 22) + (l2 << 12);
1604 if (pte & PG_PRESENT_MASK) {
Austin Clementsc76c8412011-08-14 23:22:28 -04001605 prot = pte & pde &
1606 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
bellardb86bda52004-09-18 19:32:46 +00001607 } else {
1608 prot = 0;
1609 }
aliguori376253e2009-03-05 23:01:23 +00001610 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001611 }
1612 }
1613 } else {
1614 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001615 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001616 }
1617 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04001618 /* Flush last range */
1619 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
bellardb86bda52004-09-18 19:32:46 +00001620}
Blue Swirl1b3cba62010-12-11 18:56:27 +00001621
Andreas Färber9349b4f2012-03-14 01:38:32 +01001622static void mem_info_pae32(Monitor *mon, CPUArchState *env)
Blue Swirl1b3cba62010-12-11 18:56:27 +00001623{
Austin Clementsb49ca722011-08-14 23:19:21 -04001624 unsigned int l1, l2, l3;
1625 int prot, last_prot;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001626 uint64_t pdpe, pde, pte;
1627 uint64_t pdp_addr, pd_addr, pt_addr;
1628 target_phys_addr_t start, end;
1629
1630 pdp_addr = env->cr[3] & ~0x1f;
1631 last_prot = 0;
1632 start = -1;
1633 for (l1 = 0; l1 < 4; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001634 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001635 pdpe = le64_to_cpu(pdpe);
1636 end = l1 << 30;
1637 if (pdpe & PG_PRESENT_MASK) {
1638 pd_addr = pdpe & 0x3fffffffff000ULL;
1639 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001640 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001641 pde = le64_to_cpu(pde);
1642 end = (l1 << 30) + (l2 << 21);
1643 if (pde & PG_PRESENT_MASK) {
1644 if (pde & PG_PSE_MASK) {
1645 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1646 PG_PRESENT_MASK);
1647 mem_print(mon, &start, &last_prot, end, prot);
1648 } else {
1649 pt_addr = pde & 0x3fffffffff000ULL;
1650 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001651 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001652 pte = le64_to_cpu(pte);
1653 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
1654 if (pte & PG_PRESENT_MASK) {
Austin Clementsc76c8412011-08-14 23:22:28 -04001655 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
1656 PG_PRESENT_MASK);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001657 } else {
1658 prot = 0;
1659 }
1660 mem_print(mon, &start, &last_prot, end, prot);
1661 }
1662 }
1663 } else {
1664 prot = 0;
1665 mem_print(mon, &start, &last_prot, end, prot);
1666 }
1667 }
1668 } else {
1669 prot = 0;
1670 mem_print(mon, &start, &last_prot, end, prot);
1671 }
1672 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04001673 /* Flush last range */
1674 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001675}
1676
1677
1678#ifdef TARGET_X86_64
Andreas Färber9349b4f2012-03-14 01:38:32 +01001679static void mem_info_64(Monitor *mon, CPUArchState *env)
Blue Swirl1b3cba62010-12-11 18:56:27 +00001680{
1681 int prot, last_prot;
1682 uint64_t l1, l2, l3, l4;
1683 uint64_t pml4e, pdpe, pde, pte;
1684 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
1685
1686 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1687 last_prot = 0;
1688 start = -1;
1689 for (l1 = 0; l1 < 512; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001690 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001691 pml4e = le64_to_cpu(pml4e);
1692 end = l1 << 39;
1693 if (pml4e & PG_PRESENT_MASK) {
1694 pdp_addr = pml4e & 0x3fffffffff000ULL;
1695 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001696 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001697 pdpe = le64_to_cpu(pdpe);
1698 end = (l1 << 39) + (l2 << 30);
1699 if (pdpe & PG_PRESENT_MASK) {
1700 if (pdpe & PG_PSE_MASK) {
Blue Swirl2d5b5072011-01-15 08:31:00 +00001701 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
1702 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04001703 prot &= pml4e;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001704 mem_print(mon, &start, &last_prot, end, prot);
1705 } else {
1706 pd_addr = pdpe & 0x3fffffffff000ULL;
1707 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001708 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001709 pde = le64_to_cpu(pde);
1710 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
1711 if (pde & PG_PRESENT_MASK) {
1712 if (pde & PG_PSE_MASK) {
1713 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1714 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04001715 prot &= pml4e & pdpe;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001716 mem_print(mon, &start, &last_prot, end, prot);
1717 } else {
1718 pt_addr = pde & 0x3fffffffff000ULL;
1719 for (l4 = 0; l4 < 512; l4++) {
1720 cpu_physical_memory_read(pt_addr
1721 + l4 * 8,
Stefan Weilb8b79322011-03-26 21:11:05 +01001722 &pte, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001723 pte = le64_to_cpu(pte);
1724 end = (l1 << 39) + (l2 << 30) +
1725 (l3 << 21) + (l4 << 12);
1726 if (pte & PG_PRESENT_MASK) {
1727 prot = pte & (PG_USER_MASK | PG_RW_MASK |
1728 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04001729 prot &= pml4e & pdpe & pde;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001730 } else {
1731 prot = 0;
1732 }
1733 mem_print(mon, &start, &last_prot, end, prot);
1734 }
1735 }
1736 } else {
1737 prot = 0;
1738 mem_print(mon, &start, &last_prot, end, prot);
1739 }
1740 }
1741 }
1742 } else {
1743 prot = 0;
1744 mem_print(mon, &start, &last_prot, end, prot);
1745 }
1746 }
1747 } else {
1748 prot = 0;
1749 mem_print(mon, &start, &last_prot, end, prot);
1750 }
1751 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04001752 /* Flush last range */
1753 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 48, 0);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001754}
1755#endif
1756
1757static void mem_info(Monitor *mon)
1758{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001759 CPUArchState *env;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001760
1761 env = mon_get_cpu();
1762
1763 if (!(env->cr[0] & CR0_PG_MASK)) {
1764 monitor_printf(mon, "PG disabled\n");
1765 return;
1766 }
1767 if (env->cr[4] & CR4_PAE_MASK) {
1768#ifdef TARGET_X86_64
1769 if (env->hflags & HF_LMA_MASK) {
1770 mem_info_64(mon, env);
1771 } else
1772#endif
1773 {
1774 mem_info_pae32(mon, env);
1775 }
1776 } else {
1777 mem_info_32(mon, env);
1778 }
1779}
bellardb86bda52004-09-18 19:32:46 +00001780#endif
1781
aurel327c664e22009-03-03 06:12:22 +00001782#if defined(TARGET_SH4)
1783
aliguori376253e2009-03-05 23:01:23 +00001784static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001785{
aliguori376253e2009-03-05 23:01:23 +00001786 monitor_printf(mon, " tlb%i:\t"
1787 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1788 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1789 "dirty=%hhu writethrough=%hhu\n",
1790 idx,
1791 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1792 tlb->v, tlb->sh, tlb->c, tlb->pr,
1793 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001794}
1795
aliguori376253e2009-03-05 23:01:23 +00001796static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00001797{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001798 CPUArchState *env = mon_get_cpu();
aurel327c664e22009-03-03 06:12:22 +00001799 int i;
1800
aliguori376253e2009-03-05 23:01:23 +00001801 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001802 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001803 print_tlb (mon, i, &env->itlb[i]);
1804 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001805 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001806 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00001807}
1808
1809#endif
1810
Max Filippov692f7372012-01-07 20:02:40 +04001811#if defined(TARGET_SPARC) || defined(TARGET_PPC) || defined(TARGET_XTENSA)
Blue Swirld41160a2010-12-19 13:42:56 +00001812static void tlb_info(Monitor *mon)
1813{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001814 CPUArchState *env1 = mon_get_cpu();
Blue Swirld41160a2010-12-19 13:42:56 +00001815
1816 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
1817}
1818#endif
1819
Blue Swirl314e2982011-09-11 20:22:05 +00001820static void do_info_mtree(Monitor *mon)
1821{
1822 mtree_info((fprintf_function)monitor_printf, mon);
1823}
1824
aliguori030ea372009-04-21 22:30:47 +00001825static void do_info_numa(Monitor *mon)
1826{
aliguorib28b6232009-04-22 20:20:29 +00001827 int i;
Andreas Färber9349b4f2012-03-14 01:38:32 +01001828 CPUArchState *env;
aliguori030ea372009-04-21 22:30:47 +00001829
1830 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1831 for (i = 0; i < nb_numa_nodes; i++) {
1832 monitor_printf(mon, "node %d cpus:", i);
1833 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1834 if (env->numa_node == i) {
1835 monitor_printf(mon, " %d", env->cpu_index);
1836 }
1837 }
1838 monitor_printf(mon, "\n");
1839 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1840 node_mem[i] >> 20);
1841 }
1842}
1843
bellard5f1ce942006-02-08 22:40:15 +00001844#ifdef CONFIG_PROFILER
1845
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02001846int64_t qemu_time;
1847int64_t dev_time;
1848
aliguori376253e2009-03-05 23:01:23 +00001849static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001850{
1851 int64_t total;
1852 total = qemu_time;
1853 if (total == 0)
1854 total = 1;
aliguori376253e2009-03-05 23:01:23 +00001855 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02001856 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00001857 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02001858 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00001859 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001860 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001861}
1862#else
aliguori376253e2009-03-05 23:01:23 +00001863static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001864{
aliguori376253e2009-03-05 23:01:23 +00001865 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00001866}
1867#endif
1868
bellardec36b692006-07-16 18:57:03 +00001869/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001870static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00001871
aliguori376253e2009-03-05 23:01:23 +00001872static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00001873{
1874 int i;
1875 CaptureState *s;
1876
1877 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00001878 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00001879 s->ops.info (s->opaque);
1880 }
1881}
1882
Blue Swirl23130862009-06-06 08:22:04 +00001883#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001884static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00001885{
1886 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001887 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00001888 CaptureState *s;
1889
1890 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1891 if (i == n) {
1892 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00001893 QLIST_REMOVE (s, entries);
Anthony Liguori7267c092011-08-20 22:09:37 -05001894 g_free (s);
bellardec36b692006-07-16 18:57:03 +00001895 return;
1896 }
1897 }
1898}
1899
Luiz Capitulinoc1925482009-08-28 15:27:19 -03001900static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00001901{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03001902 const char *path = qdict_get_str(qdict, "path");
1903 int has_freq = qdict_haskey(qdict, "freq");
1904 int freq = qdict_get_try_int(qdict, "freq", -1);
1905 int has_bits = qdict_haskey(qdict, "bits");
1906 int bits = qdict_get_try_int(qdict, "bits", -1);
1907 int has_channels = qdict_haskey(qdict, "nchannels");
1908 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00001909 CaptureState *s;
1910
Anthony Liguori7267c092011-08-20 22:09:37 -05001911 s = g_malloc0 (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00001912
1913 freq = has_freq ? freq : 44100;
1914 bits = has_bits ? bits : 16;
1915 nchannels = has_channels ? nchannels : 2;
1916
1917 if (wav_start_capture (s, path, freq, bits, nchannels)) {
Isaku Yamahatad00b2612011-01-21 19:53:55 +09001918 monitor_printf(mon, "Failed to add wave capture\n");
Anthony Liguori7267c092011-08-20 22:09:37 -05001919 g_free (s);
Isaku Yamahatad00b2612011-01-21 19:53:55 +09001920 return;
bellardec36b692006-07-16 18:57:03 +00001921 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00001922 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00001923}
1924#endif
1925
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001926static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00001927{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001928 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00001929
aliguori76655d62009-03-06 20:27:37 +00001930 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001931 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00001932 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001933 return acl;
1934}
aliguori76655d62009-03-06 20:27:37 +00001935
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001936static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001937{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001938 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001939 qemu_acl *acl = find_acl(mon, aclname);
1940 qemu_acl_entry *entry;
1941 int i = 0;
1942
1943 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00001944 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00001945 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00001946 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00001947 i++;
1948 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001949 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00001950 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001951 }
1952}
1953
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001954static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001955{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001956 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001957 qemu_acl *acl = find_acl(mon, aclname);
1958
1959 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00001960 qemu_acl_reset(acl);
1961 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001962 }
1963}
aliguori76655d62009-03-06 20:27:37 +00001964
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001965static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001966{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001967 const char *aclname = qdict_get_str(qdict, "aclname");
1968 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001969 qemu_acl *acl = find_acl(mon, aclname);
1970
1971 if (acl) {
1972 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00001973 acl->defaultDeny = 0;
1974 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001975 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00001976 acl->defaultDeny = 1;
1977 monitor_printf(mon, "acl: policy set to 'deny'\n");
1978 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001979 monitor_printf(mon, "acl: unknown policy '%s', "
1980 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00001981 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001982 }
1983}
aliguori76655d62009-03-06 20:27:37 +00001984
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001985static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001986{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001987 const char *aclname = qdict_get_str(qdict, "aclname");
1988 const char *match = qdict_get_str(qdict, "match");
1989 const char *policy = qdict_get_str(qdict, "policy");
1990 int has_index = qdict_haskey(qdict, "index");
1991 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001992 qemu_acl *acl = find_acl(mon, aclname);
1993 int deny, ret;
1994
1995 if (acl) {
1996 if (strcmp(policy, "allow") == 0) {
1997 deny = 0;
1998 } else if (strcmp(policy, "deny") == 0) {
1999 deny = 1;
2000 } else {
2001 monitor_printf(mon, "acl: unknown policy '%s', "
2002 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002003 return;
2004 }
aliguori28a76be2009-03-06 20:27:40 +00002005 if (has_index)
2006 ret = qemu_acl_insert(acl, deny, match, index);
2007 else
2008 ret = qemu_acl_append(acl, deny, match);
2009 if (ret < 0)
2010 monitor_printf(mon, "acl: unable to add acl entry\n");
2011 else
2012 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002013 }
2014}
aliguori76655d62009-03-06 20:27:37 +00002015
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002016static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002017{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002018 const char *aclname = qdict_get_str(qdict, "aclname");
2019 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002020 qemu_acl *acl = find_acl(mon, aclname);
2021 int ret;
aliguori76655d62009-03-06 20:27:37 +00002022
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002023 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002024 ret = qemu_acl_remove(acl, match);
2025 if (ret < 0)
2026 monitor_printf(mon, "acl: no matching acl entry\n");
2027 else
2028 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002029 }
2030}
2031
Huang Ying79c4f6b2009-06-23 10:05:14 +08002032#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002033static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002034{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002035 CPUArchState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002036 int cpu_index = qdict_get_int(qdict, "cpu_index");
2037 int bank = qdict_get_int(qdict, "bank");
2038 uint64_t status = qdict_get_int(qdict, "status");
2039 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2040 uint64_t addr = qdict_get_int(qdict, "addr");
2041 uint64_t misc = qdict_get_int(qdict, "misc");
Jan Kiszka747461c2011-03-02 08:56:10 +01002042 int flags = MCE_INJECT_UNCOND_AO;
Huang Ying79c4f6b2009-06-23 10:05:14 +08002043
Jan Kiszka747461c2011-03-02 08:56:10 +01002044 if (qdict_get_try_bool(qdict, "broadcast", 0)) {
2045 flags |= MCE_INJECT_BROADCAST;
2046 }
Jin Dongming31ce5e02010-12-10 17:21:02 +09002047 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu) {
Jan Kiszka316378e2011-03-02 08:56:09 +01002048 if (cenv->cpu_index == cpu_index) {
2049 cpu_x86_inject_mce(mon, cenv, bank, status, mcg_status, addr, misc,
Jan Kiszka747461c2011-03-02 08:56:10 +01002050 flags);
Huang Ying79c4f6b2009-06-23 10:05:14 +08002051 break;
2052 }
Jin Dongming31ce5e02010-12-10 17:21:02 +09002053 }
Huang Ying79c4f6b2009-06-23 10:05:14 +08002054}
2055#endif
2056
Corey Bryant208c9d12012-06-22 14:36:09 -04002057void qmp_getfd(const char *fdname, Error **errp)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002058{
Anthony Liguoric227f092009-10-01 16:12:16 -05002059 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002060 int fd;
2061
Corey Bryant208c9d12012-06-22 14:36:09 -04002062 fd = qemu_chr_fe_get_msgfd(cur_mon->chr);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002063 if (fd == -1) {
Corey Bryant208c9d12012-06-22 14:36:09 -04002064 error_set(errp, QERR_FD_NOT_SUPPLIED);
2065 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002066 }
2067
2068 if (qemu_isdigit(fdname[0])) {
Corey Bryant208c9d12012-06-22 14:36:09 -04002069 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "fdname",
2070 "a name not starting with a digit");
2071 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002072 }
2073
Corey Bryant208c9d12012-06-22 14:36:09 -04002074 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002075 if (strcmp(monfd->name, fdname) != 0) {
2076 continue;
2077 }
2078
2079 close(monfd->fd);
2080 monfd->fd = fd;
Corey Bryant208c9d12012-06-22 14:36:09 -04002081 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002082 }
2083
Anthony Liguori7267c092011-08-20 22:09:37 -05002084 monfd = g_malloc0(sizeof(mon_fd_t));
2085 monfd->name = g_strdup(fdname);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002086 monfd->fd = fd;
2087
Corey Bryant208c9d12012-06-22 14:36:09 -04002088 QLIST_INSERT_HEAD(&cur_mon->fds, monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002089}
2090
Corey Bryant208c9d12012-06-22 14:36:09 -04002091void qmp_closefd(const char *fdname, Error **errp)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002092{
Anthony Liguoric227f092009-10-01 16:12:16 -05002093 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002094
Corey Bryant208c9d12012-06-22 14:36:09 -04002095 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002096 if (strcmp(monfd->name, fdname) != 0) {
2097 continue;
2098 }
2099
Blue Swirl72cf2d42009-09-12 07:36:22 +00002100 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002101 close(monfd->fd);
Anthony Liguori7267c092011-08-20 22:09:37 -05002102 g_free(monfd->name);
2103 g_free(monfd);
Corey Bryant208c9d12012-06-22 14:36:09 -04002104 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002105 }
2106
Corey Bryant208c9d12012-06-22 14:36:09 -04002107 error_set(errp, QERR_FD_NOT_FOUND, fdname);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002108}
2109
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002110static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002111{
Luiz Capitulino13548692011-07-29 15:36:43 -03002112 int saved_vm_running = runstate_is_running();
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002113 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002114
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002115 vm_stop(RUN_STATE_RESTORE_VM);
Juan Quintelac8d41b22009-08-20 19:42:21 +02002116
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002117 if (load_vmstate(name) == 0 && saved_vm_running) {
Juan Quintelac8d41b22009-08-20 19:42:21 +02002118 vm_start();
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002119 }
Juan Quintelac8d41b22009-08-20 19:42:21 +02002120}
2121
Mark McLoughlin7768e042009-07-22 09:11:41 +01002122int monitor_get_fd(Monitor *mon, const char *fdname)
2123{
Anthony Liguoric227f092009-10-01 16:12:16 -05002124 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002125
Blue Swirl72cf2d42009-09-12 07:36:22 +00002126 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002127 int fd;
2128
2129 if (strcmp(monfd->name, fdname) != 0) {
2130 continue;
2131 }
2132
2133 fd = monfd->fd;
2134
2135 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002136 QLIST_REMOVE(monfd, next);
Anthony Liguori7267c092011-08-20 22:09:37 -05002137 g_free(monfd->name);
2138 g_free(monfd);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002139
2140 return fd;
2141 }
2142
2143 return -1;
2144}
2145
Corey Bryantba1c0482012-08-14 16:43:43 -04002146static void monitor_fdset_cleanup(MonFdset *mon_fdset)
2147{
2148 MonFdsetFd *mon_fdset_fd;
2149 MonFdsetFd *mon_fdset_fd_next;
2150
2151 QLIST_FOREACH_SAFE(mon_fdset_fd, &mon_fdset->fds, next, mon_fdset_fd_next) {
Corey Bryantefb87c12012-08-14 16:43:48 -04002152 if (mon_fdset_fd->removed ||
2153 (QLIST_EMPTY(&mon_fdset->dup_fds) && mon_refcount == 0)) {
Corey Bryantba1c0482012-08-14 16:43:43 -04002154 close(mon_fdset_fd->fd);
2155 g_free(mon_fdset_fd->opaque);
2156 QLIST_REMOVE(mon_fdset_fd, next);
2157 g_free(mon_fdset_fd);
2158 }
2159 }
2160
Corey Bryantadb696f2012-08-14 16:43:47 -04002161 if (QLIST_EMPTY(&mon_fdset->fds) && QLIST_EMPTY(&mon_fdset->dup_fds)) {
Corey Bryantba1c0482012-08-14 16:43:43 -04002162 QLIST_REMOVE(mon_fdset, next);
2163 g_free(mon_fdset);
2164 }
2165}
2166
Corey Bryantefb87c12012-08-14 16:43:48 -04002167static void monitor_fdsets_cleanup(void)
2168{
2169 MonFdset *mon_fdset;
2170 MonFdset *mon_fdset_next;
2171
2172 QLIST_FOREACH_SAFE(mon_fdset, &mon_fdsets, next, mon_fdset_next) {
2173 monitor_fdset_cleanup(mon_fdset);
2174 }
2175}
2176
Corey Bryantba1c0482012-08-14 16:43:43 -04002177AddfdInfo *qmp_add_fd(bool has_fdset_id, int64_t fdset_id, bool has_opaque,
2178 const char *opaque, Error **errp)
2179{
2180 int fd;
2181 Monitor *mon = cur_mon;
2182 MonFdset *mon_fdset;
2183 MonFdsetFd *mon_fdset_fd;
2184 AddfdInfo *fdinfo;
2185
2186 fd = qemu_chr_fe_get_msgfd(mon->chr);
2187 if (fd == -1) {
2188 error_set(errp, QERR_FD_NOT_SUPPLIED);
2189 goto error;
2190 }
2191
2192 if (has_fdset_id) {
2193 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2194 if (mon_fdset->id == fdset_id) {
2195 break;
2196 }
2197 }
2198 if (mon_fdset == NULL) {
2199 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "fdset-id",
2200 "an existing fdset-id");
2201 goto error;
2202 }
2203 } else {
2204 int64_t fdset_id_prev = -1;
2205 MonFdset *mon_fdset_cur = QLIST_FIRST(&mon_fdsets);
2206
2207 /* Use first available fdset ID */
2208 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2209 mon_fdset_cur = mon_fdset;
2210 if (fdset_id_prev == mon_fdset_cur->id - 1) {
2211 fdset_id_prev = mon_fdset_cur->id;
2212 continue;
2213 }
2214 break;
2215 }
2216
2217 mon_fdset = g_malloc0(sizeof(*mon_fdset));
2218 mon_fdset->id = fdset_id_prev + 1;
2219
2220 /* The fdset list is ordered by fdset ID */
2221 if (mon_fdset->id == 0) {
2222 QLIST_INSERT_HEAD(&mon_fdsets, mon_fdset, next);
2223 } else if (mon_fdset->id < mon_fdset_cur->id) {
2224 QLIST_INSERT_BEFORE(mon_fdset_cur, mon_fdset, next);
2225 } else {
2226 QLIST_INSERT_AFTER(mon_fdset_cur, mon_fdset, next);
2227 }
2228 }
2229
2230 mon_fdset_fd = g_malloc0(sizeof(*mon_fdset_fd));
2231 mon_fdset_fd->fd = fd;
2232 mon_fdset_fd->removed = false;
2233 if (has_opaque) {
2234 mon_fdset_fd->opaque = g_strdup(opaque);
2235 }
2236 QLIST_INSERT_HEAD(&mon_fdset->fds, mon_fdset_fd, next);
2237
2238 fdinfo = g_malloc0(sizeof(*fdinfo));
2239 fdinfo->fdset_id = mon_fdset->id;
2240 fdinfo->fd = mon_fdset_fd->fd;
2241
2242 return fdinfo;
2243
2244error:
2245 if (fd != -1) {
2246 close(fd);
2247 }
2248 return NULL;
2249}
2250
2251void qmp_remove_fd(int64_t fdset_id, bool has_fd, int64_t fd, Error **errp)
2252{
2253 MonFdset *mon_fdset;
2254 MonFdsetFd *mon_fdset_fd;
2255 char fd_str[60];
2256
2257 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2258 if (mon_fdset->id != fdset_id) {
2259 continue;
2260 }
2261 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2262 if (has_fd) {
2263 if (mon_fdset_fd->fd != fd) {
2264 continue;
2265 }
2266 mon_fdset_fd->removed = true;
2267 break;
2268 } else {
2269 mon_fdset_fd->removed = true;
2270 }
2271 }
2272 if (has_fd && !mon_fdset_fd) {
2273 goto error;
2274 }
2275 monitor_fdset_cleanup(mon_fdset);
2276 return;
2277 }
2278
2279error:
2280 if (has_fd) {
2281 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64 ", fd:%" PRId64,
2282 fdset_id, fd);
2283 } else {
2284 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64, fdset_id);
2285 }
2286 error_set(errp, QERR_FD_NOT_FOUND, fd_str);
2287}
2288
2289FdsetInfoList *qmp_query_fdsets(Error **errp)
2290{
2291 MonFdset *mon_fdset;
2292 MonFdsetFd *mon_fdset_fd;
2293 FdsetInfoList *fdset_list = NULL;
2294
2295 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2296 FdsetInfoList *fdset_info = g_malloc0(sizeof(*fdset_info));
2297 FdsetFdInfoList *fdsetfd_list = NULL;
2298
2299 fdset_info->value = g_malloc0(sizeof(*fdset_info->value));
2300 fdset_info->value->fdset_id = mon_fdset->id;
2301
2302 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2303 FdsetFdInfoList *fdsetfd_info;
2304
2305 fdsetfd_info = g_malloc0(sizeof(*fdsetfd_info));
2306 fdsetfd_info->value = g_malloc0(sizeof(*fdsetfd_info->value));
2307 fdsetfd_info->value->fd = mon_fdset_fd->fd;
2308 if (mon_fdset_fd->opaque) {
2309 fdsetfd_info->value->has_opaque = true;
2310 fdsetfd_info->value->opaque = g_strdup(mon_fdset_fd->opaque);
2311 } else {
2312 fdsetfd_info->value->has_opaque = false;
2313 }
2314
2315 fdsetfd_info->next = fdsetfd_list;
2316 fdsetfd_list = fdsetfd_info;
2317 }
2318
2319 fdset_info->value->fds = fdsetfd_list;
2320
2321 fdset_info->next = fdset_list;
2322 fdset_list = fdset_info;
2323 }
2324
2325 return fdset_list;
2326}
2327
Corey Bryantadb696f2012-08-14 16:43:47 -04002328int monitor_fdset_get_fd(int64_t fdset_id, int flags)
2329{
Blue Swirlb2dc64c2012-08-18 20:14:54 +00002330#ifndef _WIN32
Corey Bryantadb696f2012-08-14 16:43:47 -04002331 MonFdset *mon_fdset;
2332 MonFdsetFd *mon_fdset_fd;
2333 int mon_fd_flags;
2334
Corey Bryantadb696f2012-08-14 16:43:47 -04002335 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2336 if (mon_fdset->id != fdset_id) {
2337 continue;
2338 }
2339 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2340 mon_fd_flags = fcntl(mon_fdset_fd->fd, F_GETFL);
2341 if (mon_fd_flags == -1) {
2342 return -1;
2343 }
2344
2345 if ((flags & O_ACCMODE) == (mon_fd_flags & O_ACCMODE)) {
2346 return mon_fdset_fd->fd;
2347 }
2348 }
2349 errno = EACCES;
2350 return -1;
2351 }
2352#endif
2353
2354 errno = ENOENT;
2355 return -1;
2356}
2357
2358int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd)
2359{
2360 MonFdset *mon_fdset;
2361 MonFdsetFd *mon_fdset_fd_dup;
2362
2363 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2364 if (mon_fdset->id != fdset_id) {
2365 continue;
2366 }
2367 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2368 if (mon_fdset_fd_dup->fd == dup_fd) {
2369 return -1;
2370 }
2371 }
2372 mon_fdset_fd_dup = g_malloc0(sizeof(*mon_fdset_fd_dup));
2373 mon_fdset_fd_dup->fd = dup_fd;
2374 QLIST_INSERT_HEAD(&mon_fdset->dup_fds, mon_fdset_fd_dup, next);
2375 return 0;
2376 }
2377 return -1;
2378}
2379
2380static int monitor_fdset_dup_fd_find_remove(int dup_fd, bool remove)
2381{
2382 MonFdset *mon_fdset;
2383 MonFdsetFd *mon_fdset_fd_dup;
2384
2385 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2386 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2387 if (mon_fdset_fd_dup->fd == dup_fd) {
2388 if (remove) {
2389 QLIST_REMOVE(mon_fdset_fd_dup, next);
2390 if (QLIST_EMPTY(&mon_fdset->dup_fds)) {
2391 monitor_fdset_cleanup(mon_fdset);
2392 }
2393 }
2394 return mon_fdset->id;
2395 }
2396 }
2397 }
2398 return -1;
2399}
2400
2401int monitor_fdset_dup_fd_find(int dup_fd)
2402{
2403 return monitor_fdset_dup_fd_find_remove(dup_fd, false);
2404}
2405
2406int monitor_fdset_dup_fd_remove(int dup_fd)
2407{
2408 return monitor_fdset_dup_fd_find_remove(dup_fd, true);
2409}
2410
Nicholas Bellingera96ed022012-08-21 20:52:07 +00002411int monitor_handle_fd_param(Monitor *mon, const char *fdname)
2412{
2413 int fd;
2414
2415 if (!qemu_isdigit(fdname[0]) && mon) {
2416
2417 fd = monitor_get_fd(mon, fdname);
2418 if (fd == -1) {
2419 error_report("No file descriptor named %s found", fdname);
2420 return -1;
2421 }
2422 } else {
2423 fd = qemu_parse_fd(fdname);
2424 }
2425
2426 return fd;
2427}
2428
Wayne Xia816f8922011-10-12 11:32:41 +08002429/* mon_cmds and info_cmds would be sorted at runtime */
2430static mon_cmd_t mon_cmds[] = {
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002431#include "hmp-commands.h"
ths5fafdf22007-09-16 21:08:06 +00002432 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002433};
2434
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002435/* Please update hmp-commands.hx when adding or changing commands */
Wayne Xia816f8922011-10-12 11:32:41 +08002436static mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002437 {
2438 .name = "version",
2439 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002440 .params = "",
2441 .help = "show the version of QEMU",
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03002442 .mhandler.info = hmp_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002443 },
2444 {
2445 .name = "network",
2446 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002447 .params = "",
2448 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002449 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002450 },
2451 {
2452 .name = "chardev",
2453 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002454 .params = "",
2455 .help = "show the character devices",
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03002456 .mhandler.info = hmp_info_chardev,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002457 },
2458 {
2459 .name = "block",
2460 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002461 .params = "",
2462 .help = "show the block devices",
Luiz Capitulinob2023812011-09-21 17:16:47 -03002463 .mhandler.info = hmp_info_block,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002464 },
2465 {
2466 .name = "blockstats",
2467 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002468 .params = "",
2469 .help = "show block device statistics",
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002470 .mhandler.info = hmp_info_blockstats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002471 },
2472 {
Stefan Hajnoczifb5458c2012-01-18 14:40:49 +00002473 .name = "block-jobs",
2474 .args_type = "",
2475 .params = "",
2476 .help = "show progress of ongoing block device operations",
2477 .mhandler.info = hmp_info_block_jobs,
2478 },
2479 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002480 .name = "registers",
2481 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002482 .params = "",
2483 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002484 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002485 },
2486 {
2487 .name = "cpus",
2488 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002489 .params = "",
2490 .help = "show infos for each CPU",
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03002491 .mhandler.info = hmp_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002492 },
2493 {
2494 .name = "history",
2495 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002496 .params = "",
2497 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002498 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002499 },
Jan Kiszka661f1922011-10-16 11:53:13 +02002500#if defined(TARGET_I386) || defined(TARGET_PPC) || defined(TARGET_MIPS) || \
2501 defined(TARGET_LM32) || (defined(TARGET_SPARC) && !defined(TARGET_SPARC64))
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002502 {
2503 .name = "irq",
2504 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002505 .params = "",
2506 .help = "show the interrupts statistics (if available)",
Jan Kiszka661f1922011-10-16 11:53:13 +02002507#ifdef TARGET_SPARC
2508 .mhandler.info = sun4m_irq_info,
2509#elif defined(TARGET_LM32)
2510 .mhandler.info = lm32_irq_info,
2511#else
Luiz Capitulino910df892009-10-07 13:41:51 -03002512 .mhandler.info = irq_info,
Jan Kiszka661f1922011-10-16 11:53:13 +02002513#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002514 },
2515 {
2516 .name = "pic",
2517 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002518 .params = "",
2519 .help = "show i8259 (PIC) state",
Jan Kiszka661f1922011-10-16 11:53:13 +02002520#ifdef TARGET_SPARC
2521 .mhandler.info = sun4m_pic_info,
2522#elif defined(TARGET_LM32)
2523 .mhandler.info = lm32_do_pic_info,
2524#else
Luiz Capitulino910df892009-10-07 13:41:51 -03002525 .mhandler.info = pic_info,
Jan Kiszka661f1922011-10-16 11:53:13 +02002526#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002527 },
Jan Kiszka661f1922011-10-16 11:53:13 +02002528#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002529 {
2530 .name = "pci",
2531 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002532 .params = "",
2533 .help = "show PCI info",
Luiz Capitulino79627472011-10-21 14:15:33 -02002534 .mhandler.info = hmp_info_pci,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002535 },
Scott Woodbebabbc2011-08-18 10:38:42 +00002536#if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \
Max Filippov692f7372012-01-07 20:02:40 +04002537 defined(TARGET_PPC) || defined(TARGET_XTENSA)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002538 {
2539 .name = "tlb",
2540 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002541 .params = "",
2542 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002543 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002544 },
aurel327c664e22009-03-03 06:12:22 +00002545#endif
2546#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002547 {
2548 .name = "mem",
2549 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002550 .params = "",
2551 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002552 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002553 },
bellardb86bda52004-09-18 19:32:46 +00002554#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002555 {
Blue Swirl314e2982011-09-11 20:22:05 +00002556 .name = "mtree",
2557 .args_type = "",
2558 .params = "",
2559 .help = "show memory tree",
2560 .mhandler.info = do_info_mtree,
2561 },
2562 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002563 .name = "jit",
2564 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002565 .params = "",
2566 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002567 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002568 },
2569 {
2570 .name = "kvm",
2571 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002572 .params = "",
2573 .help = "show KVM information",
Luiz Capitulino292a2602011-09-12 15:10:53 -03002574 .mhandler.info = hmp_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002575 },
2576 {
2577 .name = "numa",
2578 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002579 .params = "",
2580 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002581 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002582 },
2583 {
2584 .name = "usb",
2585 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002586 .params = "",
2587 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002588 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002589 },
2590 {
2591 .name = "usbhost",
2592 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002593 .params = "",
2594 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002595 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002596 },
2597 {
2598 .name = "profile",
2599 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002600 .params = "",
2601 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002602 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002603 },
2604 {
2605 .name = "capture",
2606 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002607 .params = "",
2608 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002609 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002610 },
2611 {
2612 .name = "snapshots",
2613 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002614 .params = "",
2615 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002616 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002617 },
2618 {
2619 .name = "status",
2620 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002621 .params = "",
2622 .help = "show the current VM status (running|paused)",
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -03002623 .mhandler.info = hmp_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002624 },
2625 {
2626 .name = "pcmcia",
2627 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002628 .params = "",
2629 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002630 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002631 },
2632 {
2633 .name = "mice",
2634 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002635 .params = "",
2636 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe235cec2011-09-21 15:29:55 -03002637 .mhandler.info = hmp_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002638 },
2639 {
2640 .name = "vnc",
2641 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002642 .params = "",
2643 .help = "show the vnc server status",
Luiz Capitulino2b54aa82011-10-17 16:41:22 -02002644 .mhandler.info = hmp_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002645 },
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002646#if defined(CONFIG_SPICE)
2647 {
2648 .name = "spice",
2649 .args_type = "",
2650 .params = "",
2651 .help = "show the spice server status",
Luiz Capitulinod1f29642011-10-20 17:01:33 -02002652 .mhandler.info = hmp_info_spice,
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002653 },
2654#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002655 {
2656 .name = "name",
2657 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002658 .params = "",
2659 .help = "show the current VM name",
Anthony Liguori48a32be2011-09-02 12:34:48 -05002660 .mhandler.info = hmp_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002661 },
2662 {
2663 .name = "uuid",
2664 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002665 .params = "",
2666 .help = "show the current VM UUID",
Luiz Capitulinoefab7672011-09-13 17:16:25 -03002667 .mhandler.info = hmp_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002668 },
j_mayer76a66252007-03-07 08:32:30 +00002669#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002670 {
2671 .name = "cpustats",
2672 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002673 .params = "",
2674 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002675 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002676 },
j_mayer76a66252007-03-07 08:32:30 +00002677#endif
blueswir131a60e22007-10-26 18:42:59 +00002678#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002679 {
2680 .name = "usernet",
2681 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002682 .params = "",
2683 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002684 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002685 },
blueswir131a60e22007-10-26 18:42:59 +00002686#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002687 {
2688 .name = "migrate",
2689 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002690 .params = "",
2691 .help = "show migration status",
Luiz Capitulino791e7c82011-09-13 17:37:16 -03002692 .mhandler.info = hmp_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002693 },
2694 {
Orit Wassermanbbf6da32012-08-06 21:42:47 +03002695 .name = "migrate_capabilities",
2696 .args_type = "",
2697 .params = "",
2698 .help = "show current migration capabilities",
2699 .mhandler.info = hmp_info_migrate_capabilities,
2700 },
2701 {
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +03002702 .name = "migrate_cache_size",
2703 .args_type = "",
2704 .params = "",
2705 .help = "show current migration xbzrle cache size",
2706 .mhandler.info = hmp_info_migrate_cache_size,
2707 },
2708 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002709 .name = "balloon",
2710 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002711 .params = "",
2712 .help = "show balloon information",
Luiz Capitulino96637bc2011-10-21 11:41:37 -02002713 .mhandler.info = hmp_info_balloon,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002714 },
2715 {
2716 .name = "qtree",
2717 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002718 .params = "",
2719 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002720 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002721 },
2722 {
2723 .name = "qdm",
2724 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002725 .params = "",
2726 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002727 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002728 },
2729 {
2730 .name = "roms",
2731 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002732 .params = "",
2733 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002734 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002735 },
Prerna Saxena22890ab2010-06-24 17:04:53 +05302736 {
2737 .name = "trace-events",
2738 .args_type = "",
2739 .params = "",
2740 .help = "show available trace-events & their state",
Lluísfc764102011-08-31 20:31:18 +02002741 .mhandler.info = do_trace_print_events,
Prerna Saxena22890ab2010-06-24 17:04:53 +05302742 },
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002743 {
2744 .name = NULL,
2745 },
bellard9dc39cb2004-03-14 21:38:27 +00002746};
2747
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03002748static const mon_cmd_t qmp_cmds[] = {
Anthony Liguorie3193602011-09-02 12:34:47 -05002749#include "qmp-commands-old.h"
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03002750 { /* NULL */ },
2751};
2752
bellard9307c4c2004-04-04 12:57:25 +00002753/*******************************************************************/
2754
2755static const char *pch;
2756static jmp_buf expr_env;
2757
bellard92a31b12005-02-10 22:00:52 +00002758#define MD_TLONG 0
2759#define MD_I32 1
2760
bellard9307c4c2004-04-04 12:57:25 +00002761typedef struct MonitorDef {
2762 const char *name;
2763 int offset;
blueswir18662d652008-10-02 18:32:44 +00002764 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002765 int type;
bellard9307c4c2004-04-04 12:57:25 +00002766} MonitorDef;
2767
bellard57206fd2004-04-25 18:54:52 +00002768#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002769static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002770{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002771 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002772 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002773}
2774#endif
2775
bellarda541f292004-04-12 20:39:29 +00002776#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002777static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002778{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002779 CPUArchState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002780 unsigned int u;
2781 int i;
2782
2783 u = 0;
2784 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002785 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002786
2787 return u;
2788}
2789
blueswir18662d652008-10-02 18:32:44 +00002790static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002791{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002792 CPUArchState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00002793 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002794}
2795
blueswir18662d652008-10-02 18:32:44 +00002796static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002797{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002798 CPUArchState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00002799 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002800}
bellard9fddaa02004-05-21 12:59:32 +00002801
blueswir18662d652008-10-02 18:32:44 +00002802static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002803{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002804 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002805 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002806}
2807
blueswir18662d652008-10-02 18:32:44 +00002808static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002809{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002810 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002811 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002812}
2813
blueswir18662d652008-10-02 18:32:44 +00002814static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002815{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002816 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002817 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002818}
bellarda541f292004-04-12 20:39:29 +00002819#endif
2820
bellarde95c8d52004-09-30 22:22:08 +00002821#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002822#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002823static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002824{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002825 CPUArchState *env = mon_get_cpu();
Blue Swirl5a834bb2010-05-09 20:19:04 +00002826
2827 return cpu_get_psr(env);
bellarde95c8d52004-09-30 22:22:08 +00002828}
bellard7b936c02005-10-30 17:05:13 +00002829#endif
bellarde95c8d52004-09-30 22:22:08 +00002830
blueswir18662d652008-10-02 18:32:44 +00002831static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002832{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002833 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002834 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002835}
2836#endif
2837
blueswir18662d652008-10-02 18:32:44 +00002838static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002839#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002840
2841#define SEG(name, seg) \
Andreas Färbere59d1672012-02-16 00:40:47 +01002842 { name, offsetof(CPUX86State, segs[seg].selector), NULL, MD_I32 },\
2843 { name ".base", offsetof(CPUX86State, segs[seg].base) },\
2844 { name ".limit", offsetof(CPUX86State, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002845
Andreas Färbere59d1672012-02-16 00:40:47 +01002846 { "eax", offsetof(CPUX86State, regs[0]) },
2847 { "ecx", offsetof(CPUX86State, regs[1]) },
2848 { "edx", offsetof(CPUX86State, regs[2]) },
2849 { "ebx", offsetof(CPUX86State, regs[3]) },
2850 { "esp|sp", offsetof(CPUX86State, regs[4]) },
2851 { "ebp|fp", offsetof(CPUX86State, regs[5]) },
2852 { "esi", offsetof(CPUX86State, regs[6]) },
2853 { "edi", offsetof(CPUX86State, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002854#ifdef TARGET_X86_64
Andreas Färbere59d1672012-02-16 00:40:47 +01002855 { "r8", offsetof(CPUX86State, regs[8]) },
2856 { "r9", offsetof(CPUX86State, regs[9]) },
2857 { "r10", offsetof(CPUX86State, regs[10]) },
2858 { "r11", offsetof(CPUX86State, regs[11]) },
2859 { "r12", offsetof(CPUX86State, regs[12]) },
2860 { "r13", offsetof(CPUX86State, regs[13]) },
2861 { "r14", offsetof(CPUX86State, regs[14]) },
2862 { "r15", offsetof(CPUX86State, regs[15]) },
bellard92a31b12005-02-10 22:00:52 +00002863#endif
Andreas Färbere59d1672012-02-16 00:40:47 +01002864 { "eflags", offsetof(CPUX86State, eflags) },
2865 { "eip", offsetof(CPUX86State, eip) },
bellard57206fd2004-04-25 18:54:52 +00002866 SEG("cs", R_CS)
2867 SEG("ds", R_DS)
2868 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002869 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002870 SEG("fs", R_FS)
2871 SEG("gs", R_GS)
2872 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002873#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002874 /* General purpose registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01002875 { "r0", offsetof(CPUPPCState, gpr[0]) },
2876 { "r1", offsetof(CPUPPCState, gpr[1]) },
2877 { "r2", offsetof(CPUPPCState, gpr[2]) },
2878 { "r3", offsetof(CPUPPCState, gpr[3]) },
2879 { "r4", offsetof(CPUPPCState, gpr[4]) },
2880 { "r5", offsetof(CPUPPCState, gpr[5]) },
2881 { "r6", offsetof(CPUPPCState, gpr[6]) },
2882 { "r7", offsetof(CPUPPCState, gpr[7]) },
2883 { "r8", offsetof(CPUPPCState, gpr[8]) },
2884 { "r9", offsetof(CPUPPCState, gpr[9]) },
2885 { "r10", offsetof(CPUPPCState, gpr[10]) },
2886 { "r11", offsetof(CPUPPCState, gpr[11]) },
2887 { "r12", offsetof(CPUPPCState, gpr[12]) },
2888 { "r13", offsetof(CPUPPCState, gpr[13]) },
2889 { "r14", offsetof(CPUPPCState, gpr[14]) },
2890 { "r15", offsetof(CPUPPCState, gpr[15]) },
2891 { "r16", offsetof(CPUPPCState, gpr[16]) },
2892 { "r17", offsetof(CPUPPCState, gpr[17]) },
2893 { "r18", offsetof(CPUPPCState, gpr[18]) },
2894 { "r19", offsetof(CPUPPCState, gpr[19]) },
2895 { "r20", offsetof(CPUPPCState, gpr[20]) },
2896 { "r21", offsetof(CPUPPCState, gpr[21]) },
2897 { "r22", offsetof(CPUPPCState, gpr[22]) },
2898 { "r23", offsetof(CPUPPCState, gpr[23]) },
2899 { "r24", offsetof(CPUPPCState, gpr[24]) },
2900 { "r25", offsetof(CPUPPCState, gpr[25]) },
2901 { "r26", offsetof(CPUPPCState, gpr[26]) },
2902 { "r27", offsetof(CPUPPCState, gpr[27]) },
2903 { "r28", offsetof(CPUPPCState, gpr[28]) },
2904 { "r29", offsetof(CPUPPCState, gpr[29]) },
2905 { "r30", offsetof(CPUPPCState, gpr[30]) },
2906 { "r31", offsetof(CPUPPCState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00002907 /* Floating point registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01002908 { "f0", offsetof(CPUPPCState, fpr[0]) },
2909 { "f1", offsetof(CPUPPCState, fpr[1]) },
2910 { "f2", offsetof(CPUPPCState, fpr[2]) },
2911 { "f3", offsetof(CPUPPCState, fpr[3]) },
2912 { "f4", offsetof(CPUPPCState, fpr[4]) },
2913 { "f5", offsetof(CPUPPCState, fpr[5]) },
2914 { "f6", offsetof(CPUPPCState, fpr[6]) },
2915 { "f7", offsetof(CPUPPCState, fpr[7]) },
2916 { "f8", offsetof(CPUPPCState, fpr[8]) },
2917 { "f9", offsetof(CPUPPCState, fpr[9]) },
2918 { "f10", offsetof(CPUPPCState, fpr[10]) },
2919 { "f11", offsetof(CPUPPCState, fpr[11]) },
2920 { "f12", offsetof(CPUPPCState, fpr[12]) },
2921 { "f13", offsetof(CPUPPCState, fpr[13]) },
2922 { "f14", offsetof(CPUPPCState, fpr[14]) },
2923 { "f15", offsetof(CPUPPCState, fpr[15]) },
2924 { "f16", offsetof(CPUPPCState, fpr[16]) },
2925 { "f17", offsetof(CPUPPCState, fpr[17]) },
2926 { "f18", offsetof(CPUPPCState, fpr[18]) },
2927 { "f19", offsetof(CPUPPCState, fpr[19]) },
2928 { "f20", offsetof(CPUPPCState, fpr[20]) },
2929 { "f21", offsetof(CPUPPCState, fpr[21]) },
2930 { "f22", offsetof(CPUPPCState, fpr[22]) },
2931 { "f23", offsetof(CPUPPCState, fpr[23]) },
2932 { "f24", offsetof(CPUPPCState, fpr[24]) },
2933 { "f25", offsetof(CPUPPCState, fpr[25]) },
2934 { "f26", offsetof(CPUPPCState, fpr[26]) },
2935 { "f27", offsetof(CPUPPCState, fpr[27]) },
2936 { "f28", offsetof(CPUPPCState, fpr[28]) },
2937 { "f29", offsetof(CPUPPCState, fpr[29]) },
2938 { "f30", offsetof(CPUPPCState, fpr[30]) },
2939 { "f31", offsetof(CPUPPCState, fpr[31]) },
2940 { "fpscr", offsetof(CPUPPCState, fpscr) },
j_mayerff937db2007-09-19 05:49:13 +00002941 /* Next instruction pointer */
Andreas Färbere59d1672012-02-16 00:40:47 +01002942 { "nip|pc", offsetof(CPUPPCState, nip) },
2943 { "lr", offsetof(CPUPPCState, lr) },
2944 { "ctr", offsetof(CPUPPCState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00002945 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00002946 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00002947 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00002948 { "msr", 0, &monitor_get_msr, },
2949 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00002950 { "tbu", 0, &monitor_get_tbu, },
2951 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00002952#if defined(TARGET_PPC64)
2953 /* Address space register */
Andreas Färbere59d1672012-02-16 00:40:47 +01002954 { "asr", offsetof(CPUPPCState, asr) },
j_mayerff937db2007-09-19 05:49:13 +00002955#endif
2956 /* Segment registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01002957 { "sdr1", offsetof(CPUPPCState, spr[SPR_SDR1]) },
2958 { "sr0", offsetof(CPUPPCState, sr[0]) },
2959 { "sr1", offsetof(CPUPPCState, sr[1]) },
2960 { "sr2", offsetof(CPUPPCState, sr[2]) },
2961 { "sr3", offsetof(CPUPPCState, sr[3]) },
2962 { "sr4", offsetof(CPUPPCState, sr[4]) },
2963 { "sr5", offsetof(CPUPPCState, sr[5]) },
2964 { "sr6", offsetof(CPUPPCState, sr[6]) },
2965 { "sr7", offsetof(CPUPPCState, sr[7]) },
2966 { "sr8", offsetof(CPUPPCState, sr[8]) },
2967 { "sr9", offsetof(CPUPPCState, sr[9]) },
2968 { "sr10", offsetof(CPUPPCState, sr[10]) },
2969 { "sr11", offsetof(CPUPPCState, sr[11]) },
2970 { "sr12", offsetof(CPUPPCState, sr[12]) },
2971 { "sr13", offsetof(CPUPPCState, sr[13]) },
2972 { "sr14", offsetof(CPUPPCState, sr[14]) },
2973 { "sr15", offsetof(CPUPPCState, sr[15]) },
Scott Wood90dc8812011-04-29 17:10:23 -05002974 /* Too lazy to put BATs... */
Andreas Färbere59d1672012-02-16 00:40:47 +01002975 { "pvr", offsetof(CPUPPCState, spr[SPR_PVR]) },
Scott Wood90dc8812011-04-29 17:10:23 -05002976
Andreas Färbere59d1672012-02-16 00:40:47 +01002977 { "srr0", offsetof(CPUPPCState, spr[SPR_SRR0]) },
2978 { "srr1", offsetof(CPUPPCState, spr[SPR_SRR1]) },
2979 { "sprg0", offsetof(CPUPPCState, spr[SPR_SPRG0]) },
2980 { "sprg1", offsetof(CPUPPCState, spr[SPR_SPRG1]) },
2981 { "sprg2", offsetof(CPUPPCState, spr[SPR_SPRG2]) },
2982 { "sprg3", offsetof(CPUPPCState, spr[SPR_SPRG3]) },
2983 { "sprg4", offsetof(CPUPPCState, spr[SPR_SPRG4]) },
2984 { "sprg5", offsetof(CPUPPCState, spr[SPR_SPRG5]) },
2985 { "sprg6", offsetof(CPUPPCState, spr[SPR_SPRG6]) },
2986 { "sprg7", offsetof(CPUPPCState, spr[SPR_SPRG7]) },
2987 { "pid", offsetof(CPUPPCState, spr[SPR_BOOKE_PID]) },
2988 { "csrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR0]) },
2989 { "csrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR1]) },
2990 { "esr", offsetof(CPUPPCState, spr[SPR_BOOKE_ESR]) },
2991 { "dear", offsetof(CPUPPCState, spr[SPR_BOOKE_DEAR]) },
2992 { "mcsr", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSR]) },
2993 { "tsr", offsetof(CPUPPCState, spr[SPR_BOOKE_TSR]) },
2994 { "tcr", offsetof(CPUPPCState, spr[SPR_BOOKE_TCR]) },
2995 { "vrsave", offsetof(CPUPPCState, spr[SPR_VRSAVE]) },
2996 { "pir", offsetof(CPUPPCState, spr[SPR_BOOKE_PIR]) },
2997 { "mcsrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR0]) },
2998 { "mcsrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR1]) },
2999 { "decar", offsetof(CPUPPCState, spr[SPR_BOOKE_DECAR]) },
3000 { "ivpr", offsetof(CPUPPCState, spr[SPR_BOOKE_IVPR]) },
3001 { "epcr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPCR]) },
3002 { "sprg8", offsetof(CPUPPCState, spr[SPR_BOOKE_SPRG8]) },
3003 { "ivor0", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR0]) },
3004 { "ivor1", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR1]) },
3005 { "ivor2", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR2]) },
3006 { "ivor3", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR3]) },
3007 { "ivor4", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR4]) },
3008 { "ivor5", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR5]) },
3009 { "ivor6", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR6]) },
3010 { "ivor7", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR7]) },
3011 { "ivor8", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR8]) },
3012 { "ivor9", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR9]) },
3013 { "ivor10", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR10]) },
3014 { "ivor11", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR11]) },
3015 { "ivor12", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR12]) },
3016 { "ivor13", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR13]) },
3017 { "ivor14", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR14]) },
3018 { "ivor15", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR15]) },
3019 { "ivor32", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR32]) },
3020 { "ivor33", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR33]) },
3021 { "ivor34", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR34]) },
3022 { "ivor35", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR35]) },
3023 { "ivor36", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR36]) },
3024 { "ivor37", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR37]) },
3025 { "mas0", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS0]) },
3026 { "mas1", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS1]) },
3027 { "mas2", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS2]) },
3028 { "mas3", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS3]) },
3029 { "mas4", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS4]) },
3030 { "mas6", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS6]) },
3031 { "mas7", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS7]) },
3032 { "mmucfg", offsetof(CPUPPCState, spr[SPR_MMUCFG]) },
3033 { "tlb0cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB0CFG]) },
3034 { "tlb1cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB1CFG]) },
3035 { "epr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPR]) },
3036 { "eplc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPLC]) },
3037 { "epsc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPSC]) },
3038 { "svr", offsetof(CPUPPCState, spr[SPR_E500_SVR]) },
3039 { "mcar", offsetof(CPUPPCState, spr[SPR_Exxx_MCAR]) },
3040 { "pid1", offsetof(CPUPPCState, spr[SPR_BOOKE_PID1]) },
3041 { "pid2", offsetof(CPUPPCState, spr[SPR_BOOKE_PID2]) },
3042 { "hid0", offsetof(CPUPPCState, spr[SPR_HID0]) },
Scott Wood90dc8812011-04-29 17:10:23 -05003043
bellarde95c8d52004-09-30 22:22:08 +00003044#elif defined(TARGET_SPARC)
Andreas Färbere59d1672012-02-16 00:40:47 +01003045 { "g0", offsetof(CPUSPARCState, gregs[0]) },
3046 { "g1", offsetof(CPUSPARCState, gregs[1]) },
3047 { "g2", offsetof(CPUSPARCState, gregs[2]) },
3048 { "g3", offsetof(CPUSPARCState, gregs[3]) },
3049 { "g4", offsetof(CPUSPARCState, gregs[4]) },
3050 { "g5", offsetof(CPUSPARCState, gregs[5]) },
3051 { "g6", offsetof(CPUSPARCState, gregs[6]) },
3052 { "g7", offsetof(CPUSPARCState, gregs[7]) },
bellarde95c8d52004-09-30 22:22:08 +00003053 { "o0", 0, monitor_get_reg },
3054 { "o1", 1, monitor_get_reg },
3055 { "o2", 2, monitor_get_reg },
3056 { "o3", 3, monitor_get_reg },
3057 { "o4", 4, monitor_get_reg },
3058 { "o5", 5, monitor_get_reg },
3059 { "o6", 6, monitor_get_reg },
3060 { "o7", 7, monitor_get_reg },
3061 { "l0", 8, monitor_get_reg },
3062 { "l1", 9, monitor_get_reg },
3063 { "l2", 10, monitor_get_reg },
3064 { "l3", 11, monitor_get_reg },
3065 { "l4", 12, monitor_get_reg },
3066 { "l5", 13, monitor_get_reg },
3067 { "l6", 14, monitor_get_reg },
3068 { "l7", 15, monitor_get_reg },
3069 { "i0", 16, monitor_get_reg },
3070 { "i1", 17, monitor_get_reg },
3071 { "i2", 18, monitor_get_reg },
3072 { "i3", 19, monitor_get_reg },
3073 { "i4", 20, monitor_get_reg },
3074 { "i5", 21, monitor_get_reg },
3075 { "i6", 22, monitor_get_reg },
3076 { "i7", 23, monitor_get_reg },
Andreas Färbere59d1672012-02-16 00:40:47 +01003077 { "pc", offsetof(CPUSPARCState, pc) },
3078 { "npc", offsetof(CPUSPARCState, npc) },
3079 { "y", offsetof(CPUSPARCState, y) },
bellard7b936c02005-10-30 17:05:13 +00003080#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00003081 { "psr", 0, &monitor_get_psr, },
Andreas Färbere59d1672012-02-16 00:40:47 +01003082 { "wim", offsetof(CPUSPARCState, wim) },
bellard7b936c02005-10-30 17:05:13 +00003083#endif
Andreas Färbere59d1672012-02-16 00:40:47 +01003084 { "tbr", offsetof(CPUSPARCState, tbr) },
3085 { "fsr", offsetof(CPUSPARCState, fsr) },
3086 { "f0", offsetof(CPUSPARCState, fpr[0].l.upper) },
3087 { "f1", offsetof(CPUSPARCState, fpr[0].l.lower) },
3088 { "f2", offsetof(CPUSPARCState, fpr[1].l.upper) },
3089 { "f3", offsetof(CPUSPARCState, fpr[1].l.lower) },
3090 { "f4", offsetof(CPUSPARCState, fpr[2].l.upper) },
3091 { "f5", offsetof(CPUSPARCState, fpr[2].l.lower) },
3092 { "f6", offsetof(CPUSPARCState, fpr[3].l.upper) },
3093 { "f7", offsetof(CPUSPARCState, fpr[3].l.lower) },
3094 { "f8", offsetof(CPUSPARCState, fpr[4].l.upper) },
3095 { "f9", offsetof(CPUSPARCState, fpr[4].l.lower) },
3096 { "f10", offsetof(CPUSPARCState, fpr[5].l.upper) },
3097 { "f11", offsetof(CPUSPARCState, fpr[5].l.lower) },
3098 { "f12", offsetof(CPUSPARCState, fpr[6].l.upper) },
3099 { "f13", offsetof(CPUSPARCState, fpr[6].l.lower) },
3100 { "f14", offsetof(CPUSPARCState, fpr[7].l.upper) },
3101 { "f15", offsetof(CPUSPARCState, fpr[7].l.lower) },
3102 { "f16", offsetof(CPUSPARCState, fpr[8].l.upper) },
3103 { "f17", offsetof(CPUSPARCState, fpr[8].l.lower) },
3104 { "f18", offsetof(CPUSPARCState, fpr[9].l.upper) },
3105 { "f19", offsetof(CPUSPARCState, fpr[9].l.lower) },
3106 { "f20", offsetof(CPUSPARCState, fpr[10].l.upper) },
3107 { "f21", offsetof(CPUSPARCState, fpr[10].l.lower) },
3108 { "f22", offsetof(CPUSPARCState, fpr[11].l.upper) },
3109 { "f23", offsetof(CPUSPARCState, fpr[11].l.lower) },
3110 { "f24", offsetof(CPUSPARCState, fpr[12].l.upper) },
3111 { "f25", offsetof(CPUSPARCState, fpr[12].l.lower) },
3112 { "f26", offsetof(CPUSPARCState, fpr[13].l.upper) },
3113 { "f27", offsetof(CPUSPARCState, fpr[13].l.lower) },
3114 { "f28", offsetof(CPUSPARCState, fpr[14].l.upper) },
3115 { "f29", offsetof(CPUSPARCState, fpr[14].l.lower) },
3116 { "f30", offsetof(CPUSPARCState, fpr[15].l.upper) },
3117 { "f31", offsetof(CPUSPARCState, fpr[15].l.lower) },
bellard7b936c02005-10-30 17:05:13 +00003118#ifdef TARGET_SPARC64
Andreas Färbere59d1672012-02-16 00:40:47 +01003119 { "f32", offsetof(CPUSPARCState, fpr[16]) },
3120 { "f34", offsetof(CPUSPARCState, fpr[17]) },
3121 { "f36", offsetof(CPUSPARCState, fpr[18]) },
3122 { "f38", offsetof(CPUSPARCState, fpr[19]) },
3123 { "f40", offsetof(CPUSPARCState, fpr[20]) },
3124 { "f42", offsetof(CPUSPARCState, fpr[21]) },
3125 { "f44", offsetof(CPUSPARCState, fpr[22]) },
3126 { "f46", offsetof(CPUSPARCState, fpr[23]) },
3127 { "f48", offsetof(CPUSPARCState, fpr[24]) },
3128 { "f50", offsetof(CPUSPARCState, fpr[25]) },
3129 { "f52", offsetof(CPUSPARCState, fpr[26]) },
3130 { "f54", offsetof(CPUSPARCState, fpr[27]) },
3131 { "f56", offsetof(CPUSPARCState, fpr[28]) },
3132 { "f58", offsetof(CPUSPARCState, fpr[29]) },
3133 { "f60", offsetof(CPUSPARCState, fpr[30]) },
3134 { "f62", offsetof(CPUSPARCState, fpr[31]) },
3135 { "asi", offsetof(CPUSPARCState, asi) },
3136 { "pstate", offsetof(CPUSPARCState, pstate) },
3137 { "cansave", offsetof(CPUSPARCState, cansave) },
3138 { "canrestore", offsetof(CPUSPARCState, canrestore) },
3139 { "otherwin", offsetof(CPUSPARCState, otherwin) },
3140 { "wstate", offsetof(CPUSPARCState, wstate) },
3141 { "cleanwin", offsetof(CPUSPARCState, cleanwin) },
3142 { "fprs", offsetof(CPUSPARCState, fprs) },
bellard7b936c02005-10-30 17:05:13 +00003143#endif
bellard9307c4c2004-04-04 12:57:25 +00003144#endif
3145 { NULL },
3146};
3147
aliguori376253e2009-03-05 23:01:23 +00003148static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00003149{
aliguori376253e2009-03-05 23:01:23 +00003150 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00003151 longjmp(expr_env, 1);
3152}
3153
Markus Armbruster09b94182010-01-20 13:07:30 +01003154/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00003155static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00003156{
blueswir18662d652008-10-02 18:32:44 +00003157 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00003158 void *ptr;
3159
bellard9307c4c2004-04-04 12:57:25 +00003160 for(md = monitor_defs; md->name != NULL; md++) {
3161 if (compare_cmd(name, md->name)) {
3162 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003163 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003164 } else {
Andreas Färber9349b4f2012-03-14 01:38:32 +01003165 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003166 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003167 switch(md->type) {
3168 case MD_I32:
3169 *pval = *(int32_t *)ptr;
3170 break;
3171 case MD_TLONG:
3172 *pval = *(target_long *)ptr;
3173 break;
3174 default:
3175 *pval = 0;
3176 break;
3177 }
bellard9307c4c2004-04-04 12:57:25 +00003178 }
3179 return 0;
3180 }
3181 }
3182 return -1;
3183}
3184
3185static void next(void)
3186{
Blue Swirl660f11b2009-07-31 21:16:51 +00003187 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003188 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003189 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003190 pch++;
3191 }
3192}
3193
aliguori376253e2009-03-05 23:01:23 +00003194static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003195
aliguori376253e2009-03-05 23:01:23 +00003196static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003197{
blueswir1c2efc952007-09-25 17:28:42 +00003198 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003199 char *p;
bellard6a00d602005-11-21 23:25:50 +00003200 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003201
3202 switch(*pch) {
3203 case '+':
3204 next();
aliguori376253e2009-03-05 23:01:23 +00003205 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003206 break;
3207 case '-':
3208 next();
aliguori376253e2009-03-05 23:01:23 +00003209 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003210 break;
3211 case '~':
3212 next();
aliguori376253e2009-03-05 23:01:23 +00003213 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003214 break;
3215 case '(':
3216 next();
aliguori376253e2009-03-05 23:01:23 +00003217 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003218 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003219 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003220 }
3221 next();
3222 break;
bellard81d09122004-07-14 17:21:37 +00003223 case '\'':
3224 pch++;
3225 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003226 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003227 n = *pch;
3228 pch++;
3229 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003230 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003231 next();
3232 break;
bellard9307c4c2004-04-04 12:57:25 +00003233 case '$':
3234 {
3235 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003236 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003237
bellard9307c4c2004-04-04 12:57:25 +00003238 pch++;
3239 q = buf;
3240 while ((*pch >= 'a' && *pch <= 'z') ||
3241 (*pch >= 'A' && *pch <= 'Z') ||
3242 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003243 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003244 if ((q - buf) < sizeof(buf) - 1)
3245 *q++ = *pch;
3246 pch++;
3247 }
blueswir1cd390082008-11-16 13:53:32 +00003248 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003249 pch++;
3250 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003251 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003252 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003253 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003254 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003255 }
3256 break;
3257 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003258 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003259 n = 0;
3260 break;
3261 default:
Luiz Capitulino6b0e33b2012-04-26 16:48:41 -03003262 errno = 0;
blueswir17743e582007-09-24 18:39:04 +00003263#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003264 n = strtoull(pch, &p, 0);
3265#else
bellard9307c4c2004-04-04 12:57:25 +00003266 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003267#endif
Luiz Capitulino6b0e33b2012-04-26 16:48:41 -03003268 if (errno == ERANGE) {
3269 expr_error(mon, "number too large");
3270 }
bellard9307c4c2004-04-04 12:57:25 +00003271 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003272 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003273 }
3274 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003275 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003276 pch++;
3277 break;
3278 }
3279 return n;
3280}
3281
3282
aliguori376253e2009-03-05 23:01:23 +00003283static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003284{
blueswir1c2efc952007-09-25 17:28:42 +00003285 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003286 int op;
ths3b46e622007-09-17 08:09:54 +00003287
aliguori376253e2009-03-05 23:01:23 +00003288 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003289 for(;;) {
3290 op = *pch;
3291 if (op != '*' && op != '/' && op != '%')
3292 break;
3293 next();
aliguori376253e2009-03-05 23:01:23 +00003294 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003295 switch(op) {
3296 default:
3297 case '*':
3298 val *= val2;
3299 break;
3300 case '/':
3301 case '%':
ths5fafdf22007-09-16 21:08:06 +00003302 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003303 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003304 if (op == '/')
3305 val /= val2;
3306 else
3307 val %= val2;
3308 break;
3309 }
3310 }
3311 return val;
3312}
3313
aliguori376253e2009-03-05 23:01:23 +00003314static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003315{
blueswir1c2efc952007-09-25 17:28:42 +00003316 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003317 int op;
bellard9307c4c2004-04-04 12:57:25 +00003318
aliguori376253e2009-03-05 23:01:23 +00003319 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003320 for(;;) {
3321 op = *pch;
3322 if (op != '&' && op != '|' && op != '^')
3323 break;
3324 next();
aliguori376253e2009-03-05 23:01:23 +00003325 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003326 switch(op) {
3327 default:
3328 case '&':
3329 val &= val2;
3330 break;
3331 case '|':
3332 val |= val2;
3333 break;
3334 case '^':
3335 val ^= val2;
3336 break;
3337 }
3338 }
3339 return val;
3340}
3341
aliguori376253e2009-03-05 23:01:23 +00003342static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003343{
blueswir1c2efc952007-09-25 17:28:42 +00003344 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003345 int op;
bellard9307c4c2004-04-04 12:57:25 +00003346
aliguori376253e2009-03-05 23:01:23 +00003347 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003348 for(;;) {
3349 op = *pch;
3350 if (op != '+' && op != '-')
3351 break;
3352 next();
aliguori376253e2009-03-05 23:01:23 +00003353 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003354 if (op == '+')
3355 val += val2;
3356 else
3357 val -= val2;
3358 }
3359 return val;
3360}
3361
aliguori376253e2009-03-05 23:01:23 +00003362static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003363{
3364 pch = *pp;
3365 if (setjmp(expr_env)) {
3366 *pp = pch;
3367 return -1;
3368 }
blueswir1cd390082008-11-16 13:53:32 +00003369 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003370 pch++;
aliguori376253e2009-03-05 23:01:23 +00003371 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003372 *pp = pch;
3373 return 0;
3374}
3375
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003376static int get_double(Monitor *mon, double *pval, const char **pp)
3377{
3378 const char *p = *pp;
3379 char *tailp;
3380 double d;
3381
3382 d = strtod(p, &tailp);
3383 if (tailp == p) {
3384 monitor_printf(mon, "Number expected\n");
3385 return -1;
3386 }
3387 if (d != d || d - d != 0) {
3388 /* NaN or infinity */
3389 monitor_printf(mon, "Bad number\n");
3390 return -1;
3391 }
3392 *pval = d;
3393 *pp = tailp;
3394 return 0;
3395}
3396
bellard9307c4c2004-04-04 12:57:25 +00003397static int get_str(char *buf, int buf_size, const char **pp)
3398{
3399 const char *p;
3400 char *q;
3401 int c;
3402
bellard81d09122004-07-14 17:21:37 +00003403 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003404 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003405 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003406 p++;
3407 if (*p == '\0') {
3408 fail:
bellard81d09122004-07-14 17:21:37 +00003409 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003410 *pp = p;
3411 return -1;
3412 }
bellard9307c4c2004-04-04 12:57:25 +00003413 if (*p == '\"') {
3414 p++;
3415 while (*p != '\0' && *p != '\"') {
3416 if (*p == '\\') {
3417 p++;
3418 c = *p++;
3419 switch(c) {
3420 case 'n':
3421 c = '\n';
3422 break;
3423 case 'r':
3424 c = '\r';
3425 break;
3426 case '\\':
3427 case '\'':
3428 case '\"':
3429 break;
3430 default:
3431 qemu_printf("unsupported escape code: '\\%c'\n", c);
3432 goto fail;
3433 }
3434 if ((q - buf) < buf_size - 1) {
3435 *q++ = c;
3436 }
3437 } else {
3438 if ((q - buf) < buf_size - 1) {
3439 *q++ = *p;
3440 }
3441 p++;
3442 }
3443 }
3444 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003445 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003446 goto fail;
3447 }
3448 p++;
3449 } else {
blueswir1cd390082008-11-16 13:53:32 +00003450 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003451 if ((q - buf) < buf_size - 1) {
3452 *q++ = *p;
3453 }
3454 p++;
3455 }
bellard9307c4c2004-04-04 12:57:25 +00003456 }
bellard81d09122004-07-14 17:21:37 +00003457 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003458 *pp = p;
3459 return 0;
3460}
3461
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003462/*
3463 * Store the command-name in cmdname, and return a pointer to
3464 * the remaining of the command string.
3465 */
3466static const char *get_command_name(const char *cmdline,
3467 char *cmdname, size_t nlen)
3468{
3469 size_t len;
3470 const char *p, *pstart;
3471
3472 p = cmdline;
3473 while (qemu_isspace(*p))
3474 p++;
3475 if (*p == '\0')
3476 return NULL;
3477 pstart = p;
3478 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3479 p++;
3480 len = p - pstart;
3481 if (len > nlen - 1)
3482 len = nlen - 1;
3483 memcpy(cmdname, pstart, len);
3484 cmdname[len] = '\0';
3485 return p;
3486}
3487
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003488/**
3489 * Read key of 'type' into 'key' and return the current
3490 * 'type' pointer.
3491 */
3492static char *key_get_info(const char *type, char **key)
3493{
3494 size_t len;
3495 char *p, *str;
3496
3497 if (*type == ',')
3498 type++;
3499
3500 p = strchr(type, ':');
3501 if (!p) {
3502 *key = NULL;
3503 return NULL;
3504 }
3505 len = p - type;
3506
Anthony Liguori7267c092011-08-20 22:09:37 -05003507 str = g_malloc(len + 1);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003508 memcpy(str, type, len);
3509 str[len] = '\0';
3510
3511 *key = str;
3512 return ++p;
3513}
3514
bellard9307c4c2004-04-04 12:57:25 +00003515static int default_fmt_format = 'x';
3516static int default_fmt_size = 4;
3517
3518#define MAX_ARGS 16
3519
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003520static int is_valid_option(const char *c, const char *typestr)
3521{
3522 char option[3];
3523
3524 option[0] = '-';
3525 option[1] = *c;
3526 option[2] = '\0';
3527
3528 typestr = strstr(typestr, option);
3529 return (typestr != NULL);
3530}
3531
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003532static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3533 const char *cmdname)
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003534{
3535 const mon_cmd_t *cmd;
3536
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003537 for (cmd = disp_table; cmd->name != NULL; cmd++) {
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003538 if (compare_cmd(cmdname, cmd->name)) {
3539 return cmd;
3540 }
3541 }
3542
3543 return NULL;
3544}
3545
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003546static const mon_cmd_t *monitor_find_command(const char *cmdname)
3547{
3548 return search_dispatch_table(mon_cmds, cmdname);
3549}
3550
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003551static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3552{
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003553 return search_dispatch_table(qmp_cmds, cmdname);
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003554}
3555
Anthony Liguoric227f092009-10-01 16:12:16 -05003556static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003557 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003558 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003559{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003560 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003561 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003562 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003563 char cmdname[256];
3564 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003565 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003566
3567#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003568 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003569#endif
ths3b46e622007-09-17 08:09:54 +00003570
bellard9307c4c2004-04-04 12:57:25 +00003571 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003572 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3573 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003574 return NULL;
ths3b46e622007-09-17 08:09:54 +00003575
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003576 cmd = monitor_find_command(cmdname);
3577 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003578 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003579 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003580 }
bellard9307c4c2004-04-04 12:57:25 +00003581
bellard9307c4c2004-04-04 12:57:25 +00003582 /* parse the parameters */
3583 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003584 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003585 typestr = key_get_info(typestr, &key);
3586 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003587 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003588 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003589 typestr++;
3590 switch(c) {
3591 case 'F':
bellard81d09122004-07-14 17:21:37 +00003592 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003593 case 's':
3594 {
3595 int ret;
ths3b46e622007-09-17 08:09:54 +00003596
blueswir1cd390082008-11-16 13:53:32 +00003597 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003598 p++;
3599 if (*typestr == '?') {
3600 typestr++;
3601 if (*p == '\0') {
3602 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003603 break;
bellard9307c4c2004-04-04 12:57:25 +00003604 }
3605 }
3606 ret = get_str(buf, sizeof(buf), &p);
3607 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003608 switch(c) {
3609 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003610 monitor_printf(mon, "%s: filename expected\n",
3611 cmdname);
bellard81d09122004-07-14 17:21:37 +00003612 break;
3613 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003614 monitor_printf(mon, "%s: block device name expected\n",
3615 cmdname);
bellard81d09122004-07-14 17:21:37 +00003616 break;
3617 default:
aliguori376253e2009-03-05 23:01:23 +00003618 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003619 break;
3620 }
bellard9307c4c2004-04-04 12:57:25 +00003621 goto fail;
3622 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003623 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003624 }
3625 break;
Markus Armbruster361127d2010-02-10 20:24:35 +01003626 case 'O':
3627 {
3628 QemuOptsList *opts_list;
3629 QemuOpts *opts;
3630
3631 opts_list = qemu_find_opts(key);
3632 if (!opts_list || opts_list->desc->name) {
3633 goto bad_type;
3634 }
3635 while (qemu_isspace(*p)) {
3636 p++;
3637 }
3638 if (!*p)
3639 break;
3640 if (get_str(buf, sizeof(buf), &p) < 0) {
3641 goto fail;
3642 }
3643 opts = qemu_opts_parse(opts_list, buf, 1);
3644 if (!opts) {
3645 goto fail;
3646 }
3647 qemu_opts_to_qdict(opts, qdict);
3648 qemu_opts_del(opts);
3649 }
3650 break;
bellard9307c4c2004-04-04 12:57:25 +00003651 case '/':
3652 {
3653 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003654
blueswir1cd390082008-11-16 13:53:32 +00003655 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003656 p++;
3657 if (*p == '/') {
3658 /* format found */
3659 p++;
3660 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003661 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003662 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003663 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003664 count = count * 10 + (*p - '0');
3665 p++;
3666 }
3667 }
3668 size = -1;
3669 format = -1;
3670 for(;;) {
3671 switch(*p) {
3672 case 'o':
3673 case 'd':
3674 case 'u':
3675 case 'x':
3676 case 'i':
3677 case 'c':
3678 format = *p++;
3679 break;
3680 case 'b':
3681 size = 1;
3682 p++;
3683 break;
3684 case 'h':
3685 size = 2;
3686 p++;
3687 break;
3688 case 'w':
3689 size = 4;
3690 p++;
3691 break;
3692 case 'g':
3693 case 'L':
3694 size = 8;
3695 p++;
3696 break;
3697 default:
3698 goto next;
3699 }
3700 }
3701 next:
blueswir1cd390082008-11-16 13:53:32 +00003702 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003703 monitor_printf(mon, "invalid char in format: '%c'\n",
3704 *p);
bellard9307c4c2004-04-04 12:57:25 +00003705 goto fail;
3706 }
bellard9307c4c2004-04-04 12:57:25 +00003707 if (format < 0)
3708 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003709 if (format != 'i') {
3710 /* for 'i', not specifying a size gives -1 as size */
3711 if (size < 0)
3712 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003713 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003714 }
bellard9307c4c2004-04-04 12:57:25 +00003715 default_fmt_format = format;
3716 } else {
3717 count = 1;
3718 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003719 if (format != 'i') {
3720 size = default_fmt_size;
3721 } else {
3722 size = -1;
3723 }
bellard9307c4c2004-04-04 12:57:25 +00003724 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003725 qdict_put(qdict, "count", qint_from_int(count));
3726 qdict_put(qdict, "format", qint_from_int(format));
3727 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003728 }
3729 break;
3730 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003731 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003732 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003733 {
blueswir1c2efc952007-09-25 17:28:42 +00003734 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003735
blueswir1cd390082008-11-16 13:53:32 +00003736 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003737 p++;
bellard34405572004-06-08 00:55:58 +00003738 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003739 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003740 if (*p == '\0') {
3741 typestr++;
3742 break;
3743 }
bellard34405572004-06-08 00:55:58 +00003744 } else {
3745 if (*p == '.') {
3746 p++;
blueswir1cd390082008-11-16 13:53:32 +00003747 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003748 p++;
bellard34405572004-06-08 00:55:58 +00003749 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003750 typestr++;
3751 break;
bellard34405572004-06-08 00:55:58 +00003752 }
3753 }
bellard13224a82006-07-14 22:03:35 +00003754 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003755 }
aliguori376253e2009-03-05 23:01:23 +00003756 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003757 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003758 /* Check if 'i' is greater than 32-bit */
3759 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3760 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3761 monitor_printf(mon, "integer is for 32-bit values\n");
3762 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003763 } else if (c == 'M') {
Luiz Capitulino91162842012-04-26 17:34:30 -03003764 if (val < 0) {
3765 monitor_printf(mon, "enter a positive value\n");
3766 goto fail;
3767 }
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003768 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003769 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003770 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003771 }
3772 break;
Jes Sorensendbc0c672010-10-21 17:15:47 +02003773 case 'o':
3774 {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +01003775 int64_t val;
Jes Sorensendbc0c672010-10-21 17:15:47 +02003776 char *end;
3777
3778 while (qemu_isspace(*p)) {
3779 p++;
3780 }
3781 if (*typestr == '?') {
3782 typestr++;
3783 if (*p == '\0') {
3784 break;
3785 }
3786 }
3787 val = strtosz(p, &end);
3788 if (val < 0) {
3789 monitor_printf(mon, "invalid size\n");
3790 goto fail;
3791 }
3792 qdict_put(qdict, key, qint_from_int(val));
3793 p = end;
3794 }
3795 break;
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003796 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003797 {
3798 double val;
3799
3800 while (qemu_isspace(*p))
3801 p++;
3802 if (*typestr == '?') {
3803 typestr++;
3804 if (*p == '\0') {
3805 break;
3806 }
3807 }
3808 if (get_double(mon, &val, &p) < 0) {
3809 goto fail;
3810 }
Jes Sorensen07de3e62010-10-21 17:15:49 +02003811 if (p[0] && p[1] == 's') {
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003812 switch (*p) {
3813 case 'm':
3814 val /= 1e3; p += 2; break;
3815 case 'u':
3816 val /= 1e6; p += 2; break;
3817 case 'n':
3818 val /= 1e9; p += 2; break;
3819 }
3820 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003821 if (*p && !qemu_isspace(*p)) {
3822 monitor_printf(mon, "Unknown unit suffix\n");
3823 goto fail;
3824 }
3825 qdict_put(qdict, key, qfloat_from_double(val));
3826 }
3827 break;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01003828 case 'b':
3829 {
3830 const char *beg;
3831 int val;
3832
3833 while (qemu_isspace(*p)) {
3834 p++;
3835 }
3836 beg = p;
3837 while (qemu_isgraph(*p)) {
3838 p++;
3839 }
3840 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3841 val = 1;
3842 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3843 val = 0;
3844 } else {
3845 monitor_printf(mon, "Expected 'on' or 'off'\n");
3846 goto fail;
3847 }
3848 qdict_put(qdict, key, qbool_from_int(val));
3849 }
3850 break;
bellard9307c4c2004-04-04 12:57:25 +00003851 case '-':
3852 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003853 const char *tmp = p;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003854 int skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003855 /* option */
ths3b46e622007-09-17 08:09:54 +00003856
bellard9307c4c2004-04-04 12:57:25 +00003857 c = *typestr++;
3858 if (c == '\0')
3859 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003860 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003861 p++;
bellard9307c4c2004-04-04 12:57:25 +00003862 if (*p == '-') {
3863 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003864 if(c != *p) {
3865 if(!is_valid_option(p, typestr)) {
3866
3867 monitor_printf(mon, "%s: unsupported option -%c\n",
3868 cmdname, *p);
3869 goto fail;
3870 } else {
3871 skip_key = 1;
3872 }
bellard9307c4c2004-04-04 12:57:25 +00003873 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003874 if(skip_key) {
3875 p = tmp;
3876 } else {
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003877 /* has option */
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003878 p++;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003879 qdict_put(qdict, key, qbool_from_int(1));
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003880 }
bellard9307c4c2004-04-04 12:57:25 +00003881 }
bellard9307c4c2004-04-04 12:57:25 +00003882 }
3883 break;
3884 default:
3885 bad_type:
aliguori376253e2009-03-05 23:01:23 +00003886 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00003887 goto fail;
3888 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003889 g_free(key);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003890 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003891 }
3892 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003893 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003894 p++;
3895 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003896 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3897 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00003898 goto fail;
3899 }
3900
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003901 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003902
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003903fail:
Anthony Liguori7267c092011-08-20 22:09:37 -05003904 g_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003905 return NULL;
3906}
3907
Markus Armbrusterd6f46832010-02-17 10:52:26 +01003908void monitor_set_error(Monitor *mon, QError *qerror)
3909{
3910 /* report only the first error */
3911 if (!mon->error) {
3912 mon->error = qerror;
3913 } else {
Markus Armbrusterd6f46832010-02-17 10:52:26 +01003914 QDECREF(qerror);
3915 }
3916}
3917
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003918static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3919{
Luiz Capitulino6d441432010-11-22 16:35:09 -02003920 if (ret && !monitor_has_error(mon)) {
3921 /*
3922 * If it returns failure, it must have passed on error.
3923 *
3924 * Action: Report an internal error to the client if in QMP.
3925 */
3926 qerror_report(QERR_UNDEFINED_ERROR);
Luiz Capitulino6d441432010-11-22 16:35:09 -02003927 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003928}
3929
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003930static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003931{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003932 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003933 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003934
3935 qdict = qdict_new();
3936
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03003937 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003938 if (!cmd)
3939 goto out;
3940
Luiz Capitulino4903de02010-09-16 11:01:32 -03003941 if (handler_is_async(cmd)) {
Adam Litke940cc302010-01-25 12:18:44 -06003942 user_async_cmd_handler(mon, cmd, qdict);
Luiz Capitulino9e807212010-09-16 10:58:59 -03003943 } else if (handler_is_qobject(cmd)) {
Luiz Capitulinode79ba62010-09-16 11:06:11 -03003944 QObject *data = NULL;
3945
3946 /* XXX: ignores the error code */
3947 cmd->mhandler.cmd_new(mon, qdict, &data);
3948 assert(!monitor_has_error(mon));
3949 if (data) {
3950 cmd->user_print(mon, data);
3951 qobject_decref(data);
3952 }
Luiz Capitulino13917be2009-10-07 13:41:54 -03003953 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03003954 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003955 }
3956
Luiz Capitulino13917be2009-10-07 13:41:54 -03003957out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003958 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00003959}
3960
bellard81d09122004-07-14 17:21:37 +00003961static void cmd_completion(const char *name, const char *list)
3962{
3963 const char *p, *pstart;
3964 char cmd[128];
3965 int len;
3966
3967 p = list;
3968 for(;;) {
3969 pstart = p;
3970 p = strchr(p, '|');
3971 if (!p)
3972 p = pstart + strlen(pstart);
3973 len = p - pstart;
3974 if (len > sizeof(cmd) - 2)
3975 len = sizeof(cmd) - 2;
3976 memcpy(cmd, pstart, len);
3977 cmd[len] = '\0';
3978 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00003979 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00003980 }
3981 if (*p == '\0')
3982 break;
3983 p++;
3984 }
3985}
3986
3987static void file_completion(const char *input)
3988{
3989 DIR *ffs;
3990 struct dirent *d;
3991 char path[1024];
3992 char file[1024], file_prefix[1024];
3993 int input_path_len;
3994 const char *p;
3995
ths5fafdf22007-09-16 21:08:06 +00003996 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00003997 if (!p) {
3998 input_path_len = 0;
3999 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00004000 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00004001 } else {
4002 input_path_len = p - input + 1;
4003 memcpy(path, input, input_path_len);
4004 if (input_path_len > sizeof(path) - 1)
4005 input_path_len = sizeof(path) - 1;
4006 path[input_path_len] = '\0';
4007 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4008 }
4009#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00004010 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
4011 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00004012#endif
4013 ffs = opendir(path);
4014 if (!ffs)
4015 return;
4016 for(;;) {
4017 struct stat sb;
4018 d = readdir(ffs);
4019 if (!d)
4020 break;
Kusanagi Kouichi46c7fc12010-10-20 18:00:01 +09004021
4022 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4023 continue;
4024 }
4025
bellard81d09122004-07-14 17:21:37 +00004026 if (strstart(d->d_name, file_prefix, NULL)) {
4027 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00004028 if (input_path_len < sizeof(file))
4029 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4030 d->d_name);
bellard81d09122004-07-14 17:21:37 +00004031 /* stat the file to find out if it's a directory.
4032 * In that case add a slash to speed up typing long paths
4033 */
Markus Armbrusterc951d9a2011-11-16 15:43:47 +01004034 if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) {
blueswir1363a37d2008-08-21 17:58:08 +00004035 pstrcat(file, sizeof(file), "/");
Markus Armbrusterc951d9a2011-11-16 15:43:47 +01004036 }
aliguori731b0362009-03-05 23:01:42 +00004037 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00004038 }
4039 }
4040 closedir(ffs);
4041}
4042
aliguori51de9762009-03-05 23:00:43 +00004043static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00004044{
aliguori51de9762009-03-05 23:00:43 +00004045 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00004046 const char *input = opaque;
4047
4048 if (input[0] == '\0' ||
4049 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00004050 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00004051 }
4052}
4053
4054/* NOTE: this parser is an approximate form of the real command parser */
4055static void parse_cmdline(const char *cmdline,
4056 int *pnb_args, char **args)
4057{
4058 const char *p;
4059 int nb_args, ret;
4060 char buf[1024];
4061
4062 p = cmdline;
4063 nb_args = 0;
4064 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00004065 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00004066 p++;
4067 if (*p == '\0')
4068 break;
4069 if (nb_args >= MAX_ARGS)
4070 break;
4071 ret = get_str(buf, sizeof(buf), &p);
Anthony Liguori7267c092011-08-20 22:09:37 -05004072 args[nb_args] = g_strdup(buf);
bellard81d09122004-07-14 17:21:37 +00004073 nb_args++;
4074 if (ret < 0)
4075 break;
4076 }
4077 *pnb_args = nb_args;
4078}
4079
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004080static const char *next_arg_type(const char *typestr)
4081{
4082 const char *p = strchr(typestr, ':');
4083 return (p != NULL ? ++p : typestr);
4084}
4085
aliguori4c36ba32009-03-05 23:01:37 +00004086static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00004087{
4088 const char *cmdname;
4089 char *args[MAX_ARGS];
4090 int nb_args, i, len;
4091 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05004092 const mon_cmd_t *cmd;
bellard81d09122004-07-14 17:21:37 +00004093
4094 parse_cmdline(cmdline, &nb_args, args);
4095#ifdef DEBUG_COMPLETION
4096 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00004097 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00004098 }
4099#endif
4100
4101 /* if the line ends with a space, it means we want to complete the
4102 next arg */
4103 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00004104 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
Jan Kiszka03a63482010-06-16 00:38:33 +02004105 if (nb_args >= MAX_ARGS) {
4106 goto cleanup;
4107 }
Anthony Liguori7267c092011-08-20 22:09:37 -05004108 args[nb_args++] = g_strdup("");
bellard81d09122004-07-14 17:21:37 +00004109 }
4110 if (nb_args <= 1) {
4111 /* command completion */
4112 if (nb_args == 0)
4113 cmdname = "";
4114 else
4115 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00004116 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00004117 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00004118 cmd_completion(cmdname, cmd->name);
4119 }
4120 } else {
4121 /* find the command */
Jan Kiszka03a63482010-06-16 00:38:33 +02004122 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4123 if (compare_cmd(args[0], cmd->name)) {
4124 break;
4125 }
bellard81d09122004-07-14 17:21:37 +00004126 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004127 if (!cmd->name) {
4128 goto cleanup;
4129 }
4130
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004131 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00004132 for(i = 0; i < nb_args - 2; i++) {
4133 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004134 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004135 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004136 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004137 }
4138 }
4139 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00004140 if (*ptype == '-' && ptype[1] != '\0') {
Jan Kiszka3b6dbf22010-06-16 00:38:34 +02004141 ptype = next_arg_type(ptype);
Blue Swirl2a1704a2009-08-23 20:10:28 +00004142 }
bellard81d09122004-07-14 17:21:37 +00004143 switch(*ptype) {
4144 case 'F':
4145 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00004146 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004147 file_completion(str);
4148 break;
4149 case 'B':
4150 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00004151 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004152 bdrv_iterate(block_completion_it, (void *)str);
4153 break;
bellard7fe48482004-10-09 18:08:01 +00004154 case 's':
4155 /* XXX: more generic ? */
4156 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00004157 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00004158 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4159 cmd_completion(str, cmd->name);
4160 }
bellard64866c32006-05-07 18:03:31 +00004161 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00004162 char *sep = strrchr(str, '-');
4163 if (sep)
4164 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00004165 readline_set_completion_index(cur_mon->rs, strlen(str));
Amos Kong1048c882012-08-31 10:56:25 +08004166 for (i = 0; i < Q_KEY_CODE_MAX; i++) {
4167 cmd_completion(str, QKeyCode_lookup[i]);
bellard64866c32006-05-07 18:03:31 +00004168 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02004169 } else if (!strcmp(cmd->name, "help|?")) {
4170 readline_set_completion_index(cur_mon->rs, strlen(str));
4171 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4172 cmd_completion(str, cmd->name);
4173 }
bellard7fe48482004-10-09 18:08:01 +00004174 }
4175 break;
bellard81d09122004-07-14 17:21:37 +00004176 default:
4177 break;
4178 }
4179 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004180
4181cleanup:
4182 for (i = 0; i < nb_args; i++) {
Anthony Liguori7267c092011-08-20 22:09:37 -05004183 g_free(args[i]);
Jan Kiszka03a63482010-06-16 00:38:33 +02004184 }
bellard81d09122004-07-14 17:21:37 +00004185}
4186
aliguori731b0362009-03-05 23:01:42 +00004187static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004188{
aliguori731b0362009-03-05 23:01:42 +00004189 Monitor *mon = opaque;
4190
Jan Kiszkac62313b2009-12-04 14:05:29 +01004191 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00004192}
4193
Luiz Capitulino09069b12010-02-04 18:10:06 -02004194static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4195{
4196 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4197 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4198}
4199
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004200/*
Luiz Capitulino4af91932010-06-22 11:44:05 -03004201 * Argument validation rules:
4202 *
4203 * 1. The argument must exist in cmd_args qdict
4204 * 2. The argument type must be the expected one
4205 *
4206 * Special case: If the argument doesn't exist in cmd_args and
4207 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4208 * checking is skipped for it.
4209 */
4210static int check_client_args_type(const QDict *client_args,
4211 const QDict *cmd_args, int flags)
4212{
4213 const QDictEntry *ent;
4214
4215 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4216 QObject *obj;
4217 QString *arg_type;
4218 const QObject *client_arg = qdict_entry_value(ent);
4219 const char *client_arg_name = qdict_entry_key(ent);
4220
4221 obj = qdict_get(cmd_args, client_arg_name);
4222 if (!obj) {
4223 if (flags & QMP_ACCEPT_UNKNOWNS) {
4224 /* handler accepts unknowns */
4225 continue;
4226 }
4227 /* client arg doesn't exist */
4228 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4229 return -1;
4230 }
4231
4232 arg_type = qobject_to_qstring(obj);
4233 assert(arg_type != NULL);
4234
4235 /* check if argument's type is correct */
4236 switch (qstring_get_str(arg_type)[0]) {
4237 case 'F':
4238 case 'B':
4239 case 's':
4240 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4241 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4242 "string");
4243 return -1;
4244 }
4245 break;
4246 case 'i':
4247 case 'l':
4248 case 'M':
Jes Sorensendbc0c672010-10-21 17:15:47 +02004249 case 'o':
Luiz Capitulino4af91932010-06-22 11:44:05 -03004250 if (qobject_type(client_arg) != QTYPE_QINT) {
4251 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4252 "int");
4253 return -1;
4254 }
4255 break;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004256 case 'T':
4257 if (qobject_type(client_arg) != QTYPE_QINT &&
4258 qobject_type(client_arg) != QTYPE_QFLOAT) {
4259 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4260 "number");
4261 return -1;
4262 }
4263 break;
4264 case 'b':
4265 case '-':
4266 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4267 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4268 "bool");
4269 return -1;
4270 }
4271 break;
4272 case 'O':
4273 assert(flags & QMP_ACCEPT_UNKNOWNS);
4274 break;
Paolo Bonzinib9f89782012-03-22 12:51:11 +01004275 case 'q':
4276 /* Any QObject can be passed. */
4277 break;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004278 case '/':
4279 case '.':
4280 /*
4281 * These types are not supported by QMP and thus are not
4282 * handled here. Fall through.
4283 */
4284 default:
4285 abort();
4286 }
4287 }
4288
4289 return 0;
4290}
4291
4292/*
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004293 * - Check if the client has passed all mandatory args
4294 * - Set special flags for argument validation
4295 */
4296static int check_mandatory_args(const QDict *cmd_args,
4297 const QDict *client_args, int *flags)
4298{
4299 const QDictEntry *ent;
4300
4301 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4302 const char *cmd_arg_name = qdict_entry_key(ent);
4303 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4304 assert(type != NULL);
4305
4306 if (qstring_get_str(type)[0] == 'O') {
4307 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4308 *flags |= QMP_ACCEPT_UNKNOWNS;
4309 } else if (qstring_get_str(type)[0] != '-' &&
4310 qstring_get_str(type)[1] != '?' &&
4311 !qdict_haskey(client_args, cmd_arg_name)) {
4312 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4313 return -1;
4314 }
4315 }
4316
4317 return 0;
4318}
4319
4320static QDict *qdict_from_args_type(const char *args_type)
4321{
4322 int i;
4323 QDict *qdict;
4324 QString *key, *type, *cur_qs;
4325
4326 assert(args_type != NULL);
4327
4328 qdict = qdict_new();
4329
4330 if (args_type == NULL || args_type[0] == '\0') {
4331 /* no args, empty qdict */
4332 goto out;
4333 }
4334
4335 key = qstring_new();
4336 type = qstring_new();
4337
4338 cur_qs = key;
4339
4340 for (i = 0;; i++) {
4341 switch (args_type[i]) {
4342 case ',':
4343 case '\0':
4344 qdict_put(qdict, qstring_get_str(key), type);
4345 QDECREF(key);
4346 if (args_type[i] == '\0') {
4347 goto out;
4348 }
4349 type = qstring_new(); /* qdict has ref */
4350 cur_qs = key = qstring_new();
4351 break;
4352 case ':':
4353 cur_qs = type;
4354 break;
4355 default:
4356 qstring_append_chr(cur_qs, args_type[i]);
4357 break;
4358 }
4359 }
4360
4361out:
4362 return qdict;
4363}
4364
4365/*
4366 * Client argument checking rules:
4367 *
4368 * 1. Client must provide all mandatory arguments
Luiz Capitulino4af91932010-06-22 11:44:05 -03004369 * 2. Each argument provided by the client must be expected
4370 * 3. Each argument provided by the client must have the type expected
4371 * by the command
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004372 */
4373static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4374{
4375 int flags, err;
4376 QDict *cmd_args;
4377
4378 cmd_args = qdict_from_args_type(cmd->args_type);
4379
4380 flags = 0;
4381 err = check_mandatory_args(cmd_args, client_args, &flags);
4382 if (err) {
4383 goto out;
4384 }
4385
Luiz Capitulino4af91932010-06-22 11:44:05 -03004386 err = check_client_args_type(client_args, cmd_args, flags);
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004387
4388out:
4389 QDECREF(cmd_args);
4390 return err;
4391}
4392
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004393/*
4394 * Input object checking rules
4395 *
4396 * 1. Input object must be a dict
4397 * 2. The "execute" key must exist
4398 * 3. The "execute" key must be a string
4399 * 4. If the "arguments" key exists, it must be a dict
4400 * 5. If the "id" key exists, it can be anything (ie. json-value)
4401 * 6. Any argument not listed above is considered invalid
4402 */
4403static QDict *qmp_check_input_obj(QObject *input_obj)
4404{
4405 const QDictEntry *ent;
4406 int has_exec_key = 0;
4407 QDict *input_dict;
4408
4409 if (qobject_type(input_obj) != QTYPE_QDICT) {
4410 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4411 return NULL;
4412 }
4413
4414 input_dict = qobject_to_qdict(input_obj);
4415
4416 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4417 const char *arg_name = qdict_entry_key(ent);
4418 const QObject *arg_obj = qdict_entry_value(ent);
4419
4420 if (!strcmp(arg_name, "execute")) {
4421 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4422 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4423 "string");
4424 return NULL;
4425 }
4426 has_exec_key = 1;
4427 } else if (!strcmp(arg_name, "arguments")) {
4428 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4429 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4430 "object");
4431 return NULL;
4432 }
4433 } else if (!strcmp(arg_name, "id")) {
4434 /* FIXME: check duplicated IDs for async commands */
4435 } else {
4436 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4437 return NULL;
4438 }
4439 }
4440
4441 if (!has_exec_key) {
4442 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4443 return NULL;
4444 }
4445
4446 return input_dict;
4447}
4448
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004449static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4450 const QDict *params)
4451{
4452 int ret;
4453 QObject *data = NULL;
4454
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004455 ret = cmd->mhandler.cmd_new(mon, params, &data);
4456 handler_audit(mon, cmd, ret);
4457 monitor_protocol_emitter(mon, data);
4458 qobject_decref(data);
4459}
4460
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004461static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4462{
4463 int err;
4464 QObject *obj;
4465 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004466 const mon_cmd_t *cmd;
Luiz Capitulino40e5a012011-10-21 16:15:31 -02004467 const char *cmd_name;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004468 Monitor *mon = cur_mon;
4469
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004470 args = input = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004471
4472 obj = json_parser_parse(tokens, NULL);
4473 if (!obj) {
4474 // FIXME: should be triggered in json_parser_parse()
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004475 qerror_report(QERR_JSON_PARSING);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004476 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004477 }
4478
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004479 input = qmp_check_input_obj(obj);
4480 if (!input) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004481 qobject_decref(obj);
4482 goto err_out;
4483 }
4484
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004485 mon->mc->id = qdict_get(input, "id");
4486 qobject_incref(mon->mc->id);
4487
Luiz Capitulino0bbab462010-05-31 17:32:50 -03004488 cmd_name = qdict_get_str(input, "execute");
Stefan Hajnoczi89bd8202011-09-23 08:23:06 +01004489 trace_handle_qmp_command(mon, cmd_name);
Luiz Capitulino09069b12010-02-04 18:10:06 -02004490 if (invalid_qmp_mode(mon, cmd_name)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004491 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004492 goto err_out;
Luiz Capitulino09069b12010-02-04 18:10:06 -02004493 }
4494
Anthony Liguorie3193602011-09-02 12:34:47 -05004495 cmd = qmp_find_cmd(cmd_name);
Luiz Capitulinod1249ea2010-09-13 14:44:27 -03004496 if (!cmd) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004497 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004498 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004499 }
4500
4501 obj = qdict_get(input, "arguments");
4502 if (!obj) {
4503 args = qdict_new();
4504 } else {
4505 args = qobject_to_qdict(obj);
4506 QINCREF(args);
4507 }
4508
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004509 err = qmp_check_client_args(cmd, args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004510 if (err < 0) {
4511 goto err_out;
4512 }
4513
Luiz Capitulino40e5a012011-10-21 16:15:31 -02004514 if (handler_is_async(cmd)) {
Luiz Capitulino5af7bba2010-06-22 19:10:46 -03004515 err = qmp_async_cmd_handler(mon, cmd, args);
4516 if (err) {
4517 /* emit the error response */
4518 goto err_out;
4519 }
Adam Litke940cc302010-01-25 12:18:44 -06004520 } else {
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004521 qmp_call_cmd(mon, cmd, args);
Adam Litke940cc302010-01-25 12:18:44 -06004522 }
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004523
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004524 goto out;
4525
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004526err_out:
4527 monitor_protocol_emitter(mon, NULL);
4528out:
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004529 QDECREF(input);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004530 QDECREF(args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004531}
4532
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004533/**
4534 * monitor_control_read(): Read and handle QMP input
4535 */
4536static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4537{
4538 Monitor *old_mon = cur_mon;
4539
4540 cur_mon = opaque;
4541
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004542 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004543
4544 cur_mon = old_mon;
4545}
4546
aliguori731b0362009-03-05 23:01:42 +00004547static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004548{
aliguori731b0362009-03-05 23:01:42 +00004549 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004550 int i;
aliguori376253e2009-03-05 23:01:23 +00004551
aliguori731b0362009-03-05 23:01:42 +00004552 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004553
aliguoricde76ee2009-03-05 23:01:51 +00004554 if (cur_mon->rs) {
4555 for (i = 0; i < size; i++)
4556 readline_handle_byte(cur_mon->rs, buf[i]);
4557 } else {
4558 if (size == 0 || buf[size - 1] != 0)
4559 monitor_printf(cur_mon, "corrupted command\n");
4560 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004561 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00004562 }
aliguori731b0362009-03-05 23:01:42 +00004563
4564 cur_mon = old_mon;
4565}
aliguorid8f44602008-10-06 13:52:44 +00004566
aliguori376253e2009-03-05 23:01:23 +00004567static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004568{
aliguori731b0362009-03-05 23:01:42 +00004569 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004570 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00004571 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00004572}
4573
aliguoricde76ee2009-03-05 23:01:51 +00004574int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004575{
aliguoricde76ee2009-03-05 23:01:51 +00004576 if (!mon->rs)
4577 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00004578 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00004579 return 0;
aliguorid8f44602008-10-06 13:52:44 +00004580}
4581
aliguori376253e2009-03-05 23:01:23 +00004582void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004583{
aliguoricde76ee2009-03-05 23:01:51 +00004584 if (!mon->rs)
4585 return;
aliguori731b0362009-03-05 23:01:42 +00004586 if (--mon->suspend_cnt == 0)
4587 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00004588}
4589
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004590static QObject *get_qmp_greeting(void)
4591{
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03004592 QObject *ver = NULL;
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004593
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03004594 qmp_marshal_input_query_version(NULL, NULL, &ver);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004595 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4596}
4597
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004598/**
4599 * monitor_control_event(): Print QMP gretting
4600 */
4601static void monitor_control_event(void *opaque, int event)
4602{
Luiz Capitulino47116d12010-02-08 17:01:30 -02004603 QObject *data;
4604 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004605
Luiz Capitulino47116d12010-02-08 17:01:30 -02004606 switch (event) {
4607 case CHR_EVENT_OPENED:
Luiz Capitulino4a7e1192010-02-04 18:10:05 -02004608 mon->mc->command_mode = 0;
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004609 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004610 monitor_json_emitter(mon, data);
4611 qobject_decref(data);
Corey Bryantefb87c12012-08-14 16:43:48 -04004612 mon_refcount++;
Luiz Capitulino47116d12010-02-08 17:01:30 -02004613 break;
4614 case CHR_EVENT_CLOSED:
4615 json_message_parser_destroy(&mon->mc->parser);
Anthony Liguori58617a72012-08-23 08:03:21 -05004616 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Corey Bryantefb87c12012-08-14 16:43:48 -04004617 mon_refcount--;
4618 monitor_fdsets_cleanup();
Luiz Capitulino47116d12010-02-08 17:01:30 -02004619 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004620 }
4621}
4622
aliguori731b0362009-03-05 23:01:42 +00004623static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00004624{
aliguori376253e2009-03-05 23:01:23 +00004625 Monitor *mon = opaque;
4626
aliguori2724b182009-03-05 23:01:47 +00004627 switch (event) {
4628 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004629 mon->mux_out = 0;
4630 if (mon->reset_seen) {
4631 readline_restart(mon->rs);
4632 monitor_resume(mon);
4633 monitor_flush(mon);
4634 } else {
4635 mon->suspend_cnt = 0;
4636 }
aliguori2724b182009-03-05 23:01:47 +00004637 break;
ths86e94de2007-01-05 22:01:59 +00004638
aliguori2724b182009-03-05 23:01:47 +00004639 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004640 if (mon->reset_seen) {
4641 if (mon->suspend_cnt == 0) {
4642 monitor_printf(mon, "\n");
4643 }
4644 monitor_flush(mon);
4645 monitor_suspend(mon);
4646 } else {
4647 mon->suspend_cnt++;
4648 }
4649 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00004650 break;
4651
Amit Shahb6b8df52009-10-07 18:31:16 +05304652 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00004653 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4654 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004655 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00004656 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004657 }
4658 mon->reset_seen = 1;
Corey Bryantefb87c12012-08-14 16:43:48 -04004659 mon_refcount++;
4660 break;
4661
4662 case CHR_EVENT_CLOSED:
4663 mon_refcount--;
4664 monitor_fdsets_cleanup();
aliguori2724b182009-03-05 23:01:47 +00004665 break;
4666 }
ths86e94de2007-01-05 22:01:59 +00004667}
4668
Wayne Xia816f8922011-10-12 11:32:41 +08004669static int
4670compare_mon_cmd(const void *a, const void *b)
4671{
4672 return strcmp(((const mon_cmd_t *)a)->name,
4673 ((const mon_cmd_t *)b)->name);
4674}
4675
4676static void sortcmdlist(void)
4677{
4678 int array_num;
4679 int elem_size = sizeof(mon_cmd_t);
4680
4681 array_num = sizeof(mon_cmds)/elem_size-1;
4682 qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd);
4683
4684 array_num = sizeof(info_cmds)/elem_size-1;
4685 qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd);
4686}
4687
aliguori76655d62009-03-06 20:27:37 +00004688
4689/*
4690 * Local variables:
4691 * c-indent-level: 4
4692 * c-basic-offset: 4
4693 * tab-width: 8
4694 * End:
4695 */
4696
aliguori731b0362009-03-05 23:01:42 +00004697void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004698{
aliguori731b0362009-03-05 23:01:42 +00004699 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00004700 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00004701
4702 if (is_first_init) {
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +01004703 monitor_protocol_event_init();
ths20d8a3e2007-02-18 17:04:49 +00004704 is_first_init = 0;
4705 }
aliguori87127162009-03-05 23:01:29 +00004706
Anthony Liguori7267c092011-08-20 22:09:37 -05004707 mon = g_malloc0(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00004708
aliguori87127162009-03-05 23:01:29 +00004709 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00004710 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00004711 if (flags & MONITOR_USE_READLINE) {
4712 mon->rs = readline_init(mon, monitor_find_completion);
4713 monitor_read_command(mon, 0);
4714 }
aliguori87127162009-03-05 23:01:29 +00004715
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004716 if (monitor_ctrl_mode(mon)) {
Anthony Liguori7267c092011-08-20 22:09:37 -05004717 mon->mc = g_malloc0(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004718 /* Control mode requires special handlers */
4719 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4720 monitor_control_event, mon);
Anthony Liguori15f31512011-08-15 11:17:35 -05004721 qemu_chr_fe_set_echo(chr, true);
Anthony Liguori26efaca2012-08-23 13:49:02 -05004722
4723 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004724 } else {
4725 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4726 monitor_event, mon);
4727 }
aliguori87127162009-03-05 23:01:29 +00004728
Blue Swirl72cf2d42009-09-12 07:36:22 +00004729 QLIST_INSERT_HEAD(&mon_list, mon, entry);
Markus Armbruster8631b602010-02-18 11:41:55 +01004730 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4731 default_mon = mon;
Wayne Xia816f8922011-10-12 11:32:41 +08004732
4733 sortcmdlist();
bellard7e2515e2004-08-01 21:52:19 +00004734}
4735
aliguori376253e2009-03-05 23:01:23 +00004736static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004737{
aliguoribb5fc202009-03-05 23:01:15 +00004738 BlockDriverState *bs = opaque;
4739 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00004740
aliguoribb5fc202009-03-05 23:01:15 +00004741 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00004742 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00004743 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00004744 }
aliguori731b0362009-03-05 23:01:42 +00004745 if (mon->password_completion_cb)
4746 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00004747
aliguori731b0362009-03-05 23:01:42 +00004748 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00004749}
aliguoric0f4ce72009-03-05 23:01:01 +00004750
Anthony Liguori7060b472011-09-02 12:34:50 -05004751ReadLineState *monitor_get_rs(Monitor *mon)
4752{
4753 return mon->rs;
4754}
4755
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004756int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4757 BlockDriverCompletionFunc *completion_cb,
4758 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00004759{
aliguoricde76ee2009-03-05 23:01:51 +00004760 int err;
4761
aliguoribb5fc202009-03-05 23:01:15 +00004762 if (!bdrv_key_required(bs)) {
4763 if (completion_cb)
4764 completion_cb(opaque, 0);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004765 return 0;
aliguoribb5fc202009-03-05 23:01:15 +00004766 }
aliguoric0f4ce72009-03-05 23:01:01 +00004767
Luiz Capitulino94171e12009-12-07 21:37:00 +01004768 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino903a8812011-12-13 17:18:30 -02004769 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs),
4770 bdrv_get_encrypted_filename(bs));
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004771 return -1;
Luiz Capitulino94171e12009-12-07 21:37:00 +01004772 }
4773
aliguori376253e2009-03-05 23:01:23 +00004774 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4775 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00004776
aliguori731b0362009-03-05 23:01:42 +00004777 mon->password_completion_cb = completion_cb;
4778 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00004779
aliguoricde76ee2009-03-05 23:01:51 +00004780 err = monitor_read_password(mon, bdrv_password_cb, bs);
4781
4782 if (err && completion_cb)
4783 completion_cb(opaque, err);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004784
4785 return err;
aliguoric0f4ce72009-03-05 23:01:01 +00004786}
Luiz Capitulinoe42e8182011-11-22 17:58:31 -02004787
4788int monitor_read_block_device_key(Monitor *mon, const char *device,
4789 BlockDriverCompletionFunc *completion_cb,
4790 void *opaque)
4791{
4792 BlockDriverState *bs;
4793
4794 bs = bdrv_find(device);
4795 if (!bs) {
4796 monitor_printf(mon, "Device not found %s\n", device);
4797 return -1;
4798 }
4799
4800 return monitor_read_bdrv_key_start(mon, bs, completion_cb, opaque);
4801}