blob: 12a6fe25ad568ec27be22dbc1cd4e385a93b997a [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)
Luiz Capitulino91162842012-04-26 17:34:30 -030092 * 'M' Non-negative target long (32 or 64 bit), in user mode the
93 * value is 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 Capitulinoaf4ce882009-10-07 13:41:52 -0300126 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino261394d2010-02-10 23:50:02 -0200127 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600128 int (*cmd_async)(Monitor *mon, const QDict *params,
129 MonitorCompletion *cb, void *opaque);
Luiz Capitulino910df892009-10-07 13:41:51 -0300130 } mhandler;
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200131 int flags;
Anthony Liguoric227f092009-10-01 16:12:16 -0500132} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +0000133
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100134/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -0500135typedef struct mon_fd_t mon_fd_t;
136struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100137 char *name;
138 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -0500139 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100140};
141
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200142typedef struct MonitorControl {
143 QObject *id;
144 JSONMessageParser parser;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200145 int command_mode;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200146} MonitorControl;
147
aliguori87127162009-03-05 23:01:29 +0000148struct Monitor {
149 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200150 int mux_out;
151 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000152 int flags;
153 int suspend_cnt;
154 uint8_t outbuf[1024];
155 int outbuf_index;
156 ReadLineState *rs;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200157 MonitorControl *mc;
Andreas Färber9349b4f2012-03-14 01:38:32 +0100158 CPUArchState *mon_cpu;
aliguori731b0362009-03-05 23:01:42 +0000159 BlockDriverCompletionFunc *password_completion_cb;
160 void *password_opaque;
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200161#ifdef CONFIG_DEBUG_MONITOR
162 int print_calls_nr;
163#endif
Luiz Capitulino8204a912009-11-18 23:05:31 -0200164 QError *error;
Anthony Liguoric227f092009-10-01 16:12:16 -0500165 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000166 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000167};
168
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200169#ifdef CONFIG_DEBUG_MONITOR
170#define MON_DEBUG(fmt, ...) do { \
171 fprintf(stderr, "Monitor: "); \
172 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200173
174static inline void mon_print_count_inc(Monitor *mon)
175{
176 mon->print_calls_nr++;
177}
178
179static inline void mon_print_count_init(Monitor *mon)
180{
181 mon->print_calls_nr = 0;
182}
183
184static inline int mon_print_count_get(const Monitor *mon)
185{
186 return mon->print_calls_nr;
187}
188
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200189#else /* !CONFIG_DEBUG_MONITOR */
190#define MON_DEBUG(fmt, ...) do { } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200191static inline void mon_print_count_inc(Monitor *mon) { }
192static inline void mon_print_count_init(Monitor *mon) { }
193static inline int mon_print_count_get(const Monitor *mon) { return 0; }
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200194#endif /* CONFIG_DEBUG_MONITOR */
195
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -0300196/* QMP checker flags */
197#define QMP_ACCEPT_UNKNOWNS 1
198
Blue Swirl72cf2d42009-09-12 07:36:22 +0000199static QLIST_HEAD(mon_list, Monitor) mon_list;
bellard7e2515e2004-08-01 21:52:19 +0000200
Wayne Xia816f8922011-10-12 11:32:41 +0800201static mon_cmd_t mon_cmds[];
202static mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000203
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300204static const mon_cmd_t qmp_cmds[];
205
Markus Armbruster8631b602010-02-18 11:41:55 +0100206Monitor *cur_mon;
207Monitor *default_mon;
aliguori376253e2009-03-05 23:01:23 +0000208
aliguori731b0362009-03-05 23:01:42 +0000209static void monitor_command_cb(Monitor *mon, const char *cmdline,
210 void *opaque);
aliguori83ab7952008-08-19 14:44:22 +0000211
Luiz Capitulino09069b12010-02-04 18:10:06 -0200212static inline int qmp_cmd_mode(const Monitor *mon)
213{
214 return (mon->mc ? mon->mc->command_mode : 0);
215}
216
Luiz Capitulino418173c2009-11-26 22:58:51 -0200217/* Return true if in control mode, false otherwise */
218static inline int monitor_ctrl_mode(const Monitor *mon)
219{
220 return (mon->flags & MONITOR_USE_CONTROL);
221}
222
Markus Armbruster6620d3c2010-02-11 17:05:43 +0100223/* Return non-zero iff we have a current monitor, and it is in QMP mode. */
224int monitor_cur_is_qmp(void)
225{
226 return cur_mon && monitor_ctrl_mode(cur_mon);
227}
228
Anthony Liguori7060b472011-09-02 12:34:50 -0500229void monitor_read_command(Monitor *mon, int show_prompt)
aliguori731b0362009-03-05 23:01:42 +0000230{
Luiz Capitulino183e6e52009-12-14 18:53:23 -0200231 if (!mon->rs)
232 return;
233
aliguori731b0362009-03-05 23:01:42 +0000234 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
235 if (show_prompt)
236 readline_show_prompt(mon->rs);
237}
bellard6a00d602005-11-21 23:25:50 +0000238
Anthony Liguori7060b472011-09-02 12:34:50 -0500239int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
240 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000241{
Luiz Capitulino94171e12009-12-07 21:37:00 +0100242 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100243 qerror_report(QERR_MISSING_PARAMETER, "password");
Luiz Capitulino94171e12009-12-07 21:37:00 +0100244 return -EINVAL;
245 } else if (mon->rs) {
aliguoricde76ee2009-03-05 23:01:51 +0000246 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
247 /* prompt is printed on return from the command handler */
248 return 0;
249 } else {
250 monitor_printf(mon, "terminal does not support password prompting\n");
251 return -ENOTTY;
252 }
aliguoribb5fc202009-03-05 23:01:15 +0000253}
254
aliguori376253e2009-03-05 23:01:23 +0000255void monitor_flush(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000256{
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200257 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
Anthony Liguori2cc6e0a2011-08-15 11:17:28 -0500258 qemu_chr_fe_write(mon->chr, mon->outbuf, mon->outbuf_index);
aliguori731b0362009-03-05 23:01:42 +0000259 mon->outbuf_index = 0;
bellard7e2515e2004-08-01 21:52:19 +0000260 }
261}
262
263/* flush at every end of line or if the buffer is full */
aliguori376253e2009-03-05 23:01:23 +0000264static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000265{
ths60fe76f2007-12-16 03:02:09 +0000266 char c;
aliguori731b0362009-03-05 23:01:42 +0000267
bellard7e2515e2004-08-01 21:52:19 +0000268 for(;;) {
269 c = *str++;
270 if (c == '\0')
271 break;
bellard7ba12602006-07-14 20:26:42 +0000272 if (c == '\n')
aliguori731b0362009-03-05 23:01:42 +0000273 mon->outbuf[mon->outbuf_index++] = '\r';
274 mon->outbuf[mon->outbuf_index++] = c;
275 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
276 || c == '\n')
aliguori376253e2009-03-05 23:01:23 +0000277 monitor_flush(mon);
bellard7e2515e2004-08-01 21:52:19 +0000278 }
279}
280
aliguori376253e2009-03-05 23:01:23 +0000281void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000282{
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200283 char buf[4096];
284
Luiz Capitulino2daa1192009-12-14 18:53:24 -0200285 if (!mon)
286 return;
287
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200288 mon_print_count_inc(mon);
289
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200290 if (monitor_ctrl_mode(mon)) {
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200291 return;
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200292 }
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200293
294 vsnprintf(buf, sizeof(buf), fmt, ap);
295 monitor_puts(mon, buf);
bellard7e2515e2004-08-01 21:52:19 +0000296}
297
aliguori376253e2009-03-05 23:01:23 +0000298void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000299{
300 va_list ap;
301 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000302 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000303 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000304}
305
aliguori376253e2009-03-05 23:01:23 +0000306void monitor_print_filename(Monitor *mon, const char *filename)
thsfef30742006-12-22 14:11:32 +0000307{
308 int i;
309
310 for (i = 0; filename[i]; i++) {
aliguori28a76be2009-03-06 20:27:40 +0000311 switch (filename[i]) {
312 case ' ':
313 case '"':
314 case '\\':
315 monitor_printf(mon, "\\%c", filename[i]);
316 break;
317 case '\t':
318 monitor_printf(mon, "\\t");
319 break;
320 case '\r':
321 monitor_printf(mon, "\\r");
322 break;
323 case '\n':
324 monitor_printf(mon, "\\n");
325 break;
326 default:
327 monitor_printf(mon, "%c", filename[i]);
328 break;
329 }
thsfef30742006-12-22 14:11:32 +0000330 }
331}
332
Stefan Weil8b7968f2010-09-23 21:28:05 +0200333static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
334 const char *fmt, ...)
bellard7fe48482004-10-09 18:08:01 +0000335{
336 va_list ap;
337 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000338 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000339 va_end(ap);
340 return 0;
341}
342
Luiz Capitulino13c74252009-10-07 13:41:55 -0300343static void monitor_user_noop(Monitor *mon, const QObject *data) { }
344
Luiz Capitulino9e807212010-09-16 10:58:59 -0300345static inline int handler_is_qobject(const mon_cmd_t *cmd)
Luiz Capitulino13917be2009-10-07 13:41:54 -0300346{
347 return cmd->user_print != NULL;
348}
349
Luiz Capitulino4903de02010-09-16 11:01:32 -0300350static inline bool handler_is_async(const mon_cmd_t *cmd)
Adam Litke940cc302010-01-25 12:18:44 -0600351{
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200352 return cmd->flags & MONITOR_CMD_ASYNC;
Adam Litke940cc302010-01-25 12:18:44 -0600353}
354
Luiz Capitulino8204a912009-11-18 23:05:31 -0200355static inline int monitor_has_error(const Monitor *mon)
356{
357 return mon->error != NULL;
358}
359
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200360static void monitor_json_emitter(Monitor *mon, const QObject *data)
361{
362 QString *json;
363
Luiz Capitulino83a27d42010-11-22 17:10:37 -0200364 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
365 qobject_to_json(data);
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200366 assert(json != NULL);
367
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200368 qstring_append_chr(json, '\n');
369 monitor_puts(mon, qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200370
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200371 QDECREF(json);
372}
373
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200374static void monitor_protocol_emitter(Monitor *mon, QObject *data)
375{
376 QDict *qmp;
377
Stefan Hajnoczi89bd8202011-09-23 08:23:06 +0100378 trace_monitor_protocol_emitter(mon);
379
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200380 qmp = qdict_new();
381
382 if (!monitor_has_error(mon)) {
383 /* success response */
384 if (data) {
385 qobject_incref(data);
386 qdict_put_obj(qmp, "return", data);
387 } else {
Luiz Capitulino0abc6572009-12-18 13:25:00 -0200388 /* return an empty QDict by default */
389 qdict_put(qmp, "return", qdict_new());
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200390 }
391 } else {
392 /* error response */
Markus Armbruster77e595e2009-12-07 21:37:16 +0100393 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200394 qdict_put(qmp, "error", mon->error->error);
395 QINCREF(mon->error->error);
396 QDECREF(mon->error);
397 mon->error = NULL;
398 }
399
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200400 if (mon->mc->id) {
401 qdict_put_obj(qmp, "id", mon->mc->id);
402 mon->mc->id = NULL;
403 }
404
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200405 monitor_json_emitter(mon, QOBJECT(qmp));
406 QDECREF(qmp);
407}
408
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200409static void timestamp_put(QDict *qdict)
410{
411 int err;
412 QObject *obj;
Blue Swirld08d6f02009-12-04 18:06:39 +0000413 qemu_timeval tv;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200414
Blue Swirld08d6f02009-12-04 18:06:39 +0000415 err = qemu_gettimeofday(&tv);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200416 if (err < 0)
417 return;
418
419 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
420 "'microseconds': %" PRId64 " }",
421 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200422 qdict_put_obj(qdict, "timestamp", obj);
423}
424
425/**
426 * monitor_protocol_event(): Generate a Monitor event
427 *
428 * Event-specific data can be emitted through the (optional) 'data' parameter.
429 */
430void monitor_protocol_event(MonitorEvent event, QObject *data)
431{
432 QDict *qmp;
433 const char *event_name;
Adam Litkef039a562010-01-15 08:34:02 -0600434 Monitor *mon;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200435
Blue Swirl242cd002009-12-04 18:05:45 +0000436 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200437
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200438 switch (event) {
Blue Swirl242cd002009-12-04 18:05:45 +0000439 case QEVENT_SHUTDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200440 event_name = "SHUTDOWN";
441 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000442 case QEVENT_RESET:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200443 event_name = "RESET";
444 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000445 case QEVENT_POWERDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200446 event_name = "POWERDOWN";
447 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000448 case QEVENT_STOP:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200449 event_name = "STOP";
450 break;
Luiz Capitulino6ed2c482010-04-27 20:35:59 -0300451 case QEVENT_RESUME:
452 event_name = "RESUME";
453 break;
Luiz Capitulino586153d2010-01-14 14:50:57 -0200454 case QEVENT_VNC_CONNECTED:
455 event_name = "VNC_CONNECTED";
456 break;
Luiz Capitulino0d2ed462010-01-14 14:50:59 -0200457 case QEVENT_VNC_INITIALIZED:
458 event_name = "VNC_INITIALIZED";
459 break;
Luiz Capitulino0d72f3d2010-01-14 14:50:58 -0200460 case QEVENT_VNC_DISCONNECTED:
461 event_name = "VNC_DISCONNECTED";
462 break;
Luiz Capitulinoaa1db6e2010-02-03 12:41:00 -0200463 case QEVENT_BLOCK_IO_ERROR:
464 event_name = "BLOCK_IO_ERROR";
465 break;
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300466 case QEVENT_RTC_CHANGE:
467 event_name = "RTC_CHANGE";
468 break;
Luiz Capitulino9eedeb32010-02-25 12:13:04 -0300469 case QEVENT_WATCHDOG:
470 event_name = "WATCHDOG";
471 break;
Gerd Hoffmann6f8c63f2010-10-11 18:03:51 +0200472 case QEVENT_SPICE_CONNECTED:
473 event_name = "SPICE_CONNECTED";
474 break;
475 case QEVENT_SPICE_INITIALIZED:
476 event_name = "SPICE_INITIALIZED";
477 break;
478 case QEVENT_SPICE_DISCONNECTED:
479 event_name = "SPICE_DISCONNECTED";
480 break;
Stefan Hajnoczi12bd4512012-01-18 14:40:46 +0000481 case QEVENT_BLOCK_JOB_COMPLETED:
482 event_name = "BLOCK_JOB_COMPLETED";
483 break;
Stefan Hajnoczi370521a2012-01-18 14:40:48 +0000484 case QEVENT_BLOCK_JOB_CANCELLED:
485 event_name = "BLOCK_JOB_CANCELLED";
486 break;
Luiz Capitulino6f382ed2012-02-14 13:41:13 -0200487 case QEVENT_DEVICE_TRAY_MOVED:
488 event_name = "DEVICE_TRAY_MOVED";
489 break;
Gerd Hoffmann53370b72012-02-23 13:45:26 +0100490 case QEVENT_SUSPEND:
491 event_name = "SUSPEND";
492 break;
493 case QEVENT_WAKEUP:
494 event_name = "WAKEUP";
495 break;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200496 default:
497 abort();
498 break;
499 }
500
501 qmp = qdict_new();
502 timestamp_put(qmp);
503 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200504 if (data) {
505 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200506 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200507 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200508
Adam Litkef039a562010-01-15 08:34:02 -0600509 QLIST_FOREACH(mon, &mon_list, entry) {
Luiz Capitulino09069b12010-02-04 18:10:06 -0200510 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
Luiz Capitulino23fabed2010-01-20 10:37:59 -0200511 monitor_json_emitter(mon, QOBJECT(qmp));
512 }
Adam Litkef039a562010-01-15 08:34:02 -0600513 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200514 QDECREF(qmp);
515}
516
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200517static int do_qmp_capabilities(Monitor *mon, const QDict *params,
518 QObject **ret_data)
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200519{
520 /* Will setup QMP capabilities in the future */
521 if (monitor_ctrl_mode(mon)) {
522 mon->mc->command_mode = 1;
523 }
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200524
525 return 0;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200526}
527
Luiz Capitulino0268d972010-10-22 10:08:02 -0200528static void handle_user_command(Monitor *mon, const char *cmdline);
529
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200530char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index,
531 int64_t cpu_index, Error **errp)
Luiz Capitulino0268d972010-10-22 10:08:02 -0200532{
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200533 char *output = NULL;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200534 Monitor *old_mon, hmp;
535 CharDriverState mchar;
536
537 memset(&hmp, 0, sizeof(hmp));
538 qemu_chr_init_mem(&mchar);
539 hmp.chr = &mchar;
540
541 old_mon = cur_mon;
542 cur_mon = &hmp;
543
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200544 if (has_cpu_index) {
545 int ret = monitor_set_cpu(cpu_index);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200546 if (ret < 0) {
547 cur_mon = old_mon;
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200548 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
549 "a CPU number");
Luiz Capitulino0268d972010-10-22 10:08:02 -0200550 goto out;
551 }
552 }
553
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200554 handle_user_command(&hmp, command_line);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200555 cur_mon = old_mon;
556
557 if (qemu_chr_mem_osize(hmp.chr) > 0) {
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200558 QString *str = qemu_chr_mem_to_qs(hmp.chr);
559 output = g_strdup(qstring_get_str(str));
560 QDECREF(str);
561 } else {
562 output = g_strdup("");
Luiz Capitulino0268d972010-10-22 10:08:02 -0200563 }
564
565out:
566 qemu_chr_close_mem(hmp.chr);
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200567 return output;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200568}
569
bellard9dc39cb2004-03-14 21:38:27 +0000570static int compare_cmd(const char *name, const char *list)
571{
572 const char *p, *pstart;
573 int len;
574 len = strlen(name);
575 p = list;
576 for(;;) {
577 pstart = p;
578 p = strchr(p, '|');
579 if (!p)
580 p = pstart + strlen(pstart);
581 if ((p - pstart) == len && !memcmp(pstart, name, len))
582 return 1;
583 if (*p == '\0')
584 break;
585 p++;
586 }
587 return 0;
588}
589
Anthony Liguoric227f092009-10-01 16:12:16 -0500590static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000591 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000592{
Anthony Liguoric227f092009-10-01 16:12:16 -0500593 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000594
595 for(cmd = cmds; cmd->name != NULL; cmd++) {
596 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000597 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
598 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000599 }
600}
601
aliguori376253e2009-03-05 23:01:23 +0000602static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000603{
604 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000605 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000606 } else {
aliguori376253e2009-03-05 23:01:23 +0000607 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000608 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000609 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000610 monitor_printf(mon, "Log items (comma separated):\n");
611 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000612 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000613 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000614 }
615 }
bellard9dc39cb2004-03-14 21:38:27 +0000616 }
617}
618
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300619static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300620{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300621 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300622}
623
Lluísfc764102011-08-31 20:31:18 +0200624static void do_trace_event_set_state(Monitor *mon, const QDict *qdict)
Prerna Saxena22890ab2010-06-24 17:04:53 +0530625{
626 const char *tp_name = qdict_get_str(qdict, "name");
627 bool new_state = qdict_get_bool(qdict, "option");
Lluísfc764102011-08-31 20:31:18 +0200628 int ret = trace_event_set_state(tp_name, new_state);
Blue Swirlf871d682010-10-13 19:14:29 +0000629
630 if (!ret) {
631 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
632 }
Prerna Saxena22890ab2010-06-24 17:04:53 +0530633}
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100634
Michael Rothc45a8162011-10-02 08:44:37 -0500635#ifdef CONFIG_TRACE_SIMPLE
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100636static void do_trace_file(Monitor *mon, const QDict *qdict)
637{
638 const char *op = qdict_get_try_str(qdict, "op");
639 const char *arg = qdict_get_try_str(qdict, "arg");
640
641 if (!op) {
642 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
643 } else if (!strcmp(op, "on")) {
644 st_set_trace_file_enabled(true);
645 } else if (!strcmp(op, "off")) {
646 st_set_trace_file_enabled(false);
647 } else if (!strcmp(op, "flush")) {
648 st_flush_trace_buffer();
649 } else if (!strcmp(op, "set")) {
650 if (arg) {
651 st_set_trace_file(arg);
652 }
653 } else {
654 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
655 help_cmd(mon, "trace-file");
656 }
657}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530658#endif
659
Adam Litke940cc302010-01-25 12:18:44 -0600660static void user_monitor_complete(void *opaque, QObject *ret_data)
661{
662 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
663
664 if (ret_data) {
665 data->user_print(data->mon, ret_data);
666 }
667 monitor_resume(data->mon);
Anthony Liguori7267c092011-08-20 22:09:37 -0500668 g_free(data);
Adam Litke940cc302010-01-25 12:18:44 -0600669}
670
671static void qmp_monitor_complete(void *opaque, QObject *ret_data)
672{
673 monitor_protocol_emitter(opaque, ret_data);
674}
675
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300676static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
677 const QDict *params)
Adam Litke940cc302010-01-25 12:18:44 -0600678{
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300679 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
Adam Litke940cc302010-01-25 12:18:44 -0600680}
681
Adam Litke940cc302010-01-25 12:18:44 -0600682static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
683 const QDict *params)
684{
685 int ret;
686
Anthony Liguori7267c092011-08-20 22:09:37 -0500687 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
Adam Litke940cc302010-01-25 12:18:44 -0600688 cb_data->mon = mon;
689 cb_data->user_print = cmd->user_print;
690 monitor_suspend(mon);
691 ret = cmd->mhandler.cmd_async(mon, params,
692 user_monitor_complete, cb_data);
693 if (ret < 0) {
694 monitor_resume(mon);
Anthony Liguori7267c092011-08-20 22:09:37 -0500695 g_free(cb_data);
Adam Litke940cc302010-01-25 12:18:44 -0600696 }
697}
698
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300699static void do_info(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000700{
Anthony Liguoric227f092009-10-01 16:12:16 -0500701 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300702 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000703
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200704 if (!item) {
bellard9dc39cb2004-03-14 21:38:27 +0000705 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200706 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300707
708 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000709 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300710 break;
bellard9dc39cb2004-03-14 21:38:27 +0000711 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300712
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200713 if (cmd->name == NULL) {
Luiz Capitulino13c74252009-10-07 13:41:55 -0300714 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200715 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300716
Luiz Capitulinob5c30582011-10-21 16:24:28 -0200717 cmd->mhandler.info(mon);
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300718 return;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300719
720help:
721 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000722}
723
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300724CommandInfoList *qmp_query_commands(Error **errp)
bellard9bc9d1c2004-10-10 15:15:51 +0000725{
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300726 CommandInfoList *info, *cmd_list = NULL;
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200727 const mon_cmd_t *cmd;
728
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300729 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino40e5a012011-10-21 16:15:31 -0200730 info = g_malloc0(sizeof(*info));
731 info->value = g_malloc0(sizeof(*info->value));
732 info->value->name = g_strdup(cmd->name);
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200733
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300734 info->next = cmd_list;
735 cmd_list = info;
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200736 }
737
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300738 return cmd_list;
thsa36e69d2007-12-02 05:18:19 +0000739}
740
Luiz Capitulinob025c8b2011-10-06 14:02:57 -0300741/* set the current CPU defined by the user */
742int monitor_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000743{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100744 CPUArchState *env;
bellard6a00d602005-11-21 23:25:50 +0000745
746 for(env = first_cpu; env != NULL; env = env->next_cpu) {
747 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000748 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000749 return 0;
750 }
751 }
752 return -1;
753}
754
Andreas Färber9349b4f2012-03-14 01:38:32 +0100755static CPUArchState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000756{
aliguori731b0362009-03-05 23:01:42 +0000757 if (!cur_mon->mon_cpu) {
Luiz Capitulinob025c8b2011-10-06 14:02:57 -0300758 monitor_set_cpu(0);
bellard6a00d602005-11-21 23:25:50 +0000759 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300760 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000761 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000762}
763
Luiz Capitulino99b77962011-10-24 10:53:44 -0200764int monitor_get_cpu_index(void)
765{
766 return mon_get_cpu()->cpu_index;
767}
768
aliguori376253e2009-03-05 23:01:23 +0000769static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000770{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100771 CPUArchState *env;
bellard6a00d602005-11-21 23:25:50 +0000772 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +0000773#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000774 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000775 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000776#else
aliguori376253e2009-03-05 23:01:23 +0000777 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000778 0);
bellard9307c4c2004-04-04 12:57:25 +0000779#endif
780}
781
aliguori376253e2009-03-05 23:01:23 +0000782static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000783{
aliguori376253e2009-03-05 23:01:23 +0000784 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000785}
786
aliguori376253e2009-03-05 23:01:23 +0000787static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000788{
789 int i;
bellard7e2515e2004-08-01 21:52:19 +0000790 const char *str;
ths3b46e622007-09-17 08:09:54 +0000791
aliguoricde76ee2009-03-05 23:01:51 +0000792 if (!mon->rs)
793 return;
bellard7e2515e2004-08-01 21:52:19 +0000794 i = 0;
795 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000796 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000797 if (!str)
798 break;
aliguori376253e2009-03-05 23:01:23 +0000799 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000800 i++;
bellardaa455482004-04-04 13:07:25 +0000801 }
802}
803
j_mayer76a66252007-03-07 08:32:30 +0000804#if defined(TARGET_PPC)
805/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000806static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000807{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100808 CPUArchState *env;
j_mayer76a66252007-03-07 08:32:30 +0000809
810 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000811 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000812}
813#endif
814
Lluís6d8a7642011-08-31 20:30:43 +0200815#if defined(CONFIG_TRACE_SIMPLE)
Prerna Saxena22890ab2010-06-24 17:04:53 +0530816static void do_info_trace(Monitor *mon)
817{
818 st_print_trace((FILE *)mon, &monitor_fprintf);
819}
Lluís31965ae2011-08-31 20:31:24 +0200820#endif
Prerna Saxena22890ab2010-06-24 17:04:53 +0530821
Lluísfc764102011-08-31 20:31:18 +0200822static void do_trace_print_events(Monitor *mon)
Prerna Saxena22890ab2010-06-24 17:04:53 +0530823{
Lluísfc764102011-08-31 20:31:18 +0200824 trace_print_events((FILE *)mon, &monitor_fprintf);
Prerna Saxena22890ab2010-06-24 17:04:53 +0530825}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530826
Daniel P. Berrange13661082011-06-23 13:31:42 +0100827static int add_graphics_client(Monitor *mon, const QDict *qdict, QObject **ret_data)
828{
829 const char *protocol = qdict_get_str(qdict, "protocol");
830 const char *fdname = qdict_get_str(qdict, "fdname");
Daniel P. Berrange13661082011-06-23 13:31:42 +0100831 CharDriverState *s;
832
833 if (strcmp(protocol, "spice") == 0) {
Daniel P. Berrangef1f5f402012-02-13 13:43:08 +0000834 int fd = monitor_get_fd(mon, fdname);
835 int skipauth = qdict_get_try_bool(qdict, "skipauth", 0);
836 int tls = qdict_get_try_bool(qdict, "tls", 0);
Daniel P. Berrange13661082011-06-23 13:31:42 +0100837 if (!using_spice) {
838 /* correct one? spice isn't a device ,,, */
839 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
840 return -1;
841 }
Daniel P. Berrangef1f5f402012-02-13 13:43:08 +0000842 if (qemu_spice_display_add_client(fd, skipauth, tls) < 0) {
843 close(fd);
844 }
845 return 0;
TeLeManc62f6d12011-07-25 16:29:14 +0800846#ifdef CONFIG_VNC
Daniel P. Berrange13661082011-06-23 13:31:42 +0100847 } else if (strcmp(protocol, "vnc") == 0) {
848 int fd = monitor_get_fd(mon, fdname);
Jamie Iles860341f2011-08-10 15:18:42 +0100849 int skipauth = qdict_get_try_bool(qdict, "skipauth", 0);
Daniel P. Berrange13661082011-06-23 13:31:42 +0100850 vnc_display_add_client(NULL, fd, skipauth);
851 return 0;
TeLeManc62f6d12011-07-25 16:29:14 +0800852#endif
Daniel P. Berrange13661082011-06-23 13:31:42 +0100853 } else if ((s = qemu_chr_find(protocol)) != NULL) {
854 int fd = monitor_get_fd(mon, fdname);
855 if (qemu_chr_add_client(s, fd) < 0) {
856 qerror_report(QERR_ADD_CLIENT_FAILED);
857 return -1;
858 }
859 return 0;
860 }
861
862 qerror_report(QERR_INVALID_PARAMETER, "protocol");
863 return -1;
864}
865
Yonit Halperinedc5cb12011-10-17 10:03:18 +0200866static int client_migrate_info(Monitor *mon, const QDict *qdict,
867 MonitorCompletion cb, void *opaque)
Gerd Hoffmanne866e232010-04-23 13:28:21 +0200868{
869 const char *protocol = qdict_get_str(qdict, "protocol");
870 const char *hostname = qdict_get_str(qdict, "hostname");
871 const char *subject = qdict_get_try_str(qdict, "cert-subject");
872 int port = qdict_get_try_int(qdict, "port", -1);
873 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
874 int ret;
875
876 if (strcmp(protocol, "spice") == 0) {
877 if (!using_spice) {
878 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
879 return -1;
880 }
881
Yonit Halperin6ec5dae2012-03-18 09:42:39 +0200882 if (port == -1 && tls_port == -1) {
883 qerror_report(QERR_MISSING_PARAMETER, "port/tls-port");
884 return -1;
885 }
886
Yonit Halperinedc5cb12011-10-17 10:03:18 +0200887 ret = qemu_spice_migrate_info(hostname, port, tls_port, subject,
888 cb, opaque);
Gerd Hoffmanne866e232010-04-23 13:28:21 +0200889 if (ret != 0) {
890 qerror_report(QERR_UNDEFINED_ERROR);
891 return -1;
892 }
893 return 0;
894 }
895
896 qerror_report(QERR_INVALID_PARAMETER, "protocol");
897 return -1;
898}
899
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -0300900static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard59a983b2004-03-17 23:17:16 +0000901{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300902 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -0300903 return 0;
bellard59a983b2004-03-17 23:17:16 +0000904}
905
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300906static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +0000907{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300908 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +0000909}
910
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300911static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +0000912{
913 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300914 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +0000915
bellard9307c4c2004-04-04 12:57:25 +0000916 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +0000917 mask = 0;
918 } else {
bellard9307c4c2004-04-04 12:57:25 +0000919 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +0000920 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +0000921 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +0000922 return;
923 }
924 }
925 cpu_set_log(mask);
926}
927
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300928static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +0000929{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300930 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +0000931 if (!option || !strcmp(option, "on")) {
932 singlestep = 1;
933 } else if (!strcmp(option, "off")) {
934 singlestep = 0;
935 } else {
936 monitor_printf(mon, "unexpected option %s\n", option);
937 }
938}
939
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300940static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +0000941{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300942 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +0000943 if (!device)
944 device = "tcp::" DEFAULT_GDBSTUB_PORT;
945 if (gdbserver_start(device) < 0) {
946 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
947 device);
948 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +0000949 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +0000950 } else {
aliguori59030a82009-04-05 18:43:41 +0000951 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
952 device);
bellard8a7ddc32004-03-31 19:00:16 +0000953 }
954}
955
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300956static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +0100957{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300958 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +0100959 if (select_watchdog_action(action) == -1) {
960 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
961 }
962}
963
aliguori376253e2009-03-05 23:01:23 +0000964static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +0000965{
aliguori376253e2009-03-05 23:01:23 +0000966 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +0000967 switch(c) {
968 case '\'':
aliguori376253e2009-03-05 23:01:23 +0000969 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +0000970 break;
971 case '\\':
aliguori376253e2009-03-05 23:01:23 +0000972 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +0000973 break;
974 case '\n':
aliguori376253e2009-03-05 23:01:23 +0000975 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +0000976 break;
977 case '\r':
aliguori376253e2009-03-05 23:01:23 +0000978 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +0000979 break;
980 default:
981 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +0000982 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +0000983 } else {
aliguori376253e2009-03-05 23:01:23 +0000984 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +0000985 }
986 break;
987 }
aliguori376253e2009-03-05 23:01:23 +0000988 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +0000989}
990
aliguori376253e2009-03-05 23:01:23 +0000991static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -0500992 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +0000993{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100994 CPUArchState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +0000995 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +0000996 uint8_t buf[16];
997 uint64_t v;
998
999 if (format == 'i') {
1000 int flags;
1001 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001002 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +00001003#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001004 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001005 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001006 } else if (wsize == 4) {
1007 flags = 0;
1008 } else {
bellard6a15fd12006-04-12 21:07:07 +00001009 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001010 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001011 if (env) {
1012#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001013 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001014 (env->segs[R_CS].flags & DESC_L_MASK))
1015 flags = 2;
1016 else
1017#endif
1018 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1019 flags = 1;
1020 }
bellard4c27ba22004-04-25 18:05:08 +00001021 }
1022#endif
aliguori376253e2009-03-05 23:01:23 +00001023 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001024 return;
1025 }
1026
1027 len = wsize * count;
1028 if (wsize == 1)
1029 line_size = 8;
1030 else
1031 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001032 max_digits = 0;
1033
1034 switch(format) {
1035 case 'o':
1036 max_digits = (wsize * 8 + 2) / 3;
1037 break;
1038 default:
1039 case 'x':
1040 max_digits = (wsize * 8) / 4;
1041 break;
1042 case 'u':
1043 case 'd':
1044 max_digits = (wsize * 8 * 10 + 32) / 33;
1045 break;
1046 case 'c':
1047 wsize = 1;
1048 break;
1049 }
1050
1051 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001052 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001053 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001054 else
aliguori376253e2009-03-05 23:01:23 +00001055 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001056 l = len;
1057 if (l > line_size)
1058 l = line_size;
1059 if (is_physical) {
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001060 cpu_physical_memory_read(addr, buf, l);
bellard9307c4c2004-04-04 12:57:25 +00001061 } else {
bellard6a00d602005-11-21 23:25:50 +00001062 env = mon_get_cpu();
aliguoric8f79b62008-08-18 14:00:20 +00001063 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001064 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001065 break;
1066 }
bellard9307c4c2004-04-04 12:57:25 +00001067 }
ths5fafdf22007-09-16 21:08:06 +00001068 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001069 while (i < l) {
1070 switch(wsize) {
1071 default:
1072 case 1:
1073 v = ldub_raw(buf + i);
1074 break;
1075 case 2:
1076 v = lduw_raw(buf + i);
1077 break;
1078 case 4:
bellard92a31b12005-02-10 22:00:52 +00001079 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001080 break;
1081 case 8:
1082 v = ldq_raw(buf + i);
1083 break;
1084 }
aliguori376253e2009-03-05 23:01:23 +00001085 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001086 switch(format) {
1087 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001088 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001089 break;
1090 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001091 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001092 break;
1093 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001094 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001095 break;
1096 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001097 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001098 break;
1099 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001100 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001101 break;
1102 }
1103 i += wsize;
1104 }
aliguori376253e2009-03-05 23:01:23 +00001105 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001106 addr += l;
1107 len -= l;
1108 }
1109}
1110
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001111static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001112{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001113 int count = qdict_get_int(qdict, "count");
1114 int format = qdict_get_int(qdict, "format");
1115 int size = qdict_get_int(qdict, "size");
1116 target_long addr = qdict_get_int(qdict, "addr");
1117
aliguori376253e2009-03-05 23:01:23 +00001118 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001119}
1120
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001121static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001122{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001123 int count = qdict_get_int(qdict, "count");
1124 int format = qdict_get_int(qdict, "format");
1125 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001126 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001127
aliguori376253e2009-03-05 23:01:23 +00001128 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001129}
1130
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001131static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001132{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001133 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001134 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001135
blueswir17743e582007-09-24 18:39:04 +00001136#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +00001137 switch(format) {
1138 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001139 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +00001140 break;
1141 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001142 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +00001143 break;
1144 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001145 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +00001146 break;
1147 default:
1148 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001149 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +00001150 break;
1151 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001152 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001153 break;
1154 }
bellard92a31b12005-02-10 22:00:52 +00001155#else
1156 switch(format) {
1157 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001158 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +00001159 break;
1160 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001161 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +00001162 break;
1163 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001164 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +00001165 break;
1166 default:
1167 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001168 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +00001169 break;
1170 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001171 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +00001172 break;
1173 }
1174#endif
aliguori376253e2009-03-05 23:01:23 +00001175 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001176}
1177
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001178static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001179{
1180 uint32_t addr;
bellarde4cf1ad2005-06-04 20:15:57 +00001181 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001182 uint32_t start = qdict_get_int(qdict, "start");
1183 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001184
1185 sum = 0;
1186 for(addr = start; addr < (start + size); addr++) {
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001187 uint8_t val = ldub_phys(addr);
bellarde4cf1ad2005-06-04 20:15:57 +00001188 /* BSD sum algorithm ('sum' Unix command) */
1189 sum = (sum >> 1) | (sum << 15);
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001190 sum += val;
bellarde4cf1ad2005-06-04 20:15:57 +00001191 }
aliguori376253e2009-03-05 23:01:23 +00001192 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001193}
1194
bellarda3a91a32004-06-04 11:06:21 +00001195typedef struct {
1196 int keycode;
1197 const char *name;
1198} KeyDef;
1199
1200static const KeyDef key_defs[] = {
1201 { 0x2a, "shift" },
1202 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +00001203
bellarda3a91a32004-06-04 11:06:21 +00001204 { 0x38, "alt" },
1205 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +00001206 { 0x64, "altgr" },
1207 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +00001208 { 0x1d, "ctrl" },
1209 { 0x9d, "ctrl_r" },
1210
1211 { 0xdd, "menu" },
1212
1213 { 0x01, "esc" },
1214
1215 { 0x02, "1" },
1216 { 0x03, "2" },
1217 { 0x04, "3" },
1218 { 0x05, "4" },
1219 { 0x06, "5" },
1220 { 0x07, "6" },
1221 { 0x08, "7" },
1222 { 0x09, "8" },
1223 { 0x0a, "9" },
1224 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +00001225 { 0x0c, "minus" },
1226 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +00001227 { 0x0e, "backspace" },
1228
1229 { 0x0f, "tab" },
1230 { 0x10, "q" },
1231 { 0x11, "w" },
1232 { 0x12, "e" },
1233 { 0x13, "r" },
1234 { 0x14, "t" },
1235 { 0x15, "y" },
1236 { 0x16, "u" },
1237 { 0x17, "i" },
1238 { 0x18, "o" },
1239 { 0x19, "p" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001240 { 0x1a, "bracket_left" },
1241 { 0x1b, "bracket_right" },
bellarda3a91a32004-06-04 11:06:21 +00001242 { 0x1c, "ret" },
1243
1244 { 0x1e, "a" },
1245 { 0x1f, "s" },
1246 { 0x20, "d" },
1247 { 0x21, "f" },
1248 { 0x22, "g" },
1249 { 0x23, "h" },
1250 { 0x24, "j" },
1251 { 0x25, "k" },
1252 { 0x26, "l" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001253 { 0x27, "semicolon" },
1254 { 0x28, "apostrophe" },
1255 { 0x29, "grave_accent" },
bellarda3a91a32004-06-04 11:06:21 +00001256
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001257 { 0x2b, "backslash" },
bellarda3a91a32004-06-04 11:06:21 +00001258 { 0x2c, "z" },
1259 { 0x2d, "x" },
1260 { 0x2e, "c" },
1261 { 0x2f, "v" },
1262 { 0x30, "b" },
1263 { 0x31, "n" },
1264 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +00001265 { 0x33, "comma" },
1266 { 0x34, "dot" },
1267 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +00001268
balrog4d3b6f62008-02-10 16:33:14 +00001269 { 0x37, "asterisk" },
1270
bellarda3a91a32004-06-04 11:06:21 +00001271 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +00001272 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001273 { 0x3b, "f1" },
1274 { 0x3c, "f2" },
1275 { 0x3d, "f3" },
1276 { 0x3e, "f4" },
1277 { 0x3f, "f5" },
1278 { 0x40, "f6" },
1279 { 0x41, "f7" },
1280 { 0x42, "f8" },
1281 { 0x43, "f9" },
1282 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +00001283 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001284 { 0x46, "scroll_lock" },
1285
bellard64866c32006-05-07 18:03:31 +00001286 { 0xb5, "kp_divide" },
1287 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +00001288 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +00001289 { 0x4e, "kp_add" },
1290 { 0x9c, "kp_enter" },
1291 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +00001292 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +00001293
1294 { 0x52, "kp_0" },
1295 { 0x4f, "kp_1" },
1296 { 0x50, "kp_2" },
1297 { 0x51, "kp_3" },
1298 { 0x4b, "kp_4" },
1299 { 0x4c, "kp_5" },
1300 { 0x4d, "kp_6" },
1301 { 0x47, "kp_7" },
1302 { 0x48, "kp_8" },
1303 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +00001304
bellarda3a91a32004-06-04 11:06:21 +00001305 { 0x56, "<" },
1306
1307 { 0x57, "f11" },
1308 { 0x58, "f12" },
1309
1310 { 0xb7, "print" },
1311
1312 { 0xc7, "home" },
1313 { 0xc9, "pgup" },
1314 { 0xd1, "pgdn" },
1315 { 0xcf, "end" },
1316
1317 { 0xcb, "left" },
1318 { 0xc8, "up" },
1319 { 0xd0, "down" },
1320 { 0xcd, "right" },
1321
1322 { 0xd2, "insert" },
1323 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001324#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1325 { 0xf0, "stop" },
1326 { 0xf1, "again" },
1327 { 0xf2, "props" },
1328 { 0xf3, "undo" },
1329 { 0xf4, "front" },
1330 { 0xf5, "copy" },
1331 { 0xf6, "open" },
1332 { 0xf7, "paste" },
1333 { 0xf8, "find" },
1334 { 0xf9, "cut" },
1335 { 0xfa, "lf" },
1336 { 0xfb, "help" },
1337 { 0xfc, "meta_l" },
1338 { 0xfd, "meta_r" },
1339 { 0xfe, "compose" },
1340#endif
bellarda3a91a32004-06-04 11:06:21 +00001341 { 0, NULL },
1342};
1343
1344static int get_keycode(const char *key)
1345{
1346 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001347 char *endp;
1348 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001349
1350 for(p = key_defs; p->name != NULL; p++) {
1351 if (!strcmp(key, p->name))
1352 return p->keycode;
1353 }
bellard64866c32006-05-07 18:03:31 +00001354 if (strstart(key, "0x", NULL)) {
1355 ret = strtoul(key, &endp, 0);
1356 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1357 return ret;
1358 }
bellarda3a91a32004-06-04 11:06:21 +00001359 return -1;
1360}
1361
balrogc8256f92008-06-08 22:45:01 +00001362#define MAX_KEYCODES 16
1363static uint8_t keycodes[MAX_KEYCODES];
1364static int nb_pending_keycodes;
1365static QEMUTimer *key_timer;
1366
1367static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001368{
balrogc8256f92008-06-08 22:45:01 +00001369 int keycode;
1370
1371 while (nb_pending_keycodes > 0) {
1372 nb_pending_keycodes--;
1373 keycode = keycodes[nb_pending_keycodes];
1374 if (keycode & 0x80)
1375 kbd_put_keycode(0xe0);
1376 kbd_put_keycode(keycode | 0x80);
1377 }
1378}
1379
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001380static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001381{
balrog3401c0d2008-06-04 10:05:59 +00001382 char keyname_buf[16];
1383 char *separator;
1384 int keyname_len, keycode, i;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001385 const char *string = qdict_get_str(qdict, "string");
1386 int has_hold_time = qdict_haskey(qdict, "hold_time");
1387 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
ths3b46e622007-09-17 08:09:54 +00001388
balrogc8256f92008-06-08 22:45:01 +00001389 if (nb_pending_keycodes > 0) {
1390 qemu_del_timer(key_timer);
1391 release_keys(NULL);
1392 }
1393 if (!has_hold_time)
1394 hold_time = 100;
1395 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001396 while (1) {
1397 separator = strchr(string, '-');
1398 keyname_len = separator ? separator - string : strlen(string);
1399 if (keyname_len > 0) {
1400 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1401 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001402 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001403 return;
bellarda3a91a32004-06-04 11:06:21 +00001404 }
balrogc8256f92008-06-08 22:45:01 +00001405 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001406 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001407 return;
1408 }
1409 keyname_buf[keyname_len] = 0;
1410 keycode = get_keycode(keyname_buf);
1411 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001412 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001413 return;
1414 }
balrogc8256f92008-06-08 22:45:01 +00001415 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001416 }
balrog3401c0d2008-06-04 10:05:59 +00001417 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001418 break;
balrog3401c0d2008-06-04 10:05:59 +00001419 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001420 }
balrogc8256f92008-06-08 22:45:01 +00001421 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001422 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001423 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001424 keycode = keycodes[i];
1425 if (keycode & 0x80)
1426 kbd_put_keycode(0xe0);
1427 kbd_put_keycode(keycode & 0x7f);
1428 }
balrogc8256f92008-06-08 22:45:01 +00001429 /* delayed key up events */
Paolo Bonzini74475452011-03-11 16:47:48 +01001430 qemu_mod_timer(key_timer, qemu_get_clock_ns(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001431 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001432}
1433
bellard13224a82006-07-14 22:03:35 +00001434static int mouse_button_state;
1435
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001436static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001437{
1438 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001439 const char *dx_str = qdict_get_str(qdict, "dx_str");
1440 const char *dy_str = qdict_get_str(qdict, "dy_str");
1441 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001442 dx = strtol(dx_str, NULL, 0);
1443 dy = strtol(dy_str, NULL, 0);
1444 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001445 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001446 dz = strtol(dz_str, NULL, 0);
1447 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1448}
1449
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001450static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001451{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001452 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001453 mouse_button_state = button_state;
1454 kbd_mouse_event(0, 0, 0, mouse_button_state);
1455}
1456
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001457static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001458{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001459 int size = qdict_get_int(qdict, "size");
1460 int addr = qdict_get_int(qdict, "addr");
1461 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001462 uint32_t val;
1463 int suffix;
1464
1465 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001466 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001467 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001468 addr++;
1469 }
1470 addr &= 0xffff;
1471
1472 switch(size) {
1473 default:
1474 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001475 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001476 suffix = 'b';
1477 break;
1478 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001479 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001480 suffix = 'w';
1481 break;
1482 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001483 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001484 suffix = 'l';
1485 break;
1486 }
aliguori376253e2009-03-05 23:01:23 +00001487 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1488 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001489}
bellarda3a91a32004-06-04 11:06:21 +00001490
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001491static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001492{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001493 int size = qdict_get_int(qdict, "size");
1494 int addr = qdict_get_int(qdict, "addr");
1495 int val = qdict_get_int(qdict, "val");
1496
Jan Kiszkaf1147842009-07-14 10:20:11 +02001497 addr &= IOPORTS_MASK;
1498
1499 switch (size) {
1500 default:
1501 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001502 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001503 break;
1504 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001505 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001506 break;
1507 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001508 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001509 break;
1510 }
1511}
1512
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001513static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001514{
1515 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001516 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001517
Jan Kiszka76e30d02009-07-02 00:19:02 +02001518 res = qemu_boot_set(bootdevice);
1519 if (res == 0) {
1520 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1521 } else if (res > 0) {
1522 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001523 } else {
aliguori376253e2009-03-05 23:01:23 +00001524 monitor_printf(mon, "no function defined to set boot device list for "
1525 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001526 }
1527}
1528
bellardb86bda52004-09-18 19:32:46 +00001529#if defined(TARGET_I386)
Blue Swirld65aaf32010-12-11 18:56:24 +00001530static void print_pte(Monitor *mon, target_phys_addr_t addr,
1531 target_phys_addr_t pte,
1532 target_phys_addr_t mask)
bellardb86bda52004-09-18 19:32:46 +00001533{
Blue Swirld65aaf32010-12-11 18:56:24 +00001534#ifdef TARGET_X86_64
1535 if (addr & (1ULL << 47)) {
1536 addr |= -1LL << 48;
1537 }
1538#endif
1539 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1540 " %c%c%c%c%c%c%c%c%c\n",
aliguori376253e2009-03-05 23:01:23 +00001541 addr,
1542 pte & mask,
Blue Swirld65aaf32010-12-11 18:56:24 +00001543 pte & PG_NX_MASK ? 'X' : '-',
aliguori376253e2009-03-05 23:01:23 +00001544 pte & PG_GLOBAL_MASK ? 'G' : '-',
1545 pte & PG_PSE_MASK ? 'P' : '-',
1546 pte & PG_DIRTY_MASK ? 'D' : '-',
1547 pte & PG_ACCESSED_MASK ? 'A' : '-',
1548 pte & PG_PCD_MASK ? 'C' : '-',
1549 pte & PG_PWT_MASK ? 'T' : '-',
1550 pte & PG_USER_MASK ? 'U' : '-',
1551 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001552}
1553
Andreas Färber9349b4f2012-03-14 01:38:32 +01001554static void tlb_info_32(Monitor *mon, CPUArchState *env)
bellardb86bda52004-09-18 19:32:46 +00001555{
Austin Clements94ac5cd2011-08-21 14:49:45 -04001556 unsigned int l1, l2;
bellardb86bda52004-09-18 19:32:46 +00001557 uint32_t pgd, pde, pte;
1558
bellardb86bda52004-09-18 19:32:46 +00001559 pgd = env->cr[3] & ~0xfff;
1560 for(l1 = 0; l1 < 1024; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001561 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
bellardb86bda52004-09-18 19:32:46 +00001562 pde = le32_to_cpu(pde);
1563 if (pde & PG_PRESENT_MASK) {
1564 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
Blue Swirld65aaf32010-12-11 18:56:24 +00001565 /* 4M pages */
1566 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
bellardb86bda52004-09-18 19:32:46 +00001567 } else {
1568 for(l2 = 0; l2 < 1024; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001569 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
bellardb86bda52004-09-18 19:32:46 +00001570 pte = le32_to_cpu(pte);
1571 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001572 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001573 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001574 ~0xfff);
1575 }
1576 }
1577 }
1578 }
1579 }
1580}
1581
Andreas Färber9349b4f2012-03-14 01:38:32 +01001582static void tlb_info_pae32(Monitor *mon, CPUArchState *env)
Blue Swirld65aaf32010-12-11 18:56:24 +00001583{
Austin Clements94ac5cd2011-08-21 14:49:45 -04001584 unsigned int l1, l2, l3;
Blue Swirld65aaf32010-12-11 18:56:24 +00001585 uint64_t pdpe, pde, pte;
1586 uint64_t pdp_addr, pd_addr, pt_addr;
1587
1588 pdp_addr = env->cr[3] & ~0x1f;
1589 for (l1 = 0; l1 < 4; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001590 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001591 pdpe = le64_to_cpu(pdpe);
1592 if (pdpe & PG_PRESENT_MASK) {
1593 pd_addr = pdpe & 0x3fffffffff000ULL;
1594 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001595 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001596 pde = le64_to_cpu(pde);
1597 if (pde & PG_PRESENT_MASK) {
1598 if (pde & PG_PSE_MASK) {
1599 /* 2M pages with PAE, CR4.PSE is ignored */
1600 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
1601 ~((target_phys_addr_t)(1 << 20) - 1));
1602 } else {
1603 pt_addr = pde & 0x3fffffffff000ULL;
1604 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001605 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001606 pte = le64_to_cpu(pte);
1607 if (pte & PG_PRESENT_MASK) {
1608 print_pte(mon, (l1 << 30 ) + (l2 << 21)
1609 + (l3 << 12),
1610 pte & ~PG_PSE_MASK,
1611 ~(target_phys_addr_t)0xfff);
1612 }
1613 }
1614 }
1615 }
1616 }
1617 }
1618 }
1619}
1620
1621#ifdef TARGET_X86_64
Andreas Färber9349b4f2012-03-14 01:38:32 +01001622static void tlb_info_64(Monitor *mon, CPUArchState *env)
Blue Swirld65aaf32010-12-11 18:56:24 +00001623{
1624 uint64_t l1, l2, l3, l4;
1625 uint64_t pml4e, pdpe, pde, pte;
1626 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
1627
1628 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1629 for (l1 = 0; l1 < 512; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001630 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001631 pml4e = le64_to_cpu(pml4e);
1632 if (pml4e & PG_PRESENT_MASK) {
1633 pdp_addr = pml4e & 0x3fffffffff000ULL;
1634 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001635 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001636 pdpe = le64_to_cpu(pdpe);
1637 if (pdpe & PG_PRESENT_MASK) {
1638 if (pdpe & PG_PSE_MASK) {
1639 /* 1G pages, CR4.PSE is ignored */
1640 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
1641 0x3ffffc0000000ULL);
1642 } else {
1643 pd_addr = pdpe & 0x3fffffffff000ULL;
1644 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001645 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001646 pde = le64_to_cpu(pde);
1647 if (pde & PG_PRESENT_MASK) {
1648 if (pde & PG_PSE_MASK) {
1649 /* 2M pages, CR4.PSE is ignored */
1650 print_pte(mon, (l1 << 39) + (l2 << 30) +
1651 (l3 << 21), pde,
1652 0x3ffffffe00000ULL);
1653 } else {
1654 pt_addr = pde & 0x3fffffffff000ULL;
1655 for (l4 = 0; l4 < 512; l4++) {
1656 cpu_physical_memory_read(pt_addr
1657 + l4 * 8,
Stefan Weilb8b79322011-03-26 21:11:05 +01001658 &pte, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001659 pte = le64_to_cpu(pte);
1660 if (pte & PG_PRESENT_MASK) {
1661 print_pte(mon, (l1 << 39) +
1662 (l2 << 30) +
1663 (l3 << 21) + (l4 << 12),
1664 pte & ~PG_PSE_MASK,
1665 0x3fffffffff000ULL);
1666 }
1667 }
1668 }
1669 }
1670 }
1671 }
1672 }
1673 }
1674 }
1675 }
1676}
1677#endif
1678
1679static void tlb_info(Monitor *mon)
1680{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001681 CPUArchState *env;
Blue Swirld65aaf32010-12-11 18:56:24 +00001682
1683 env = mon_get_cpu();
1684
1685 if (!(env->cr[0] & CR0_PG_MASK)) {
1686 monitor_printf(mon, "PG disabled\n");
1687 return;
1688 }
1689 if (env->cr[4] & CR4_PAE_MASK) {
1690#ifdef TARGET_X86_64
1691 if (env->hflags & HF_LMA_MASK) {
1692 tlb_info_64(mon, env);
1693 } else
1694#endif
1695 {
1696 tlb_info_pae32(mon, env);
1697 }
1698 } else {
1699 tlb_info_32(mon, env);
1700 }
1701}
1702
Blue Swirl1b3cba62010-12-11 18:56:27 +00001703static void mem_print(Monitor *mon, target_phys_addr_t *pstart,
1704 int *plast_prot,
1705 target_phys_addr_t end, int prot)
bellardb86bda52004-09-18 19:32:46 +00001706{
bellard9746b152004-11-11 18:30:24 +00001707 int prot1;
1708 prot1 = *plast_prot;
1709 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001710 if (*pstart != -1) {
Blue Swirl1b3cba62010-12-11 18:56:27 +00001711 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
1712 TARGET_FMT_plx " %c%c%c\n",
aliguori376253e2009-03-05 23:01:23 +00001713 *pstart, end, end - *pstart,
1714 prot1 & PG_USER_MASK ? 'u' : '-',
1715 'r',
1716 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001717 }
1718 if (prot != 0)
1719 *pstart = end;
1720 else
1721 *pstart = -1;
1722 *plast_prot = prot;
1723 }
1724}
1725
Andreas Färber9349b4f2012-03-14 01:38:32 +01001726static void mem_info_32(Monitor *mon, CPUArchState *env)
bellardb86bda52004-09-18 19:32:46 +00001727{
Austin Clementsb49ca722011-08-14 23:19:21 -04001728 unsigned int l1, l2;
1729 int prot, last_prot;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001730 uint32_t pgd, pde, pte;
1731 target_phys_addr_t start, end;
bellardb86bda52004-09-18 19:32:46 +00001732
bellardb86bda52004-09-18 19:32:46 +00001733 pgd = env->cr[3] & ~0xfff;
1734 last_prot = 0;
1735 start = -1;
1736 for(l1 = 0; l1 < 1024; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001737 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
bellardb86bda52004-09-18 19:32:46 +00001738 pde = le32_to_cpu(pde);
1739 end = l1 << 22;
1740 if (pde & PG_PRESENT_MASK) {
1741 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1742 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001743 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001744 } else {
1745 for(l2 = 0; l2 < 1024; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001746 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
bellardb86bda52004-09-18 19:32:46 +00001747 pte = le32_to_cpu(pte);
1748 end = (l1 << 22) + (l2 << 12);
1749 if (pte & PG_PRESENT_MASK) {
Austin Clementsc76c8412011-08-14 23:22:28 -04001750 prot = pte & pde &
1751 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
bellardb86bda52004-09-18 19:32:46 +00001752 } else {
1753 prot = 0;
1754 }
aliguori376253e2009-03-05 23:01:23 +00001755 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001756 }
1757 }
1758 } else {
1759 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001760 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001761 }
1762 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04001763 /* Flush last range */
1764 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
bellardb86bda52004-09-18 19:32:46 +00001765}
Blue Swirl1b3cba62010-12-11 18:56:27 +00001766
Andreas Färber9349b4f2012-03-14 01:38:32 +01001767static void mem_info_pae32(Monitor *mon, CPUArchState *env)
Blue Swirl1b3cba62010-12-11 18:56:27 +00001768{
Austin Clementsb49ca722011-08-14 23:19:21 -04001769 unsigned int l1, l2, l3;
1770 int prot, last_prot;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001771 uint64_t pdpe, pde, pte;
1772 uint64_t pdp_addr, pd_addr, pt_addr;
1773 target_phys_addr_t start, end;
1774
1775 pdp_addr = env->cr[3] & ~0x1f;
1776 last_prot = 0;
1777 start = -1;
1778 for (l1 = 0; l1 < 4; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001779 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001780 pdpe = le64_to_cpu(pdpe);
1781 end = l1 << 30;
1782 if (pdpe & PG_PRESENT_MASK) {
1783 pd_addr = pdpe & 0x3fffffffff000ULL;
1784 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001785 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001786 pde = le64_to_cpu(pde);
1787 end = (l1 << 30) + (l2 << 21);
1788 if (pde & PG_PRESENT_MASK) {
1789 if (pde & PG_PSE_MASK) {
1790 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1791 PG_PRESENT_MASK);
1792 mem_print(mon, &start, &last_prot, end, prot);
1793 } else {
1794 pt_addr = pde & 0x3fffffffff000ULL;
1795 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001796 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001797 pte = le64_to_cpu(pte);
1798 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
1799 if (pte & PG_PRESENT_MASK) {
Austin Clementsc76c8412011-08-14 23:22:28 -04001800 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
1801 PG_PRESENT_MASK);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001802 } else {
1803 prot = 0;
1804 }
1805 mem_print(mon, &start, &last_prot, end, prot);
1806 }
1807 }
1808 } else {
1809 prot = 0;
1810 mem_print(mon, &start, &last_prot, end, prot);
1811 }
1812 }
1813 } else {
1814 prot = 0;
1815 mem_print(mon, &start, &last_prot, end, prot);
1816 }
1817 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04001818 /* Flush last range */
1819 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001820}
1821
1822
1823#ifdef TARGET_X86_64
Andreas Färber9349b4f2012-03-14 01:38:32 +01001824static void mem_info_64(Monitor *mon, CPUArchState *env)
Blue Swirl1b3cba62010-12-11 18:56:27 +00001825{
1826 int prot, last_prot;
1827 uint64_t l1, l2, l3, l4;
1828 uint64_t pml4e, pdpe, pde, pte;
1829 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
1830
1831 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1832 last_prot = 0;
1833 start = -1;
1834 for (l1 = 0; l1 < 512; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001835 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001836 pml4e = le64_to_cpu(pml4e);
1837 end = l1 << 39;
1838 if (pml4e & PG_PRESENT_MASK) {
1839 pdp_addr = pml4e & 0x3fffffffff000ULL;
1840 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001841 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001842 pdpe = le64_to_cpu(pdpe);
1843 end = (l1 << 39) + (l2 << 30);
1844 if (pdpe & PG_PRESENT_MASK) {
1845 if (pdpe & PG_PSE_MASK) {
Blue Swirl2d5b5072011-01-15 08:31:00 +00001846 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
1847 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04001848 prot &= pml4e;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001849 mem_print(mon, &start, &last_prot, end, prot);
1850 } else {
1851 pd_addr = pdpe & 0x3fffffffff000ULL;
1852 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001853 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001854 pde = le64_to_cpu(pde);
1855 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
1856 if (pde & PG_PRESENT_MASK) {
1857 if (pde & PG_PSE_MASK) {
1858 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1859 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04001860 prot &= pml4e & pdpe;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001861 mem_print(mon, &start, &last_prot, end, prot);
1862 } else {
1863 pt_addr = pde & 0x3fffffffff000ULL;
1864 for (l4 = 0; l4 < 512; l4++) {
1865 cpu_physical_memory_read(pt_addr
1866 + l4 * 8,
Stefan Weilb8b79322011-03-26 21:11:05 +01001867 &pte, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001868 pte = le64_to_cpu(pte);
1869 end = (l1 << 39) + (l2 << 30) +
1870 (l3 << 21) + (l4 << 12);
1871 if (pte & PG_PRESENT_MASK) {
1872 prot = pte & (PG_USER_MASK | PG_RW_MASK |
1873 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04001874 prot &= pml4e & pdpe & pde;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001875 } else {
1876 prot = 0;
1877 }
1878 mem_print(mon, &start, &last_prot, end, prot);
1879 }
1880 }
1881 } else {
1882 prot = 0;
1883 mem_print(mon, &start, &last_prot, end, prot);
1884 }
1885 }
1886 }
1887 } else {
1888 prot = 0;
1889 mem_print(mon, &start, &last_prot, end, prot);
1890 }
1891 }
1892 } else {
1893 prot = 0;
1894 mem_print(mon, &start, &last_prot, end, prot);
1895 }
1896 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04001897 /* Flush last range */
1898 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 48, 0);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001899}
1900#endif
1901
1902static void mem_info(Monitor *mon)
1903{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001904 CPUArchState *env;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001905
1906 env = mon_get_cpu();
1907
1908 if (!(env->cr[0] & CR0_PG_MASK)) {
1909 monitor_printf(mon, "PG disabled\n");
1910 return;
1911 }
1912 if (env->cr[4] & CR4_PAE_MASK) {
1913#ifdef TARGET_X86_64
1914 if (env->hflags & HF_LMA_MASK) {
1915 mem_info_64(mon, env);
1916 } else
1917#endif
1918 {
1919 mem_info_pae32(mon, env);
1920 }
1921 } else {
1922 mem_info_32(mon, env);
1923 }
1924}
bellardb86bda52004-09-18 19:32:46 +00001925#endif
1926
aurel327c664e22009-03-03 06:12:22 +00001927#if defined(TARGET_SH4)
1928
aliguori376253e2009-03-05 23:01:23 +00001929static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001930{
aliguori376253e2009-03-05 23:01:23 +00001931 monitor_printf(mon, " tlb%i:\t"
1932 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1933 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1934 "dirty=%hhu writethrough=%hhu\n",
1935 idx,
1936 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1937 tlb->v, tlb->sh, tlb->c, tlb->pr,
1938 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001939}
1940
aliguori376253e2009-03-05 23:01:23 +00001941static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00001942{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001943 CPUArchState *env = mon_get_cpu();
aurel327c664e22009-03-03 06:12:22 +00001944 int i;
1945
aliguori376253e2009-03-05 23:01:23 +00001946 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001947 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001948 print_tlb (mon, i, &env->itlb[i]);
1949 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001950 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001951 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00001952}
1953
1954#endif
1955
Max Filippov692f7372012-01-07 20:02:40 +04001956#if defined(TARGET_SPARC) || defined(TARGET_PPC) || defined(TARGET_XTENSA)
Blue Swirld41160a2010-12-19 13:42:56 +00001957static void tlb_info(Monitor *mon)
1958{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001959 CPUArchState *env1 = mon_get_cpu();
Blue Swirld41160a2010-12-19 13:42:56 +00001960
1961 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
1962}
1963#endif
1964
Blue Swirl314e2982011-09-11 20:22:05 +00001965static void do_info_mtree(Monitor *mon)
1966{
1967 mtree_info((fprintf_function)monitor_printf, mon);
1968}
1969
aliguori030ea372009-04-21 22:30:47 +00001970static void do_info_numa(Monitor *mon)
1971{
aliguorib28b6232009-04-22 20:20:29 +00001972 int i;
Andreas Färber9349b4f2012-03-14 01:38:32 +01001973 CPUArchState *env;
aliguori030ea372009-04-21 22:30:47 +00001974
1975 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1976 for (i = 0; i < nb_numa_nodes; i++) {
1977 monitor_printf(mon, "node %d cpus:", i);
1978 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1979 if (env->numa_node == i) {
1980 monitor_printf(mon, " %d", env->cpu_index);
1981 }
1982 }
1983 monitor_printf(mon, "\n");
1984 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1985 node_mem[i] >> 20);
1986 }
1987}
1988
bellard5f1ce942006-02-08 22:40:15 +00001989#ifdef CONFIG_PROFILER
1990
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02001991int64_t qemu_time;
1992int64_t dev_time;
1993
aliguori376253e2009-03-05 23:01:23 +00001994static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001995{
1996 int64_t total;
1997 total = qemu_time;
1998 if (total == 0)
1999 total = 1;
aliguori376253e2009-03-05 23:01:23 +00002000 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002001 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00002002 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002003 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00002004 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002005 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002006}
2007#else
aliguori376253e2009-03-05 23:01:23 +00002008static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002009{
aliguori376253e2009-03-05 23:01:23 +00002010 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00002011}
2012#endif
2013
bellardec36b692006-07-16 18:57:03 +00002014/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002015static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00002016
aliguori376253e2009-03-05 23:01:23 +00002017static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00002018{
2019 int i;
2020 CaptureState *s;
2021
2022 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00002023 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00002024 s->ops.info (s->opaque);
2025 }
2026}
2027
Blue Swirl23130862009-06-06 08:22:04 +00002028#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002029static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002030{
2031 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002032 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00002033 CaptureState *s;
2034
2035 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2036 if (i == n) {
2037 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002038 QLIST_REMOVE (s, entries);
Anthony Liguori7267c092011-08-20 22:09:37 -05002039 g_free (s);
bellardec36b692006-07-16 18:57:03 +00002040 return;
2041 }
2042 }
2043}
2044
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002045static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002046{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002047 const char *path = qdict_get_str(qdict, "path");
2048 int has_freq = qdict_haskey(qdict, "freq");
2049 int freq = qdict_get_try_int(qdict, "freq", -1);
2050 int has_bits = qdict_haskey(qdict, "bits");
2051 int bits = qdict_get_try_int(qdict, "bits", -1);
2052 int has_channels = qdict_haskey(qdict, "nchannels");
2053 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00002054 CaptureState *s;
2055
Anthony Liguori7267c092011-08-20 22:09:37 -05002056 s = g_malloc0 (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002057
2058 freq = has_freq ? freq : 44100;
2059 bits = has_bits ? bits : 16;
2060 nchannels = has_channels ? nchannels : 2;
2061
2062 if (wav_start_capture (s, path, freq, bits, nchannels)) {
Isaku Yamahatad00b2612011-01-21 19:53:55 +09002063 monitor_printf(mon, "Failed to add wave capture\n");
Anthony Liguori7267c092011-08-20 22:09:37 -05002064 g_free (s);
Isaku Yamahatad00b2612011-01-21 19:53:55 +09002065 return;
bellardec36b692006-07-16 18:57:03 +00002066 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002067 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002068}
2069#endif
2070
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002071static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002072{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002073 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002074
aliguori76655d62009-03-06 20:27:37 +00002075 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002076 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002077 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002078 return acl;
2079}
aliguori76655d62009-03-06 20:27:37 +00002080
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002081static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002082{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002083 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002084 qemu_acl *acl = find_acl(mon, aclname);
2085 qemu_acl_entry *entry;
2086 int i = 0;
2087
2088 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002089 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002090 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002091 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002092 i++;
2093 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002094 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002095 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002096 }
2097}
2098
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002099static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002100{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002101 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002102 qemu_acl *acl = find_acl(mon, aclname);
2103
2104 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002105 qemu_acl_reset(acl);
2106 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002107 }
2108}
aliguori76655d62009-03-06 20:27:37 +00002109
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002110static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002111{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002112 const char *aclname = qdict_get_str(qdict, "aclname");
2113 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002114 qemu_acl *acl = find_acl(mon, aclname);
2115
2116 if (acl) {
2117 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002118 acl->defaultDeny = 0;
2119 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002120 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002121 acl->defaultDeny = 1;
2122 monitor_printf(mon, "acl: policy set to 'deny'\n");
2123 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002124 monitor_printf(mon, "acl: unknown policy '%s', "
2125 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002126 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002127 }
2128}
aliguori76655d62009-03-06 20:27:37 +00002129
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002130static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002131{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002132 const char *aclname = qdict_get_str(qdict, "aclname");
2133 const char *match = qdict_get_str(qdict, "match");
2134 const char *policy = qdict_get_str(qdict, "policy");
2135 int has_index = qdict_haskey(qdict, "index");
2136 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002137 qemu_acl *acl = find_acl(mon, aclname);
2138 int deny, ret;
2139
2140 if (acl) {
2141 if (strcmp(policy, "allow") == 0) {
2142 deny = 0;
2143 } else if (strcmp(policy, "deny") == 0) {
2144 deny = 1;
2145 } else {
2146 monitor_printf(mon, "acl: unknown policy '%s', "
2147 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002148 return;
2149 }
aliguori28a76be2009-03-06 20:27:40 +00002150 if (has_index)
2151 ret = qemu_acl_insert(acl, deny, match, index);
2152 else
2153 ret = qemu_acl_append(acl, deny, match);
2154 if (ret < 0)
2155 monitor_printf(mon, "acl: unable to add acl entry\n");
2156 else
2157 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002158 }
2159}
aliguori76655d62009-03-06 20:27:37 +00002160
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002161static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002162{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002163 const char *aclname = qdict_get_str(qdict, "aclname");
2164 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002165 qemu_acl *acl = find_acl(mon, aclname);
2166 int ret;
aliguori76655d62009-03-06 20:27:37 +00002167
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002168 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002169 ret = qemu_acl_remove(acl, match);
2170 if (ret < 0)
2171 monitor_printf(mon, "acl: no matching acl entry\n");
2172 else
2173 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002174 }
2175}
2176
Huang Ying79c4f6b2009-06-23 10:05:14 +08002177#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002178static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002179{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002180 CPUArchState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002181 int cpu_index = qdict_get_int(qdict, "cpu_index");
2182 int bank = qdict_get_int(qdict, "bank");
2183 uint64_t status = qdict_get_int(qdict, "status");
2184 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2185 uint64_t addr = qdict_get_int(qdict, "addr");
2186 uint64_t misc = qdict_get_int(qdict, "misc");
Jan Kiszka747461c2011-03-02 08:56:10 +01002187 int flags = MCE_INJECT_UNCOND_AO;
Huang Ying79c4f6b2009-06-23 10:05:14 +08002188
Jan Kiszka747461c2011-03-02 08:56:10 +01002189 if (qdict_get_try_bool(qdict, "broadcast", 0)) {
2190 flags |= MCE_INJECT_BROADCAST;
2191 }
Jin Dongming31ce5e02010-12-10 17:21:02 +09002192 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu) {
Jan Kiszka316378e2011-03-02 08:56:09 +01002193 if (cenv->cpu_index == cpu_index) {
2194 cpu_x86_inject_mce(mon, cenv, bank, status, mcg_status, addr, misc,
Jan Kiszka747461c2011-03-02 08:56:10 +01002195 flags);
Huang Ying79c4f6b2009-06-23 10:05:14 +08002196 break;
2197 }
Jin Dongming31ce5e02010-12-10 17:21:02 +09002198 }
Huang Ying79c4f6b2009-06-23 10:05:14 +08002199}
2200#endif
2201
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002202static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002203{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002204 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002205 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002206 int fd;
2207
Anthony Liguori74c0d6f2011-08-15 11:17:39 -05002208 fd = qemu_chr_fe_get_msgfd(mon->chr);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002209 if (fd == -1) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002210 qerror_report(QERR_FD_NOT_SUPPLIED);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002211 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002212 }
2213
2214 if (qemu_isdigit(fdname[0])) {
Markus Armbrustere17ba872010-03-25 17:22:36 +01002215 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2216 "a name not starting with a digit");
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002217 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002218 }
2219
Blue Swirl72cf2d42009-09-12 07:36:22 +00002220 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002221 if (strcmp(monfd->name, fdname) != 0) {
2222 continue;
2223 }
2224
2225 close(monfd->fd);
2226 monfd->fd = fd;
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002227 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002228 }
2229
Anthony Liguori7267c092011-08-20 22:09:37 -05002230 monfd = g_malloc0(sizeof(mon_fd_t));
2231 monfd->name = g_strdup(fdname);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002232 monfd->fd = fd;
2233
Blue Swirl72cf2d42009-09-12 07:36:22 +00002234 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002235 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002236}
2237
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002238static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002239{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002240 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002241 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002242
Blue Swirl72cf2d42009-09-12 07:36:22 +00002243 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002244 if (strcmp(monfd->name, fdname) != 0) {
2245 continue;
2246 }
2247
Blue Swirl72cf2d42009-09-12 07:36:22 +00002248 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002249 close(monfd->fd);
Anthony Liguori7267c092011-08-20 22:09:37 -05002250 g_free(monfd->name);
2251 g_free(monfd);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002252 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002253 }
2254
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002255 qerror_report(QERR_FD_NOT_FOUND, fdname);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002256 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002257}
2258
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002259static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002260{
Luiz Capitulino13548692011-07-29 15:36:43 -03002261 int saved_vm_running = runstate_is_running();
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002262 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002263
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002264 vm_stop(RUN_STATE_RESTORE_VM);
Juan Quintelac8d41b22009-08-20 19:42:21 +02002265
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002266 if (load_vmstate(name) == 0 && saved_vm_running) {
Juan Quintelac8d41b22009-08-20 19:42:21 +02002267 vm_start();
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002268 }
Juan Quintelac8d41b22009-08-20 19:42:21 +02002269}
2270
Mark McLoughlin7768e042009-07-22 09:11:41 +01002271int monitor_get_fd(Monitor *mon, const char *fdname)
2272{
Anthony Liguoric227f092009-10-01 16:12:16 -05002273 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002274
Blue Swirl72cf2d42009-09-12 07:36:22 +00002275 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002276 int fd;
2277
2278 if (strcmp(monfd->name, fdname) != 0) {
2279 continue;
2280 }
2281
2282 fd = monfd->fd;
2283
2284 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002285 QLIST_REMOVE(monfd, next);
Anthony Liguori7267c092011-08-20 22:09:37 -05002286 g_free(monfd->name);
2287 g_free(monfd);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002288
2289 return fd;
2290 }
2291
2292 return -1;
2293}
2294
Wayne Xia816f8922011-10-12 11:32:41 +08002295/* mon_cmds and info_cmds would be sorted at runtime */
2296static mon_cmd_t mon_cmds[] = {
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002297#include "hmp-commands.h"
ths5fafdf22007-09-16 21:08:06 +00002298 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002299};
2300
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002301/* Please update hmp-commands.hx when adding or changing commands */
Wayne Xia816f8922011-10-12 11:32:41 +08002302static mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002303 {
2304 .name = "version",
2305 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002306 .params = "",
2307 .help = "show the version of QEMU",
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03002308 .mhandler.info = hmp_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002309 },
2310 {
2311 .name = "network",
2312 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002313 .params = "",
2314 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002315 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002316 },
2317 {
2318 .name = "chardev",
2319 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002320 .params = "",
2321 .help = "show the character devices",
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03002322 .mhandler.info = hmp_info_chardev,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002323 },
2324 {
2325 .name = "block",
2326 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002327 .params = "",
2328 .help = "show the block devices",
Luiz Capitulinob2023812011-09-21 17:16:47 -03002329 .mhandler.info = hmp_info_block,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002330 },
2331 {
2332 .name = "blockstats",
2333 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002334 .params = "",
2335 .help = "show block device statistics",
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002336 .mhandler.info = hmp_info_blockstats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002337 },
2338 {
Stefan Hajnoczifb5458c2012-01-18 14:40:49 +00002339 .name = "block-jobs",
2340 .args_type = "",
2341 .params = "",
2342 .help = "show progress of ongoing block device operations",
2343 .mhandler.info = hmp_info_block_jobs,
2344 },
2345 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002346 .name = "registers",
2347 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002348 .params = "",
2349 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002350 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002351 },
2352 {
2353 .name = "cpus",
2354 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002355 .params = "",
2356 .help = "show infos for each CPU",
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03002357 .mhandler.info = hmp_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002358 },
2359 {
2360 .name = "history",
2361 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002362 .params = "",
2363 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002364 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002365 },
Jan Kiszka661f1922011-10-16 11:53:13 +02002366#if defined(TARGET_I386) || defined(TARGET_PPC) || defined(TARGET_MIPS) || \
2367 defined(TARGET_LM32) || (defined(TARGET_SPARC) && !defined(TARGET_SPARC64))
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002368 {
2369 .name = "irq",
2370 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002371 .params = "",
2372 .help = "show the interrupts statistics (if available)",
Jan Kiszka661f1922011-10-16 11:53:13 +02002373#ifdef TARGET_SPARC
2374 .mhandler.info = sun4m_irq_info,
2375#elif defined(TARGET_LM32)
2376 .mhandler.info = lm32_irq_info,
2377#else
Luiz Capitulino910df892009-10-07 13:41:51 -03002378 .mhandler.info = irq_info,
Jan Kiszka661f1922011-10-16 11:53:13 +02002379#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002380 },
2381 {
2382 .name = "pic",
2383 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002384 .params = "",
2385 .help = "show i8259 (PIC) state",
Jan Kiszka661f1922011-10-16 11:53:13 +02002386#ifdef TARGET_SPARC
2387 .mhandler.info = sun4m_pic_info,
2388#elif defined(TARGET_LM32)
2389 .mhandler.info = lm32_do_pic_info,
2390#else
Luiz Capitulino910df892009-10-07 13:41:51 -03002391 .mhandler.info = pic_info,
Jan Kiszka661f1922011-10-16 11:53:13 +02002392#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002393 },
Jan Kiszka661f1922011-10-16 11:53:13 +02002394#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002395 {
2396 .name = "pci",
2397 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002398 .params = "",
2399 .help = "show PCI info",
Luiz Capitulino79627472011-10-21 14:15:33 -02002400 .mhandler.info = hmp_info_pci,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002401 },
Scott Woodbebabbc2011-08-18 10:38:42 +00002402#if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \
Max Filippov692f7372012-01-07 20:02:40 +04002403 defined(TARGET_PPC) || defined(TARGET_XTENSA)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002404 {
2405 .name = "tlb",
2406 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002407 .params = "",
2408 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002409 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002410 },
aurel327c664e22009-03-03 06:12:22 +00002411#endif
2412#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002413 {
2414 .name = "mem",
2415 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002416 .params = "",
2417 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002418 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002419 },
bellardb86bda52004-09-18 19:32:46 +00002420#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002421 {
Blue Swirl314e2982011-09-11 20:22:05 +00002422 .name = "mtree",
2423 .args_type = "",
2424 .params = "",
2425 .help = "show memory tree",
2426 .mhandler.info = do_info_mtree,
2427 },
2428 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002429 .name = "jit",
2430 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002431 .params = "",
2432 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002433 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002434 },
2435 {
2436 .name = "kvm",
2437 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002438 .params = "",
2439 .help = "show KVM information",
Luiz Capitulino292a2602011-09-12 15:10:53 -03002440 .mhandler.info = hmp_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002441 },
2442 {
2443 .name = "numa",
2444 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002445 .params = "",
2446 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002447 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002448 },
2449 {
2450 .name = "usb",
2451 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002452 .params = "",
2453 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002454 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002455 },
2456 {
2457 .name = "usbhost",
2458 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002459 .params = "",
2460 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002461 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002462 },
2463 {
2464 .name = "profile",
2465 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002466 .params = "",
2467 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002468 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002469 },
2470 {
2471 .name = "capture",
2472 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002473 .params = "",
2474 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002475 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002476 },
2477 {
2478 .name = "snapshots",
2479 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002480 .params = "",
2481 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002482 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002483 },
2484 {
2485 .name = "status",
2486 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002487 .params = "",
2488 .help = "show the current VM status (running|paused)",
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -03002489 .mhandler.info = hmp_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002490 },
2491 {
2492 .name = "pcmcia",
2493 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002494 .params = "",
2495 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002496 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002497 },
2498 {
2499 .name = "mice",
2500 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002501 .params = "",
2502 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe235cec2011-09-21 15:29:55 -03002503 .mhandler.info = hmp_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002504 },
2505 {
2506 .name = "vnc",
2507 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002508 .params = "",
2509 .help = "show the vnc server status",
Luiz Capitulino2b54aa82011-10-17 16:41:22 -02002510 .mhandler.info = hmp_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002511 },
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002512#if defined(CONFIG_SPICE)
2513 {
2514 .name = "spice",
2515 .args_type = "",
2516 .params = "",
2517 .help = "show the spice server status",
Luiz Capitulinod1f29642011-10-20 17:01:33 -02002518 .mhandler.info = hmp_info_spice,
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002519 },
2520#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002521 {
2522 .name = "name",
2523 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002524 .params = "",
2525 .help = "show the current VM name",
Anthony Liguori48a32be2011-09-02 12:34:48 -05002526 .mhandler.info = hmp_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002527 },
2528 {
2529 .name = "uuid",
2530 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002531 .params = "",
2532 .help = "show the current VM UUID",
Luiz Capitulinoefab7672011-09-13 17:16:25 -03002533 .mhandler.info = hmp_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002534 },
j_mayer76a66252007-03-07 08:32:30 +00002535#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002536 {
2537 .name = "cpustats",
2538 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002539 .params = "",
2540 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002541 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002542 },
j_mayer76a66252007-03-07 08:32:30 +00002543#endif
blueswir131a60e22007-10-26 18:42:59 +00002544#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002545 {
2546 .name = "usernet",
2547 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002548 .params = "",
2549 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002550 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002551 },
blueswir131a60e22007-10-26 18:42:59 +00002552#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002553 {
2554 .name = "migrate",
2555 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002556 .params = "",
2557 .help = "show migration status",
Luiz Capitulino791e7c82011-09-13 17:37:16 -03002558 .mhandler.info = hmp_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002559 },
2560 {
2561 .name = "balloon",
2562 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002563 .params = "",
2564 .help = "show balloon information",
Luiz Capitulino96637bc2011-10-21 11:41:37 -02002565 .mhandler.info = hmp_info_balloon,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002566 },
2567 {
2568 .name = "qtree",
2569 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002570 .params = "",
2571 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002572 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002573 },
2574 {
2575 .name = "qdm",
2576 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002577 .params = "",
2578 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002579 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002580 },
2581 {
2582 .name = "roms",
2583 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002584 .params = "",
2585 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002586 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002587 },
Lluís6d8a7642011-08-31 20:30:43 +02002588#if defined(CONFIG_TRACE_SIMPLE)
Prerna Saxena22890ab2010-06-24 17:04:53 +05302589 {
2590 .name = "trace",
2591 .args_type = "",
2592 .params = "",
2593 .help = "show current contents of trace buffer",
2594 .mhandler.info = do_info_trace,
2595 },
Lluís31965ae2011-08-31 20:31:24 +02002596#endif
Prerna Saxena22890ab2010-06-24 17:04:53 +05302597 {
2598 .name = "trace-events",
2599 .args_type = "",
2600 .params = "",
2601 .help = "show available trace-events & their state",
Lluísfc764102011-08-31 20:31:18 +02002602 .mhandler.info = do_trace_print_events,
Prerna Saxena22890ab2010-06-24 17:04:53 +05302603 },
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002604 {
2605 .name = NULL,
2606 },
bellard9dc39cb2004-03-14 21:38:27 +00002607};
2608
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03002609static const mon_cmd_t qmp_cmds[] = {
Anthony Liguorie3193602011-09-02 12:34:47 -05002610#include "qmp-commands-old.h"
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03002611 { /* NULL */ },
2612};
2613
bellard9307c4c2004-04-04 12:57:25 +00002614/*******************************************************************/
2615
2616static const char *pch;
2617static jmp_buf expr_env;
2618
bellard92a31b12005-02-10 22:00:52 +00002619#define MD_TLONG 0
2620#define MD_I32 1
2621
bellard9307c4c2004-04-04 12:57:25 +00002622typedef struct MonitorDef {
2623 const char *name;
2624 int offset;
blueswir18662d652008-10-02 18:32:44 +00002625 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002626 int type;
bellard9307c4c2004-04-04 12:57:25 +00002627} MonitorDef;
2628
bellard57206fd2004-04-25 18:54:52 +00002629#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002630static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002631{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002632 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002633 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002634}
2635#endif
2636
bellarda541f292004-04-12 20:39:29 +00002637#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002638static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002639{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002640 CPUArchState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002641 unsigned int u;
2642 int i;
2643
2644 u = 0;
2645 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002646 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002647
2648 return u;
2649}
2650
blueswir18662d652008-10-02 18:32:44 +00002651static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002652{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002653 CPUArchState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00002654 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002655}
2656
blueswir18662d652008-10-02 18:32:44 +00002657static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002658{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002659 CPUArchState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00002660 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002661}
bellard9fddaa02004-05-21 12:59:32 +00002662
blueswir18662d652008-10-02 18:32:44 +00002663static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002664{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002665 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002666 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002667}
2668
blueswir18662d652008-10-02 18:32:44 +00002669static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002670{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002671 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002672 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002673}
2674
blueswir18662d652008-10-02 18:32:44 +00002675static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002676{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002677 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002678 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002679}
bellarda541f292004-04-12 20:39:29 +00002680#endif
2681
bellarde95c8d52004-09-30 22:22:08 +00002682#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002683#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002684static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002685{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002686 CPUArchState *env = mon_get_cpu();
Blue Swirl5a834bb2010-05-09 20:19:04 +00002687
2688 return cpu_get_psr(env);
bellarde95c8d52004-09-30 22:22:08 +00002689}
bellard7b936c02005-10-30 17:05:13 +00002690#endif
bellarde95c8d52004-09-30 22:22:08 +00002691
blueswir18662d652008-10-02 18:32:44 +00002692static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002693{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002694 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002695 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002696}
2697#endif
2698
blueswir18662d652008-10-02 18:32:44 +00002699static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002700#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002701
2702#define SEG(name, seg) \
Andreas Färbere59d1672012-02-16 00:40:47 +01002703 { name, offsetof(CPUX86State, segs[seg].selector), NULL, MD_I32 },\
2704 { name ".base", offsetof(CPUX86State, segs[seg].base) },\
2705 { name ".limit", offsetof(CPUX86State, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002706
Andreas Färbere59d1672012-02-16 00:40:47 +01002707 { "eax", offsetof(CPUX86State, regs[0]) },
2708 { "ecx", offsetof(CPUX86State, regs[1]) },
2709 { "edx", offsetof(CPUX86State, regs[2]) },
2710 { "ebx", offsetof(CPUX86State, regs[3]) },
2711 { "esp|sp", offsetof(CPUX86State, regs[4]) },
2712 { "ebp|fp", offsetof(CPUX86State, regs[5]) },
2713 { "esi", offsetof(CPUX86State, regs[6]) },
2714 { "edi", offsetof(CPUX86State, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002715#ifdef TARGET_X86_64
Andreas Färbere59d1672012-02-16 00:40:47 +01002716 { "r8", offsetof(CPUX86State, regs[8]) },
2717 { "r9", offsetof(CPUX86State, regs[9]) },
2718 { "r10", offsetof(CPUX86State, regs[10]) },
2719 { "r11", offsetof(CPUX86State, regs[11]) },
2720 { "r12", offsetof(CPUX86State, regs[12]) },
2721 { "r13", offsetof(CPUX86State, regs[13]) },
2722 { "r14", offsetof(CPUX86State, regs[14]) },
2723 { "r15", offsetof(CPUX86State, regs[15]) },
bellard92a31b12005-02-10 22:00:52 +00002724#endif
Andreas Färbere59d1672012-02-16 00:40:47 +01002725 { "eflags", offsetof(CPUX86State, eflags) },
2726 { "eip", offsetof(CPUX86State, eip) },
bellard57206fd2004-04-25 18:54:52 +00002727 SEG("cs", R_CS)
2728 SEG("ds", R_DS)
2729 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002730 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002731 SEG("fs", R_FS)
2732 SEG("gs", R_GS)
2733 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002734#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002735 /* General purpose registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01002736 { "r0", offsetof(CPUPPCState, gpr[0]) },
2737 { "r1", offsetof(CPUPPCState, gpr[1]) },
2738 { "r2", offsetof(CPUPPCState, gpr[2]) },
2739 { "r3", offsetof(CPUPPCState, gpr[3]) },
2740 { "r4", offsetof(CPUPPCState, gpr[4]) },
2741 { "r5", offsetof(CPUPPCState, gpr[5]) },
2742 { "r6", offsetof(CPUPPCState, gpr[6]) },
2743 { "r7", offsetof(CPUPPCState, gpr[7]) },
2744 { "r8", offsetof(CPUPPCState, gpr[8]) },
2745 { "r9", offsetof(CPUPPCState, gpr[9]) },
2746 { "r10", offsetof(CPUPPCState, gpr[10]) },
2747 { "r11", offsetof(CPUPPCState, gpr[11]) },
2748 { "r12", offsetof(CPUPPCState, gpr[12]) },
2749 { "r13", offsetof(CPUPPCState, gpr[13]) },
2750 { "r14", offsetof(CPUPPCState, gpr[14]) },
2751 { "r15", offsetof(CPUPPCState, gpr[15]) },
2752 { "r16", offsetof(CPUPPCState, gpr[16]) },
2753 { "r17", offsetof(CPUPPCState, gpr[17]) },
2754 { "r18", offsetof(CPUPPCState, gpr[18]) },
2755 { "r19", offsetof(CPUPPCState, gpr[19]) },
2756 { "r20", offsetof(CPUPPCState, gpr[20]) },
2757 { "r21", offsetof(CPUPPCState, gpr[21]) },
2758 { "r22", offsetof(CPUPPCState, gpr[22]) },
2759 { "r23", offsetof(CPUPPCState, gpr[23]) },
2760 { "r24", offsetof(CPUPPCState, gpr[24]) },
2761 { "r25", offsetof(CPUPPCState, gpr[25]) },
2762 { "r26", offsetof(CPUPPCState, gpr[26]) },
2763 { "r27", offsetof(CPUPPCState, gpr[27]) },
2764 { "r28", offsetof(CPUPPCState, gpr[28]) },
2765 { "r29", offsetof(CPUPPCState, gpr[29]) },
2766 { "r30", offsetof(CPUPPCState, gpr[30]) },
2767 { "r31", offsetof(CPUPPCState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00002768 /* Floating point registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01002769 { "f0", offsetof(CPUPPCState, fpr[0]) },
2770 { "f1", offsetof(CPUPPCState, fpr[1]) },
2771 { "f2", offsetof(CPUPPCState, fpr[2]) },
2772 { "f3", offsetof(CPUPPCState, fpr[3]) },
2773 { "f4", offsetof(CPUPPCState, fpr[4]) },
2774 { "f5", offsetof(CPUPPCState, fpr[5]) },
2775 { "f6", offsetof(CPUPPCState, fpr[6]) },
2776 { "f7", offsetof(CPUPPCState, fpr[7]) },
2777 { "f8", offsetof(CPUPPCState, fpr[8]) },
2778 { "f9", offsetof(CPUPPCState, fpr[9]) },
2779 { "f10", offsetof(CPUPPCState, fpr[10]) },
2780 { "f11", offsetof(CPUPPCState, fpr[11]) },
2781 { "f12", offsetof(CPUPPCState, fpr[12]) },
2782 { "f13", offsetof(CPUPPCState, fpr[13]) },
2783 { "f14", offsetof(CPUPPCState, fpr[14]) },
2784 { "f15", offsetof(CPUPPCState, fpr[15]) },
2785 { "f16", offsetof(CPUPPCState, fpr[16]) },
2786 { "f17", offsetof(CPUPPCState, fpr[17]) },
2787 { "f18", offsetof(CPUPPCState, fpr[18]) },
2788 { "f19", offsetof(CPUPPCState, fpr[19]) },
2789 { "f20", offsetof(CPUPPCState, fpr[20]) },
2790 { "f21", offsetof(CPUPPCState, fpr[21]) },
2791 { "f22", offsetof(CPUPPCState, fpr[22]) },
2792 { "f23", offsetof(CPUPPCState, fpr[23]) },
2793 { "f24", offsetof(CPUPPCState, fpr[24]) },
2794 { "f25", offsetof(CPUPPCState, fpr[25]) },
2795 { "f26", offsetof(CPUPPCState, fpr[26]) },
2796 { "f27", offsetof(CPUPPCState, fpr[27]) },
2797 { "f28", offsetof(CPUPPCState, fpr[28]) },
2798 { "f29", offsetof(CPUPPCState, fpr[29]) },
2799 { "f30", offsetof(CPUPPCState, fpr[30]) },
2800 { "f31", offsetof(CPUPPCState, fpr[31]) },
2801 { "fpscr", offsetof(CPUPPCState, fpscr) },
j_mayerff937db2007-09-19 05:49:13 +00002802 /* Next instruction pointer */
Andreas Färbere59d1672012-02-16 00:40:47 +01002803 { "nip|pc", offsetof(CPUPPCState, nip) },
2804 { "lr", offsetof(CPUPPCState, lr) },
2805 { "ctr", offsetof(CPUPPCState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00002806 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00002807 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00002808 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00002809 { "msr", 0, &monitor_get_msr, },
2810 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00002811 { "tbu", 0, &monitor_get_tbu, },
2812 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00002813#if defined(TARGET_PPC64)
2814 /* Address space register */
Andreas Färbere59d1672012-02-16 00:40:47 +01002815 { "asr", offsetof(CPUPPCState, asr) },
j_mayerff937db2007-09-19 05:49:13 +00002816#endif
2817 /* Segment registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01002818 { "sdr1", offsetof(CPUPPCState, spr[SPR_SDR1]) },
2819 { "sr0", offsetof(CPUPPCState, sr[0]) },
2820 { "sr1", offsetof(CPUPPCState, sr[1]) },
2821 { "sr2", offsetof(CPUPPCState, sr[2]) },
2822 { "sr3", offsetof(CPUPPCState, sr[3]) },
2823 { "sr4", offsetof(CPUPPCState, sr[4]) },
2824 { "sr5", offsetof(CPUPPCState, sr[5]) },
2825 { "sr6", offsetof(CPUPPCState, sr[6]) },
2826 { "sr7", offsetof(CPUPPCState, sr[7]) },
2827 { "sr8", offsetof(CPUPPCState, sr[8]) },
2828 { "sr9", offsetof(CPUPPCState, sr[9]) },
2829 { "sr10", offsetof(CPUPPCState, sr[10]) },
2830 { "sr11", offsetof(CPUPPCState, sr[11]) },
2831 { "sr12", offsetof(CPUPPCState, sr[12]) },
2832 { "sr13", offsetof(CPUPPCState, sr[13]) },
2833 { "sr14", offsetof(CPUPPCState, sr[14]) },
2834 { "sr15", offsetof(CPUPPCState, sr[15]) },
Scott Wood90dc8812011-04-29 17:10:23 -05002835 /* Too lazy to put BATs... */
Andreas Färbere59d1672012-02-16 00:40:47 +01002836 { "pvr", offsetof(CPUPPCState, spr[SPR_PVR]) },
Scott Wood90dc8812011-04-29 17:10:23 -05002837
Andreas Färbere59d1672012-02-16 00:40:47 +01002838 { "srr0", offsetof(CPUPPCState, spr[SPR_SRR0]) },
2839 { "srr1", offsetof(CPUPPCState, spr[SPR_SRR1]) },
2840 { "sprg0", offsetof(CPUPPCState, spr[SPR_SPRG0]) },
2841 { "sprg1", offsetof(CPUPPCState, spr[SPR_SPRG1]) },
2842 { "sprg2", offsetof(CPUPPCState, spr[SPR_SPRG2]) },
2843 { "sprg3", offsetof(CPUPPCState, spr[SPR_SPRG3]) },
2844 { "sprg4", offsetof(CPUPPCState, spr[SPR_SPRG4]) },
2845 { "sprg5", offsetof(CPUPPCState, spr[SPR_SPRG5]) },
2846 { "sprg6", offsetof(CPUPPCState, spr[SPR_SPRG6]) },
2847 { "sprg7", offsetof(CPUPPCState, spr[SPR_SPRG7]) },
2848 { "pid", offsetof(CPUPPCState, spr[SPR_BOOKE_PID]) },
2849 { "csrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR0]) },
2850 { "csrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR1]) },
2851 { "esr", offsetof(CPUPPCState, spr[SPR_BOOKE_ESR]) },
2852 { "dear", offsetof(CPUPPCState, spr[SPR_BOOKE_DEAR]) },
2853 { "mcsr", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSR]) },
2854 { "tsr", offsetof(CPUPPCState, spr[SPR_BOOKE_TSR]) },
2855 { "tcr", offsetof(CPUPPCState, spr[SPR_BOOKE_TCR]) },
2856 { "vrsave", offsetof(CPUPPCState, spr[SPR_VRSAVE]) },
2857 { "pir", offsetof(CPUPPCState, spr[SPR_BOOKE_PIR]) },
2858 { "mcsrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR0]) },
2859 { "mcsrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR1]) },
2860 { "decar", offsetof(CPUPPCState, spr[SPR_BOOKE_DECAR]) },
2861 { "ivpr", offsetof(CPUPPCState, spr[SPR_BOOKE_IVPR]) },
2862 { "epcr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPCR]) },
2863 { "sprg8", offsetof(CPUPPCState, spr[SPR_BOOKE_SPRG8]) },
2864 { "ivor0", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR0]) },
2865 { "ivor1", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR1]) },
2866 { "ivor2", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR2]) },
2867 { "ivor3", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR3]) },
2868 { "ivor4", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR4]) },
2869 { "ivor5", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR5]) },
2870 { "ivor6", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR6]) },
2871 { "ivor7", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR7]) },
2872 { "ivor8", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR8]) },
2873 { "ivor9", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR9]) },
2874 { "ivor10", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR10]) },
2875 { "ivor11", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR11]) },
2876 { "ivor12", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR12]) },
2877 { "ivor13", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR13]) },
2878 { "ivor14", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR14]) },
2879 { "ivor15", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR15]) },
2880 { "ivor32", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR32]) },
2881 { "ivor33", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR33]) },
2882 { "ivor34", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR34]) },
2883 { "ivor35", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR35]) },
2884 { "ivor36", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR36]) },
2885 { "ivor37", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR37]) },
2886 { "mas0", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS0]) },
2887 { "mas1", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS1]) },
2888 { "mas2", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS2]) },
2889 { "mas3", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS3]) },
2890 { "mas4", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS4]) },
2891 { "mas6", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS6]) },
2892 { "mas7", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS7]) },
2893 { "mmucfg", offsetof(CPUPPCState, spr[SPR_MMUCFG]) },
2894 { "tlb0cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB0CFG]) },
2895 { "tlb1cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB1CFG]) },
2896 { "epr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPR]) },
2897 { "eplc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPLC]) },
2898 { "epsc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPSC]) },
2899 { "svr", offsetof(CPUPPCState, spr[SPR_E500_SVR]) },
2900 { "mcar", offsetof(CPUPPCState, spr[SPR_Exxx_MCAR]) },
2901 { "pid1", offsetof(CPUPPCState, spr[SPR_BOOKE_PID1]) },
2902 { "pid2", offsetof(CPUPPCState, spr[SPR_BOOKE_PID2]) },
2903 { "hid0", offsetof(CPUPPCState, spr[SPR_HID0]) },
Scott Wood90dc8812011-04-29 17:10:23 -05002904
bellarde95c8d52004-09-30 22:22:08 +00002905#elif defined(TARGET_SPARC)
Andreas Färbere59d1672012-02-16 00:40:47 +01002906 { "g0", offsetof(CPUSPARCState, gregs[0]) },
2907 { "g1", offsetof(CPUSPARCState, gregs[1]) },
2908 { "g2", offsetof(CPUSPARCState, gregs[2]) },
2909 { "g3", offsetof(CPUSPARCState, gregs[3]) },
2910 { "g4", offsetof(CPUSPARCState, gregs[4]) },
2911 { "g5", offsetof(CPUSPARCState, gregs[5]) },
2912 { "g6", offsetof(CPUSPARCState, gregs[6]) },
2913 { "g7", offsetof(CPUSPARCState, gregs[7]) },
bellarde95c8d52004-09-30 22:22:08 +00002914 { "o0", 0, monitor_get_reg },
2915 { "o1", 1, monitor_get_reg },
2916 { "o2", 2, monitor_get_reg },
2917 { "o3", 3, monitor_get_reg },
2918 { "o4", 4, monitor_get_reg },
2919 { "o5", 5, monitor_get_reg },
2920 { "o6", 6, monitor_get_reg },
2921 { "o7", 7, monitor_get_reg },
2922 { "l0", 8, monitor_get_reg },
2923 { "l1", 9, monitor_get_reg },
2924 { "l2", 10, monitor_get_reg },
2925 { "l3", 11, monitor_get_reg },
2926 { "l4", 12, monitor_get_reg },
2927 { "l5", 13, monitor_get_reg },
2928 { "l6", 14, monitor_get_reg },
2929 { "l7", 15, monitor_get_reg },
2930 { "i0", 16, monitor_get_reg },
2931 { "i1", 17, monitor_get_reg },
2932 { "i2", 18, monitor_get_reg },
2933 { "i3", 19, monitor_get_reg },
2934 { "i4", 20, monitor_get_reg },
2935 { "i5", 21, monitor_get_reg },
2936 { "i6", 22, monitor_get_reg },
2937 { "i7", 23, monitor_get_reg },
Andreas Färbere59d1672012-02-16 00:40:47 +01002938 { "pc", offsetof(CPUSPARCState, pc) },
2939 { "npc", offsetof(CPUSPARCState, npc) },
2940 { "y", offsetof(CPUSPARCState, y) },
bellard7b936c02005-10-30 17:05:13 +00002941#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00002942 { "psr", 0, &monitor_get_psr, },
Andreas Färbere59d1672012-02-16 00:40:47 +01002943 { "wim", offsetof(CPUSPARCState, wim) },
bellard7b936c02005-10-30 17:05:13 +00002944#endif
Andreas Färbere59d1672012-02-16 00:40:47 +01002945 { "tbr", offsetof(CPUSPARCState, tbr) },
2946 { "fsr", offsetof(CPUSPARCState, fsr) },
2947 { "f0", offsetof(CPUSPARCState, fpr[0].l.upper) },
2948 { "f1", offsetof(CPUSPARCState, fpr[0].l.lower) },
2949 { "f2", offsetof(CPUSPARCState, fpr[1].l.upper) },
2950 { "f3", offsetof(CPUSPARCState, fpr[1].l.lower) },
2951 { "f4", offsetof(CPUSPARCState, fpr[2].l.upper) },
2952 { "f5", offsetof(CPUSPARCState, fpr[2].l.lower) },
2953 { "f6", offsetof(CPUSPARCState, fpr[3].l.upper) },
2954 { "f7", offsetof(CPUSPARCState, fpr[3].l.lower) },
2955 { "f8", offsetof(CPUSPARCState, fpr[4].l.upper) },
2956 { "f9", offsetof(CPUSPARCState, fpr[4].l.lower) },
2957 { "f10", offsetof(CPUSPARCState, fpr[5].l.upper) },
2958 { "f11", offsetof(CPUSPARCState, fpr[5].l.lower) },
2959 { "f12", offsetof(CPUSPARCState, fpr[6].l.upper) },
2960 { "f13", offsetof(CPUSPARCState, fpr[6].l.lower) },
2961 { "f14", offsetof(CPUSPARCState, fpr[7].l.upper) },
2962 { "f15", offsetof(CPUSPARCState, fpr[7].l.lower) },
2963 { "f16", offsetof(CPUSPARCState, fpr[8].l.upper) },
2964 { "f17", offsetof(CPUSPARCState, fpr[8].l.lower) },
2965 { "f18", offsetof(CPUSPARCState, fpr[9].l.upper) },
2966 { "f19", offsetof(CPUSPARCState, fpr[9].l.lower) },
2967 { "f20", offsetof(CPUSPARCState, fpr[10].l.upper) },
2968 { "f21", offsetof(CPUSPARCState, fpr[10].l.lower) },
2969 { "f22", offsetof(CPUSPARCState, fpr[11].l.upper) },
2970 { "f23", offsetof(CPUSPARCState, fpr[11].l.lower) },
2971 { "f24", offsetof(CPUSPARCState, fpr[12].l.upper) },
2972 { "f25", offsetof(CPUSPARCState, fpr[12].l.lower) },
2973 { "f26", offsetof(CPUSPARCState, fpr[13].l.upper) },
2974 { "f27", offsetof(CPUSPARCState, fpr[13].l.lower) },
2975 { "f28", offsetof(CPUSPARCState, fpr[14].l.upper) },
2976 { "f29", offsetof(CPUSPARCState, fpr[14].l.lower) },
2977 { "f30", offsetof(CPUSPARCState, fpr[15].l.upper) },
2978 { "f31", offsetof(CPUSPARCState, fpr[15].l.lower) },
bellard7b936c02005-10-30 17:05:13 +00002979#ifdef TARGET_SPARC64
Andreas Färbere59d1672012-02-16 00:40:47 +01002980 { "f32", offsetof(CPUSPARCState, fpr[16]) },
2981 { "f34", offsetof(CPUSPARCState, fpr[17]) },
2982 { "f36", offsetof(CPUSPARCState, fpr[18]) },
2983 { "f38", offsetof(CPUSPARCState, fpr[19]) },
2984 { "f40", offsetof(CPUSPARCState, fpr[20]) },
2985 { "f42", offsetof(CPUSPARCState, fpr[21]) },
2986 { "f44", offsetof(CPUSPARCState, fpr[22]) },
2987 { "f46", offsetof(CPUSPARCState, fpr[23]) },
2988 { "f48", offsetof(CPUSPARCState, fpr[24]) },
2989 { "f50", offsetof(CPUSPARCState, fpr[25]) },
2990 { "f52", offsetof(CPUSPARCState, fpr[26]) },
2991 { "f54", offsetof(CPUSPARCState, fpr[27]) },
2992 { "f56", offsetof(CPUSPARCState, fpr[28]) },
2993 { "f58", offsetof(CPUSPARCState, fpr[29]) },
2994 { "f60", offsetof(CPUSPARCState, fpr[30]) },
2995 { "f62", offsetof(CPUSPARCState, fpr[31]) },
2996 { "asi", offsetof(CPUSPARCState, asi) },
2997 { "pstate", offsetof(CPUSPARCState, pstate) },
2998 { "cansave", offsetof(CPUSPARCState, cansave) },
2999 { "canrestore", offsetof(CPUSPARCState, canrestore) },
3000 { "otherwin", offsetof(CPUSPARCState, otherwin) },
3001 { "wstate", offsetof(CPUSPARCState, wstate) },
3002 { "cleanwin", offsetof(CPUSPARCState, cleanwin) },
3003 { "fprs", offsetof(CPUSPARCState, fprs) },
bellard7b936c02005-10-30 17:05:13 +00003004#endif
bellard9307c4c2004-04-04 12:57:25 +00003005#endif
3006 { NULL },
3007};
3008
aliguori376253e2009-03-05 23:01:23 +00003009static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00003010{
aliguori376253e2009-03-05 23:01:23 +00003011 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00003012 longjmp(expr_env, 1);
3013}
3014
Markus Armbruster09b94182010-01-20 13:07:30 +01003015/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00003016static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00003017{
blueswir18662d652008-10-02 18:32:44 +00003018 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00003019 void *ptr;
3020
bellard9307c4c2004-04-04 12:57:25 +00003021 for(md = monitor_defs; md->name != NULL; md++) {
3022 if (compare_cmd(name, md->name)) {
3023 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003024 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003025 } else {
Andreas Färber9349b4f2012-03-14 01:38:32 +01003026 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003027 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003028 switch(md->type) {
3029 case MD_I32:
3030 *pval = *(int32_t *)ptr;
3031 break;
3032 case MD_TLONG:
3033 *pval = *(target_long *)ptr;
3034 break;
3035 default:
3036 *pval = 0;
3037 break;
3038 }
bellard9307c4c2004-04-04 12:57:25 +00003039 }
3040 return 0;
3041 }
3042 }
3043 return -1;
3044}
3045
3046static void next(void)
3047{
Blue Swirl660f11b2009-07-31 21:16:51 +00003048 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003049 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003050 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003051 pch++;
3052 }
3053}
3054
aliguori376253e2009-03-05 23:01:23 +00003055static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003056
aliguori376253e2009-03-05 23:01:23 +00003057static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003058{
blueswir1c2efc952007-09-25 17:28:42 +00003059 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003060 char *p;
bellard6a00d602005-11-21 23:25:50 +00003061 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003062
3063 switch(*pch) {
3064 case '+':
3065 next();
aliguori376253e2009-03-05 23:01:23 +00003066 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003067 break;
3068 case '-':
3069 next();
aliguori376253e2009-03-05 23:01:23 +00003070 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003071 break;
3072 case '~':
3073 next();
aliguori376253e2009-03-05 23:01:23 +00003074 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003075 break;
3076 case '(':
3077 next();
aliguori376253e2009-03-05 23:01:23 +00003078 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003079 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003080 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003081 }
3082 next();
3083 break;
bellard81d09122004-07-14 17:21:37 +00003084 case '\'':
3085 pch++;
3086 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003087 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003088 n = *pch;
3089 pch++;
3090 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003091 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003092 next();
3093 break;
bellard9307c4c2004-04-04 12:57:25 +00003094 case '$':
3095 {
3096 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003097 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003098
bellard9307c4c2004-04-04 12:57:25 +00003099 pch++;
3100 q = buf;
3101 while ((*pch >= 'a' && *pch <= 'z') ||
3102 (*pch >= 'A' && *pch <= 'Z') ||
3103 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003104 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003105 if ((q - buf) < sizeof(buf) - 1)
3106 *q++ = *pch;
3107 pch++;
3108 }
blueswir1cd390082008-11-16 13:53:32 +00003109 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003110 pch++;
3111 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003112 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003113 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003114 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003115 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003116 }
3117 break;
3118 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003119 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003120 n = 0;
3121 break;
3122 default:
Luiz Capitulino6b0e33b2012-04-26 16:48:41 -03003123 errno = 0;
blueswir17743e582007-09-24 18:39:04 +00003124#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003125 n = strtoull(pch, &p, 0);
3126#else
bellard9307c4c2004-04-04 12:57:25 +00003127 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003128#endif
Luiz Capitulino6b0e33b2012-04-26 16:48:41 -03003129 if (errno == ERANGE) {
3130 expr_error(mon, "number too large");
3131 }
bellard9307c4c2004-04-04 12:57:25 +00003132 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003133 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003134 }
3135 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003136 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003137 pch++;
3138 break;
3139 }
3140 return n;
3141}
3142
3143
aliguori376253e2009-03-05 23:01:23 +00003144static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003145{
blueswir1c2efc952007-09-25 17:28:42 +00003146 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003147 int op;
ths3b46e622007-09-17 08:09:54 +00003148
aliguori376253e2009-03-05 23:01:23 +00003149 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003150 for(;;) {
3151 op = *pch;
3152 if (op != '*' && op != '/' && op != '%')
3153 break;
3154 next();
aliguori376253e2009-03-05 23:01:23 +00003155 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003156 switch(op) {
3157 default:
3158 case '*':
3159 val *= val2;
3160 break;
3161 case '/':
3162 case '%':
ths5fafdf22007-09-16 21:08:06 +00003163 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003164 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003165 if (op == '/')
3166 val /= val2;
3167 else
3168 val %= val2;
3169 break;
3170 }
3171 }
3172 return val;
3173}
3174
aliguori376253e2009-03-05 23:01:23 +00003175static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003176{
blueswir1c2efc952007-09-25 17:28:42 +00003177 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003178 int op;
bellard9307c4c2004-04-04 12:57:25 +00003179
aliguori376253e2009-03-05 23:01:23 +00003180 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003181 for(;;) {
3182 op = *pch;
3183 if (op != '&' && op != '|' && op != '^')
3184 break;
3185 next();
aliguori376253e2009-03-05 23:01:23 +00003186 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003187 switch(op) {
3188 default:
3189 case '&':
3190 val &= val2;
3191 break;
3192 case '|':
3193 val |= val2;
3194 break;
3195 case '^':
3196 val ^= val2;
3197 break;
3198 }
3199 }
3200 return val;
3201}
3202
aliguori376253e2009-03-05 23:01:23 +00003203static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003204{
blueswir1c2efc952007-09-25 17:28:42 +00003205 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003206 int op;
bellard9307c4c2004-04-04 12:57:25 +00003207
aliguori376253e2009-03-05 23:01:23 +00003208 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003209 for(;;) {
3210 op = *pch;
3211 if (op != '+' && op != '-')
3212 break;
3213 next();
aliguori376253e2009-03-05 23:01:23 +00003214 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003215 if (op == '+')
3216 val += val2;
3217 else
3218 val -= val2;
3219 }
3220 return val;
3221}
3222
aliguori376253e2009-03-05 23:01:23 +00003223static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003224{
3225 pch = *pp;
3226 if (setjmp(expr_env)) {
3227 *pp = pch;
3228 return -1;
3229 }
blueswir1cd390082008-11-16 13:53:32 +00003230 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003231 pch++;
aliguori376253e2009-03-05 23:01:23 +00003232 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003233 *pp = pch;
3234 return 0;
3235}
3236
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003237static int get_double(Monitor *mon, double *pval, const char **pp)
3238{
3239 const char *p = *pp;
3240 char *tailp;
3241 double d;
3242
3243 d = strtod(p, &tailp);
3244 if (tailp == p) {
3245 monitor_printf(mon, "Number expected\n");
3246 return -1;
3247 }
3248 if (d != d || d - d != 0) {
3249 /* NaN or infinity */
3250 monitor_printf(mon, "Bad number\n");
3251 return -1;
3252 }
3253 *pval = d;
3254 *pp = tailp;
3255 return 0;
3256}
3257
bellard9307c4c2004-04-04 12:57:25 +00003258static int get_str(char *buf, int buf_size, const char **pp)
3259{
3260 const char *p;
3261 char *q;
3262 int c;
3263
bellard81d09122004-07-14 17:21:37 +00003264 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003265 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003266 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003267 p++;
3268 if (*p == '\0') {
3269 fail:
bellard81d09122004-07-14 17:21:37 +00003270 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003271 *pp = p;
3272 return -1;
3273 }
bellard9307c4c2004-04-04 12:57:25 +00003274 if (*p == '\"') {
3275 p++;
3276 while (*p != '\0' && *p != '\"') {
3277 if (*p == '\\') {
3278 p++;
3279 c = *p++;
3280 switch(c) {
3281 case 'n':
3282 c = '\n';
3283 break;
3284 case 'r':
3285 c = '\r';
3286 break;
3287 case '\\':
3288 case '\'':
3289 case '\"':
3290 break;
3291 default:
3292 qemu_printf("unsupported escape code: '\\%c'\n", c);
3293 goto fail;
3294 }
3295 if ((q - buf) < buf_size - 1) {
3296 *q++ = c;
3297 }
3298 } else {
3299 if ((q - buf) < buf_size - 1) {
3300 *q++ = *p;
3301 }
3302 p++;
3303 }
3304 }
3305 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003306 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003307 goto fail;
3308 }
3309 p++;
3310 } else {
blueswir1cd390082008-11-16 13:53:32 +00003311 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003312 if ((q - buf) < buf_size - 1) {
3313 *q++ = *p;
3314 }
3315 p++;
3316 }
bellard9307c4c2004-04-04 12:57:25 +00003317 }
bellard81d09122004-07-14 17:21:37 +00003318 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003319 *pp = p;
3320 return 0;
3321}
3322
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003323/*
3324 * Store the command-name in cmdname, and return a pointer to
3325 * the remaining of the command string.
3326 */
3327static const char *get_command_name(const char *cmdline,
3328 char *cmdname, size_t nlen)
3329{
3330 size_t len;
3331 const char *p, *pstart;
3332
3333 p = cmdline;
3334 while (qemu_isspace(*p))
3335 p++;
3336 if (*p == '\0')
3337 return NULL;
3338 pstart = p;
3339 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3340 p++;
3341 len = p - pstart;
3342 if (len > nlen - 1)
3343 len = nlen - 1;
3344 memcpy(cmdname, pstart, len);
3345 cmdname[len] = '\0';
3346 return p;
3347}
3348
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003349/**
3350 * Read key of 'type' into 'key' and return the current
3351 * 'type' pointer.
3352 */
3353static char *key_get_info(const char *type, char **key)
3354{
3355 size_t len;
3356 char *p, *str;
3357
3358 if (*type == ',')
3359 type++;
3360
3361 p = strchr(type, ':');
3362 if (!p) {
3363 *key = NULL;
3364 return NULL;
3365 }
3366 len = p - type;
3367
Anthony Liguori7267c092011-08-20 22:09:37 -05003368 str = g_malloc(len + 1);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003369 memcpy(str, type, len);
3370 str[len] = '\0';
3371
3372 *key = str;
3373 return ++p;
3374}
3375
bellard9307c4c2004-04-04 12:57:25 +00003376static int default_fmt_format = 'x';
3377static int default_fmt_size = 4;
3378
3379#define MAX_ARGS 16
3380
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003381static int is_valid_option(const char *c, const char *typestr)
3382{
3383 char option[3];
3384
3385 option[0] = '-';
3386 option[1] = *c;
3387 option[2] = '\0';
3388
3389 typestr = strstr(typestr, option);
3390 return (typestr != NULL);
3391}
3392
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003393static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3394 const char *cmdname)
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003395{
3396 const mon_cmd_t *cmd;
3397
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003398 for (cmd = disp_table; cmd->name != NULL; cmd++) {
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003399 if (compare_cmd(cmdname, cmd->name)) {
3400 return cmd;
3401 }
3402 }
3403
3404 return NULL;
3405}
3406
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003407static const mon_cmd_t *monitor_find_command(const char *cmdname)
3408{
3409 return search_dispatch_table(mon_cmds, cmdname);
3410}
3411
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003412static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3413{
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003414 return search_dispatch_table(qmp_cmds, cmdname);
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003415}
3416
Anthony Liguoric227f092009-10-01 16:12:16 -05003417static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003418 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003419 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003420{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003421 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003422 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003423 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003424 char cmdname[256];
3425 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003426 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003427
3428#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003429 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003430#endif
ths3b46e622007-09-17 08:09:54 +00003431
bellard9307c4c2004-04-04 12:57:25 +00003432 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003433 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3434 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003435 return NULL;
ths3b46e622007-09-17 08:09:54 +00003436
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003437 cmd = monitor_find_command(cmdname);
3438 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003439 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003440 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003441 }
bellard9307c4c2004-04-04 12:57:25 +00003442
bellard9307c4c2004-04-04 12:57:25 +00003443 /* parse the parameters */
3444 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003445 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003446 typestr = key_get_info(typestr, &key);
3447 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003448 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003449 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003450 typestr++;
3451 switch(c) {
3452 case 'F':
bellard81d09122004-07-14 17:21:37 +00003453 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003454 case 's':
3455 {
3456 int ret;
ths3b46e622007-09-17 08:09:54 +00003457
blueswir1cd390082008-11-16 13:53:32 +00003458 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003459 p++;
3460 if (*typestr == '?') {
3461 typestr++;
3462 if (*p == '\0') {
3463 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003464 break;
bellard9307c4c2004-04-04 12:57:25 +00003465 }
3466 }
3467 ret = get_str(buf, sizeof(buf), &p);
3468 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003469 switch(c) {
3470 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003471 monitor_printf(mon, "%s: filename expected\n",
3472 cmdname);
bellard81d09122004-07-14 17:21:37 +00003473 break;
3474 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003475 monitor_printf(mon, "%s: block device name expected\n",
3476 cmdname);
bellard81d09122004-07-14 17:21:37 +00003477 break;
3478 default:
aliguori376253e2009-03-05 23:01:23 +00003479 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003480 break;
3481 }
bellard9307c4c2004-04-04 12:57:25 +00003482 goto fail;
3483 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003484 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003485 }
3486 break;
Markus Armbruster361127d2010-02-10 20:24:35 +01003487 case 'O':
3488 {
3489 QemuOptsList *opts_list;
3490 QemuOpts *opts;
3491
3492 opts_list = qemu_find_opts(key);
3493 if (!opts_list || opts_list->desc->name) {
3494 goto bad_type;
3495 }
3496 while (qemu_isspace(*p)) {
3497 p++;
3498 }
3499 if (!*p)
3500 break;
3501 if (get_str(buf, sizeof(buf), &p) < 0) {
3502 goto fail;
3503 }
3504 opts = qemu_opts_parse(opts_list, buf, 1);
3505 if (!opts) {
3506 goto fail;
3507 }
3508 qemu_opts_to_qdict(opts, qdict);
3509 qemu_opts_del(opts);
3510 }
3511 break;
bellard9307c4c2004-04-04 12:57:25 +00003512 case '/':
3513 {
3514 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003515
blueswir1cd390082008-11-16 13:53:32 +00003516 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003517 p++;
3518 if (*p == '/') {
3519 /* format found */
3520 p++;
3521 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003522 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003523 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003524 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003525 count = count * 10 + (*p - '0');
3526 p++;
3527 }
3528 }
3529 size = -1;
3530 format = -1;
3531 for(;;) {
3532 switch(*p) {
3533 case 'o':
3534 case 'd':
3535 case 'u':
3536 case 'x':
3537 case 'i':
3538 case 'c':
3539 format = *p++;
3540 break;
3541 case 'b':
3542 size = 1;
3543 p++;
3544 break;
3545 case 'h':
3546 size = 2;
3547 p++;
3548 break;
3549 case 'w':
3550 size = 4;
3551 p++;
3552 break;
3553 case 'g':
3554 case 'L':
3555 size = 8;
3556 p++;
3557 break;
3558 default:
3559 goto next;
3560 }
3561 }
3562 next:
blueswir1cd390082008-11-16 13:53:32 +00003563 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003564 monitor_printf(mon, "invalid char in format: '%c'\n",
3565 *p);
bellard9307c4c2004-04-04 12:57:25 +00003566 goto fail;
3567 }
bellard9307c4c2004-04-04 12:57:25 +00003568 if (format < 0)
3569 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003570 if (format != 'i') {
3571 /* for 'i', not specifying a size gives -1 as size */
3572 if (size < 0)
3573 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003574 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003575 }
bellard9307c4c2004-04-04 12:57:25 +00003576 default_fmt_format = format;
3577 } else {
3578 count = 1;
3579 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003580 if (format != 'i') {
3581 size = default_fmt_size;
3582 } else {
3583 size = -1;
3584 }
bellard9307c4c2004-04-04 12:57:25 +00003585 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003586 qdict_put(qdict, "count", qint_from_int(count));
3587 qdict_put(qdict, "format", qint_from_int(format));
3588 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003589 }
3590 break;
3591 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003592 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003593 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003594 {
blueswir1c2efc952007-09-25 17:28:42 +00003595 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003596
blueswir1cd390082008-11-16 13:53:32 +00003597 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003598 p++;
bellard34405572004-06-08 00:55:58 +00003599 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003600 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003601 if (*p == '\0') {
3602 typestr++;
3603 break;
3604 }
bellard34405572004-06-08 00:55:58 +00003605 } else {
3606 if (*p == '.') {
3607 p++;
blueswir1cd390082008-11-16 13:53:32 +00003608 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003609 p++;
bellard34405572004-06-08 00:55:58 +00003610 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003611 typestr++;
3612 break;
bellard34405572004-06-08 00:55:58 +00003613 }
3614 }
bellard13224a82006-07-14 22:03:35 +00003615 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003616 }
aliguori376253e2009-03-05 23:01:23 +00003617 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003618 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003619 /* Check if 'i' is greater than 32-bit */
3620 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3621 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3622 monitor_printf(mon, "integer is for 32-bit values\n");
3623 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003624 } else if (c == 'M') {
Luiz Capitulino91162842012-04-26 17:34:30 -03003625 if (val < 0) {
3626 monitor_printf(mon, "enter a positive value\n");
3627 goto fail;
3628 }
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003629 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003630 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003631 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003632 }
3633 break;
Jes Sorensendbc0c672010-10-21 17:15:47 +02003634 case 'o':
3635 {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +01003636 int64_t val;
Jes Sorensendbc0c672010-10-21 17:15:47 +02003637 char *end;
3638
3639 while (qemu_isspace(*p)) {
3640 p++;
3641 }
3642 if (*typestr == '?') {
3643 typestr++;
3644 if (*p == '\0') {
3645 break;
3646 }
3647 }
3648 val = strtosz(p, &end);
3649 if (val < 0) {
3650 monitor_printf(mon, "invalid size\n");
3651 goto fail;
3652 }
3653 qdict_put(qdict, key, qint_from_int(val));
3654 p = end;
3655 }
3656 break;
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003657 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003658 {
3659 double val;
3660
3661 while (qemu_isspace(*p))
3662 p++;
3663 if (*typestr == '?') {
3664 typestr++;
3665 if (*p == '\0') {
3666 break;
3667 }
3668 }
3669 if (get_double(mon, &val, &p) < 0) {
3670 goto fail;
3671 }
Jes Sorensen07de3e62010-10-21 17:15:49 +02003672 if (p[0] && p[1] == 's') {
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003673 switch (*p) {
3674 case 'm':
3675 val /= 1e3; p += 2; break;
3676 case 'u':
3677 val /= 1e6; p += 2; break;
3678 case 'n':
3679 val /= 1e9; p += 2; break;
3680 }
3681 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003682 if (*p && !qemu_isspace(*p)) {
3683 monitor_printf(mon, "Unknown unit suffix\n");
3684 goto fail;
3685 }
3686 qdict_put(qdict, key, qfloat_from_double(val));
3687 }
3688 break;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01003689 case 'b':
3690 {
3691 const char *beg;
3692 int val;
3693
3694 while (qemu_isspace(*p)) {
3695 p++;
3696 }
3697 beg = p;
3698 while (qemu_isgraph(*p)) {
3699 p++;
3700 }
3701 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3702 val = 1;
3703 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3704 val = 0;
3705 } else {
3706 monitor_printf(mon, "Expected 'on' or 'off'\n");
3707 goto fail;
3708 }
3709 qdict_put(qdict, key, qbool_from_int(val));
3710 }
3711 break;
bellard9307c4c2004-04-04 12:57:25 +00003712 case '-':
3713 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003714 const char *tmp = p;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003715 int skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003716 /* option */
ths3b46e622007-09-17 08:09:54 +00003717
bellard9307c4c2004-04-04 12:57:25 +00003718 c = *typestr++;
3719 if (c == '\0')
3720 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003721 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003722 p++;
bellard9307c4c2004-04-04 12:57:25 +00003723 if (*p == '-') {
3724 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003725 if(c != *p) {
3726 if(!is_valid_option(p, typestr)) {
3727
3728 monitor_printf(mon, "%s: unsupported option -%c\n",
3729 cmdname, *p);
3730 goto fail;
3731 } else {
3732 skip_key = 1;
3733 }
bellard9307c4c2004-04-04 12:57:25 +00003734 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003735 if(skip_key) {
3736 p = tmp;
3737 } else {
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003738 /* has option */
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003739 p++;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003740 qdict_put(qdict, key, qbool_from_int(1));
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003741 }
bellard9307c4c2004-04-04 12:57:25 +00003742 }
bellard9307c4c2004-04-04 12:57:25 +00003743 }
3744 break;
3745 default:
3746 bad_type:
aliguori376253e2009-03-05 23:01:23 +00003747 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00003748 goto fail;
3749 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003750 g_free(key);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003751 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003752 }
3753 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003754 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003755 p++;
3756 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003757 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3758 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00003759 goto fail;
3760 }
3761
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003762 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003763
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003764fail:
Anthony Liguori7267c092011-08-20 22:09:37 -05003765 g_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003766 return NULL;
3767}
3768
Markus Armbrusterd6f46832010-02-17 10:52:26 +01003769void monitor_set_error(Monitor *mon, QError *qerror)
3770{
3771 /* report only the first error */
3772 if (!mon->error) {
3773 mon->error = qerror;
3774 } else {
3775 MON_DEBUG("Additional error report at %s:%d\n",
3776 qerror->file, qerror->linenr);
3777 QDECREF(qerror);
3778 }
3779}
3780
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003781static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3782{
Luiz Capitulino6d441432010-11-22 16:35:09 -02003783 if (ret && !monitor_has_error(mon)) {
3784 /*
3785 * If it returns failure, it must have passed on error.
3786 *
3787 * Action: Report an internal error to the client if in QMP.
3788 */
3789 qerror_report(QERR_UNDEFINED_ERROR);
3790 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
3791 cmd->name);
3792 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003793
3794#ifdef CONFIG_DEBUG_MONITOR
Luiz Capitulino6d441432010-11-22 16:35:09 -02003795 if (!ret && monitor_has_error(mon)) {
3796 /*
3797 * If it returns success, it must not have passed an error.
3798 *
3799 * Action: Report the passed error to the client.
3800 */
3801 MON_DEBUG("command '%s' returned success but passed an error\n",
3802 cmd->name);
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003803 }
Luiz Capitulino6d441432010-11-22 16:35:09 -02003804
3805 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
3806 /*
3807 * Handlers should not call Monitor print functions.
3808 *
3809 * Action: Ignore them in QMP.
3810 *
3811 * (XXX: we don't check any 'info' or 'query' command here
3812 * because the user print function _is_ called by do_info(), hence
3813 * we will trigger this check. This problem will go away when we
3814 * make 'query' commands real and kill do_info())
3815 */
3816 MON_DEBUG("command '%s' called print functions %d time(s)\n",
3817 cmd->name, mon_print_count_get(mon));
3818 }
3819#endif
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003820}
3821
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003822static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003823{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003824 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003825 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003826
3827 qdict = qdict_new();
3828
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03003829 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003830 if (!cmd)
3831 goto out;
3832
Luiz Capitulino4903de02010-09-16 11:01:32 -03003833 if (handler_is_async(cmd)) {
Adam Litke940cc302010-01-25 12:18:44 -06003834 user_async_cmd_handler(mon, cmd, qdict);
Luiz Capitulino9e807212010-09-16 10:58:59 -03003835 } else if (handler_is_qobject(cmd)) {
Luiz Capitulinode79ba62010-09-16 11:06:11 -03003836 QObject *data = NULL;
3837
3838 /* XXX: ignores the error code */
3839 cmd->mhandler.cmd_new(mon, qdict, &data);
3840 assert(!monitor_has_error(mon));
3841 if (data) {
3842 cmd->user_print(mon, data);
3843 qobject_decref(data);
3844 }
Luiz Capitulino13917be2009-10-07 13:41:54 -03003845 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03003846 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003847 }
3848
Luiz Capitulino13917be2009-10-07 13:41:54 -03003849out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003850 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00003851}
3852
bellard81d09122004-07-14 17:21:37 +00003853static void cmd_completion(const char *name, const char *list)
3854{
3855 const char *p, *pstart;
3856 char cmd[128];
3857 int len;
3858
3859 p = list;
3860 for(;;) {
3861 pstart = p;
3862 p = strchr(p, '|');
3863 if (!p)
3864 p = pstart + strlen(pstart);
3865 len = p - pstart;
3866 if (len > sizeof(cmd) - 2)
3867 len = sizeof(cmd) - 2;
3868 memcpy(cmd, pstart, len);
3869 cmd[len] = '\0';
3870 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00003871 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00003872 }
3873 if (*p == '\0')
3874 break;
3875 p++;
3876 }
3877}
3878
3879static void file_completion(const char *input)
3880{
3881 DIR *ffs;
3882 struct dirent *d;
3883 char path[1024];
3884 char file[1024], file_prefix[1024];
3885 int input_path_len;
3886 const char *p;
3887
ths5fafdf22007-09-16 21:08:06 +00003888 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00003889 if (!p) {
3890 input_path_len = 0;
3891 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00003892 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00003893 } else {
3894 input_path_len = p - input + 1;
3895 memcpy(path, input, input_path_len);
3896 if (input_path_len > sizeof(path) - 1)
3897 input_path_len = sizeof(path) - 1;
3898 path[input_path_len] = '\0';
3899 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3900 }
3901#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00003902 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
3903 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00003904#endif
3905 ffs = opendir(path);
3906 if (!ffs)
3907 return;
3908 for(;;) {
3909 struct stat sb;
3910 d = readdir(ffs);
3911 if (!d)
3912 break;
Kusanagi Kouichi46c7fc12010-10-20 18:00:01 +09003913
3914 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
3915 continue;
3916 }
3917
bellard81d09122004-07-14 17:21:37 +00003918 if (strstart(d->d_name, file_prefix, NULL)) {
3919 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00003920 if (input_path_len < sizeof(file))
3921 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3922 d->d_name);
bellard81d09122004-07-14 17:21:37 +00003923 /* stat the file to find out if it's a directory.
3924 * In that case add a slash to speed up typing long paths
3925 */
Markus Armbrusterc951d9a2011-11-16 15:43:47 +01003926 if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) {
blueswir1363a37d2008-08-21 17:58:08 +00003927 pstrcat(file, sizeof(file), "/");
Markus Armbrusterc951d9a2011-11-16 15:43:47 +01003928 }
aliguori731b0362009-03-05 23:01:42 +00003929 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00003930 }
3931 }
3932 closedir(ffs);
3933}
3934
aliguori51de9762009-03-05 23:00:43 +00003935static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00003936{
aliguori51de9762009-03-05 23:00:43 +00003937 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00003938 const char *input = opaque;
3939
3940 if (input[0] == '\0' ||
3941 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00003942 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00003943 }
3944}
3945
3946/* NOTE: this parser is an approximate form of the real command parser */
3947static void parse_cmdline(const char *cmdline,
3948 int *pnb_args, char **args)
3949{
3950 const char *p;
3951 int nb_args, ret;
3952 char buf[1024];
3953
3954 p = cmdline;
3955 nb_args = 0;
3956 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00003957 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00003958 p++;
3959 if (*p == '\0')
3960 break;
3961 if (nb_args >= MAX_ARGS)
3962 break;
3963 ret = get_str(buf, sizeof(buf), &p);
Anthony Liguori7267c092011-08-20 22:09:37 -05003964 args[nb_args] = g_strdup(buf);
bellard81d09122004-07-14 17:21:37 +00003965 nb_args++;
3966 if (ret < 0)
3967 break;
3968 }
3969 *pnb_args = nb_args;
3970}
3971
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003972static const char *next_arg_type(const char *typestr)
3973{
3974 const char *p = strchr(typestr, ':');
3975 return (p != NULL ? ++p : typestr);
3976}
3977
aliguori4c36ba32009-03-05 23:01:37 +00003978static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00003979{
3980 const char *cmdname;
3981 char *args[MAX_ARGS];
3982 int nb_args, i, len;
3983 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05003984 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00003985 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00003986
3987 parse_cmdline(cmdline, &nb_args, args);
3988#ifdef DEBUG_COMPLETION
3989 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00003990 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00003991 }
3992#endif
3993
3994 /* if the line ends with a space, it means we want to complete the
3995 next arg */
3996 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00003997 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
Jan Kiszka03a63482010-06-16 00:38:33 +02003998 if (nb_args >= MAX_ARGS) {
3999 goto cleanup;
4000 }
Anthony Liguori7267c092011-08-20 22:09:37 -05004001 args[nb_args++] = g_strdup("");
bellard81d09122004-07-14 17:21:37 +00004002 }
4003 if (nb_args <= 1) {
4004 /* command completion */
4005 if (nb_args == 0)
4006 cmdname = "";
4007 else
4008 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00004009 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00004010 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00004011 cmd_completion(cmdname, cmd->name);
4012 }
4013 } else {
4014 /* find the command */
Jan Kiszka03a63482010-06-16 00:38:33 +02004015 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4016 if (compare_cmd(args[0], cmd->name)) {
4017 break;
4018 }
bellard81d09122004-07-14 17:21:37 +00004019 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004020 if (!cmd->name) {
4021 goto cleanup;
4022 }
4023
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004024 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00004025 for(i = 0; i < nb_args - 2; i++) {
4026 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004027 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004028 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004029 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004030 }
4031 }
4032 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00004033 if (*ptype == '-' && ptype[1] != '\0') {
Jan Kiszka3b6dbf22010-06-16 00:38:34 +02004034 ptype = next_arg_type(ptype);
Blue Swirl2a1704a2009-08-23 20:10:28 +00004035 }
bellard81d09122004-07-14 17:21:37 +00004036 switch(*ptype) {
4037 case 'F':
4038 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00004039 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004040 file_completion(str);
4041 break;
4042 case 'B':
4043 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00004044 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004045 bdrv_iterate(block_completion_it, (void *)str);
4046 break;
bellard7fe48482004-10-09 18:08:01 +00004047 case 's':
4048 /* XXX: more generic ? */
4049 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00004050 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00004051 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4052 cmd_completion(str, cmd->name);
4053 }
bellard64866c32006-05-07 18:03:31 +00004054 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00004055 char *sep = strrchr(str, '-');
4056 if (sep)
4057 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00004058 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00004059 for(key = key_defs; key->name != NULL; key++) {
4060 cmd_completion(str, key->name);
4061 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02004062 } else if (!strcmp(cmd->name, "help|?")) {
4063 readline_set_completion_index(cur_mon->rs, strlen(str));
4064 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4065 cmd_completion(str, cmd->name);
4066 }
bellard7fe48482004-10-09 18:08:01 +00004067 }
4068 break;
bellard81d09122004-07-14 17:21:37 +00004069 default:
4070 break;
4071 }
4072 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004073
4074cleanup:
4075 for (i = 0; i < nb_args; i++) {
Anthony Liguori7267c092011-08-20 22:09:37 -05004076 g_free(args[i]);
Jan Kiszka03a63482010-06-16 00:38:33 +02004077 }
bellard81d09122004-07-14 17:21:37 +00004078}
4079
aliguori731b0362009-03-05 23:01:42 +00004080static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004081{
aliguori731b0362009-03-05 23:01:42 +00004082 Monitor *mon = opaque;
4083
Jan Kiszkac62313b2009-12-04 14:05:29 +01004084 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00004085}
4086
Luiz Capitulino09069b12010-02-04 18:10:06 -02004087static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4088{
4089 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4090 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4091}
4092
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004093/*
Luiz Capitulino4af91932010-06-22 11:44:05 -03004094 * Argument validation rules:
4095 *
4096 * 1. The argument must exist in cmd_args qdict
4097 * 2. The argument type must be the expected one
4098 *
4099 * Special case: If the argument doesn't exist in cmd_args and
4100 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4101 * checking is skipped for it.
4102 */
4103static int check_client_args_type(const QDict *client_args,
4104 const QDict *cmd_args, int flags)
4105{
4106 const QDictEntry *ent;
4107
4108 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4109 QObject *obj;
4110 QString *arg_type;
4111 const QObject *client_arg = qdict_entry_value(ent);
4112 const char *client_arg_name = qdict_entry_key(ent);
4113
4114 obj = qdict_get(cmd_args, client_arg_name);
4115 if (!obj) {
4116 if (flags & QMP_ACCEPT_UNKNOWNS) {
4117 /* handler accepts unknowns */
4118 continue;
4119 }
4120 /* client arg doesn't exist */
4121 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4122 return -1;
4123 }
4124
4125 arg_type = qobject_to_qstring(obj);
4126 assert(arg_type != NULL);
4127
4128 /* check if argument's type is correct */
4129 switch (qstring_get_str(arg_type)[0]) {
4130 case 'F':
4131 case 'B':
4132 case 's':
4133 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4134 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4135 "string");
4136 return -1;
4137 }
4138 break;
4139 case 'i':
4140 case 'l':
4141 case 'M':
Jes Sorensendbc0c672010-10-21 17:15:47 +02004142 case 'o':
Luiz Capitulino4af91932010-06-22 11:44:05 -03004143 if (qobject_type(client_arg) != QTYPE_QINT) {
4144 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4145 "int");
4146 return -1;
4147 }
4148 break;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004149 case 'T':
4150 if (qobject_type(client_arg) != QTYPE_QINT &&
4151 qobject_type(client_arg) != QTYPE_QFLOAT) {
4152 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4153 "number");
4154 return -1;
4155 }
4156 break;
4157 case 'b':
4158 case '-':
4159 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4160 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4161 "bool");
4162 return -1;
4163 }
4164 break;
4165 case 'O':
4166 assert(flags & QMP_ACCEPT_UNKNOWNS);
4167 break;
Paolo Bonzinib9f89782012-03-22 12:51:11 +01004168 case 'q':
4169 /* Any QObject can be passed. */
4170 break;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004171 case '/':
4172 case '.':
4173 /*
4174 * These types are not supported by QMP and thus are not
4175 * handled here. Fall through.
4176 */
4177 default:
4178 abort();
4179 }
4180 }
4181
4182 return 0;
4183}
4184
4185/*
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004186 * - Check if the client has passed all mandatory args
4187 * - Set special flags for argument validation
4188 */
4189static int check_mandatory_args(const QDict *cmd_args,
4190 const QDict *client_args, int *flags)
4191{
4192 const QDictEntry *ent;
4193
4194 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4195 const char *cmd_arg_name = qdict_entry_key(ent);
4196 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4197 assert(type != NULL);
4198
4199 if (qstring_get_str(type)[0] == 'O') {
4200 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4201 *flags |= QMP_ACCEPT_UNKNOWNS;
4202 } else if (qstring_get_str(type)[0] != '-' &&
4203 qstring_get_str(type)[1] != '?' &&
4204 !qdict_haskey(client_args, cmd_arg_name)) {
4205 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4206 return -1;
4207 }
4208 }
4209
4210 return 0;
4211}
4212
4213static QDict *qdict_from_args_type(const char *args_type)
4214{
4215 int i;
4216 QDict *qdict;
4217 QString *key, *type, *cur_qs;
4218
4219 assert(args_type != NULL);
4220
4221 qdict = qdict_new();
4222
4223 if (args_type == NULL || args_type[0] == '\0') {
4224 /* no args, empty qdict */
4225 goto out;
4226 }
4227
4228 key = qstring_new();
4229 type = qstring_new();
4230
4231 cur_qs = key;
4232
4233 for (i = 0;; i++) {
4234 switch (args_type[i]) {
4235 case ',':
4236 case '\0':
4237 qdict_put(qdict, qstring_get_str(key), type);
4238 QDECREF(key);
4239 if (args_type[i] == '\0') {
4240 goto out;
4241 }
4242 type = qstring_new(); /* qdict has ref */
4243 cur_qs = key = qstring_new();
4244 break;
4245 case ':':
4246 cur_qs = type;
4247 break;
4248 default:
4249 qstring_append_chr(cur_qs, args_type[i]);
4250 break;
4251 }
4252 }
4253
4254out:
4255 return qdict;
4256}
4257
4258/*
4259 * Client argument checking rules:
4260 *
4261 * 1. Client must provide all mandatory arguments
Luiz Capitulino4af91932010-06-22 11:44:05 -03004262 * 2. Each argument provided by the client must be expected
4263 * 3. Each argument provided by the client must have the type expected
4264 * by the command
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004265 */
4266static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4267{
4268 int flags, err;
4269 QDict *cmd_args;
4270
4271 cmd_args = qdict_from_args_type(cmd->args_type);
4272
4273 flags = 0;
4274 err = check_mandatory_args(cmd_args, client_args, &flags);
4275 if (err) {
4276 goto out;
4277 }
4278
Luiz Capitulino4af91932010-06-22 11:44:05 -03004279 err = check_client_args_type(client_args, cmd_args, flags);
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004280
4281out:
4282 QDECREF(cmd_args);
4283 return err;
4284}
4285
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004286/*
4287 * Input object checking rules
4288 *
4289 * 1. Input object must be a dict
4290 * 2. The "execute" key must exist
4291 * 3. The "execute" key must be a string
4292 * 4. If the "arguments" key exists, it must be a dict
4293 * 5. If the "id" key exists, it can be anything (ie. json-value)
4294 * 6. Any argument not listed above is considered invalid
4295 */
4296static QDict *qmp_check_input_obj(QObject *input_obj)
4297{
4298 const QDictEntry *ent;
4299 int has_exec_key = 0;
4300 QDict *input_dict;
4301
4302 if (qobject_type(input_obj) != QTYPE_QDICT) {
4303 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4304 return NULL;
4305 }
4306
4307 input_dict = qobject_to_qdict(input_obj);
4308
4309 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4310 const char *arg_name = qdict_entry_key(ent);
4311 const QObject *arg_obj = qdict_entry_value(ent);
4312
4313 if (!strcmp(arg_name, "execute")) {
4314 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4315 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4316 "string");
4317 return NULL;
4318 }
4319 has_exec_key = 1;
4320 } else if (!strcmp(arg_name, "arguments")) {
4321 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4322 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4323 "object");
4324 return NULL;
4325 }
4326 } else if (!strcmp(arg_name, "id")) {
4327 /* FIXME: check duplicated IDs for async commands */
4328 } else {
4329 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4330 return NULL;
4331 }
4332 }
4333
4334 if (!has_exec_key) {
4335 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4336 return NULL;
4337 }
4338
4339 return input_dict;
4340}
4341
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004342static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4343 const QDict *params)
4344{
4345 int ret;
4346 QObject *data = NULL;
4347
4348 mon_print_count_init(mon);
4349
4350 ret = cmd->mhandler.cmd_new(mon, params, &data);
4351 handler_audit(mon, cmd, ret);
4352 monitor_protocol_emitter(mon, data);
4353 qobject_decref(data);
4354}
4355
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004356static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4357{
4358 int err;
4359 QObject *obj;
4360 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004361 const mon_cmd_t *cmd;
Luiz Capitulino40e5a012011-10-21 16:15:31 -02004362 const char *cmd_name;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004363 Monitor *mon = cur_mon;
4364
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004365 args = input = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004366
4367 obj = json_parser_parse(tokens, NULL);
4368 if (!obj) {
4369 // FIXME: should be triggered in json_parser_parse()
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004370 qerror_report(QERR_JSON_PARSING);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004371 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004372 }
4373
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004374 input = qmp_check_input_obj(obj);
4375 if (!input) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004376 qobject_decref(obj);
4377 goto err_out;
4378 }
4379
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004380 mon->mc->id = qdict_get(input, "id");
4381 qobject_incref(mon->mc->id);
4382
Luiz Capitulino0bbab462010-05-31 17:32:50 -03004383 cmd_name = qdict_get_str(input, "execute");
Stefan Hajnoczi89bd8202011-09-23 08:23:06 +01004384 trace_handle_qmp_command(mon, cmd_name);
Luiz Capitulino09069b12010-02-04 18:10:06 -02004385 if (invalid_qmp_mode(mon, cmd_name)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004386 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004387 goto err_out;
Luiz Capitulino09069b12010-02-04 18:10:06 -02004388 }
4389
Anthony Liguorie3193602011-09-02 12:34:47 -05004390 cmd = qmp_find_cmd(cmd_name);
Luiz Capitulinod1249ea2010-09-13 14:44:27 -03004391 if (!cmd) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004392 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004393 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004394 }
4395
4396 obj = qdict_get(input, "arguments");
4397 if (!obj) {
4398 args = qdict_new();
4399 } else {
4400 args = qobject_to_qdict(obj);
4401 QINCREF(args);
4402 }
4403
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004404 err = qmp_check_client_args(cmd, args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004405 if (err < 0) {
4406 goto err_out;
4407 }
4408
Luiz Capitulino40e5a012011-10-21 16:15:31 -02004409 if (handler_is_async(cmd)) {
Luiz Capitulino5af7bba2010-06-22 19:10:46 -03004410 err = qmp_async_cmd_handler(mon, cmd, args);
4411 if (err) {
4412 /* emit the error response */
4413 goto err_out;
4414 }
Adam Litke940cc302010-01-25 12:18:44 -06004415 } else {
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004416 qmp_call_cmd(mon, cmd, args);
Adam Litke940cc302010-01-25 12:18:44 -06004417 }
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004418
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004419 goto out;
4420
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004421err_out:
4422 monitor_protocol_emitter(mon, NULL);
4423out:
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004424 QDECREF(input);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004425 QDECREF(args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004426}
4427
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004428/**
4429 * monitor_control_read(): Read and handle QMP input
4430 */
4431static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4432{
4433 Monitor *old_mon = cur_mon;
4434
4435 cur_mon = opaque;
4436
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004437 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004438
4439 cur_mon = old_mon;
4440}
4441
aliguori731b0362009-03-05 23:01:42 +00004442static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004443{
aliguori731b0362009-03-05 23:01:42 +00004444 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004445 int i;
aliguori376253e2009-03-05 23:01:23 +00004446
aliguori731b0362009-03-05 23:01:42 +00004447 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004448
aliguoricde76ee2009-03-05 23:01:51 +00004449 if (cur_mon->rs) {
4450 for (i = 0; i < size; i++)
4451 readline_handle_byte(cur_mon->rs, buf[i]);
4452 } else {
4453 if (size == 0 || buf[size - 1] != 0)
4454 monitor_printf(cur_mon, "corrupted command\n");
4455 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004456 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00004457 }
aliguori731b0362009-03-05 23:01:42 +00004458
4459 cur_mon = old_mon;
4460}
aliguorid8f44602008-10-06 13:52:44 +00004461
aliguori376253e2009-03-05 23:01:23 +00004462static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004463{
aliguori731b0362009-03-05 23:01:42 +00004464 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004465 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00004466 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00004467}
4468
aliguoricde76ee2009-03-05 23:01:51 +00004469int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004470{
aliguoricde76ee2009-03-05 23:01:51 +00004471 if (!mon->rs)
4472 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00004473 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00004474 return 0;
aliguorid8f44602008-10-06 13:52:44 +00004475}
4476
aliguori376253e2009-03-05 23:01:23 +00004477void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004478{
aliguoricde76ee2009-03-05 23:01:51 +00004479 if (!mon->rs)
4480 return;
aliguori731b0362009-03-05 23:01:42 +00004481 if (--mon->suspend_cnt == 0)
4482 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00004483}
4484
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004485static QObject *get_qmp_greeting(void)
4486{
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03004487 QObject *ver = NULL;
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004488
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03004489 qmp_marshal_input_query_version(NULL, NULL, &ver);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004490 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4491}
4492
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004493/**
4494 * monitor_control_event(): Print QMP gretting
4495 */
4496static void monitor_control_event(void *opaque, int event)
4497{
Luiz Capitulino47116d12010-02-08 17:01:30 -02004498 QObject *data;
4499 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004500
Luiz Capitulino47116d12010-02-08 17:01:30 -02004501 switch (event) {
4502 case CHR_EVENT_OPENED:
Luiz Capitulino4a7e1192010-02-04 18:10:05 -02004503 mon->mc->command_mode = 0;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004504 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004505 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004506 monitor_json_emitter(mon, data);
4507 qobject_decref(data);
Luiz Capitulino47116d12010-02-08 17:01:30 -02004508 break;
4509 case CHR_EVENT_CLOSED:
4510 json_message_parser_destroy(&mon->mc->parser);
4511 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004512 }
4513}
4514
aliguori731b0362009-03-05 23:01:42 +00004515static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00004516{
aliguori376253e2009-03-05 23:01:23 +00004517 Monitor *mon = opaque;
4518
aliguori2724b182009-03-05 23:01:47 +00004519 switch (event) {
4520 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004521 mon->mux_out = 0;
4522 if (mon->reset_seen) {
4523 readline_restart(mon->rs);
4524 monitor_resume(mon);
4525 monitor_flush(mon);
4526 } else {
4527 mon->suspend_cnt = 0;
4528 }
aliguori2724b182009-03-05 23:01:47 +00004529 break;
ths86e94de2007-01-05 22:01:59 +00004530
aliguori2724b182009-03-05 23:01:47 +00004531 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004532 if (mon->reset_seen) {
4533 if (mon->suspend_cnt == 0) {
4534 monitor_printf(mon, "\n");
4535 }
4536 monitor_flush(mon);
4537 monitor_suspend(mon);
4538 } else {
4539 mon->suspend_cnt++;
4540 }
4541 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00004542 break;
4543
Amit Shahb6b8df52009-10-07 18:31:16 +05304544 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00004545 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4546 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004547 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00004548 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004549 }
4550 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00004551 break;
4552 }
ths86e94de2007-01-05 22:01:59 +00004553}
4554
Wayne Xia816f8922011-10-12 11:32:41 +08004555static int
4556compare_mon_cmd(const void *a, const void *b)
4557{
4558 return strcmp(((const mon_cmd_t *)a)->name,
4559 ((const mon_cmd_t *)b)->name);
4560}
4561
4562static void sortcmdlist(void)
4563{
4564 int array_num;
4565 int elem_size = sizeof(mon_cmd_t);
4566
4567 array_num = sizeof(mon_cmds)/elem_size-1;
4568 qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd);
4569
4570 array_num = sizeof(info_cmds)/elem_size-1;
4571 qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd);
4572}
4573
aliguori76655d62009-03-06 20:27:37 +00004574
4575/*
4576 * Local variables:
4577 * c-indent-level: 4
4578 * c-basic-offset: 4
4579 * tab-width: 8
4580 * End:
4581 */
4582
aliguori731b0362009-03-05 23:01:42 +00004583void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004584{
aliguori731b0362009-03-05 23:01:42 +00004585 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00004586 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00004587
4588 if (is_first_init) {
Paolo Bonzini74475452011-03-11 16:47:48 +01004589 key_timer = qemu_new_timer_ns(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00004590 is_first_init = 0;
4591 }
aliguori87127162009-03-05 23:01:29 +00004592
Anthony Liguori7267c092011-08-20 22:09:37 -05004593 mon = g_malloc0(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00004594
aliguori87127162009-03-05 23:01:29 +00004595 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00004596 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00004597 if (flags & MONITOR_USE_READLINE) {
4598 mon->rs = readline_init(mon, monitor_find_completion);
4599 monitor_read_command(mon, 0);
4600 }
aliguori87127162009-03-05 23:01:29 +00004601
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004602 if (monitor_ctrl_mode(mon)) {
Anthony Liguori7267c092011-08-20 22:09:37 -05004603 mon->mc = g_malloc0(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004604 /* Control mode requires special handlers */
4605 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4606 monitor_control_event, mon);
Anthony Liguori15f31512011-08-15 11:17:35 -05004607 qemu_chr_fe_set_echo(chr, true);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004608 } else {
4609 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4610 monitor_event, mon);
4611 }
aliguori87127162009-03-05 23:01:29 +00004612
Blue Swirl72cf2d42009-09-12 07:36:22 +00004613 QLIST_INSERT_HEAD(&mon_list, mon, entry);
Markus Armbruster8631b602010-02-18 11:41:55 +01004614 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4615 default_mon = mon;
Wayne Xia816f8922011-10-12 11:32:41 +08004616
4617 sortcmdlist();
bellard7e2515e2004-08-01 21:52:19 +00004618}
4619
aliguori376253e2009-03-05 23:01:23 +00004620static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004621{
aliguoribb5fc202009-03-05 23:01:15 +00004622 BlockDriverState *bs = opaque;
4623 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00004624
aliguoribb5fc202009-03-05 23:01:15 +00004625 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00004626 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00004627 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00004628 }
aliguori731b0362009-03-05 23:01:42 +00004629 if (mon->password_completion_cb)
4630 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00004631
aliguori731b0362009-03-05 23:01:42 +00004632 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00004633}
aliguoric0f4ce72009-03-05 23:01:01 +00004634
Anthony Liguori7060b472011-09-02 12:34:50 -05004635ReadLineState *monitor_get_rs(Monitor *mon)
4636{
4637 return mon->rs;
4638}
4639
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004640int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4641 BlockDriverCompletionFunc *completion_cb,
4642 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00004643{
aliguoricde76ee2009-03-05 23:01:51 +00004644 int err;
4645
aliguoribb5fc202009-03-05 23:01:15 +00004646 if (!bdrv_key_required(bs)) {
4647 if (completion_cb)
4648 completion_cb(opaque, 0);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004649 return 0;
aliguoribb5fc202009-03-05 23:01:15 +00004650 }
aliguoric0f4ce72009-03-05 23:01:01 +00004651
Luiz Capitulino94171e12009-12-07 21:37:00 +01004652 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino903a8812011-12-13 17:18:30 -02004653 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs),
4654 bdrv_get_encrypted_filename(bs));
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004655 return -1;
Luiz Capitulino94171e12009-12-07 21:37:00 +01004656 }
4657
aliguori376253e2009-03-05 23:01:23 +00004658 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4659 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00004660
aliguori731b0362009-03-05 23:01:42 +00004661 mon->password_completion_cb = completion_cb;
4662 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00004663
aliguoricde76ee2009-03-05 23:01:51 +00004664 err = monitor_read_password(mon, bdrv_password_cb, bs);
4665
4666 if (err && completion_cb)
4667 completion_cb(opaque, err);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004668
4669 return err;
aliguoric0f4ce72009-03-05 23:01:01 +00004670}
Luiz Capitulinoe42e8182011-11-22 17:58:31 -02004671
4672int monitor_read_block_device_key(Monitor *mon, const char *device,
4673 BlockDriverCompletionFunc *completion_cb,
4674 void *opaque)
4675{
4676 BlockDriverState *bs;
4677
4678 bs = bdrv_find(device);
4679 if (!bs) {
4680 monitor_printf(mon, "Device not found %s\n", device);
4681 return -1;
4682 }
4683
4684 return monitor_read_bdrv_key_start(mon, bs, completion_cb, opaque);
4685}