blob: ffda0feb84495c80db336e1ef89784128f5c6fba [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"
ths6a5bd302007-12-03 17:05:38 +000069
Jan Kiszka661f1922011-10-16 11:53:13 +020070/* for pic/irq_info */
71#if defined(TARGET_SPARC)
72#include "hw/sun4m.h"
73#endif
74#include "hw/lm32_pic.h"
75
bellard9dc39cb2004-03-14 21:38:27 +000076//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000077//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000078
bellard9307c4c2004-04-04 12:57:25 +000079/*
80 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000081 *
bellard9307c4c2004-04-04 12:57:25 +000082 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000083 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000084 * 's' string (accept optional quote)
Markus Armbruster361127d2010-02-10 20:24:35 +010085 * 'O' option string of the form NAME=VALUE,...
86 * parsed according to QemuOptsList given by its name
87 * Example: 'device:O' uses qemu_device_opts.
88 * Restriction: only lists with empty desc are supported
89 * TODO lift the restriction
bellard92a31b12005-02-10 22:00:52 +000090 * 'i' 32 bit integer
91 * 'l' target long (32 or 64 bit)
Markus Armbruster9fec5432010-01-25 14:23:01 +010092 * 'M' just like 'l', except in user mode the value is
93 * multiplied by 2^20 (think Mebibyte)
Jes Sorensendbc0c672010-10-21 17:15:47 +020094 * 'o' octets (aka bytes)
95 * user mode accepts an optional T, t, G, g, M, m, K, k
96 * suffix, which multiplies the value by 2^40 for
97 * suffixes T and t, 2^30 for suffixes G and g, 2^20 for
98 * M and m, 2^10 for K and k
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +010099 * 'T' double
100 * user mode accepts an optional ms, us, ns suffix,
101 * which divides the value by 1e3, 1e6, 1e9, respectively
bellard9307c4c2004-04-04 12:57:25 +0000102 * '/' optional gdb-like print format (like "/10x")
103 *
Luiz Capitulinofb466602009-08-28 15:27:27 -0300104 * '?' optional type (for all types, except '/')
105 * '.' other form of optional type (for 'i' and 'l')
Markus Armbruster942cd1f2010-03-26 09:07:09 +0100106 * 'b' boolean
107 * user mode accepts "on" or "off"
Luiz Capitulinofb466602009-08-28 15:27:27 -0300108 * '-' optional parameter (eg. '-f')
bellard9307c4c2004-04-04 12:57:25 +0000109 *
110 */
111
Adam Litke940cc302010-01-25 12:18:44 -0600112typedef struct MonitorCompletionData MonitorCompletionData;
113struct MonitorCompletionData {
114 Monitor *mon;
115 void (*user_print)(Monitor *mon, const QObject *data);
116};
117
Anthony Liguoric227f092009-10-01 16:12:16 -0500118typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +0000119 const char *name;
bellard9307c4c2004-04-04 12:57:25 +0000120 const char *args_type;
bellard9dc39cb2004-03-14 21:38:27 +0000121 const char *params;
122 const char *help;
Luiz Capitulinoa2876f52009-10-07 13:41:53 -0300123 void (*user_print)(Monitor *mon, const QObject *data);
Luiz Capitulino910df892009-10-07 13:41:51 -0300124 union {
125 void (*info)(Monitor *mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300126 void (*info_new)(Monitor *mon, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600127 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300128 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino261394d2010-02-10 23:50:02 -0200129 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600130 int (*cmd_async)(Monitor *mon, const QDict *params,
131 MonitorCompletion *cb, void *opaque);
Luiz Capitulino910df892009-10-07 13:41:51 -0300132 } mhandler;
Anthony Liguorie3193602011-09-02 12:34:47 -0500133 bool qapi;
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200134 int flags;
Anthony Liguoric227f092009-10-01 16:12:16 -0500135} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +0000136
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100137/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -0500138typedef struct mon_fd_t mon_fd_t;
139struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100140 char *name;
141 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -0500142 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100143};
144
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200145typedef struct MonitorControl {
146 QObject *id;
147 JSONMessageParser parser;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200148 int command_mode;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200149} MonitorControl;
150
aliguori87127162009-03-05 23:01:29 +0000151struct Monitor {
152 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200153 int mux_out;
154 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000155 int flags;
156 int suspend_cnt;
157 uint8_t outbuf[1024];
158 int outbuf_index;
159 ReadLineState *rs;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200160 MonitorControl *mc;
aliguori731b0362009-03-05 23:01:42 +0000161 CPUState *mon_cpu;
162 BlockDriverCompletionFunc *password_completion_cb;
163 void *password_opaque;
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200164#ifdef CONFIG_DEBUG_MONITOR
165 int print_calls_nr;
166#endif
Luiz Capitulino8204a912009-11-18 23:05:31 -0200167 QError *error;
Anthony Liguoric227f092009-10-01 16:12:16 -0500168 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000169 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000170};
171
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200172#ifdef CONFIG_DEBUG_MONITOR
173#define MON_DEBUG(fmt, ...) do { \
174 fprintf(stderr, "Monitor: "); \
175 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200176
177static inline void mon_print_count_inc(Monitor *mon)
178{
179 mon->print_calls_nr++;
180}
181
182static inline void mon_print_count_init(Monitor *mon)
183{
184 mon->print_calls_nr = 0;
185}
186
187static inline int mon_print_count_get(const Monitor *mon)
188{
189 return mon->print_calls_nr;
190}
191
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200192#else /* !CONFIG_DEBUG_MONITOR */
193#define MON_DEBUG(fmt, ...) do { } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200194static inline void mon_print_count_inc(Monitor *mon) { }
195static inline void mon_print_count_init(Monitor *mon) { }
196static inline int mon_print_count_get(const Monitor *mon) { return 0; }
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200197#endif /* CONFIG_DEBUG_MONITOR */
198
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -0300199/* QMP checker flags */
200#define QMP_ACCEPT_UNKNOWNS 1
201
Blue Swirl72cf2d42009-09-12 07:36:22 +0000202static QLIST_HEAD(mon_list, Monitor) mon_list;
bellard7e2515e2004-08-01 21:52:19 +0000203
Anthony Liguoric227f092009-10-01 16:12:16 -0500204static const mon_cmd_t mon_cmds[];
205static const mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000206
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300207static const mon_cmd_t qmp_cmds[];
Luiz Capitulino3e12a752010-09-15 17:20:33 -0300208static const mon_cmd_t qmp_query_cmds[];
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300209
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
aliguori731b0362009-03-05 23:01:42 +0000233static void monitor_read_command(Monitor *mon, int show_prompt)
234{
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
aliguoricde76ee2009-03-05 23:01:51 +0000243static int 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 Capitulino10e4f602010-02-10 23:50:06 -0200292 mon_print_count_inc(mon);
293
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200294 if (monitor_ctrl_mode(mon)) {
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200295 return;
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200296 }
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200297
298 vsnprintf(buf, sizeof(buf), fmt, ap);
299 monitor_puts(mon, buf);
bellard7e2515e2004-08-01 21:52:19 +0000300}
301
aliguori376253e2009-03-05 23:01:23 +0000302void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000303{
304 va_list ap;
305 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000306 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000307 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000308}
309
aliguori376253e2009-03-05 23:01:23 +0000310void monitor_print_filename(Monitor *mon, const char *filename)
thsfef30742006-12-22 14:11:32 +0000311{
312 int i;
313
314 for (i = 0; filename[i]; i++) {
aliguori28a76be2009-03-06 20:27:40 +0000315 switch (filename[i]) {
316 case ' ':
317 case '"':
318 case '\\':
319 monitor_printf(mon, "\\%c", filename[i]);
320 break;
321 case '\t':
322 monitor_printf(mon, "\\t");
323 break;
324 case '\r':
325 monitor_printf(mon, "\\r");
326 break;
327 case '\n':
328 monitor_printf(mon, "\\n");
329 break;
330 default:
331 monitor_printf(mon, "%c", filename[i]);
332 break;
333 }
thsfef30742006-12-22 14:11:32 +0000334 }
335}
336
Stefan Weil8b7968f2010-09-23 21:28:05 +0200337static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
338 const char *fmt, ...)
bellard7fe48482004-10-09 18:08:01 +0000339{
340 va_list ap;
341 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000342 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000343 va_end(ap);
344 return 0;
345}
346
Luiz Capitulino13c74252009-10-07 13:41:55 -0300347static void monitor_user_noop(Monitor *mon, const QObject *data) { }
348
Luiz Capitulino9e807212010-09-16 10:58:59 -0300349static inline int handler_is_qobject(const mon_cmd_t *cmd)
Luiz Capitulino13917be2009-10-07 13:41:54 -0300350{
351 return cmd->user_print != NULL;
352}
353
Luiz Capitulino4903de02010-09-16 11:01:32 -0300354static inline bool handler_is_async(const mon_cmd_t *cmd)
Adam Litke940cc302010-01-25 12:18:44 -0600355{
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200356 return cmd->flags & MONITOR_CMD_ASYNC;
Adam Litke940cc302010-01-25 12:18:44 -0600357}
358
Luiz Capitulino8204a912009-11-18 23:05:31 -0200359static inline int monitor_has_error(const Monitor *mon)
360{
361 return mon->error != NULL;
362}
363
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200364static void monitor_json_emitter(Monitor *mon, const QObject *data)
365{
366 QString *json;
367
Luiz Capitulino83a27d42010-11-22 17:10:37 -0200368 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
369 qobject_to_json(data);
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200370 assert(json != NULL);
371
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200372 qstring_append_chr(json, '\n');
373 monitor_puts(mon, qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200374
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200375 QDECREF(json);
376}
377
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200378static void monitor_protocol_emitter(Monitor *mon, QObject *data)
379{
380 QDict *qmp;
381
Stefan Hajnoczi89bd8202011-09-23 08:23:06 +0100382 trace_monitor_protocol_emitter(mon);
383
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200384 qmp = qdict_new();
385
386 if (!monitor_has_error(mon)) {
387 /* success response */
388 if (data) {
389 qobject_incref(data);
390 qdict_put_obj(qmp, "return", data);
391 } else {
Luiz Capitulino0abc6572009-12-18 13:25:00 -0200392 /* return an empty QDict by default */
393 qdict_put(qmp, "return", qdict_new());
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200394 }
395 } else {
396 /* error response */
Markus Armbruster77e595e2009-12-07 21:37:16 +0100397 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200398 qdict_put(qmp, "error", mon->error->error);
399 QINCREF(mon->error->error);
400 QDECREF(mon->error);
401 mon->error = NULL;
402 }
403
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200404 if (mon->mc->id) {
405 qdict_put_obj(qmp, "id", mon->mc->id);
406 mon->mc->id = NULL;
407 }
408
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200409 monitor_json_emitter(mon, QOBJECT(qmp));
410 QDECREF(qmp);
411}
412
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200413static void timestamp_put(QDict *qdict)
414{
415 int err;
416 QObject *obj;
Blue Swirld08d6f02009-12-04 18:06:39 +0000417 qemu_timeval tv;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200418
Blue Swirld08d6f02009-12-04 18:06:39 +0000419 err = qemu_gettimeofday(&tv);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200420 if (err < 0)
421 return;
422
423 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
424 "'microseconds': %" PRId64 " }",
425 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200426 qdict_put_obj(qdict, "timestamp", obj);
427}
428
429/**
430 * monitor_protocol_event(): Generate a Monitor event
431 *
432 * Event-specific data can be emitted through the (optional) 'data' parameter.
433 */
434void monitor_protocol_event(MonitorEvent event, QObject *data)
435{
436 QDict *qmp;
437 const char *event_name;
Adam Litkef039a562010-01-15 08:34:02 -0600438 Monitor *mon;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200439
Blue Swirl242cd002009-12-04 18:05:45 +0000440 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200441
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200442 switch (event) {
Blue Swirl242cd002009-12-04 18:05:45 +0000443 case QEVENT_SHUTDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200444 event_name = "SHUTDOWN";
445 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000446 case QEVENT_RESET:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200447 event_name = "RESET";
448 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000449 case QEVENT_POWERDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200450 event_name = "POWERDOWN";
451 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000452 case QEVENT_STOP:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200453 event_name = "STOP";
454 break;
Luiz Capitulino6ed2c482010-04-27 20:35:59 -0300455 case QEVENT_RESUME:
456 event_name = "RESUME";
457 break;
Luiz Capitulino586153d2010-01-14 14:50:57 -0200458 case QEVENT_VNC_CONNECTED:
459 event_name = "VNC_CONNECTED";
460 break;
Luiz Capitulino0d2ed462010-01-14 14:50:59 -0200461 case QEVENT_VNC_INITIALIZED:
462 event_name = "VNC_INITIALIZED";
463 break;
Luiz Capitulino0d72f3d2010-01-14 14:50:58 -0200464 case QEVENT_VNC_DISCONNECTED:
465 event_name = "VNC_DISCONNECTED";
466 break;
Luiz Capitulinoaa1db6e2010-02-03 12:41:00 -0200467 case QEVENT_BLOCK_IO_ERROR:
468 event_name = "BLOCK_IO_ERROR";
469 break;
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300470 case QEVENT_RTC_CHANGE:
471 event_name = "RTC_CHANGE";
472 break;
Luiz Capitulino9eedeb32010-02-25 12:13:04 -0300473 case QEVENT_WATCHDOG:
474 event_name = "WATCHDOG";
475 break;
Gerd Hoffmann6f8c63f2010-10-11 18:03:51 +0200476 case QEVENT_SPICE_CONNECTED:
477 event_name = "SPICE_CONNECTED";
478 break;
479 case QEVENT_SPICE_INITIALIZED:
480 event_name = "SPICE_INITIALIZED";
481 break;
482 case QEVENT_SPICE_DISCONNECTED:
483 event_name = "SPICE_DISCONNECTED";
484 break;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200485 default:
486 abort();
487 break;
488 }
489
490 qmp = qdict_new();
491 timestamp_put(qmp);
492 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200493 if (data) {
494 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200495 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200496 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200497
Adam Litkef039a562010-01-15 08:34:02 -0600498 QLIST_FOREACH(mon, &mon_list, entry) {
Luiz Capitulino09069b12010-02-04 18:10:06 -0200499 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
Luiz Capitulino23fabed2010-01-20 10:37:59 -0200500 monitor_json_emitter(mon, QOBJECT(qmp));
501 }
Adam Litkef039a562010-01-15 08:34:02 -0600502 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200503 QDECREF(qmp);
504}
505
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200506static int do_qmp_capabilities(Monitor *mon, const QDict *params,
507 QObject **ret_data)
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200508{
509 /* Will setup QMP capabilities in the future */
510 if (monitor_ctrl_mode(mon)) {
511 mon->mc->command_mode = 1;
512 }
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200513
514 return 0;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200515}
516
Luiz Capitulino0268d972010-10-22 10:08:02 -0200517static int mon_set_cpu(int cpu_index);
518static void handle_user_command(Monitor *mon, const char *cmdline);
519
520static int do_hmp_passthrough(Monitor *mon, const QDict *params,
521 QObject **ret_data)
522{
523 int ret = 0;
524 Monitor *old_mon, hmp;
525 CharDriverState mchar;
526
527 memset(&hmp, 0, sizeof(hmp));
528 qemu_chr_init_mem(&mchar);
529 hmp.chr = &mchar;
530
531 old_mon = cur_mon;
532 cur_mon = &hmp;
533
534 if (qdict_haskey(params, "cpu-index")) {
535 ret = mon_set_cpu(qdict_get_int(params, "cpu-index"));
536 if (ret < 0) {
537 cur_mon = old_mon;
538 qerror_report(QERR_INVALID_PARAMETER_VALUE, "cpu-index", "a CPU number");
539 goto out;
540 }
541 }
542
543 handle_user_command(&hmp, qdict_get_str(params, "command-line"));
544 cur_mon = old_mon;
545
546 if (qemu_chr_mem_osize(hmp.chr) > 0) {
547 *ret_data = QOBJECT(qemu_chr_mem_to_qs(hmp.chr));
548 }
549
550out:
551 qemu_chr_close_mem(hmp.chr);
552 return ret;
553}
554
bellard9dc39cb2004-03-14 21:38:27 +0000555static int compare_cmd(const char *name, const char *list)
556{
557 const char *p, *pstart;
558 int len;
559 len = strlen(name);
560 p = list;
561 for(;;) {
562 pstart = p;
563 p = strchr(p, '|');
564 if (!p)
565 p = pstart + strlen(pstart);
566 if ((p - pstart) == len && !memcmp(pstart, name, len))
567 return 1;
568 if (*p == '\0')
569 break;
570 p++;
571 }
572 return 0;
573}
574
Anthony Liguoric227f092009-10-01 16:12:16 -0500575static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000576 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000577{
Anthony Liguoric227f092009-10-01 16:12:16 -0500578 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000579
580 for(cmd = cmds; cmd->name != NULL; cmd++) {
581 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000582 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
583 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000584 }
585}
586
aliguori376253e2009-03-05 23:01:23 +0000587static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000588{
589 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000590 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000591 } else {
aliguori376253e2009-03-05 23:01:23 +0000592 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000593 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000594 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000595 monitor_printf(mon, "Log items (comma separated):\n");
596 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000597 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000598 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000599 }
600 }
bellard9dc39cb2004-03-14 21:38:27 +0000601 }
602}
603
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300604static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300605{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300606 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300607}
608
Lluísfc764102011-08-31 20:31:18 +0200609static void do_trace_event_set_state(Monitor *mon, const QDict *qdict)
Prerna Saxena22890ab2010-06-24 17:04:53 +0530610{
611 const char *tp_name = qdict_get_str(qdict, "name");
612 bool new_state = qdict_get_bool(qdict, "option");
Lluísfc764102011-08-31 20:31:18 +0200613 int ret = trace_event_set_state(tp_name, new_state);
Blue Swirlf871d682010-10-13 19:14:29 +0000614
615 if (!ret) {
616 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
617 }
Prerna Saxena22890ab2010-06-24 17:04:53 +0530618}
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100619
Michael Rothc45a8162011-10-02 08:44:37 -0500620#ifdef CONFIG_TRACE_SIMPLE
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100621static void do_trace_file(Monitor *mon, const QDict *qdict)
622{
623 const char *op = qdict_get_try_str(qdict, "op");
624 const char *arg = qdict_get_try_str(qdict, "arg");
625
626 if (!op) {
627 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
628 } else if (!strcmp(op, "on")) {
629 st_set_trace_file_enabled(true);
630 } else if (!strcmp(op, "off")) {
631 st_set_trace_file_enabled(false);
632 } else if (!strcmp(op, "flush")) {
633 st_flush_trace_buffer();
634 } else if (!strcmp(op, "set")) {
635 if (arg) {
636 st_set_trace_file(arg);
637 }
638 } else {
639 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
640 help_cmd(mon, "trace-file");
641 }
642}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530643#endif
644
Adam Litke940cc302010-01-25 12:18:44 -0600645static void user_monitor_complete(void *opaque, QObject *ret_data)
646{
647 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
648
649 if (ret_data) {
650 data->user_print(data->mon, ret_data);
651 }
652 monitor_resume(data->mon);
Anthony Liguori7267c092011-08-20 22:09:37 -0500653 g_free(data);
Adam Litke940cc302010-01-25 12:18:44 -0600654}
655
656static void qmp_monitor_complete(void *opaque, QObject *ret_data)
657{
658 monitor_protocol_emitter(opaque, ret_data);
659}
660
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300661static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
662 const QDict *params)
Adam Litke940cc302010-01-25 12:18:44 -0600663{
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300664 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
Adam Litke940cc302010-01-25 12:18:44 -0600665}
666
667static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
668{
669 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
670}
671
672static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
673 const QDict *params)
674{
675 int ret;
676
Anthony Liguori7267c092011-08-20 22:09:37 -0500677 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
Adam Litke940cc302010-01-25 12:18:44 -0600678 cb_data->mon = mon;
679 cb_data->user_print = cmd->user_print;
680 monitor_suspend(mon);
681 ret = cmd->mhandler.cmd_async(mon, params,
682 user_monitor_complete, cb_data);
683 if (ret < 0) {
684 monitor_resume(mon);
Anthony Liguori7267c092011-08-20 22:09:37 -0500685 g_free(cb_data);
Adam Litke940cc302010-01-25 12:18:44 -0600686 }
687}
688
689static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
690{
691 int ret;
692
Anthony Liguori7267c092011-08-20 22:09:37 -0500693 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
Adam Litke940cc302010-01-25 12:18:44 -0600694 cb_data->mon = mon;
695 cb_data->user_print = cmd->user_print;
696 monitor_suspend(mon);
697 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
698 if (ret < 0) {
699 monitor_resume(mon);
Anthony Liguori7267c092011-08-20 22:09:37 -0500700 g_free(cb_data);
Adam Litke940cc302010-01-25 12:18:44 -0600701 }
702}
703
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300704static void do_info(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000705{
Anthony Liguoric227f092009-10-01 16:12:16 -0500706 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300707 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000708
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200709 if (!item) {
bellard9dc39cb2004-03-14 21:38:27 +0000710 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200711 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300712
713 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000714 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300715 break;
bellard9dc39cb2004-03-14 21:38:27 +0000716 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300717
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200718 if (cmd->name == NULL) {
Luiz Capitulino13c74252009-10-07 13:41:55 -0300719 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200720 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300721
Luiz Capitulino4903de02010-09-16 11:01:32 -0300722 if (handler_is_async(cmd)) {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300723 user_async_info_handler(mon, cmd);
Luiz Capitulino9e807212010-09-16 10:58:59 -0300724 } else if (handler_is_qobject(cmd)) {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300725 QObject *info_data = NULL;
Jan Kiszkaa6c4d362010-06-28 18:27:47 +0200726
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300727 cmd->mhandler.info_new(mon, &info_data);
728 if (info_data) {
729 cmd->user_print(mon, info_data);
730 qobject_decref(info_data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200731 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300732 } else {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300733 cmd->mhandler.info(mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300734 }
735
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300736 return;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300737
738help:
739 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000740}
741
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300742static CommandInfoList *alloc_cmd_entry(const char *cmd_name)
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200743{
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300744 CommandInfoList *info;
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200745
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300746 info = g_malloc0(sizeof(*info));
747 info->value = g_malloc0(sizeof(*info->value));
748 info->value->name = g_strdup(cmd_name);
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200749
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300750 return info;
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200751}
752
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300753CommandInfoList *qmp_query_commands(Error **errp)
bellard9bc9d1c2004-10-10 15:15:51 +0000754{
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300755 CommandInfoList *info, *cmd_list = NULL;
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200756 const mon_cmd_t *cmd;
757
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300758 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300759 info = alloc_cmd_entry(cmd->name);
760 info->next = cmd_list;
761 cmd_list = info;
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200762 }
763
Luiz Capitulino3e12a752010-09-15 17:20:33 -0300764 for (cmd = qmp_query_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino2e061a72010-09-16 10:36:54 -0300765 char buf[128];
766 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300767 info = alloc_cmd_entry(buf);
768 info->next = cmd_list;
769 cmd_list = info;
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200770 }
771
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300772 return cmd_list;
thsa36e69d2007-12-02 05:18:19 +0000773}
774
bellard6a00d602005-11-21 23:25:50 +0000775/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000776static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000777{
778 CPUState *env;
779
780 for(env = first_cpu; env != NULL; env = env->next_cpu) {
781 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000782 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000783 return 0;
784 }
785 }
786 return -1;
787}
788
pbrook9596ebb2007-11-18 01:44:38 +0000789static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000790{
aliguori731b0362009-03-05 23:01:42 +0000791 if (!cur_mon->mon_cpu) {
bellard6a00d602005-11-21 23:25:50 +0000792 mon_set_cpu(0);
793 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300794 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000795 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000796}
797
aliguori376253e2009-03-05 23:01:23 +0000798static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000799{
bellard6a00d602005-11-21 23:25:50 +0000800 CPUState *env;
801 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +0000802#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000803 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000804 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000805#else
aliguori376253e2009-03-05 23:01:23 +0000806 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000807 0);
bellard9307c4c2004-04-04 12:57:25 +0000808#endif
809}
810
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300811static void print_cpu_iter(QObject *obj, void *opaque)
812{
813 QDict *cpu;
814 int active = ' ';
815 Monitor *mon = opaque;
816
817 assert(qobject_type(obj) == QTYPE_QDICT);
818 cpu = qobject_to_qdict(obj);
819
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200820 if (qdict_get_bool(cpu, "current")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300821 active = '*';
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200822 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300823
824 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
825
826#if defined(TARGET_I386)
827 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
828 (target_ulong) qdict_get_int(cpu, "pc"));
829#elif defined(TARGET_PPC)
830 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
831 (target_long) qdict_get_int(cpu, "nip"));
832#elif defined(TARGET_SPARC)
Nathan Kunkee3f9c3592011-09-08 21:58:31 -0500833 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300834 (target_long) qdict_get_int(cpu, "pc"));
835 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
836 (target_long) qdict_get_int(cpu, "npc"));
837#elif defined(TARGET_MIPS)
838 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
839 (target_long) qdict_get_int(cpu, "PC"));
840#endif
841
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200842 if (qdict_get_bool(cpu, "halted")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300843 monitor_printf(mon, " (halted)");
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200844 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300845
Jan Kiszkadc7a09c2011-03-15 12:26:31 +0100846 monitor_printf(mon, " thread_id=%" PRId64 " ",
847 qdict_get_int(cpu, "thread_id"));
848
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300849 monitor_printf(mon, "\n");
850}
851
852static void monitor_print_cpus(Monitor *mon, const QObject *data)
853{
854 QList *cpu_list;
855
856 assert(qobject_type(data) == QTYPE_QLIST);
857 cpu_list = qobject_to_qlist(data);
858 qlist_iter(cpu_list, print_cpu_iter, mon);
859}
860
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300861static void do_info_cpus(Monitor *mon, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000862{
863 CPUState *env;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300864 QList *cpu_list;
865
866 cpu_list = qlist_new();
bellard6a00d602005-11-21 23:25:50 +0000867
868 /* just to set the default cpu if not already done */
869 mon_get_cpu();
870
871 for(env = first_cpu; env != NULL; env = env->next_cpu) {
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200872 QDict *cpu;
873 QObject *obj;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300874
Avi Kivity4c0960c2009-08-17 23:19:53 +0300875 cpu_synchronize_state(env);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300876
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200877 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
878 env->cpu_index, env == mon->mon_cpu,
879 env->halted);
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200880
881 cpu = qobject_to_qdict(obj);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300882
bellard6a00d602005-11-21 23:25:50 +0000883#if defined(TARGET_I386)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300884 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
bellarde80e1cc2005-11-23 22:05:28 +0000885#elif defined(TARGET_PPC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300886 qdict_put(cpu, "nip", qint_from_int(env->nip));
bellardba3c64f2005-12-05 20:31:52 +0000887#elif defined(TARGET_SPARC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300888 qdict_put(cpu, "pc", qint_from_int(env->pc));
889 qdict_put(cpu, "npc", qint_from_int(env->npc));
thsead93602007-09-06 00:18:15 +0000890#elif defined(TARGET_MIPS)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300891 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
bellardce5232c2008-05-28 17:14:10 +0000892#endif
Jan Kiszkadc7a09c2011-03-15 12:26:31 +0100893 qdict_put(cpu, "thread_id", qint_from_int(env->thread_id));
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300894
895 qlist_append(cpu_list, cpu);
bellard6a00d602005-11-21 23:25:50 +0000896 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300897
898 *ret_data = QOBJECT(cpu_list);
bellard6a00d602005-11-21 23:25:50 +0000899}
900
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200901static int do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000902{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300903 int index = qdict_get_int(qdict, "index");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200904 if (mon_set_cpu(index) < 0) {
Markus Armbrustere17ba872010-03-25 17:22:36 +0100905 qerror_report(QERR_INVALID_PARAMETER_VALUE, "index",
906 "a CPU number");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200907 return -1;
908 }
909 return 0;
bellard6a00d602005-11-21 23:25:50 +0000910}
911
aliguori376253e2009-03-05 23:01:23 +0000912static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000913{
aliguori376253e2009-03-05 23:01:23 +0000914 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000915}
916
aliguori376253e2009-03-05 23:01:23 +0000917static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000918{
919 int i;
bellard7e2515e2004-08-01 21:52:19 +0000920 const char *str;
ths3b46e622007-09-17 08:09:54 +0000921
aliguoricde76ee2009-03-05 23:01:51 +0000922 if (!mon->rs)
923 return;
bellard7e2515e2004-08-01 21:52:19 +0000924 i = 0;
925 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000926 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000927 if (!str)
928 break;
aliguori376253e2009-03-05 23:01:23 +0000929 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000930 i++;
bellardaa455482004-04-04 13:07:25 +0000931 }
932}
933
j_mayer76a66252007-03-07 08:32:30 +0000934#if defined(TARGET_PPC)
935/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000936static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000937{
938 CPUState *env;
939
940 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000941 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000942}
943#endif
944
Lluís6d8a7642011-08-31 20:30:43 +0200945#if defined(CONFIG_TRACE_SIMPLE)
Prerna Saxena22890ab2010-06-24 17:04:53 +0530946static void do_info_trace(Monitor *mon)
947{
948 st_print_trace((FILE *)mon, &monitor_fprintf);
949}
Lluís31965ae2011-08-31 20:31:24 +0200950#endif
Prerna Saxena22890ab2010-06-24 17:04:53 +0530951
Lluísfc764102011-08-31 20:31:18 +0200952static void do_trace_print_events(Monitor *mon)
Prerna Saxena22890ab2010-06-24 17:04:53 +0530953{
Lluísfc764102011-08-31 20:31:18 +0200954 trace_print_events((FILE *)mon, &monitor_fprintf);
Prerna Saxena22890ab2010-06-24 17:04:53 +0530955}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530956
Jes Sorensen821601e2011-03-16 13:33:36 +0100957#ifdef CONFIG_VNC
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200958static int change_vnc_password(const char *password)
aliguoribb5fc202009-03-05 23:01:15 +0000959{
Anthony Liguori1cd20f82011-01-31 14:27:36 -0600960 if (!password || !password[0]) {
961 if (vnc_display_disable_login(NULL)) {
962 qerror_report(QERR_SET_PASSWD_FAILED);
963 return -1;
964 }
965 return 0;
966 }
967
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200968 if (vnc_display_password(NULL, password) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100969 qerror_report(QERR_SET_PASSWD_FAILED);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200970 return -1;
971 }
aliguoribb5fc202009-03-05 23:01:15 +0000972
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200973 return 0;
Markus Armbruster2895e072009-12-07 21:37:01 +0100974}
975
976static void change_vnc_password_cb(Monitor *mon, const char *password,
977 void *opaque)
978{
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100979 change_vnc_password(password);
aliguori731b0362009-03-05 23:01:42 +0000980 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +0000981}
982
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200983static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
thse25a5822007-08-25 01:36:20 +0000984{
ths70848512007-08-25 01:37:05 +0000985 if (strcmp(target, "passwd") == 0 ||
aliguori28a76be2009-03-06 20:27:40 +0000986 strcmp(target, "password") == 0) {
987 if (arg) {
aliguoribb5fc202009-03-05 23:01:15 +0000988 char password[9];
aliguori28a76be2009-03-06 20:27:40 +0000989 strncpy(password, arg, sizeof(password));
990 password[sizeof(password) - 1] = '\0';
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200991 return change_vnc_password(password);
aliguoribb5fc202009-03-05 23:01:15 +0000992 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200993 return monitor_read_password(mon, change_vnc_password_cb, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000994 }
ths70848512007-08-25 01:37:05 +0000995 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200996 if (vnc_display_open(NULL, target) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100997 qerror_report(QERR_VNC_SERVER_FAILED, target);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200998 return -1;
999 }
ths70848512007-08-25 01:37:05 +00001000 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001001
1002 return 0;
thse25a5822007-08-25 01:36:20 +00001003}
Jes Sorensen821601e2011-03-16 13:33:36 +01001004#else
1005static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
1006{
1007 qerror_report(QERR_FEATURE_DISABLED, "vnc");
1008 return -ENODEV;
1009}
1010#endif
thse25a5822007-08-25 01:36:20 +00001011
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001012/**
1013 * do_change(): Change a removable medium, or VNC configuration
1014 */
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001015static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
thse25a5822007-08-25 01:36:20 +00001016{
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001017 const char *device = qdict_get_str(qdict, "device");
1018 const char *target = qdict_get_str(qdict, "target");
1019 const char *arg = qdict_get_try_str(qdict, "arg");
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001020 int ret;
1021
thse25a5822007-08-25 01:36:20 +00001022 if (strcmp(device, "vnc") == 0) {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001023 ret = do_change_vnc(mon, target, arg);
thse25a5822007-08-25 01:36:20 +00001024 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001025 ret = do_change_block(mon, device, target, arg);
thse25a5822007-08-25 01:36:20 +00001026 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001027
1028 return ret;
thse25a5822007-08-25 01:36:20 +00001029}
1030
Gerd Hoffmann75721502010-10-07 12:22:54 +02001031static int set_password(Monitor *mon, const QDict *qdict, QObject **ret_data)
1032{
1033 const char *protocol = qdict_get_str(qdict, "protocol");
1034 const char *password = qdict_get_str(qdict, "password");
1035 const char *connected = qdict_get_try_str(qdict, "connected");
1036 int disconnect_if_connected = 0;
1037 int fail_if_connected = 0;
1038 int rc;
1039
1040 if (connected) {
1041 if (strcmp(connected, "fail") == 0) {
1042 fail_if_connected = 1;
1043 } else if (strcmp(connected, "disconnect") == 0) {
1044 disconnect_if_connected = 1;
1045 } else if (strcmp(connected, "keep") == 0) {
1046 /* nothing */
1047 } else {
1048 qerror_report(QERR_INVALID_PARAMETER, "connected");
1049 return -1;
1050 }
1051 }
1052
1053 if (strcmp(protocol, "spice") == 0) {
1054 if (!using_spice) {
1055 /* correct one? spice isn't a device ,,, */
1056 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1057 return -1;
1058 }
1059 rc = qemu_spice_set_passwd(password, fail_if_connected,
1060 disconnect_if_connected);
1061 if (rc != 0) {
1062 qerror_report(QERR_SET_PASSWD_FAILED);
1063 return -1;
1064 }
1065 return 0;
1066 }
1067
1068 if (strcmp(protocol, "vnc") == 0) {
1069 if (fail_if_connected || disconnect_if_connected) {
1070 /* vnc supports "connected=keep" only */
1071 qerror_report(QERR_INVALID_PARAMETER, "connected");
1072 return -1;
1073 }
Anthony Liguori1cd20f82011-01-31 14:27:36 -06001074 /* Note that setting an empty password will not disable login through
1075 * this interface. */
Jes Sorensen821601e2011-03-16 13:33:36 +01001076 return vnc_display_password(NULL, password);
Gerd Hoffmann75721502010-10-07 12:22:54 +02001077 }
1078
1079 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1080 return -1;
1081}
1082
1083static int expire_password(Monitor *mon, const QDict *qdict, QObject **ret_data)
1084{
1085 const char *protocol = qdict_get_str(qdict, "protocol");
1086 const char *whenstr = qdict_get_str(qdict, "time");
1087 time_t when;
1088 int rc;
1089
Marc-André Lureau8d86e2b2011-01-06 11:43:17 +01001090 if (strcmp(whenstr, "now") == 0) {
Gerd Hoffmann75721502010-10-07 12:22:54 +02001091 when = 0;
Marc-André Lureau8d86e2b2011-01-06 11:43:17 +01001092 } else if (strcmp(whenstr, "never") == 0) {
Gerd Hoffmann75721502010-10-07 12:22:54 +02001093 when = TIME_MAX;
1094 } else if (whenstr[0] == '+') {
1095 when = time(NULL) + strtoull(whenstr+1, NULL, 10);
1096 } else {
1097 when = strtoull(whenstr, NULL, 10);
1098 }
1099
1100 if (strcmp(protocol, "spice") == 0) {
1101 if (!using_spice) {
1102 /* correct one? spice isn't a device ,,, */
1103 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1104 return -1;
1105 }
1106 rc = qemu_spice_set_pw_expire(when);
1107 if (rc != 0) {
1108 qerror_report(QERR_SET_PASSWD_FAILED);
1109 return -1;
1110 }
1111 return 0;
1112 }
1113
1114 if (strcmp(protocol, "vnc") == 0) {
Jes Sorensen821601e2011-03-16 13:33:36 +01001115 return vnc_display_pw_expire(NULL, when);
Gerd Hoffmann75721502010-10-07 12:22:54 +02001116 }
1117
1118 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1119 return -1;
1120}
1121
Daniel P. Berrange13661082011-06-23 13:31:42 +01001122static int add_graphics_client(Monitor *mon, const QDict *qdict, QObject **ret_data)
1123{
1124 const char *protocol = qdict_get_str(qdict, "protocol");
1125 const char *fdname = qdict_get_str(qdict, "fdname");
Daniel P. Berrange13661082011-06-23 13:31:42 +01001126 CharDriverState *s;
1127
1128 if (strcmp(protocol, "spice") == 0) {
1129 if (!using_spice) {
1130 /* correct one? spice isn't a device ,,, */
1131 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1132 return -1;
1133 }
1134 qerror_report(QERR_ADD_CLIENT_FAILED);
1135 return -1;
TeLeManc62f6d12011-07-25 16:29:14 +08001136#ifdef CONFIG_VNC
Daniel P. Berrange13661082011-06-23 13:31:42 +01001137 } else if (strcmp(protocol, "vnc") == 0) {
1138 int fd = monitor_get_fd(mon, fdname);
Jamie Iles860341f2011-08-10 15:18:42 +01001139 int skipauth = qdict_get_try_bool(qdict, "skipauth", 0);
Daniel P. Berrange13661082011-06-23 13:31:42 +01001140 vnc_display_add_client(NULL, fd, skipauth);
1141 return 0;
TeLeManc62f6d12011-07-25 16:29:14 +08001142#endif
Daniel P. Berrange13661082011-06-23 13:31:42 +01001143 } else if ((s = qemu_chr_find(protocol)) != NULL) {
1144 int fd = monitor_get_fd(mon, fdname);
1145 if (qemu_chr_add_client(s, fd) < 0) {
1146 qerror_report(QERR_ADD_CLIENT_FAILED);
1147 return -1;
1148 }
1149 return 0;
1150 }
1151
1152 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1153 return -1;
1154}
1155
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001156static int client_migrate_info(Monitor *mon, const QDict *qdict, QObject **ret_data)
1157{
1158 const char *protocol = qdict_get_str(qdict, "protocol");
1159 const char *hostname = qdict_get_str(qdict, "hostname");
1160 const char *subject = qdict_get_try_str(qdict, "cert-subject");
1161 int port = qdict_get_try_int(qdict, "port", -1);
1162 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
1163 int ret;
1164
1165 if (strcmp(protocol, "spice") == 0) {
1166 if (!using_spice) {
1167 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1168 return -1;
1169 }
1170
1171 ret = qemu_spice_migrate_info(hostname, port, tls_port, subject);
1172 if (ret != 0) {
1173 qerror_report(QERR_UNDEFINED_ERROR);
1174 return -1;
1175 }
1176 return 0;
1177 }
1178
1179 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1180 return -1;
1181}
1182
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -03001183static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard59a983b2004-03-17 23:17:16 +00001184{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001185 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -03001186 return 0;
bellard59a983b2004-03-17 23:17:16 +00001187}
1188
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001189static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +00001190{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001191 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +00001192}
1193
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001194static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +00001195{
1196 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001197 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +00001198
bellard9307c4c2004-04-04 12:57:25 +00001199 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +00001200 mask = 0;
1201 } else {
bellard9307c4c2004-04-04 12:57:25 +00001202 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +00001203 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001204 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001205 return;
1206 }
1207 }
1208 cpu_set_log(mask);
1209}
1210
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001211static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001212{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001213 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001214 if (!option || !strcmp(option, "on")) {
1215 singlestep = 1;
1216 } else if (!strcmp(option, "off")) {
1217 singlestep = 0;
1218 } else {
1219 monitor_printf(mon, "unexpected option %s\n", option);
1220 }
1221}
1222
aliguoribb5fc202009-03-05 23:01:15 +00001223static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
aliguoric0f4ce72009-03-05 23:01:01 +00001224
aliguori376253e2009-03-05 23:01:23 +00001225struct bdrv_iterate_context {
1226 Monitor *mon;
1227 int err;
1228};
aliguoric0f4ce72009-03-05 23:01:01 +00001229
Luiz Capitulino28a72822011-09-26 17:43:50 -03001230static void iostatus_bdrv_it(void *opaque, BlockDriverState *bs)
1231{
1232 bdrv_iostatus_reset(bs);
1233}
1234
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001235/**
1236 * do_cont(): Resume emulation.
1237 */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001238static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
aliguori376253e2009-03-05 23:01:23 +00001239{
1240 struct bdrv_iterate_context context = { mon, 0 };
1241
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001242 if (runstate_check(RUN_STATE_INMIGRATE)) {
Amit Shah8e848652010-07-27 15:49:19 +05301243 qerror_report(QERR_MIGRATION_EXPECTED);
1244 return -1;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001245 } else if (runstate_check(RUN_STATE_INTERNAL_ERROR) ||
1246 runstate_check(RUN_STATE_SHUTDOWN)) {
Luiz Capitulino6667b232011-07-29 15:57:54 -03001247 qerror_report(QERR_RESET_REQUIRED);
1248 return -1;
Amit Shah8e848652010-07-27 15:49:19 +05301249 }
Luiz Capitulino6667b232011-07-29 15:57:54 -03001250
Luiz Capitulino28a72822011-09-26 17:43:50 -03001251 bdrv_iterate(iostatus_bdrv_it, NULL);
aliguori376253e2009-03-05 23:01:23 +00001252 bdrv_iterate(encrypted_bdrv_it, &context);
aliguoric0f4ce72009-03-05 23:01:01 +00001253 /* only resume the vm if all keys are set and valid */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001254 if (!context.err) {
aliguoric0f4ce72009-03-05 23:01:01 +00001255 vm_start();
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001256 return 0;
1257 } else {
1258 return -1;
1259 }
bellard8a7ddc32004-03-31 19:00:16 +00001260}
1261
aliguoribb5fc202009-03-05 23:01:15 +00001262static void bdrv_key_cb(void *opaque, int err)
1263{
aliguori376253e2009-03-05 23:01:23 +00001264 Monitor *mon = opaque;
1265
aliguoribb5fc202009-03-05 23:01:15 +00001266 /* another key was set successfully, retry to continue */
1267 if (!err)
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001268 do_cont(mon, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001269}
1270
1271static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1272{
aliguori376253e2009-03-05 23:01:23 +00001273 struct bdrv_iterate_context *context = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00001274
aliguori376253e2009-03-05 23:01:23 +00001275 if (!context->err && bdrv_key_required(bs)) {
1276 context->err = -EBUSY;
1277 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1278 context->mon);
aliguoribb5fc202009-03-05 23:01:15 +00001279 }
1280}
1281
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001282static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001283{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001284 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001285 if (!device)
1286 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1287 if (gdbserver_start(device) < 0) {
1288 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1289 device);
1290 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001291 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001292 } else {
aliguori59030a82009-04-05 18:43:41 +00001293 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1294 device);
bellard8a7ddc32004-03-31 19:00:16 +00001295 }
1296}
1297
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001298static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001299{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001300 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001301 if (select_watchdog_action(action) == -1) {
1302 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1303 }
1304}
1305
aliguori376253e2009-03-05 23:01:23 +00001306static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001307{
aliguori376253e2009-03-05 23:01:23 +00001308 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001309 switch(c) {
1310 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001311 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001312 break;
1313 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001314 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001315 break;
1316 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001317 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001318 break;
1319 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001320 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001321 break;
1322 default:
1323 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001324 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001325 } else {
aliguori376253e2009-03-05 23:01:23 +00001326 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001327 }
1328 break;
1329 }
aliguori376253e2009-03-05 23:01:23 +00001330 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001331}
1332
aliguori376253e2009-03-05 23:01:23 +00001333static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -05001334 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001335{
bellard6a00d602005-11-21 23:25:50 +00001336 CPUState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +00001337 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001338 uint8_t buf[16];
1339 uint64_t v;
1340
1341 if (format == 'i') {
1342 int flags;
1343 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001344 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +00001345#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001346 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001347 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001348 } else if (wsize == 4) {
1349 flags = 0;
1350 } else {
bellard6a15fd12006-04-12 21:07:07 +00001351 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001352 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001353 if (env) {
1354#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001355 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001356 (env->segs[R_CS].flags & DESC_L_MASK))
1357 flags = 2;
1358 else
1359#endif
1360 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1361 flags = 1;
1362 }
bellard4c27ba22004-04-25 18:05:08 +00001363 }
1364#endif
aliguori376253e2009-03-05 23:01:23 +00001365 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001366 return;
1367 }
1368
1369 len = wsize * count;
1370 if (wsize == 1)
1371 line_size = 8;
1372 else
1373 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001374 max_digits = 0;
1375
1376 switch(format) {
1377 case 'o':
1378 max_digits = (wsize * 8 + 2) / 3;
1379 break;
1380 default:
1381 case 'x':
1382 max_digits = (wsize * 8) / 4;
1383 break;
1384 case 'u':
1385 case 'd':
1386 max_digits = (wsize * 8 * 10 + 32) / 33;
1387 break;
1388 case 'c':
1389 wsize = 1;
1390 break;
1391 }
1392
1393 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001394 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001395 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001396 else
aliguori376253e2009-03-05 23:01:23 +00001397 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001398 l = len;
1399 if (l > line_size)
1400 l = line_size;
1401 if (is_physical) {
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001402 cpu_physical_memory_read(addr, buf, l);
bellard9307c4c2004-04-04 12:57:25 +00001403 } else {
bellard6a00d602005-11-21 23:25:50 +00001404 env = mon_get_cpu();
aliguoric8f79b62008-08-18 14:00:20 +00001405 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001406 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001407 break;
1408 }
bellard9307c4c2004-04-04 12:57:25 +00001409 }
ths5fafdf22007-09-16 21:08:06 +00001410 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001411 while (i < l) {
1412 switch(wsize) {
1413 default:
1414 case 1:
1415 v = ldub_raw(buf + i);
1416 break;
1417 case 2:
1418 v = lduw_raw(buf + i);
1419 break;
1420 case 4:
bellard92a31b12005-02-10 22:00:52 +00001421 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001422 break;
1423 case 8:
1424 v = ldq_raw(buf + i);
1425 break;
1426 }
aliguori376253e2009-03-05 23:01:23 +00001427 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001428 switch(format) {
1429 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001430 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001431 break;
1432 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001433 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001434 break;
1435 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001436 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001437 break;
1438 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001439 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001440 break;
1441 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001442 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001443 break;
1444 }
1445 i += wsize;
1446 }
aliguori376253e2009-03-05 23:01:23 +00001447 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001448 addr += l;
1449 len -= l;
1450 }
1451}
1452
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001453static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001454{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001455 int count = qdict_get_int(qdict, "count");
1456 int format = qdict_get_int(qdict, "format");
1457 int size = qdict_get_int(qdict, "size");
1458 target_long addr = qdict_get_int(qdict, "addr");
1459
aliguori376253e2009-03-05 23:01:23 +00001460 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001461}
1462
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001463static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001464{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001465 int count = qdict_get_int(qdict, "count");
1466 int format = qdict_get_int(qdict, "format");
1467 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001468 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001469
aliguori376253e2009-03-05 23:01:23 +00001470 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001471}
1472
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001473static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001474{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001475 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001476 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001477
blueswir17743e582007-09-24 18:39:04 +00001478#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +00001479 switch(format) {
1480 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001481 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +00001482 break;
1483 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001484 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +00001485 break;
1486 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001487 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +00001488 break;
1489 default:
1490 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001491 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +00001492 break;
1493 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001494 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001495 break;
1496 }
bellard92a31b12005-02-10 22:00:52 +00001497#else
1498 switch(format) {
1499 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001500 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +00001501 break;
1502 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001503 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +00001504 break;
1505 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001506 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +00001507 break;
1508 default:
1509 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001510 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +00001511 break;
1512 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001513 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +00001514 break;
1515 }
1516#endif
aliguori376253e2009-03-05 23:01:23 +00001517 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001518}
1519
Luiz Capitulino98696222010-02-10 23:49:58 -02001520static int do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellardb371dc52007-01-03 15:20:39 +00001521{
1522 FILE *f;
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001523 uint32_t size = qdict_get_int(qdict, "size");
1524 const char *filename = qdict_get_str(qdict, "filename");
1525 target_long addr = qdict_get_int(qdict, "val");
bellardb371dc52007-01-03 15:20:39 +00001526 uint32_t l;
1527 CPUState *env;
1528 uint8_t buf[1024];
Luiz Capitulino98696222010-02-10 23:49:58 -02001529 int ret = -1;
bellardb371dc52007-01-03 15:20:39 +00001530
1531 env = mon_get_cpu();
bellardb371dc52007-01-03 15:20:39 +00001532
1533 f = fopen(filename, "wb");
1534 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001535 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulino98696222010-02-10 23:49:58 -02001536 return -1;
bellardb371dc52007-01-03 15:20:39 +00001537 }
1538 while (size != 0) {
1539 l = sizeof(buf);
1540 if (l > size)
1541 l = size;
1542 cpu_memory_rw_debug(env, addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001543 if (fwrite(buf, 1, l, f) != l) {
1544 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1545 goto exit;
1546 }
bellardb371dc52007-01-03 15:20:39 +00001547 addr += l;
1548 size -= l;
1549 }
Luiz Capitulino98696222010-02-10 23:49:58 -02001550
1551 ret = 0;
1552
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001553exit:
bellardb371dc52007-01-03 15:20:39 +00001554 fclose(f);
Luiz Capitulino98696222010-02-10 23:49:58 -02001555 return ret;
bellardb371dc52007-01-03 15:20:39 +00001556}
1557
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001558static int do_physical_memory_save(Monitor *mon, const QDict *qdict,
Luiz Capitulino18f5a8b2009-10-16 12:23:44 -03001559 QObject **ret_data)
aurel32a8bdf7a2008-04-11 21:36:14 +00001560{
1561 FILE *f;
1562 uint32_t l;
1563 uint8_t buf[1024];
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001564 uint32_t size = qdict_get_int(qdict, "size");
1565 const char *filename = qdict_get_str(qdict, "filename");
Anthony Liguoric227f092009-10-01 16:12:16 -05001566 target_phys_addr_t addr = qdict_get_int(qdict, "val");
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001567 int ret = -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001568
1569 f = fopen(filename, "wb");
1570 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001571 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001572 return -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001573 }
1574 while (size != 0) {
1575 l = sizeof(buf);
1576 if (l > size)
1577 l = size;
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001578 cpu_physical_memory_read(addr, buf, l);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001579 if (fwrite(buf, 1, l, f) != l) {
1580 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1581 goto exit;
1582 }
aurel32a8bdf7a2008-04-11 21:36:14 +00001583 fflush(f);
1584 addr += l;
1585 size -= l;
1586 }
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001587
1588 ret = 0;
1589
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001590exit:
aurel32a8bdf7a2008-04-11 21:36:14 +00001591 fclose(f);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001592 return ret;
aurel32a8bdf7a2008-04-11 21:36:14 +00001593}
1594
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001595static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001596{
1597 uint32_t addr;
bellarde4cf1ad2005-06-04 20:15:57 +00001598 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001599 uint32_t start = qdict_get_int(qdict, "start");
1600 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001601
1602 sum = 0;
1603 for(addr = start; addr < (start + size); addr++) {
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001604 uint8_t val = ldub_phys(addr);
bellarde4cf1ad2005-06-04 20:15:57 +00001605 /* BSD sum algorithm ('sum' Unix command) */
1606 sum = (sum >> 1) | (sum << 15);
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001607 sum += val;
bellarde4cf1ad2005-06-04 20:15:57 +00001608 }
aliguori376253e2009-03-05 23:01:23 +00001609 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001610}
1611
bellarda3a91a32004-06-04 11:06:21 +00001612typedef struct {
1613 int keycode;
1614 const char *name;
1615} KeyDef;
1616
1617static const KeyDef key_defs[] = {
1618 { 0x2a, "shift" },
1619 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +00001620
bellarda3a91a32004-06-04 11:06:21 +00001621 { 0x38, "alt" },
1622 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +00001623 { 0x64, "altgr" },
1624 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +00001625 { 0x1d, "ctrl" },
1626 { 0x9d, "ctrl_r" },
1627
1628 { 0xdd, "menu" },
1629
1630 { 0x01, "esc" },
1631
1632 { 0x02, "1" },
1633 { 0x03, "2" },
1634 { 0x04, "3" },
1635 { 0x05, "4" },
1636 { 0x06, "5" },
1637 { 0x07, "6" },
1638 { 0x08, "7" },
1639 { 0x09, "8" },
1640 { 0x0a, "9" },
1641 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +00001642 { 0x0c, "minus" },
1643 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +00001644 { 0x0e, "backspace" },
1645
1646 { 0x0f, "tab" },
1647 { 0x10, "q" },
1648 { 0x11, "w" },
1649 { 0x12, "e" },
1650 { 0x13, "r" },
1651 { 0x14, "t" },
1652 { 0x15, "y" },
1653 { 0x16, "u" },
1654 { 0x17, "i" },
1655 { 0x18, "o" },
1656 { 0x19, "p" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001657 { 0x1a, "bracket_left" },
1658 { 0x1b, "bracket_right" },
bellarda3a91a32004-06-04 11:06:21 +00001659 { 0x1c, "ret" },
1660
1661 { 0x1e, "a" },
1662 { 0x1f, "s" },
1663 { 0x20, "d" },
1664 { 0x21, "f" },
1665 { 0x22, "g" },
1666 { 0x23, "h" },
1667 { 0x24, "j" },
1668 { 0x25, "k" },
1669 { 0x26, "l" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001670 { 0x27, "semicolon" },
1671 { 0x28, "apostrophe" },
1672 { 0x29, "grave_accent" },
bellarda3a91a32004-06-04 11:06:21 +00001673
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001674 { 0x2b, "backslash" },
bellarda3a91a32004-06-04 11:06:21 +00001675 { 0x2c, "z" },
1676 { 0x2d, "x" },
1677 { 0x2e, "c" },
1678 { 0x2f, "v" },
1679 { 0x30, "b" },
1680 { 0x31, "n" },
1681 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +00001682 { 0x33, "comma" },
1683 { 0x34, "dot" },
1684 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +00001685
balrog4d3b6f62008-02-10 16:33:14 +00001686 { 0x37, "asterisk" },
1687
bellarda3a91a32004-06-04 11:06:21 +00001688 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +00001689 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001690 { 0x3b, "f1" },
1691 { 0x3c, "f2" },
1692 { 0x3d, "f3" },
1693 { 0x3e, "f4" },
1694 { 0x3f, "f5" },
1695 { 0x40, "f6" },
1696 { 0x41, "f7" },
1697 { 0x42, "f8" },
1698 { 0x43, "f9" },
1699 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +00001700 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001701 { 0x46, "scroll_lock" },
1702
bellard64866c32006-05-07 18:03:31 +00001703 { 0xb5, "kp_divide" },
1704 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +00001705 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +00001706 { 0x4e, "kp_add" },
1707 { 0x9c, "kp_enter" },
1708 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +00001709 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +00001710
1711 { 0x52, "kp_0" },
1712 { 0x4f, "kp_1" },
1713 { 0x50, "kp_2" },
1714 { 0x51, "kp_3" },
1715 { 0x4b, "kp_4" },
1716 { 0x4c, "kp_5" },
1717 { 0x4d, "kp_6" },
1718 { 0x47, "kp_7" },
1719 { 0x48, "kp_8" },
1720 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +00001721
bellarda3a91a32004-06-04 11:06:21 +00001722 { 0x56, "<" },
1723
1724 { 0x57, "f11" },
1725 { 0x58, "f12" },
1726
1727 { 0xb7, "print" },
1728
1729 { 0xc7, "home" },
1730 { 0xc9, "pgup" },
1731 { 0xd1, "pgdn" },
1732 { 0xcf, "end" },
1733
1734 { 0xcb, "left" },
1735 { 0xc8, "up" },
1736 { 0xd0, "down" },
1737 { 0xcd, "right" },
1738
1739 { 0xd2, "insert" },
1740 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001741#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1742 { 0xf0, "stop" },
1743 { 0xf1, "again" },
1744 { 0xf2, "props" },
1745 { 0xf3, "undo" },
1746 { 0xf4, "front" },
1747 { 0xf5, "copy" },
1748 { 0xf6, "open" },
1749 { 0xf7, "paste" },
1750 { 0xf8, "find" },
1751 { 0xf9, "cut" },
1752 { 0xfa, "lf" },
1753 { 0xfb, "help" },
1754 { 0xfc, "meta_l" },
1755 { 0xfd, "meta_r" },
1756 { 0xfe, "compose" },
1757#endif
bellarda3a91a32004-06-04 11:06:21 +00001758 { 0, NULL },
1759};
1760
1761static int get_keycode(const char *key)
1762{
1763 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001764 char *endp;
1765 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001766
1767 for(p = key_defs; p->name != NULL; p++) {
1768 if (!strcmp(key, p->name))
1769 return p->keycode;
1770 }
bellard64866c32006-05-07 18:03:31 +00001771 if (strstart(key, "0x", NULL)) {
1772 ret = strtoul(key, &endp, 0);
1773 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1774 return ret;
1775 }
bellarda3a91a32004-06-04 11:06:21 +00001776 return -1;
1777}
1778
balrogc8256f92008-06-08 22:45:01 +00001779#define MAX_KEYCODES 16
1780static uint8_t keycodes[MAX_KEYCODES];
1781static int nb_pending_keycodes;
1782static QEMUTimer *key_timer;
1783
1784static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001785{
balrogc8256f92008-06-08 22:45:01 +00001786 int keycode;
1787
1788 while (nb_pending_keycodes > 0) {
1789 nb_pending_keycodes--;
1790 keycode = keycodes[nb_pending_keycodes];
1791 if (keycode & 0x80)
1792 kbd_put_keycode(0xe0);
1793 kbd_put_keycode(keycode | 0x80);
1794 }
1795}
1796
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001797static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001798{
balrog3401c0d2008-06-04 10:05:59 +00001799 char keyname_buf[16];
1800 char *separator;
1801 int keyname_len, keycode, i;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001802 const char *string = qdict_get_str(qdict, "string");
1803 int has_hold_time = qdict_haskey(qdict, "hold_time");
1804 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
ths3b46e622007-09-17 08:09:54 +00001805
balrogc8256f92008-06-08 22:45:01 +00001806 if (nb_pending_keycodes > 0) {
1807 qemu_del_timer(key_timer);
1808 release_keys(NULL);
1809 }
1810 if (!has_hold_time)
1811 hold_time = 100;
1812 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001813 while (1) {
1814 separator = strchr(string, '-');
1815 keyname_len = separator ? separator - string : strlen(string);
1816 if (keyname_len > 0) {
1817 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1818 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001819 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001820 return;
bellarda3a91a32004-06-04 11:06:21 +00001821 }
balrogc8256f92008-06-08 22:45:01 +00001822 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001823 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001824 return;
1825 }
1826 keyname_buf[keyname_len] = 0;
1827 keycode = get_keycode(keyname_buf);
1828 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001829 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001830 return;
1831 }
balrogc8256f92008-06-08 22:45:01 +00001832 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001833 }
balrog3401c0d2008-06-04 10:05:59 +00001834 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001835 break;
balrog3401c0d2008-06-04 10:05:59 +00001836 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001837 }
balrogc8256f92008-06-08 22:45:01 +00001838 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001839 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001840 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001841 keycode = keycodes[i];
1842 if (keycode & 0x80)
1843 kbd_put_keycode(0xe0);
1844 kbd_put_keycode(keycode & 0x7f);
1845 }
balrogc8256f92008-06-08 22:45:01 +00001846 /* delayed key up events */
Paolo Bonzini74475452011-03-11 16:47:48 +01001847 qemu_mod_timer(key_timer, qemu_get_clock_ns(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001848 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001849}
1850
bellard13224a82006-07-14 22:03:35 +00001851static int mouse_button_state;
1852
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001853static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001854{
1855 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001856 const char *dx_str = qdict_get_str(qdict, "dx_str");
1857 const char *dy_str = qdict_get_str(qdict, "dy_str");
1858 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001859 dx = strtol(dx_str, NULL, 0);
1860 dy = strtol(dy_str, NULL, 0);
1861 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001862 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001863 dz = strtol(dz_str, NULL, 0);
1864 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1865}
1866
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001867static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001868{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001869 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001870 mouse_button_state = button_state;
1871 kbd_mouse_event(0, 0, 0, mouse_button_state);
1872}
1873
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001874static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001875{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001876 int size = qdict_get_int(qdict, "size");
1877 int addr = qdict_get_int(qdict, "addr");
1878 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001879 uint32_t val;
1880 int suffix;
1881
1882 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001883 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001884 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001885 addr++;
1886 }
1887 addr &= 0xffff;
1888
1889 switch(size) {
1890 default:
1891 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001892 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001893 suffix = 'b';
1894 break;
1895 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001896 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001897 suffix = 'w';
1898 break;
1899 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001900 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001901 suffix = 'l';
1902 break;
1903 }
aliguori376253e2009-03-05 23:01:23 +00001904 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1905 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001906}
bellarda3a91a32004-06-04 11:06:21 +00001907
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001908static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001909{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001910 int size = qdict_get_int(qdict, "size");
1911 int addr = qdict_get_int(qdict, "addr");
1912 int val = qdict_get_int(qdict, "val");
1913
Jan Kiszkaf1147842009-07-14 10:20:11 +02001914 addr &= IOPORTS_MASK;
1915
1916 switch (size) {
1917 default:
1918 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001919 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001920 break;
1921 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001922 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001923 break;
1924 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001925 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001926 break;
1927 }
1928}
1929
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001930static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001931{
1932 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001933 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001934
Jan Kiszka76e30d02009-07-02 00:19:02 +02001935 res = qemu_boot_set(bootdevice);
1936 if (res == 0) {
1937 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1938 } else if (res > 0) {
1939 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001940 } else {
aliguori376253e2009-03-05 23:01:23 +00001941 monitor_printf(mon, "no function defined to set boot device list for "
1942 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001943 }
1944}
1945
Luiz Capitulinoc80d2592009-10-07 13:41:58 -03001946/**
Luiz Capitulino43076662009-10-07 13:41:59 -03001947 * do_system_powerdown(): Issue a machine powerdown
1948 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001949static int do_system_powerdown(Monitor *mon, const QDict *qdict,
1950 QObject **ret_data)
bellard34751872005-07-02 14:31:34 +00001951{
1952 qemu_system_powerdown_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001953 return 0;
bellard34751872005-07-02 14:31:34 +00001954}
1955
bellardb86bda52004-09-18 19:32:46 +00001956#if defined(TARGET_I386)
Blue Swirld65aaf32010-12-11 18:56:24 +00001957static void print_pte(Monitor *mon, target_phys_addr_t addr,
1958 target_phys_addr_t pte,
1959 target_phys_addr_t mask)
bellardb86bda52004-09-18 19:32:46 +00001960{
Blue Swirld65aaf32010-12-11 18:56:24 +00001961#ifdef TARGET_X86_64
1962 if (addr & (1ULL << 47)) {
1963 addr |= -1LL << 48;
1964 }
1965#endif
1966 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1967 " %c%c%c%c%c%c%c%c%c\n",
aliguori376253e2009-03-05 23:01:23 +00001968 addr,
1969 pte & mask,
Blue Swirld65aaf32010-12-11 18:56:24 +00001970 pte & PG_NX_MASK ? 'X' : '-',
aliguori376253e2009-03-05 23:01:23 +00001971 pte & PG_GLOBAL_MASK ? 'G' : '-',
1972 pte & PG_PSE_MASK ? 'P' : '-',
1973 pte & PG_DIRTY_MASK ? 'D' : '-',
1974 pte & PG_ACCESSED_MASK ? 'A' : '-',
1975 pte & PG_PCD_MASK ? 'C' : '-',
1976 pte & PG_PWT_MASK ? 'T' : '-',
1977 pte & PG_USER_MASK ? 'U' : '-',
1978 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001979}
1980
Blue Swirld65aaf32010-12-11 18:56:24 +00001981static void tlb_info_32(Monitor *mon, CPUState *env)
bellardb86bda52004-09-18 19:32:46 +00001982{
Austin Clements94ac5cd2011-08-21 14:49:45 -04001983 unsigned int l1, l2;
bellardb86bda52004-09-18 19:32:46 +00001984 uint32_t pgd, pde, pte;
1985
bellardb86bda52004-09-18 19:32:46 +00001986 pgd = env->cr[3] & ~0xfff;
1987 for(l1 = 0; l1 < 1024; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001988 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
bellardb86bda52004-09-18 19:32:46 +00001989 pde = le32_to_cpu(pde);
1990 if (pde & PG_PRESENT_MASK) {
1991 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
Blue Swirld65aaf32010-12-11 18:56:24 +00001992 /* 4M pages */
1993 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
bellardb86bda52004-09-18 19:32:46 +00001994 } else {
1995 for(l2 = 0; l2 < 1024; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001996 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
bellardb86bda52004-09-18 19:32:46 +00001997 pte = le32_to_cpu(pte);
1998 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001999 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00002000 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00002001 ~0xfff);
2002 }
2003 }
2004 }
2005 }
2006 }
2007}
2008
Blue Swirld65aaf32010-12-11 18:56:24 +00002009static void tlb_info_pae32(Monitor *mon, CPUState *env)
2010{
Austin Clements94ac5cd2011-08-21 14:49:45 -04002011 unsigned int l1, l2, l3;
Blue Swirld65aaf32010-12-11 18:56:24 +00002012 uint64_t pdpe, pde, pte;
2013 uint64_t pdp_addr, pd_addr, pt_addr;
2014
2015 pdp_addr = env->cr[3] & ~0x1f;
2016 for (l1 = 0; l1 < 4; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002017 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00002018 pdpe = le64_to_cpu(pdpe);
2019 if (pdpe & PG_PRESENT_MASK) {
2020 pd_addr = pdpe & 0x3fffffffff000ULL;
2021 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002022 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00002023 pde = le64_to_cpu(pde);
2024 if (pde & PG_PRESENT_MASK) {
2025 if (pde & PG_PSE_MASK) {
2026 /* 2M pages with PAE, CR4.PSE is ignored */
2027 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
2028 ~((target_phys_addr_t)(1 << 20) - 1));
2029 } else {
2030 pt_addr = pde & 0x3fffffffff000ULL;
2031 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002032 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00002033 pte = le64_to_cpu(pte);
2034 if (pte & PG_PRESENT_MASK) {
2035 print_pte(mon, (l1 << 30 ) + (l2 << 21)
2036 + (l3 << 12),
2037 pte & ~PG_PSE_MASK,
2038 ~(target_phys_addr_t)0xfff);
2039 }
2040 }
2041 }
2042 }
2043 }
2044 }
2045 }
2046}
2047
2048#ifdef TARGET_X86_64
2049static void tlb_info_64(Monitor *mon, CPUState *env)
2050{
2051 uint64_t l1, l2, l3, l4;
2052 uint64_t pml4e, pdpe, pde, pte;
2053 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
2054
2055 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
2056 for (l1 = 0; l1 < 512; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002057 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00002058 pml4e = le64_to_cpu(pml4e);
2059 if (pml4e & PG_PRESENT_MASK) {
2060 pdp_addr = pml4e & 0x3fffffffff000ULL;
2061 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002062 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00002063 pdpe = le64_to_cpu(pdpe);
2064 if (pdpe & PG_PRESENT_MASK) {
2065 if (pdpe & PG_PSE_MASK) {
2066 /* 1G pages, CR4.PSE is ignored */
2067 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
2068 0x3ffffc0000000ULL);
2069 } else {
2070 pd_addr = pdpe & 0x3fffffffff000ULL;
2071 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002072 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00002073 pde = le64_to_cpu(pde);
2074 if (pde & PG_PRESENT_MASK) {
2075 if (pde & PG_PSE_MASK) {
2076 /* 2M pages, CR4.PSE is ignored */
2077 print_pte(mon, (l1 << 39) + (l2 << 30) +
2078 (l3 << 21), pde,
2079 0x3ffffffe00000ULL);
2080 } else {
2081 pt_addr = pde & 0x3fffffffff000ULL;
2082 for (l4 = 0; l4 < 512; l4++) {
2083 cpu_physical_memory_read(pt_addr
2084 + l4 * 8,
Stefan Weilb8b79322011-03-26 21:11:05 +01002085 &pte, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00002086 pte = le64_to_cpu(pte);
2087 if (pte & PG_PRESENT_MASK) {
2088 print_pte(mon, (l1 << 39) +
2089 (l2 << 30) +
2090 (l3 << 21) + (l4 << 12),
2091 pte & ~PG_PSE_MASK,
2092 0x3fffffffff000ULL);
2093 }
2094 }
2095 }
2096 }
2097 }
2098 }
2099 }
2100 }
2101 }
2102 }
2103}
2104#endif
2105
2106static void tlb_info(Monitor *mon)
2107{
2108 CPUState *env;
2109
2110 env = mon_get_cpu();
2111
2112 if (!(env->cr[0] & CR0_PG_MASK)) {
2113 monitor_printf(mon, "PG disabled\n");
2114 return;
2115 }
2116 if (env->cr[4] & CR4_PAE_MASK) {
2117#ifdef TARGET_X86_64
2118 if (env->hflags & HF_LMA_MASK) {
2119 tlb_info_64(mon, env);
2120 } else
2121#endif
2122 {
2123 tlb_info_pae32(mon, env);
2124 }
2125 } else {
2126 tlb_info_32(mon, env);
2127 }
2128}
2129
Blue Swirl1b3cba62010-12-11 18:56:27 +00002130static void mem_print(Monitor *mon, target_phys_addr_t *pstart,
2131 int *plast_prot,
2132 target_phys_addr_t end, int prot)
bellardb86bda52004-09-18 19:32:46 +00002133{
bellard9746b152004-11-11 18:30:24 +00002134 int prot1;
2135 prot1 = *plast_prot;
2136 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00002137 if (*pstart != -1) {
Blue Swirl1b3cba62010-12-11 18:56:27 +00002138 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
2139 TARGET_FMT_plx " %c%c%c\n",
aliguori376253e2009-03-05 23:01:23 +00002140 *pstart, end, end - *pstart,
2141 prot1 & PG_USER_MASK ? 'u' : '-',
2142 'r',
2143 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00002144 }
2145 if (prot != 0)
2146 *pstart = end;
2147 else
2148 *pstart = -1;
2149 *plast_prot = prot;
2150 }
2151}
2152
Blue Swirl1b3cba62010-12-11 18:56:27 +00002153static void mem_info_32(Monitor *mon, CPUState *env)
bellardb86bda52004-09-18 19:32:46 +00002154{
Austin Clementsb49ca722011-08-14 23:19:21 -04002155 unsigned int l1, l2;
2156 int prot, last_prot;
Blue Swirl1b3cba62010-12-11 18:56:27 +00002157 uint32_t pgd, pde, pte;
2158 target_phys_addr_t start, end;
bellardb86bda52004-09-18 19:32:46 +00002159
bellardb86bda52004-09-18 19:32:46 +00002160 pgd = env->cr[3] & ~0xfff;
2161 last_prot = 0;
2162 start = -1;
2163 for(l1 = 0; l1 < 1024; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002164 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
bellardb86bda52004-09-18 19:32:46 +00002165 pde = le32_to_cpu(pde);
2166 end = l1 << 22;
2167 if (pde & PG_PRESENT_MASK) {
2168 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
2169 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00002170 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00002171 } else {
2172 for(l2 = 0; l2 < 1024; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002173 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
bellardb86bda52004-09-18 19:32:46 +00002174 pte = le32_to_cpu(pte);
2175 end = (l1 << 22) + (l2 << 12);
2176 if (pte & PG_PRESENT_MASK) {
Austin Clementsc76c8412011-08-14 23:22:28 -04002177 prot = pte & pde &
2178 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
bellardb86bda52004-09-18 19:32:46 +00002179 } else {
2180 prot = 0;
2181 }
aliguori376253e2009-03-05 23:01:23 +00002182 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00002183 }
2184 }
2185 } else {
2186 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00002187 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00002188 }
2189 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04002190 /* Flush last range */
2191 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
bellardb86bda52004-09-18 19:32:46 +00002192}
Blue Swirl1b3cba62010-12-11 18:56:27 +00002193
2194static void mem_info_pae32(Monitor *mon, CPUState *env)
2195{
Austin Clementsb49ca722011-08-14 23:19:21 -04002196 unsigned int l1, l2, l3;
2197 int prot, last_prot;
Blue Swirl1b3cba62010-12-11 18:56:27 +00002198 uint64_t pdpe, pde, pte;
2199 uint64_t pdp_addr, pd_addr, pt_addr;
2200 target_phys_addr_t start, end;
2201
2202 pdp_addr = env->cr[3] & ~0x1f;
2203 last_prot = 0;
2204 start = -1;
2205 for (l1 = 0; l1 < 4; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002206 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002207 pdpe = le64_to_cpu(pdpe);
2208 end = l1 << 30;
2209 if (pdpe & PG_PRESENT_MASK) {
2210 pd_addr = pdpe & 0x3fffffffff000ULL;
2211 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002212 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002213 pde = le64_to_cpu(pde);
2214 end = (l1 << 30) + (l2 << 21);
2215 if (pde & PG_PRESENT_MASK) {
2216 if (pde & PG_PSE_MASK) {
2217 prot = pde & (PG_USER_MASK | PG_RW_MASK |
2218 PG_PRESENT_MASK);
2219 mem_print(mon, &start, &last_prot, end, prot);
2220 } else {
2221 pt_addr = pde & 0x3fffffffff000ULL;
2222 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002223 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002224 pte = le64_to_cpu(pte);
2225 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
2226 if (pte & PG_PRESENT_MASK) {
Austin Clementsc76c8412011-08-14 23:22:28 -04002227 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
2228 PG_PRESENT_MASK);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002229 } else {
2230 prot = 0;
2231 }
2232 mem_print(mon, &start, &last_prot, end, prot);
2233 }
2234 }
2235 } else {
2236 prot = 0;
2237 mem_print(mon, &start, &last_prot, end, prot);
2238 }
2239 }
2240 } else {
2241 prot = 0;
2242 mem_print(mon, &start, &last_prot, end, prot);
2243 }
2244 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04002245 /* Flush last range */
2246 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002247}
2248
2249
2250#ifdef TARGET_X86_64
2251static void mem_info_64(Monitor *mon, CPUState *env)
2252{
2253 int prot, last_prot;
2254 uint64_t l1, l2, l3, l4;
2255 uint64_t pml4e, pdpe, pde, pte;
2256 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
2257
2258 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
2259 last_prot = 0;
2260 start = -1;
2261 for (l1 = 0; l1 < 512; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002262 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002263 pml4e = le64_to_cpu(pml4e);
2264 end = l1 << 39;
2265 if (pml4e & PG_PRESENT_MASK) {
2266 pdp_addr = pml4e & 0x3fffffffff000ULL;
2267 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002268 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002269 pdpe = le64_to_cpu(pdpe);
2270 end = (l1 << 39) + (l2 << 30);
2271 if (pdpe & PG_PRESENT_MASK) {
2272 if (pdpe & PG_PSE_MASK) {
Blue Swirl2d5b5072011-01-15 08:31:00 +00002273 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
2274 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04002275 prot &= pml4e;
Blue Swirl1b3cba62010-12-11 18:56:27 +00002276 mem_print(mon, &start, &last_prot, end, prot);
2277 } else {
2278 pd_addr = pdpe & 0x3fffffffff000ULL;
2279 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002280 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002281 pde = le64_to_cpu(pde);
2282 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
2283 if (pde & PG_PRESENT_MASK) {
2284 if (pde & PG_PSE_MASK) {
2285 prot = pde & (PG_USER_MASK | PG_RW_MASK |
2286 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04002287 prot &= pml4e & pdpe;
Blue Swirl1b3cba62010-12-11 18:56:27 +00002288 mem_print(mon, &start, &last_prot, end, prot);
2289 } else {
2290 pt_addr = pde & 0x3fffffffff000ULL;
2291 for (l4 = 0; l4 < 512; l4++) {
2292 cpu_physical_memory_read(pt_addr
2293 + l4 * 8,
Stefan Weilb8b79322011-03-26 21:11:05 +01002294 &pte, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002295 pte = le64_to_cpu(pte);
2296 end = (l1 << 39) + (l2 << 30) +
2297 (l3 << 21) + (l4 << 12);
2298 if (pte & PG_PRESENT_MASK) {
2299 prot = pte & (PG_USER_MASK | PG_RW_MASK |
2300 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04002301 prot &= pml4e & pdpe & pde;
Blue Swirl1b3cba62010-12-11 18:56:27 +00002302 } else {
2303 prot = 0;
2304 }
2305 mem_print(mon, &start, &last_prot, end, prot);
2306 }
2307 }
2308 } else {
2309 prot = 0;
2310 mem_print(mon, &start, &last_prot, end, prot);
2311 }
2312 }
2313 }
2314 } else {
2315 prot = 0;
2316 mem_print(mon, &start, &last_prot, end, prot);
2317 }
2318 }
2319 } else {
2320 prot = 0;
2321 mem_print(mon, &start, &last_prot, end, prot);
2322 }
2323 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04002324 /* Flush last range */
2325 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 48, 0);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002326}
2327#endif
2328
2329static void mem_info(Monitor *mon)
2330{
2331 CPUState *env;
2332
2333 env = mon_get_cpu();
2334
2335 if (!(env->cr[0] & CR0_PG_MASK)) {
2336 monitor_printf(mon, "PG disabled\n");
2337 return;
2338 }
2339 if (env->cr[4] & CR4_PAE_MASK) {
2340#ifdef TARGET_X86_64
2341 if (env->hflags & HF_LMA_MASK) {
2342 mem_info_64(mon, env);
2343 } else
2344#endif
2345 {
2346 mem_info_pae32(mon, env);
2347 }
2348 } else {
2349 mem_info_32(mon, env);
2350 }
2351}
bellardb86bda52004-09-18 19:32:46 +00002352#endif
2353
aurel327c664e22009-03-03 06:12:22 +00002354#if defined(TARGET_SH4)
2355
aliguori376253e2009-03-05 23:01:23 +00002356static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00002357{
aliguori376253e2009-03-05 23:01:23 +00002358 monitor_printf(mon, " tlb%i:\t"
2359 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
2360 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
2361 "dirty=%hhu writethrough=%hhu\n",
2362 idx,
2363 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
2364 tlb->v, tlb->sh, tlb->c, tlb->pr,
2365 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00002366}
2367
aliguori376253e2009-03-05 23:01:23 +00002368static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00002369{
2370 CPUState *env = mon_get_cpu();
2371 int i;
2372
aliguori376253e2009-03-05 23:01:23 +00002373 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00002374 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00002375 print_tlb (mon, i, &env->itlb[i]);
2376 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00002377 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00002378 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00002379}
2380
2381#endif
2382
Scott Woodbebabbc2011-08-18 10:38:42 +00002383#if defined(TARGET_SPARC) || defined(TARGET_PPC)
Blue Swirld41160a2010-12-19 13:42:56 +00002384static void tlb_info(Monitor *mon)
2385{
2386 CPUState *env1 = mon_get_cpu();
2387
2388 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
2389}
2390#endif
2391
Blue Swirl314e2982011-09-11 20:22:05 +00002392static void do_info_mtree(Monitor *mon)
2393{
2394 mtree_info((fprintf_function)monitor_printf, mon);
2395}
2396
aliguori030ea372009-04-21 22:30:47 +00002397static void do_info_numa(Monitor *mon)
2398{
aliguorib28b6232009-04-22 20:20:29 +00002399 int i;
aliguori030ea372009-04-21 22:30:47 +00002400 CPUState *env;
2401
2402 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2403 for (i = 0; i < nb_numa_nodes; i++) {
2404 monitor_printf(mon, "node %d cpus:", i);
2405 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2406 if (env->numa_node == i) {
2407 monitor_printf(mon, " %d", env->cpu_index);
2408 }
2409 }
2410 monitor_printf(mon, "\n");
2411 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2412 node_mem[i] >> 20);
2413 }
2414}
2415
bellard5f1ce942006-02-08 22:40:15 +00002416#ifdef CONFIG_PROFILER
2417
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02002418int64_t qemu_time;
2419int64_t dev_time;
2420
aliguori376253e2009-03-05 23:01:23 +00002421static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002422{
2423 int64_t total;
2424 total = qemu_time;
2425 if (total == 0)
2426 total = 1;
aliguori376253e2009-03-05 23:01:23 +00002427 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002428 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00002429 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002430 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00002431 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002432 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002433}
2434#else
aliguori376253e2009-03-05 23:01:23 +00002435static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002436{
aliguori376253e2009-03-05 23:01:23 +00002437 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00002438}
2439#endif
2440
bellardec36b692006-07-16 18:57:03 +00002441/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002442static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00002443
aliguori376253e2009-03-05 23:01:23 +00002444static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00002445{
2446 int i;
2447 CaptureState *s;
2448
2449 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00002450 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00002451 s->ops.info (s->opaque);
2452 }
2453}
2454
Blue Swirl23130862009-06-06 08:22:04 +00002455#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002456static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002457{
2458 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002459 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00002460 CaptureState *s;
2461
2462 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2463 if (i == n) {
2464 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002465 QLIST_REMOVE (s, entries);
Anthony Liguori7267c092011-08-20 22:09:37 -05002466 g_free (s);
bellardec36b692006-07-16 18:57:03 +00002467 return;
2468 }
2469 }
2470}
2471
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002472static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002473{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002474 const char *path = qdict_get_str(qdict, "path");
2475 int has_freq = qdict_haskey(qdict, "freq");
2476 int freq = qdict_get_try_int(qdict, "freq", -1);
2477 int has_bits = qdict_haskey(qdict, "bits");
2478 int bits = qdict_get_try_int(qdict, "bits", -1);
2479 int has_channels = qdict_haskey(qdict, "nchannels");
2480 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00002481 CaptureState *s;
2482
Anthony Liguori7267c092011-08-20 22:09:37 -05002483 s = g_malloc0 (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002484
2485 freq = has_freq ? freq : 44100;
2486 bits = has_bits ? bits : 16;
2487 nchannels = has_channels ? nchannels : 2;
2488
2489 if (wav_start_capture (s, path, freq, bits, nchannels)) {
Isaku Yamahatad00b2612011-01-21 19:53:55 +09002490 monitor_printf(mon, "Failed to add wave capture\n");
Anthony Liguori7267c092011-08-20 22:09:37 -05002491 g_free (s);
Isaku Yamahatad00b2612011-01-21 19:53:55 +09002492 return;
bellardec36b692006-07-16 18:57:03 +00002493 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002494 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002495}
2496#endif
2497
aurel32dc1c0b72008-04-27 23:52:12 +00002498#if defined(TARGET_I386)
Luiz Capitulinoe9b4b432011-04-29 12:11:50 -03002499static int do_inject_nmi(Monitor *mon, const QDict *qdict, QObject **ret_data)
Lai Jiangshana4046662011-03-07 17:05:15 +08002500{
2501 CPUState *env;
2502
2503 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2504 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2505 }
2506
2507 return 0;
2508}
2509#else
Luiz Capitulinoe9b4b432011-04-29 12:11:50 -03002510static int do_inject_nmi(Monitor *mon, const QDict *qdict, QObject **ret_data)
Lai Jiangshana4046662011-03-07 17:05:15 +08002511{
2512 qerror_report(QERR_UNSUPPORTED);
2513 return -1;
2514}
aurel32dc1c0b72008-04-27 23:52:12 +00002515#endif
2516
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002517static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002518{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002519 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002520
aliguori76655d62009-03-06 20:27:37 +00002521 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002522 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002523 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002524 return acl;
2525}
aliguori76655d62009-03-06 20:27:37 +00002526
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002527static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002528{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002529 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002530 qemu_acl *acl = find_acl(mon, aclname);
2531 qemu_acl_entry *entry;
2532 int i = 0;
2533
2534 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002535 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002536 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002537 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002538 i++;
2539 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002540 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002541 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002542 }
2543}
2544
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002545static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002546{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002547 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002548 qemu_acl *acl = find_acl(mon, aclname);
2549
2550 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002551 qemu_acl_reset(acl);
2552 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002553 }
2554}
aliguori76655d62009-03-06 20:27:37 +00002555
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002556static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002557{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002558 const char *aclname = qdict_get_str(qdict, "aclname");
2559 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002560 qemu_acl *acl = find_acl(mon, aclname);
2561
2562 if (acl) {
2563 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002564 acl->defaultDeny = 0;
2565 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002566 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002567 acl->defaultDeny = 1;
2568 monitor_printf(mon, "acl: policy set to 'deny'\n");
2569 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002570 monitor_printf(mon, "acl: unknown policy '%s', "
2571 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002572 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002573 }
2574}
aliguori76655d62009-03-06 20:27:37 +00002575
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002576static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002577{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002578 const char *aclname = qdict_get_str(qdict, "aclname");
2579 const char *match = qdict_get_str(qdict, "match");
2580 const char *policy = qdict_get_str(qdict, "policy");
2581 int has_index = qdict_haskey(qdict, "index");
2582 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002583 qemu_acl *acl = find_acl(mon, aclname);
2584 int deny, ret;
2585
2586 if (acl) {
2587 if (strcmp(policy, "allow") == 0) {
2588 deny = 0;
2589 } else if (strcmp(policy, "deny") == 0) {
2590 deny = 1;
2591 } else {
2592 monitor_printf(mon, "acl: unknown policy '%s', "
2593 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002594 return;
2595 }
aliguori28a76be2009-03-06 20:27:40 +00002596 if (has_index)
2597 ret = qemu_acl_insert(acl, deny, match, index);
2598 else
2599 ret = qemu_acl_append(acl, deny, match);
2600 if (ret < 0)
2601 monitor_printf(mon, "acl: unable to add acl entry\n");
2602 else
2603 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002604 }
2605}
aliguori76655d62009-03-06 20:27:37 +00002606
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002607static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002608{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002609 const char *aclname = qdict_get_str(qdict, "aclname");
2610 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002611 qemu_acl *acl = find_acl(mon, aclname);
2612 int ret;
aliguori76655d62009-03-06 20:27:37 +00002613
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002614 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002615 ret = qemu_acl_remove(acl, match);
2616 if (ret < 0)
2617 monitor_printf(mon, "acl: no matching acl entry\n");
2618 else
2619 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002620 }
2621}
2622
Huang Ying79c4f6b2009-06-23 10:05:14 +08002623#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002624static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002625{
2626 CPUState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002627 int cpu_index = qdict_get_int(qdict, "cpu_index");
2628 int bank = qdict_get_int(qdict, "bank");
2629 uint64_t status = qdict_get_int(qdict, "status");
2630 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2631 uint64_t addr = qdict_get_int(qdict, "addr");
2632 uint64_t misc = qdict_get_int(qdict, "misc");
Jan Kiszka747461c2011-03-02 08:56:10 +01002633 int flags = MCE_INJECT_UNCOND_AO;
Huang Ying79c4f6b2009-06-23 10:05:14 +08002634
Jan Kiszka747461c2011-03-02 08:56:10 +01002635 if (qdict_get_try_bool(qdict, "broadcast", 0)) {
2636 flags |= MCE_INJECT_BROADCAST;
2637 }
Jin Dongming31ce5e02010-12-10 17:21:02 +09002638 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu) {
Jan Kiszka316378e2011-03-02 08:56:09 +01002639 if (cenv->cpu_index == cpu_index) {
2640 cpu_x86_inject_mce(mon, cenv, bank, status, mcg_status, addr, misc,
Jan Kiszka747461c2011-03-02 08:56:10 +01002641 flags);
Huang Ying79c4f6b2009-06-23 10:05:14 +08002642 break;
2643 }
Jin Dongming31ce5e02010-12-10 17:21:02 +09002644 }
Huang Ying79c4f6b2009-06-23 10:05:14 +08002645}
2646#endif
2647
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002648static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002649{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002650 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002651 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002652 int fd;
2653
Anthony Liguori74c0d6f2011-08-15 11:17:39 -05002654 fd = qemu_chr_fe_get_msgfd(mon->chr);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002655 if (fd == -1) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002656 qerror_report(QERR_FD_NOT_SUPPLIED);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002657 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002658 }
2659
2660 if (qemu_isdigit(fdname[0])) {
Markus Armbrustere17ba872010-03-25 17:22:36 +01002661 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2662 "a name not starting with a digit");
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002663 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002664 }
2665
Blue Swirl72cf2d42009-09-12 07:36:22 +00002666 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002667 if (strcmp(monfd->name, fdname) != 0) {
2668 continue;
2669 }
2670
2671 close(monfd->fd);
2672 monfd->fd = fd;
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002673 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002674 }
2675
Anthony Liguori7267c092011-08-20 22:09:37 -05002676 monfd = g_malloc0(sizeof(mon_fd_t));
2677 monfd->name = g_strdup(fdname);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002678 monfd->fd = fd;
2679
Blue Swirl72cf2d42009-09-12 07:36:22 +00002680 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002681 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002682}
2683
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002684static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002685{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002686 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002687 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002688
Blue Swirl72cf2d42009-09-12 07:36:22 +00002689 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002690 if (strcmp(monfd->name, fdname) != 0) {
2691 continue;
2692 }
2693
Blue Swirl72cf2d42009-09-12 07:36:22 +00002694 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002695 close(monfd->fd);
Anthony Liguori7267c092011-08-20 22:09:37 -05002696 g_free(monfd->name);
2697 g_free(monfd);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002698 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002699 }
2700
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002701 qerror_report(QERR_FD_NOT_FOUND, fdname);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002702 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002703}
2704
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002705static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002706{
Luiz Capitulino13548692011-07-29 15:36:43 -03002707 int saved_vm_running = runstate_is_running();
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002708 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002709
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002710 vm_stop(RUN_STATE_RESTORE_VM);
Juan Quintelac8d41b22009-08-20 19:42:21 +02002711
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002712 if (load_vmstate(name) == 0 && saved_vm_running) {
Juan Quintelac8d41b22009-08-20 19:42:21 +02002713 vm_start();
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002714 }
Juan Quintelac8d41b22009-08-20 19:42:21 +02002715}
2716
Mark McLoughlin7768e042009-07-22 09:11:41 +01002717int monitor_get_fd(Monitor *mon, const char *fdname)
2718{
Anthony Liguoric227f092009-10-01 16:12:16 -05002719 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002720
Blue Swirl72cf2d42009-09-12 07:36:22 +00002721 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002722 int fd;
2723
2724 if (strcmp(monfd->name, fdname) != 0) {
2725 continue;
2726 }
2727
2728 fd = monfd->fd;
2729
2730 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002731 QLIST_REMOVE(monfd, next);
Anthony Liguori7267c092011-08-20 22:09:37 -05002732 g_free(monfd->name);
2733 g_free(monfd);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002734
2735 return fd;
2736 }
2737
2738 return -1;
2739}
2740
Anthony Liguoric227f092009-10-01 16:12:16 -05002741static const mon_cmd_t mon_cmds[] = {
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002742#include "hmp-commands.h"
ths5fafdf22007-09-16 21:08:06 +00002743 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002744};
2745
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002746/* Please update hmp-commands.hx when adding or changing commands */
Anthony Liguoric227f092009-10-01 16:12:16 -05002747static const mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002748 {
2749 .name = "version",
2750 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002751 .params = "",
2752 .help = "show the version of QEMU",
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03002753 .mhandler.info = hmp_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002754 },
2755 {
2756 .name = "network",
2757 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002758 .params = "",
2759 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002760 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002761 },
2762 {
2763 .name = "chardev",
2764 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002765 .params = "",
2766 .help = "show the character devices",
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03002767 .mhandler.info = hmp_info_chardev,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002768 },
2769 {
2770 .name = "block",
2771 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002772 .params = "",
2773 .help = "show the block devices",
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002774 .user_print = bdrv_info_print,
2775 .mhandler.info_new = bdrv_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002776 },
2777 {
2778 .name = "blockstats",
2779 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002780 .params = "",
2781 .help = "show block device statistics",
Luiz Capitulino218a5362009-12-10 17:16:07 -02002782 .user_print = bdrv_stats_print,
2783 .mhandler.info_new = bdrv_info_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002784 },
2785 {
2786 .name = "registers",
2787 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002788 .params = "",
2789 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002790 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002791 },
2792 {
2793 .name = "cpus",
2794 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002795 .params = "",
2796 .help = "show infos for each CPU",
Luiz Capitulino8f3cec02009-10-07 13:42:04 -03002797 .user_print = monitor_print_cpus,
2798 .mhandler.info_new = do_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002799 },
2800 {
2801 .name = "history",
2802 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002803 .params = "",
2804 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002805 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002806 },
Jan Kiszka661f1922011-10-16 11:53:13 +02002807#if defined(TARGET_I386) || defined(TARGET_PPC) || defined(TARGET_MIPS) || \
2808 defined(TARGET_LM32) || (defined(TARGET_SPARC) && !defined(TARGET_SPARC64))
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002809 {
2810 .name = "irq",
2811 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002812 .params = "",
2813 .help = "show the interrupts statistics (if available)",
Jan Kiszka661f1922011-10-16 11:53:13 +02002814#ifdef TARGET_SPARC
2815 .mhandler.info = sun4m_irq_info,
2816#elif defined(TARGET_LM32)
2817 .mhandler.info = lm32_irq_info,
2818#else
Luiz Capitulino910df892009-10-07 13:41:51 -03002819 .mhandler.info = irq_info,
Jan Kiszka661f1922011-10-16 11:53:13 +02002820#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002821 },
2822 {
2823 .name = "pic",
2824 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002825 .params = "",
2826 .help = "show i8259 (PIC) state",
Jan Kiszka661f1922011-10-16 11:53:13 +02002827#ifdef TARGET_SPARC
2828 .mhandler.info = sun4m_pic_info,
2829#elif defined(TARGET_LM32)
2830 .mhandler.info = lm32_do_pic_info,
2831#else
Luiz Capitulino910df892009-10-07 13:41:51 -03002832 .mhandler.info = pic_info,
Jan Kiszka661f1922011-10-16 11:53:13 +02002833#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002834 },
Jan Kiszka661f1922011-10-16 11:53:13 +02002835#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002836 {
2837 .name = "pci",
2838 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002839 .params = "",
2840 .help = "show PCI info",
Luiz Capitulino163c8a52010-01-21 19:15:40 -02002841 .user_print = do_pci_info_print,
2842 .mhandler.info_new = do_pci_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002843 },
Scott Woodbebabbc2011-08-18 10:38:42 +00002844#if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \
2845 defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002846 {
2847 .name = "tlb",
2848 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002849 .params = "",
2850 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002851 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002852 },
aurel327c664e22009-03-03 06:12:22 +00002853#endif
2854#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002855 {
2856 .name = "mem",
2857 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002858 .params = "",
2859 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002860 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002861 },
bellardb86bda52004-09-18 19:32:46 +00002862#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002863 {
Blue Swirl314e2982011-09-11 20:22:05 +00002864 .name = "mtree",
2865 .args_type = "",
2866 .params = "",
2867 .help = "show memory tree",
2868 .mhandler.info = do_info_mtree,
2869 },
2870 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002871 .name = "jit",
2872 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002873 .params = "",
2874 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002875 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002876 },
2877 {
2878 .name = "kvm",
2879 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002880 .params = "",
2881 .help = "show KVM information",
Luiz Capitulino292a2602011-09-12 15:10:53 -03002882 .mhandler.info = hmp_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002883 },
2884 {
2885 .name = "numa",
2886 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002887 .params = "",
2888 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002889 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002890 },
2891 {
2892 .name = "usb",
2893 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002894 .params = "",
2895 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002896 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002897 },
2898 {
2899 .name = "usbhost",
2900 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002901 .params = "",
2902 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002903 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002904 },
2905 {
2906 .name = "profile",
2907 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002908 .params = "",
2909 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002910 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002911 },
2912 {
2913 .name = "capture",
2914 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002915 .params = "",
2916 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002917 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002918 },
2919 {
2920 .name = "snapshots",
2921 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002922 .params = "",
2923 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002924 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002925 },
2926 {
2927 .name = "status",
2928 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002929 .params = "",
2930 .help = "show the current VM status (running|paused)",
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -03002931 .mhandler.info = hmp_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002932 },
2933 {
2934 .name = "pcmcia",
2935 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002936 .params = "",
2937 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002938 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002939 },
2940 {
2941 .name = "mice",
2942 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002943 .params = "",
2944 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe78c48e2009-12-10 17:16:04 -02002945 .user_print = do_info_mice_print,
2946 .mhandler.info_new = do_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002947 },
2948 {
2949 .name = "vnc",
2950 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002951 .params = "",
2952 .help = "show the vnc server status",
Luiz Capitulinod96fd292009-12-10 17:16:10 -02002953 .user_print = do_info_vnc_print,
2954 .mhandler.info_new = do_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002955 },
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002956#if defined(CONFIG_SPICE)
2957 {
2958 .name = "spice",
2959 .args_type = "",
2960 .params = "",
2961 .help = "show the spice server status",
2962 .user_print = do_info_spice_print,
2963 .mhandler.info_new = do_info_spice,
2964 },
2965#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002966 {
2967 .name = "name",
2968 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002969 .params = "",
2970 .help = "show the current VM name",
Anthony Liguori48a32be2011-09-02 12:34:48 -05002971 .mhandler.info = hmp_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002972 },
2973 {
2974 .name = "uuid",
2975 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002976 .params = "",
2977 .help = "show the current VM UUID",
Luiz Capitulinoefab7672011-09-13 17:16:25 -03002978 .mhandler.info = hmp_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002979 },
j_mayer76a66252007-03-07 08:32:30 +00002980#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002981 {
2982 .name = "cpustats",
2983 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002984 .params = "",
2985 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002986 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002987 },
j_mayer76a66252007-03-07 08:32:30 +00002988#endif
blueswir131a60e22007-10-26 18:42:59 +00002989#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002990 {
2991 .name = "usernet",
2992 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002993 .params = "",
2994 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002995 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002996 },
blueswir131a60e22007-10-26 18:42:59 +00002997#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002998 {
2999 .name = "migrate",
3000 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003001 .params = "",
3002 .help = "show migration status",
Luiz Capitulinoc86a6682009-12-10 17:16:05 -02003003 .user_print = do_info_migrate_print,
3004 .mhandler.info_new = do_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003005 },
3006 {
3007 .name = "balloon",
3008 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003009 .params = "",
3010 .help = "show balloon information",
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03003011 .user_print = monitor_print_balloon,
Adam Litke625a5be2010-01-26 14:17:35 -06003012 .mhandler.info_async = do_info_balloon,
Jan Kiszka8ac470c2010-06-16 00:38:39 +02003013 .flags = MONITOR_CMD_ASYNC,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003014 },
3015 {
3016 .name = "qtree",
3017 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003018 .params = "",
3019 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03003020 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003021 },
3022 {
3023 .name = "qdm",
3024 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003025 .params = "",
3026 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03003027 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003028 },
3029 {
3030 .name = "roms",
3031 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003032 .params = "",
3033 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03003034 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003035 },
Lluís6d8a7642011-08-31 20:30:43 +02003036#if defined(CONFIG_TRACE_SIMPLE)
Prerna Saxena22890ab2010-06-24 17:04:53 +05303037 {
3038 .name = "trace",
3039 .args_type = "",
3040 .params = "",
3041 .help = "show current contents of trace buffer",
3042 .mhandler.info = do_info_trace,
3043 },
Lluís31965ae2011-08-31 20:31:24 +02003044#endif
Prerna Saxena22890ab2010-06-24 17:04:53 +05303045 {
3046 .name = "trace-events",
3047 .args_type = "",
3048 .params = "",
3049 .help = "show available trace-events & their state",
Lluísfc764102011-08-31 20:31:18 +02003050 .mhandler.info = do_trace_print_events,
Prerna Saxena22890ab2010-06-24 17:04:53 +05303051 },
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003052 {
3053 .name = NULL,
3054 },
bellard9dc39cb2004-03-14 21:38:27 +00003055};
3056
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003057static const mon_cmd_t qmp_cmds[] = {
Anthony Liguorie3193602011-09-02 12:34:47 -05003058#include "qmp-commands-old.h"
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003059 { /* NULL */ },
3060};
3061
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003062static const mon_cmd_t qmp_query_cmds[] = {
3063 {
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003064 .name = "block",
3065 .args_type = "",
3066 .params = "",
3067 .help = "show the block devices",
3068 .user_print = bdrv_info_print,
3069 .mhandler.info_new = bdrv_info,
3070 },
3071 {
3072 .name = "blockstats",
3073 .args_type = "",
3074 .params = "",
3075 .help = "show block device statistics",
3076 .user_print = bdrv_stats_print,
3077 .mhandler.info_new = bdrv_info_stats,
3078 },
3079 {
3080 .name = "cpus",
3081 .args_type = "",
3082 .params = "",
3083 .help = "show infos for each CPU",
3084 .user_print = monitor_print_cpus,
3085 .mhandler.info_new = do_info_cpus,
3086 },
3087 {
3088 .name = "pci",
3089 .args_type = "",
3090 .params = "",
3091 .help = "show PCI info",
3092 .user_print = do_pci_info_print,
3093 .mhandler.info_new = do_pci_info,
3094 },
3095 {
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003096 .name = "mice",
3097 .args_type = "",
3098 .params = "",
3099 .help = "show which guest mouse is receiving events",
3100 .user_print = do_info_mice_print,
3101 .mhandler.info_new = do_info_mice,
3102 },
3103 {
3104 .name = "vnc",
3105 .args_type = "",
3106 .params = "",
3107 .help = "show the vnc server status",
3108 .user_print = do_info_vnc_print,
3109 .mhandler.info_new = do_info_vnc,
3110 },
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01003111#if defined(CONFIG_SPICE)
3112 {
3113 .name = "spice",
3114 .args_type = "",
3115 .params = "",
3116 .help = "show the spice server status",
3117 .user_print = do_info_spice_print,
3118 .mhandler.info_new = do_info_spice,
3119 },
3120#endif
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003121 {
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003122 .name = "migrate",
3123 .args_type = "",
3124 .params = "",
3125 .help = "show migration status",
3126 .user_print = do_info_migrate_print,
3127 .mhandler.info_new = do_info_migrate,
3128 },
3129 {
3130 .name = "balloon",
3131 .args_type = "",
3132 .params = "",
3133 .help = "show balloon information",
3134 .user_print = monitor_print_balloon,
3135 .mhandler.info_async = do_info_balloon,
3136 .flags = MONITOR_CMD_ASYNC,
3137 },
3138 { /* NULL */ },
3139};
3140
bellard9307c4c2004-04-04 12:57:25 +00003141/*******************************************************************/
3142
3143static const char *pch;
3144static jmp_buf expr_env;
3145
bellard92a31b12005-02-10 22:00:52 +00003146#define MD_TLONG 0
3147#define MD_I32 1
3148
bellard9307c4c2004-04-04 12:57:25 +00003149typedef struct MonitorDef {
3150 const char *name;
3151 int offset;
blueswir18662d652008-10-02 18:32:44 +00003152 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00003153 int type;
bellard9307c4c2004-04-04 12:57:25 +00003154} MonitorDef;
3155
bellard57206fd2004-04-25 18:54:52 +00003156#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00003157static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00003158{
bellard6a00d602005-11-21 23:25:50 +00003159 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003160 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00003161}
3162#endif
3163
bellarda541f292004-04-12 20:39:29 +00003164#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00003165static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00003166{
bellard6a00d602005-11-21 23:25:50 +00003167 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00003168 unsigned int u;
3169 int i;
3170
3171 u = 0;
3172 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00003173 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00003174
3175 return u;
3176}
3177
blueswir18662d652008-10-02 18:32:44 +00003178static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00003179{
bellard6a00d602005-11-21 23:25:50 +00003180 CPUState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00003181 return env->msr;
bellarda541f292004-04-12 20:39:29 +00003182}
3183
blueswir18662d652008-10-02 18:32:44 +00003184static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00003185{
bellard6a00d602005-11-21 23:25:50 +00003186 CPUState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00003187 return env->xer;
bellarda541f292004-04-12 20:39:29 +00003188}
bellard9fddaa02004-05-21 12:59:32 +00003189
blueswir18662d652008-10-02 18:32:44 +00003190static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00003191{
bellard6a00d602005-11-21 23:25:50 +00003192 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003193 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00003194}
3195
blueswir18662d652008-10-02 18:32:44 +00003196static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00003197{
bellard6a00d602005-11-21 23:25:50 +00003198 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003199 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00003200}
3201
blueswir18662d652008-10-02 18:32:44 +00003202static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00003203{
bellard6a00d602005-11-21 23:25:50 +00003204 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003205 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00003206}
bellarda541f292004-04-12 20:39:29 +00003207#endif
3208
bellarde95c8d52004-09-30 22:22:08 +00003209#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00003210#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00003211static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00003212{
bellard6a00d602005-11-21 23:25:50 +00003213 CPUState *env = mon_get_cpu();
Blue Swirl5a834bb2010-05-09 20:19:04 +00003214
3215 return cpu_get_psr(env);
bellarde95c8d52004-09-30 22:22:08 +00003216}
bellard7b936c02005-10-30 17:05:13 +00003217#endif
bellarde95c8d52004-09-30 22:22:08 +00003218
blueswir18662d652008-10-02 18:32:44 +00003219static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00003220{
bellard6a00d602005-11-21 23:25:50 +00003221 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003222 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00003223}
3224#endif
3225
blueswir18662d652008-10-02 18:32:44 +00003226static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00003227#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00003228
3229#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00003230 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00003231 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00003232 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00003233
bellard9307c4c2004-04-04 12:57:25 +00003234 { "eax", offsetof(CPUState, regs[0]) },
3235 { "ecx", offsetof(CPUState, regs[1]) },
3236 { "edx", offsetof(CPUState, regs[2]) },
3237 { "ebx", offsetof(CPUState, regs[3]) },
3238 { "esp|sp", offsetof(CPUState, regs[4]) },
3239 { "ebp|fp", offsetof(CPUState, regs[5]) },
3240 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00003241 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00003242#ifdef TARGET_X86_64
3243 { "r8", offsetof(CPUState, regs[8]) },
3244 { "r9", offsetof(CPUState, regs[9]) },
3245 { "r10", offsetof(CPUState, regs[10]) },
3246 { "r11", offsetof(CPUState, regs[11]) },
3247 { "r12", offsetof(CPUState, regs[12]) },
3248 { "r13", offsetof(CPUState, regs[13]) },
3249 { "r14", offsetof(CPUState, regs[14]) },
3250 { "r15", offsetof(CPUState, regs[15]) },
3251#endif
bellard9307c4c2004-04-04 12:57:25 +00003252 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00003253 { "eip", offsetof(CPUState, eip) },
3254 SEG("cs", R_CS)
3255 SEG("ds", R_DS)
3256 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00003257 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00003258 SEG("fs", R_FS)
3259 SEG("gs", R_GS)
3260 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00003261#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00003262 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00003263 { "r0", offsetof(CPUState, gpr[0]) },
3264 { "r1", offsetof(CPUState, gpr[1]) },
3265 { "r2", offsetof(CPUState, gpr[2]) },
3266 { "r3", offsetof(CPUState, gpr[3]) },
3267 { "r4", offsetof(CPUState, gpr[4]) },
3268 { "r5", offsetof(CPUState, gpr[5]) },
3269 { "r6", offsetof(CPUState, gpr[6]) },
3270 { "r7", offsetof(CPUState, gpr[7]) },
3271 { "r8", offsetof(CPUState, gpr[8]) },
3272 { "r9", offsetof(CPUState, gpr[9]) },
3273 { "r10", offsetof(CPUState, gpr[10]) },
3274 { "r11", offsetof(CPUState, gpr[11]) },
3275 { "r12", offsetof(CPUState, gpr[12]) },
3276 { "r13", offsetof(CPUState, gpr[13]) },
3277 { "r14", offsetof(CPUState, gpr[14]) },
3278 { "r15", offsetof(CPUState, gpr[15]) },
3279 { "r16", offsetof(CPUState, gpr[16]) },
3280 { "r17", offsetof(CPUState, gpr[17]) },
3281 { "r18", offsetof(CPUState, gpr[18]) },
3282 { "r19", offsetof(CPUState, gpr[19]) },
3283 { "r20", offsetof(CPUState, gpr[20]) },
3284 { "r21", offsetof(CPUState, gpr[21]) },
3285 { "r22", offsetof(CPUState, gpr[22]) },
3286 { "r23", offsetof(CPUState, gpr[23]) },
3287 { "r24", offsetof(CPUState, gpr[24]) },
3288 { "r25", offsetof(CPUState, gpr[25]) },
3289 { "r26", offsetof(CPUState, gpr[26]) },
3290 { "r27", offsetof(CPUState, gpr[27]) },
3291 { "r28", offsetof(CPUState, gpr[28]) },
3292 { "r29", offsetof(CPUState, gpr[29]) },
3293 { "r30", offsetof(CPUState, gpr[30]) },
3294 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00003295 /* Floating point registers */
3296 { "f0", offsetof(CPUState, fpr[0]) },
3297 { "f1", offsetof(CPUState, fpr[1]) },
3298 { "f2", offsetof(CPUState, fpr[2]) },
3299 { "f3", offsetof(CPUState, fpr[3]) },
3300 { "f4", offsetof(CPUState, fpr[4]) },
3301 { "f5", offsetof(CPUState, fpr[5]) },
3302 { "f6", offsetof(CPUState, fpr[6]) },
3303 { "f7", offsetof(CPUState, fpr[7]) },
3304 { "f8", offsetof(CPUState, fpr[8]) },
3305 { "f9", offsetof(CPUState, fpr[9]) },
3306 { "f10", offsetof(CPUState, fpr[10]) },
3307 { "f11", offsetof(CPUState, fpr[11]) },
3308 { "f12", offsetof(CPUState, fpr[12]) },
3309 { "f13", offsetof(CPUState, fpr[13]) },
3310 { "f14", offsetof(CPUState, fpr[14]) },
3311 { "f15", offsetof(CPUState, fpr[15]) },
3312 { "f16", offsetof(CPUState, fpr[16]) },
3313 { "f17", offsetof(CPUState, fpr[17]) },
3314 { "f18", offsetof(CPUState, fpr[18]) },
3315 { "f19", offsetof(CPUState, fpr[19]) },
3316 { "f20", offsetof(CPUState, fpr[20]) },
3317 { "f21", offsetof(CPUState, fpr[21]) },
3318 { "f22", offsetof(CPUState, fpr[22]) },
3319 { "f23", offsetof(CPUState, fpr[23]) },
3320 { "f24", offsetof(CPUState, fpr[24]) },
3321 { "f25", offsetof(CPUState, fpr[25]) },
3322 { "f26", offsetof(CPUState, fpr[26]) },
3323 { "f27", offsetof(CPUState, fpr[27]) },
3324 { "f28", offsetof(CPUState, fpr[28]) },
3325 { "f29", offsetof(CPUState, fpr[29]) },
3326 { "f30", offsetof(CPUState, fpr[30]) },
3327 { "f31", offsetof(CPUState, fpr[31]) },
3328 { "fpscr", offsetof(CPUState, fpscr) },
3329 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00003330 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00003331 { "lr", offsetof(CPUState, lr) },
3332 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00003333 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00003334 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00003335 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00003336 { "msr", 0, &monitor_get_msr, },
3337 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00003338 { "tbu", 0, &monitor_get_tbu, },
3339 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00003340#if defined(TARGET_PPC64)
3341 /* Address space register */
3342 { "asr", offsetof(CPUState, asr) },
3343#endif
3344 /* Segment registers */
David Gibsonbb593902011-04-01 15:15:15 +11003345 { "sdr1", offsetof(CPUState, spr[SPR_SDR1]) },
bellarda541f292004-04-12 20:39:29 +00003346 { "sr0", offsetof(CPUState, sr[0]) },
3347 { "sr1", offsetof(CPUState, sr[1]) },
3348 { "sr2", offsetof(CPUState, sr[2]) },
3349 { "sr3", offsetof(CPUState, sr[3]) },
3350 { "sr4", offsetof(CPUState, sr[4]) },
3351 { "sr5", offsetof(CPUState, sr[5]) },
3352 { "sr6", offsetof(CPUState, sr[6]) },
3353 { "sr7", offsetof(CPUState, sr[7]) },
3354 { "sr8", offsetof(CPUState, sr[8]) },
3355 { "sr9", offsetof(CPUState, sr[9]) },
3356 { "sr10", offsetof(CPUState, sr[10]) },
3357 { "sr11", offsetof(CPUState, sr[11]) },
3358 { "sr12", offsetof(CPUState, sr[12]) },
3359 { "sr13", offsetof(CPUState, sr[13]) },
3360 { "sr14", offsetof(CPUState, sr[14]) },
3361 { "sr15", offsetof(CPUState, sr[15]) },
Scott Wood90dc8812011-04-29 17:10:23 -05003362 /* Too lazy to put BATs... */
3363 { "pvr", offsetof(CPUState, spr[SPR_PVR]) },
3364
3365 { "srr0", offsetof(CPUState, spr[SPR_SRR0]) },
3366 { "srr1", offsetof(CPUState, spr[SPR_SRR1]) },
3367 { "sprg0", offsetof(CPUState, spr[SPR_SPRG0]) },
3368 { "sprg1", offsetof(CPUState, spr[SPR_SPRG1]) },
3369 { "sprg2", offsetof(CPUState, spr[SPR_SPRG2]) },
3370 { "sprg3", offsetof(CPUState, spr[SPR_SPRG3]) },
3371 { "sprg4", offsetof(CPUState, spr[SPR_SPRG4]) },
3372 { "sprg5", offsetof(CPUState, spr[SPR_SPRG5]) },
3373 { "sprg6", offsetof(CPUState, spr[SPR_SPRG6]) },
3374 { "sprg7", offsetof(CPUState, spr[SPR_SPRG7]) },
3375 { "pid", offsetof(CPUState, spr[SPR_BOOKE_PID]) },
3376 { "csrr0", offsetof(CPUState, spr[SPR_BOOKE_CSRR0]) },
3377 { "csrr1", offsetof(CPUState, spr[SPR_BOOKE_CSRR1]) },
3378 { "esr", offsetof(CPUState, spr[SPR_BOOKE_ESR]) },
3379 { "dear", offsetof(CPUState, spr[SPR_BOOKE_DEAR]) },
3380 { "mcsr", offsetof(CPUState, spr[SPR_BOOKE_MCSR]) },
3381 { "tsr", offsetof(CPUState, spr[SPR_BOOKE_TSR]) },
3382 { "tcr", offsetof(CPUState, spr[SPR_BOOKE_TCR]) },
3383 { "vrsave", offsetof(CPUState, spr[SPR_VRSAVE]) },
3384 { "pir", offsetof(CPUState, spr[SPR_BOOKE_PIR]) },
3385 { "mcsrr0", offsetof(CPUState, spr[SPR_BOOKE_MCSRR0]) },
3386 { "mcsrr1", offsetof(CPUState, spr[SPR_BOOKE_MCSRR1]) },
3387 { "decar", offsetof(CPUState, spr[SPR_BOOKE_DECAR]) },
3388 { "ivpr", offsetof(CPUState, spr[SPR_BOOKE_IVPR]) },
3389 { "epcr", offsetof(CPUState, spr[SPR_BOOKE_EPCR]) },
3390 { "sprg8", offsetof(CPUState, spr[SPR_BOOKE_SPRG8]) },
3391 { "ivor0", offsetof(CPUState, spr[SPR_BOOKE_IVOR0]) },
3392 { "ivor1", offsetof(CPUState, spr[SPR_BOOKE_IVOR1]) },
3393 { "ivor2", offsetof(CPUState, spr[SPR_BOOKE_IVOR2]) },
3394 { "ivor3", offsetof(CPUState, spr[SPR_BOOKE_IVOR3]) },
3395 { "ivor4", offsetof(CPUState, spr[SPR_BOOKE_IVOR4]) },
3396 { "ivor5", offsetof(CPUState, spr[SPR_BOOKE_IVOR5]) },
3397 { "ivor6", offsetof(CPUState, spr[SPR_BOOKE_IVOR6]) },
3398 { "ivor7", offsetof(CPUState, spr[SPR_BOOKE_IVOR7]) },
3399 { "ivor8", offsetof(CPUState, spr[SPR_BOOKE_IVOR8]) },
3400 { "ivor9", offsetof(CPUState, spr[SPR_BOOKE_IVOR9]) },
3401 { "ivor10", offsetof(CPUState, spr[SPR_BOOKE_IVOR10]) },
3402 { "ivor11", offsetof(CPUState, spr[SPR_BOOKE_IVOR11]) },
3403 { "ivor12", offsetof(CPUState, spr[SPR_BOOKE_IVOR12]) },
3404 { "ivor13", offsetof(CPUState, spr[SPR_BOOKE_IVOR13]) },
3405 { "ivor14", offsetof(CPUState, spr[SPR_BOOKE_IVOR14]) },
3406 { "ivor15", offsetof(CPUState, spr[SPR_BOOKE_IVOR15]) },
3407 { "ivor32", offsetof(CPUState, spr[SPR_BOOKE_IVOR32]) },
3408 { "ivor33", offsetof(CPUState, spr[SPR_BOOKE_IVOR33]) },
3409 { "ivor34", offsetof(CPUState, spr[SPR_BOOKE_IVOR34]) },
3410 { "ivor35", offsetof(CPUState, spr[SPR_BOOKE_IVOR35]) },
3411 { "ivor36", offsetof(CPUState, spr[SPR_BOOKE_IVOR36]) },
3412 { "ivor37", offsetof(CPUState, spr[SPR_BOOKE_IVOR37]) },
3413 { "mas0", offsetof(CPUState, spr[SPR_BOOKE_MAS0]) },
3414 { "mas1", offsetof(CPUState, spr[SPR_BOOKE_MAS1]) },
3415 { "mas2", offsetof(CPUState, spr[SPR_BOOKE_MAS2]) },
3416 { "mas3", offsetof(CPUState, spr[SPR_BOOKE_MAS3]) },
3417 { "mas4", offsetof(CPUState, spr[SPR_BOOKE_MAS4]) },
3418 { "mas6", offsetof(CPUState, spr[SPR_BOOKE_MAS6]) },
3419 { "mas7", offsetof(CPUState, spr[SPR_BOOKE_MAS7]) },
3420 { "mmucfg", offsetof(CPUState, spr[SPR_MMUCFG]) },
3421 { "tlb0cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB0CFG]) },
3422 { "tlb1cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB1CFG]) },
3423 { "epr", offsetof(CPUState, spr[SPR_BOOKE_EPR]) },
3424 { "eplc", offsetof(CPUState, spr[SPR_BOOKE_EPLC]) },
3425 { "epsc", offsetof(CPUState, spr[SPR_BOOKE_EPSC]) },
3426 { "svr", offsetof(CPUState, spr[SPR_E500_SVR]) },
3427 { "mcar", offsetof(CPUState, spr[SPR_Exxx_MCAR]) },
3428 { "pid1", offsetof(CPUState, spr[SPR_BOOKE_PID1]) },
3429 { "pid2", offsetof(CPUState, spr[SPR_BOOKE_PID2]) },
3430 { "hid0", offsetof(CPUState, spr[SPR_HID0]) },
3431
bellarde95c8d52004-09-30 22:22:08 +00003432#elif defined(TARGET_SPARC)
3433 { "g0", offsetof(CPUState, gregs[0]) },
3434 { "g1", offsetof(CPUState, gregs[1]) },
3435 { "g2", offsetof(CPUState, gregs[2]) },
3436 { "g3", offsetof(CPUState, gregs[3]) },
3437 { "g4", offsetof(CPUState, gregs[4]) },
3438 { "g5", offsetof(CPUState, gregs[5]) },
3439 { "g6", offsetof(CPUState, gregs[6]) },
3440 { "g7", offsetof(CPUState, gregs[7]) },
3441 { "o0", 0, monitor_get_reg },
3442 { "o1", 1, monitor_get_reg },
3443 { "o2", 2, monitor_get_reg },
3444 { "o3", 3, monitor_get_reg },
3445 { "o4", 4, monitor_get_reg },
3446 { "o5", 5, monitor_get_reg },
3447 { "o6", 6, monitor_get_reg },
3448 { "o7", 7, monitor_get_reg },
3449 { "l0", 8, monitor_get_reg },
3450 { "l1", 9, monitor_get_reg },
3451 { "l2", 10, monitor_get_reg },
3452 { "l3", 11, monitor_get_reg },
3453 { "l4", 12, monitor_get_reg },
3454 { "l5", 13, monitor_get_reg },
3455 { "l6", 14, monitor_get_reg },
3456 { "l7", 15, monitor_get_reg },
3457 { "i0", 16, monitor_get_reg },
3458 { "i1", 17, monitor_get_reg },
3459 { "i2", 18, monitor_get_reg },
3460 { "i3", 19, monitor_get_reg },
3461 { "i4", 20, monitor_get_reg },
3462 { "i5", 21, monitor_get_reg },
3463 { "i6", 22, monitor_get_reg },
3464 { "i7", 23, monitor_get_reg },
3465 { "pc", offsetof(CPUState, pc) },
3466 { "npc", offsetof(CPUState, npc) },
3467 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00003468#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00003469 { "psr", 0, &monitor_get_psr, },
3470 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00003471#endif
bellarde95c8d52004-09-30 22:22:08 +00003472 { "tbr", offsetof(CPUState, tbr) },
3473 { "fsr", offsetof(CPUState, fsr) },
3474 { "f0", offsetof(CPUState, fpr[0]) },
3475 { "f1", offsetof(CPUState, fpr[1]) },
3476 { "f2", offsetof(CPUState, fpr[2]) },
3477 { "f3", offsetof(CPUState, fpr[3]) },
3478 { "f4", offsetof(CPUState, fpr[4]) },
3479 { "f5", offsetof(CPUState, fpr[5]) },
3480 { "f6", offsetof(CPUState, fpr[6]) },
3481 { "f7", offsetof(CPUState, fpr[7]) },
3482 { "f8", offsetof(CPUState, fpr[8]) },
3483 { "f9", offsetof(CPUState, fpr[9]) },
3484 { "f10", offsetof(CPUState, fpr[10]) },
3485 { "f11", offsetof(CPUState, fpr[11]) },
3486 { "f12", offsetof(CPUState, fpr[12]) },
3487 { "f13", offsetof(CPUState, fpr[13]) },
3488 { "f14", offsetof(CPUState, fpr[14]) },
3489 { "f15", offsetof(CPUState, fpr[15]) },
3490 { "f16", offsetof(CPUState, fpr[16]) },
3491 { "f17", offsetof(CPUState, fpr[17]) },
3492 { "f18", offsetof(CPUState, fpr[18]) },
3493 { "f19", offsetof(CPUState, fpr[19]) },
3494 { "f20", offsetof(CPUState, fpr[20]) },
3495 { "f21", offsetof(CPUState, fpr[21]) },
3496 { "f22", offsetof(CPUState, fpr[22]) },
3497 { "f23", offsetof(CPUState, fpr[23]) },
3498 { "f24", offsetof(CPUState, fpr[24]) },
3499 { "f25", offsetof(CPUState, fpr[25]) },
3500 { "f26", offsetof(CPUState, fpr[26]) },
3501 { "f27", offsetof(CPUState, fpr[27]) },
3502 { "f28", offsetof(CPUState, fpr[28]) },
3503 { "f29", offsetof(CPUState, fpr[29]) },
3504 { "f30", offsetof(CPUState, fpr[30]) },
3505 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00003506#ifdef TARGET_SPARC64
3507 { "f32", offsetof(CPUState, fpr[32]) },
3508 { "f34", offsetof(CPUState, fpr[34]) },
3509 { "f36", offsetof(CPUState, fpr[36]) },
3510 { "f38", offsetof(CPUState, fpr[38]) },
3511 { "f40", offsetof(CPUState, fpr[40]) },
3512 { "f42", offsetof(CPUState, fpr[42]) },
3513 { "f44", offsetof(CPUState, fpr[44]) },
3514 { "f46", offsetof(CPUState, fpr[46]) },
3515 { "f48", offsetof(CPUState, fpr[48]) },
3516 { "f50", offsetof(CPUState, fpr[50]) },
3517 { "f52", offsetof(CPUState, fpr[52]) },
3518 { "f54", offsetof(CPUState, fpr[54]) },
3519 { "f56", offsetof(CPUState, fpr[56]) },
3520 { "f58", offsetof(CPUState, fpr[58]) },
3521 { "f60", offsetof(CPUState, fpr[60]) },
3522 { "f62", offsetof(CPUState, fpr[62]) },
3523 { "asi", offsetof(CPUState, asi) },
3524 { "pstate", offsetof(CPUState, pstate) },
3525 { "cansave", offsetof(CPUState, cansave) },
3526 { "canrestore", offsetof(CPUState, canrestore) },
3527 { "otherwin", offsetof(CPUState, otherwin) },
3528 { "wstate", offsetof(CPUState, wstate) },
3529 { "cleanwin", offsetof(CPUState, cleanwin) },
3530 { "fprs", offsetof(CPUState, fprs) },
3531#endif
bellard9307c4c2004-04-04 12:57:25 +00003532#endif
3533 { NULL },
3534};
3535
aliguori376253e2009-03-05 23:01:23 +00003536static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00003537{
aliguori376253e2009-03-05 23:01:23 +00003538 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00003539 longjmp(expr_env, 1);
3540}
3541
Markus Armbruster09b94182010-01-20 13:07:30 +01003542/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00003543static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00003544{
blueswir18662d652008-10-02 18:32:44 +00003545 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00003546 void *ptr;
3547
bellard9307c4c2004-04-04 12:57:25 +00003548 for(md = monitor_defs; md->name != NULL; md++) {
3549 if (compare_cmd(name, md->name)) {
3550 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003551 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003552 } else {
bellard6a00d602005-11-21 23:25:50 +00003553 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003554 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003555 switch(md->type) {
3556 case MD_I32:
3557 *pval = *(int32_t *)ptr;
3558 break;
3559 case MD_TLONG:
3560 *pval = *(target_long *)ptr;
3561 break;
3562 default:
3563 *pval = 0;
3564 break;
3565 }
bellard9307c4c2004-04-04 12:57:25 +00003566 }
3567 return 0;
3568 }
3569 }
3570 return -1;
3571}
3572
3573static void next(void)
3574{
Blue Swirl660f11b2009-07-31 21:16:51 +00003575 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003576 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003577 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003578 pch++;
3579 }
3580}
3581
aliguori376253e2009-03-05 23:01:23 +00003582static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003583
aliguori376253e2009-03-05 23:01:23 +00003584static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003585{
blueswir1c2efc952007-09-25 17:28:42 +00003586 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003587 char *p;
bellard6a00d602005-11-21 23:25:50 +00003588 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003589
3590 switch(*pch) {
3591 case '+':
3592 next();
aliguori376253e2009-03-05 23:01:23 +00003593 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003594 break;
3595 case '-':
3596 next();
aliguori376253e2009-03-05 23:01:23 +00003597 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003598 break;
3599 case '~':
3600 next();
aliguori376253e2009-03-05 23:01:23 +00003601 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003602 break;
3603 case '(':
3604 next();
aliguori376253e2009-03-05 23:01:23 +00003605 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003606 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003607 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003608 }
3609 next();
3610 break;
bellard81d09122004-07-14 17:21:37 +00003611 case '\'':
3612 pch++;
3613 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003614 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003615 n = *pch;
3616 pch++;
3617 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003618 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003619 next();
3620 break;
bellard9307c4c2004-04-04 12:57:25 +00003621 case '$':
3622 {
3623 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003624 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003625
bellard9307c4c2004-04-04 12:57:25 +00003626 pch++;
3627 q = buf;
3628 while ((*pch >= 'a' && *pch <= 'z') ||
3629 (*pch >= 'A' && *pch <= 'Z') ||
3630 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003631 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003632 if ((q - buf) < sizeof(buf) - 1)
3633 *q++ = *pch;
3634 pch++;
3635 }
blueswir1cd390082008-11-16 13:53:32 +00003636 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003637 pch++;
3638 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003639 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003640 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003641 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003642 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003643 }
3644 break;
3645 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003646 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003647 n = 0;
3648 break;
3649 default:
blueswir17743e582007-09-24 18:39:04 +00003650#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003651 n = strtoull(pch, &p, 0);
3652#else
bellard9307c4c2004-04-04 12:57:25 +00003653 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003654#endif
bellard9307c4c2004-04-04 12:57:25 +00003655 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003656 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003657 }
3658 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003659 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003660 pch++;
3661 break;
3662 }
3663 return n;
3664}
3665
3666
aliguori376253e2009-03-05 23:01:23 +00003667static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003668{
blueswir1c2efc952007-09-25 17:28:42 +00003669 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003670 int op;
ths3b46e622007-09-17 08:09:54 +00003671
aliguori376253e2009-03-05 23:01:23 +00003672 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003673 for(;;) {
3674 op = *pch;
3675 if (op != '*' && op != '/' && op != '%')
3676 break;
3677 next();
aliguori376253e2009-03-05 23:01:23 +00003678 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003679 switch(op) {
3680 default:
3681 case '*':
3682 val *= val2;
3683 break;
3684 case '/':
3685 case '%':
ths5fafdf22007-09-16 21:08:06 +00003686 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003687 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003688 if (op == '/')
3689 val /= val2;
3690 else
3691 val %= val2;
3692 break;
3693 }
3694 }
3695 return val;
3696}
3697
aliguori376253e2009-03-05 23:01:23 +00003698static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003699{
blueswir1c2efc952007-09-25 17:28:42 +00003700 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003701 int op;
bellard9307c4c2004-04-04 12:57:25 +00003702
aliguori376253e2009-03-05 23:01:23 +00003703 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003704 for(;;) {
3705 op = *pch;
3706 if (op != '&' && op != '|' && op != '^')
3707 break;
3708 next();
aliguori376253e2009-03-05 23:01:23 +00003709 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003710 switch(op) {
3711 default:
3712 case '&':
3713 val &= val2;
3714 break;
3715 case '|':
3716 val |= val2;
3717 break;
3718 case '^':
3719 val ^= val2;
3720 break;
3721 }
3722 }
3723 return val;
3724}
3725
aliguori376253e2009-03-05 23:01:23 +00003726static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003727{
blueswir1c2efc952007-09-25 17:28:42 +00003728 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003729 int op;
bellard9307c4c2004-04-04 12:57:25 +00003730
aliguori376253e2009-03-05 23:01:23 +00003731 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003732 for(;;) {
3733 op = *pch;
3734 if (op != '+' && op != '-')
3735 break;
3736 next();
aliguori376253e2009-03-05 23:01:23 +00003737 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003738 if (op == '+')
3739 val += val2;
3740 else
3741 val -= val2;
3742 }
3743 return val;
3744}
3745
aliguori376253e2009-03-05 23:01:23 +00003746static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003747{
3748 pch = *pp;
3749 if (setjmp(expr_env)) {
3750 *pp = pch;
3751 return -1;
3752 }
blueswir1cd390082008-11-16 13:53:32 +00003753 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003754 pch++;
aliguori376253e2009-03-05 23:01:23 +00003755 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003756 *pp = pch;
3757 return 0;
3758}
3759
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003760static int get_double(Monitor *mon, double *pval, const char **pp)
3761{
3762 const char *p = *pp;
3763 char *tailp;
3764 double d;
3765
3766 d = strtod(p, &tailp);
3767 if (tailp == p) {
3768 monitor_printf(mon, "Number expected\n");
3769 return -1;
3770 }
3771 if (d != d || d - d != 0) {
3772 /* NaN or infinity */
3773 monitor_printf(mon, "Bad number\n");
3774 return -1;
3775 }
3776 *pval = d;
3777 *pp = tailp;
3778 return 0;
3779}
3780
bellard9307c4c2004-04-04 12:57:25 +00003781static int get_str(char *buf, int buf_size, const char **pp)
3782{
3783 const char *p;
3784 char *q;
3785 int c;
3786
bellard81d09122004-07-14 17:21:37 +00003787 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003788 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003789 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003790 p++;
3791 if (*p == '\0') {
3792 fail:
bellard81d09122004-07-14 17:21:37 +00003793 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003794 *pp = p;
3795 return -1;
3796 }
bellard9307c4c2004-04-04 12:57:25 +00003797 if (*p == '\"') {
3798 p++;
3799 while (*p != '\0' && *p != '\"') {
3800 if (*p == '\\') {
3801 p++;
3802 c = *p++;
3803 switch(c) {
3804 case 'n':
3805 c = '\n';
3806 break;
3807 case 'r':
3808 c = '\r';
3809 break;
3810 case '\\':
3811 case '\'':
3812 case '\"':
3813 break;
3814 default:
3815 qemu_printf("unsupported escape code: '\\%c'\n", c);
3816 goto fail;
3817 }
3818 if ((q - buf) < buf_size - 1) {
3819 *q++ = c;
3820 }
3821 } else {
3822 if ((q - buf) < buf_size - 1) {
3823 *q++ = *p;
3824 }
3825 p++;
3826 }
3827 }
3828 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003829 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003830 goto fail;
3831 }
3832 p++;
3833 } else {
blueswir1cd390082008-11-16 13:53:32 +00003834 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003835 if ((q - buf) < buf_size - 1) {
3836 *q++ = *p;
3837 }
3838 p++;
3839 }
bellard9307c4c2004-04-04 12:57:25 +00003840 }
bellard81d09122004-07-14 17:21:37 +00003841 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003842 *pp = p;
3843 return 0;
3844}
3845
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003846/*
3847 * Store the command-name in cmdname, and return a pointer to
3848 * the remaining of the command string.
3849 */
3850static const char *get_command_name(const char *cmdline,
3851 char *cmdname, size_t nlen)
3852{
3853 size_t len;
3854 const char *p, *pstart;
3855
3856 p = cmdline;
3857 while (qemu_isspace(*p))
3858 p++;
3859 if (*p == '\0')
3860 return NULL;
3861 pstart = p;
3862 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3863 p++;
3864 len = p - pstart;
3865 if (len > nlen - 1)
3866 len = nlen - 1;
3867 memcpy(cmdname, pstart, len);
3868 cmdname[len] = '\0';
3869 return p;
3870}
3871
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003872/**
3873 * Read key of 'type' into 'key' and return the current
3874 * 'type' pointer.
3875 */
3876static char *key_get_info(const char *type, char **key)
3877{
3878 size_t len;
3879 char *p, *str;
3880
3881 if (*type == ',')
3882 type++;
3883
3884 p = strchr(type, ':');
3885 if (!p) {
3886 *key = NULL;
3887 return NULL;
3888 }
3889 len = p - type;
3890
Anthony Liguori7267c092011-08-20 22:09:37 -05003891 str = g_malloc(len + 1);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003892 memcpy(str, type, len);
3893 str[len] = '\0';
3894
3895 *key = str;
3896 return ++p;
3897}
3898
bellard9307c4c2004-04-04 12:57:25 +00003899static int default_fmt_format = 'x';
3900static int default_fmt_size = 4;
3901
3902#define MAX_ARGS 16
3903
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003904static int is_valid_option(const char *c, const char *typestr)
3905{
3906 char option[3];
3907
3908 option[0] = '-';
3909 option[1] = *c;
3910 option[2] = '\0';
3911
3912 typestr = strstr(typestr, option);
3913 return (typestr != NULL);
3914}
3915
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003916static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3917 const char *cmdname)
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003918{
3919 const mon_cmd_t *cmd;
3920
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003921 for (cmd = disp_table; cmd->name != NULL; cmd++) {
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003922 if (compare_cmd(cmdname, cmd->name)) {
3923 return cmd;
3924 }
3925 }
3926
3927 return NULL;
3928}
3929
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003930static const mon_cmd_t *monitor_find_command(const char *cmdname)
3931{
3932 return search_dispatch_table(mon_cmds, cmdname);
3933}
3934
Luiz Capitulino030db6e2010-09-10 16:03:38 -03003935static const mon_cmd_t *qmp_find_query_cmd(const char *info_item)
3936{
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003937 return search_dispatch_table(qmp_query_cmds, info_item);
Luiz Capitulino030db6e2010-09-10 16:03:38 -03003938}
3939
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003940static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3941{
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003942 return search_dispatch_table(qmp_cmds, cmdname);
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003943}
3944
Anthony Liguoric227f092009-10-01 16:12:16 -05003945static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003946 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003947 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003948{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003949 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003950 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003951 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003952 char cmdname[256];
3953 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003954 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003955
3956#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003957 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003958#endif
ths3b46e622007-09-17 08:09:54 +00003959
bellard9307c4c2004-04-04 12:57:25 +00003960 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003961 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3962 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003963 return NULL;
ths3b46e622007-09-17 08:09:54 +00003964
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003965 cmd = monitor_find_command(cmdname);
3966 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003967 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003968 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003969 }
bellard9307c4c2004-04-04 12:57:25 +00003970
bellard9307c4c2004-04-04 12:57:25 +00003971 /* parse the parameters */
3972 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003973 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003974 typestr = key_get_info(typestr, &key);
3975 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003976 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003977 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003978 typestr++;
3979 switch(c) {
3980 case 'F':
bellard81d09122004-07-14 17:21:37 +00003981 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003982 case 's':
3983 {
3984 int ret;
ths3b46e622007-09-17 08:09:54 +00003985
blueswir1cd390082008-11-16 13:53:32 +00003986 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003987 p++;
3988 if (*typestr == '?') {
3989 typestr++;
3990 if (*p == '\0') {
3991 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003992 break;
bellard9307c4c2004-04-04 12:57:25 +00003993 }
3994 }
3995 ret = get_str(buf, sizeof(buf), &p);
3996 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003997 switch(c) {
3998 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003999 monitor_printf(mon, "%s: filename expected\n",
4000 cmdname);
bellard81d09122004-07-14 17:21:37 +00004001 break;
4002 case 'B':
aliguori376253e2009-03-05 23:01:23 +00004003 monitor_printf(mon, "%s: block device name expected\n",
4004 cmdname);
bellard81d09122004-07-14 17:21:37 +00004005 break;
4006 default:
aliguori376253e2009-03-05 23:01:23 +00004007 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00004008 break;
4009 }
bellard9307c4c2004-04-04 12:57:25 +00004010 goto fail;
4011 }
Luiz Capitulino53773582009-08-28 15:27:25 -03004012 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00004013 }
4014 break;
Markus Armbruster361127d2010-02-10 20:24:35 +01004015 case 'O':
4016 {
4017 QemuOptsList *opts_list;
4018 QemuOpts *opts;
4019
4020 opts_list = qemu_find_opts(key);
4021 if (!opts_list || opts_list->desc->name) {
4022 goto bad_type;
4023 }
4024 while (qemu_isspace(*p)) {
4025 p++;
4026 }
4027 if (!*p)
4028 break;
4029 if (get_str(buf, sizeof(buf), &p) < 0) {
4030 goto fail;
4031 }
4032 opts = qemu_opts_parse(opts_list, buf, 1);
4033 if (!opts) {
4034 goto fail;
4035 }
4036 qemu_opts_to_qdict(opts, qdict);
4037 qemu_opts_del(opts);
4038 }
4039 break;
bellard9307c4c2004-04-04 12:57:25 +00004040 case '/':
4041 {
4042 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00004043
blueswir1cd390082008-11-16 13:53:32 +00004044 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00004045 p++;
4046 if (*p == '/') {
4047 /* format found */
4048 p++;
4049 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00004050 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00004051 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00004052 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00004053 count = count * 10 + (*p - '0');
4054 p++;
4055 }
4056 }
4057 size = -1;
4058 format = -1;
4059 for(;;) {
4060 switch(*p) {
4061 case 'o':
4062 case 'd':
4063 case 'u':
4064 case 'x':
4065 case 'i':
4066 case 'c':
4067 format = *p++;
4068 break;
4069 case 'b':
4070 size = 1;
4071 p++;
4072 break;
4073 case 'h':
4074 size = 2;
4075 p++;
4076 break;
4077 case 'w':
4078 size = 4;
4079 p++;
4080 break;
4081 case 'g':
4082 case 'L':
4083 size = 8;
4084 p++;
4085 break;
4086 default:
4087 goto next;
4088 }
4089 }
4090 next:
blueswir1cd390082008-11-16 13:53:32 +00004091 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00004092 monitor_printf(mon, "invalid char in format: '%c'\n",
4093 *p);
bellard9307c4c2004-04-04 12:57:25 +00004094 goto fail;
4095 }
bellard9307c4c2004-04-04 12:57:25 +00004096 if (format < 0)
4097 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00004098 if (format != 'i') {
4099 /* for 'i', not specifying a size gives -1 as size */
4100 if (size < 0)
4101 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00004102 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00004103 }
bellard9307c4c2004-04-04 12:57:25 +00004104 default_fmt_format = format;
4105 } else {
4106 count = 1;
4107 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00004108 if (format != 'i') {
4109 size = default_fmt_size;
4110 } else {
4111 size = -1;
4112 }
bellard9307c4c2004-04-04 12:57:25 +00004113 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03004114 qdict_put(qdict, "count", qint_from_int(count));
4115 qdict_put(qdict, "format", qint_from_int(format));
4116 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00004117 }
4118 break;
4119 case 'i':
bellard92a31b12005-02-10 22:00:52 +00004120 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02004121 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00004122 {
blueswir1c2efc952007-09-25 17:28:42 +00004123 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00004124
blueswir1cd390082008-11-16 13:53:32 +00004125 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00004126 p++;
bellard34405572004-06-08 00:55:58 +00004127 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00004128 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03004129 if (*p == '\0') {
4130 typestr++;
4131 break;
4132 }
bellard34405572004-06-08 00:55:58 +00004133 } else {
4134 if (*p == '.') {
4135 p++;
blueswir1cd390082008-11-16 13:53:32 +00004136 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00004137 p++;
bellard34405572004-06-08 00:55:58 +00004138 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03004139 typestr++;
4140 break;
bellard34405572004-06-08 00:55:58 +00004141 }
4142 }
bellard13224a82006-07-14 22:03:35 +00004143 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00004144 }
aliguori376253e2009-03-05 23:01:23 +00004145 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00004146 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03004147 /* Check if 'i' is greater than 32-bit */
4148 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
4149 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
4150 monitor_printf(mon, "integer is for 32-bit values\n");
4151 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02004152 } else if (c == 'M') {
4153 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03004154 }
Luiz Capitulino53773582009-08-28 15:27:25 -03004155 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00004156 }
4157 break;
Jes Sorensendbc0c672010-10-21 17:15:47 +02004158 case 'o':
4159 {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +01004160 int64_t val;
Jes Sorensendbc0c672010-10-21 17:15:47 +02004161 char *end;
4162
4163 while (qemu_isspace(*p)) {
4164 p++;
4165 }
4166 if (*typestr == '?') {
4167 typestr++;
4168 if (*p == '\0') {
4169 break;
4170 }
4171 }
4172 val = strtosz(p, &end);
4173 if (val < 0) {
4174 monitor_printf(mon, "invalid size\n");
4175 goto fail;
4176 }
4177 qdict_put(qdict, key, qint_from_int(val));
4178 p = end;
4179 }
4180 break;
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01004181 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01004182 {
4183 double val;
4184
4185 while (qemu_isspace(*p))
4186 p++;
4187 if (*typestr == '?') {
4188 typestr++;
4189 if (*p == '\0') {
4190 break;
4191 }
4192 }
4193 if (get_double(mon, &val, &p) < 0) {
4194 goto fail;
4195 }
Jes Sorensen07de3e62010-10-21 17:15:49 +02004196 if (p[0] && p[1] == 's') {
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01004197 switch (*p) {
4198 case 'm':
4199 val /= 1e3; p += 2; break;
4200 case 'u':
4201 val /= 1e6; p += 2; break;
4202 case 'n':
4203 val /= 1e9; p += 2; break;
4204 }
4205 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01004206 if (*p && !qemu_isspace(*p)) {
4207 monitor_printf(mon, "Unknown unit suffix\n");
4208 goto fail;
4209 }
4210 qdict_put(qdict, key, qfloat_from_double(val));
4211 }
4212 break;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01004213 case 'b':
4214 {
4215 const char *beg;
4216 int val;
4217
4218 while (qemu_isspace(*p)) {
4219 p++;
4220 }
4221 beg = p;
4222 while (qemu_isgraph(*p)) {
4223 p++;
4224 }
4225 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
4226 val = 1;
4227 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
4228 val = 0;
4229 } else {
4230 monitor_printf(mon, "Expected 'on' or 'off'\n");
4231 goto fail;
4232 }
4233 qdict_put(qdict, key, qbool_from_int(val));
4234 }
4235 break;
bellard9307c4c2004-04-04 12:57:25 +00004236 case '-':
4237 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02004238 const char *tmp = p;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03004239 int skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00004240 /* option */
ths3b46e622007-09-17 08:09:54 +00004241
bellard9307c4c2004-04-04 12:57:25 +00004242 c = *typestr++;
4243 if (c == '\0')
4244 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00004245 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00004246 p++;
bellard9307c4c2004-04-04 12:57:25 +00004247 if (*p == '-') {
4248 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02004249 if(c != *p) {
4250 if(!is_valid_option(p, typestr)) {
4251
4252 monitor_printf(mon, "%s: unsupported option -%c\n",
4253 cmdname, *p);
4254 goto fail;
4255 } else {
4256 skip_key = 1;
4257 }
bellard9307c4c2004-04-04 12:57:25 +00004258 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02004259 if(skip_key) {
4260 p = tmp;
4261 } else {
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03004262 /* has option */
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02004263 p++;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03004264 qdict_put(qdict, key, qbool_from_int(1));
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02004265 }
bellard9307c4c2004-04-04 12:57:25 +00004266 }
bellard9307c4c2004-04-04 12:57:25 +00004267 }
4268 break;
4269 default:
4270 bad_type:
aliguori376253e2009-03-05 23:01:23 +00004271 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00004272 goto fail;
4273 }
Anthony Liguori7267c092011-08-20 22:09:37 -05004274 g_free(key);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004275 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00004276 }
4277 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00004278 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00004279 p++;
4280 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00004281 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
4282 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00004283 goto fail;
4284 }
4285
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004286 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02004287
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004288fail:
Anthony Liguori7267c092011-08-20 22:09:37 -05004289 g_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004290 return NULL;
4291}
4292
Markus Armbrusterd6f46832010-02-17 10:52:26 +01004293void monitor_set_error(Monitor *mon, QError *qerror)
4294{
4295 /* report only the first error */
4296 if (!mon->error) {
4297 mon->error = qerror;
4298 } else {
4299 MON_DEBUG("Additional error report at %s:%d\n",
4300 qerror->file, qerror->linenr);
4301 QDECREF(qerror);
4302 }
4303}
4304
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02004305static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
4306{
Luiz Capitulino6d441432010-11-22 16:35:09 -02004307 if (ret && !monitor_has_error(mon)) {
4308 /*
4309 * If it returns failure, it must have passed on error.
4310 *
4311 * Action: Report an internal error to the client if in QMP.
4312 */
4313 qerror_report(QERR_UNDEFINED_ERROR);
4314 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
4315 cmd->name);
4316 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02004317
4318#ifdef CONFIG_DEBUG_MONITOR
Luiz Capitulino6d441432010-11-22 16:35:09 -02004319 if (!ret && monitor_has_error(mon)) {
4320 /*
4321 * If it returns success, it must not have passed an error.
4322 *
4323 * Action: Report the passed error to the client.
4324 */
4325 MON_DEBUG("command '%s' returned success but passed an error\n",
4326 cmd->name);
Markus Armbrustercde0fc72010-03-02 14:56:34 +01004327 }
Luiz Capitulino6d441432010-11-22 16:35:09 -02004328
4329 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
4330 /*
4331 * Handlers should not call Monitor print functions.
4332 *
4333 * Action: Ignore them in QMP.
4334 *
4335 * (XXX: we don't check any 'info' or 'query' command here
4336 * because the user print function _is_ called by do_info(), hence
4337 * we will trigger this check. This problem will go away when we
4338 * make 'query' commands real and kill do_info())
4339 */
4340 MON_DEBUG("command '%s' called print functions %d time(s)\n",
4341 cmd->name, mon_print_count_get(mon));
4342 }
4343#endif
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02004344}
4345
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004346static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004347{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004348 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05004349 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004350
4351 qdict = qdict_new();
4352
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03004353 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03004354 if (!cmd)
4355 goto out;
4356
Luiz Capitulino4903de02010-09-16 11:01:32 -03004357 if (handler_is_async(cmd)) {
Adam Litke940cc302010-01-25 12:18:44 -06004358 user_async_cmd_handler(mon, cmd, qdict);
Luiz Capitulino9e807212010-09-16 10:58:59 -03004359 } else if (handler_is_qobject(cmd)) {
Luiz Capitulinode79ba62010-09-16 11:06:11 -03004360 QObject *data = NULL;
4361
4362 /* XXX: ignores the error code */
4363 cmd->mhandler.cmd_new(mon, qdict, &data);
4364 assert(!monitor_has_error(mon));
4365 if (data) {
4366 cmd->user_print(mon, data);
4367 qobject_decref(data);
4368 }
Luiz Capitulino13917be2009-10-07 13:41:54 -03004369 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03004370 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004371 }
4372
Luiz Capitulino13917be2009-10-07 13:41:54 -03004373out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03004374 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00004375}
4376
bellard81d09122004-07-14 17:21:37 +00004377static void cmd_completion(const char *name, const char *list)
4378{
4379 const char *p, *pstart;
4380 char cmd[128];
4381 int len;
4382
4383 p = list;
4384 for(;;) {
4385 pstart = p;
4386 p = strchr(p, '|');
4387 if (!p)
4388 p = pstart + strlen(pstart);
4389 len = p - pstart;
4390 if (len > sizeof(cmd) - 2)
4391 len = sizeof(cmd) - 2;
4392 memcpy(cmd, pstart, len);
4393 cmd[len] = '\0';
4394 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00004395 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00004396 }
4397 if (*p == '\0')
4398 break;
4399 p++;
4400 }
4401}
4402
4403static void file_completion(const char *input)
4404{
4405 DIR *ffs;
4406 struct dirent *d;
4407 char path[1024];
4408 char file[1024], file_prefix[1024];
4409 int input_path_len;
4410 const char *p;
4411
ths5fafdf22007-09-16 21:08:06 +00004412 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00004413 if (!p) {
4414 input_path_len = 0;
4415 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00004416 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00004417 } else {
4418 input_path_len = p - input + 1;
4419 memcpy(path, input, input_path_len);
4420 if (input_path_len > sizeof(path) - 1)
4421 input_path_len = sizeof(path) - 1;
4422 path[input_path_len] = '\0';
4423 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4424 }
4425#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00004426 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
4427 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00004428#endif
4429 ffs = opendir(path);
4430 if (!ffs)
4431 return;
4432 for(;;) {
4433 struct stat sb;
4434 d = readdir(ffs);
4435 if (!d)
4436 break;
Kusanagi Kouichi46c7fc12010-10-20 18:00:01 +09004437
4438 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4439 continue;
4440 }
4441
bellard81d09122004-07-14 17:21:37 +00004442 if (strstart(d->d_name, file_prefix, NULL)) {
4443 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00004444 if (input_path_len < sizeof(file))
4445 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4446 d->d_name);
bellard81d09122004-07-14 17:21:37 +00004447 /* stat the file to find out if it's a directory.
4448 * In that case add a slash to speed up typing long paths
4449 */
4450 stat(file, &sb);
4451 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00004452 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00004453 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00004454 }
4455 }
4456 closedir(ffs);
4457}
4458
aliguori51de9762009-03-05 23:00:43 +00004459static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00004460{
aliguori51de9762009-03-05 23:00:43 +00004461 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00004462 const char *input = opaque;
4463
4464 if (input[0] == '\0' ||
4465 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00004466 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00004467 }
4468}
4469
4470/* NOTE: this parser is an approximate form of the real command parser */
4471static void parse_cmdline(const char *cmdline,
4472 int *pnb_args, char **args)
4473{
4474 const char *p;
4475 int nb_args, ret;
4476 char buf[1024];
4477
4478 p = cmdline;
4479 nb_args = 0;
4480 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00004481 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00004482 p++;
4483 if (*p == '\0')
4484 break;
4485 if (nb_args >= MAX_ARGS)
4486 break;
4487 ret = get_str(buf, sizeof(buf), &p);
Anthony Liguori7267c092011-08-20 22:09:37 -05004488 args[nb_args] = g_strdup(buf);
bellard81d09122004-07-14 17:21:37 +00004489 nb_args++;
4490 if (ret < 0)
4491 break;
4492 }
4493 *pnb_args = nb_args;
4494}
4495
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004496static const char *next_arg_type(const char *typestr)
4497{
4498 const char *p = strchr(typestr, ':');
4499 return (p != NULL ? ++p : typestr);
4500}
4501
aliguori4c36ba32009-03-05 23:01:37 +00004502static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00004503{
4504 const char *cmdname;
4505 char *args[MAX_ARGS];
4506 int nb_args, i, len;
4507 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05004508 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00004509 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00004510
4511 parse_cmdline(cmdline, &nb_args, args);
4512#ifdef DEBUG_COMPLETION
4513 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00004514 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00004515 }
4516#endif
4517
4518 /* if the line ends with a space, it means we want to complete the
4519 next arg */
4520 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00004521 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
Jan Kiszka03a63482010-06-16 00:38:33 +02004522 if (nb_args >= MAX_ARGS) {
4523 goto cleanup;
4524 }
Anthony Liguori7267c092011-08-20 22:09:37 -05004525 args[nb_args++] = g_strdup("");
bellard81d09122004-07-14 17:21:37 +00004526 }
4527 if (nb_args <= 1) {
4528 /* command completion */
4529 if (nb_args == 0)
4530 cmdname = "";
4531 else
4532 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00004533 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00004534 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00004535 cmd_completion(cmdname, cmd->name);
4536 }
4537 } else {
4538 /* find the command */
Jan Kiszka03a63482010-06-16 00:38:33 +02004539 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4540 if (compare_cmd(args[0], cmd->name)) {
4541 break;
4542 }
bellard81d09122004-07-14 17:21:37 +00004543 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004544 if (!cmd->name) {
4545 goto cleanup;
4546 }
4547
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004548 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00004549 for(i = 0; i < nb_args - 2; i++) {
4550 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004551 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004552 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004553 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004554 }
4555 }
4556 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00004557 if (*ptype == '-' && ptype[1] != '\0') {
Jan Kiszka3b6dbf22010-06-16 00:38:34 +02004558 ptype = next_arg_type(ptype);
Blue Swirl2a1704a2009-08-23 20:10:28 +00004559 }
bellard81d09122004-07-14 17:21:37 +00004560 switch(*ptype) {
4561 case 'F':
4562 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00004563 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004564 file_completion(str);
4565 break;
4566 case 'B':
4567 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00004568 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004569 bdrv_iterate(block_completion_it, (void *)str);
4570 break;
bellard7fe48482004-10-09 18:08:01 +00004571 case 's':
4572 /* XXX: more generic ? */
4573 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00004574 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00004575 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4576 cmd_completion(str, cmd->name);
4577 }
bellard64866c32006-05-07 18:03:31 +00004578 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00004579 char *sep = strrchr(str, '-');
4580 if (sep)
4581 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00004582 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00004583 for(key = key_defs; key->name != NULL; key++) {
4584 cmd_completion(str, key->name);
4585 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02004586 } else if (!strcmp(cmd->name, "help|?")) {
4587 readline_set_completion_index(cur_mon->rs, strlen(str));
4588 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4589 cmd_completion(str, cmd->name);
4590 }
bellard7fe48482004-10-09 18:08:01 +00004591 }
4592 break;
bellard81d09122004-07-14 17:21:37 +00004593 default:
4594 break;
4595 }
4596 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004597
4598cleanup:
4599 for (i = 0; i < nb_args; i++) {
Anthony Liguori7267c092011-08-20 22:09:37 -05004600 g_free(args[i]);
Jan Kiszka03a63482010-06-16 00:38:33 +02004601 }
bellard81d09122004-07-14 17:21:37 +00004602}
4603
aliguori731b0362009-03-05 23:01:42 +00004604static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004605{
aliguori731b0362009-03-05 23:01:42 +00004606 Monitor *mon = opaque;
4607
Jan Kiszkac62313b2009-12-04 14:05:29 +01004608 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00004609}
4610
Luiz Capitulino09069b12010-02-04 18:10:06 -02004611static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4612{
4613 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4614 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4615}
4616
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004617/*
Luiz Capitulino4af91932010-06-22 11:44:05 -03004618 * Argument validation rules:
4619 *
4620 * 1. The argument must exist in cmd_args qdict
4621 * 2. The argument type must be the expected one
4622 *
4623 * Special case: If the argument doesn't exist in cmd_args and
4624 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4625 * checking is skipped for it.
4626 */
4627static int check_client_args_type(const QDict *client_args,
4628 const QDict *cmd_args, int flags)
4629{
4630 const QDictEntry *ent;
4631
4632 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4633 QObject *obj;
4634 QString *arg_type;
4635 const QObject *client_arg = qdict_entry_value(ent);
4636 const char *client_arg_name = qdict_entry_key(ent);
4637
4638 obj = qdict_get(cmd_args, client_arg_name);
4639 if (!obj) {
4640 if (flags & QMP_ACCEPT_UNKNOWNS) {
4641 /* handler accepts unknowns */
4642 continue;
4643 }
4644 /* client arg doesn't exist */
4645 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4646 return -1;
4647 }
4648
4649 arg_type = qobject_to_qstring(obj);
4650 assert(arg_type != NULL);
4651
4652 /* check if argument's type is correct */
4653 switch (qstring_get_str(arg_type)[0]) {
4654 case 'F':
4655 case 'B':
4656 case 's':
4657 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4658 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4659 "string");
4660 return -1;
4661 }
4662 break;
4663 case 'i':
4664 case 'l':
4665 case 'M':
Jes Sorensendbc0c672010-10-21 17:15:47 +02004666 case 'o':
Luiz Capitulino4af91932010-06-22 11:44:05 -03004667 if (qobject_type(client_arg) != QTYPE_QINT) {
4668 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4669 "int");
4670 return -1;
4671 }
4672 break;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004673 case 'T':
4674 if (qobject_type(client_arg) != QTYPE_QINT &&
4675 qobject_type(client_arg) != QTYPE_QFLOAT) {
4676 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4677 "number");
4678 return -1;
4679 }
4680 break;
4681 case 'b':
4682 case '-':
4683 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4684 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4685 "bool");
4686 return -1;
4687 }
4688 break;
4689 case 'O':
4690 assert(flags & QMP_ACCEPT_UNKNOWNS);
4691 break;
4692 case '/':
4693 case '.':
4694 /*
4695 * These types are not supported by QMP and thus are not
4696 * handled here. Fall through.
4697 */
4698 default:
4699 abort();
4700 }
4701 }
4702
4703 return 0;
4704}
4705
4706/*
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004707 * - Check if the client has passed all mandatory args
4708 * - Set special flags for argument validation
4709 */
4710static int check_mandatory_args(const QDict *cmd_args,
4711 const QDict *client_args, int *flags)
4712{
4713 const QDictEntry *ent;
4714
4715 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4716 const char *cmd_arg_name = qdict_entry_key(ent);
4717 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4718 assert(type != NULL);
4719
4720 if (qstring_get_str(type)[0] == 'O') {
4721 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4722 *flags |= QMP_ACCEPT_UNKNOWNS;
4723 } else if (qstring_get_str(type)[0] != '-' &&
4724 qstring_get_str(type)[1] != '?' &&
4725 !qdict_haskey(client_args, cmd_arg_name)) {
4726 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4727 return -1;
4728 }
4729 }
4730
4731 return 0;
4732}
4733
4734static QDict *qdict_from_args_type(const char *args_type)
4735{
4736 int i;
4737 QDict *qdict;
4738 QString *key, *type, *cur_qs;
4739
4740 assert(args_type != NULL);
4741
4742 qdict = qdict_new();
4743
4744 if (args_type == NULL || args_type[0] == '\0') {
4745 /* no args, empty qdict */
4746 goto out;
4747 }
4748
4749 key = qstring_new();
4750 type = qstring_new();
4751
4752 cur_qs = key;
4753
4754 for (i = 0;; i++) {
4755 switch (args_type[i]) {
4756 case ',':
4757 case '\0':
4758 qdict_put(qdict, qstring_get_str(key), type);
4759 QDECREF(key);
4760 if (args_type[i] == '\0') {
4761 goto out;
4762 }
4763 type = qstring_new(); /* qdict has ref */
4764 cur_qs = key = qstring_new();
4765 break;
4766 case ':':
4767 cur_qs = type;
4768 break;
4769 default:
4770 qstring_append_chr(cur_qs, args_type[i]);
4771 break;
4772 }
4773 }
4774
4775out:
4776 return qdict;
4777}
4778
4779/*
4780 * Client argument checking rules:
4781 *
4782 * 1. Client must provide all mandatory arguments
Luiz Capitulino4af91932010-06-22 11:44:05 -03004783 * 2. Each argument provided by the client must be expected
4784 * 3. Each argument provided by the client must have the type expected
4785 * by the command
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004786 */
4787static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4788{
4789 int flags, err;
4790 QDict *cmd_args;
4791
4792 cmd_args = qdict_from_args_type(cmd->args_type);
4793
4794 flags = 0;
4795 err = check_mandatory_args(cmd_args, client_args, &flags);
4796 if (err) {
4797 goto out;
4798 }
4799
Luiz Capitulino4af91932010-06-22 11:44:05 -03004800 err = check_client_args_type(client_args, cmd_args, flags);
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004801
4802out:
4803 QDECREF(cmd_args);
4804 return err;
4805}
4806
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004807/*
4808 * Input object checking rules
4809 *
4810 * 1. Input object must be a dict
4811 * 2. The "execute" key must exist
4812 * 3. The "execute" key must be a string
4813 * 4. If the "arguments" key exists, it must be a dict
4814 * 5. If the "id" key exists, it can be anything (ie. json-value)
4815 * 6. Any argument not listed above is considered invalid
4816 */
4817static QDict *qmp_check_input_obj(QObject *input_obj)
4818{
4819 const QDictEntry *ent;
4820 int has_exec_key = 0;
4821 QDict *input_dict;
4822
4823 if (qobject_type(input_obj) != QTYPE_QDICT) {
4824 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4825 return NULL;
4826 }
4827
4828 input_dict = qobject_to_qdict(input_obj);
4829
4830 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4831 const char *arg_name = qdict_entry_key(ent);
4832 const QObject *arg_obj = qdict_entry_value(ent);
4833
4834 if (!strcmp(arg_name, "execute")) {
4835 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4836 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4837 "string");
4838 return NULL;
4839 }
4840 has_exec_key = 1;
4841 } else if (!strcmp(arg_name, "arguments")) {
4842 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4843 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4844 "object");
4845 return NULL;
4846 }
4847 } else if (!strcmp(arg_name, "id")) {
4848 /* FIXME: check duplicated IDs for async commands */
4849 } else {
4850 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4851 return NULL;
4852 }
4853 }
4854
4855 if (!has_exec_key) {
4856 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4857 return NULL;
4858 }
4859
4860 return input_dict;
4861}
4862
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004863static void qmp_call_query_cmd(Monitor *mon, const mon_cmd_t *cmd)
4864{
4865 QObject *ret_data = NULL;
4866
Luiz Capitulino4903de02010-09-16 11:01:32 -03004867 if (handler_is_async(cmd)) {
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004868 qmp_async_info_handler(mon, cmd);
4869 if (monitor_has_error(mon)) {
4870 monitor_protocol_emitter(mon, NULL);
4871 }
4872 } else {
4873 cmd->mhandler.info_new(mon, &ret_data);
Luiz Capitulinoc01e6882010-11-22 16:22:47 -02004874 monitor_protocol_emitter(mon, ret_data);
4875 qobject_decref(ret_data);
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004876 }
4877}
4878
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004879static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4880 const QDict *params)
4881{
4882 int ret;
4883 QObject *data = NULL;
4884
4885 mon_print_count_init(mon);
4886
4887 ret = cmd->mhandler.cmd_new(mon, params, &data);
4888 handler_audit(mon, cmd, ret);
4889 monitor_protocol_emitter(mon, data);
4890 qobject_decref(data);
4891}
4892
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004893static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4894{
4895 int err;
4896 QObject *obj;
4897 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004898 const mon_cmd_t *cmd;
4899 Monitor *mon = cur_mon;
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004900 const char *cmd_name, *query_cmd;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004901
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004902 query_cmd = NULL;
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004903 args = input = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004904
4905 obj = json_parser_parse(tokens, NULL);
4906 if (!obj) {
4907 // FIXME: should be triggered in json_parser_parse()
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004908 qerror_report(QERR_JSON_PARSING);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004909 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004910 }
4911
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004912 input = qmp_check_input_obj(obj);
4913 if (!input) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004914 qobject_decref(obj);
4915 goto err_out;
4916 }
4917
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004918 mon->mc->id = qdict_get(input, "id");
4919 qobject_incref(mon->mc->id);
4920
Luiz Capitulino0bbab462010-05-31 17:32:50 -03004921 cmd_name = qdict_get_str(input, "execute");
Stefan Hajnoczi89bd8202011-09-23 08:23:06 +01004922 trace_handle_qmp_command(mon, cmd_name);
Luiz Capitulino09069b12010-02-04 18:10:06 -02004923 if (invalid_qmp_mode(mon, cmd_name)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004924 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004925 goto err_out;
Luiz Capitulino09069b12010-02-04 18:10:06 -02004926 }
4927
Anthony Liguorie3193602011-09-02 12:34:47 -05004928 cmd = qmp_find_cmd(cmd_name);
4929 if (!cmd && strstart(cmd_name, "query-", &query_cmd)) {
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004930 cmd = qmp_find_query_cmd(query_cmd);
Luiz Capitulino0fb88582010-09-15 10:56:17 -03004931 }
Luiz Capitulinod1249ea2010-09-13 14:44:27 -03004932 if (!cmd) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004933 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004934 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004935 }
4936
4937 obj = qdict_get(input, "arguments");
4938 if (!obj) {
4939 args = qdict_new();
4940 } else {
4941 args = qobject_to_qdict(obj);
4942 QINCREF(args);
4943 }
4944
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004945 err = qmp_check_client_args(cmd, args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004946 if (err < 0) {
4947 goto err_out;
4948 }
4949
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004950 if (query_cmd) {
4951 qmp_call_query_cmd(mon, cmd);
Luiz Capitulino4903de02010-09-16 11:01:32 -03004952 } else if (handler_is_async(cmd)) {
Luiz Capitulino5af7bba2010-06-22 19:10:46 -03004953 err = qmp_async_cmd_handler(mon, cmd, args);
4954 if (err) {
4955 /* emit the error response */
4956 goto err_out;
4957 }
Adam Litke940cc302010-01-25 12:18:44 -06004958 } else {
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004959 qmp_call_cmd(mon, cmd, args);
Adam Litke940cc302010-01-25 12:18:44 -06004960 }
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004961
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004962 goto out;
4963
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004964err_out:
4965 monitor_protocol_emitter(mon, NULL);
4966out:
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004967 QDECREF(input);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004968 QDECREF(args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004969}
4970
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004971/**
4972 * monitor_control_read(): Read and handle QMP input
4973 */
4974static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4975{
4976 Monitor *old_mon = cur_mon;
4977
4978 cur_mon = opaque;
4979
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004980 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004981
4982 cur_mon = old_mon;
4983}
4984
aliguori731b0362009-03-05 23:01:42 +00004985static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004986{
aliguori731b0362009-03-05 23:01:42 +00004987 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004988 int i;
aliguori376253e2009-03-05 23:01:23 +00004989
aliguori731b0362009-03-05 23:01:42 +00004990 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004991
aliguoricde76ee2009-03-05 23:01:51 +00004992 if (cur_mon->rs) {
4993 for (i = 0; i < size; i++)
4994 readline_handle_byte(cur_mon->rs, buf[i]);
4995 } else {
4996 if (size == 0 || buf[size - 1] != 0)
4997 monitor_printf(cur_mon, "corrupted command\n");
4998 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004999 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00005000 }
aliguori731b0362009-03-05 23:01:42 +00005001
5002 cur_mon = old_mon;
5003}
aliguorid8f44602008-10-06 13:52:44 +00005004
aliguori376253e2009-03-05 23:01:23 +00005005static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00005006{
aliguori731b0362009-03-05 23:01:42 +00005007 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02005008 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00005009 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00005010}
5011
aliguoricde76ee2009-03-05 23:01:51 +00005012int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00005013{
aliguoricde76ee2009-03-05 23:01:51 +00005014 if (!mon->rs)
5015 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00005016 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00005017 return 0;
aliguorid8f44602008-10-06 13:52:44 +00005018}
5019
aliguori376253e2009-03-05 23:01:23 +00005020void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00005021{
aliguoricde76ee2009-03-05 23:01:51 +00005022 if (!mon->rs)
5023 return;
aliguori731b0362009-03-05 23:01:42 +00005024 if (--mon->suspend_cnt == 0)
5025 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00005026}
5027
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02005028static QObject *get_qmp_greeting(void)
5029{
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03005030 QObject *ver = NULL;
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02005031
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03005032 qmp_marshal_input_query_version(NULL, NULL, &ver);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02005033 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
5034}
5035
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005036/**
5037 * monitor_control_event(): Print QMP gretting
5038 */
5039static void monitor_control_event(void *opaque, int event)
5040{
Luiz Capitulino47116d12010-02-08 17:01:30 -02005041 QObject *data;
5042 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005043
Luiz Capitulino47116d12010-02-08 17:01:30 -02005044 switch (event) {
5045 case CHR_EVENT_OPENED:
Luiz Capitulino4a7e1192010-02-04 18:10:05 -02005046 mon->mc->command_mode = 0;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005047 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02005048 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005049 monitor_json_emitter(mon, data);
5050 qobject_decref(data);
Luiz Capitulino47116d12010-02-08 17:01:30 -02005051 break;
5052 case CHR_EVENT_CLOSED:
5053 json_message_parser_destroy(&mon->mc->parser);
5054 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005055 }
5056}
5057
aliguori731b0362009-03-05 23:01:42 +00005058static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00005059{
aliguori376253e2009-03-05 23:01:23 +00005060 Monitor *mon = opaque;
5061
aliguori2724b182009-03-05 23:01:47 +00005062 switch (event) {
5063 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005064 mon->mux_out = 0;
5065 if (mon->reset_seen) {
5066 readline_restart(mon->rs);
5067 monitor_resume(mon);
5068 monitor_flush(mon);
5069 } else {
5070 mon->suspend_cnt = 0;
5071 }
aliguori2724b182009-03-05 23:01:47 +00005072 break;
ths86e94de2007-01-05 22:01:59 +00005073
aliguori2724b182009-03-05 23:01:47 +00005074 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005075 if (mon->reset_seen) {
5076 if (mon->suspend_cnt == 0) {
5077 monitor_printf(mon, "\n");
5078 }
5079 monitor_flush(mon);
5080 monitor_suspend(mon);
5081 } else {
5082 mon->suspend_cnt++;
5083 }
5084 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00005085 break;
5086
Amit Shahb6b8df52009-10-07 18:31:16 +05305087 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00005088 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
5089 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005090 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00005091 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005092 }
5093 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00005094 break;
5095 }
ths86e94de2007-01-05 22:01:59 +00005096}
5097
aliguori76655d62009-03-06 20:27:37 +00005098
5099/*
5100 * Local variables:
5101 * c-indent-level: 4
5102 * c-basic-offset: 4
5103 * tab-width: 8
5104 * End:
5105 */
5106
aliguori731b0362009-03-05 23:01:42 +00005107void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00005108{
aliguori731b0362009-03-05 23:01:42 +00005109 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00005110 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00005111
5112 if (is_first_init) {
Paolo Bonzini74475452011-03-11 16:47:48 +01005113 key_timer = qemu_new_timer_ns(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00005114 is_first_init = 0;
5115 }
aliguori87127162009-03-05 23:01:29 +00005116
Anthony Liguori7267c092011-08-20 22:09:37 -05005117 mon = g_malloc0(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00005118
aliguori87127162009-03-05 23:01:29 +00005119 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00005120 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00005121 if (flags & MONITOR_USE_READLINE) {
5122 mon->rs = readline_init(mon, monitor_find_completion);
5123 monitor_read_command(mon, 0);
5124 }
aliguori87127162009-03-05 23:01:29 +00005125
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005126 if (monitor_ctrl_mode(mon)) {
Anthony Liguori7267c092011-08-20 22:09:37 -05005127 mon->mc = g_malloc0(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005128 /* Control mode requires special handlers */
5129 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
5130 monitor_control_event, mon);
Anthony Liguori15f31512011-08-15 11:17:35 -05005131 qemu_chr_fe_set_echo(chr, true);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005132 } else {
5133 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
5134 monitor_event, mon);
5135 }
aliguori87127162009-03-05 23:01:29 +00005136
Blue Swirl72cf2d42009-09-12 07:36:22 +00005137 QLIST_INSERT_HEAD(&mon_list, mon, entry);
Markus Armbruster8631b602010-02-18 11:41:55 +01005138 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
5139 default_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00005140}
5141
aliguori376253e2009-03-05 23:01:23 +00005142static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00005143{
aliguoribb5fc202009-03-05 23:01:15 +00005144 BlockDriverState *bs = opaque;
5145 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00005146
aliguoribb5fc202009-03-05 23:01:15 +00005147 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00005148 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00005149 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00005150 }
aliguori731b0362009-03-05 23:01:42 +00005151 if (mon->password_completion_cb)
5152 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00005153
aliguori731b0362009-03-05 23:01:42 +00005154 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00005155}
aliguoric0f4ce72009-03-05 23:01:01 +00005156
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02005157int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
5158 BlockDriverCompletionFunc *completion_cb,
5159 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00005160{
aliguoricde76ee2009-03-05 23:01:51 +00005161 int err;
5162
aliguoribb5fc202009-03-05 23:01:15 +00005163 if (!bdrv_key_required(bs)) {
5164 if (completion_cb)
5165 completion_cb(opaque, 0);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02005166 return 0;
aliguoribb5fc202009-03-05 23:01:15 +00005167 }
aliguoric0f4ce72009-03-05 23:01:01 +00005168
Luiz Capitulino94171e12009-12-07 21:37:00 +01005169 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01005170 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02005171 return -1;
Luiz Capitulino94171e12009-12-07 21:37:00 +01005172 }
5173
aliguori376253e2009-03-05 23:01:23 +00005174 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
5175 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00005176
aliguori731b0362009-03-05 23:01:42 +00005177 mon->password_completion_cb = completion_cb;
5178 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00005179
aliguoricde76ee2009-03-05 23:01:51 +00005180 err = monitor_read_password(mon, bdrv_password_cb, bs);
5181
5182 if (err && completion_cb)
5183 completion_cb(opaque, err);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02005184
5185 return err;
aliguoric0f4ce72009-03-05 23:01:01 +00005186}