blob: 0c4f86f639a58160a2f408e2da27ad23f0bcae29 [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",
453 [QEVENT_DEVICE_TRAY_MOVED] = "DEVICE_TRAY_MOVED",
454 [QEVENT_SUSPEND] = "SUSPEND",
Luiz Capitulino25df49f2012-08-08 17:03:01 -0300455 [QEVENT_SUSPEND_DISK] = "SUSPEND_DISK",
Daniel P. Berrange48608532012-05-21 17:59:51 +0100456 [QEVENT_WAKEUP] = "WAKEUP",
Daniel P. Berrange973603a2012-06-14 18:12:56 +0100457 [QEVENT_BALLOON_CHANGE] = "BALLOON_CHANGE",
Daniel P. Berrange48608532012-05-21 17:59:51 +0100458};
459QEMU_BUILD_BUG_ON(ARRAY_SIZE(monitor_event_names) != QEVENT_MAX)
460
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100461MonitorEventState monitor_event_state[QEVENT_MAX];
462QemuMutex monitor_event_state_lock;
463
464/*
465 * Emits the event to every monitor instance
466 */
467static void
468monitor_protocol_event_emit(MonitorEvent event,
469 QObject *data)
470{
471 Monitor *mon;
472
473 trace_monitor_protocol_event_emit(event, data);
474 QLIST_FOREACH(mon, &mon_list, entry) {
475 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
476 monitor_json_emitter(mon, data);
477 }
478 }
479}
480
481
482/*
483 * Queue a new event for emission to Monitor instances,
484 * applying any rate limiting if required.
485 */
486static void
487monitor_protocol_event_queue(MonitorEvent event,
488 QObject *data)
489{
490 MonitorEventState *evstate;
491 int64_t now = qemu_get_clock_ns(rt_clock);
492 assert(event < QEVENT_MAX);
493
494 qemu_mutex_lock(&monitor_event_state_lock);
495 evstate = &(monitor_event_state[event]);
496 trace_monitor_protocol_event_queue(event,
497 data,
498 evstate->rate,
499 evstate->last,
500 now);
501
502 /* Rate limit of 0 indicates no throttling */
503 if (!evstate->rate) {
504 monitor_protocol_event_emit(event, data);
505 evstate->last = now;
506 } else {
507 int64_t delta = now - evstate->last;
508 if (evstate->data ||
509 delta < evstate->rate) {
510 /* If there's an existing event pending, replace
511 * it with the new event, otherwise schedule a
512 * timer for delayed emission
513 */
514 if (evstate->data) {
515 qobject_decref(evstate->data);
516 } else {
517 int64_t then = evstate->last + evstate->rate;
518 qemu_mod_timer_ns(evstate->timer, then);
519 }
520 evstate->data = data;
521 qobject_incref(evstate->data);
522 } else {
523 monitor_protocol_event_emit(event, data);
524 evstate->last = now;
525 }
526 }
527 qemu_mutex_unlock(&monitor_event_state_lock);
528}
529
530
531/*
532 * The callback invoked by QemuTimer when a delayed
533 * event is ready to be emitted
534 */
535static void monitor_protocol_event_handler(void *opaque)
536{
537 MonitorEventState *evstate = opaque;
538 int64_t now = qemu_get_clock_ns(rt_clock);
539
540 qemu_mutex_lock(&monitor_event_state_lock);
541
542 trace_monitor_protocol_event_handler(evstate->event,
543 evstate->data,
544 evstate->last,
545 now);
546 if (evstate->data) {
547 monitor_protocol_event_emit(evstate->event, evstate->data);
548 qobject_decref(evstate->data);
549 evstate->data = NULL;
550 }
551 evstate->last = now;
552 qemu_mutex_unlock(&monitor_event_state_lock);
553}
554
555
556/*
557 * @event: the event ID to be limited
558 * @rate: the rate limit in milliseconds
559 *
560 * Sets a rate limit on a particular event, so no
561 * more than 1 event will be emitted within @rate
562 * milliseconds
563 */
564static void
565monitor_protocol_event_throttle(MonitorEvent event,
566 int64_t rate)
567{
568 MonitorEventState *evstate;
569 assert(event < QEVENT_MAX);
570
571 evstate = &(monitor_event_state[event]);
572
573 trace_monitor_protocol_event_throttle(event, rate);
574 evstate->event = event;
575 evstate->rate = rate * SCALE_MS;
576 evstate->timer = qemu_new_timer(rt_clock,
577 SCALE_MS,
578 monitor_protocol_event_handler,
579 evstate);
580 evstate->last = 0;
581 evstate->data = NULL;
582}
583
584
585/* Global, one-time initializer to configure the rate limiting
586 * and initialize state */
587static void monitor_protocol_event_init(void)
588{
589 qemu_mutex_init(&monitor_event_state_lock);
590 /* Limit RTC & BALLOON events to 1 per second */
591 monitor_protocol_event_throttle(QEVENT_RTC_CHANGE, 1000);
592 monitor_protocol_event_throttle(QEVENT_BALLOON_CHANGE, 1000);
593 monitor_protocol_event_throttle(QEVENT_WATCHDOG, 1000);
594}
595
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200596/**
597 * monitor_protocol_event(): Generate a Monitor event
598 *
599 * Event-specific data can be emitted through the (optional) 'data' parameter.
600 */
601void monitor_protocol_event(MonitorEvent event, QObject *data)
602{
603 QDict *qmp;
604 const char *event_name;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200605
Blue Swirl242cd002009-12-04 18:05:45 +0000606 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200607
Daniel P. Berrange48608532012-05-21 17:59:51 +0100608 event_name = monitor_event_names[event];
609 assert(event_name != NULL);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200610
611 qmp = qdict_new();
612 timestamp_put(qmp);
613 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200614 if (data) {
615 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200616 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200617 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200618
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +0100619 trace_monitor_protocol_event(event, event_name, qmp);
620 monitor_protocol_event_queue(event, QOBJECT(qmp));
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200621 QDECREF(qmp);
622}
623
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200624static int do_qmp_capabilities(Monitor *mon, const QDict *params,
625 QObject **ret_data)
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200626{
627 /* Will setup QMP capabilities in the future */
628 if (monitor_ctrl_mode(mon)) {
629 mon->mc->command_mode = 1;
630 }
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200631
632 return 0;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200633}
634
Luiz Capitulino0268d972010-10-22 10:08:02 -0200635static void handle_user_command(Monitor *mon, const char *cmdline);
636
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200637char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index,
638 int64_t cpu_index, Error **errp)
Luiz Capitulino0268d972010-10-22 10:08:02 -0200639{
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200640 char *output = NULL;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200641 Monitor *old_mon, hmp;
642 CharDriverState mchar;
643
644 memset(&hmp, 0, sizeof(hmp));
645 qemu_chr_init_mem(&mchar);
646 hmp.chr = &mchar;
647
648 old_mon = cur_mon;
649 cur_mon = &hmp;
650
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200651 if (has_cpu_index) {
652 int ret = monitor_set_cpu(cpu_index);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200653 if (ret < 0) {
654 cur_mon = old_mon;
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200655 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
656 "a CPU number");
Luiz Capitulino0268d972010-10-22 10:08:02 -0200657 goto out;
658 }
659 }
660
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200661 handle_user_command(&hmp, command_line);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200662 cur_mon = old_mon;
663
664 if (qemu_chr_mem_osize(hmp.chr) > 0) {
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200665 QString *str = qemu_chr_mem_to_qs(hmp.chr);
666 output = g_strdup(qstring_get_str(str));
667 QDECREF(str);
668 } else {
669 output = g_strdup("");
Luiz Capitulino0268d972010-10-22 10:08:02 -0200670 }
671
672out:
673 qemu_chr_close_mem(hmp.chr);
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200674 return output;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200675}
676
bellard9dc39cb2004-03-14 21:38:27 +0000677static int compare_cmd(const char *name, const char *list)
678{
679 const char *p, *pstart;
680 int len;
681 len = strlen(name);
682 p = list;
683 for(;;) {
684 pstart = p;
685 p = strchr(p, '|');
686 if (!p)
687 p = pstart + strlen(pstart);
688 if ((p - pstart) == len && !memcmp(pstart, name, len))
689 return 1;
690 if (*p == '\0')
691 break;
692 p++;
693 }
694 return 0;
695}
696
Anthony Liguoric227f092009-10-01 16:12:16 -0500697static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000698 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000699{
Anthony Liguoric227f092009-10-01 16:12:16 -0500700 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000701
702 for(cmd = cmds; cmd->name != NULL; cmd++) {
703 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000704 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
705 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000706 }
707}
708
aliguori376253e2009-03-05 23:01:23 +0000709static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000710{
711 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000712 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000713 } else {
aliguori376253e2009-03-05 23:01:23 +0000714 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000715 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000716 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000717 monitor_printf(mon, "Log items (comma separated):\n");
718 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000719 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000720 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000721 }
722 }
bellard9dc39cb2004-03-14 21:38:27 +0000723 }
724}
725
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300726static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300727{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300728 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300729}
730
Lluísfc764102011-08-31 20:31:18 +0200731static void do_trace_event_set_state(Monitor *mon, const QDict *qdict)
Prerna Saxena22890ab2010-06-24 17:04:53 +0530732{
733 const char *tp_name = qdict_get_str(qdict, "name");
734 bool new_state = qdict_get_bool(qdict, "option");
Lluísfc764102011-08-31 20:31:18 +0200735 int ret = trace_event_set_state(tp_name, new_state);
Blue Swirlf871d682010-10-13 19:14:29 +0000736
737 if (!ret) {
738 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
739 }
Prerna Saxena22890ab2010-06-24 17:04:53 +0530740}
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100741
Michael Rothc45a8162011-10-02 08:44:37 -0500742#ifdef CONFIG_TRACE_SIMPLE
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100743static void do_trace_file(Monitor *mon, const QDict *qdict)
744{
745 const char *op = qdict_get_try_str(qdict, "op");
746 const char *arg = qdict_get_try_str(qdict, "arg");
747
748 if (!op) {
749 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
750 } else if (!strcmp(op, "on")) {
751 st_set_trace_file_enabled(true);
752 } else if (!strcmp(op, "off")) {
753 st_set_trace_file_enabled(false);
754 } else if (!strcmp(op, "flush")) {
755 st_flush_trace_buffer();
756 } else if (!strcmp(op, "set")) {
757 if (arg) {
758 st_set_trace_file(arg);
759 }
760 } else {
761 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
762 help_cmd(mon, "trace-file");
763 }
764}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530765#endif
766
Adam Litke940cc302010-01-25 12:18:44 -0600767static void user_monitor_complete(void *opaque, QObject *ret_data)
768{
769 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
770
771 if (ret_data) {
772 data->user_print(data->mon, ret_data);
773 }
774 monitor_resume(data->mon);
Anthony Liguori7267c092011-08-20 22:09:37 -0500775 g_free(data);
Adam Litke940cc302010-01-25 12:18:44 -0600776}
777
778static void qmp_monitor_complete(void *opaque, QObject *ret_data)
779{
780 monitor_protocol_emitter(opaque, ret_data);
781}
782
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300783static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
784 const QDict *params)
Adam Litke940cc302010-01-25 12:18:44 -0600785{
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300786 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
Adam Litke940cc302010-01-25 12:18:44 -0600787}
788
Adam Litke940cc302010-01-25 12:18:44 -0600789static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
790 const QDict *params)
791{
792 int ret;
793
Anthony Liguori7267c092011-08-20 22:09:37 -0500794 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
Adam Litke940cc302010-01-25 12:18:44 -0600795 cb_data->mon = mon;
796 cb_data->user_print = cmd->user_print;
797 monitor_suspend(mon);
798 ret = cmd->mhandler.cmd_async(mon, params,
799 user_monitor_complete, cb_data);
800 if (ret < 0) {
801 monitor_resume(mon);
Anthony Liguori7267c092011-08-20 22:09:37 -0500802 g_free(cb_data);
Adam Litke940cc302010-01-25 12:18:44 -0600803 }
804}
805
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300806static void do_info(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000807{
Anthony Liguoric227f092009-10-01 16:12:16 -0500808 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300809 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000810
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200811 if (!item) {
bellard9dc39cb2004-03-14 21:38:27 +0000812 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200813 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300814
815 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000816 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300817 break;
bellard9dc39cb2004-03-14 21:38:27 +0000818 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300819
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200820 if (cmd->name == NULL) {
Luiz Capitulino13c74252009-10-07 13:41:55 -0300821 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200822 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300823
Luiz Capitulinob5c30582011-10-21 16:24:28 -0200824 cmd->mhandler.info(mon);
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300825 return;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300826
827help:
828 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000829}
830
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300831CommandInfoList *qmp_query_commands(Error **errp)
bellard9bc9d1c2004-10-10 15:15:51 +0000832{
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300833 CommandInfoList *info, *cmd_list = NULL;
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200834 const mon_cmd_t *cmd;
835
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300836 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino40e5a012011-10-21 16:15:31 -0200837 info = g_malloc0(sizeof(*info));
838 info->value = g_malloc0(sizeof(*info->value));
839 info->value->name = g_strdup(cmd->name);
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200840
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300841 info->next = cmd_list;
842 cmd_list = info;
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200843 }
844
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300845 return cmd_list;
thsa36e69d2007-12-02 05:18:19 +0000846}
847
Daniel P. Berrange48608532012-05-21 17:59:51 +0100848EventInfoList *qmp_query_events(Error **errp)
849{
850 EventInfoList *info, *ev_list = NULL;
851 MonitorEvent e;
852
853 for (e = 0 ; e < QEVENT_MAX ; e++) {
854 const char *event_name = monitor_event_names[e];
855 assert(event_name != NULL);
856 info = g_malloc0(sizeof(*info));
857 info->value = g_malloc0(sizeof(*info->value));
858 info->value->name = g_strdup(event_name);
859
860 info->next = ev_list;
861 ev_list = info;
862 }
863
864 return ev_list;
865}
866
Luiz Capitulinob025c8b2011-10-06 14:02:57 -0300867/* set the current CPU defined by the user */
868int monitor_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000869{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100870 CPUArchState *env;
bellard6a00d602005-11-21 23:25:50 +0000871
872 for(env = first_cpu; env != NULL; env = env->next_cpu) {
873 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000874 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000875 return 0;
876 }
877 }
878 return -1;
879}
880
Andreas Färber9349b4f2012-03-14 01:38:32 +0100881static CPUArchState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000882{
aliguori731b0362009-03-05 23:01:42 +0000883 if (!cur_mon->mon_cpu) {
Luiz Capitulinob025c8b2011-10-06 14:02:57 -0300884 monitor_set_cpu(0);
bellard6a00d602005-11-21 23:25:50 +0000885 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300886 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000887 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000888}
889
Luiz Capitulino99b77962011-10-24 10:53:44 -0200890int monitor_get_cpu_index(void)
891{
892 return mon_get_cpu()->cpu_index;
893}
894
aliguori376253e2009-03-05 23:01:23 +0000895static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000896{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100897 CPUArchState *env;
bellard6a00d602005-11-21 23:25:50 +0000898 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +0000899#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000900 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000901 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000902#else
aliguori376253e2009-03-05 23:01:23 +0000903 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000904 0);
bellard9307c4c2004-04-04 12:57:25 +0000905#endif
906}
907
aliguori376253e2009-03-05 23:01:23 +0000908static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000909{
aliguori376253e2009-03-05 23:01:23 +0000910 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000911}
912
aliguori376253e2009-03-05 23:01:23 +0000913static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000914{
915 int i;
bellard7e2515e2004-08-01 21:52:19 +0000916 const char *str;
ths3b46e622007-09-17 08:09:54 +0000917
aliguoricde76ee2009-03-05 23:01:51 +0000918 if (!mon->rs)
919 return;
bellard7e2515e2004-08-01 21:52:19 +0000920 i = 0;
921 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000922 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000923 if (!str)
924 break;
aliguori376253e2009-03-05 23:01:23 +0000925 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000926 i++;
bellardaa455482004-04-04 13:07:25 +0000927 }
928}
929
j_mayer76a66252007-03-07 08:32:30 +0000930#if defined(TARGET_PPC)
931/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000932static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000933{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100934 CPUArchState *env;
j_mayer76a66252007-03-07 08:32:30 +0000935
936 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000937 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000938}
939#endif
940
Lluísfc764102011-08-31 20:31:18 +0200941static void do_trace_print_events(Monitor *mon)
Prerna Saxena22890ab2010-06-24 17:04:53 +0530942{
Lluísfc764102011-08-31 20:31:18 +0200943 trace_print_events((FILE *)mon, &monitor_fprintf);
Prerna Saxena22890ab2010-06-24 17:04:53 +0530944}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530945
Daniel P. Berrange13661082011-06-23 13:31:42 +0100946static int add_graphics_client(Monitor *mon, const QDict *qdict, QObject **ret_data)
947{
948 const char *protocol = qdict_get_str(qdict, "protocol");
949 const char *fdname = qdict_get_str(qdict, "fdname");
Daniel P. Berrange13661082011-06-23 13:31:42 +0100950 CharDriverState *s;
951
952 if (strcmp(protocol, "spice") == 0) {
Daniel P. Berrangef1f5f402012-02-13 13:43:08 +0000953 int fd = monitor_get_fd(mon, fdname);
954 int skipauth = qdict_get_try_bool(qdict, "skipauth", 0);
955 int tls = qdict_get_try_bool(qdict, "tls", 0);
Daniel P. Berrange13661082011-06-23 13:31:42 +0100956 if (!using_spice) {
957 /* correct one? spice isn't a device ,,, */
958 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
959 return -1;
960 }
Daniel P. Berrangef1f5f402012-02-13 13:43:08 +0000961 if (qemu_spice_display_add_client(fd, skipauth, tls) < 0) {
962 close(fd);
963 }
964 return 0;
TeLeManc62f6d12011-07-25 16:29:14 +0800965#ifdef CONFIG_VNC
Daniel P. Berrange13661082011-06-23 13:31:42 +0100966 } else if (strcmp(protocol, "vnc") == 0) {
967 int fd = monitor_get_fd(mon, fdname);
Jamie Iles860341f2011-08-10 15:18:42 +0100968 int skipauth = qdict_get_try_bool(qdict, "skipauth", 0);
Daniel P. Berrange13661082011-06-23 13:31:42 +0100969 vnc_display_add_client(NULL, fd, skipauth);
970 return 0;
TeLeManc62f6d12011-07-25 16:29:14 +0800971#endif
Daniel P. Berrange13661082011-06-23 13:31:42 +0100972 } else if ((s = qemu_chr_find(protocol)) != NULL) {
973 int fd = monitor_get_fd(mon, fdname);
974 if (qemu_chr_add_client(s, fd) < 0) {
975 qerror_report(QERR_ADD_CLIENT_FAILED);
976 return -1;
977 }
978 return 0;
979 }
980
981 qerror_report(QERR_INVALID_PARAMETER, "protocol");
982 return -1;
983}
984
Yonit Halperinedc5cb12011-10-17 10:03:18 +0200985static int client_migrate_info(Monitor *mon, const QDict *qdict,
986 MonitorCompletion cb, void *opaque)
Gerd Hoffmanne866e232010-04-23 13:28:21 +0200987{
988 const char *protocol = qdict_get_str(qdict, "protocol");
989 const char *hostname = qdict_get_str(qdict, "hostname");
990 const char *subject = qdict_get_try_str(qdict, "cert-subject");
991 int port = qdict_get_try_int(qdict, "port", -1);
992 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
993 int ret;
994
995 if (strcmp(protocol, "spice") == 0) {
996 if (!using_spice) {
997 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
998 return -1;
999 }
1000
Yonit Halperin6ec5dae2012-03-18 09:42:39 +02001001 if (port == -1 && tls_port == -1) {
1002 qerror_report(QERR_MISSING_PARAMETER, "port/tls-port");
1003 return -1;
1004 }
1005
Yonit Halperinedc5cb12011-10-17 10:03:18 +02001006 ret = qemu_spice_migrate_info(hostname, port, tls_port, subject,
1007 cb, opaque);
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001008 if (ret != 0) {
1009 qerror_report(QERR_UNDEFINED_ERROR);
1010 return -1;
1011 }
1012 return 0;
1013 }
1014
1015 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1016 return -1;
1017}
1018
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -03001019static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard59a983b2004-03-17 23:17:16 +00001020{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001021 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -03001022 return 0;
bellard59a983b2004-03-17 23:17:16 +00001023}
1024
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001025static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +00001026{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001027 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +00001028}
1029
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001030static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +00001031{
1032 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001033 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +00001034
bellard9307c4c2004-04-04 12:57:25 +00001035 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +00001036 mask = 0;
1037 } else {
bellard9307c4c2004-04-04 12:57:25 +00001038 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +00001039 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001040 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001041 return;
1042 }
1043 }
1044 cpu_set_log(mask);
1045}
1046
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001047static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001048{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001049 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001050 if (!option || !strcmp(option, "on")) {
1051 singlestep = 1;
1052 } else if (!strcmp(option, "off")) {
1053 singlestep = 0;
1054 } else {
1055 monitor_printf(mon, "unexpected option %s\n", option);
1056 }
1057}
1058
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001059static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001060{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001061 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001062 if (!device)
1063 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1064 if (gdbserver_start(device) < 0) {
1065 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1066 device);
1067 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001068 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001069 } else {
aliguori59030a82009-04-05 18:43:41 +00001070 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1071 device);
bellard8a7ddc32004-03-31 19:00:16 +00001072 }
1073}
1074
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001075static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001076{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001077 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001078 if (select_watchdog_action(action) == -1) {
1079 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1080 }
1081}
1082
aliguori376253e2009-03-05 23:01:23 +00001083static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001084{
aliguori376253e2009-03-05 23:01:23 +00001085 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001086 switch(c) {
1087 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001088 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001089 break;
1090 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001091 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001092 break;
1093 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001094 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001095 break;
1096 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001097 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001098 break;
1099 default:
1100 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001101 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001102 } else {
aliguori376253e2009-03-05 23:01:23 +00001103 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001104 }
1105 break;
1106 }
aliguori376253e2009-03-05 23:01:23 +00001107 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001108}
1109
aliguori376253e2009-03-05 23:01:23 +00001110static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -05001111 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001112{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001113 CPUArchState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +00001114 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001115 uint8_t buf[16];
1116 uint64_t v;
1117
1118 if (format == 'i') {
1119 int flags;
1120 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001121 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +00001122#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001123 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001124 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001125 } else if (wsize == 4) {
1126 flags = 0;
1127 } else {
bellard6a15fd12006-04-12 21:07:07 +00001128 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001129 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001130 if (env) {
1131#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001132 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001133 (env->segs[R_CS].flags & DESC_L_MASK))
1134 flags = 2;
1135 else
1136#endif
1137 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1138 flags = 1;
1139 }
bellard4c27ba22004-04-25 18:05:08 +00001140 }
1141#endif
aliguori376253e2009-03-05 23:01:23 +00001142 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001143 return;
1144 }
1145
1146 len = wsize * count;
1147 if (wsize == 1)
1148 line_size = 8;
1149 else
1150 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001151 max_digits = 0;
1152
1153 switch(format) {
1154 case 'o':
1155 max_digits = (wsize * 8 + 2) / 3;
1156 break;
1157 default:
1158 case 'x':
1159 max_digits = (wsize * 8) / 4;
1160 break;
1161 case 'u':
1162 case 'd':
1163 max_digits = (wsize * 8 * 10 + 32) / 33;
1164 break;
1165 case 'c':
1166 wsize = 1;
1167 break;
1168 }
1169
1170 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001171 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001172 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001173 else
aliguori376253e2009-03-05 23:01:23 +00001174 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001175 l = len;
1176 if (l > line_size)
1177 l = line_size;
1178 if (is_physical) {
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001179 cpu_physical_memory_read(addr, buf, l);
bellard9307c4c2004-04-04 12:57:25 +00001180 } else {
bellard6a00d602005-11-21 23:25:50 +00001181 env = mon_get_cpu();
aliguoric8f79b62008-08-18 14:00:20 +00001182 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001183 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001184 break;
1185 }
bellard9307c4c2004-04-04 12:57:25 +00001186 }
ths5fafdf22007-09-16 21:08:06 +00001187 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001188 while (i < l) {
1189 switch(wsize) {
1190 default:
1191 case 1:
1192 v = ldub_raw(buf + i);
1193 break;
1194 case 2:
1195 v = lduw_raw(buf + i);
1196 break;
1197 case 4:
bellard92a31b12005-02-10 22:00:52 +00001198 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001199 break;
1200 case 8:
1201 v = ldq_raw(buf + i);
1202 break;
1203 }
aliguori376253e2009-03-05 23:01:23 +00001204 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001205 switch(format) {
1206 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001207 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001208 break;
1209 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001210 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001211 break;
1212 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001213 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001214 break;
1215 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001216 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001217 break;
1218 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001219 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001220 break;
1221 }
1222 i += wsize;
1223 }
aliguori376253e2009-03-05 23:01:23 +00001224 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001225 addr += l;
1226 len -= l;
1227 }
1228}
1229
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001230static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001231{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001232 int count = qdict_get_int(qdict, "count");
1233 int format = qdict_get_int(qdict, "format");
1234 int size = qdict_get_int(qdict, "size");
1235 target_long addr = qdict_get_int(qdict, "addr");
1236
aliguori376253e2009-03-05 23:01:23 +00001237 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001238}
1239
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001240static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001241{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001242 int count = qdict_get_int(qdict, "count");
1243 int format = qdict_get_int(qdict, "format");
1244 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001245 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001246
aliguori376253e2009-03-05 23:01:23 +00001247 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001248}
1249
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001250static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001251{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001252 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001253 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001254
bellard9307c4c2004-04-04 12:57:25 +00001255 switch(format) {
1256 case 'o':
Peter Maydell66f27e62012-06-25 16:52:24 +01001257 monitor_printf(mon, "%#" TARGET_PRIoPHYS, val);
bellard9307c4c2004-04-04 12:57:25 +00001258 break;
1259 case 'x':
Peter Maydell66f27e62012-06-25 16:52:24 +01001260 monitor_printf(mon, "%#" TARGET_PRIxPHYS, val);
bellard9307c4c2004-04-04 12:57:25 +00001261 break;
1262 case 'u':
Peter Maydell66f27e62012-06-25 16:52:24 +01001263 monitor_printf(mon, "%" TARGET_PRIuPHYS, val);
bellard9307c4c2004-04-04 12:57:25 +00001264 break;
1265 default:
1266 case 'd':
Peter Maydell66f27e62012-06-25 16:52:24 +01001267 monitor_printf(mon, "%" TARGET_PRIdPHYS, val);
bellard9307c4c2004-04-04 12:57:25 +00001268 break;
1269 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001270 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001271 break;
1272 }
aliguori376253e2009-03-05 23:01:23 +00001273 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001274}
1275
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001276static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001277{
1278 uint32_t addr;
bellarde4cf1ad2005-06-04 20:15:57 +00001279 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001280 uint32_t start = qdict_get_int(qdict, "start");
1281 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001282
1283 sum = 0;
1284 for(addr = start; addr < (start + size); addr++) {
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001285 uint8_t val = ldub_phys(addr);
bellarde4cf1ad2005-06-04 20:15:57 +00001286 /* BSD sum algorithm ('sum' Unix command) */
1287 sum = (sum >> 1) | (sum << 15);
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001288 sum += val;
bellarde4cf1ad2005-06-04 20:15:57 +00001289 }
aliguori376253e2009-03-05 23:01:23 +00001290 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001291}
1292
balrogc8256f92008-06-08 22:45:01 +00001293#define MAX_KEYCODES 16
1294static uint8_t keycodes[MAX_KEYCODES];
1295static int nb_pending_keycodes;
1296static QEMUTimer *key_timer;
1297
1298static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001299{
balrogc8256f92008-06-08 22:45:01 +00001300 int keycode;
1301
1302 while (nb_pending_keycodes > 0) {
1303 nb_pending_keycodes--;
1304 keycode = keycodes[nb_pending_keycodes];
1305 if (keycode & 0x80)
1306 kbd_put_keycode(0xe0);
1307 kbd_put_keycode(keycode | 0x80);
1308 }
1309}
1310
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001311static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001312{
balrog3401c0d2008-06-04 10:05:59 +00001313 char keyname_buf[16];
1314 char *separator;
Amos Kong1048c882012-08-31 10:56:25 +08001315 int keyname_len, keycode, i, idx;
Amos Kong2ef20c12012-08-31 10:56:22 +08001316 const char *keys = qdict_get_str(qdict, "keys");
1317 int has_hold_time = qdict_haskey(qdict, "hold-time");
1318 int hold_time = qdict_get_try_int(qdict, "hold-time", -1);
ths3b46e622007-09-17 08:09:54 +00001319
balrogc8256f92008-06-08 22:45:01 +00001320 if (nb_pending_keycodes > 0) {
1321 qemu_del_timer(key_timer);
1322 release_keys(NULL);
1323 }
1324 if (!has_hold_time)
1325 hold_time = 100;
1326 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001327 while (1) {
Amos Kong2ef20c12012-08-31 10:56:22 +08001328 separator = strchr(keys, '-');
1329 keyname_len = separator ? separator - keys : strlen(keys);
balrog3401c0d2008-06-04 10:05:59 +00001330 if (keyname_len > 0) {
Amos Kong2ef20c12012-08-31 10:56:22 +08001331 pstrcpy(keyname_buf, sizeof(keyname_buf), keys);
balrog3401c0d2008-06-04 10:05:59 +00001332 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001333 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001334 return;
bellarda3a91a32004-06-04 11:06:21 +00001335 }
balrogc8256f92008-06-08 22:45:01 +00001336 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001337 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001338 return;
1339 }
Amos Kongcd383492012-08-31 10:56:21 +08001340
1341 /* Be compatible with old interface, convert user inputted "<" */
1342 if (!strncmp(keyname_buf, "<", 1) && keyname_len == 1) {
1343 pstrcpy(keyname_buf, sizeof(keyname_buf), "less");
1344 keyname_len = 4;
1345 }
1346
balrog3401c0d2008-06-04 10:05:59 +00001347 keyname_buf[keyname_len] = 0;
Amos Kong1048c882012-08-31 10:56:25 +08001348
1349 idx = index_from_key(keyname_buf);
1350 if (idx == Q_KEY_CODE_MAX) {
1351 monitor_printf(mon, "invalid parameter: %s\n", keyname_buf);
1352 return;
1353 }
1354
1355 keycode = key_defs[idx];
balrog3401c0d2008-06-04 10:05:59 +00001356 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001357 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001358 return;
1359 }
balrogc8256f92008-06-08 22:45:01 +00001360 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001361 }
balrog3401c0d2008-06-04 10:05:59 +00001362 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001363 break;
Amos Kong2ef20c12012-08-31 10:56:22 +08001364 keys = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001365 }
balrogc8256f92008-06-08 22:45:01 +00001366 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001367 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001368 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001369 keycode = keycodes[i];
1370 if (keycode & 0x80)
1371 kbd_put_keycode(0xe0);
1372 kbd_put_keycode(keycode & 0x7f);
1373 }
balrogc8256f92008-06-08 22:45:01 +00001374 /* delayed key up events */
Paolo Bonzini74475452011-03-11 16:47:48 +01001375 qemu_mod_timer(key_timer, qemu_get_clock_ns(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001376 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001377}
1378
bellard13224a82006-07-14 22:03:35 +00001379static int mouse_button_state;
1380
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001381static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001382{
1383 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001384 const char *dx_str = qdict_get_str(qdict, "dx_str");
1385 const char *dy_str = qdict_get_str(qdict, "dy_str");
1386 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001387 dx = strtol(dx_str, NULL, 0);
1388 dy = strtol(dy_str, NULL, 0);
1389 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001390 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001391 dz = strtol(dz_str, NULL, 0);
1392 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1393}
1394
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001395static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001396{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001397 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001398 mouse_button_state = button_state;
1399 kbd_mouse_event(0, 0, 0, mouse_button_state);
1400}
1401
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001402static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001403{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001404 int size = qdict_get_int(qdict, "size");
1405 int addr = qdict_get_int(qdict, "addr");
1406 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001407 uint32_t val;
1408 int suffix;
1409
1410 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001411 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001412 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001413 addr++;
1414 }
1415 addr &= 0xffff;
1416
1417 switch(size) {
1418 default:
1419 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001420 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001421 suffix = 'b';
1422 break;
1423 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001424 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001425 suffix = 'w';
1426 break;
1427 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001428 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001429 suffix = 'l';
1430 break;
1431 }
aliguori376253e2009-03-05 23:01:23 +00001432 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1433 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001434}
bellarda3a91a32004-06-04 11:06:21 +00001435
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001436static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001437{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001438 int size = qdict_get_int(qdict, "size");
1439 int addr = qdict_get_int(qdict, "addr");
1440 int val = qdict_get_int(qdict, "val");
1441
Jan Kiszkaf1147842009-07-14 10:20:11 +02001442 addr &= IOPORTS_MASK;
1443
1444 switch (size) {
1445 default:
1446 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001447 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001448 break;
1449 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001450 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001451 break;
1452 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001453 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001454 break;
1455 }
1456}
1457
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001458static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001459{
1460 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001461 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001462
Jan Kiszka76e30d02009-07-02 00:19:02 +02001463 res = qemu_boot_set(bootdevice);
1464 if (res == 0) {
1465 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1466 } else if (res > 0) {
1467 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001468 } else {
aliguori376253e2009-03-05 23:01:23 +00001469 monitor_printf(mon, "no function defined to set boot device list for "
1470 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001471 }
1472}
1473
bellardb86bda52004-09-18 19:32:46 +00001474#if defined(TARGET_I386)
Blue Swirld65aaf32010-12-11 18:56:24 +00001475static void print_pte(Monitor *mon, target_phys_addr_t addr,
1476 target_phys_addr_t pte,
1477 target_phys_addr_t mask)
bellardb86bda52004-09-18 19:32:46 +00001478{
Blue Swirld65aaf32010-12-11 18:56:24 +00001479#ifdef TARGET_X86_64
1480 if (addr & (1ULL << 47)) {
1481 addr |= -1LL << 48;
1482 }
1483#endif
1484 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1485 " %c%c%c%c%c%c%c%c%c\n",
aliguori376253e2009-03-05 23:01:23 +00001486 addr,
1487 pte & mask,
Blue Swirld65aaf32010-12-11 18:56:24 +00001488 pte & PG_NX_MASK ? 'X' : '-',
aliguori376253e2009-03-05 23:01:23 +00001489 pte & PG_GLOBAL_MASK ? 'G' : '-',
1490 pte & PG_PSE_MASK ? 'P' : '-',
1491 pte & PG_DIRTY_MASK ? 'D' : '-',
1492 pte & PG_ACCESSED_MASK ? 'A' : '-',
1493 pte & PG_PCD_MASK ? 'C' : '-',
1494 pte & PG_PWT_MASK ? 'T' : '-',
1495 pte & PG_USER_MASK ? 'U' : '-',
1496 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001497}
1498
Andreas Färber9349b4f2012-03-14 01:38:32 +01001499static void tlb_info_32(Monitor *mon, CPUArchState *env)
bellardb86bda52004-09-18 19:32:46 +00001500{
Austin Clements94ac5cd2011-08-21 14:49:45 -04001501 unsigned int l1, l2;
bellardb86bda52004-09-18 19:32:46 +00001502 uint32_t pgd, pde, pte;
1503
bellardb86bda52004-09-18 19:32:46 +00001504 pgd = env->cr[3] & ~0xfff;
1505 for(l1 = 0; l1 < 1024; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001506 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
bellardb86bda52004-09-18 19:32:46 +00001507 pde = le32_to_cpu(pde);
1508 if (pde & PG_PRESENT_MASK) {
1509 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
Blue Swirld65aaf32010-12-11 18:56:24 +00001510 /* 4M pages */
1511 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
bellardb86bda52004-09-18 19:32:46 +00001512 } else {
1513 for(l2 = 0; l2 < 1024; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001514 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
bellardb86bda52004-09-18 19:32:46 +00001515 pte = le32_to_cpu(pte);
1516 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001517 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001518 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001519 ~0xfff);
1520 }
1521 }
1522 }
1523 }
1524 }
1525}
1526
Andreas Färber9349b4f2012-03-14 01:38:32 +01001527static void tlb_info_pae32(Monitor *mon, CPUArchState *env)
Blue Swirld65aaf32010-12-11 18:56:24 +00001528{
Austin Clements94ac5cd2011-08-21 14:49:45 -04001529 unsigned int l1, l2, l3;
Blue Swirld65aaf32010-12-11 18:56:24 +00001530 uint64_t pdpe, pde, pte;
1531 uint64_t pdp_addr, pd_addr, pt_addr;
1532
1533 pdp_addr = env->cr[3] & ~0x1f;
1534 for (l1 = 0; l1 < 4; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001535 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001536 pdpe = le64_to_cpu(pdpe);
1537 if (pdpe & PG_PRESENT_MASK) {
1538 pd_addr = pdpe & 0x3fffffffff000ULL;
1539 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001540 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001541 pde = le64_to_cpu(pde);
1542 if (pde & PG_PRESENT_MASK) {
1543 if (pde & PG_PSE_MASK) {
1544 /* 2M pages with PAE, CR4.PSE is ignored */
1545 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
1546 ~((target_phys_addr_t)(1 << 20) - 1));
1547 } else {
1548 pt_addr = pde & 0x3fffffffff000ULL;
1549 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001550 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001551 pte = le64_to_cpu(pte);
1552 if (pte & PG_PRESENT_MASK) {
1553 print_pte(mon, (l1 << 30 ) + (l2 << 21)
1554 + (l3 << 12),
1555 pte & ~PG_PSE_MASK,
1556 ~(target_phys_addr_t)0xfff);
1557 }
1558 }
1559 }
1560 }
1561 }
1562 }
1563 }
1564}
1565
1566#ifdef TARGET_X86_64
Andreas Färber9349b4f2012-03-14 01:38:32 +01001567static void tlb_info_64(Monitor *mon, CPUArchState *env)
Blue Swirld65aaf32010-12-11 18:56:24 +00001568{
1569 uint64_t l1, l2, l3, l4;
1570 uint64_t pml4e, pdpe, pde, pte;
1571 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
1572
1573 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1574 for (l1 = 0; l1 < 512; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001575 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001576 pml4e = le64_to_cpu(pml4e);
1577 if (pml4e & PG_PRESENT_MASK) {
1578 pdp_addr = pml4e & 0x3fffffffff000ULL;
1579 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001580 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001581 pdpe = le64_to_cpu(pdpe);
1582 if (pdpe & PG_PRESENT_MASK) {
1583 if (pdpe & PG_PSE_MASK) {
1584 /* 1G pages, CR4.PSE is ignored */
1585 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
1586 0x3ffffc0000000ULL);
1587 } else {
1588 pd_addr = pdpe & 0x3fffffffff000ULL;
1589 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001590 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001591 pde = le64_to_cpu(pde);
1592 if (pde & PG_PRESENT_MASK) {
1593 if (pde & PG_PSE_MASK) {
1594 /* 2M pages, CR4.PSE is ignored */
1595 print_pte(mon, (l1 << 39) + (l2 << 30) +
1596 (l3 << 21), pde,
1597 0x3ffffffe00000ULL);
1598 } else {
1599 pt_addr = pde & 0x3fffffffff000ULL;
1600 for (l4 = 0; l4 < 512; l4++) {
1601 cpu_physical_memory_read(pt_addr
1602 + l4 * 8,
Stefan Weilb8b79322011-03-26 21:11:05 +01001603 &pte, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001604 pte = le64_to_cpu(pte);
1605 if (pte & PG_PRESENT_MASK) {
1606 print_pte(mon, (l1 << 39) +
1607 (l2 << 30) +
1608 (l3 << 21) + (l4 << 12),
1609 pte & ~PG_PSE_MASK,
1610 0x3fffffffff000ULL);
1611 }
1612 }
1613 }
1614 }
1615 }
1616 }
1617 }
1618 }
1619 }
1620 }
1621}
1622#endif
1623
1624static void tlb_info(Monitor *mon)
1625{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001626 CPUArchState *env;
Blue Swirld65aaf32010-12-11 18:56:24 +00001627
1628 env = mon_get_cpu();
1629
1630 if (!(env->cr[0] & CR0_PG_MASK)) {
1631 monitor_printf(mon, "PG disabled\n");
1632 return;
1633 }
1634 if (env->cr[4] & CR4_PAE_MASK) {
1635#ifdef TARGET_X86_64
1636 if (env->hflags & HF_LMA_MASK) {
1637 tlb_info_64(mon, env);
1638 } else
1639#endif
1640 {
1641 tlb_info_pae32(mon, env);
1642 }
1643 } else {
1644 tlb_info_32(mon, env);
1645 }
1646}
1647
Blue Swirl1b3cba62010-12-11 18:56:27 +00001648static void mem_print(Monitor *mon, target_phys_addr_t *pstart,
1649 int *plast_prot,
1650 target_phys_addr_t end, int prot)
bellardb86bda52004-09-18 19:32:46 +00001651{
bellard9746b152004-11-11 18:30:24 +00001652 int prot1;
1653 prot1 = *plast_prot;
1654 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001655 if (*pstart != -1) {
Blue Swirl1b3cba62010-12-11 18:56:27 +00001656 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
1657 TARGET_FMT_plx " %c%c%c\n",
aliguori376253e2009-03-05 23:01:23 +00001658 *pstart, end, end - *pstart,
1659 prot1 & PG_USER_MASK ? 'u' : '-',
1660 'r',
1661 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001662 }
1663 if (prot != 0)
1664 *pstart = end;
1665 else
1666 *pstart = -1;
1667 *plast_prot = prot;
1668 }
1669}
1670
Andreas Färber9349b4f2012-03-14 01:38:32 +01001671static void mem_info_32(Monitor *mon, CPUArchState *env)
bellardb86bda52004-09-18 19:32:46 +00001672{
Austin Clementsb49ca722011-08-14 23:19:21 -04001673 unsigned int l1, l2;
1674 int prot, last_prot;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001675 uint32_t pgd, pde, pte;
1676 target_phys_addr_t start, end;
bellardb86bda52004-09-18 19:32:46 +00001677
bellardb86bda52004-09-18 19:32:46 +00001678 pgd = env->cr[3] & ~0xfff;
1679 last_prot = 0;
1680 start = -1;
1681 for(l1 = 0; l1 < 1024; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001682 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
bellardb86bda52004-09-18 19:32:46 +00001683 pde = le32_to_cpu(pde);
1684 end = l1 << 22;
1685 if (pde & PG_PRESENT_MASK) {
1686 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1687 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001688 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001689 } else {
1690 for(l2 = 0; l2 < 1024; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001691 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
bellardb86bda52004-09-18 19:32:46 +00001692 pte = le32_to_cpu(pte);
1693 end = (l1 << 22) + (l2 << 12);
1694 if (pte & PG_PRESENT_MASK) {
Austin Clementsc76c8412011-08-14 23:22:28 -04001695 prot = pte & pde &
1696 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
bellardb86bda52004-09-18 19:32:46 +00001697 } else {
1698 prot = 0;
1699 }
aliguori376253e2009-03-05 23:01:23 +00001700 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001701 }
1702 }
1703 } else {
1704 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001705 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001706 }
1707 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04001708 /* Flush last range */
1709 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
bellardb86bda52004-09-18 19:32:46 +00001710}
Blue Swirl1b3cba62010-12-11 18:56:27 +00001711
Andreas Färber9349b4f2012-03-14 01:38:32 +01001712static void mem_info_pae32(Monitor *mon, CPUArchState *env)
Blue Swirl1b3cba62010-12-11 18:56:27 +00001713{
Austin Clementsb49ca722011-08-14 23:19:21 -04001714 unsigned int l1, l2, l3;
1715 int prot, last_prot;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001716 uint64_t pdpe, pde, pte;
1717 uint64_t pdp_addr, pd_addr, pt_addr;
1718 target_phys_addr_t start, end;
1719
1720 pdp_addr = env->cr[3] & ~0x1f;
1721 last_prot = 0;
1722 start = -1;
1723 for (l1 = 0; l1 < 4; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001724 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001725 pdpe = le64_to_cpu(pdpe);
1726 end = l1 << 30;
1727 if (pdpe & PG_PRESENT_MASK) {
1728 pd_addr = pdpe & 0x3fffffffff000ULL;
1729 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001730 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001731 pde = le64_to_cpu(pde);
1732 end = (l1 << 30) + (l2 << 21);
1733 if (pde & PG_PRESENT_MASK) {
1734 if (pde & PG_PSE_MASK) {
1735 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1736 PG_PRESENT_MASK);
1737 mem_print(mon, &start, &last_prot, end, prot);
1738 } else {
1739 pt_addr = pde & 0x3fffffffff000ULL;
1740 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001741 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001742 pte = le64_to_cpu(pte);
1743 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
1744 if (pte & PG_PRESENT_MASK) {
Austin Clementsc76c8412011-08-14 23:22:28 -04001745 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
1746 PG_PRESENT_MASK);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001747 } else {
1748 prot = 0;
1749 }
1750 mem_print(mon, &start, &last_prot, end, prot);
1751 }
1752 }
1753 } else {
1754 prot = 0;
1755 mem_print(mon, &start, &last_prot, end, prot);
1756 }
1757 }
1758 } else {
1759 prot = 0;
1760 mem_print(mon, &start, &last_prot, end, prot);
1761 }
1762 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04001763 /* Flush last range */
1764 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001765}
1766
1767
1768#ifdef TARGET_X86_64
Andreas Färber9349b4f2012-03-14 01:38:32 +01001769static void mem_info_64(Monitor *mon, CPUArchState *env)
Blue Swirl1b3cba62010-12-11 18:56:27 +00001770{
1771 int prot, last_prot;
1772 uint64_t l1, l2, l3, l4;
1773 uint64_t pml4e, pdpe, pde, pte;
1774 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
1775
1776 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1777 last_prot = 0;
1778 start = -1;
1779 for (l1 = 0; l1 < 512; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001780 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001781 pml4e = le64_to_cpu(pml4e);
1782 end = l1 << 39;
1783 if (pml4e & PG_PRESENT_MASK) {
1784 pdp_addr = pml4e & 0x3fffffffff000ULL;
1785 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001786 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001787 pdpe = le64_to_cpu(pdpe);
1788 end = (l1 << 39) + (l2 << 30);
1789 if (pdpe & PG_PRESENT_MASK) {
1790 if (pdpe & PG_PSE_MASK) {
Blue Swirl2d5b5072011-01-15 08:31:00 +00001791 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
1792 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04001793 prot &= pml4e;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001794 mem_print(mon, &start, &last_prot, end, prot);
1795 } else {
1796 pd_addr = pdpe & 0x3fffffffff000ULL;
1797 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001798 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001799 pde = le64_to_cpu(pde);
1800 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
1801 if (pde & PG_PRESENT_MASK) {
1802 if (pde & PG_PSE_MASK) {
1803 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1804 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04001805 prot &= pml4e & pdpe;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001806 mem_print(mon, &start, &last_prot, end, prot);
1807 } else {
1808 pt_addr = pde & 0x3fffffffff000ULL;
1809 for (l4 = 0; l4 < 512; l4++) {
1810 cpu_physical_memory_read(pt_addr
1811 + l4 * 8,
Stefan Weilb8b79322011-03-26 21:11:05 +01001812 &pte, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001813 pte = le64_to_cpu(pte);
1814 end = (l1 << 39) + (l2 << 30) +
1815 (l3 << 21) + (l4 << 12);
1816 if (pte & PG_PRESENT_MASK) {
1817 prot = pte & (PG_USER_MASK | PG_RW_MASK |
1818 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04001819 prot &= pml4e & pdpe & pde;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001820 } else {
1821 prot = 0;
1822 }
1823 mem_print(mon, &start, &last_prot, end, prot);
1824 }
1825 }
1826 } else {
1827 prot = 0;
1828 mem_print(mon, &start, &last_prot, end, prot);
1829 }
1830 }
1831 }
1832 } else {
1833 prot = 0;
1834 mem_print(mon, &start, &last_prot, end, prot);
1835 }
1836 }
1837 } else {
1838 prot = 0;
1839 mem_print(mon, &start, &last_prot, end, prot);
1840 }
1841 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04001842 /* Flush last range */
1843 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 48, 0);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001844}
1845#endif
1846
1847static void mem_info(Monitor *mon)
1848{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001849 CPUArchState *env;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001850
1851 env = mon_get_cpu();
1852
1853 if (!(env->cr[0] & CR0_PG_MASK)) {
1854 monitor_printf(mon, "PG disabled\n");
1855 return;
1856 }
1857 if (env->cr[4] & CR4_PAE_MASK) {
1858#ifdef TARGET_X86_64
1859 if (env->hflags & HF_LMA_MASK) {
1860 mem_info_64(mon, env);
1861 } else
1862#endif
1863 {
1864 mem_info_pae32(mon, env);
1865 }
1866 } else {
1867 mem_info_32(mon, env);
1868 }
1869}
bellardb86bda52004-09-18 19:32:46 +00001870#endif
1871
aurel327c664e22009-03-03 06:12:22 +00001872#if defined(TARGET_SH4)
1873
aliguori376253e2009-03-05 23:01:23 +00001874static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001875{
aliguori376253e2009-03-05 23:01:23 +00001876 monitor_printf(mon, " tlb%i:\t"
1877 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1878 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1879 "dirty=%hhu writethrough=%hhu\n",
1880 idx,
1881 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1882 tlb->v, tlb->sh, tlb->c, tlb->pr,
1883 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001884}
1885
aliguori376253e2009-03-05 23:01:23 +00001886static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00001887{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001888 CPUArchState *env = mon_get_cpu();
aurel327c664e22009-03-03 06:12:22 +00001889 int i;
1890
aliguori376253e2009-03-05 23:01:23 +00001891 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001892 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001893 print_tlb (mon, i, &env->itlb[i]);
1894 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001895 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001896 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00001897}
1898
1899#endif
1900
Max Filippov692f7372012-01-07 20:02:40 +04001901#if defined(TARGET_SPARC) || defined(TARGET_PPC) || defined(TARGET_XTENSA)
Blue Swirld41160a2010-12-19 13:42:56 +00001902static void tlb_info(Monitor *mon)
1903{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001904 CPUArchState *env1 = mon_get_cpu();
Blue Swirld41160a2010-12-19 13:42:56 +00001905
1906 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
1907}
1908#endif
1909
Blue Swirl314e2982011-09-11 20:22:05 +00001910static void do_info_mtree(Monitor *mon)
1911{
1912 mtree_info((fprintf_function)monitor_printf, mon);
1913}
1914
aliguori030ea372009-04-21 22:30:47 +00001915static void do_info_numa(Monitor *mon)
1916{
aliguorib28b6232009-04-22 20:20:29 +00001917 int i;
Andreas Färber9349b4f2012-03-14 01:38:32 +01001918 CPUArchState *env;
aliguori030ea372009-04-21 22:30:47 +00001919
1920 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1921 for (i = 0; i < nb_numa_nodes; i++) {
1922 monitor_printf(mon, "node %d cpus:", i);
1923 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1924 if (env->numa_node == i) {
1925 monitor_printf(mon, " %d", env->cpu_index);
1926 }
1927 }
1928 monitor_printf(mon, "\n");
1929 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1930 node_mem[i] >> 20);
1931 }
1932}
1933
bellard5f1ce942006-02-08 22:40:15 +00001934#ifdef CONFIG_PROFILER
1935
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02001936int64_t qemu_time;
1937int64_t dev_time;
1938
aliguori376253e2009-03-05 23:01:23 +00001939static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001940{
1941 int64_t total;
1942 total = qemu_time;
1943 if (total == 0)
1944 total = 1;
aliguori376253e2009-03-05 23:01:23 +00001945 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02001946 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00001947 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02001948 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00001949 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001950 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001951}
1952#else
aliguori376253e2009-03-05 23:01:23 +00001953static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001954{
aliguori376253e2009-03-05 23:01:23 +00001955 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00001956}
1957#endif
1958
bellardec36b692006-07-16 18:57:03 +00001959/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001960static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00001961
aliguori376253e2009-03-05 23:01:23 +00001962static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00001963{
1964 int i;
1965 CaptureState *s;
1966
1967 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00001968 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00001969 s->ops.info (s->opaque);
1970 }
1971}
1972
Blue Swirl23130862009-06-06 08:22:04 +00001973#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001974static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00001975{
1976 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001977 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00001978 CaptureState *s;
1979
1980 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1981 if (i == n) {
1982 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00001983 QLIST_REMOVE (s, entries);
Anthony Liguori7267c092011-08-20 22:09:37 -05001984 g_free (s);
bellardec36b692006-07-16 18:57:03 +00001985 return;
1986 }
1987 }
1988}
1989
Luiz Capitulinoc1925482009-08-28 15:27:19 -03001990static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00001991{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03001992 const char *path = qdict_get_str(qdict, "path");
1993 int has_freq = qdict_haskey(qdict, "freq");
1994 int freq = qdict_get_try_int(qdict, "freq", -1);
1995 int has_bits = qdict_haskey(qdict, "bits");
1996 int bits = qdict_get_try_int(qdict, "bits", -1);
1997 int has_channels = qdict_haskey(qdict, "nchannels");
1998 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00001999 CaptureState *s;
2000
Anthony Liguori7267c092011-08-20 22:09:37 -05002001 s = g_malloc0 (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002002
2003 freq = has_freq ? freq : 44100;
2004 bits = has_bits ? bits : 16;
2005 nchannels = has_channels ? nchannels : 2;
2006
2007 if (wav_start_capture (s, path, freq, bits, nchannels)) {
Isaku Yamahatad00b2612011-01-21 19:53:55 +09002008 monitor_printf(mon, "Failed to add wave capture\n");
Anthony Liguori7267c092011-08-20 22:09:37 -05002009 g_free (s);
Isaku Yamahatad00b2612011-01-21 19:53:55 +09002010 return;
bellardec36b692006-07-16 18:57:03 +00002011 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002012 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002013}
2014#endif
2015
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002016static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002017{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002018 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002019
aliguori76655d62009-03-06 20:27:37 +00002020 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002021 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002022 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002023 return acl;
2024}
aliguori76655d62009-03-06 20:27:37 +00002025
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002026static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002027{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002028 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002029 qemu_acl *acl = find_acl(mon, aclname);
2030 qemu_acl_entry *entry;
2031 int i = 0;
2032
2033 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002034 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002035 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002036 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002037 i++;
2038 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002039 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002040 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002041 }
2042}
2043
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002044static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002045{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002046 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002047 qemu_acl *acl = find_acl(mon, aclname);
2048
2049 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002050 qemu_acl_reset(acl);
2051 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002052 }
2053}
aliguori76655d62009-03-06 20:27:37 +00002054
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002055static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002056{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002057 const char *aclname = qdict_get_str(qdict, "aclname");
2058 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002059 qemu_acl *acl = find_acl(mon, aclname);
2060
2061 if (acl) {
2062 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002063 acl->defaultDeny = 0;
2064 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002065 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002066 acl->defaultDeny = 1;
2067 monitor_printf(mon, "acl: policy set to 'deny'\n");
2068 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002069 monitor_printf(mon, "acl: unknown policy '%s', "
2070 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002071 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002072 }
2073}
aliguori76655d62009-03-06 20:27:37 +00002074
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002075static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002076{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002077 const char *aclname = qdict_get_str(qdict, "aclname");
2078 const char *match = qdict_get_str(qdict, "match");
2079 const char *policy = qdict_get_str(qdict, "policy");
2080 int has_index = qdict_haskey(qdict, "index");
2081 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002082 qemu_acl *acl = find_acl(mon, aclname);
2083 int deny, ret;
2084
2085 if (acl) {
2086 if (strcmp(policy, "allow") == 0) {
2087 deny = 0;
2088 } else if (strcmp(policy, "deny") == 0) {
2089 deny = 1;
2090 } else {
2091 monitor_printf(mon, "acl: unknown policy '%s', "
2092 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002093 return;
2094 }
aliguori28a76be2009-03-06 20:27:40 +00002095 if (has_index)
2096 ret = qemu_acl_insert(acl, deny, match, index);
2097 else
2098 ret = qemu_acl_append(acl, deny, match);
2099 if (ret < 0)
2100 monitor_printf(mon, "acl: unable to add acl entry\n");
2101 else
2102 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002103 }
2104}
aliguori76655d62009-03-06 20:27:37 +00002105
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002106static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002107{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002108 const char *aclname = qdict_get_str(qdict, "aclname");
2109 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002110 qemu_acl *acl = find_acl(mon, aclname);
2111 int ret;
aliguori76655d62009-03-06 20:27:37 +00002112
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002113 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002114 ret = qemu_acl_remove(acl, match);
2115 if (ret < 0)
2116 monitor_printf(mon, "acl: no matching acl entry\n");
2117 else
2118 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002119 }
2120}
2121
Huang Ying79c4f6b2009-06-23 10:05:14 +08002122#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002123static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002124{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002125 CPUArchState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002126 int cpu_index = qdict_get_int(qdict, "cpu_index");
2127 int bank = qdict_get_int(qdict, "bank");
2128 uint64_t status = qdict_get_int(qdict, "status");
2129 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2130 uint64_t addr = qdict_get_int(qdict, "addr");
2131 uint64_t misc = qdict_get_int(qdict, "misc");
Jan Kiszka747461c2011-03-02 08:56:10 +01002132 int flags = MCE_INJECT_UNCOND_AO;
Huang Ying79c4f6b2009-06-23 10:05:14 +08002133
Jan Kiszka747461c2011-03-02 08:56:10 +01002134 if (qdict_get_try_bool(qdict, "broadcast", 0)) {
2135 flags |= MCE_INJECT_BROADCAST;
2136 }
Jin Dongming31ce5e02010-12-10 17:21:02 +09002137 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu) {
Jan Kiszka316378e2011-03-02 08:56:09 +01002138 if (cenv->cpu_index == cpu_index) {
2139 cpu_x86_inject_mce(mon, cenv, bank, status, mcg_status, addr, misc,
Jan Kiszka747461c2011-03-02 08:56:10 +01002140 flags);
Huang Ying79c4f6b2009-06-23 10:05:14 +08002141 break;
2142 }
Jin Dongming31ce5e02010-12-10 17:21:02 +09002143 }
Huang Ying79c4f6b2009-06-23 10:05:14 +08002144}
2145#endif
2146
Corey Bryant208c9d12012-06-22 14:36:09 -04002147void qmp_getfd(const char *fdname, Error **errp)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002148{
Anthony Liguoric227f092009-10-01 16:12:16 -05002149 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002150 int fd;
2151
Corey Bryant208c9d12012-06-22 14:36:09 -04002152 fd = qemu_chr_fe_get_msgfd(cur_mon->chr);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002153 if (fd == -1) {
Corey Bryant208c9d12012-06-22 14:36:09 -04002154 error_set(errp, QERR_FD_NOT_SUPPLIED);
2155 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002156 }
2157
2158 if (qemu_isdigit(fdname[0])) {
Corey Bryant208c9d12012-06-22 14:36:09 -04002159 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "fdname",
2160 "a name not starting with a digit");
2161 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002162 }
2163
Corey Bryant208c9d12012-06-22 14:36:09 -04002164 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002165 if (strcmp(monfd->name, fdname) != 0) {
2166 continue;
2167 }
2168
2169 close(monfd->fd);
2170 monfd->fd = fd;
Corey Bryant208c9d12012-06-22 14:36:09 -04002171 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002172 }
2173
Anthony Liguori7267c092011-08-20 22:09:37 -05002174 monfd = g_malloc0(sizeof(mon_fd_t));
2175 monfd->name = g_strdup(fdname);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002176 monfd->fd = fd;
2177
Corey Bryant208c9d12012-06-22 14:36:09 -04002178 QLIST_INSERT_HEAD(&cur_mon->fds, monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002179}
2180
Corey Bryant208c9d12012-06-22 14:36:09 -04002181void qmp_closefd(const char *fdname, Error **errp)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002182{
Anthony Liguoric227f092009-10-01 16:12:16 -05002183 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002184
Corey Bryant208c9d12012-06-22 14:36:09 -04002185 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002186 if (strcmp(monfd->name, fdname) != 0) {
2187 continue;
2188 }
2189
Blue Swirl72cf2d42009-09-12 07:36:22 +00002190 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002191 close(monfd->fd);
Anthony Liguori7267c092011-08-20 22:09:37 -05002192 g_free(monfd->name);
2193 g_free(monfd);
Corey Bryant208c9d12012-06-22 14:36:09 -04002194 return;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002195 }
2196
Corey Bryant208c9d12012-06-22 14:36:09 -04002197 error_set(errp, QERR_FD_NOT_FOUND, fdname);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002198}
2199
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002200static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002201{
Luiz Capitulino13548692011-07-29 15:36:43 -03002202 int saved_vm_running = runstate_is_running();
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002203 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002204
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002205 vm_stop(RUN_STATE_RESTORE_VM);
Juan Quintelac8d41b22009-08-20 19:42:21 +02002206
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002207 if (load_vmstate(name) == 0 && saved_vm_running) {
Juan Quintelac8d41b22009-08-20 19:42:21 +02002208 vm_start();
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002209 }
Juan Quintelac8d41b22009-08-20 19:42:21 +02002210}
2211
Mark McLoughlin7768e042009-07-22 09:11:41 +01002212int monitor_get_fd(Monitor *mon, const char *fdname)
2213{
Anthony Liguoric227f092009-10-01 16:12:16 -05002214 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002215
Blue Swirl72cf2d42009-09-12 07:36:22 +00002216 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002217 int fd;
2218
2219 if (strcmp(monfd->name, fdname) != 0) {
2220 continue;
2221 }
2222
2223 fd = monfd->fd;
2224
2225 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002226 QLIST_REMOVE(monfd, next);
Anthony Liguori7267c092011-08-20 22:09:37 -05002227 g_free(monfd->name);
2228 g_free(monfd);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002229
2230 return fd;
2231 }
2232
2233 return -1;
2234}
2235
Corey Bryantba1c0482012-08-14 16:43:43 -04002236static void monitor_fdset_cleanup(MonFdset *mon_fdset)
2237{
2238 MonFdsetFd *mon_fdset_fd;
2239 MonFdsetFd *mon_fdset_fd_next;
2240
2241 QLIST_FOREACH_SAFE(mon_fdset_fd, &mon_fdset->fds, next, mon_fdset_fd_next) {
Corey Bryantefb87c12012-08-14 16:43:48 -04002242 if (mon_fdset_fd->removed ||
2243 (QLIST_EMPTY(&mon_fdset->dup_fds) && mon_refcount == 0)) {
Corey Bryantba1c0482012-08-14 16:43:43 -04002244 close(mon_fdset_fd->fd);
2245 g_free(mon_fdset_fd->opaque);
2246 QLIST_REMOVE(mon_fdset_fd, next);
2247 g_free(mon_fdset_fd);
2248 }
2249 }
2250
Corey Bryantadb696f2012-08-14 16:43:47 -04002251 if (QLIST_EMPTY(&mon_fdset->fds) && QLIST_EMPTY(&mon_fdset->dup_fds)) {
Corey Bryantba1c0482012-08-14 16:43:43 -04002252 QLIST_REMOVE(mon_fdset, next);
2253 g_free(mon_fdset);
2254 }
2255}
2256
Corey Bryantefb87c12012-08-14 16:43:48 -04002257static void monitor_fdsets_cleanup(void)
2258{
2259 MonFdset *mon_fdset;
2260 MonFdset *mon_fdset_next;
2261
2262 QLIST_FOREACH_SAFE(mon_fdset, &mon_fdsets, next, mon_fdset_next) {
2263 monitor_fdset_cleanup(mon_fdset);
2264 }
2265}
2266
Corey Bryantba1c0482012-08-14 16:43:43 -04002267AddfdInfo *qmp_add_fd(bool has_fdset_id, int64_t fdset_id, bool has_opaque,
2268 const char *opaque, Error **errp)
2269{
2270 int fd;
2271 Monitor *mon = cur_mon;
2272 MonFdset *mon_fdset;
2273 MonFdsetFd *mon_fdset_fd;
2274 AddfdInfo *fdinfo;
2275
2276 fd = qemu_chr_fe_get_msgfd(mon->chr);
2277 if (fd == -1) {
2278 error_set(errp, QERR_FD_NOT_SUPPLIED);
2279 goto error;
2280 }
2281
2282 if (has_fdset_id) {
2283 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2284 if (mon_fdset->id == fdset_id) {
2285 break;
2286 }
2287 }
2288 if (mon_fdset == NULL) {
2289 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "fdset-id",
2290 "an existing fdset-id");
2291 goto error;
2292 }
2293 } else {
2294 int64_t fdset_id_prev = -1;
2295 MonFdset *mon_fdset_cur = QLIST_FIRST(&mon_fdsets);
2296
2297 /* Use first available fdset ID */
2298 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2299 mon_fdset_cur = mon_fdset;
2300 if (fdset_id_prev == mon_fdset_cur->id - 1) {
2301 fdset_id_prev = mon_fdset_cur->id;
2302 continue;
2303 }
2304 break;
2305 }
2306
2307 mon_fdset = g_malloc0(sizeof(*mon_fdset));
2308 mon_fdset->id = fdset_id_prev + 1;
2309
2310 /* The fdset list is ordered by fdset ID */
2311 if (mon_fdset->id == 0) {
2312 QLIST_INSERT_HEAD(&mon_fdsets, mon_fdset, next);
2313 } else if (mon_fdset->id < mon_fdset_cur->id) {
2314 QLIST_INSERT_BEFORE(mon_fdset_cur, mon_fdset, next);
2315 } else {
2316 QLIST_INSERT_AFTER(mon_fdset_cur, mon_fdset, next);
2317 }
2318 }
2319
2320 mon_fdset_fd = g_malloc0(sizeof(*mon_fdset_fd));
2321 mon_fdset_fd->fd = fd;
2322 mon_fdset_fd->removed = false;
2323 if (has_opaque) {
2324 mon_fdset_fd->opaque = g_strdup(opaque);
2325 }
2326 QLIST_INSERT_HEAD(&mon_fdset->fds, mon_fdset_fd, next);
2327
2328 fdinfo = g_malloc0(sizeof(*fdinfo));
2329 fdinfo->fdset_id = mon_fdset->id;
2330 fdinfo->fd = mon_fdset_fd->fd;
2331
2332 return fdinfo;
2333
2334error:
2335 if (fd != -1) {
2336 close(fd);
2337 }
2338 return NULL;
2339}
2340
2341void qmp_remove_fd(int64_t fdset_id, bool has_fd, int64_t fd, Error **errp)
2342{
2343 MonFdset *mon_fdset;
2344 MonFdsetFd *mon_fdset_fd;
2345 char fd_str[60];
2346
2347 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2348 if (mon_fdset->id != fdset_id) {
2349 continue;
2350 }
2351 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2352 if (has_fd) {
2353 if (mon_fdset_fd->fd != fd) {
2354 continue;
2355 }
2356 mon_fdset_fd->removed = true;
2357 break;
2358 } else {
2359 mon_fdset_fd->removed = true;
2360 }
2361 }
2362 if (has_fd && !mon_fdset_fd) {
2363 goto error;
2364 }
2365 monitor_fdset_cleanup(mon_fdset);
2366 return;
2367 }
2368
2369error:
2370 if (has_fd) {
2371 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64 ", fd:%" PRId64,
2372 fdset_id, fd);
2373 } else {
2374 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64, fdset_id);
2375 }
2376 error_set(errp, QERR_FD_NOT_FOUND, fd_str);
2377}
2378
2379FdsetInfoList *qmp_query_fdsets(Error **errp)
2380{
2381 MonFdset *mon_fdset;
2382 MonFdsetFd *mon_fdset_fd;
2383 FdsetInfoList *fdset_list = NULL;
2384
2385 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2386 FdsetInfoList *fdset_info = g_malloc0(sizeof(*fdset_info));
2387 FdsetFdInfoList *fdsetfd_list = NULL;
2388
2389 fdset_info->value = g_malloc0(sizeof(*fdset_info->value));
2390 fdset_info->value->fdset_id = mon_fdset->id;
2391
2392 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2393 FdsetFdInfoList *fdsetfd_info;
2394
2395 fdsetfd_info = g_malloc0(sizeof(*fdsetfd_info));
2396 fdsetfd_info->value = g_malloc0(sizeof(*fdsetfd_info->value));
2397 fdsetfd_info->value->fd = mon_fdset_fd->fd;
2398 if (mon_fdset_fd->opaque) {
2399 fdsetfd_info->value->has_opaque = true;
2400 fdsetfd_info->value->opaque = g_strdup(mon_fdset_fd->opaque);
2401 } else {
2402 fdsetfd_info->value->has_opaque = false;
2403 }
2404
2405 fdsetfd_info->next = fdsetfd_list;
2406 fdsetfd_list = fdsetfd_info;
2407 }
2408
2409 fdset_info->value->fds = fdsetfd_list;
2410
2411 fdset_info->next = fdset_list;
2412 fdset_list = fdset_info;
2413 }
2414
2415 return fdset_list;
2416}
2417
Corey Bryantadb696f2012-08-14 16:43:47 -04002418int monitor_fdset_get_fd(int64_t fdset_id, int flags)
2419{
Blue Swirlb2dc64c2012-08-18 20:14:54 +00002420#ifndef _WIN32
Corey Bryantadb696f2012-08-14 16:43:47 -04002421 MonFdset *mon_fdset;
2422 MonFdsetFd *mon_fdset_fd;
2423 int mon_fd_flags;
2424
Corey Bryantadb696f2012-08-14 16:43:47 -04002425 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2426 if (mon_fdset->id != fdset_id) {
2427 continue;
2428 }
2429 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
2430 mon_fd_flags = fcntl(mon_fdset_fd->fd, F_GETFL);
2431 if (mon_fd_flags == -1) {
2432 return -1;
2433 }
2434
2435 if ((flags & O_ACCMODE) == (mon_fd_flags & O_ACCMODE)) {
2436 return mon_fdset_fd->fd;
2437 }
2438 }
2439 errno = EACCES;
2440 return -1;
2441 }
2442#endif
2443
2444 errno = ENOENT;
2445 return -1;
2446}
2447
2448int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd)
2449{
2450 MonFdset *mon_fdset;
2451 MonFdsetFd *mon_fdset_fd_dup;
2452
2453 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2454 if (mon_fdset->id != fdset_id) {
2455 continue;
2456 }
2457 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2458 if (mon_fdset_fd_dup->fd == dup_fd) {
2459 return -1;
2460 }
2461 }
2462 mon_fdset_fd_dup = g_malloc0(sizeof(*mon_fdset_fd_dup));
2463 mon_fdset_fd_dup->fd = dup_fd;
2464 QLIST_INSERT_HEAD(&mon_fdset->dup_fds, mon_fdset_fd_dup, next);
2465 return 0;
2466 }
2467 return -1;
2468}
2469
2470static int monitor_fdset_dup_fd_find_remove(int dup_fd, bool remove)
2471{
2472 MonFdset *mon_fdset;
2473 MonFdsetFd *mon_fdset_fd_dup;
2474
2475 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
2476 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
2477 if (mon_fdset_fd_dup->fd == dup_fd) {
2478 if (remove) {
2479 QLIST_REMOVE(mon_fdset_fd_dup, next);
2480 if (QLIST_EMPTY(&mon_fdset->dup_fds)) {
2481 monitor_fdset_cleanup(mon_fdset);
2482 }
2483 }
2484 return mon_fdset->id;
2485 }
2486 }
2487 }
2488 return -1;
2489}
2490
2491int monitor_fdset_dup_fd_find(int dup_fd)
2492{
2493 return monitor_fdset_dup_fd_find_remove(dup_fd, false);
2494}
2495
2496int monitor_fdset_dup_fd_remove(int dup_fd)
2497{
2498 return monitor_fdset_dup_fd_find_remove(dup_fd, true);
2499}
2500
Wayne Xia816f8922011-10-12 11:32:41 +08002501/* mon_cmds and info_cmds would be sorted at runtime */
2502static mon_cmd_t mon_cmds[] = {
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002503#include "hmp-commands.h"
ths5fafdf22007-09-16 21:08:06 +00002504 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002505};
2506
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002507/* Please update hmp-commands.hx when adding or changing commands */
Wayne Xia816f8922011-10-12 11:32:41 +08002508static mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002509 {
2510 .name = "version",
2511 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002512 .params = "",
2513 .help = "show the version of QEMU",
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03002514 .mhandler.info = hmp_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002515 },
2516 {
2517 .name = "network",
2518 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002519 .params = "",
2520 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002521 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002522 },
2523 {
2524 .name = "chardev",
2525 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002526 .params = "",
2527 .help = "show the character devices",
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03002528 .mhandler.info = hmp_info_chardev,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002529 },
2530 {
2531 .name = "block",
2532 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002533 .params = "",
2534 .help = "show the block devices",
Luiz Capitulinob2023812011-09-21 17:16:47 -03002535 .mhandler.info = hmp_info_block,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002536 },
2537 {
2538 .name = "blockstats",
2539 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002540 .params = "",
2541 .help = "show block device statistics",
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002542 .mhandler.info = hmp_info_blockstats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002543 },
2544 {
Stefan Hajnoczifb5458c2012-01-18 14:40:49 +00002545 .name = "block-jobs",
2546 .args_type = "",
2547 .params = "",
2548 .help = "show progress of ongoing block device operations",
2549 .mhandler.info = hmp_info_block_jobs,
2550 },
2551 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002552 .name = "registers",
2553 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002554 .params = "",
2555 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002556 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002557 },
2558 {
2559 .name = "cpus",
2560 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002561 .params = "",
2562 .help = "show infos for each CPU",
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03002563 .mhandler.info = hmp_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002564 },
2565 {
2566 .name = "history",
2567 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002568 .params = "",
2569 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002570 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002571 },
Jan Kiszka661f1922011-10-16 11:53:13 +02002572#if defined(TARGET_I386) || defined(TARGET_PPC) || defined(TARGET_MIPS) || \
2573 defined(TARGET_LM32) || (defined(TARGET_SPARC) && !defined(TARGET_SPARC64))
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002574 {
2575 .name = "irq",
2576 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002577 .params = "",
2578 .help = "show the interrupts statistics (if available)",
Jan Kiszka661f1922011-10-16 11:53:13 +02002579#ifdef TARGET_SPARC
2580 .mhandler.info = sun4m_irq_info,
2581#elif defined(TARGET_LM32)
2582 .mhandler.info = lm32_irq_info,
2583#else
Luiz Capitulino910df892009-10-07 13:41:51 -03002584 .mhandler.info = irq_info,
Jan Kiszka661f1922011-10-16 11:53:13 +02002585#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002586 },
2587 {
2588 .name = "pic",
2589 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002590 .params = "",
2591 .help = "show i8259 (PIC) state",
Jan Kiszka661f1922011-10-16 11:53:13 +02002592#ifdef TARGET_SPARC
2593 .mhandler.info = sun4m_pic_info,
2594#elif defined(TARGET_LM32)
2595 .mhandler.info = lm32_do_pic_info,
2596#else
Luiz Capitulino910df892009-10-07 13:41:51 -03002597 .mhandler.info = pic_info,
Jan Kiszka661f1922011-10-16 11:53:13 +02002598#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002599 },
Jan Kiszka661f1922011-10-16 11:53:13 +02002600#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002601 {
2602 .name = "pci",
2603 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002604 .params = "",
2605 .help = "show PCI info",
Luiz Capitulino79627472011-10-21 14:15:33 -02002606 .mhandler.info = hmp_info_pci,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002607 },
Scott Woodbebabbc2011-08-18 10:38:42 +00002608#if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \
Max Filippov692f7372012-01-07 20:02:40 +04002609 defined(TARGET_PPC) || defined(TARGET_XTENSA)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002610 {
2611 .name = "tlb",
2612 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002613 .params = "",
2614 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002615 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002616 },
aurel327c664e22009-03-03 06:12:22 +00002617#endif
2618#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002619 {
2620 .name = "mem",
2621 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002622 .params = "",
2623 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002624 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002625 },
bellardb86bda52004-09-18 19:32:46 +00002626#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002627 {
Blue Swirl314e2982011-09-11 20:22:05 +00002628 .name = "mtree",
2629 .args_type = "",
2630 .params = "",
2631 .help = "show memory tree",
2632 .mhandler.info = do_info_mtree,
2633 },
2634 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002635 .name = "jit",
2636 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002637 .params = "",
2638 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002639 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002640 },
2641 {
2642 .name = "kvm",
2643 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002644 .params = "",
2645 .help = "show KVM information",
Luiz Capitulino292a2602011-09-12 15:10:53 -03002646 .mhandler.info = hmp_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002647 },
2648 {
2649 .name = "numa",
2650 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002651 .params = "",
2652 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002653 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002654 },
2655 {
2656 .name = "usb",
2657 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002658 .params = "",
2659 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002660 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002661 },
2662 {
2663 .name = "usbhost",
2664 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002665 .params = "",
2666 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002667 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002668 },
2669 {
2670 .name = "profile",
2671 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002672 .params = "",
2673 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002674 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002675 },
2676 {
2677 .name = "capture",
2678 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002679 .params = "",
2680 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002681 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002682 },
2683 {
2684 .name = "snapshots",
2685 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002686 .params = "",
2687 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002688 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002689 },
2690 {
2691 .name = "status",
2692 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002693 .params = "",
2694 .help = "show the current VM status (running|paused)",
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -03002695 .mhandler.info = hmp_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002696 },
2697 {
2698 .name = "pcmcia",
2699 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002700 .params = "",
2701 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002702 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002703 },
2704 {
2705 .name = "mice",
2706 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002707 .params = "",
2708 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe235cec2011-09-21 15:29:55 -03002709 .mhandler.info = hmp_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002710 },
2711 {
2712 .name = "vnc",
2713 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002714 .params = "",
2715 .help = "show the vnc server status",
Luiz Capitulino2b54aa82011-10-17 16:41:22 -02002716 .mhandler.info = hmp_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002717 },
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002718#if defined(CONFIG_SPICE)
2719 {
2720 .name = "spice",
2721 .args_type = "",
2722 .params = "",
2723 .help = "show the spice server status",
Luiz Capitulinod1f29642011-10-20 17:01:33 -02002724 .mhandler.info = hmp_info_spice,
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002725 },
2726#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002727 {
2728 .name = "name",
2729 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002730 .params = "",
2731 .help = "show the current VM name",
Anthony Liguori48a32be2011-09-02 12:34:48 -05002732 .mhandler.info = hmp_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002733 },
2734 {
2735 .name = "uuid",
2736 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002737 .params = "",
2738 .help = "show the current VM UUID",
Luiz Capitulinoefab7672011-09-13 17:16:25 -03002739 .mhandler.info = hmp_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002740 },
j_mayer76a66252007-03-07 08:32:30 +00002741#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002742 {
2743 .name = "cpustats",
2744 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002745 .params = "",
2746 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002747 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002748 },
j_mayer76a66252007-03-07 08:32:30 +00002749#endif
blueswir131a60e22007-10-26 18:42:59 +00002750#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002751 {
2752 .name = "usernet",
2753 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002754 .params = "",
2755 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002756 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002757 },
blueswir131a60e22007-10-26 18:42:59 +00002758#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002759 {
2760 .name = "migrate",
2761 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002762 .params = "",
2763 .help = "show migration status",
Luiz Capitulino791e7c82011-09-13 17:37:16 -03002764 .mhandler.info = hmp_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002765 },
2766 {
Orit Wassermanbbf6da32012-08-06 21:42:47 +03002767 .name = "migrate_capabilities",
2768 .args_type = "",
2769 .params = "",
2770 .help = "show current migration capabilities",
2771 .mhandler.info = hmp_info_migrate_capabilities,
2772 },
2773 {
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +03002774 .name = "migrate_cache_size",
2775 .args_type = "",
2776 .params = "",
2777 .help = "show current migration xbzrle cache size",
2778 .mhandler.info = hmp_info_migrate_cache_size,
2779 },
2780 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002781 .name = "balloon",
2782 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002783 .params = "",
2784 .help = "show balloon information",
Luiz Capitulino96637bc2011-10-21 11:41:37 -02002785 .mhandler.info = hmp_info_balloon,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002786 },
2787 {
2788 .name = "qtree",
2789 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002790 .params = "",
2791 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002792 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002793 },
2794 {
2795 .name = "qdm",
2796 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002797 .params = "",
2798 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002799 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002800 },
2801 {
2802 .name = "roms",
2803 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002804 .params = "",
2805 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002806 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002807 },
Prerna Saxena22890ab2010-06-24 17:04:53 +05302808 {
2809 .name = "trace-events",
2810 .args_type = "",
2811 .params = "",
2812 .help = "show available trace-events & their state",
Lluísfc764102011-08-31 20:31:18 +02002813 .mhandler.info = do_trace_print_events,
Prerna Saxena22890ab2010-06-24 17:04:53 +05302814 },
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002815 {
2816 .name = NULL,
2817 },
bellard9dc39cb2004-03-14 21:38:27 +00002818};
2819
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03002820static const mon_cmd_t qmp_cmds[] = {
Anthony Liguorie3193602011-09-02 12:34:47 -05002821#include "qmp-commands-old.h"
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03002822 { /* NULL */ },
2823};
2824
bellard9307c4c2004-04-04 12:57:25 +00002825/*******************************************************************/
2826
2827static const char *pch;
2828static jmp_buf expr_env;
2829
bellard92a31b12005-02-10 22:00:52 +00002830#define MD_TLONG 0
2831#define MD_I32 1
2832
bellard9307c4c2004-04-04 12:57:25 +00002833typedef struct MonitorDef {
2834 const char *name;
2835 int offset;
blueswir18662d652008-10-02 18:32:44 +00002836 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002837 int type;
bellard9307c4c2004-04-04 12:57:25 +00002838} MonitorDef;
2839
bellard57206fd2004-04-25 18:54:52 +00002840#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002841static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002842{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002843 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002844 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002845}
2846#endif
2847
bellarda541f292004-04-12 20:39:29 +00002848#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002849static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002850{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002851 CPUArchState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002852 unsigned int u;
2853 int i;
2854
2855 u = 0;
2856 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002857 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002858
2859 return u;
2860}
2861
blueswir18662d652008-10-02 18:32:44 +00002862static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002863{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002864 CPUArchState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00002865 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002866}
2867
blueswir18662d652008-10-02 18:32:44 +00002868static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002869{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002870 CPUArchState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00002871 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002872}
bellard9fddaa02004-05-21 12:59:32 +00002873
blueswir18662d652008-10-02 18:32:44 +00002874static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002875{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002876 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002877 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002878}
2879
blueswir18662d652008-10-02 18:32:44 +00002880static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002881{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002882 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002883 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002884}
2885
blueswir18662d652008-10-02 18:32:44 +00002886static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002887{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002888 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002889 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002890}
bellarda541f292004-04-12 20:39:29 +00002891#endif
2892
bellarde95c8d52004-09-30 22:22:08 +00002893#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002894#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002895static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002896{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002897 CPUArchState *env = mon_get_cpu();
Blue Swirl5a834bb2010-05-09 20:19:04 +00002898
2899 return cpu_get_psr(env);
bellarde95c8d52004-09-30 22:22:08 +00002900}
bellard7b936c02005-10-30 17:05:13 +00002901#endif
bellarde95c8d52004-09-30 22:22:08 +00002902
blueswir18662d652008-10-02 18:32:44 +00002903static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002904{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002905 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002906 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002907}
2908#endif
2909
blueswir18662d652008-10-02 18:32:44 +00002910static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002911#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002912
2913#define SEG(name, seg) \
Andreas Färbere59d1672012-02-16 00:40:47 +01002914 { name, offsetof(CPUX86State, segs[seg].selector), NULL, MD_I32 },\
2915 { name ".base", offsetof(CPUX86State, segs[seg].base) },\
2916 { name ".limit", offsetof(CPUX86State, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002917
Andreas Färbere59d1672012-02-16 00:40:47 +01002918 { "eax", offsetof(CPUX86State, regs[0]) },
2919 { "ecx", offsetof(CPUX86State, regs[1]) },
2920 { "edx", offsetof(CPUX86State, regs[2]) },
2921 { "ebx", offsetof(CPUX86State, regs[3]) },
2922 { "esp|sp", offsetof(CPUX86State, regs[4]) },
2923 { "ebp|fp", offsetof(CPUX86State, regs[5]) },
2924 { "esi", offsetof(CPUX86State, regs[6]) },
2925 { "edi", offsetof(CPUX86State, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002926#ifdef TARGET_X86_64
Andreas Färbere59d1672012-02-16 00:40:47 +01002927 { "r8", offsetof(CPUX86State, regs[8]) },
2928 { "r9", offsetof(CPUX86State, regs[9]) },
2929 { "r10", offsetof(CPUX86State, regs[10]) },
2930 { "r11", offsetof(CPUX86State, regs[11]) },
2931 { "r12", offsetof(CPUX86State, regs[12]) },
2932 { "r13", offsetof(CPUX86State, regs[13]) },
2933 { "r14", offsetof(CPUX86State, regs[14]) },
2934 { "r15", offsetof(CPUX86State, regs[15]) },
bellard92a31b12005-02-10 22:00:52 +00002935#endif
Andreas Färbere59d1672012-02-16 00:40:47 +01002936 { "eflags", offsetof(CPUX86State, eflags) },
2937 { "eip", offsetof(CPUX86State, eip) },
bellard57206fd2004-04-25 18:54:52 +00002938 SEG("cs", R_CS)
2939 SEG("ds", R_DS)
2940 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002941 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002942 SEG("fs", R_FS)
2943 SEG("gs", R_GS)
2944 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002945#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002946 /* General purpose registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01002947 { "r0", offsetof(CPUPPCState, gpr[0]) },
2948 { "r1", offsetof(CPUPPCState, gpr[1]) },
2949 { "r2", offsetof(CPUPPCState, gpr[2]) },
2950 { "r3", offsetof(CPUPPCState, gpr[3]) },
2951 { "r4", offsetof(CPUPPCState, gpr[4]) },
2952 { "r5", offsetof(CPUPPCState, gpr[5]) },
2953 { "r6", offsetof(CPUPPCState, gpr[6]) },
2954 { "r7", offsetof(CPUPPCState, gpr[7]) },
2955 { "r8", offsetof(CPUPPCState, gpr[8]) },
2956 { "r9", offsetof(CPUPPCState, gpr[9]) },
2957 { "r10", offsetof(CPUPPCState, gpr[10]) },
2958 { "r11", offsetof(CPUPPCState, gpr[11]) },
2959 { "r12", offsetof(CPUPPCState, gpr[12]) },
2960 { "r13", offsetof(CPUPPCState, gpr[13]) },
2961 { "r14", offsetof(CPUPPCState, gpr[14]) },
2962 { "r15", offsetof(CPUPPCState, gpr[15]) },
2963 { "r16", offsetof(CPUPPCState, gpr[16]) },
2964 { "r17", offsetof(CPUPPCState, gpr[17]) },
2965 { "r18", offsetof(CPUPPCState, gpr[18]) },
2966 { "r19", offsetof(CPUPPCState, gpr[19]) },
2967 { "r20", offsetof(CPUPPCState, gpr[20]) },
2968 { "r21", offsetof(CPUPPCState, gpr[21]) },
2969 { "r22", offsetof(CPUPPCState, gpr[22]) },
2970 { "r23", offsetof(CPUPPCState, gpr[23]) },
2971 { "r24", offsetof(CPUPPCState, gpr[24]) },
2972 { "r25", offsetof(CPUPPCState, gpr[25]) },
2973 { "r26", offsetof(CPUPPCState, gpr[26]) },
2974 { "r27", offsetof(CPUPPCState, gpr[27]) },
2975 { "r28", offsetof(CPUPPCState, gpr[28]) },
2976 { "r29", offsetof(CPUPPCState, gpr[29]) },
2977 { "r30", offsetof(CPUPPCState, gpr[30]) },
2978 { "r31", offsetof(CPUPPCState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00002979 /* Floating point registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01002980 { "f0", offsetof(CPUPPCState, fpr[0]) },
2981 { "f1", offsetof(CPUPPCState, fpr[1]) },
2982 { "f2", offsetof(CPUPPCState, fpr[2]) },
2983 { "f3", offsetof(CPUPPCState, fpr[3]) },
2984 { "f4", offsetof(CPUPPCState, fpr[4]) },
2985 { "f5", offsetof(CPUPPCState, fpr[5]) },
2986 { "f6", offsetof(CPUPPCState, fpr[6]) },
2987 { "f7", offsetof(CPUPPCState, fpr[7]) },
2988 { "f8", offsetof(CPUPPCState, fpr[8]) },
2989 { "f9", offsetof(CPUPPCState, fpr[9]) },
2990 { "f10", offsetof(CPUPPCState, fpr[10]) },
2991 { "f11", offsetof(CPUPPCState, fpr[11]) },
2992 { "f12", offsetof(CPUPPCState, fpr[12]) },
2993 { "f13", offsetof(CPUPPCState, fpr[13]) },
2994 { "f14", offsetof(CPUPPCState, fpr[14]) },
2995 { "f15", offsetof(CPUPPCState, fpr[15]) },
2996 { "f16", offsetof(CPUPPCState, fpr[16]) },
2997 { "f17", offsetof(CPUPPCState, fpr[17]) },
2998 { "f18", offsetof(CPUPPCState, fpr[18]) },
2999 { "f19", offsetof(CPUPPCState, fpr[19]) },
3000 { "f20", offsetof(CPUPPCState, fpr[20]) },
3001 { "f21", offsetof(CPUPPCState, fpr[21]) },
3002 { "f22", offsetof(CPUPPCState, fpr[22]) },
3003 { "f23", offsetof(CPUPPCState, fpr[23]) },
3004 { "f24", offsetof(CPUPPCState, fpr[24]) },
3005 { "f25", offsetof(CPUPPCState, fpr[25]) },
3006 { "f26", offsetof(CPUPPCState, fpr[26]) },
3007 { "f27", offsetof(CPUPPCState, fpr[27]) },
3008 { "f28", offsetof(CPUPPCState, fpr[28]) },
3009 { "f29", offsetof(CPUPPCState, fpr[29]) },
3010 { "f30", offsetof(CPUPPCState, fpr[30]) },
3011 { "f31", offsetof(CPUPPCState, fpr[31]) },
3012 { "fpscr", offsetof(CPUPPCState, fpscr) },
j_mayerff937db2007-09-19 05:49:13 +00003013 /* Next instruction pointer */
Andreas Färbere59d1672012-02-16 00:40:47 +01003014 { "nip|pc", offsetof(CPUPPCState, nip) },
3015 { "lr", offsetof(CPUPPCState, lr) },
3016 { "ctr", offsetof(CPUPPCState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00003017 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00003018 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00003019 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00003020 { "msr", 0, &monitor_get_msr, },
3021 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00003022 { "tbu", 0, &monitor_get_tbu, },
3023 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00003024#if defined(TARGET_PPC64)
3025 /* Address space register */
Andreas Färbere59d1672012-02-16 00:40:47 +01003026 { "asr", offsetof(CPUPPCState, asr) },
j_mayerff937db2007-09-19 05:49:13 +00003027#endif
3028 /* Segment registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01003029 { "sdr1", offsetof(CPUPPCState, spr[SPR_SDR1]) },
3030 { "sr0", offsetof(CPUPPCState, sr[0]) },
3031 { "sr1", offsetof(CPUPPCState, sr[1]) },
3032 { "sr2", offsetof(CPUPPCState, sr[2]) },
3033 { "sr3", offsetof(CPUPPCState, sr[3]) },
3034 { "sr4", offsetof(CPUPPCState, sr[4]) },
3035 { "sr5", offsetof(CPUPPCState, sr[5]) },
3036 { "sr6", offsetof(CPUPPCState, sr[6]) },
3037 { "sr7", offsetof(CPUPPCState, sr[7]) },
3038 { "sr8", offsetof(CPUPPCState, sr[8]) },
3039 { "sr9", offsetof(CPUPPCState, sr[9]) },
3040 { "sr10", offsetof(CPUPPCState, sr[10]) },
3041 { "sr11", offsetof(CPUPPCState, sr[11]) },
3042 { "sr12", offsetof(CPUPPCState, sr[12]) },
3043 { "sr13", offsetof(CPUPPCState, sr[13]) },
3044 { "sr14", offsetof(CPUPPCState, sr[14]) },
3045 { "sr15", offsetof(CPUPPCState, sr[15]) },
Scott Wood90dc8812011-04-29 17:10:23 -05003046 /* Too lazy to put BATs... */
Andreas Färbere59d1672012-02-16 00:40:47 +01003047 { "pvr", offsetof(CPUPPCState, spr[SPR_PVR]) },
Scott Wood90dc8812011-04-29 17:10:23 -05003048
Andreas Färbere59d1672012-02-16 00:40:47 +01003049 { "srr0", offsetof(CPUPPCState, spr[SPR_SRR0]) },
3050 { "srr1", offsetof(CPUPPCState, spr[SPR_SRR1]) },
3051 { "sprg0", offsetof(CPUPPCState, spr[SPR_SPRG0]) },
3052 { "sprg1", offsetof(CPUPPCState, spr[SPR_SPRG1]) },
3053 { "sprg2", offsetof(CPUPPCState, spr[SPR_SPRG2]) },
3054 { "sprg3", offsetof(CPUPPCState, spr[SPR_SPRG3]) },
3055 { "sprg4", offsetof(CPUPPCState, spr[SPR_SPRG4]) },
3056 { "sprg5", offsetof(CPUPPCState, spr[SPR_SPRG5]) },
3057 { "sprg6", offsetof(CPUPPCState, spr[SPR_SPRG6]) },
3058 { "sprg7", offsetof(CPUPPCState, spr[SPR_SPRG7]) },
3059 { "pid", offsetof(CPUPPCState, spr[SPR_BOOKE_PID]) },
3060 { "csrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR0]) },
3061 { "csrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR1]) },
3062 { "esr", offsetof(CPUPPCState, spr[SPR_BOOKE_ESR]) },
3063 { "dear", offsetof(CPUPPCState, spr[SPR_BOOKE_DEAR]) },
3064 { "mcsr", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSR]) },
3065 { "tsr", offsetof(CPUPPCState, spr[SPR_BOOKE_TSR]) },
3066 { "tcr", offsetof(CPUPPCState, spr[SPR_BOOKE_TCR]) },
3067 { "vrsave", offsetof(CPUPPCState, spr[SPR_VRSAVE]) },
3068 { "pir", offsetof(CPUPPCState, spr[SPR_BOOKE_PIR]) },
3069 { "mcsrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR0]) },
3070 { "mcsrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR1]) },
3071 { "decar", offsetof(CPUPPCState, spr[SPR_BOOKE_DECAR]) },
3072 { "ivpr", offsetof(CPUPPCState, spr[SPR_BOOKE_IVPR]) },
3073 { "epcr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPCR]) },
3074 { "sprg8", offsetof(CPUPPCState, spr[SPR_BOOKE_SPRG8]) },
3075 { "ivor0", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR0]) },
3076 { "ivor1", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR1]) },
3077 { "ivor2", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR2]) },
3078 { "ivor3", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR3]) },
3079 { "ivor4", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR4]) },
3080 { "ivor5", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR5]) },
3081 { "ivor6", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR6]) },
3082 { "ivor7", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR7]) },
3083 { "ivor8", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR8]) },
3084 { "ivor9", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR9]) },
3085 { "ivor10", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR10]) },
3086 { "ivor11", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR11]) },
3087 { "ivor12", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR12]) },
3088 { "ivor13", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR13]) },
3089 { "ivor14", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR14]) },
3090 { "ivor15", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR15]) },
3091 { "ivor32", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR32]) },
3092 { "ivor33", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR33]) },
3093 { "ivor34", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR34]) },
3094 { "ivor35", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR35]) },
3095 { "ivor36", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR36]) },
3096 { "ivor37", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR37]) },
3097 { "mas0", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS0]) },
3098 { "mas1", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS1]) },
3099 { "mas2", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS2]) },
3100 { "mas3", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS3]) },
3101 { "mas4", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS4]) },
3102 { "mas6", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS6]) },
3103 { "mas7", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS7]) },
3104 { "mmucfg", offsetof(CPUPPCState, spr[SPR_MMUCFG]) },
3105 { "tlb0cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB0CFG]) },
3106 { "tlb1cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB1CFG]) },
3107 { "epr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPR]) },
3108 { "eplc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPLC]) },
3109 { "epsc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPSC]) },
3110 { "svr", offsetof(CPUPPCState, spr[SPR_E500_SVR]) },
3111 { "mcar", offsetof(CPUPPCState, spr[SPR_Exxx_MCAR]) },
3112 { "pid1", offsetof(CPUPPCState, spr[SPR_BOOKE_PID1]) },
3113 { "pid2", offsetof(CPUPPCState, spr[SPR_BOOKE_PID2]) },
3114 { "hid0", offsetof(CPUPPCState, spr[SPR_HID0]) },
Scott Wood90dc8812011-04-29 17:10:23 -05003115
bellarde95c8d52004-09-30 22:22:08 +00003116#elif defined(TARGET_SPARC)
Andreas Färbere59d1672012-02-16 00:40:47 +01003117 { "g0", offsetof(CPUSPARCState, gregs[0]) },
3118 { "g1", offsetof(CPUSPARCState, gregs[1]) },
3119 { "g2", offsetof(CPUSPARCState, gregs[2]) },
3120 { "g3", offsetof(CPUSPARCState, gregs[3]) },
3121 { "g4", offsetof(CPUSPARCState, gregs[4]) },
3122 { "g5", offsetof(CPUSPARCState, gregs[5]) },
3123 { "g6", offsetof(CPUSPARCState, gregs[6]) },
3124 { "g7", offsetof(CPUSPARCState, gregs[7]) },
bellarde95c8d52004-09-30 22:22:08 +00003125 { "o0", 0, monitor_get_reg },
3126 { "o1", 1, monitor_get_reg },
3127 { "o2", 2, monitor_get_reg },
3128 { "o3", 3, monitor_get_reg },
3129 { "o4", 4, monitor_get_reg },
3130 { "o5", 5, monitor_get_reg },
3131 { "o6", 6, monitor_get_reg },
3132 { "o7", 7, monitor_get_reg },
3133 { "l0", 8, monitor_get_reg },
3134 { "l1", 9, monitor_get_reg },
3135 { "l2", 10, monitor_get_reg },
3136 { "l3", 11, monitor_get_reg },
3137 { "l4", 12, monitor_get_reg },
3138 { "l5", 13, monitor_get_reg },
3139 { "l6", 14, monitor_get_reg },
3140 { "l7", 15, monitor_get_reg },
3141 { "i0", 16, monitor_get_reg },
3142 { "i1", 17, monitor_get_reg },
3143 { "i2", 18, monitor_get_reg },
3144 { "i3", 19, monitor_get_reg },
3145 { "i4", 20, monitor_get_reg },
3146 { "i5", 21, monitor_get_reg },
3147 { "i6", 22, monitor_get_reg },
3148 { "i7", 23, monitor_get_reg },
Andreas Färbere59d1672012-02-16 00:40:47 +01003149 { "pc", offsetof(CPUSPARCState, pc) },
3150 { "npc", offsetof(CPUSPARCState, npc) },
3151 { "y", offsetof(CPUSPARCState, y) },
bellard7b936c02005-10-30 17:05:13 +00003152#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00003153 { "psr", 0, &monitor_get_psr, },
Andreas Färbere59d1672012-02-16 00:40:47 +01003154 { "wim", offsetof(CPUSPARCState, wim) },
bellard7b936c02005-10-30 17:05:13 +00003155#endif
Andreas Färbere59d1672012-02-16 00:40:47 +01003156 { "tbr", offsetof(CPUSPARCState, tbr) },
3157 { "fsr", offsetof(CPUSPARCState, fsr) },
3158 { "f0", offsetof(CPUSPARCState, fpr[0].l.upper) },
3159 { "f1", offsetof(CPUSPARCState, fpr[0].l.lower) },
3160 { "f2", offsetof(CPUSPARCState, fpr[1].l.upper) },
3161 { "f3", offsetof(CPUSPARCState, fpr[1].l.lower) },
3162 { "f4", offsetof(CPUSPARCState, fpr[2].l.upper) },
3163 { "f5", offsetof(CPUSPARCState, fpr[2].l.lower) },
3164 { "f6", offsetof(CPUSPARCState, fpr[3].l.upper) },
3165 { "f7", offsetof(CPUSPARCState, fpr[3].l.lower) },
3166 { "f8", offsetof(CPUSPARCState, fpr[4].l.upper) },
3167 { "f9", offsetof(CPUSPARCState, fpr[4].l.lower) },
3168 { "f10", offsetof(CPUSPARCState, fpr[5].l.upper) },
3169 { "f11", offsetof(CPUSPARCState, fpr[5].l.lower) },
3170 { "f12", offsetof(CPUSPARCState, fpr[6].l.upper) },
3171 { "f13", offsetof(CPUSPARCState, fpr[6].l.lower) },
3172 { "f14", offsetof(CPUSPARCState, fpr[7].l.upper) },
3173 { "f15", offsetof(CPUSPARCState, fpr[7].l.lower) },
3174 { "f16", offsetof(CPUSPARCState, fpr[8].l.upper) },
3175 { "f17", offsetof(CPUSPARCState, fpr[8].l.lower) },
3176 { "f18", offsetof(CPUSPARCState, fpr[9].l.upper) },
3177 { "f19", offsetof(CPUSPARCState, fpr[9].l.lower) },
3178 { "f20", offsetof(CPUSPARCState, fpr[10].l.upper) },
3179 { "f21", offsetof(CPUSPARCState, fpr[10].l.lower) },
3180 { "f22", offsetof(CPUSPARCState, fpr[11].l.upper) },
3181 { "f23", offsetof(CPUSPARCState, fpr[11].l.lower) },
3182 { "f24", offsetof(CPUSPARCState, fpr[12].l.upper) },
3183 { "f25", offsetof(CPUSPARCState, fpr[12].l.lower) },
3184 { "f26", offsetof(CPUSPARCState, fpr[13].l.upper) },
3185 { "f27", offsetof(CPUSPARCState, fpr[13].l.lower) },
3186 { "f28", offsetof(CPUSPARCState, fpr[14].l.upper) },
3187 { "f29", offsetof(CPUSPARCState, fpr[14].l.lower) },
3188 { "f30", offsetof(CPUSPARCState, fpr[15].l.upper) },
3189 { "f31", offsetof(CPUSPARCState, fpr[15].l.lower) },
bellard7b936c02005-10-30 17:05:13 +00003190#ifdef TARGET_SPARC64
Andreas Färbere59d1672012-02-16 00:40:47 +01003191 { "f32", offsetof(CPUSPARCState, fpr[16]) },
3192 { "f34", offsetof(CPUSPARCState, fpr[17]) },
3193 { "f36", offsetof(CPUSPARCState, fpr[18]) },
3194 { "f38", offsetof(CPUSPARCState, fpr[19]) },
3195 { "f40", offsetof(CPUSPARCState, fpr[20]) },
3196 { "f42", offsetof(CPUSPARCState, fpr[21]) },
3197 { "f44", offsetof(CPUSPARCState, fpr[22]) },
3198 { "f46", offsetof(CPUSPARCState, fpr[23]) },
3199 { "f48", offsetof(CPUSPARCState, fpr[24]) },
3200 { "f50", offsetof(CPUSPARCState, fpr[25]) },
3201 { "f52", offsetof(CPUSPARCState, fpr[26]) },
3202 { "f54", offsetof(CPUSPARCState, fpr[27]) },
3203 { "f56", offsetof(CPUSPARCState, fpr[28]) },
3204 { "f58", offsetof(CPUSPARCState, fpr[29]) },
3205 { "f60", offsetof(CPUSPARCState, fpr[30]) },
3206 { "f62", offsetof(CPUSPARCState, fpr[31]) },
3207 { "asi", offsetof(CPUSPARCState, asi) },
3208 { "pstate", offsetof(CPUSPARCState, pstate) },
3209 { "cansave", offsetof(CPUSPARCState, cansave) },
3210 { "canrestore", offsetof(CPUSPARCState, canrestore) },
3211 { "otherwin", offsetof(CPUSPARCState, otherwin) },
3212 { "wstate", offsetof(CPUSPARCState, wstate) },
3213 { "cleanwin", offsetof(CPUSPARCState, cleanwin) },
3214 { "fprs", offsetof(CPUSPARCState, fprs) },
bellard7b936c02005-10-30 17:05:13 +00003215#endif
bellard9307c4c2004-04-04 12:57:25 +00003216#endif
3217 { NULL },
3218};
3219
aliguori376253e2009-03-05 23:01:23 +00003220static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00003221{
aliguori376253e2009-03-05 23:01:23 +00003222 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00003223 longjmp(expr_env, 1);
3224}
3225
Markus Armbruster09b94182010-01-20 13:07:30 +01003226/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00003227static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00003228{
blueswir18662d652008-10-02 18:32:44 +00003229 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00003230 void *ptr;
3231
bellard9307c4c2004-04-04 12:57:25 +00003232 for(md = monitor_defs; md->name != NULL; md++) {
3233 if (compare_cmd(name, md->name)) {
3234 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003235 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003236 } else {
Andreas Färber9349b4f2012-03-14 01:38:32 +01003237 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003238 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003239 switch(md->type) {
3240 case MD_I32:
3241 *pval = *(int32_t *)ptr;
3242 break;
3243 case MD_TLONG:
3244 *pval = *(target_long *)ptr;
3245 break;
3246 default:
3247 *pval = 0;
3248 break;
3249 }
bellard9307c4c2004-04-04 12:57:25 +00003250 }
3251 return 0;
3252 }
3253 }
3254 return -1;
3255}
3256
3257static void next(void)
3258{
Blue Swirl660f11b2009-07-31 21:16:51 +00003259 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003260 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003261 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003262 pch++;
3263 }
3264}
3265
aliguori376253e2009-03-05 23:01:23 +00003266static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003267
aliguori376253e2009-03-05 23:01:23 +00003268static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003269{
blueswir1c2efc952007-09-25 17:28:42 +00003270 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003271 char *p;
bellard6a00d602005-11-21 23:25:50 +00003272 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003273
3274 switch(*pch) {
3275 case '+':
3276 next();
aliguori376253e2009-03-05 23:01:23 +00003277 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003278 break;
3279 case '-':
3280 next();
aliguori376253e2009-03-05 23:01:23 +00003281 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003282 break;
3283 case '~':
3284 next();
aliguori376253e2009-03-05 23:01:23 +00003285 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003286 break;
3287 case '(':
3288 next();
aliguori376253e2009-03-05 23:01:23 +00003289 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003290 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003291 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003292 }
3293 next();
3294 break;
bellard81d09122004-07-14 17:21:37 +00003295 case '\'':
3296 pch++;
3297 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003298 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003299 n = *pch;
3300 pch++;
3301 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003302 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003303 next();
3304 break;
bellard9307c4c2004-04-04 12:57:25 +00003305 case '$':
3306 {
3307 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003308 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003309
bellard9307c4c2004-04-04 12:57:25 +00003310 pch++;
3311 q = buf;
3312 while ((*pch >= 'a' && *pch <= 'z') ||
3313 (*pch >= 'A' && *pch <= 'Z') ||
3314 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003315 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003316 if ((q - buf) < sizeof(buf) - 1)
3317 *q++ = *pch;
3318 pch++;
3319 }
blueswir1cd390082008-11-16 13:53:32 +00003320 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003321 pch++;
3322 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003323 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003324 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003325 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003326 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003327 }
3328 break;
3329 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003330 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003331 n = 0;
3332 break;
3333 default:
Luiz Capitulino6b0e33b2012-04-26 16:48:41 -03003334 errno = 0;
blueswir17743e582007-09-24 18:39:04 +00003335#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003336 n = strtoull(pch, &p, 0);
3337#else
bellard9307c4c2004-04-04 12:57:25 +00003338 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003339#endif
Luiz Capitulino6b0e33b2012-04-26 16:48:41 -03003340 if (errno == ERANGE) {
3341 expr_error(mon, "number too large");
3342 }
bellard9307c4c2004-04-04 12:57:25 +00003343 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003344 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003345 }
3346 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003347 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003348 pch++;
3349 break;
3350 }
3351 return n;
3352}
3353
3354
aliguori376253e2009-03-05 23:01:23 +00003355static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003356{
blueswir1c2efc952007-09-25 17:28:42 +00003357 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003358 int op;
ths3b46e622007-09-17 08:09:54 +00003359
aliguori376253e2009-03-05 23:01:23 +00003360 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003361 for(;;) {
3362 op = *pch;
3363 if (op != '*' && op != '/' && op != '%')
3364 break;
3365 next();
aliguori376253e2009-03-05 23:01:23 +00003366 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003367 switch(op) {
3368 default:
3369 case '*':
3370 val *= val2;
3371 break;
3372 case '/':
3373 case '%':
ths5fafdf22007-09-16 21:08:06 +00003374 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003375 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003376 if (op == '/')
3377 val /= val2;
3378 else
3379 val %= val2;
3380 break;
3381 }
3382 }
3383 return val;
3384}
3385
aliguori376253e2009-03-05 23:01:23 +00003386static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003387{
blueswir1c2efc952007-09-25 17:28:42 +00003388 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003389 int op;
bellard9307c4c2004-04-04 12:57:25 +00003390
aliguori376253e2009-03-05 23:01:23 +00003391 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003392 for(;;) {
3393 op = *pch;
3394 if (op != '&' && op != '|' && op != '^')
3395 break;
3396 next();
aliguori376253e2009-03-05 23:01:23 +00003397 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003398 switch(op) {
3399 default:
3400 case '&':
3401 val &= val2;
3402 break;
3403 case '|':
3404 val |= val2;
3405 break;
3406 case '^':
3407 val ^= val2;
3408 break;
3409 }
3410 }
3411 return val;
3412}
3413
aliguori376253e2009-03-05 23:01:23 +00003414static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003415{
blueswir1c2efc952007-09-25 17:28:42 +00003416 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003417 int op;
bellard9307c4c2004-04-04 12:57:25 +00003418
aliguori376253e2009-03-05 23:01:23 +00003419 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003420 for(;;) {
3421 op = *pch;
3422 if (op != '+' && op != '-')
3423 break;
3424 next();
aliguori376253e2009-03-05 23:01:23 +00003425 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003426 if (op == '+')
3427 val += val2;
3428 else
3429 val -= val2;
3430 }
3431 return val;
3432}
3433
aliguori376253e2009-03-05 23:01:23 +00003434static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003435{
3436 pch = *pp;
3437 if (setjmp(expr_env)) {
3438 *pp = pch;
3439 return -1;
3440 }
blueswir1cd390082008-11-16 13:53:32 +00003441 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003442 pch++;
aliguori376253e2009-03-05 23:01:23 +00003443 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003444 *pp = pch;
3445 return 0;
3446}
3447
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003448static int get_double(Monitor *mon, double *pval, const char **pp)
3449{
3450 const char *p = *pp;
3451 char *tailp;
3452 double d;
3453
3454 d = strtod(p, &tailp);
3455 if (tailp == p) {
3456 monitor_printf(mon, "Number expected\n");
3457 return -1;
3458 }
3459 if (d != d || d - d != 0) {
3460 /* NaN or infinity */
3461 monitor_printf(mon, "Bad number\n");
3462 return -1;
3463 }
3464 *pval = d;
3465 *pp = tailp;
3466 return 0;
3467}
3468
bellard9307c4c2004-04-04 12:57:25 +00003469static int get_str(char *buf, int buf_size, const char **pp)
3470{
3471 const char *p;
3472 char *q;
3473 int c;
3474
bellard81d09122004-07-14 17:21:37 +00003475 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003476 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003477 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003478 p++;
3479 if (*p == '\0') {
3480 fail:
bellard81d09122004-07-14 17:21:37 +00003481 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003482 *pp = p;
3483 return -1;
3484 }
bellard9307c4c2004-04-04 12:57:25 +00003485 if (*p == '\"') {
3486 p++;
3487 while (*p != '\0' && *p != '\"') {
3488 if (*p == '\\') {
3489 p++;
3490 c = *p++;
3491 switch(c) {
3492 case 'n':
3493 c = '\n';
3494 break;
3495 case 'r':
3496 c = '\r';
3497 break;
3498 case '\\':
3499 case '\'':
3500 case '\"':
3501 break;
3502 default:
3503 qemu_printf("unsupported escape code: '\\%c'\n", c);
3504 goto fail;
3505 }
3506 if ((q - buf) < buf_size - 1) {
3507 *q++ = c;
3508 }
3509 } else {
3510 if ((q - buf) < buf_size - 1) {
3511 *q++ = *p;
3512 }
3513 p++;
3514 }
3515 }
3516 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003517 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003518 goto fail;
3519 }
3520 p++;
3521 } else {
blueswir1cd390082008-11-16 13:53:32 +00003522 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003523 if ((q - buf) < buf_size - 1) {
3524 *q++ = *p;
3525 }
3526 p++;
3527 }
bellard9307c4c2004-04-04 12:57:25 +00003528 }
bellard81d09122004-07-14 17:21:37 +00003529 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003530 *pp = p;
3531 return 0;
3532}
3533
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003534/*
3535 * Store the command-name in cmdname, and return a pointer to
3536 * the remaining of the command string.
3537 */
3538static const char *get_command_name(const char *cmdline,
3539 char *cmdname, size_t nlen)
3540{
3541 size_t len;
3542 const char *p, *pstart;
3543
3544 p = cmdline;
3545 while (qemu_isspace(*p))
3546 p++;
3547 if (*p == '\0')
3548 return NULL;
3549 pstart = p;
3550 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3551 p++;
3552 len = p - pstart;
3553 if (len > nlen - 1)
3554 len = nlen - 1;
3555 memcpy(cmdname, pstart, len);
3556 cmdname[len] = '\0';
3557 return p;
3558}
3559
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003560/**
3561 * Read key of 'type' into 'key' and return the current
3562 * 'type' pointer.
3563 */
3564static char *key_get_info(const char *type, char **key)
3565{
3566 size_t len;
3567 char *p, *str;
3568
3569 if (*type == ',')
3570 type++;
3571
3572 p = strchr(type, ':');
3573 if (!p) {
3574 *key = NULL;
3575 return NULL;
3576 }
3577 len = p - type;
3578
Anthony Liguori7267c092011-08-20 22:09:37 -05003579 str = g_malloc(len + 1);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003580 memcpy(str, type, len);
3581 str[len] = '\0';
3582
3583 *key = str;
3584 return ++p;
3585}
3586
bellard9307c4c2004-04-04 12:57:25 +00003587static int default_fmt_format = 'x';
3588static int default_fmt_size = 4;
3589
3590#define MAX_ARGS 16
3591
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003592static int is_valid_option(const char *c, const char *typestr)
3593{
3594 char option[3];
3595
3596 option[0] = '-';
3597 option[1] = *c;
3598 option[2] = '\0';
3599
3600 typestr = strstr(typestr, option);
3601 return (typestr != NULL);
3602}
3603
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003604static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3605 const char *cmdname)
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003606{
3607 const mon_cmd_t *cmd;
3608
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003609 for (cmd = disp_table; cmd->name != NULL; cmd++) {
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003610 if (compare_cmd(cmdname, cmd->name)) {
3611 return cmd;
3612 }
3613 }
3614
3615 return NULL;
3616}
3617
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003618static const mon_cmd_t *monitor_find_command(const char *cmdname)
3619{
3620 return search_dispatch_table(mon_cmds, cmdname);
3621}
3622
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003623static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3624{
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003625 return search_dispatch_table(qmp_cmds, cmdname);
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003626}
3627
Anthony Liguoric227f092009-10-01 16:12:16 -05003628static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003629 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003630 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003631{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003632 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003633 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003634 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003635 char cmdname[256];
3636 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003637 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003638
3639#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003640 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003641#endif
ths3b46e622007-09-17 08:09:54 +00003642
bellard9307c4c2004-04-04 12:57:25 +00003643 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003644 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3645 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003646 return NULL;
ths3b46e622007-09-17 08:09:54 +00003647
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003648 cmd = monitor_find_command(cmdname);
3649 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003650 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003651 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003652 }
bellard9307c4c2004-04-04 12:57:25 +00003653
bellard9307c4c2004-04-04 12:57:25 +00003654 /* parse the parameters */
3655 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003656 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003657 typestr = key_get_info(typestr, &key);
3658 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003659 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003660 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003661 typestr++;
3662 switch(c) {
3663 case 'F':
bellard81d09122004-07-14 17:21:37 +00003664 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003665 case 's':
3666 {
3667 int ret;
ths3b46e622007-09-17 08:09:54 +00003668
blueswir1cd390082008-11-16 13:53:32 +00003669 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003670 p++;
3671 if (*typestr == '?') {
3672 typestr++;
3673 if (*p == '\0') {
3674 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003675 break;
bellard9307c4c2004-04-04 12:57:25 +00003676 }
3677 }
3678 ret = get_str(buf, sizeof(buf), &p);
3679 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003680 switch(c) {
3681 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003682 monitor_printf(mon, "%s: filename expected\n",
3683 cmdname);
bellard81d09122004-07-14 17:21:37 +00003684 break;
3685 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003686 monitor_printf(mon, "%s: block device name expected\n",
3687 cmdname);
bellard81d09122004-07-14 17:21:37 +00003688 break;
3689 default:
aliguori376253e2009-03-05 23:01:23 +00003690 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003691 break;
3692 }
bellard9307c4c2004-04-04 12:57:25 +00003693 goto fail;
3694 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003695 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003696 }
3697 break;
Markus Armbruster361127d2010-02-10 20:24:35 +01003698 case 'O':
3699 {
3700 QemuOptsList *opts_list;
3701 QemuOpts *opts;
3702
3703 opts_list = qemu_find_opts(key);
3704 if (!opts_list || opts_list->desc->name) {
3705 goto bad_type;
3706 }
3707 while (qemu_isspace(*p)) {
3708 p++;
3709 }
3710 if (!*p)
3711 break;
3712 if (get_str(buf, sizeof(buf), &p) < 0) {
3713 goto fail;
3714 }
3715 opts = qemu_opts_parse(opts_list, buf, 1);
3716 if (!opts) {
3717 goto fail;
3718 }
3719 qemu_opts_to_qdict(opts, qdict);
3720 qemu_opts_del(opts);
3721 }
3722 break;
bellard9307c4c2004-04-04 12:57:25 +00003723 case '/':
3724 {
3725 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003726
blueswir1cd390082008-11-16 13:53:32 +00003727 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003728 p++;
3729 if (*p == '/') {
3730 /* format found */
3731 p++;
3732 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003733 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003734 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003735 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003736 count = count * 10 + (*p - '0');
3737 p++;
3738 }
3739 }
3740 size = -1;
3741 format = -1;
3742 for(;;) {
3743 switch(*p) {
3744 case 'o':
3745 case 'd':
3746 case 'u':
3747 case 'x':
3748 case 'i':
3749 case 'c':
3750 format = *p++;
3751 break;
3752 case 'b':
3753 size = 1;
3754 p++;
3755 break;
3756 case 'h':
3757 size = 2;
3758 p++;
3759 break;
3760 case 'w':
3761 size = 4;
3762 p++;
3763 break;
3764 case 'g':
3765 case 'L':
3766 size = 8;
3767 p++;
3768 break;
3769 default:
3770 goto next;
3771 }
3772 }
3773 next:
blueswir1cd390082008-11-16 13:53:32 +00003774 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003775 monitor_printf(mon, "invalid char in format: '%c'\n",
3776 *p);
bellard9307c4c2004-04-04 12:57:25 +00003777 goto fail;
3778 }
bellard9307c4c2004-04-04 12:57:25 +00003779 if (format < 0)
3780 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003781 if (format != 'i') {
3782 /* for 'i', not specifying a size gives -1 as size */
3783 if (size < 0)
3784 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003785 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003786 }
bellard9307c4c2004-04-04 12:57:25 +00003787 default_fmt_format = format;
3788 } else {
3789 count = 1;
3790 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003791 if (format != 'i') {
3792 size = default_fmt_size;
3793 } else {
3794 size = -1;
3795 }
bellard9307c4c2004-04-04 12:57:25 +00003796 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003797 qdict_put(qdict, "count", qint_from_int(count));
3798 qdict_put(qdict, "format", qint_from_int(format));
3799 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003800 }
3801 break;
3802 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003803 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003804 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003805 {
blueswir1c2efc952007-09-25 17:28:42 +00003806 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003807
blueswir1cd390082008-11-16 13:53:32 +00003808 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003809 p++;
bellard34405572004-06-08 00:55:58 +00003810 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003811 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003812 if (*p == '\0') {
3813 typestr++;
3814 break;
3815 }
bellard34405572004-06-08 00:55:58 +00003816 } else {
3817 if (*p == '.') {
3818 p++;
blueswir1cd390082008-11-16 13:53:32 +00003819 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003820 p++;
bellard34405572004-06-08 00:55:58 +00003821 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003822 typestr++;
3823 break;
bellard34405572004-06-08 00:55:58 +00003824 }
3825 }
bellard13224a82006-07-14 22:03:35 +00003826 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003827 }
aliguori376253e2009-03-05 23:01:23 +00003828 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003829 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003830 /* Check if 'i' is greater than 32-bit */
3831 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3832 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3833 monitor_printf(mon, "integer is for 32-bit values\n");
3834 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003835 } else if (c == 'M') {
Luiz Capitulino91162842012-04-26 17:34:30 -03003836 if (val < 0) {
3837 monitor_printf(mon, "enter a positive value\n");
3838 goto fail;
3839 }
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003840 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003841 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003842 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003843 }
3844 break;
Jes Sorensendbc0c672010-10-21 17:15:47 +02003845 case 'o':
3846 {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +01003847 int64_t val;
Jes Sorensendbc0c672010-10-21 17:15:47 +02003848 char *end;
3849
3850 while (qemu_isspace(*p)) {
3851 p++;
3852 }
3853 if (*typestr == '?') {
3854 typestr++;
3855 if (*p == '\0') {
3856 break;
3857 }
3858 }
3859 val = strtosz(p, &end);
3860 if (val < 0) {
3861 monitor_printf(mon, "invalid size\n");
3862 goto fail;
3863 }
3864 qdict_put(qdict, key, qint_from_int(val));
3865 p = end;
3866 }
3867 break;
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003868 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003869 {
3870 double val;
3871
3872 while (qemu_isspace(*p))
3873 p++;
3874 if (*typestr == '?') {
3875 typestr++;
3876 if (*p == '\0') {
3877 break;
3878 }
3879 }
3880 if (get_double(mon, &val, &p) < 0) {
3881 goto fail;
3882 }
Jes Sorensen07de3e62010-10-21 17:15:49 +02003883 if (p[0] && p[1] == 's') {
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003884 switch (*p) {
3885 case 'm':
3886 val /= 1e3; p += 2; break;
3887 case 'u':
3888 val /= 1e6; p += 2; break;
3889 case 'n':
3890 val /= 1e9; p += 2; break;
3891 }
3892 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003893 if (*p && !qemu_isspace(*p)) {
3894 monitor_printf(mon, "Unknown unit suffix\n");
3895 goto fail;
3896 }
3897 qdict_put(qdict, key, qfloat_from_double(val));
3898 }
3899 break;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01003900 case 'b':
3901 {
3902 const char *beg;
3903 int val;
3904
3905 while (qemu_isspace(*p)) {
3906 p++;
3907 }
3908 beg = p;
3909 while (qemu_isgraph(*p)) {
3910 p++;
3911 }
3912 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3913 val = 1;
3914 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3915 val = 0;
3916 } else {
3917 monitor_printf(mon, "Expected 'on' or 'off'\n");
3918 goto fail;
3919 }
3920 qdict_put(qdict, key, qbool_from_int(val));
3921 }
3922 break;
bellard9307c4c2004-04-04 12:57:25 +00003923 case '-':
3924 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003925 const char *tmp = p;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003926 int skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003927 /* option */
ths3b46e622007-09-17 08:09:54 +00003928
bellard9307c4c2004-04-04 12:57:25 +00003929 c = *typestr++;
3930 if (c == '\0')
3931 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003932 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003933 p++;
bellard9307c4c2004-04-04 12:57:25 +00003934 if (*p == '-') {
3935 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003936 if(c != *p) {
3937 if(!is_valid_option(p, typestr)) {
3938
3939 monitor_printf(mon, "%s: unsupported option -%c\n",
3940 cmdname, *p);
3941 goto fail;
3942 } else {
3943 skip_key = 1;
3944 }
bellard9307c4c2004-04-04 12:57:25 +00003945 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003946 if(skip_key) {
3947 p = tmp;
3948 } else {
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003949 /* has option */
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003950 p++;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003951 qdict_put(qdict, key, qbool_from_int(1));
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003952 }
bellard9307c4c2004-04-04 12:57:25 +00003953 }
bellard9307c4c2004-04-04 12:57:25 +00003954 }
3955 break;
3956 default:
3957 bad_type:
aliguori376253e2009-03-05 23:01:23 +00003958 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00003959 goto fail;
3960 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003961 g_free(key);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003962 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003963 }
3964 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003965 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003966 p++;
3967 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003968 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3969 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00003970 goto fail;
3971 }
3972
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003973 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003974
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003975fail:
Anthony Liguori7267c092011-08-20 22:09:37 -05003976 g_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003977 return NULL;
3978}
3979
Markus Armbrusterd6f46832010-02-17 10:52:26 +01003980void monitor_set_error(Monitor *mon, QError *qerror)
3981{
3982 /* report only the first error */
3983 if (!mon->error) {
3984 mon->error = qerror;
3985 } else {
Markus Armbrusterd6f46832010-02-17 10:52:26 +01003986 QDECREF(qerror);
3987 }
3988}
3989
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003990static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3991{
Luiz Capitulino6d441432010-11-22 16:35:09 -02003992 if (ret && !monitor_has_error(mon)) {
3993 /*
3994 * If it returns failure, it must have passed on error.
3995 *
3996 * Action: Report an internal error to the client if in QMP.
3997 */
3998 qerror_report(QERR_UNDEFINED_ERROR);
Luiz Capitulino6d441432010-11-22 16:35:09 -02003999 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02004000}
4001
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004002static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004003{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004004 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05004005 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004006
4007 qdict = qdict_new();
4008
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03004009 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03004010 if (!cmd)
4011 goto out;
4012
Luiz Capitulino4903de02010-09-16 11:01:32 -03004013 if (handler_is_async(cmd)) {
Adam Litke940cc302010-01-25 12:18:44 -06004014 user_async_cmd_handler(mon, cmd, qdict);
Luiz Capitulino9e807212010-09-16 10:58:59 -03004015 } else if (handler_is_qobject(cmd)) {
Luiz Capitulinode79ba62010-09-16 11:06:11 -03004016 QObject *data = NULL;
4017
4018 /* XXX: ignores the error code */
4019 cmd->mhandler.cmd_new(mon, qdict, &data);
4020 assert(!monitor_has_error(mon));
4021 if (data) {
4022 cmd->user_print(mon, data);
4023 qobject_decref(data);
4024 }
Luiz Capitulino13917be2009-10-07 13:41:54 -03004025 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03004026 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004027 }
4028
Luiz Capitulino13917be2009-10-07 13:41:54 -03004029out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03004030 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00004031}
4032
bellard81d09122004-07-14 17:21:37 +00004033static void cmd_completion(const char *name, const char *list)
4034{
4035 const char *p, *pstart;
4036 char cmd[128];
4037 int len;
4038
4039 p = list;
4040 for(;;) {
4041 pstart = p;
4042 p = strchr(p, '|');
4043 if (!p)
4044 p = pstart + strlen(pstart);
4045 len = p - pstart;
4046 if (len > sizeof(cmd) - 2)
4047 len = sizeof(cmd) - 2;
4048 memcpy(cmd, pstart, len);
4049 cmd[len] = '\0';
4050 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00004051 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00004052 }
4053 if (*p == '\0')
4054 break;
4055 p++;
4056 }
4057}
4058
4059static void file_completion(const char *input)
4060{
4061 DIR *ffs;
4062 struct dirent *d;
4063 char path[1024];
4064 char file[1024], file_prefix[1024];
4065 int input_path_len;
4066 const char *p;
4067
ths5fafdf22007-09-16 21:08:06 +00004068 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00004069 if (!p) {
4070 input_path_len = 0;
4071 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00004072 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00004073 } else {
4074 input_path_len = p - input + 1;
4075 memcpy(path, input, input_path_len);
4076 if (input_path_len > sizeof(path) - 1)
4077 input_path_len = sizeof(path) - 1;
4078 path[input_path_len] = '\0';
4079 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4080 }
4081#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00004082 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
4083 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00004084#endif
4085 ffs = opendir(path);
4086 if (!ffs)
4087 return;
4088 for(;;) {
4089 struct stat sb;
4090 d = readdir(ffs);
4091 if (!d)
4092 break;
Kusanagi Kouichi46c7fc12010-10-20 18:00:01 +09004093
4094 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4095 continue;
4096 }
4097
bellard81d09122004-07-14 17:21:37 +00004098 if (strstart(d->d_name, file_prefix, NULL)) {
4099 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00004100 if (input_path_len < sizeof(file))
4101 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4102 d->d_name);
bellard81d09122004-07-14 17:21:37 +00004103 /* stat the file to find out if it's a directory.
4104 * In that case add a slash to speed up typing long paths
4105 */
Markus Armbrusterc951d9a2011-11-16 15:43:47 +01004106 if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) {
blueswir1363a37d2008-08-21 17:58:08 +00004107 pstrcat(file, sizeof(file), "/");
Markus Armbrusterc951d9a2011-11-16 15:43:47 +01004108 }
aliguori731b0362009-03-05 23:01:42 +00004109 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00004110 }
4111 }
4112 closedir(ffs);
4113}
4114
aliguori51de9762009-03-05 23:00:43 +00004115static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00004116{
aliguori51de9762009-03-05 23:00:43 +00004117 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00004118 const char *input = opaque;
4119
4120 if (input[0] == '\0' ||
4121 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00004122 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00004123 }
4124}
4125
4126/* NOTE: this parser is an approximate form of the real command parser */
4127static void parse_cmdline(const char *cmdline,
4128 int *pnb_args, char **args)
4129{
4130 const char *p;
4131 int nb_args, ret;
4132 char buf[1024];
4133
4134 p = cmdline;
4135 nb_args = 0;
4136 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00004137 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00004138 p++;
4139 if (*p == '\0')
4140 break;
4141 if (nb_args >= MAX_ARGS)
4142 break;
4143 ret = get_str(buf, sizeof(buf), &p);
Anthony Liguori7267c092011-08-20 22:09:37 -05004144 args[nb_args] = g_strdup(buf);
bellard81d09122004-07-14 17:21:37 +00004145 nb_args++;
4146 if (ret < 0)
4147 break;
4148 }
4149 *pnb_args = nb_args;
4150}
4151
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004152static const char *next_arg_type(const char *typestr)
4153{
4154 const char *p = strchr(typestr, ':');
4155 return (p != NULL ? ++p : typestr);
4156}
4157
aliguori4c36ba32009-03-05 23:01:37 +00004158static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00004159{
4160 const char *cmdname;
4161 char *args[MAX_ARGS];
4162 int nb_args, i, len;
4163 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05004164 const mon_cmd_t *cmd;
bellard81d09122004-07-14 17:21:37 +00004165
4166 parse_cmdline(cmdline, &nb_args, args);
4167#ifdef DEBUG_COMPLETION
4168 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00004169 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00004170 }
4171#endif
4172
4173 /* if the line ends with a space, it means we want to complete the
4174 next arg */
4175 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00004176 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
Jan Kiszka03a63482010-06-16 00:38:33 +02004177 if (nb_args >= MAX_ARGS) {
4178 goto cleanup;
4179 }
Anthony Liguori7267c092011-08-20 22:09:37 -05004180 args[nb_args++] = g_strdup("");
bellard81d09122004-07-14 17:21:37 +00004181 }
4182 if (nb_args <= 1) {
4183 /* command completion */
4184 if (nb_args == 0)
4185 cmdname = "";
4186 else
4187 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00004188 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00004189 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00004190 cmd_completion(cmdname, cmd->name);
4191 }
4192 } else {
4193 /* find the command */
Jan Kiszka03a63482010-06-16 00:38:33 +02004194 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4195 if (compare_cmd(args[0], cmd->name)) {
4196 break;
4197 }
bellard81d09122004-07-14 17:21:37 +00004198 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004199 if (!cmd->name) {
4200 goto cleanup;
4201 }
4202
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004203 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00004204 for(i = 0; i < nb_args - 2; i++) {
4205 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004206 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004207 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004208 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004209 }
4210 }
4211 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00004212 if (*ptype == '-' && ptype[1] != '\0') {
Jan Kiszka3b6dbf22010-06-16 00:38:34 +02004213 ptype = next_arg_type(ptype);
Blue Swirl2a1704a2009-08-23 20:10:28 +00004214 }
bellard81d09122004-07-14 17:21:37 +00004215 switch(*ptype) {
4216 case 'F':
4217 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00004218 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004219 file_completion(str);
4220 break;
4221 case 'B':
4222 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00004223 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004224 bdrv_iterate(block_completion_it, (void *)str);
4225 break;
bellard7fe48482004-10-09 18:08:01 +00004226 case 's':
4227 /* XXX: more generic ? */
4228 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00004229 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00004230 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4231 cmd_completion(str, cmd->name);
4232 }
bellard64866c32006-05-07 18:03:31 +00004233 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00004234 char *sep = strrchr(str, '-');
4235 if (sep)
4236 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00004237 readline_set_completion_index(cur_mon->rs, strlen(str));
Amos Kong1048c882012-08-31 10:56:25 +08004238 for (i = 0; i < Q_KEY_CODE_MAX; i++) {
4239 cmd_completion(str, QKeyCode_lookup[i]);
bellard64866c32006-05-07 18:03:31 +00004240 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02004241 } else if (!strcmp(cmd->name, "help|?")) {
4242 readline_set_completion_index(cur_mon->rs, strlen(str));
4243 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4244 cmd_completion(str, cmd->name);
4245 }
bellard7fe48482004-10-09 18:08:01 +00004246 }
4247 break;
bellard81d09122004-07-14 17:21:37 +00004248 default:
4249 break;
4250 }
4251 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004252
4253cleanup:
4254 for (i = 0; i < nb_args; i++) {
Anthony Liguori7267c092011-08-20 22:09:37 -05004255 g_free(args[i]);
Jan Kiszka03a63482010-06-16 00:38:33 +02004256 }
bellard81d09122004-07-14 17:21:37 +00004257}
4258
aliguori731b0362009-03-05 23:01:42 +00004259static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004260{
aliguori731b0362009-03-05 23:01:42 +00004261 Monitor *mon = opaque;
4262
Jan Kiszkac62313b2009-12-04 14:05:29 +01004263 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00004264}
4265
Luiz Capitulino09069b12010-02-04 18:10:06 -02004266static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4267{
4268 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4269 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4270}
4271
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004272/*
Luiz Capitulino4af91932010-06-22 11:44:05 -03004273 * Argument validation rules:
4274 *
4275 * 1. The argument must exist in cmd_args qdict
4276 * 2. The argument type must be the expected one
4277 *
4278 * Special case: If the argument doesn't exist in cmd_args and
4279 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4280 * checking is skipped for it.
4281 */
4282static int check_client_args_type(const QDict *client_args,
4283 const QDict *cmd_args, int flags)
4284{
4285 const QDictEntry *ent;
4286
4287 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4288 QObject *obj;
4289 QString *arg_type;
4290 const QObject *client_arg = qdict_entry_value(ent);
4291 const char *client_arg_name = qdict_entry_key(ent);
4292
4293 obj = qdict_get(cmd_args, client_arg_name);
4294 if (!obj) {
4295 if (flags & QMP_ACCEPT_UNKNOWNS) {
4296 /* handler accepts unknowns */
4297 continue;
4298 }
4299 /* client arg doesn't exist */
4300 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4301 return -1;
4302 }
4303
4304 arg_type = qobject_to_qstring(obj);
4305 assert(arg_type != NULL);
4306
4307 /* check if argument's type is correct */
4308 switch (qstring_get_str(arg_type)[0]) {
4309 case 'F':
4310 case 'B':
4311 case 's':
4312 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4313 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4314 "string");
4315 return -1;
4316 }
4317 break;
4318 case 'i':
4319 case 'l':
4320 case 'M':
Jes Sorensendbc0c672010-10-21 17:15:47 +02004321 case 'o':
Luiz Capitulino4af91932010-06-22 11:44:05 -03004322 if (qobject_type(client_arg) != QTYPE_QINT) {
4323 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4324 "int");
4325 return -1;
4326 }
4327 break;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004328 case 'T':
4329 if (qobject_type(client_arg) != QTYPE_QINT &&
4330 qobject_type(client_arg) != QTYPE_QFLOAT) {
4331 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4332 "number");
4333 return -1;
4334 }
4335 break;
4336 case 'b':
4337 case '-':
4338 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4339 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4340 "bool");
4341 return -1;
4342 }
4343 break;
4344 case 'O':
4345 assert(flags & QMP_ACCEPT_UNKNOWNS);
4346 break;
Paolo Bonzinib9f89782012-03-22 12:51:11 +01004347 case 'q':
4348 /* Any QObject can be passed. */
4349 break;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004350 case '/':
4351 case '.':
4352 /*
4353 * These types are not supported by QMP and thus are not
4354 * handled here. Fall through.
4355 */
4356 default:
4357 abort();
4358 }
4359 }
4360
4361 return 0;
4362}
4363
4364/*
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004365 * - Check if the client has passed all mandatory args
4366 * - Set special flags for argument validation
4367 */
4368static int check_mandatory_args(const QDict *cmd_args,
4369 const QDict *client_args, int *flags)
4370{
4371 const QDictEntry *ent;
4372
4373 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4374 const char *cmd_arg_name = qdict_entry_key(ent);
4375 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4376 assert(type != NULL);
4377
4378 if (qstring_get_str(type)[0] == 'O') {
4379 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4380 *flags |= QMP_ACCEPT_UNKNOWNS;
4381 } else if (qstring_get_str(type)[0] != '-' &&
4382 qstring_get_str(type)[1] != '?' &&
4383 !qdict_haskey(client_args, cmd_arg_name)) {
4384 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4385 return -1;
4386 }
4387 }
4388
4389 return 0;
4390}
4391
4392static QDict *qdict_from_args_type(const char *args_type)
4393{
4394 int i;
4395 QDict *qdict;
4396 QString *key, *type, *cur_qs;
4397
4398 assert(args_type != NULL);
4399
4400 qdict = qdict_new();
4401
4402 if (args_type == NULL || args_type[0] == '\0') {
4403 /* no args, empty qdict */
4404 goto out;
4405 }
4406
4407 key = qstring_new();
4408 type = qstring_new();
4409
4410 cur_qs = key;
4411
4412 for (i = 0;; i++) {
4413 switch (args_type[i]) {
4414 case ',':
4415 case '\0':
4416 qdict_put(qdict, qstring_get_str(key), type);
4417 QDECREF(key);
4418 if (args_type[i] == '\0') {
4419 goto out;
4420 }
4421 type = qstring_new(); /* qdict has ref */
4422 cur_qs = key = qstring_new();
4423 break;
4424 case ':':
4425 cur_qs = type;
4426 break;
4427 default:
4428 qstring_append_chr(cur_qs, args_type[i]);
4429 break;
4430 }
4431 }
4432
4433out:
4434 return qdict;
4435}
4436
4437/*
4438 * Client argument checking rules:
4439 *
4440 * 1. Client must provide all mandatory arguments
Luiz Capitulino4af91932010-06-22 11:44:05 -03004441 * 2. Each argument provided by the client must be expected
4442 * 3. Each argument provided by the client must have the type expected
4443 * by the command
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004444 */
4445static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4446{
4447 int flags, err;
4448 QDict *cmd_args;
4449
4450 cmd_args = qdict_from_args_type(cmd->args_type);
4451
4452 flags = 0;
4453 err = check_mandatory_args(cmd_args, client_args, &flags);
4454 if (err) {
4455 goto out;
4456 }
4457
Luiz Capitulino4af91932010-06-22 11:44:05 -03004458 err = check_client_args_type(client_args, cmd_args, flags);
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004459
4460out:
4461 QDECREF(cmd_args);
4462 return err;
4463}
4464
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004465/*
4466 * Input object checking rules
4467 *
4468 * 1. Input object must be a dict
4469 * 2. The "execute" key must exist
4470 * 3. The "execute" key must be a string
4471 * 4. If the "arguments" key exists, it must be a dict
4472 * 5. If the "id" key exists, it can be anything (ie. json-value)
4473 * 6. Any argument not listed above is considered invalid
4474 */
4475static QDict *qmp_check_input_obj(QObject *input_obj)
4476{
4477 const QDictEntry *ent;
4478 int has_exec_key = 0;
4479 QDict *input_dict;
4480
4481 if (qobject_type(input_obj) != QTYPE_QDICT) {
4482 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4483 return NULL;
4484 }
4485
4486 input_dict = qobject_to_qdict(input_obj);
4487
4488 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4489 const char *arg_name = qdict_entry_key(ent);
4490 const QObject *arg_obj = qdict_entry_value(ent);
4491
4492 if (!strcmp(arg_name, "execute")) {
4493 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4494 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4495 "string");
4496 return NULL;
4497 }
4498 has_exec_key = 1;
4499 } else if (!strcmp(arg_name, "arguments")) {
4500 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4501 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4502 "object");
4503 return NULL;
4504 }
4505 } else if (!strcmp(arg_name, "id")) {
4506 /* FIXME: check duplicated IDs for async commands */
4507 } else {
4508 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4509 return NULL;
4510 }
4511 }
4512
4513 if (!has_exec_key) {
4514 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4515 return NULL;
4516 }
4517
4518 return input_dict;
4519}
4520
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004521static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4522 const QDict *params)
4523{
4524 int ret;
4525 QObject *data = NULL;
4526
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004527 ret = cmd->mhandler.cmd_new(mon, params, &data);
4528 handler_audit(mon, cmd, ret);
4529 monitor_protocol_emitter(mon, data);
4530 qobject_decref(data);
4531}
4532
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004533static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4534{
4535 int err;
4536 QObject *obj;
4537 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004538 const mon_cmd_t *cmd;
Luiz Capitulino40e5a012011-10-21 16:15:31 -02004539 const char *cmd_name;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004540 Monitor *mon = cur_mon;
4541
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004542 args = input = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004543
4544 obj = json_parser_parse(tokens, NULL);
4545 if (!obj) {
4546 // FIXME: should be triggered in json_parser_parse()
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004547 qerror_report(QERR_JSON_PARSING);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004548 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004549 }
4550
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004551 input = qmp_check_input_obj(obj);
4552 if (!input) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004553 qobject_decref(obj);
4554 goto err_out;
4555 }
4556
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004557 mon->mc->id = qdict_get(input, "id");
4558 qobject_incref(mon->mc->id);
4559
Luiz Capitulino0bbab462010-05-31 17:32:50 -03004560 cmd_name = qdict_get_str(input, "execute");
Stefan Hajnoczi89bd8202011-09-23 08:23:06 +01004561 trace_handle_qmp_command(mon, cmd_name);
Luiz Capitulino09069b12010-02-04 18:10:06 -02004562 if (invalid_qmp_mode(mon, cmd_name)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004563 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004564 goto err_out;
Luiz Capitulino09069b12010-02-04 18:10:06 -02004565 }
4566
Anthony Liguorie3193602011-09-02 12:34:47 -05004567 cmd = qmp_find_cmd(cmd_name);
Luiz Capitulinod1249ea2010-09-13 14:44:27 -03004568 if (!cmd) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004569 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004570 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004571 }
4572
4573 obj = qdict_get(input, "arguments");
4574 if (!obj) {
4575 args = qdict_new();
4576 } else {
4577 args = qobject_to_qdict(obj);
4578 QINCREF(args);
4579 }
4580
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004581 err = qmp_check_client_args(cmd, args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004582 if (err < 0) {
4583 goto err_out;
4584 }
4585
Luiz Capitulino40e5a012011-10-21 16:15:31 -02004586 if (handler_is_async(cmd)) {
Luiz Capitulino5af7bba2010-06-22 19:10:46 -03004587 err = qmp_async_cmd_handler(mon, cmd, args);
4588 if (err) {
4589 /* emit the error response */
4590 goto err_out;
4591 }
Adam Litke940cc302010-01-25 12:18:44 -06004592 } else {
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004593 qmp_call_cmd(mon, cmd, args);
Adam Litke940cc302010-01-25 12:18:44 -06004594 }
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004595
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004596 goto out;
4597
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004598err_out:
4599 monitor_protocol_emitter(mon, NULL);
4600out:
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004601 QDECREF(input);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004602 QDECREF(args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004603}
4604
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004605/**
4606 * monitor_control_read(): Read and handle QMP input
4607 */
4608static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4609{
4610 Monitor *old_mon = cur_mon;
4611
4612 cur_mon = opaque;
4613
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004614 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004615
4616 cur_mon = old_mon;
4617}
4618
aliguori731b0362009-03-05 23:01:42 +00004619static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004620{
aliguori731b0362009-03-05 23:01:42 +00004621 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004622 int i;
aliguori376253e2009-03-05 23:01:23 +00004623
aliguori731b0362009-03-05 23:01:42 +00004624 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004625
aliguoricde76ee2009-03-05 23:01:51 +00004626 if (cur_mon->rs) {
4627 for (i = 0; i < size; i++)
4628 readline_handle_byte(cur_mon->rs, buf[i]);
4629 } else {
4630 if (size == 0 || buf[size - 1] != 0)
4631 monitor_printf(cur_mon, "corrupted command\n");
4632 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004633 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00004634 }
aliguori731b0362009-03-05 23:01:42 +00004635
4636 cur_mon = old_mon;
4637}
aliguorid8f44602008-10-06 13:52:44 +00004638
aliguori376253e2009-03-05 23:01:23 +00004639static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004640{
aliguori731b0362009-03-05 23:01:42 +00004641 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004642 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00004643 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00004644}
4645
aliguoricde76ee2009-03-05 23:01:51 +00004646int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004647{
aliguoricde76ee2009-03-05 23:01:51 +00004648 if (!mon->rs)
4649 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00004650 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00004651 return 0;
aliguorid8f44602008-10-06 13:52:44 +00004652}
4653
aliguori376253e2009-03-05 23:01:23 +00004654void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004655{
aliguoricde76ee2009-03-05 23:01:51 +00004656 if (!mon->rs)
4657 return;
aliguori731b0362009-03-05 23:01:42 +00004658 if (--mon->suspend_cnt == 0)
4659 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00004660}
4661
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004662static QObject *get_qmp_greeting(void)
4663{
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03004664 QObject *ver = NULL;
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004665
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03004666 qmp_marshal_input_query_version(NULL, NULL, &ver);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004667 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4668}
4669
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004670/**
4671 * monitor_control_event(): Print QMP gretting
4672 */
4673static void monitor_control_event(void *opaque, int event)
4674{
Luiz Capitulino47116d12010-02-08 17:01:30 -02004675 QObject *data;
4676 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004677
Luiz Capitulino47116d12010-02-08 17:01:30 -02004678 switch (event) {
4679 case CHR_EVENT_OPENED:
Luiz Capitulino4a7e1192010-02-04 18:10:05 -02004680 mon->mc->command_mode = 0;
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004681 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004682 monitor_json_emitter(mon, data);
4683 qobject_decref(data);
Corey Bryantefb87c12012-08-14 16:43:48 -04004684 mon_refcount++;
Luiz Capitulino47116d12010-02-08 17:01:30 -02004685 break;
4686 case CHR_EVENT_CLOSED:
4687 json_message_parser_destroy(&mon->mc->parser);
Anthony Liguori58617a72012-08-23 08:03:21 -05004688 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Corey Bryantefb87c12012-08-14 16:43:48 -04004689 mon_refcount--;
4690 monitor_fdsets_cleanup();
Luiz Capitulino47116d12010-02-08 17:01:30 -02004691 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004692 }
4693}
4694
aliguori731b0362009-03-05 23:01:42 +00004695static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00004696{
aliguori376253e2009-03-05 23:01:23 +00004697 Monitor *mon = opaque;
4698
aliguori2724b182009-03-05 23:01:47 +00004699 switch (event) {
4700 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004701 mon->mux_out = 0;
4702 if (mon->reset_seen) {
4703 readline_restart(mon->rs);
4704 monitor_resume(mon);
4705 monitor_flush(mon);
4706 } else {
4707 mon->suspend_cnt = 0;
4708 }
aliguori2724b182009-03-05 23:01:47 +00004709 break;
ths86e94de2007-01-05 22:01:59 +00004710
aliguori2724b182009-03-05 23:01:47 +00004711 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004712 if (mon->reset_seen) {
4713 if (mon->suspend_cnt == 0) {
4714 monitor_printf(mon, "\n");
4715 }
4716 monitor_flush(mon);
4717 monitor_suspend(mon);
4718 } else {
4719 mon->suspend_cnt++;
4720 }
4721 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00004722 break;
4723
Amit Shahb6b8df52009-10-07 18:31:16 +05304724 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00004725 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4726 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004727 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00004728 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004729 }
4730 mon->reset_seen = 1;
Corey Bryantefb87c12012-08-14 16:43:48 -04004731 mon_refcount++;
4732 break;
4733
4734 case CHR_EVENT_CLOSED:
4735 mon_refcount--;
4736 monitor_fdsets_cleanup();
aliguori2724b182009-03-05 23:01:47 +00004737 break;
4738 }
ths86e94de2007-01-05 22:01:59 +00004739}
4740
Wayne Xia816f8922011-10-12 11:32:41 +08004741static int
4742compare_mon_cmd(const void *a, const void *b)
4743{
4744 return strcmp(((const mon_cmd_t *)a)->name,
4745 ((const mon_cmd_t *)b)->name);
4746}
4747
4748static void sortcmdlist(void)
4749{
4750 int array_num;
4751 int elem_size = sizeof(mon_cmd_t);
4752
4753 array_num = sizeof(mon_cmds)/elem_size-1;
4754 qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd);
4755
4756 array_num = sizeof(info_cmds)/elem_size-1;
4757 qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd);
4758}
4759
aliguori76655d62009-03-06 20:27:37 +00004760
4761/*
4762 * Local variables:
4763 * c-indent-level: 4
4764 * c-basic-offset: 4
4765 * tab-width: 8
4766 * End:
4767 */
4768
aliguori731b0362009-03-05 23:01:42 +00004769void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004770{
aliguori731b0362009-03-05 23:01:42 +00004771 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00004772 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00004773
4774 if (is_first_init) {
Paolo Bonzini74475452011-03-11 16:47:48 +01004775 key_timer = qemu_new_timer_ns(vm_clock, release_keys, NULL);
Daniel P. Berrangeafeecec2012-06-14 18:12:57 +01004776 monitor_protocol_event_init();
ths20d8a3e2007-02-18 17:04:49 +00004777 is_first_init = 0;
4778 }
aliguori87127162009-03-05 23:01:29 +00004779
Anthony Liguori7267c092011-08-20 22:09:37 -05004780 mon = g_malloc0(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00004781
aliguori87127162009-03-05 23:01:29 +00004782 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00004783 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00004784 if (flags & MONITOR_USE_READLINE) {
4785 mon->rs = readline_init(mon, monitor_find_completion);
4786 monitor_read_command(mon, 0);
4787 }
aliguori87127162009-03-05 23:01:29 +00004788
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004789 if (monitor_ctrl_mode(mon)) {
Anthony Liguori7267c092011-08-20 22:09:37 -05004790 mon->mc = g_malloc0(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004791 /* Control mode requires special handlers */
4792 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4793 monitor_control_event, mon);
Anthony Liguori15f31512011-08-15 11:17:35 -05004794 qemu_chr_fe_set_echo(chr, true);
Anthony Liguori26efaca2012-08-23 13:49:02 -05004795
4796 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004797 } else {
4798 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4799 monitor_event, mon);
4800 }
aliguori87127162009-03-05 23:01:29 +00004801
Blue Swirl72cf2d42009-09-12 07:36:22 +00004802 QLIST_INSERT_HEAD(&mon_list, mon, entry);
Markus Armbruster8631b602010-02-18 11:41:55 +01004803 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4804 default_mon = mon;
Wayne Xia816f8922011-10-12 11:32:41 +08004805
4806 sortcmdlist();
bellard7e2515e2004-08-01 21:52:19 +00004807}
4808
aliguori376253e2009-03-05 23:01:23 +00004809static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004810{
aliguoribb5fc202009-03-05 23:01:15 +00004811 BlockDriverState *bs = opaque;
4812 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00004813
aliguoribb5fc202009-03-05 23:01:15 +00004814 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00004815 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00004816 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00004817 }
aliguori731b0362009-03-05 23:01:42 +00004818 if (mon->password_completion_cb)
4819 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00004820
aliguori731b0362009-03-05 23:01:42 +00004821 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00004822}
aliguoric0f4ce72009-03-05 23:01:01 +00004823
Anthony Liguori7060b472011-09-02 12:34:50 -05004824ReadLineState *monitor_get_rs(Monitor *mon)
4825{
4826 return mon->rs;
4827}
4828
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004829int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4830 BlockDriverCompletionFunc *completion_cb,
4831 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00004832{
aliguoricde76ee2009-03-05 23:01:51 +00004833 int err;
4834
aliguoribb5fc202009-03-05 23:01:15 +00004835 if (!bdrv_key_required(bs)) {
4836 if (completion_cb)
4837 completion_cb(opaque, 0);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004838 return 0;
aliguoribb5fc202009-03-05 23:01:15 +00004839 }
aliguoric0f4ce72009-03-05 23:01:01 +00004840
Luiz Capitulino94171e12009-12-07 21:37:00 +01004841 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino903a8812011-12-13 17:18:30 -02004842 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs),
4843 bdrv_get_encrypted_filename(bs));
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004844 return -1;
Luiz Capitulino94171e12009-12-07 21:37:00 +01004845 }
4846
aliguori376253e2009-03-05 23:01:23 +00004847 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4848 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00004849
aliguori731b0362009-03-05 23:01:42 +00004850 mon->password_completion_cb = completion_cb;
4851 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00004852
aliguoricde76ee2009-03-05 23:01:51 +00004853 err = monitor_read_password(mon, bdrv_password_cb, bs);
4854
4855 if (err && completion_cb)
4856 completion_cb(opaque, err);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004857
4858 return err;
aliguoric0f4ce72009-03-05 23:01:01 +00004859}
Luiz Capitulinoe42e8182011-11-22 17:58:31 -02004860
4861int monitor_read_block_device_key(Monitor *mon, const char *device,
4862 BlockDriverCompletionFunc *completion_cb,
4863 void *opaque)
4864{
4865 BlockDriverState *bs;
4866
4867 bs = bdrv_find(device);
4868 if (!bs) {
4869 monitor_printf(mon, "Device not found %s\n", device);
4870 return -1;
4871 }
4872
4873 return monitor_read_bdrv_key_start(mon, bs, completion_cb, opaque);
4874}