blob: 75fd4cf5e10d882f83d27dd27c1caf4ac18c75bb [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
Daniel P. Berrange48608532012-05-21 17:59:51 +0100425
426static const char *monitor_event_names[] = {
427 [QEVENT_SHUTDOWN] = "SHUTDOWN",
428 [QEVENT_RESET] = "RESET",
429 [QEVENT_POWERDOWN] = "POWERDOWN",
430 [QEVENT_STOP] = "STOP",
431 [QEVENT_RESUME] = "RESUME",
432 [QEVENT_VNC_CONNECTED] = "VNC_CONNECTED",
433 [QEVENT_VNC_INITIALIZED] = "VNC_INITIALIZED",
434 [QEVENT_VNC_DISCONNECTED] = "VNC_DISCONNECTED",
435 [QEVENT_BLOCK_IO_ERROR] = "BLOCK_IO_ERROR",
436 [QEVENT_RTC_CHANGE] = "RTC_CHANGE",
437 [QEVENT_WATCHDOG] = "WATCHDOG",
438 [QEVENT_SPICE_CONNECTED] = "SPICE_CONNECTED",
439 [QEVENT_SPICE_INITIALIZED] = "SPICE_INITIALIZED",
440 [QEVENT_SPICE_DISCONNECTED] = "SPICE_DISCONNECTED",
441 [QEVENT_BLOCK_JOB_COMPLETED] = "BLOCK_JOB_COMPLETED",
442 [QEVENT_BLOCK_JOB_CANCELLED] = "BLOCK_JOB_CANCELLED",
443 [QEVENT_DEVICE_TRAY_MOVED] = "DEVICE_TRAY_MOVED",
444 [QEVENT_SUSPEND] = "SUSPEND",
445 [QEVENT_WAKEUP] = "WAKEUP",
Daniel P. Berrange973603a2012-06-14 18:12:56 +0100446 [QEVENT_BALLOON_CHANGE] = "BALLOON_CHANGE",
Daniel P. Berrange48608532012-05-21 17:59:51 +0100447};
448QEMU_BUILD_BUG_ON(ARRAY_SIZE(monitor_event_names) != QEVENT_MAX)
449
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200450/**
451 * monitor_protocol_event(): Generate a Monitor event
452 *
453 * Event-specific data can be emitted through the (optional) 'data' parameter.
454 */
455void monitor_protocol_event(MonitorEvent event, QObject *data)
456{
457 QDict *qmp;
458 const char *event_name;
Adam Litkef039a562010-01-15 08:34:02 -0600459 Monitor *mon;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200460
Blue Swirl242cd002009-12-04 18:05:45 +0000461 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200462
Daniel P. Berrange48608532012-05-21 17:59:51 +0100463 event_name = monitor_event_names[event];
464 assert(event_name != NULL);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200465
466 qmp = qdict_new();
467 timestamp_put(qmp);
468 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200469 if (data) {
470 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200471 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200472 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200473
Adam Litkef039a562010-01-15 08:34:02 -0600474 QLIST_FOREACH(mon, &mon_list, entry) {
Luiz Capitulino09069b12010-02-04 18:10:06 -0200475 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
Luiz Capitulino23fabed2010-01-20 10:37:59 -0200476 monitor_json_emitter(mon, QOBJECT(qmp));
477 }
Adam Litkef039a562010-01-15 08:34:02 -0600478 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200479 QDECREF(qmp);
480}
481
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200482static int do_qmp_capabilities(Monitor *mon, const QDict *params,
483 QObject **ret_data)
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200484{
485 /* Will setup QMP capabilities in the future */
486 if (monitor_ctrl_mode(mon)) {
487 mon->mc->command_mode = 1;
488 }
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200489
490 return 0;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200491}
492
Luiz Capitulino0268d972010-10-22 10:08:02 -0200493static void handle_user_command(Monitor *mon, const char *cmdline);
494
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200495char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index,
496 int64_t cpu_index, Error **errp)
Luiz Capitulino0268d972010-10-22 10:08:02 -0200497{
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200498 char *output = NULL;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200499 Monitor *old_mon, hmp;
500 CharDriverState mchar;
501
502 memset(&hmp, 0, sizeof(hmp));
503 qemu_chr_init_mem(&mchar);
504 hmp.chr = &mchar;
505
506 old_mon = cur_mon;
507 cur_mon = &hmp;
508
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200509 if (has_cpu_index) {
510 int ret = monitor_set_cpu(cpu_index);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200511 if (ret < 0) {
512 cur_mon = old_mon;
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200513 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
514 "a CPU number");
Luiz Capitulino0268d972010-10-22 10:08:02 -0200515 goto out;
516 }
517 }
518
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200519 handle_user_command(&hmp, command_line);
Luiz Capitulino0268d972010-10-22 10:08:02 -0200520 cur_mon = old_mon;
521
522 if (qemu_chr_mem_osize(hmp.chr) > 0) {
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200523 QString *str = qemu_chr_mem_to_qs(hmp.chr);
524 output = g_strdup(qstring_get_str(str));
525 QDECREF(str);
526 } else {
527 output = g_strdup("");
Luiz Capitulino0268d972010-10-22 10:08:02 -0200528 }
529
530out:
531 qemu_chr_close_mem(hmp.chr);
Luiz Capitulinod51a67b2011-11-25 17:52:45 -0200532 return output;
Luiz Capitulino0268d972010-10-22 10:08:02 -0200533}
534
bellard9dc39cb2004-03-14 21:38:27 +0000535static int compare_cmd(const char *name, const char *list)
536{
537 const char *p, *pstart;
538 int len;
539 len = strlen(name);
540 p = list;
541 for(;;) {
542 pstart = p;
543 p = strchr(p, '|');
544 if (!p)
545 p = pstart + strlen(pstart);
546 if ((p - pstart) == len && !memcmp(pstart, name, len))
547 return 1;
548 if (*p == '\0')
549 break;
550 p++;
551 }
552 return 0;
553}
554
Anthony Liguoric227f092009-10-01 16:12:16 -0500555static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000556 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000557{
Anthony Liguoric227f092009-10-01 16:12:16 -0500558 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000559
560 for(cmd = cmds; cmd->name != NULL; cmd++) {
561 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000562 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
563 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000564 }
565}
566
aliguori376253e2009-03-05 23:01:23 +0000567static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000568{
569 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000570 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000571 } else {
aliguori376253e2009-03-05 23:01:23 +0000572 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000573 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000574 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000575 monitor_printf(mon, "Log items (comma separated):\n");
576 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000577 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000578 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000579 }
580 }
bellard9dc39cb2004-03-14 21:38:27 +0000581 }
582}
583
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300584static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300585{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300586 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300587}
588
Lluísfc764102011-08-31 20:31:18 +0200589static void do_trace_event_set_state(Monitor *mon, const QDict *qdict)
Prerna Saxena22890ab2010-06-24 17:04:53 +0530590{
591 const char *tp_name = qdict_get_str(qdict, "name");
592 bool new_state = qdict_get_bool(qdict, "option");
Lluísfc764102011-08-31 20:31:18 +0200593 int ret = trace_event_set_state(tp_name, new_state);
Blue Swirlf871d682010-10-13 19:14:29 +0000594
595 if (!ret) {
596 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
597 }
Prerna Saxena22890ab2010-06-24 17:04:53 +0530598}
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100599
Michael Rothc45a8162011-10-02 08:44:37 -0500600#ifdef CONFIG_TRACE_SIMPLE
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100601static void do_trace_file(Monitor *mon, const QDict *qdict)
602{
603 const char *op = qdict_get_try_str(qdict, "op");
604 const char *arg = qdict_get_try_str(qdict, "arg");
605
606 if (!op) {
607 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
608 } else if (!strcmp(op, "on")) {
609 st_set_trace_file_enabled(true);
610 } else if (!strcmp(op, "off")) {
611 st_set_trace_file_enabled(false);
612 } else if (!strcmp(op, "flush")) {
613 st_flush_trace_buffer();
614 } else if (!strcmp(op, "set")) {
615 if (arg) {
616 st_set_trace_file(arg);
617 }
618 } else {
619 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
620 help_cmd(mon, "trace-file");
621 }
622}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530623#endif
624
Adam Litke940cc302010-01-25 12:18:44 -0600625static void user_monitor_complete(void *opaque, QObject *ret_data)
626{
627 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
628
629 if (ret_data) {
630 data->user_print(data->mon, ret_data);
631 }
632 monitor_resume(data->mon);
Anthony Liguori7267c092011-08-20 22:09:37 -0500633 g_free(data);
Adam Litke940cc302010-01-25 12:18:44 -0600634}
635
636static void qmp_monitor_complete(void *opaque, QObject *ret_data)
637{
638 monitor_protocol_emitter(opaque, ret_data);
639}
640
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300641static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
642 const QDict *params)
Adam Litke940cc302010-01-25 12:18:44 -0600643{
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300644 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
Adam Litke940cc302010-01-25 12:18:44 -0600645}
646
Adam Litke940cc302010-01-25 12:18:44 -0600647static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
648 const QDict *params)
649{
650 int ret;
651
Anthony Liguori7267c092011-08-20 22:09:37 -0500652 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
Adam Litke940cc302010-01-25 12:18:44 -0600653 cb_data->mon = mon;
654 cb_data->user_print = cmd->user_print;
655 monitor_suspend(mon);
656 ret = cmd->mhandler.cmd_async(mon, params,
657 user_monitor_complete, cb_data);
658 if (ret < 0) {
659 monitor_resume(mon);
Anthony Liguori7267c092011-08-20 22:09:37 -0500660 g_free(cb_data);
Adam Litke940cc302010-01-25 12:18:44 -0600661 }
662}
663
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300664static void do_info(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000665{
Anthony Liguoric227f092009-10-01 16:12:16 -0500666 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300667 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000668
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200669 if (!item) {
bellard9dc39cb2004-03-14 21:38:27 +0000670 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200671 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300672
673 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000674 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300675 break;
bellard9dc39cb2004-03-14 21:38:27 +0000676 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300677
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200678 if (cmd->name == NULL) {
Luiz Capitulino13c74252009-10-07 13:41:55 -0300679 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200680 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300681
Luiz Capitulinob5c30582011-10-21 16:24:28 -0200682 cmd->mhandler.info(mon);
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300683 return;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300684
685help:
686 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000687}
688
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300689CommandInfoList *qmp_query_commands(Error **errp)
bellard9bc9d1c2004-10-10 15:15:51 +0000690{
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300691 CommandInfoList *info, *cmd_list = NULL;
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200692 const mon_cmd_t *cmd;
693
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300694 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino40e5a012011-10-21 16:15:31 -0200695 info = g_malloc0(sizeof(*info));
696 info->value = g_malloc0(sizeof(*info->value));
697 info->value->name = g_strdup(cmd->name);
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200698
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300699 info->next = cmd_list;
700 cmd_list = info;
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200701 }
702
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300703 return cmd_list;
thsa36e69d2007-12-02 05:18:19 +0000704}
705
Daniel P. Berrange48608532012-05-21 17:59:51 +0100706EventInfoList *qmp_query_events(Error **errp)
707{
708 EventInfoList *info, *ev_list = NULL;
709 MonitorEvent e;
710
711 for (e = 0 ; e < QEVENT_MAX ; e++) {
712 const char *event_name = monitor_event_names[e];
713 assert(event_name != NULL);
714 info = g_malloc0(sizeof(*info));
715 info->value = g_malloc0(sizeof(*info->value));
716 info->value->name = g_strdup(event_name);
717
718 info->next = ev_list;
719 ev_list = info;
720 }
721
722 return ev_list;
723}
724
Luiz Capitulinob025c8b2011-10-06 14:02:57 -0300725/* set the current CPU defined by the user */
726int monitor_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000727{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100728 CPUArchState *env;
bellard6a00d602005-11-21 23:25:50 +0000729
730 for(env = first_cpu; env != NULL; env = env->next_cpu) {
731 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000732 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000733 return 0;
734 }
735 }
736 return -1;
737}
738
Andreas Färber9349b4f2012-03-14 01:38:32 +0100739static CPUArchState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000740{
aliguori731b0362009-03-05 23:01:42 +0000741 if (!cur_mon->mon_cpu) {
Luiz Capitulinob025c8b2011-10-06 14:02:57 -0300742 monitor_set_cpu(0);
bellard6a00d602005-11-21 23:25:50 +0000743 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300744 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000745 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000746}
747
Luiz Capitulino99b77962011-10-24 10:53:44 -0200748int monitor_get_cpu_index(void)
749{
750 return mon_get_cpu()->cpu_index;
751}
752
aliguori376253e2009-03-05 23:01:23 +0000753static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000754{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100755 CPUArchState *env;
bellard6a00d602005-11-21 23:25:50 +0000756 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +0000757#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000758 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000759 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000760#else
aliguori376253e2009-03-05 23:01:23 +0000761 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000762 0);
bellard9307c4c2004-04-04 12:57:25 +0000763#endif
764}
765
aliguori376253e2009-03-05 23:01:23 +0000766static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000767{
aliguori376253e2009-03-05 23:01:23 +0000768 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000769}
770
aliguori376253e2009-03-05 23:01:23 +0000771static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000772{
773 int i;
bellard7e2515e2004-08-01 21:52:19 +0000774 const char *str;
ths3b46e622007-09-17 08:09:54 +0000775
aliguoricde76ee2009-03-05 23:01:51 +0000776 if (!mon->rs)
777 return;
bellard7e2515e2004-08-01 21:52:19 +0000778 i = 0;
779 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000780 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000781 if (!str)
782 break;
aliguori376253e2009-03-05 23:01:23 +0000783 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000784 i++;
bellardaa455482004-04-04 13:07:25 +0000785 }
786}
787
j_mayer76a66252007-03-07 08:32:30 +0000788#if defined(TARGET_PPC)
789/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000790static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000791{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100792 CPUArchState *env;
j_mayer76a66252007-03-07 08:32:30 +0000793
794 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000795 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000796}
797#endif
798
Lluís6d8a7642011-08-31 20:30:43 +0200799#if defined(CONFIG_TRACE_SIMPLE)
Prerna Saxena22890ab2010-06-24 17:04:53 +0530800static void do_info_trace(Monitor *mon)
801{
802 st_print_trace((FILE *)mon, &monitor_fprintf);
803}
Lluís31965ae2011-08-31 20:31:24 +0200804#endif
Prerna Saxena22890ab2010-06-24 17:04:53 +0530805
Lluísfc764102011-08-31 20:31:18 +0200806static void do_trace_print_events(Monitor *mon)
Prerna Saxena22890ab2010-06-24 17:04:53 +0530807{
Lluísfc764102011-08-31 20:31:18 +0200808 trace_print_events((FILE *)mon, &monitor_fprintf);
Prerna Saxena22890ab2010-06-24 17:04:53 +0530809}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530810
Daniel P. Berrange13661082011-06-23 13:31:42 +0100811static int add_graphics_client(Monitor *mon, const QDict *qdict, QObject **ret_data)
812{
813 const char *protocol = qdict_get_str(qdict, "protocol");
814 const char *fdname = qdict_get_str(qdict, "fdname");
Daniel P. Berrange13661082011-06-23 13:31:42 +0100815 CharDriverState *s;
816
817 if (strcmp(protocol, "spice") == 0) {
Daniel P. Berrangef1f5f402012-02-13 13:43:08 +0000818 int fd = monitor_get_fd(mon, fdname);
819 int skipauth = qdict_get_try_bool(qdict, "skipauth", 0);
820 int tls = qdict_get_try_bool(qdict, "tls", 0);
Daniel P. Berrange13661082011-06-23 13:31:42 +0100821 if (!using_spice) {
822 /* correct one? spice isn't a device ,,, */
823 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
824 return -1;
825 }
Daniel P. Berrangef1f5f402012-02-13 13:43:08 +0000826 if (qemu_spice_display_add_client(fd, skipauth, tls) < 0) {
827 close(fd);
828 }
829 return 0;
TeLeManc62f6d12011-07-25 16:29:14 +0800830#ifdef CONFIG_VNC
Daniel P. Berrange13661082011-06-23 13:31:42 +0100831 } else if (strcmp(protocol, "vnc") == 0) {
832 int fd = monitor_get_fd(mon, fdname);
Jamie Iles860341f2011-08-10 15:18:42 +0100833 int skipauth = qdict_get_try_bool(qdict, "skipauth", 0);
Daniel P. Berrange13661082011-06-23 13:31:42 +0100834 vnc_display_add_client(NULL, fd, skipauth);
835 return 0;
TeLeManc62f6d12011-07-25 16:29:14 +0800836#endif
Daniel P. Berrange13661082011-06-23 13:31:42 +0100837 } else if ((s = qemu_chr_find(protocol)) != NULL) {
838 int fd = monitor_get_fd(mon, fdname);
839 if (qemu_chr_add_client(s, fd) < 0) {
840 qerror_report(QERR_ADD_CLIENT_FAILED);
841 return -1;
842 }
843 return 0;
844 }
845
846 qerror_report(QERR_INVALID_PARAMETER, "protocol");
847 return -1;
848}
849
Yonit Halperinedc5cb12011-10-17 10:03:18 +0200850static int client_migrate_info(Monitor *mon, const QDict *qdict,
851 MonitorCompletion cb, void *opaque)
Gerd Hoffmanne866e232010-04-23 13:28:21 +0200852{
853 const char *protocol = qdict_get_str(qdict, "protocol");
854 const char *hostname = qdict_get_str(qdict, "hostname");
855 const char *subject = qdict_get_try_str(qdict, "cert-subject");
856 int port = qdict_get_try_int(qdict, "port", -1);
857 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
858 int ret;
859
860 if (strcmp(protocol, "spice") == 0) {
861 if (!using_spice) {
862 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
863 return -1;
864 }
865
Yonit Halperin6ec5dae2012-03-18 09:42:39 +0200866 if (port == -1 && tls_port == -1) {
867 qerror_report(QERR_MISSING_PARAMETER, "port/tls-port");
868 return -1;
869 }
870
Yonit Halperinedc5cb12011-10-17 10:03:18 +0200871 ret = qemu_spice_migrate_info(hostname, port, tls_port, subject,
872 cb, opaque);
Gerd Hoffmanne866e232010-04-23 13:28:21 +0200873 if (ret != 0) {
874 qerror_report(QERR_UNDEFINED_ERROR);
875 return -1;
876 }
877 return 0;
878 }
879
880 qerror_report(QERR_INVALID_PARAMETER, "protocol");
881 return -1;
882}
883
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -0300884static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard59a983b2004-03-17 23:17:16 +0000885{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300886 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -0300887 return 0;
bellard59a983b2004-03-17 23:17:16 +0000888}
889
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300890static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +0000891{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300892 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +0000893}
894
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300895static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +0000896{
897 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300898 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +0000899
bellard9307c4c2004-04-04 12:57:25 +0000900 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +0000901 mask = 0;
902 } else {
bellard9307c4c2004-04-04 12:57:25 +0000903 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +0000904 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +0000905 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +0000906 return;
907 }
908 }
909 cpu_set_log(mask);
910}
911
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300912static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +0000913{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300914 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +0000915 if (!option || !strcmp(option, "on")) {
916 singlestep = 1;
917 } else if (!strcmp(option, "off")) {
918 singlestep = 0;
919 } else {
920 monitor_printf(mon, "unexpected option %s\n", option);
921 }
922}
923
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300924static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +0000925{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300926 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +0000927 if (!device)
928 device = "tcp::" DEFAULT_GDBSTUB_PORT;
929 if (gdbserver_start(device) < 0) {
930 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
931 device);
932 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +0000933 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +0000934 } else {
aliguori59030a82009-04-05 18:43:41 +0000935 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
936 device);
bellard8a7ddc32004-03-31 19:00:16 +0000937 }
938}
939
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300940static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +0100941{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300942 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +0100943 if (select_watchdog_action(action) == -1) {
944 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
945 }
946}
947
aliguori376253e2009-03-05 23:01:23 +0000948static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +0000949{
aliguori376253e2009-03-05 23:01:23 +0000950 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +0000951 switch(c) {
952 case '\'':
aliguori376253e2009-03-05 23:01:23 +0000953 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +0000954 break;
955 case '\\':
aliguori376253e2009-03-05 23:01:23 +0000956 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +0000957 break;
958 case '\n':
aliguori376253e2009-03-05 23:01:23 +0000959 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +0000960 break;
961 case '\r':
aliguori376253e2009-03-05 23:01:23 +0000962 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +0000963 break;
964 default:
965 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +0000966 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +0000967 } else {
aliguori376253e2009-03-05 23:01:23 +0000968 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +0000969 }
970 break;
971 }
aliguori376253e2009-03-05 23:01:23 +0000972 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +0000973}
974
aliguori376253e2009-03-05 23:01:23 +0000975static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -0500976 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +0000977{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100978 CPUArchState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +0000979 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +0000980 uint8_t buf[16];
981 uint64_t v;
982
983 if (format == 'i') {
984 int flags;
985 flags = 0;
bellard6a00d602005-11-21 23:25:50 +0000986 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +0000987#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +0000988 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +0000989 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +0000990 } else if (wsize == 4) {
991 flags = 0;
992 } else {
bellard6a15fd12006-04-12 21:07:07 +0000993 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +0000994 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +0000995 if (env) {
996#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +0000997 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +0000998 (env->segs[R_CS].flags & DESC_L_MASK))
999 flags = 2;
1000 else
1001#endif
1002 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1003 flags = 1;
1004 }
bellard4c27ba22004-04-25 18:05:08 +00001005 }
1006#endif
aliguori376253e2009-03-05 23:01:23 +00001007 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001008 return;
1009 }
1010
1011 len = wsize * count;
1012 if (wsize == 1)
1013 line_size = 8;
1014 else
1015 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001016 max_digits = 0;
1017
1018 switch(format) {
1019 case 'o':
1020 max_digits = (wsize * 8 + 2) / 3;
1021 break;
1022 default:
1023 case 'x':
1024 max_digits = (wsize * 8) / 4;
1025 break;
1026 case 'u':
1027 case 'd':
1028 max_digits = (wsize * 8 * 10 + 32) / 33;
1029 break;
1030 case 'c':
1031 wsize = 1;
1032 break;
1033 }
1034
1035 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001036 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001037 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001038 else
aliguori376253e2009-03-05 23:01:23 +00001039 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001040 l = len;
1041 if (l > line_size)
1042 l = line_size;
1043 if (is_physical) {
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001044 cpu_physical_memory_read(addr, buf, l);
bellard9307c4c2004-04-04 12:57:25 +00001045 } else {
bellard6a00d602005-11-21 23:25:50 +00001046 env = mon_get_cpu();
aliguoric8f79b62008-08-18 14:00:20 +00001047 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001048 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001049 break;
1050 }
bellard9307c4c2004-04-04 12:57:25 +00001051 }
ths5fafdf22007-09-16 21:08:06 +00001052 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001053 while (i < l) {
1054 switch(wsize) {
1055 default:
1056 case 1:
1057 v = ldub_raw(buf + i);
1058 break;
1059 case 2:
1060 v = lduw_raw(buf + i);
1061 break;
1062 case 4:
bellard92a31b12005-02-10 22:00:52 +00001063 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001064 break;
1065 case 8:
1066 v = ldq_raw(buf + i);
1067 break;
1068 }
aliguori376253e2009-03-05 23:01:23 +00001069 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001070 switch(format) {
1071 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001072 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001073 break;
1074 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001075 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001076 break;
1077 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001078 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001079 break;
1080 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001081 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001082 break;
1083 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001084 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001085 break;
1086 }
1087 i += wsize;
1088 }
aliguori376253e2009-03-05 23:01:23 +00001089 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001090 addr += l;
1091 len -= l;
1092 }
1093}
1094
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001095static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001096{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001097 int count = qdict_get_int(qdict, "count");
1098 int format = qdict_get_int(qdict, "format");
1099 int size = qdict_get_int(qdict, "size");
1100 target_long addr = qdict_get_int(qdict, "addr");
1101
aliguori376253e2009-03-05 23:01:23 +00001102 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001103}
1104
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001105static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001106{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001107 int count = qdict_get_int(qdict, "count");
1108 int format = qdict_get_int(qdict, "format");
1109 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001110 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001111
aliguori376253e2009-03-05 23:01:23 +00001112 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001113}
1114
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001115static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001116{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001117 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001118 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001119
blueswir17743e582007-09-24 18:39:04 +00001120#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +00001121 switch(format) {
1122 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001123 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +00001124 break;
1125 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001126 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +00001127 break;
1128 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001129 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +00001130 break;
1131 default:
1132 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001133 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +00001134 break;
1135 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001136 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001137 break;
1138 }
bellard92a31b12005-02-10 22:00:52 +00001139#else
1140 switch(format) {
1141 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001142 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +00001143 break;
1144 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001145 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +00001146 break;
1147 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001148 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +00001149 break;
1150 default:
1151 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001152 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +00001153 break;
1154 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001155 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +00001156 break;
1157 }
1158#endif
aliguori376253e2009-03-05 23:01:23 +00001159 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001160}
1161
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001162static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001163{
1164 uint32_t addr;
bellarde4cf1ad2005-06-04 20:15:57 +00001165 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001166 uint32_t start = qdict_get_int(qdict, "start");
1167 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001168
1169 sum = 0;
1170 for(addr = start; addr < (start + size); addr++) {
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001171 uint8_t val = ldub_phys(addr);
bellarde4cf1ad2005-06-04 20:15:57 +00001172 /* BSD sum algorithm ('sum' Unix command) */
1173 sum = (sum >> 1) | (sum << 15);
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001174 sum += val;
bellarde4cf1ad2005-06-04 20:15:57 +00001175 }
aliguori376253e2009-03-05 23:01:23 +00001176 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001177}
1178
bellarda3a91a32004-06-04 11:06:21 +00001179typedef struct {
1180 int keycode;
1181 const char *name;
1182} KeyDef;
1183
1184static const KeyDef key_defs[] = {
1185 { 0x2a, "shift" },
1186 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +00001187
bellarda3a91a32004-06-04 11:06:21 +00001188 { 0x38, "alt" },
1189 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +00001190 { 0x64, "altgr" },
1191 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +00001192 { 0x1d, "ctrl" },
1193 { 0x9d, "ctrl_r" },
1194
1195 { 0xdd, "menu" },
1196
1197 { 0x01, "esc" },
1198
1199 { 0x02, "1" },
1200 { 0x03, "2" },
1201 { 0x04, "3" },
1202 { 0x05, "4" },
1203 { 0x06, "5" },
1204 { 0x07, "6" },
1205 { 0x08, "7" },
1206 { 0x09, "8" },
1207 { 0x0a, "9" },
1208 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +00001209 { 0x0c, "minus" },
1210 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +00001211 { 0x0e, "backspace" },
1212
1213 { 0x0f, "tab" },
1214 { 0x10, "q" },
1215 { 0x11, "w" },
1216 { 0x12, "e" },
1217 { 0x13, "r" },
1218 { 0x14, "t" },
1219 { 0x15, "y" },
1220 { 0x16, "u" },
1221 { 0x17, "i" },
1222 { 0x18, "o" },
1223 { 0x19, "p" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001224 { 0x1a, "bracket_left" },
1225 { 0x1b, "bracket_right" },
bellarda3a91a32004-06-04 11:06:21 +00001226 { 0x1c, "ret" },
1227
1228 { 0x1e, "a" },
1229 { 0x1f, "s" },
1230 { 0x20, "d" },
1231 { 0x21, "f" },
1232 { 0x22, "g" },
1233 { 0x23, "h" },
1234 { 0x24, "j" },
1235 { 0x25, "k" },
1236 { 0x26, "l" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001237 { 0x27, "semicolon" },
1238 { 0x28, "apostrophe" },
1239 { 0x29, "grave_accent" },
bellarda3a91a32004-06-04 11:06:21 +00001240
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001241 { 0x2b, "backslash" },
bellarda3a91a32004-06-04 11:06:21 +00001242 { 0x2c, "z" },
1243 { 0x2d, "x" },
1244 { 0x2e, "c" },
1245 { 0x2f, "v" },
1246 { 0x30, "b" },
1247 { 0x31, "n" },
1248 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +00001249 { 0x33, "comma" },
1250 { 0x34, "dot" },
1251 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +00001252
balrog4d3b6f62008-02-10 16:33:14 +00001253 { 0x37, "asterisk" },
1254
bellarda3a91a32004-06-04 11:06:21 +00001255 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +00001256 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001257 { 0x3b, "f1" },
1258 { 0x3c, "f2" },
1259 { 0x3d, "f3" },
1260 { 0x3e, "f4" },
1261 { 0x3f, "f5" },
1262 { 0x40, "f6" },
1263 { 0x41, "f7" },
1264 { 0x42, "f8" },
1265 { 0x43, "f9" },
1266 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +00001267 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001268 { 0x46, "scroll_lock" },
1269
bellard64866c32006-05-07 18:03:31 +00001270 { 0xb5, "kp_divide" },
1271 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +00001272 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +00001273 { 0x4e, "kp_add" },
1274 { 0x9c, "kp_enter" },
1275 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +00001276 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +00001277
1278 { 0x52, "kp_0" },
1279 { 0x4f, "kp_1" },
1280 { 0x50, "kp_2" },
1281 { 0x51, "kp_3" },
1282 { 0x4b, "kp_4" },
1283 { 0x4c, "kp_5" },
1284 { 0x4d, "kp_6" },
1285 { 0x47, "kp_7" },
1286 { 0x48, "kp_8" },
1287 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +00001288
bellarda3a91a32004-06-04 11:06:21 +00001289 { 0x56, "<" },
1290
1291 { 0x57, "f11" },
1292 { 0x58, "f12" },
1293
1294 { 0xb7, "print" },
1295
1296 { 0xc7, "home" },
1297 { 0xc9, "pgup" },
1298 { 0xd1, "pgdn" },
1299 { 0xcf, "end" },
1300
1301 { 0xcb, "left" },
1302 { 0xc8, "up" },
1303 { 0xd0, "down" },
1304 { 0xcd, "right" },
1305
1306 { 0xd2, "insert" },
1307 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001308#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1309 { 0xf0, "stop" },
1310 { 0xf1, "again" },
1311 { 0xf2, "props" },
1312 { 0xf3, "undo" },
1313 { 0xf4, "front" },
1314 { 0xf5, "copy" },
1315 { 0xf6, "open" },
1316 { 0xf7, "paste" },
1317 { 0xf8, "find" },
1318 { 0xf9, "cut" },
1319 { 0xfa, "lf" },
1320 { 0xfb, "help" },
1321 { 0xfc, "meta_l" },
1322 { 0xfd, "meta_r" },
1323 { 0xfe, "compose" },
1324#endif
bellarda3a91a32004-06-04 11:06:21 +00001325 { 0, NULL },
1326};
1327
1328static int get_keycode(const char *key)
1329{
1330 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001331 char *endp;
1332 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001333
1334 for(p = key_defs; p->name != NULL; p++) {
1335 if (!strcmp(key, p->name))
1336 return p->keycode;
1337 }
bellard64866c32006-05-07 18:03:31 +00001338 if (strstart(key, "0x", NULL)) {
1339 ret = strtoul(key, &endp, 0);
1340 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1341 return ret;
1342 }
bellarda3a91a32004-06-04 11:06:21 +00001343 return -1;
1344}
1345
balrogc8256f92008-06-08 22:45:01 +00001346#define MAX_KEYCODES 16
1347static uint8_t keycodes[MAX_KEYCODES];
1348static int nb_pending_keycodes;
1349static QEMUTimer *key_timer;
1350
1351static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001352{
balrogc8256f92008-06-08 22:45:01 +00001353 int keycode;
1354
1355 while (nb_pending_keycodes > 0) {
1356 nb_pending_keycodes--;
1357 keycode = keycodes[nb_pending_keycodes];
1358 if (keycode & 0x80)
1359 kbd_put_keycode(0xe0);
1360 kbd_put_keycode(keycode | 0x80);
1361 }
1362}
1363
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001364static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001365{
balrog3401c0d2008-06-04 10:05:59 +00001366 char keyname_buf[16];
1367 char *separator;
1368 int keyname_len, keycode, i;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001369 const char *string = qdict_get_str(qdict, "string");
1370 int has_hold_time = qdict_haskey(qdict, "hold_time");
1371 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
ths3b46e622007-09-17 08:09:54 +00001372
balrogc8256f92008-06-08 22:45:01 +00001373 if (nb_pending_keycodes > 0) {
1374 qemu_del_timer(key_timer);
1375 release_keys(NULL);
1376 }
1377 if (!has_hold_time)
1378 hold_time = 100;
1379 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001380 while (1) {
1381 separator = strchr(string, '-');
1382 keyname_len = separator ? separator - string : strlen(string);
1383 if (keyname_len > 0) {
1384 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1385 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001386 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001387 return;
bellarda3a91a32004-06-04 11:06:21 +00001388 }
balrogc8256f92008-06-08 22:45:01 +00001389 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001390 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001391 return;
1392 }
1393 keyname_buf[keyname_len] = 0;
1394 keycode = get_keycode(keyname_buf);
1395 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001396 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001397 return;
1398 }
balrogc8256f92008-06-08 22:45:01 +00001399 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001400 }
balrog3401c0d2008-06-04 10:05:59 +00001401 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001402 break;
balrog3401c0d2008-06-04 10:05:59 +00001403 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001404 }
balrogc8256f92008-06-08 22:45:01 +00001405 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001406 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001407 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001408 keycode = keycodes[i];
1409 if (keycode & 0x80)
1410 kbd_put_keycode(0xe0);
1411 kbd_put_keycode(keycode & 0x7f);
1412 }
balrogc8256f92008-06-08 22:45:01 +00001413 /* delayed key up events */
Paolo Bonzini74475452011-03-11 16:47:48 +01001414 qemu_mod_timer(key_timer, qemu_get_clock_ns(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001415 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001416}
1417
bellard13224a82006-07-14 22:03:35 +00001418static int mouse_button_state;
1419
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001420static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001421{
1422 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001423 const char *dx_str = qdict_get_str(qdict, "dx_str");
1424 const char *dy_str = qdict_get_str(qdict, "dy_str");
1425 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001426 dx = strtol(dx_str, NULL, 0);
1427 dy = strtol(dy_str, NULL, 0);
1428 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001429 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001430 dz = strtol(dz_str, NULL, 0);
1431 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1432}
1433
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001434static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001435{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001436 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001437 mouse_button_state = button_state;
1438 kbd_mouse_event(0, 0, 0, mouse_button_state);
1439}
1440
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001441static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001442{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001443 int size = qdict_get_int(qdict, "size");
1444 int addr = qdict_get_int(qdict, "addr");
1445 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001446 uint32_t val;
1447 int suffix;
1448
1449 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001450 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001451 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001452 addr++;
1453 }
1454 addr &= 0xffff;
1455
1456 switch(size) {
1457 default:
1458 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001459 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001460 suffix = 'b';
1461 break;
1462 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001463 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001464 suffix = 'w';
1465 break;
1466 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001467 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001468 suffix = 'l';
1469 break;
1470 }
aliguori376253e2009-03-05 23:01:23 +00001471 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1472 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001473}
bellarda3a91a32004-06-04 11:06:21 +00001474
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001475static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001476{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001477 int size = qdict_get_int(qdict, "size");
1478 int addr = qdict_get_int(qdict, "addr");
1479 int val = qdict_get_int(qdict, "val");
1480
Jan Kiszkaf1147842009-07-14 10:20:11 +02001481 addr &= IOPORTS_MASK;
1482
1483 switch (size) {
1484 default:
1485 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001486 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001487 break;
1488 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001489 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001490 break;
1491 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001492 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001493 break;
1494 }
1495}
1496
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001497static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001498{
1499 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001500 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001501
Jan Kiszka76e30d02009-07-02 00:19:02 +02001502 res = qemu_boot_set(bootdevice);
1503 if (res == 0) {
1504 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1505 } else if (res > 0) {
1506 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001507 } else {
aliguori376253e2009-03-05 23:01:23 +00001508 monitor_printf(mon, "no function defined to set boot device list for "
1509 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001510 }
1511}
1512
bellardb86bda52004-09-18 19:32:46 +00001513#if defined(TARGET_I386)
Blue Swirld65aaf32010-12-11 18:56:24 +00001514static void print_pte(Monitor *mon, target_phys_addr_t addr,
1515 target_phys_addr_t pte,
1516 target_phys_addr_t mask)
bellardb86bda52004-09-18 19:32:46 +00001517{
Blue Swirld65aaf32010-12-11 18:56:24 +00001518#ifdef TARGET_X86_64
1519 if (addr & (1ULL << 47)) {
1520 addr |= -1LL << 48;
1521 }
1522#endif
1523 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1524 " %c%c%c%c%c%c%c%c%c\n",
aliguori376253e2009-03-05 23:01:23 +00001525 addr,
1526 pte & mask,
Blue Swirld65aaf32010-12-11 18:56:24 +00001527 pte & PG_NX_MASK ? 'X' : '-',
aliguori376253e2009-03-05 23:01:23 +00001528 pte & PG_GLOBAL_MASK ? 'G' : '-',
1529 pte & PG_PSE_MASK ? 'P' : '-',
1530 pte & PG_DIRTY_MASK ? 'D' : '-',
1531 pte & PG_ACCESSED_MASK ? 'A' : '-',
1532 pte & PG_PCD_MASK ? 'C' : '-',
1533 pte & PG_PWT_MASK ? 'T' : '-',
1534 pte & PG_USER_MASK ? 'U' : '-',
1535 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001536}
1537
Andreas Färber9349b4f2012-03-14 01:38:32 +01001538static void tlb_info_32(Monitor *mon, CPUArchState *env)
bellardb86bda52004-09-18 19:32:46 +00001539{
Austin Clements94ac5cd2011-08-21 14:49:45 -04001540 unsigned int l1, l2;
bellardb86bda52004-09-18 19:32:46 +00001541 uint32_t pgd, pde, pte;
1542
bellardb86bda52004-09-18 19:32:46 +00001543 pgd = env->cr[3] & ~0xfff;
1544 for(l1 = 0; l1 < 1024; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001545 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
bellardb86bda52004-09-18 19:32:46 +00001546 pde = le32_to_cpu(pde);
1547 if (pde & PG_PRESENT_MASK) {
1548 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
Blue Swirld65aaf32010-12-11 18:56:24 +00001549 /* 4M pages */
1550 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
bellardb86bda52004-09-18 19:32:46 +00001551 } else {
1552 for(l2 = 0; l2 < 1024; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001553 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
bellardb86bda52004-09-18 19:32:46 +00001554 pte = le32_to_cpu(pte);
1555 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001556 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001557 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001558 ~0xfff);
1559 }
1560 }
1561 }
1562 }
1563 }
1564}
1565
Andreas Färber9349b4f2012-03-14 01:38:32 +01001566static void tlb_info_pae32(Monitor *mon, CPUArchState *env)
Blue Swirld65aaf32010-12-11 18:56:24 +00001567{
Austin Clements94ac5cd2011-08-21 14:49:45 -04001568 unsigned int l1, l2, l3;
Blue Swirld65aaf32010-12-11 18:56:24 +00001569 uint64_t pdpe, pde, pte;
1570 uint64_t pdp_addr, pd_addr, pt_addr;
1571
1572 pdp_addr = env->cr[3] & ~0x1f;
1573 for (l1 = 0; l1 < 4; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001574 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001575 pdpe = le64_to_cpu(pdpe);
1576 if (pdpe & PG_PRESENT_MASK) {
1577 pd_addr = pdpe & 0x3fffffffff000ULL;
1578 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001579 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001580 pde = le64_to_cpu(pde);
1581 if (pde & PG_PRESENT_MASK) {
1582 if (pde & PG_PSE_MASK) {
1583 /* 2M pages with PAE, CR4.PSE is ignored */
1584 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
1585 ~((target_phys_addr_t)(1 << 20) - 1));
1586 } else {
1587 pt_addr = pde & 0x3fffffffff000ULL;
1588 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001589 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001590 pte = le64_to_cpu(pte);
1591 if (pte & PG_PRESENT_MASK) {
1592 print_pte(mon, (l1 << 30 ) + (l2 << 21)
1593 + (l3 << 12),
1594 pte & ~PG_PSE_MASK,
1595 ~(target_phys_addr_t)0xfff);
1596 }
1597 }
1598 }
1599 }
1600 }
1601 }
1602 }
1603}
1604
1605#ifdef TARGET_X86_64
Andreas Färber9349b4f2012-03-14 01:38:32 +01001606static void tlb_info_64(Monitor *mon, CPUArchState *env)
Blue Swirld65aaf32010-12-11 18:56:24 +00001607{
1608 uint64_t l1, l2, l3, l4;
1609 uint64_t pml4e, pdpe, pde, pte;
1610 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
1611
1612 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1613 for (l1 = 0; l1 < 512; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001614 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001615 pml4e = le64_to_cpu(pml4e);
1616 if (pml4e & PG_PRESENT_MASK) {
1617 pdp_addr = pml4e & 0x3fffffffff000ULL;
1618 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001619 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001620 pdpe = le64_to_cpu(pdpe);
1621 if (pdpe & PG_PRESENT_MASK) {
1622 if (pdpe & PG_PSE_MASK) {
1623 /* 1G pages, CR4.PSE is ignored */
1624 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
1625 0x3ffffc0000000ULL);
1626 } else {
1627 pd_addr = pdpe & 0x3fffffffff000ULL;
1628 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001629 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001630 pde = le64_to_cpu(pde);
1631 if (pde & PG_PRESENT_MASK) {
1632 if (pde & PG_PSE_MASK) {
1633 /* 2M pages, CR4.PSE is ignored */
1634 print_pte(mon, (l1 << 39) + (l2 << 30) +
1635 (l3 << 21), pde,
1636 0x3ffffffe00000ULL);
1637 } else {
1638 pt_addr = pde & 0x3fffffffff000ULL;
1639 for (l4 = 0; l4 < 512; l4++) {
1640 cpu_physical_memory_read(pt_addr
1641 + l4 * 8,
Stefan Weilb8b79322011-03-26 21:11:05 +01001642 &pte, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00001643 pte = le64_to_cpu(pte);
1644 if (pte & PG_PRESENT_MASK) {
1645 print_pte(mon, (l1 << 39) +
1646 (l2 << 30) +
1647 (l3 << 21) + (l4 << 12),
1648 pte & ~PG_PSE_MASK,
1649 0x3fffffffff000ULL);
1650 }
1651 }
1652 }
1653 }
1654 }
1655 }
1656 }
1657 }
1658 }
1659 }
1660}
1661#endif
1662
1663static void tlb_info(Monitor *mon)
1664{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001665 CPUArchState *env;
Blue Swirld65aaf32010-12-11 18:56:24 +00001666
1667 env = mon_get_cpu();
1668
1669 if (!(env->cr[0] & CR0_PG_MASK)) {
1670 monitor_printf(mon, "PG disabled\n");
1671 return;
1672 }
1673 if (env->cr[4] & CR4_PAE_MASK) {
1674#ifdef TARGET_X86_64
1675 if (env->hflags & HF_LMA_MASK) {
1676 tlb_info_64(mon, env);
1677 } else
1678#endif
1679 {
1680 tlb_info_pae32(mon, env);
1681 }
1682 } else {
1683 tlb_info_32(mon, env);
1684 }
1685}
1686
Blue Swirl1b3cba62010-12-11 18:56:27 +00001687static void mem_print(Monitor *mon, target_phys_addr_t *pstart,
1688 int *plast_prot,
1689 target_phys_addr_t end, int prot)
bellardb86bda52004-09-18 19:32:46 +00001690{
bellard9746b152004-11-11 18:30:24 +00001691 int prot1;
1692 prot1 = *plast_prot;
1693 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001694 if (*pstart != -1) {
Blue Swirl1b3cba62010-12-11 18:56:27 +00001695 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
1696 TARGET_FMT_plx " %c%c%c\n",
aliguori376253e2009-03-05 23:01:23 +00001697 *pstart, end, end - *pstart,
1698 prot1 & PG_USER_MASK ? 'u' : '-',
1699 'r',
1700 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001701 }
1702 if (prot != 0)
1703 *pstart = end;
1704 else
1705 *pstart = -1;
1706 *plast_prot = prot;
1707 }
1708}
1709
Andreas Färber9349b4f2012-03-14 01:38:32 +01001710static void mem_info_32(Monitor *mon, CPUArchState *env)
bellardb86bda52004-09-18 19:32:46 +00001711{
Austin Clementsb49ca722011-08-14 23:19:21 -04001712 unsigned int l1, l2;
1713 int prot, last_prot;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001714 uint32_t pgd, pde, pte;
1715 target_phys_addr_t start, end;
bellardb86bda52004-09-18 19:32:46 +00001716
bellardb86bda52004-09-18 19:32:46 +00001717 pgd = env->cr[3] & ~0xfff;
1718 last_prot = 0;
1719 start = -1;
1720 for(l1 = 0; l1 < 1024; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001721 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
bellardb86bda52004-09-18 19:32:46 +00001722 pde = le32_to_cpu(pde);
1723 end = l1 << 22;
1724 if (pde & PG_PRESENT_MASK) {
1725 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1726 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001727 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001728 } else {
1729 for(l2 = 0; l2 < 1024; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001730 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
bellardb86bda52004-09-18 19:32:46 +00001731 pte = le32_to_cpu(pte);
1732 end = (l1 << 22) + (l2 << 12);
1733 if (pte & PG_PRESENT_MASK) {
Austin Clementsc76c8412011-08-14 23:22:28 -04001734 prot = pte & pde &
1735 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
bellardb86bda52004-09-18 19:32:46 +00001736 } else {
1737 prot = 0;
1738 }
aliguori376253e2009-03-05 23:01:23 +00001739 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001740 }
1741 }
1742 } else {
1743 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001744 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001745 }
1746 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04001747 /* Flush last range */
1748 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
bellardb86bda52004-09-18 19:32:46 +00001749}
Blue Swirl1b3cba62010-12-11 18:56:27 +00001750
Andreas Färber9349b4f2012-03-14 01:38:32 +01001751static void mem_info_pae32(Monitor *mon, CPUArchState *env)
Blue Swirl1b3cba62010-12-11 18:56:27 +00001752{
Austin Clementsb49ca722011-08-14 23:19:21 -04001753 unsigned int l1, l2, l3;
1754 int prot, last_prot;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001755 uint64_t pdpe, pde, pte;
1756 uint64_t pdp_addr, pd_addr, pt_addr;
1757 target_phys_addr_t start, end;
1758
1759 pdp_addr = env->cr[3] & ~0x1f;
1760 last_prot = 0;
1761 start = -1;
1762 for (l1 = 0; l1 < 4; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001763 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001764 pdpe = le64_to_cpu(pdpe);
1765 end = l1 << 30;
1766 if (pdpe & PG_PRESENT_MASK) {
1767 pd_addr = pdpe & 0x3fffffffff000ULL;
1768 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001769 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001770 pde = le64_to_cpu(pde);
1771 end = (l1 << 30) + (l2 << 21);
1772 if (pde & PG_PRESENT_MASK) {
1773 if (pde & PG_PSE_MASK) {
1774 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1775 PG_PRESENT_MASK);
1776 mem_print(mon, &start, &last_prot, end, prot);
1777 } else {
1778 pt_addr = pde & 0x3fffffffff000ULL;
1779 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001780 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001781 pte = le64_to_cpu(pte);
1782 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
1783 if (pte & PG_PRESENT_MASK) {
Austin Clementsc76c8412011-08-14 23:22:28 -04001784 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
1785 PG_PRESENT_MASK);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001786 } else {
1787 prot = 0;
1788 }
1789 mem_print(mon, &start, &last_prot, end, prot);
1790 }
1791 }
1792 } else {
1793 prot = 0;
1794 mem_print(mon, &start, &last_prot, end, prot);
1795 }
1796 }
1797 } else {
1798 prot = 0;
1799 mem_print(mon, &start, &last_prot, end, prot);
1800 }
1801 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04001802 /* Flush last range */
1803 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001804}
1805
1806
1807#ifdef TARGET_X86_64
Andreas Färber9349b4f2012-03-14 01:38:32 +01001808static void mem_info_64(Monitor *mon, CPUArchState *env)
Blue Swirl1b3cba62010-12-11 18:56:27 +00001809{
1810 int prot, last_prot;
1811 uint64_t l1, l2, l3, l4;
1812 uint64_t pml4e, pdpe, pde, pte;
1813 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
1814
1815 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
1816 last_prot = 0;
1817 start = -1;
1818 for (l1 = 0; l1 < 512; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001819 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001820 pml4e = le64_to_cpu(pml4e);
1821 end = l1 << 39;
1822 if (pml4e & PG_PRESENT_MASK) {
1823 pdp_addr = pml4e & 0x3fffffffff000ULL;
1824 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001825 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001826 pdpe = le64_to_cpu(pdpe);
1827 end = (l1 << 39) + (l2 << 30);
1828 if (pdpe & PG_PRESENT_MASK) {
1829 if (pdpe & PG_PSE_MASK) {
Blue Swirl2d5b5072011-01-15 08:31:00 +00001830 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
1831 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04001832 prot &= pml4e;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001833 mem_print(mon, &start, &last_prot, end, prot);
1834 } else {
1835 pd_addr = pdpe & 0x3fffffffff000ULL;
1836 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01001837 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001838 pde = le64_to_cpu(pde);
1839 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
1840 if (pde & PG_PRESENT_MASK) {
1841 if (pde & PG_PSE_MASK) {
1842 prot = pde & (PG_USER_MASK | PG_RW_MASK |
1843 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04001844 prot &= pml4e & pdpe;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001845 mem_print(mon, &start, &last_prot, end, prot);
1846 } else {
1847 pt_addr = pde & 0x3fffffffff000ULL;
1848 for (l4 = 0; l4 < 512; l4++) {
1849 cpu_physical_memory_read(pt_addr
1850 + l4 * 8,
Stefan Weilb8b79322011-03-26 21:11:05 +01001851 &pte, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001852 pte = le64_to_cpu(pte);
1853 end = (l1 << 39) + (l2 << 30) +
1854 (l3 << 21) + (l4 << 12);
1855 if (pte & PG_PRESENT_MASK) {
1856 prot = pte & (PG_USER_MASK | PG_RW_MASK |
1857 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04001858 prot &= pml4e & pdpe & pde;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001859 } else {
1860 prot = 0;
1861 }
1862 mem_print(mon, &start, &last_prot, end, prot);
1863 }
1864 }
1865 } else {
1866 prot = 0;
1867 mem_print(mon, &start, &last_prot, end, prot);
1868 }
1869 }
1870 }
1871 } else {
1872 prot = 0;
1873 mem_print(mon, &start, &last_prot, end, prot);
1874 }
1875 }
1876 } else {
1877 prot = 0;
1878 mem_print(mon, &start, &last_prot, end, prot);
1879 }
1880 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04001881 /* Flush last range */
1882 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 48, 0);
Blue Swirl1b3cba62010-12-11 18:56:27 +00001883}
1884#endif
1885
1886static void mem_info(Monitor *mon)
1887{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001888 CPUArchState *env;
Blue Swirl1b3cba62010-12-11 18:56:27 +00001889
1890 env = mon_get_cpu();
1891
1892 if (!(env->cr[0] & CR0_PG_MASK)) {
1893 monitor_printf(mon, "PG disabled\n");
1894 return;
1895 }
1896 if (env->cr[4] & CR4_PAE_MASK) {
1897#ifdef TARGET_X86_64
1898 if (env->hflags & HF_LMA_MASK) {
1899 mem_info_64(mon, env);
1900 } else
1901#endif
1902 {
1903 mem_info_pae32(mon, env);
1904 }
1905 } else {
1906 mem_info_32(mon, env);
1907 }
1908}
bellardb86bda52004-09-18 19:32:46 +00001909#endif
1910
aurel327c664e22009-03-03 06:12:22 +00001911#if defined(TARGET_SH4)
1912
aliguori376253e2009-03-05 23:01:23 +00001913static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001914{
aliguori376253e2009-03-05 23:01:23 +00001915 monitor_printf(mon, " tlb%i:\t"
1916 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1917 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1918 "dirty=%hhu writethrough=%hhu\n",
1919 idx,
1920 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1921 tlb->v, tlb->sh, tlb->c, tlb->pr,
1922 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001923}
1924
aliguori376253e2009-03-05 23:01:23 +00001925static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00001926{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001927 CPUArchState *env = mon_get_cpu();
aurel327c664e22009-03-03 06:12:22 +00001928 int i;
1929
aliguori376253e2009-03-05 23:01:23 +00001930 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001931 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001932 print_tlb (mon, i, &env->itlb[i]);
1933 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001934 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001935 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00001936}
1937
1938#endif
1939
Max Filippov692f7372012-01-07 20:02:40 +04001940#if defined(TARGET_SPARC) || defined(TARGET_PPC) || defined(TARGET_XTENSA)
Blue Swirld41160a2010-12-19 13:42:56 +00001941static void tlb_info(Monitor *mon)
1942{
Andreas Färber9349b4f2012-03-14 01:38:32 +01001943 CPUArchState *env1 = mon_get_cpu();
Blue Swirld41160a2010-12-19 13:42:56 +00001944
1945 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
1946}
1947#endif
1948
Blue Swirl314e2982011-09-11 20:22:05 +00001949static void do_info_mtree(Monitor *mon)
1950{
1951 mtree_info((fprintf_function)monitor_printf, mon);
1952}
1953
aliguori030ea372009-04-21 22:30:47 +00001954static void do_info_numa(Monitor *mon)
1955{
aliguorib28b6232009-04-22 20:20:29 +00001956 int i;
Andreas Färber9349b4f2012-03-14 01:38:32 +01001957 CPUArchState *env;
aliguori030ea372009-04-21 22:30:47 +00001958
1959 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1960 for (i = 0; i < nb_numa_nodes; i++) {
1961 monitor_printf(mon, "node %d cpus:", i);
1962 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1963 if (env->numa_node == i) {
1964 monitor_printf(mon, " %d", env->cpu_index);
1965 }
1966 }
1967 monitor_printf(mon, "\n");
1968 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1969 node_mem[i] >> 20);
1970 }
1971}
1972
bellard5f1ce942006-02-08 22:40:15 +00001973#ifdef CONFIG_PROFILER
1974
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02001975int64_t qemu_time;
1976int64_t dev_time;
1977
aliguori376253e2009-03-05 23:01:23 +00001978static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001979{
1980 int64_t total;
1981 total = qemu_time;
1982 if (total == 0)
1983 total = 1;
aliguori376253e2009-03-05 23:01:23 +00001984 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02001985 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00001986 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02001987 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00001988 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001989 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001990}
1991#else
aliguori376253e2009-03-05 23:01:23 +00001992static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001993{
aliguori376253e2009-03-05 23:01:23 +00001994 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00001995}
1996#endif
1997
bellardec36b692006-07-16 18:57:03 +00001998/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001999static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00002000
aliguori376253e2009-03-05 23:01:23 +00002001static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00002002{
2003 int i;
2004 CaptureState *s;
2005
2006 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00002007 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00002008 s->ops.info (s->opaque);
2009 }
2010}
2011
Blue Swirl23130862009-06-06 08:22:04 +00002012#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002013static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002014{
2015 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002016 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00002017 CaptureState *s;
2018
2019 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2020 if (i == n) {
2021 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002022 QLIST_REMOVE (s, entries);
Anthony Liguori7267c092011-08-20 22:09:37 -05002023 g_free (s);
bellardec36b692006-07-16 18:57:03 +00002024 return;
2025 }
2026 }
2027}
2028
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002029static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002030{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002031 const char *path = qdict_get_str(qdict, "path");
2032 int has_freq = qdict_haskey(qdict, "freq");
2033 int freq = qdict_get_try_int(qdict, "freq", -1);
2034 int has_bits = qdict_haskey(qdict, "bits");
2035 int bits = qdict_get_try_int(qdict, "bits", -1);
2036 int has_channels = qdict_haskey(qdict, "nchannels");
2037 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00002038 CaptureState *s;
2039
Anthony Liguori7267c092011-08-20 22:09:37 -05002040 s = g_malloc0 (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002041
2042 freq = has_freq ? freq : 44100;
2043 bits = has_bits ? bits : 16;
2044 nchannels = has_channels ? nchannels : 2;
2045
2046 if (wav_start_capture (s, path, freq, bits, nchannels)) {
Isaku Yamahatad00b2612011-01-21 19:53:55 +09002047 monitor_printf(mon, "Failed to add wave capture\n");
Anthony Liguori7267c092011-08-20 22:09:37 -05002048 g_free (s);
Isaku Yamahatad00b2612011-01-21 19:53:55 +09002049 return;
bellardec36b692006-07-16 18:57:03 +00002050 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002051 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002052}
2053#endif
2054
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002055static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002056{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002057 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002058
aliguori76655d62009-03-06 20:27:37 +00002059 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002060 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002061 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002062 return acl;
2063}
aliguori76655d62009-03-06 20:27:37 +00002064
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002065static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002066{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002067 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002068 qemu_acl *acl = find_acl(mon, aclname);
2069 qemu_acl_entry *entry;
2070 int i = 0;
2071
2072 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002073 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002074 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002075 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002076 i++;
2077 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002078 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002079 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002080 }
2081}
2082
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002083static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002084{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002085 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002086 qemu_acl *acl = find_acl(mon, aclname);
2087
2088 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002089 qemu_acl_reset(acl);
2090 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002091 }
2092}
aliguori76655d62009-03-06 20:27:37 +00002093
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002094static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002095{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002096 const char *aclname = qdict_get_str(qdict, "aclname");
2097 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002098 qemu_acl *acl = find_acl(mon, aclname);
2099
2100 if (acl) {
2101 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002102 acl->defaultDeny = 0;
2103 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002104 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002105 acl->defaultDeny = 1;
2106 monitor_printf(mon, "acl: policy set to 'deny'\n");
2107 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002108 monitor_printf(mon, "acl: unknown policy '%s', "
2109 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002110 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002111 }
2112}
aliguori76655d62009-03-06 20:27:37 +00002113
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002114static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002115{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002116 const char *aclname = qdict_get_str(qdict, "aclname");
2117 const char *match = qdict_get_str(qdict, "match");
2118 const char *policy = qdict_get_str(qdict, "policy");
2119 int has_index = qdict_haskey(qdict, "index");
2120 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002121 qemu_acl *acl = find_acl(mon, aclname);
2122 int deny, ret;
2123
2124 if (acl) {
2125 if (strcmp(policy, "allow") == 0) {
2126 deny = 0;
2127 } else if (strcmp(policy, "deny") == 0) {
2128 deny = 1;
2129 } else {
2130 monitor_printf(mon, "acl: unknown policy '%s', "
2131 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002132 return;
2133 }
aliguori28a76be2009-03-06 20:27:40 +00002134 if (has_index)
2135 ret = qemu_acl_insert(acl, deny, match, index);
2136 else
2137 ret = qemu_acl_append(acl, deny, match);
2138 if (ret < 0)
2139 monitor_printf(mon, "acl: unable to add acl entry\n");
2140 else
2141 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002142 }
2143}
aliguori76655d62009-03-06 20:27:37 +00002144
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002145static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002146{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002147 const char *aclname = qdict_get_str(qdict, "aclname");
2148 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002149 qemu_acl *acl = find_acl(mon, aclname);
2150 int ret;
aliguori76655d62009-03-06 20:27:37 +00002151
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002152 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002153 ret = qemu_acl_remove(acl, match);
2154 if (ret < 0)
2155 monitor_printf(mon, "acl: no matching acl entry\n");
2156 else
2157 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002158 }
2159}
2160
Huang Ying79c4f6b2009-06-23 10:05:14 +08002161#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002162static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002163{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002164 CPUArchState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002165 int cpu_index = qdict_get_int(qdict, "cpu_index");
2166 int bank = qdict_get_int(qdict, "bank");
2167 uint64_t status = qdict_get_int(qdict, "status");
2168 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2169 uint64_t addr = qdict_get_int(qdict, "addr");
2170 uint64_t misc = qdict_get_int(qdict, "misc");
Jan Kiszka747461c2011-03-02 08:56:10 +01002171 int flags = MCE_INJECT_UNCOND_AO;
Huang Ying79c4f6b2009-06-23 10:05:14 +08002172
Jan Kiszka747461c2011-03-02 08:56:10 +01002173 if (qdict_get_try_bool(qdict, "broadcast", 0)) {
2174 flags |= MCE_INJECT_BROADCAST;
2175 }
Jin Dongming31ce5e02010-12-10 17:21:02 +09002176 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu) {
Jan Kiszka316378e2011-03-02 08:56:09 +01002177 if (cenv->cpu_index == cpu_index) {
2178 cpu_x86_inject_mce(mon, cenv, bank, status, mcg_status, addr, misc,
Jan Kiszka747461c2011-03-02 08:56:10 +01002179 flags);
Huang Ying79c4f6b2009-06-23 10:05:14 +08002180 break;
2181 }
Jin Dongming31ce5e02010-12-10 17:21:02 +09002182 }
Huang Ying79c4f6b2009-06-23 10:05:14 +08002183}
2184#endif
2185
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002186static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002187{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002188 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002189 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002190 int fd;
2191
Anthony Liguori74c0d6f2011-08-15 11:17:39 -05002192 fd = qemu_chr_fe_get_msgfd(mon->chr);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002193 if (fd == -1) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002194 qerror_report(QERR_FD_NOT_SUPPLIED);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002195 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002196 }
2197
2198 if (qemu_isdigit(fdname[0])) {
Markus Armbrustere17ba872010-03-25 17:22:36 +01002199 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2200 "a name not starting with a digit");
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002201 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002202 }
2203
Blue Swirl72cf2d42009-09-12 07:36:22 +00002204 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002205 if (strcmp(monfd->name, fdname) != 0) {
2206 continue;
2207 }
2208
2209 close(monfd->fd);
2210 monfd->fd = fd;
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002211 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002212 }
2213
Anthony Liguori7267c092011-08-20 22:09:37 -05002214 monfd = g_malloc0(sizeof(mon_fd_t));
2215 monfd->name = g_strdup(fdname);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002216 monfd->fd = fd;
2217
Blue Swirl72cf2d42009-09-12 07:36:22 +00002218 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002219 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002220}
2221
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002222static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002223{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002224 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002225 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002226
Blue Swirl72cf2d42009-09-12 07:36:22 +00002227 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002228 if (strcmp(monfd->name, fdname) != 0) {
2229 continue;
2230 }
2231
Blue Swirl72cf2d42009-09-12 07:36:22 +00002232 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002233 close(monfd->fd);
Anthony Liguori7267c092011-08-20 22:09:37 -05002234 g_free(monfd->name);
2235 g_free(monfd);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002236 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002237 }
2238
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002239 qerror_report(QERR_FD_NOT_FOUND, fdname);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002240 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002241}
2242
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002243static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002244{
Luiz Capitulino13548692011-07-29 15:36:43 -03002245 int saved_vm_running = runstate_is_running();
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002246 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002247
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002248 vm_stop(RUN_STATE_RESTORE_VM);
Juan Quintelac8d41b22009-08-20 19:42:21 +02002249
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002250 if (load_vmstate(name) == 0 && saved_vm_running) {
Juan Quintelac8d41b22009-08-20 19:42:21 +02002251 vm_start();
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002252 }
Juan Quintelac8d41b22009-08-20 19:42:21 +02002253}
2254
Mark McLoughlin7768e042009-07-22 09:11:41 +01002255int monitor_get_fd(Monitor *mon, const char *fdname)
2256{
Anthony Liguoric227f092009-10-01 16:12:16 -05002257 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002258
Blue Swirl72cf2d42009-09-12 07:36:22 +00002259 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002260 int fd;
2261
2262 if (strcmp(monfd->name, fdname) != 0) {
2263 continue;
2264 }
2265
2266 fd = monfd->fd;
2267
2268 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002269 QLIST_REMOVE(monfd, next);
Anthony Liguori7267c092011-08-20 22:09:37 -05002270 g_free(monfd->name);
2271 g_free(monfd);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002272
2273 return fd;
2274 }
2275
2276 return -1;
2277}
2278
Wayne Xia816f8922011-10-12 11:32:41 +08002279/* mon_cmds and info_cmds would be sorted at runtime */
2280static mon_cmd_t mon_cmds[] = {
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002281#include "hmp-commands.h"
ths5fafdf22007-09-16 21:08:06 +00002282 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002283};
2284
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002285/* Please update hmp-commands.hx when adding or changing commands */
Wayne Xia816f8922011-10-12 11:32:41 +08002286static mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002287 {
2288 .name = "version",
2289 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002290 .params = "",
2291 .help = "show the version of QEMU",
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03002292 .mhandler.info = hmp_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002293 },
2294 {
2295 .name = "network",
2296 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002297 .params = "",
2298 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002299 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002300 },
2301 {
2302 .name = "chardev",
2303 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002304 .params = "",
2305 .help = "show the character devices",
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03002306 .mhandler.info = hmp_info_chardev,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002307 },
2308 {
2309 .name = "block",
2310 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002311 .params = "",
2312 .help = "show the block devices",
Luiz Capitulinob2023812011-09-21 17:16:47 -03002313 .mhandler.info = hmp_info_block,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002314 },
2315 {
2316 .name = "blockstats",
2317 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002318 .params = "",
2319 .help = "show block device statistics",
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002320 .mhandler.info = hmp_info_blockstats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002321 },
2322 {
Stefan Hajnoczifb5458c2012-01-18 14:40:49 +00002323 .name = "block-jobs",
2324 .args_type = "",
2325 .params = "",
2326 .help = "show progress of ongoing block device operations",
2327 .mhandler.info = hmp_info_block_jobs,
2328 },
2329 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002330 .name = "registers",
2331 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002332 .params = "",
2333 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002334 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002335 },
2336 {
2337 .name = "cpus",
2338 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002339 .params = "",
2340 .help = "show infos for each CPU",
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03002341 .mhandler.info = hmp_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002342 },
2343 {
2344 .name = "history",
2345 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002346 .params = "",
2347 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002348 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002349 },
Jan Kiszka661f1922011-10-16 11:53:13 +02002350#if defined(TARGET_I386) || defined(TARGET_PPC) || defined(TARGET_MIPS) || \
2351 defined(TARGET_LM32) || (defined(TARGET_SPARC) && !defined(TARGET_SPARC64))
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002352 {
2353 .name = "irq",
2354 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002355 .params = "",
2356 .help = "show the interrupts statistics (if available)",
Jan Kiszka661f1922011-10-16 11:53:13 +02002357#ifdef TARGET_SPARC
2358 .mhandler.info = sun4m_irq_info,
2359#elif defined(TARGET_LM32)
2360 .mhandler.info = lm32_irq_info,
2361#else
Luiz Capitulino910df892009-10-07 13:41:51 -03002362 .mhandler.info = irq_info,
Jan Kiszka661f1922011-10-16 11:53:13 +02002363#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002364 },
2365 {
2366 .name = "pic",
2367 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002368 .params = "",
2369 .help = "show i8259 (PIC) state",
Jan Kiszka661f1922011-10-16 11:53:13 +02002370#ifdef TARGET_SPARC
2371 .mhandler.info = sun4m_pic_info,
2372#elif defined(TARGET_LM32)
2373 .mhandler.info = lm32_do_pic_info,
2374#else
Luiz Capitulino910df892009-10-07 13:41:51 -03002375 .mhandler.info = pic_info,
Jan Kiszka661f1922011-10-16 11:53:13 +02002376#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002377 },
Jan Kiszka661f1922011-10-16 11:53:13 +02002378#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002379 {
2380 .name = "pci",
2381 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002382 .params = "",
2383 .help = "show PCI info",
Luiz Capitulino79627472011-10-21 14:15:33 -02002384 .mhandler.info = hmp_info_pci,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002385 },
Scott Woodbebabbc2011-08-18 10:38:42 +00002386#if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \
Max Filippov692f7372012-01-07 20:02:40 +04002387 defined(TARGET_PPC) || defined(TARGET_XTENSA)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002388 {
2389 .name = "tlb",
2390 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002391 .params = "",
2392 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002393 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002394 },
aurel327c664e22009-03-03 06:12:22 +00002395#endif
2396#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002397 {
2398 .name = "mem",
2399 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002400 .params = "",
2401 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002402 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002403 },
bellardb86bda52004-09-18 19:32:46 +00002404#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002405 {
Blue Swirl314e2982011-09-11 20:22:05 +00002406 .name = "mtree",
2407 .args_type = "",
2408 .params = "",
2409 .help = "show memory tree",
2410 .mhandler.info = do_info_mtree,
2411 },
2412 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002413 .name = "jit",
2414 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002415 .params = "",
2416 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002417 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002418 },
2419 {
2420 .name = "kvm",
2421 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002422 .params = "",
2423 .help = "show KVM information",
Luiz Capitulino292a2602011-09-12 15:10:53 -03002424 .mhandler.info = hmp_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002425 },
2426 {
2427 .name = "numa",
2428 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002429 .params = "",
2430 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002431 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002432 },
2433 {
2434 .name = "usb",
2435 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002436 .params = "",
2437 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002438 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002439 },
2440 {
2441 .name = "usbhost",
2442 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002443 .params = "",
2444 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002445 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002446 },
2447 {
2448 .name = "profile",
2449 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002450 .params = "",
2451 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002452 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002453 },
2454 {
2455 .name = "capture",
2456 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002457 .params = "",
2458 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002459 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002460 },
2461 {
2462 .name = "snapshots",
2463 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002464 .params = "",
2465 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002466 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002467 },
2468 {
2469 .name = "status",
2470 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002471 .params = "",
2472 .help = "show the current VM status (running|paused)",
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -03002473 .mhandler.info = hmp_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002474 },
2475 {
2476 .name = "pcmcia",
2477 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002478 .params = "",
2479 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002480 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002481 },
2482 {
2483 .name = "mice",
2484 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002485 .params = "",
2486 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe235cec2011-09-21 15:29:55 -03002487 .mhandler.info = hmp_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002488 },
2489 {
2490 .name = "vnc",
2491 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002492 .params = "",
2493 .help = "show the vnc server status",
Luiz Capitulino2b54aa82011-10-17 16:41:22 -02002494 .mhandler.info = hmp_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002495 },
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002496#if defined(CONFIG_SPICE)
2497 {
2498 .name = "spice",
2499 .args_type = "",
2500 .params = "",
2501 .help = "show the spice server status",
Luiz Capitulinod1f29642011-10-20 17:01:33 -02002502 .mhandler.info = hmp_info_spice,
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002503 },
2504#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002505 {
2506 .name = "name",
2507 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002508 .params = "",
2509 .help = "show the current VM name",
Anthony Liguori48a32be2011-09-02 12:34:48 -05002510 .mhandler.info = hmp_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002511 },
2512 {
2513 .name = "uuid",
2514 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002515 .params = "",
2516 .help = "show the current VM UUID",
Luiz Capitulinoefab7672011-09-13 17:16:25 -03002517 .mhandler.info = hmp_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002518 },
j_mayer76a66252007-03-07 08:32:30 +00002519#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002520 {
2521 .name = "cpustats",
2522 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002523 .params = "",
2524 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002525 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002526 },
j_mayer76a66252007-03-07 08:32:30 +00002527#endif
blueswir131a60e22007-10-26 18:42:59 +00002528#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002529 {
2530 .name = "usernet",
2531 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002532 .params = "",
2533 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002534 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002535 },
blueswir131a60e22007-10-26 18:42:59 +00002536#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002537 {
2538 .name = "migrate",
2539 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002540 .params = "",
2541 .help = "show migration status",
Luiz Capitulino791e7c82011-09-13 17:37:16 -03002542 .mhandler.info = hmp_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002543 },
2544 {
2545 .name = "balloon",
2546 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002547 .params = "",
2548 .help = "show balloon information",
Luiz Capitulino96637bc2011-10-21 11:41:37 -02002549 .mhandler.info = hmp_info_balloon,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002550 },
2551 {
2552 .name = "qtree",
2553 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002554 .params = "",
2555 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002556 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002557 },
2558 {
2559 .name = "qdm",
2560 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002561 .params = "",
2562 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002563 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002564 },
2565 {
2566 .name = "roms",
2567 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002568 .params = "",
2569 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002570 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002571 },
Lluís6d8a7642011-08-31 20:30:43 +02002572#if defined(CONFIG_TRACE_SIMPLE)
Prerna Saxena22890ab2010-06-24 17:04:53 +05302573 {
2574 .name = "trace",
2575 .args_type = "",
2576 .params = "",
2577 .help = "show current contents of trace buffer",
2578 .mhandler.info = do_info_trace,
2579 },
Lluís31965ae2011-08-31 20:31:24 +02002580#endif
Prerna Saxena22890ab2010-06-24 17:04:53 +05302581 {
2582 .name = "trace-events",
2583 .args_type = "",
2584 .params = "",
2585 .help = "show available trace-events & their state",
Lluísfc764102011-08-31 20:31:18 +02002586 .mhandler.info = do_trace_print_events,
Prerna Saxena22890ab2010-06-24 17:04:53 +05302587 },
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002588 {
2589 .name = NULL,
2590 },
bellard9dc39cb2004-03-14 21:38:27 +00002591};
2592
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03002593static const mon_cmd_t qmp_cmds[] = {
Anthony Liguorie3193602011-09-02 12:34:47 -05002594#include "qmp-commands-old.h"
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03002595 { /* NULL */ },
2596};
2597
bellard9307c4c2004-04-04 12:57:25 +00002598/*******************************************************************/
2599
2600static const char *pch;
2601static jmp_buf expr_env;
2602
bellard92a31b12005-02-10 22:00:52 +00002603#define MD_TLONG 0
2604#define MD_I32 1
2605
bellard9307c4c2004-04-04 12:57:25 +00002606typedef struct MonitorDef {
2607 const char *name;
2608 int offset;
blueswir18662d652008-10-02 18:32:44 +00002609 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002610 int type;
bellard9307c4c2004-04-04 12:57:25 +00002611} MonitorDef;
2612
bellard57206fd2004-04-25 18:54:52 +00002613#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002614static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002615{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002616 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002617 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002618}
2619#endif
2620
bellarda541f292004-04-12 20:39:29 +00002621#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002622static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002623{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002624 CPUArchState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002625 unsigned int u;
2626 int i;
2627
2628 u = 0;
2629 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002630 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002631
2632 return u;
2633}
2634
blueswir18662d652008-10-02 18:32:44 +00002635static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002636{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002637 CPUArchState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00002638 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002639}
2640
blueswir18662d652008-10-02 18:32:44 +00002641static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002642{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002643 CPUArchState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00002644 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002645}
bellard9fddaa02004-05-21 12:59:32 +00002646
blueswir18662d652008-10-02 18:32:44 +00002647static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002648{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002649 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002650 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002651}
2652
blueswir18662d652008-10-02 18:32:44 +00002653static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002654{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002655 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002656 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002657}
2658
blueswir18662d652008-10-02 18:32:44 +00002659static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002660{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002661 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002662 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002663}
bellarda541f292004-04-12 20:39:29 +00002664#endif
2665
bellarde95c8d52004-09-30 22:22:08 +00002666#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002667#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002668static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002669{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002670 CPUArchState *env = mon_get_cpu();
Blue Swirl5a834bb2010-05-09 20:19:04 +00002671
2672 return cpu_get_psr(env);
bellarde95c8d52004-09-30 22:22:08 +00002673}
bellard7b936c02005-10-30 17:05:13 +00002674#endif
bellarde95c8d52004-09-30 22:22:08 +00002675
blueswir18662d652008-10-02 18:32:44 +00002676static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002677{
Andreas Färber9349b4f2012-03-14 01:38:32 +01002678 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002679 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002680}
2681#endif
2682
blueswir18662d652008-10-02 18:32:44 +00002683static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002684#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002685
2686#define SEG(name, seg) \
Andreas Färbere59d1672012-02-16 00:40:47 +01002687 { name, offsetof(CPUX86State, segs[seg].selector), NULL, MD_I32 },\
2688 { name ".base", offsetof(CPUX86State, segs[seg].base) },\
2689 { name ".limit", offsetof(CPUX86State, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002690
Andreas Färbere59d1672012-02-16 00:40:47 +01002691 { "eax", offsetof(CPUX86State, regs[0]) },
2692 { "ecx", offsetof(CPUX86State, regs[1]) },
2693 { "edx", offsetof(CPUX86State, regs[2]) },
2694 { "ebx", offsetof(CPUX86State, regs[3]) },
2695 { "esp|sp", offsetof(CPUX86State, regs[4]) },
2696 { "ebp|fp", offsetof(CPUX86State, regs[5]) },
2697 { "esi", offsetof(CPUX86State, regs[6]) },
2698 { "edi", offsetof(CPUX86State, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002699#ifdef TARGET_X86_64
Andreas Färbere59d1672012-02-16 00:40:47 +01002700 { "r8", offsetof(CPUX86State, regs[8]) },
2701 { "r9", offsetof(CPUX86State, regs[9]) },
2702 { "r10", offsetof(CPUX86State, regs[10]) },
2703 { "r11", offsetof(CPUX86State, regs[11]) },
2704 { "r12", offsetof(CPUX86State, regs[12]) },
2705 { "r13", offsetof(CPUX86State, regs[13]) },
2706 { "r14", offsetof(CPUX86State, regs[14]) },
2707 { "r15", offsetof(CPUX86State, regs[15]) },
bellard92a31b12005-02-10 22:00:52 +00002708#endif
Andreas Färbere59d1672012-02-16 00:40:47 +01002709 { "eflags", offsetof(CPUX86State, eflags) },
2710 { "eip", offsetof(CPUX86State, eip) },
bellard57206fd2004-04-25 18:54:52 +00002711 SEG("cs", R_CS)
2712 SEG("ds", R_DS)
2713 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002714 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002715 SEG("fs", R_FS)
2716 SEG("gs", R_GS)
2717 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002718#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002719 /* General purpose registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01002720 { "r0", offsetof(CPUPPCState, gpr[0]) },
2721 { "r1", offsetof(CPUPPCState, gpr[1]) },
2722 { "r2", offsetof(CPUPPCState, gpr[2]) },
2723 { "r3", offsetof(CPUPPCState, gpr[3]) },
2724 { "r4", offsetof(CPUPPCState, gpr[4]) },
2725 { "r5", offsetof(CPUPPCState, gpr[5]) },
2726 { "r6", offsetof(CPUPPCState, gpr[6]) },
2727 { "r7", offsetof(CPUPPCState, gpr[7]) },
2728 { "r8", offsetof(CPUPPCState, gpr[8]) },
2729 { "r9", offsetof(CPUPPCState, gpr[9]) },
2730 { "r10", offsetof(CPUPPCState, gpr[10]) },
2731 { "r11", offsetof(CPUPPCState, gpr[11]) },
2732 { "r12", offsetof(CPUPPCState, gpr[12]) },
2733 { "r13", offsetof(CPUPPCState, gpr[13]) },
2734 { "r14", offsetof(CPUPPCState, gpr[14]) },
2735 { "r15", offsetof(CPUPPCState, gpr[15]) },
2736 { "r16", offsetof(CPUPPCState, gpr[16]) },
2737 { "r17", offsetof(CPUPPCState, gpr[17]) },
2738 { "r18", offsetof(CPUPPCState, gpr[18]) },
2739 { "r19", offsetof(CPUPPCState, gpr[19]) },
2740 { "r20", offsetof(CPUPPCState, gpr[20]) },
2741 { "r21", offsetof(CPUPPCState, gpr[21]) },
2742 { "r22", offsetof(CPUPPCState, gpr[22]) },
2743 { "r23", offsetof(CPUPPCState, gpr[23]) },
2744 { "r24", offsetof(CPUPPCState, gpr[24]) },
2745 { "r25", offsetof(CPUPPCState, gpr[25]) },
2746 { "r26", offsetof(CPUPPCState, gpr[26]) },
2747 { "r27", offsetof(CPUPPCState, gpr[27]) },
2748 { "r28", offsetof(CPUPPCState, gpr[28]) },
2749 { "r29", offsetof(CPUPPCState, gpr[29]) },
2750 { "r30", offsetof(CPUPPCState, gpr[30]) },
2751 { "r31", offsetof(CPUPPCState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00002752 /* Floating point registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01002753 { "f0", offsetof(CPUPPCState, fpr[0]) },
2754 { "f1", offsetof(CPUPPCState, fpr[1]) },
2755 { "f2", offsetof(CPUPPCState, fpr[2]) },
2756 { "f3", offsetof(CPUPPCState, fpr[3]) },
2757 { "f4", offsetof(CPUPPCState, fpr[4]) },
2758 { "f5", offsetof(CPUPPCState, fpr[5]) },
2759 { "f6", offsetof(CPUPPCState, fpr[6]) },
2760 { "f7", offsetof(CPUPPCState, fpr[7]) },
2761 { "f8", offsetof(CPUPPCState, fpr[8]) },
2762 { "f9", offsetof(CPUPPCState, fpr[9]) },
2763 { "f10", offsetof(CPUPPCState, fpr[10]) },
2764 { "f11", offsetof(CPUPPCState, fpr[11]) },
2765 { "f12", offsetof(CPUPPCState, fpr[12]) },
2766 { "f13", offsetof(CPUPPCState, fpr[13]) },
2767 { "f14", offsetof(CPUPPCState, fpr[14]) },
2768 { "f15", offsetof(CPUPPCState, fpr[15]) },
2769 { "f16", offsetof(CPUPPCState, fpr[16]) },
2770 { "f17", offsetof(CPUPPCState, fpr[17]) },
2771 { "f18", offsetof(CPUPPCState, fpr[18]) },
2772 { "f19", offsetof(CPUPPCState, fpr[19]) },
2773 { "f20", offsetof(CPUPPCState, fpr[20]) },
2774 { "f21", offsetof(CPUPPCState, fpr[21]) },
2775 { "f22", offsetof(CPUPPCState, fpr[22]) },
2776 { "f23", offsetof(CPUPPCState, fpr[23]) },
2777 { "f24", offsetof(CPUPPCState, fpr[24]) },
2778 { "f25", offsetof(CPUPPCState, fpr[25]) },
2779 { "f26", offsetof(CPUPPCState, fpr[26]) },
2780 { "f27", offsetof(CPUPPCState, fpr[27]) },
2781 { "f28", offsetof(CPUPPCState, fpr[28]) },
2782 { "f29", offsetof(CPUPPCState, fpr[29]) },
2783 { "f30", offsetof(CPUPPCState, fpr[30]) },
2784 { "f31", offsetof(CPUPPCState, fpr[31]) },
2785 { "fpscr", offsetof(CPUPPCState, fpscr) },
j_mayerff937db2007-09-19 05:49:13 +00002786 /* Next instruction pointer */
Andreas Färbere59d1672012-02-16 00:40:47 +01002787 { "nip|pc", offsetof(CPUPPCState, nip) },
2788 { "lr", offsetof(CPUPPCState, lr) },
2789 { "ctr", offsetof(CPUPPCState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00002790 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00002791 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00002792 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00002793 { "msr", 0, &monitor_get_msr, },
2794 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00002795 { "tbu", 0, &monitor_get_tbu, },
2796 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00002797#if defined(TARGET_PPC64)
2798 /* Address space register */
Andreas Färbere59d1672012-02-16 00:40:47 +01002799 { "asr", offsetof(CPUPPCState, asr) },
j_mayerff937db2007-09-19 05:49:13 +00002800#endif
2801 /* Segment registers */
Andreas Färbere59d1672012-02-16 00:40:47 +01002802 { "sdr1", offsetof(CPUPPCState, spr[SPR_SDR1]) },
2803 { "sr0", offsetof(CPUPPCState, sr[0]) },
2804 { "sr1", offsetof(CPUPPCState, sr[1]) },
2805 { "sr2", offsetof(CPUPPCState, sr[2]) },
2806 { "sr3", offsetof(CPUPPCState, sr[3]) },
2807 { "sr4", offsetof(CPUPPCState, sr[4]) },
2808 { "sr5", offsetof(CPUPPCState, sr[5]) },
2809 { "sr6", offsetof(CPUPPCState, sr[6]) },
2810 { "sr7", offsetof(CPUPPCState, sr[7]) },
2811 { "sr8", offsetof(CPUPPCState, sr[8]) },
2812 { "sr9", offsetof(CPUPPCState, sr[9]) },
2813 { "sr10", offsetof(CPUPPCState, sr[10]) },
2814 { "sr11", offsetof(CPUPPCState, sr[11]) },
2815 { "sr12", offsetof(CPUPPCState, sr[12]) },
2816 { "sr13", offsetof(CPUPPCState, sr[13]) },
2817 { "sr14", offsetof(CPUPPCState, sr[14]) },
2818 { "sr15", offsetof(CPUPPCState, sr[15]) },
Scott Wood90dc8812011-04-29 17:10:23 -05002819 /* Too lazy to put BATs... */
Andreas Färbere59d1672012-02-16 00:40:47 +01002820 { "pvr", offsetof(CPUPPCState, spr[SPR_PVR]) },
Scott Wood90dc8812011-04-29 17:10:23 -05002821
Andreas Färbere59d1672012-02-16 00:40:47 +01002822 { "srr0", offsetof(CPUPPCState, spr[SPR_SRR0]) },
2823 { "srr1", offsetof(CPUPPCState, spr[SPR_SRR1]) },
2824 { "sprg0", offsetof(CPUPPCState, spr[SPR_SPRG0]) },
2825 { "sprg1", offsetof(CPUPPCState, spr[SPR_SPRG1]) },
2826 { "sprg2", offsetof(CPUPPCState, spr[SPR_SPRG2]) },
2827 { "sprg3", offsetof(CPUPPCState, spr[SPR_SPRG3]) },
2828 { "sprg4", offsetof(CPUPPCState, spr[SPR_SPRG4]) },
2829 { "sprg5", offsetof(CPUPPCState, spr[SPR_SPRG5]) },
2830 { "sprg6", offsetof(CPUPPCState, spr[SPR_SPRG6]) },
2831 { "sprg7", offsetof(CPUPPCState, spr[SPR_SPRG7]) },
2832 { "pid", offsetof(CPUPPCState, spr[SPR_BOOKE_PID]) },
2833 { "csrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR0]) },
2834 { "csrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_CSRR1]) },
2835 { "esr", offsetof(CPUPPCState, spr[SPR_BOOKE_ESR]) },
2836 { "dear", offsetof(CPUPPCState, spr[SPR_BOOKE_DEAR]) },
2837 { "mcsr", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSR]) },
2838 { "tsr", offsetof(CPUPPCState, spr[SPR_BOOKE_TSR]) },
2839 { "tcr", offsetof(CPUPPCState, spr[SPR_BOOKE_TCR]) },
2840 { "vrsave", offsetof(CPUPPCState, spr[SPR_VRSAVE]) },
2841 { "pir", offsetof(CPUPPCState, spr[SPR_BOOKE_PIR]) },
2842 { "mcsrr0", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR0]) },
2843 { "mcsrr1", offsetof(CPUPPCState, spr[SPR_BOOKE_MCSRR1]) },
2844 { "decar", offsetof(CPUPPCState, spr[SPR_BOOKE_DECAR]) },
2845 { "ivpr", offsetof(CPUPPCState, spr[SPR_BOOKE_IVPR]) },
2846 { "epcr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPCR]) },
2847 { "sprg8", offsetof(CPUPPCState, spr[SPR_BOOKE_SPRG8]) },
2848 { "ivor0", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR0]) },
2849 { "ivor1", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR1]) },
2850 { "ivor2", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR2]) },
2851 { "ivor3", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR3]) },
2852 { "ivor4", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR4]) },
2853 { "ivor5", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR5]) },
2854 { "ivor6", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR6]) },
2855 { "ivor7", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR7]) },
2856 { "ivor8", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR8]) },
2857 { "ivor9", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR9]) },
2858 { "ivor10", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR10]) },
2859 { "ivor11", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR11]) },
2860 { "ivor12", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR12]) },
2861 { "ivor13", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR13]) },
2862 { "ivor14", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR14]) },
2863 { "ivor15", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR15]) },
2864 { "ivor32", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR32]) },
2865 { "ivor33", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR33]) },
2866 { "ivor34", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR34]) },
2867 { "ivor35", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR35]) },
2868 { "ivor36", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR36]) },
2869 { "ivor37", offsetof(CPUPPCState, spr[SPR_BOOKE_IVOR37]) },
2870 { "mas0", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS0]) },
2871 { "mas1", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS1]) },
2872 { "mas2", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS2]) },
2873 { "mas3", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS3]) },
2874 { "mas4", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS4]) },
2875 { "mas6", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS6]) },
2876 { "mas7", offsetof(CPUPPCState, spr[SPR_BOOKE_MAS7]) },
2877 { "mmucfg", offsetof(CPUPPCState, spr[SPR_MMUCFG]) },
2878 { "tlb0cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB0CFG]) },
2879 { "tlb1cfg", offsetof(CPUPPCState, spr[SPR_BOOKE_TLB1CFG]) },
2880 { "epr", offsetof(CPUPPCState, spr[SPR_BOOKE_EPR]) },
2881 { "eplc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPLC]) },
2882 { "epsc", offsetof(CPUPPCState, spr[SPR_BOOKE_EPSC]) },
2883 { "svr", offsetof(CPUPPCState, spr[SPR_E500_SVR]) },
2884 { "mcar", offsetof(CPUPPCState, spr[SPR_Exxx_MCAR]) },
2885 { "pid1", offsetof(CPUPPCState, spr[SPR_BOOKE_PID1]) },
2886 { "pid2", offsetof(CPUPPCState, spr[SPR_BOOKE_PID2]) },
2887 { "hid0", offsetof(CPUPPCState, spr[SPR_HID0]) },
Scott Wood90dc8812011-04-29 17:10:23 -05002888
bellarde95c8d52004-09-30 22:22:08 +00002889#elif defined(TARGET_SPARC)
Andreas Färbere59d1672012-02-16 00:40:47 +01002890 { "g0", offsetof(CPUSPARCState, gregs[0]) },
2891 { "g1", offsetof(CPUSPARCState, gregs[1]) },
2892 { "g2", offsetof(CPUSPARCState, gregs[2]) },
2893 { "g3", offsetof(CPUSPARCState, gregs[3]) },
2894 { "g4", offsetof(CPUSPARCState, gregs[4]) },
2895 { "g5", offsetof(CPUSPARCState, gregs[5]) },
2896 { "g6", offsetof(CPUSPARCState, gregs[6]) },
2897 { "g7", offsetof(CPUSPARCState, gregs[7]) },
bellarde95c8d52004-09-30 22:22:08 +00002898 { "o0", 0, monitor_get_reg },
2899 { "o1", 1, monitor_get_reg },
2900 { "o2", 2, monitor_get_reg },
2901 { "o3", 3, monitor_get_reg },
2902 { "o4", 4, monitor_get_reg },
2903 { "o5", 5, monitor_get_reg },
2904 { "o6", 6, monitor_get_reg },
2905 { "o7", 7, monitor_get_reg },
2906 { "l0", 8, monitor_get_reg },
2907 { "l1", 9, monitor_get_reg },
2908 { "l2", 10, monitor_get_reg },
2909 { "l3", 11, monitor_get_reg },
2910 { "l4", 12, monitor_get_reg },
2911 { "l5", 13, monitor_get_reg },
2912 { "l6", 14, monitor_get_reg },
2913 { "l7", 15, monitor_get_reg },
2914 { "i0", 16, monitor_get_reg },
2915 { "i1", 17, monitor_get_reg },
2916 { "i2", 18, monitor_get_reg },
2917 { "i3", 19, monitor_get_reg },
2918 { "i4", 20, monitor_get_reg },
2919 { "i5", 21, monitor_get_reg },
2920 { "i6", 22, monitor_get_reg },
2921 { "i7", 23, monitor_get_reg },
Andreas Färbere59d1672012-02-16 00:40:47 +01002922 { "pc", offsetof(CPUSPARCState, pc) },
2923 { "npc", offsetof(CPUSPARCState, npc) },
2924 { "y", offsetof(CPUSPARCState, y) },
bellard7b936c02005-10-30 17:05:13 +00002925#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00002926 { "psr", 0, &monitor_get_psr, },
Andreas Färbere59d1672012-02-16 00:40:47 +01002927 { "wim", offsetof(CPUSPARCState, wim) },
bellard7b936c02005-10-30 17:05:13 +00002928#endif
Andreas Färbere59d1672012-02-16 00:40:47 +01002929 { "tbr", offsetof(CPUSPARCState, tbr) },
2930 { "fsr", offsetof(CPUSPARCState, fsr) },
2931 { "f0", offsetof(CPUSPARCState, fpr[0].l.upper) },
2932 { "f1", offsetof(CPUSPARCState, fpr[0].l.lower) },
2933 { "f2", offsetof(CPUSPARCState, fpr[1].l.upper) },
2934 { "f3", offsetof(CPUSPARCState, fpr[1].l.lower) },
2935 { "f4", offsetof(CPUSPARCState, fpr[2].l.upper) },
2936 { "f5", offsetof(CPUSPARCState, fpr[2].l.lower) },
2937 { "f6", offsetof(CPUSPARCState, fpr[3].l.upper) },
2938 { "f7", offsetof(CPUSPARCState, fpr[3].l.lower) },
2939 { "f8", offsetof(CPUSPARCState, fpr[4].l.upper) },
2940 { "f9", offsetof(CPUSPARCState, fpr[4].l.lower) },
2941 { "f10", offsetof(CPUSPARCState, fpr[5].l.upper) },
2942 { "f11", offsetof(CPUSPARCState, fpr[5].l.lower) },
2943 { "f12", offsetof(CPUSPARCState, fpr[6].l.upper) },
2944 { "f13", offsetof(CPUSPARCState, fpr[6].l.lower) },
2945 { "f14", offsetof(CPUSPARCState, fpr[7].l.upper) },
2946 { "f15", offsetof(CPUSPARCState, fpr[7].l.lower) },
2947 { "f16", offsetof(CPUSPARCState, fpr[8].l.upper) },
2948 { "f17", offsetof(CPUSPARCState, fpr[8].l.lower) },
2949 { "f18", offsetof(CPUSPARCState, fpr[9].l.upper) },
2950 { "f19", offsetof(CPUSPARCState, fpr[9].l.lower) },
2951 { "f20", offsetof(CPUSPARCState, fpr[10].l.upper) },
2952 { "f21", offsetof(CPUSPARCState, fpr[10].l.lower) },
2953 { "f22", offsetof(CPUSPARCState, fpr[11].l.upper) },
2954 { "f23", offsetof(CPUSPARCState, fpr[11].l.lower) },
2955 { "f24", offsetof(CPUSPARCState, fpr[12].l.upper) },
2956 { "f25", offsetof(CPUSPARCState, fpr[12].l.lower) },
2957 { "f26", offsetof(CPUSPARCState, fpr[13].l.upper) },
2958 { "f27", offsetof(CPUSPARCState, fpr[13].l.lower) },
2959 { "f28", offsetof(CPUSPARCState, fpr[14].l.upper) },
2960 { "f29", offsetof(CPUSPARCState, fpr[14].l.lower) },
2961 { "f30", offsetof(CPUSPARCState, fpr[15].l.upper) },
2962 { "f31", offsetof(CPUSPARCState, fpr[15].l.lower) },
bellard7b936c02005-10-30 17:05:13 +00002963#ifdef TARGET_SPARC64
Andreas Färbere59d1672012-02-16 00:40:47 +01002964 { "f32", offsetof(CPUSPARCState, fpr[16]) },
2965 { "f34", offsetof(CPUSPARCState, fpr[17]) },
2966 { "f36", offsetof(CPUSPARCState, fpr[18]) },
2967 { "f38", offsetof(CPUSPARCState, fpr[19]) },
2968 { "f40", offsetof(CPUSPARCState, fpr[20]) },
2969 { "f42", offsetof(CPUSPARCState, fpr[21]) },
2970 { "f44", offsetof(CPUSPARCState, fpr[22]) },
2971 { "f46", offsetof(CPUSPARCState, fpr[23]) },
2972 { "f48", offsetof(CPUSPARCState, fpr[24]) },
2973 { "f50", offsetof(CPUSPARCState, fpr[25]) },
2974 { "f52", offsetof(CPUSPARCState, fpr[26]) },
2975 { "f54", offsetof(CPUSPARCState, fpr[27]) },
2976 { "f56", offsetof(CPUSPARCState, fpr[28]) },
2977 { "f58", offsetof(CPUSPARCState, fpr[29]) },
2978 { "f60", offsetof(CPUSPARCState, fpr[30]) },
2979 { "f62", offsetof(CPUSPARCState, fpr[31]) },
2980 { "asi", offsetof(CPUSPARCState, asi) },
2981 { "pstate", offsetof(CPUSPARCState, pstate) },
2982 { "cansave", offsetof(CPUSPARCState, cansave) },
2983 { "canrestore", offsetof(CPUSPARCState, canrestore) },
2984 { "otherwin", offsetof(CPUSPARCState, otherwin) },
2985 { "wstate", offsetof(CPUSPARCState, wstate) },
2986 { "cleanwin", offsetof(CPUSPARCState, cleanwin) },
2987 { "fprs", offsetof(CPUSPARCState, fprs) },
bellard7b936c02005-10-30 17:05:13 +00002988#endif
bellard9307c4c2004-04-04 12:57:25 +00002989#endif
2990 { NULL },
2991};
2992
aliguori376253e2009-03-05 23:01:23 +00002993static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00002994{
aliguori376253e2009-03-05 23:01:23 +00002995 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00002996 longjmp(expr_env, 1);
2997}
2998
Markus Armbruster09b94182010-01-20 13:07:30 +01002999/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00003000static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00003001{
blueswir18662d652008-10-02 18:32:44 +00003002 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00003003 void *ptr;
3004
bellard9307c4c2004-04-04 12:57:25 +00003005 for(md = monitor_defs; md->name != NULL; md++) {
3006 if (compare_cmd(name, md->name)) {
3007 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003008 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003009 } else {
Andreas Färber9349b4f2012-03-14 01:38:32 +01003010 CPUArchState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003011 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003012 switch(md->type) {
3013 case MD_I32:
3014 *pval = *(int32_t *)ptr;
3015 break;
3016 case MD_TLONG:
3017 *pval = *(target_long *)ptr;
3018 break;
3019 default:
3020 *pval = 0;
3021 break;
3022 }
bellard9307c4c2004-04-04 12:57:25 +00003023 }
3024 return 0;
3025 }
3026 }
3027 return -1;
3028}
3029
3030static void next(void)
3031{
Blue Swirl660f11b2009-07-31 21:16:51 +00003032 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003033 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003034 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003035 pch++;
3036 }
3037}
3038
aliguori376253e2009-03-05 23:01:23 +00003039static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003040
aliguori376253e2009-03-05 23:01:23 +00003041static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003042{
blueswir1c2efc952007-09-25 17:28:42 +00003043 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003044 char *p;
bellard6a00d602005-11-21 23:25:50 +00003045 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003046
3047 switch(*pch) {
3048 case '+':
3049 next();
aliguori376253e2009-03-05 23:01:23 +00003050 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003051 break;
3052 case '-':
3053 next();
aliguori376253e2009-03-05 23:01:23 +00003054 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003055 break;
3056 case '~':
3057 next();
aliguori376253e2009-03-05 23:01:23 +00003058 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003059 break;
3060 case '(':
3061 next();
aliguori376253e2009-03-05 23:01:23 +00003062 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003063 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003064 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003065 }
3066 next();
3067 break;
bellard81d09122004-07-14 17:21:37 +00003068 case '\'':
3069 pch++;
3070 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003071 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003072 n = *pch;
3073 pch++;
3074 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003075 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003076 next();
3077 break;
bellard9307c4c2004-04-04 12:57:25 +00003078 case '$':
3079 {
3080 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003081 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003082
bellard9307c4c2004-04-04 12:57:25 +00003083 pch++;
3084 q = buf;
3085 while ((*pch >= 'a' && *pch <= 'z') ||
3086 (*pch >= 'A' && *pch <= 'Z') ||
3087 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003088 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003089 if ((q - buf) < sizeof(buf) - 1)
3090 *q++ = *pch;
3091 pch++;
3092 }
blueswir1cd390082008-11-16 13:53:32 +00003093 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003094 pch++;
3095 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003096 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003097 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003098 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003099 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003100 }
3101 break;
3102 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003103 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003104 n = 0;
3105 break;
3106 default:
Luiz Capitulino6b0e33b2012-04-26 16:48:41 -03003107 errno = 0;
blueswir17743e582007-09-24 18:39:04 +00003108#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003109 n = strtoull(pch, &p, 0);
3110#else
bellard9307c4c2004-04-04 12:57:25 +00003111 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003112#endif
Luiz Capitulino6b0e33b2012-04-26 16:48:41 -03003113 if (errno == ERANGE) {
3114 expr_error(mon, "number too large");
3115 }
bellard9307c4c2004-04-04 12:57:25 +00003116 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003117 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003118 }
3119 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003120 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003121 pch++;
3122 break;
3123 }
3124 return n;
3125}
3126
3127
aliguori376253e2009-03-05 23:01:23 +00003128static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003129{
blueswir1c2efc952007-09-25 17:28:42 +00003130 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003131 int op;
ths3b46e622007-09-17 08:09:54 +00003132
aliguori376253e2009-03-05 23:01:23 +00003133 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003134 for(;;) {
3135 op = *pch;
3136 if (op != '*' && op != '/' && op != '%')
3137 break;
3138 next();
aliguori376253e2009-03-05 23:01:23 +00003139 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003140 switch(op) {
3141 default:
3142 case '*':
3143 val *= val2;
3144 break;
3145 case '/':
3146 case '%':
ths5fafdf22007-09-16 21:08:06 +00003147 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003148 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003149 if (op == '/')
3150 val /= val2;
3151 else
3152 val %= val2;
3153 break;
3154 }
3155 }
3156 return val;
3157}
3158
aliguori376253e2009-03-05 23:01:23 +00003159static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003160{
blueswir1c2efc952007-09-25 17:28:42 +00003161 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003162 int op;
bellard9307c4c2004-04-04 12:57:25 +00003163
aliguori376253e2009-03-05 23:01:23 +00003164 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003165 for(;;) {
3166 op = *pch;
3167 if (op != '&' && op != '|' && op != '^')
3168 break;
3169 next();
aliguori376253e2009-03-05 23:01:23 +00003170 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003171 switch(op) {
3172 default:
3173 case '&':
3174 val &= val2;
3175 break;
3176 case '|':
3177 val |= val2;
3178 break;
3179 case '^':
3180 val ^= val2;
3181 break;
3182 }
3183 }
3184 return val;
3185}
3186
aliguori376253e2009-03-05 23:01:23 +00003187static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003188{
blueswir1c2efc952007-09-25 17:28:42 +00003189 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003190 int op;
bellard9307c4c2004-04-04 12:57:25 +00003191
aliguori376253e2009-03-05 23:01:23 +00003192 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003193 for(;;) {
3194 op = *pch;
3195 if (op != '+' && op != '-')
3196 break;
3197 next();
aliguori376253e2009-03-05 23:01:23 +00003198 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003199 if (op == '+')
3200 val += val2;
3201 else
3202 val -= val2;
3203 }
3204 return val;
3205}
3206
aliguori376253e2009-03-05 23:01:23 +00003207static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003208{
3209 pch = *pp;
3210 if (setjmp(expr_env)) {
3211 *pp = pch;
3212 return -1;
3213 }
blueswir1cd390082008-11-16 13:53:32 +00003214 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003215 pch++;
aliguori376253e2009-03-05 23:01:23 +00003216 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003217 *pp = pch;
3218 return 0;
3219}
3220
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003221static int get_double(Monitor *mon, double *pval, const char **pp)
3222{
3223 const char *p = *pp;
3224 char *tailp;
3225 double d;
3226
3227 d = strtod(p, &tailp);
3228 if (tailp == p) {
3229 monitor_printf(mon, "Number expected\n");
3230 return -1;
3231 }
3232 if (d != d || d - d != 0) {
3233 /* NaN or infinity */
3234 monitor_printf(mon, "Bad number\n");
3235 return -1;
3236 }
3237 *pval = d;
3238 *pp = tailp;
3239 return 0;
3240}
3241
bellard9307c4c2004-04-04 12:57:25 +00003242static int get_str(char *buf, int buf_size, const char **pp)
3243{
3244 const char *p;
3245 char *q;
3246 int c;
3247
bellard81d09122004-07-14 17:21:37 +00003248 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003249 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003250 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003251 p++;
3252 if (*p == '\0') {
3253 fail:
bellard81d09122004-07-14 17:21:37 +00003254 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003255 *pp = p;
3256 return -1;
3257 }
bellard9307c4c2004-04-04 12:57:25 +00003258 if (*p == '\"') {
3259 p++;
3260 while (*p != '\0' && *p != '\"') {
3261 if (*p == '\\') {
3262 p++;
3263 c = *p++;
3264 switch(c) {
3265 case 'n':
3266 c = '\n';
3267 break;
3268 case 'r':
3269 c = '\r';
3270 break;
3271 case '\\':
3272 case '\'':
3273 case '\"':
3274 break;
3275 default:
3276 qemu_printf("unsupported escape code: '\\%c'\n", c);
3277 goto fail;
3278 }
3279 if ((q - buf) < buf_size - 1) {
3280 *q++ = c;
3281 }
3282 } else {
3283 if ((q - buf) < buf_size - 1) {
3284 *q++ = *p;
3285 }
3286 p++;
3287 }
3288 }
3289 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003290 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003291 goto fail;
3292 }
3293 p++;
3294 } else {
blueswir1cd390082008-11-16 13:53:32 +00003295 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003296 if ((q - buf) < buf_size - 1) {
3297 *q++ = *p;
3298 }
3299 p++;
3300 }
bellard9307c4c2004-04-04 12:57:25 +00003301 }
bellard81d09122004-07-14 17:21:37 +00003302 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003303 *pp = p;
3304 return 0;
3305}
3306
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003307/*
3308 * Store the command-name in cmdname, and return a pointer to
3309 * the remaining of the command string.
3310 */
3311static const char *get_command_name(const char *cmdline,
3312 char *cmdname, size_t nlen)
3313{
3314 size_t len;
3315 const char *p, *pstart;
3316
3317 p = cmdline;
3318 while (qemu_isspace(*p))
3319 p++;
3320 if (*p == '\0')
3321 return NULL;
3322 pstart = p;
3323 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3324 p++;
3325 len = p - pstart;
3326 if (len > nlen - 1)
3327 len = nlen - 1;
3328 memcpy(cmdname, pstart, len);
3329 cmdname[len] = '\0';
3330 return p;
3331}
3332
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003333/**
3334 * Read key of 'type' into 'key' and return the current
3335 * 'type' pointer.
3336 */
3337static char *key_get_info(const char *type, char **key)
3338{
3339 size_t len;
3340 char *p, *str;
3341
3342 if (*type == ',')
3343 type++;
3344
3345 p = strchr(type, ':');
3346 if (!p) {
3347 *key = NULL;
3348 return NULL;
3349 }
3350 len = p - type;
3351
Anthony Liguori7267c092011-08-20 22:09:37 -05003352 str = g_malloc(len + 1);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003353 memcpy(str, type, len);
3354 str[len] = '\0';
3355
3356 *key = str;
3357 return ++p;
3358}
3359
bellard9307c4c2004-04-04 12:57:25 +00003360static int default_fmt_format = 'x';
3361static int default_fmt_size = 4;
3362
3363#define MAX_ARGS 16
3364
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003365static int is_valid_option(const char *c, const char *typestr)
3366{
3367 char option[3];
3368
3369 option[0] = '-';
3370 option[1] = *c;
3371 option[2] = '\0';
3372
3373 typestr = strstr(typestr, option);
3374 return (typestr != NULL);
3375}
3376
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003377static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3378 const char *cmdname)
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003379{
3380 const mon_cmd_t *cmd;
3381
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003382 for (cmd = disp_table; cmd->name != NULL; cmd++) {
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003383 if (compare_cmd(cmdname, cmd->name)) {
3384 return cmd;
3385 }
3386 }
3387
3388 return NULL;
3389}
3390
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003391static const mon_cmd_t *monitor_find_command(const char *cmdname)
3392{
3393 return search_dispatch_table(mon_cmds, cmdname);
3394}
3395
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003396static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3397{
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003398 return search_dispatch_table(qmp_cmds, cmdname);
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003399}
3400
Anthony Liguoric227f092009-10-01 16:12:16 -05003401static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003402 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003403 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003404{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003405 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003406 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003407 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003408 char cmdname[256];
3409 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003410 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003411
3412#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003413 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003414#endif
ths3b46e622007-09-17 08:09:54 +00003415
bellard9307c4c2004-04-04 12:57:25 +00003416 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003417 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3418 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003419 return NULL;
ths3b46e622007-09-17 08:09:54 +00003420
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003421 cmd = monitor_find_command(cmdname);
3422 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003423 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003424 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003425 }
bellard9307c4c2004-04-04 12:57:25 +00003426
bellard9307c4c2004-04-04 12:57:25 +00003427 /* parse the parameters */
3428 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003429 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003430 typestr = key_get_info(typestr, &key);
3431 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003432 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003433 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003434 typestr++;
3435 switch(c) {
3436 case 'F':
bellard81d09122004-07-14 17:21:37 +00003437 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003438 case 's':
3439 {
3440 int ret;
ths3b46e622007-09-17 08:09:54 +00003441
blueswir1cd390082008-11-16 13:53:32 +00003442 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003443 p++;
3444 if (*typestr == '?') {
3445 typestr++;
3446 if (*p == '\0') {
3447 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003448 break;
bellard9307c4c2004-04-04 12:57:25 +00003449 }
3450 }
3451 ret = get_str(buf, sizeof(buf), &p);
3452 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003453 switch(c) {
3454 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003455 monitor_printf(mon, "%s: filename expected\n",
3456 cmdname);
bellard81d09122004-07-14 17:21:37 +00003457 break;
3458 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003459 monitor_printf(mon, "%s: block device name expected\n",
3460 cmdname);
bellard81d09122004-07-14 17:21:37 +00003461 break;
3462 default:
aliguori376253e2009-03-05 23:01:23 +00003463 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003464 break;
3465 }
bellard9307c4c2004-04-04 12:57:25 +00003466 goto fail;
3467 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003468 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003469 }
3470 break;
Markus Armbruster361127d2010-02-10 20:24:35 +01003471 case 'O':
3472 {
3473 QemuOptsList *opts_list;
3474 QemuOpts *opts;
3475
3476 opts_list = qemu_find_opts(key);
3477 if (!opts_list || opts_list->desc->name) {
3478 goto bad_type;
3479 }
3480 while (qemu_isspace(*p)) {
3481 p++;
3482 }
3483 if (!*p)
3484 break;
3485 if (get_str(buf, sizeof(buf), &p) < 0) {
3486 goto fail;
3487 }
3488 opts = qemu_opts_parse(opts_list, buf, 1);
3489 if (!opts) {
3490 goto fail;
3491 }
3492 qemu_opts_to_qdict(opts, qdict);
3493 qemu_opts_del(opts);
3494 }
3495 break;
bellard9307c4c2004-04-04 12:57:25 +00003496 case '/':
3497 {
3498 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003499
blueswir1cd390082008-11-16 13:53:32 +00003500 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003501 p++;
3502 if (*p == '/') {
3503 /* format found */
3504 p++;
3505 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003506 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003507 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003508 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003509 count = count * 10 + (*p - '0');
3510 p++;
3511 }
3512 }
3513 size = -1;
3514 format = -1;
3515 for(;;) {
3516 switch(*p) {
3517 case 'o':
3518 case 'd':
3519 case 'u':
3520 case 'x':
3521 case 'i':
3522 case 'c':
3523 format = *p++;
3524 break;
3525 case 'b':
3526 size = 1;
3527 p++;
3528 break;
3529 case 'h':
3530 size = 2;
3531 p++;
3532 break;
3533 case 'w':
3534 size = 4;
3535 p++;
3536 break;
3537 case 'g':
3538 case 'L':
3539 size = 8;
3540 p++;
3541 break;
3542 default:
3543 goto next;
3544 }
3545 }
3546 next:
blueswir1cd390082008-11-16 13:53:32 +00003547 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003548 monitor_printf(mon, "invalid char in format: '%c'\n",
3549 *p);
bellard9307c4c2004-04-04 12:57:25 +00003550 goto fail;
3551 }
bellard9307c4c2004-04-04 12:57:25 +00003552 if (format < 0)
3553 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003554 if (format != 'i') {
3555 /* for 'i', not specifying a size gives -1 as size */
3556 if (size < 0)
3557 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003558 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003559 }
bellard9307c4c2004-04-04 12:57:25 +00003560 default_fmt_format = format;
3561 } else {
3562 count = 1;
3563 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003564 if (format != 'i') {
3565 size = default_fmt_size;
3566 } else {
3567 size = -1;
3568 }
bellard9307c4c2004-04-04 12:57:25 +00003569 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003570 qdict_put(qdict, "count", qint_from_int(count));
3571 qdict_put(qdict, "format", qint_from_int(format));
3572 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003573 }
3574 break;
3575 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003576 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003577 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003578 {
blueswir1c2efc952007-09-25 17:28:42 +00003579 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003580
blueswir1cd390082008-11-16 13:53:32 +00003581 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003582 p++;
bellard34405572004-06-08 00:55:58 +00003583 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003584 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003585 if (*p == '\0') {
3586 typestr++;
3587 break;
3588 }
bellard34405572004-06-08 00:55:58 +00003589 } else {
3590 if (*p == '.') {
3591 p++;
blueswir1cd390082008-11-16 13:53:32 +00003592 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003593 p++;
bellard34405572004-06-08 00:55:58 +00003594 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003595 typestr++;
3596 break;
bellard34405572004-06-08 00:55:58 +00003597 }
3598 }
bellard13224a82006-07-14 22:03:35 +00003599 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003600 }
aliguori376253e2009-03-05 23:01:23 +00003601 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003602 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003603 /* Check if 'i' is greater than 32-bit */
3604 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3605 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3606 monitor_printf(mon, "integer is for 32-bit values\n");
3607 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003608 } else if (c == 'M') {
Luiz Capitulino91162842012-04-26 17:34:30 -03003609 if (val < 0) {
3610 monitor_printf(mon, "enter a positive value\n");
3611 goto fail;
3612 }
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003613 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003614 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003615 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003616 }
3617 break;
Jes Sorensendbc0c672010-10-21 17:15:47 +02003618 case 'o':
3619 {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +01003620 int64_t val;
Jes Sorensendbc0c672010-10-21 17:15:47 +02003621 char *end;
3622
3623 while (qemu_isspace(*p)) {
3624 p++;
3625 }
3626 if (*typestr == '?') {
3627 typestr++;
3628 if (*p == '\0') {
3629 break;
3630 }
3631 }
3632 val = strtosz(p, &end);
3633 if (val < 0) {
3634 monitor_printf(mon, "invalid size\n");
3635 goto fail;
3636 }
3637 qdict_put(qdict, key, qint_from_int(val));
3638 p = end;
3639 }
3640 break;
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003641 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003642 {
3643 double val;
3644
3645 while (qemu_isspace(*p))
3646 p++;
3647 if (*typestr == '?') {
3648 typestr++;
3649 if (*p == '\0') {
3650 break;
3651 }
3652 }
3653 if (get_double(mon, &val, &p) < 0) {
3654 goto fail;
3655 }
Jes Sorensen07de3e62010-10-21 17:15:49 +02003656 if (p[0] && p[1] == 's') {
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003657 switch (*p) {
3658 case 'm':
3659 val /= 1e3; p += 2; break;
3660 case 'u':
3661 val /= 1e6; p += 2; break;
3662 case 'n':
3663 val /= 1e9; p += 2; break;
3664 }
3665 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003666 if (*p && !qemu_isspace(*p)) {
3667 monitor_printf(mon, "Unknown unit suffix\n");
3668 goto fail;
3669 }
3670 qdict_put(qdict, key, qfloat_from_double(val));
3671 }
3672 break;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01003673 case 'b':
3674 {
3675 const char *beg;
3676 int val;
3677
3678 while (qemu_isspace(*p)) {
3679 p++;
3680 }
3681 beg = p;
3682 while (qemu_isgraph(*p)) {
3683 p++;
3684 }
3685 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3686 val = 1;
3687 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3688 val = 0;
3689 } else {
3690 monitor_printf(mon, "Expected 'on' or 'off'\n");
3691 goto fail;
3692 }
3693 qdict_put(qdict, key, qbool_from_int(val));
3694 }
3695 break;
bellard9307c4c2004-04-04 12:57:25 +00003696 case '-':
3697 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003698 const char *tmp = p;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003699 int skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003700 /* option */
ths3b46e622007-09-17 08:09:54 +00003701
bellard9307c4c2004-04-04 12:57:25 +00003702 c = *typestr++;
3703 if (c == '\0')
3704 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003705 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003706 p++;
bellard9307c4c2004-04-04 12:57:25 +00003707 if (*p == '-') {
3708 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003709 if(c != *p) {
3710 if(!is_valid_option(p, typestr)) {
3711
3712 monitor_printf(mon, "%s: unsupported option -%c\n",
3713 cmdname, *p);
3714 goto fail;
3715 } else {
3716 skip_key = 1;
3717 }
bellard9307c4c2004-04-04 12:57:25 +00003718 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003719 if(skip_key) {
3720 p = tmp;
3721 } else {
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003722 /* has option */
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003723 p++;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003724 qdict_put(qdict, key, qbool_from_int(1));
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003725 }
bellard9307c4c2004-04-04 12:57:25 +00003726 }
bellard9307c4c2004-04-04 12:57:25 +00003727 }
3728 break;
3729 default:
3730 bad_type:
aliguori376253e2009-03-05 23:01:23 +00003731 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00003732 goto fail;
3733 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003734 g_free(key);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003735 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003736 }
3737 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003738 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003739 p++;
3740 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003741 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3742 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00003743 goto fail;
3744 }
3745
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003746 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003747
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003748fail:
Anthony Liguori7267c092011-08-20 22:09:37 -05003749 g_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003750 return NULL;
3751}
3752
Markus Armbrusterd6f46832010-02-17 10:52:26 +01003753void monitor_set_error(Monitor *mon, QError *qerror)
3754{
3755 /* report only the first error */
3756 if (!mon->error) {
3757 mon->error = qerror;
3758 } else {
3759 MON_DEBUG("Additional error report at %s:%d\n",
3760 qerror->file, qerror->linenr);
3761 QDECREF(qerror);
3762 }
3763}
3764
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003765static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3766{
Luiz Capitulino6d441432010-11-22 16:35:09 -02003767 if (ret && !monitor_has_error(mon)) {
3768 /*
3769 * If it returns failure, it must have passed on error.
3770 *
3771 * Action: Report an internal error to the client if in QMP.
3772 */
3773 qerror_report(QERR_UNDEFINED_ERROR);
3774 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
3775 cmd->name);
3776 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003777
3778#ifdef CONFIG_DEBUG_MONITOR
Luiz Capitulino6d441432010-11-22 16:35:09 -02003779 if (!ret && monitor_has_error(mon)) {
3780 /*
3781 * If it returns success, it must not have passed an error.
3782 *
3783 * Action: Report the passed error to the client.
3784 */
3785 MON_DEBUG("command '%s' returned success but passed an error\n",
3786 cmd->name);
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003787 }
Luiz Capitulino6d441432010-11-22 16:35:09 -02003788
3789 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
3790 /*
3791 * Handlers should not call Monitor print functions.
3792 *
3793 * Action: Ignore them in QMP.
3794 *
3795 * (XXX: we don't check any 'info' or 'query' command here
3796 * because the user print function _is_ called by do_info(), hence
3797 * we will trigger this check. This problem will go away when we
3798 * make 'query' commands real and kill do_info())
3799 */
3800 MON_DEBUG("command '%s' called print functions %d time(s)\n",
3801 cmd->name, mon_print_count_get(mon));
3802 }
3803#endif
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003804}
3805
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003806static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003807{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003808 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003809 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003810
3811 qdict = qdict_new();
3812
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03003813 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003814 if (!cmd)
3815 goto out;
3816
Luiz Capitulino4903de02010-09-16 11:01:32 -03003817 if (handler_is_async(cmd)) {
Adam Litke940cc302010-01-25 12:18:44 -06003818 user_async_cmd_handler(mon, cmd, qdict);
Luiz Capitulino9e807212010-09-16 10:58:59 -03003819 } else if (handler_is_qobject(cmd)) {
Luiz Capitulinode79ba62010-09-16 11:06:11 -03003820 QObject *data = NULL;
3821
3822 /* XXX: ignores the error code */
3823 cmd->mhandler.cmd_new(mon, qdict, &data);
3824 assert(!monitor_has_error(mon));
3825 if (data) {
3826 cmd->user_print(mon, data);
3827 qobject_decref(data);
3828 }
Luiz Capitulino13917be2009-10-07 13:41:54 -03003829 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03003830 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003831 }
3832
Luiz Capitulino13917be2009-10-07 13:41:54 -03003833out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003834 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00003835}
3836
bellard81d09122004-07-14 17:21:37 +00003837static void cmd_completion(const char *name, const char *list)
3838{
3839 const char *p, *pstart;
3840 char cmd[128];
3841 int len;
3842
3843 p = list;
3844 for(;;) {
3845 pstart = p;
3846 p = strchr(p, '|');
3847 if (!p)
3848 p = pstart + strlen(pstart);
3849 len = p - pstart;
3850 if (len > sizeof(cmd) - 2)
3851 len = sizeof(cmd) - 2;
3852 memcpy(cmd, pstart, len);
3853 cmd[len] = '\0';
3854 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00003855 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00003856 }
3857 if (*p == '\0')
3858 break;
3859 p++;
3860 }
3861}
3862
3863static void file_completion(const char *input)
3864{
3865 DIR *ffs;
3866 struct dirent *d;
3867 char path[1024];
3868 char file[1024], file_prefix[1024];
3869 int input_path_len;
3870 const char *p;
3871
ths5fafdf22007-09-16 21:08:06 +00003872 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00003873 if (!p) {
3874 input_path_len = 0;
3875 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00003876 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00003877 } else {
3878 input_path_len = p - input + 1;
3879 memcpy(path, input, input_path_len);
3880 if (input_path_len > sizeof(path) - 1)
3881 input_path_len = sizeof(path) - 1;
3882 path[input_path_len] = '\0';
3883 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3884 }
3885#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00003886 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
3887 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00003888#endif
3889 ffs = opendir(path);
3890 if (!ffs)
3891 return;
3892 for(;;) {
3893 struct stat sb;
3894 d = readdir(ffs);
3895 if (!d)
3896 break;
Kusanagi Kouichi46c7fc12010-10-20 18:00:01 +09003897
3898 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
3899 continue;
3900 }
3901
bellard81d09122004-07-14 17:21:37 +00003902 if (strstart(d->d_name, file_prefix, NULL)) {
3903 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00003904 if (input_path_len < sizeof(file))
3905 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3906 d->d_name);
bellard81d09122004-07-14 17:21:37 +00003907 /* stat the file to find out if it's a directory.
3908 * In that case add a slash to speed up typing long paths
3909 */
Markus Armbrusterc951d9a2011-11-16 15:43:47 +01003910 if (stat(file, &sb) == 0 && S_ISDIR(sb.st_mode)) {
blueswir1363a37d2008-08-21 17:58:08 +00003911 pstrcat(file, sizeof(file), "/");
Markus Armbrusterc951d9a2011-11-16 15:43:47 +01003912 }
aliguori731b0362009-03-05 23:01:42 +00003913 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00003914 }
3915 }
3916 closedir(ffs);
3917}
3918
aliguori51de9762009-03-05 23:00:43 +00003919static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00003920{
aliguori51de9762009-03-05 23:00:43 +00003921 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00003922 const char *input = opaque;
3923
3924 if (input[0] == '\0' ||
3925 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00003926 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00003927 }
3928}
3929
3930/* NOTE: this parser is an approximate form of the real command parser */
3931static void parse_cmdline(const char *cmdline,
3932 int *pnb_args, char **args)
3933{
3934 const char *p;
3935 int nb_args, ret;
3936 char buf[1024];
3937
3938 p = cmdline;
3939 nb_args = 0;
3940 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00003941 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00003942 p++;
3943 if (*p == '\0')
3944 break;
3945 if (nb_args >= MAX_ARGS)
3946 break;
3947 ret = get_str(buf, sizeof(buf), &p);
Anthony Liguori7267c092011-08-20 22:09:37 -05003948 args[nb_args] = g_strdup(buf);
bellard81d09122004-07-14 17:21:37 +00003949 nb_args++;
3950 if (ret < 0)
3951 break;
3952 }
3953 *pnb_args = nb_args;
3954}
3955
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003956static const char *next_arg_type(const char *typestr)
3957{
3958 const char *p = strchr(typestr, ':');
3959 return (p != NULL ? ++p : typestr);
3960}
3961
aliguori4c36ba32009-03-05 23:01:37 +00003962static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00003963{
3964 const char *cmdname;
3965 char *args[MAX_ARGS];
3966 int nb_args, i, len;
3967 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05003968 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00003969 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00003970
3971 parse_cmdline(cmdline, &nb_args, args);
3972#ifdef DEBUG_COMPLETION
3973 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00003974 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00003975 }
3976#endif
3977
3978 /* if the line ends with a space, it means we want to complete the
3979 next arg */
3980 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00003981 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
Jan Kiszka03a63482010-06-16 00:38:33 +02003982 if (nb_args >= MAX_ARGS) {
3983 goto cleanup;
3984 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003985 args[nb_args++] = g_strdup("");
bellard81d09122004-07-14 17:21:37 +00003986 }
3987 if (nb_args <= 1) {
3988 /* command completion */
3989 if (nb_args == 0)
3990 cmdname = "";
3991 else
3992 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00003993 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00003994 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00003995 cmd_completion(cmdname, cmd->name);
3996 }
3997 } else {
3998 /* find the command */
Jan Kiszka03a63482010-06-16 00:38:33 +02003999 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4000 if (compare_cmd(args[0], cmd->name)) {
4001 break;
4002 }
bellard81d09122004-07-14 17:21:37 +00004003 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004004 if (!cmd->name) {
4005 goto cleanup;
4006 }
4007
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004008 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00004009 for(i = 0; i < nb_args - 2; i++) {
4010 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004011 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004012 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004013 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004014 }
4015 }
4016 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00004017 if (*ptype == '-' && ptype[1] != '\0') {
Jan Kiszka3b6dbf22010-06-16 00:38:34 +02004018 ptype = next_arg_type(ptype);
Blue Swirl2a1704a2009-08-23 20:10:28 +00004019 }
bellard81d09122004-07-14 17:21:37 +00004020 switch(*ptype) {
4021 case 'F':
4022 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00004023 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004024 file_completion(str);
4025 break;
4026 case 'B':
4027 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00004028 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004029 bdrv_iterate(block_completion_it, (void *)str);
4030 break;
bellard7fe48482004-10-09 18:08:01 +00004031 case 's':
4032 /* XXX: more generic ? */
4033 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00004034 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00004035 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4036 cmd_completion(str, cmd->name);
4037 }
bellard64866c32006-05-07 18:03:31 +00004038 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00004039 char *sep = strrchr(str, '-');
4040 if (sep)
4041 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00004042 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00004043 for(key = key_defs; key->name != NULL; key++) {
4044 cmd_completion(str, key->name);
4045 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02004046 } else if (!strcmp(cmd->name, "help|?")) {
4047 readline_set_completion_index(cur_mon->rs, strlen(str));
4048 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4049 cmd_completion(str, cmd->name);
4050 }
bellard7fe48482004-10-09 18:08:01 +00004051 }
4052 break;
bellard81d09122004-07-14 17:21:37 +00004053 default:
4054 break;
4055 }
4056 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004057
4058cleanup:
4059 for (i = 0; i < nb_args; i++) {
Anthony Liguori7267c092011-08-20 22:09:37 -05004060 g_free(args[i]);
Jan Kiszka03a63482010-06-16 00:38:33 +02004061 }
bellard81d09122004-07-14 17:21:37 +00004062}
4063
aliguori731b0362009-03-05 23:01:42 +00004064static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004065{
aliguori731b0362009-03-05 23:01:42 +00004066 Monitor *mon = opaque;
4067
Jan Kiszkac62313b2009-12-04 14:05:29 +01004068 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00004069}
4070
Luiz Capitulino09069b12010-02-04 18:10:06 -02004071static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4072{
4073 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4074 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4075}
4076
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004077/*
Luiz Capitulino4af91932010-06-22 11:44:05 -03004078 * Argument validation rules:
4079 *
4080 * 1. The argument must exist in cmd_args qdict
4081 * 2. The argument type must be the expected one
4082 *
4083 * Special case: If the argument doesn't exist in cmd_args and
4084 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4085 * checking is skipped for it.
4086 */
4087static int check_client_args_type(const QDict *client_args,
4088 const QDict *cmd_args, int flags)
4089{
4090 const QDictEntry *ent;
4091
4092 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4093 QObject *obj;
4094 QString *arg_type;
4095 const QObject *client_arg = qdict_entry_value(ent);
4096 const char *client_arg_name = qdict_entry_key(ent);
4097
4098 obj = qdict_get(cmd_args, client_arg_name);
4099 if (!obj) {
4100 if (flags & QMP_ACCEPT_UNKNOWNS) {
4101 /* handler accepts unknowns */
4102 continue;
4103 }
4104 /* client arg doesn't exist */
4105 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4106 return -1;
4107 }
4108
4109 arg_type = qobject_to_qstring(obj);
4110 assert(arg_type != NULL);
4111
4112 /* check if argument's type is correct */
4113 switch (qstring_get_str(arg_type)[0]) {
4114 case 'F':
4115 case 'B':
4116 case 's':
4117 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4118 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4119 "string");
4120 return -1;
4121 }
4122 break;
4123 case 'i':
4124 case 'l':
4125 case 'M':
Jes Sorensendbc0c672010-10-21 17:15:47 +02004126 case 'o':
Luiz Capitulino4af91932010-06-22 11:44:05 -03004127 if (qobject_type(client_arg) != QTYPE_QINT) {
4128 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4129 "int");
4130 return -1;
4131 }
4132 break;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004133 case 'T':
4134 if (qobject_type(client_arg) != QTYPE_QINT &&
4135 qobject_type(client_arg) != QTYPE_QFLOAT) {
4136 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4137 "number");
4138 return -1;
4139 }
4140 break;
4141 case 'b':
4142 case '-':
4143 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4144 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4145 "bool");
4146 return -1;
4147 }
4148 break;
4149 case 'O':
4150 assert(flags & QMP_ACCEPT_UNKNOWNS);
4151 break;
Paolo Bonzinib9f89782012-03-22 12:51:11 +01004152 case 'q':
4153 /* Any QObject can be passed. */
4154 break;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004155 case '/':
4156 case '.':
4157 /*
4158 * These types are not supported by QMP and thus are not
4159 * handled here. Fall through.
4160 */
4161 default:
4162 abort();
4163 }
4164 }
4165
4166 return 0;
4167}
4168
4169/*
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004170 * - Check if the client has passed all mandatory args
4171 * - Set special flags for argument validation
4172 */
4173static int check_mandatory_args(const QDict *cmd_args,
4174 const QDict *client_args, int *flags)
4175{
4176 const QDictEntry *ent;
4177
4178 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4179 const char *cmd_arg_name = qdict_entry_key(ent);
4180 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4181 assert(type != NULL);
4182
4183 if (qstring_get_str(type)[0] == 'O') {
4184 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4185 *flags |= QMP_ACCEPT_UNKNOWNS;
4186 } else if (qstring_get_str(type)[0] != '-' &&
4187 qstring_get_str(type)[1] != '?' &&
4188 !qdict_haskey(client_args, cmd_arg_name)) {
4189 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4190 return -1;
4191 }
4192 }
4193
4194 return 0;
4195}
4196
4197static QDict *qdict_from_args_type(const char *args_type)
4198{
4199 int i;
4200 QDict *qdict;
4201 QString *key, *type, *cur_qs;
4202
4203 assert(args_type != NULL);
4204
4205 qdict = qdict_new();
4206
4207 if (args_type == NULL || args_type[0] == '\0') {
4208 /* no args, empty qdict */
4209 goto out;
4210 }
4211
4212 key = qstring_new();
4213 type = qstring_new();
4214
4215 cur_qs = key;
4216
4217 for (i = 0;; i++) {
4218 switch (args_type[i]) {
4219 case ',':
4220 case '\0':
4221 qdict_put(qdict, qstring_get_str(key), type);
4222 QDECREF(key);
4223 if (args_type[i] == '\0') {
4224 goto out;
4225 }
4226 type = qstring_new(); /* qdict has ref */
4227 cur_qs = key = qstring_new();
4228 break;
4229 case ':':
4230 cur_qs = type;
4231 break;
4232 default:
4233 qstring_append_chr(cur_qs, args_type[i]);
4234 break;
4235 }
4236 }
4237
4238out:
4239 return qdict;
4240}
4241
4242/*
4243 * Client argument checking rules:
4244 *
4245 * 1. Client must provide all mandatory arguments
Luiz Capitulino4af91932010-06-22 11:44:05 -03004246 * 2. Each argument provided by the client must be expected
4247 * 3. Each argument provided by the client must have the type expected
4248 * by the command
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004249 */
4250static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4251{
4252 int flags, err;
4253 QDict *cmd_args;
4254
4255 cmd_args = qdict_from_args_type(cmd->args_type);
4256
4257 flags = 0;
4258 err = check_mandatory_args(cmd_args, client_args, &flags);
4259 if (err) {
4260 goto out;
4261 }
4262
Luiz Capitulino4af91932010-06-22 11:44:05 -03004263 err = check_client_args_type(client_args, cmd_args, flags);
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004264
4265out:
4266 QDECREF(cmd_args);
4267 return err;
4268}
4269
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004270/*
4271 * Input object checking rules
4272 *
4273 * 1. Input object must be a dict
4274 * 2. The "execute" key must exist
4275 * 3. The "execute" key must be a string
4276 * 4. If the "arguments" key exists, it must be a dict
4277 * 5. If the "id" key exists, it can be anything (ie. json-value)
4278 * 6. Any argument not listed above is considered invalid
4279 */
4280static QDict *qmp_check_input_obj(QObject *input_obj)
4281{
4282 const QDictEntry *ent;
4283 int has_exec_key = 0;
4284 QDict *input_dict;
4285
4286 if (qobject_type(input_obj) != QTYPE_QDICT) {
4287 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4288 return NULL;
4289 }
4290
4291 input_dict = qobject_to_qdict(input_obj);
4292
4293 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4294 const char *arg_name = qdict_entry_key(ent);
4295 const QObject *arg_obj = qdict_entry_value(ent);
4296
4297 if (!strcmp(arg_name, "execute")) {
4298 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4299 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4300 "string");
4301 return NULL;
4302 }
4303 has_exec_key = 1;
4304 } else if (!strcmp(arg_name, "arguments")) {
4305 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4306 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4307 "object");
4308 return NULL;
4309 }
4310 } else if (!strcmp(arg_name, "id")) {
4311 /* FIXME: check duplicated IDs for async commands */
4312 } else {
4313 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4314 return NULL;
4315 }
4316 }
4317
4318 if (!has_exec_key) {
4319 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4320 return NULL;
4321 }
4322
4323 return input_dict;
4324}
4325
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004326static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4327 const QDict *params)
4328{
4329 int ret;
4330 QObject *data = NULL;
4331
4332 mon_print_count_init(mon);
4333
4334 ret = cmd->mhandler.cmd_new(mon, params, &data);
4335 handler_audit(mon, cmd, ret);
4336 monitor_protocol_emitter(mon, data);
4337 qobject_decref(data);
4338}
4339
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004340static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4341{
4342 int err;
4343 QObject *obj;
4344 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004345 const mon_cmd_t *cmd;
Luiz Capitulino40e5a012011-10-21 16:15:31 -02004346 const char *cmd_name;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004347 Monitor *mon = cur_mon;
4348
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004349 args = input = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004350
4351 obj = json_parser_parse(tokens, NULL);
4352 if (!obj) {
4353 // FIXME: should be triggered in json_parser_parse()
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004354 qerror_report(QERR_JSON_PARSING);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004355 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004356 }
4357
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004358 input = qmp_check_input_obj(obj);
4359 if (!input) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004360 qobject_decref(obj);
4361 goto err_out;
4362 }
4363
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004364 mon->mc->id = qdict_get(input, "id");
4365 qobject_incref(mon->mc->id);
4366
Luiz Capitulino0bbab462010-05-31 17:32:50 -03004367 cmd_name = qdict_get_str(input, "execute");
Stefan Hajnoczi89bd8202011-09-23 08:23:06 +01004368 trace_handle_qmp_command(mon, cmd_name);
Luiz Capitulino09069b12010-02-04 18:10:06 -02004369 if (invalid_qmp_mode(mon, cmd_name)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004370 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004371 goto err_out;
Luiz Capitulino09069b12010-02-04 18:10:06 -02004372 }
4373
Anthony Liguorie3193602011-09-02 12:34:47 -05004374 cmd = qmp_find_cmd(cmd_name);
Luiz Capitulinod1249ea2010-09-13 14:44:27 -03004375 if (!cmd) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004376 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004377 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004378 }
4379
4380 obj = qdict_get(input, "arguments");
4381 if (!obj) {
4382 args = qdict_new();
4383 } else {
4384 args = qobject_to_qdict(obj);
4385 QINCREF(args);
4386 }
4387
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004388 err = qmp_check_client_args(cmd, args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004389 if (err < 0) {
4390 goto err_out;
4391 }
4392
Luiz Capitulino40e5a012011-10-21 16:15:31 -02004393 if (handler_is_async(cmd)) {
Luiz Capitulino5af7bba2010-06-22 19:10:46 -03004394 err = qmp_async_cmd_handler(mon, cmd, args);
4395 if (err) {
4396 /* emit the error response */
4397 goto err_out;
4398 }
Adam Litke940cc302010-01-25 12:18:44 -06004399 } else {
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004400 qmp_call_cmd(mon, cmd, args);
Adam Litke940cc302010-01-25 12:18:44 -06004401 }
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004402
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004403 goto out;
4404
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004405err_out:
4406 monitor_protocol_emitter(mon, NULL);
4407out:
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004408 QDECREF(input);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004409 QDECREF(args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004410}
4411
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004412/**
4413 * monitor_control_read(): Read and handle QMP input
4414 */
4415static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4416{
4417 Monitor *old_mon = cur_mon;
4418
4419 cur_mon = opaque;
4420
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004421 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004422
4423 cur_mon = old_mon;
4424}
4425
aliguori731b0362009-03-05 23:01:42 +00004426static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004427{
aliguori731b0362009-03-05 23:01:42 +00004428 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004429 int i;
aliguori376253e2009-03-05 23:01:23 +00004430
aliguori731b0362009-03-05 23:01:42 +00004431 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004432
aliguoricde76ee2009-03-05 23:01:51 +00004433 if (cur_mon->rs) {
4434 for (i = 0; i < size; i++)
4435 readline_handle_byte(cur_mon->rs, buf[i]);
4436 } else {
4437 if (size == 0 || buf[size - 1] != 0)
4438 monitor_printf(cur_mon, "corrupted command\n");
4439 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004440 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00004441 }
aliguori731b0362009-03-05 23:01:42 +00004442
4443 cur_mon = old_mon;
4444}
aliguorid8f44602008-10-06 13:52:44 +00004445
aliguori376253e2009-03-05 23:01:23 +00004446static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004447{
aliguori731b0362009-03-05 23:01:42 +00004448 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004449 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00004450 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00004451}
4452
aliguoricde76ee2009-03-05 23:01:51 +00004453int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004454{
aliguoricde76ee2009-03-05 23:01:51 +00004455 if (!mon->rs)
4456 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00004457 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00004458 return 0;
aliguorid8f44602008-10-06 13:52:44 +00004459}
4460
aliguori376253e2009-03-05 23:01:23 +00004461void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004462{
aliguoricde76ee2009-03-05 23:01:51 +00004463 if (!mon->rs)
4464 return;
aliguori731b0362009-03-05 23:01:42 +00004465 if (--mon->suspend_cnt == 0)
4466 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00004467}
4468
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004469static QObject *get_qmp_greeting(void)
4470{
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03004471 QObject *ver = NULL;
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004472
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03004473 qmp_marshal_input_query_version(NULL, NULL, &ver);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004474 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4475}
4476
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004477/**
4478 * monitor_control_event(): Print QMP gretting
4479 */
4480static void monitor_control_event(void *opaque, int event)
4481{
Luiz Capitulino47116d12010-02-08 17:01:30 -02004482 QObject *data;
4483 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004484
Luiz Capitulino47116d12010-02-08 17:01:30 -02004485 switch (event) {
4486 case CHR_EVENT_OPENED:
Luiz Capitulino4a7e1192010-02-04 18:10:05 -02004487 mon->mc->command_mode = 0;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004488 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004489 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004490 monitor_json_emitter(mon, data);
4491 qobject_decref(data);
Luiz Capitulino47116d12010-02-08 17:01:30 -02004492 break;
4493 case CHR_EVENT_CLOSED:
4494 json_message_parser_destroy(&mon->mc->parser);
4495 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004496 }
4497}
4498
aliguori731b0362009-03-05 23:01:42 +00004499static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00004500{
aliguori376253e2009-03-05 23:01:23 +00004501 Monitor *mon = opaque;
4502
aliguori2724b182009-03-05 23:01:47 +00004503 switch (event) {
4504 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004505 mon->mux_out = 0;
4506 if (mon->reset_seen) {
4507 readline_restart(mon->rs);
4508 monitor_resume(mon);
4509 monitor_flush(mon);
4510 } else {
4511 mon->suspend_cnt = 0;
4512 }
aliguori2724b182009-03-05 23:01:47 +00004513 break;
ths86e94de2007-01-05 22:01:59 +00004514
aliguori2724b182009-03-05 23:01:47 +00004515 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004516 if (mon->reset_seen) {
4517 if (mon->suspend_cnt == 0) {
4518 monitor_printf(mon, "\n");
4519 }
4520 monitor_flush(mon);
4521 monitor_suspend(mon);
4522 } else {
4523 mon->suspend_cnt++;
4524 }
4525 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00004526 break;
4527
Amit Shahb6b8df52009-10-07 18:31:16 +05304528 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00004529 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4530 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004531 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00004532 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004533 }
4534 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00004535 break;
4536 }
ths86e94de2007-01-05 22:01:59 +00004537}
4538
Wayne Xia816f8922011-10-12 11:32:41 +08004539static int
4540compare_mon_cmd(const void *a, const void *b)
4541{
4542 return strcmp(((const mon_cmd_t *)a)->name,
4543 ((const mon_cmd_t *)b)->name);
4544}
4545
4546static void sortcmdlist(void)
4547{
4548 int array_num;
4549 int elem_size = sizeof(mon_cmd_t);
4550
4551 array_num = sizeof(mon_cmds)/elem_size-1;
4552 qsort((void *)mon_cmds, array_num, elem_size, compare_mon_cmd);
4553
4554 array_num = sizeof(info_cmds)/elem_size-1;
4555 qsort((void *)info_cmds, array_num, elem_size, compare_mon_cmd);
4556}
4557
aliguori76655d62009-03-06 20:27:37 +00004558
4559/*
4560 * Local variables:
4561 * c-indent-level: 4
4562 * c-basic-offset: 4
4563 * tab-width: 8
4564 * End:
4565 */
4566
aliguori731b0362009-03-05 23:01:42 +00004567void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004568{
aliguori731b0362009-03-05 23:01:42 +00004569 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00004570 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00004571
4572 if (is_first_init) {
Paolo Bonzini74475452011-03-11 16:47:48 +01004573 key_timer = qemu_new_timer_ns(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00004574 is_first_init = 0;
4575 }
aliguori87127162009-03-05 23:01:29 +00004576
Anthony Liguori7267c092011-08-20 22:09:37 -05004577 mon = g_malloc0(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00004578
aliguori87127162009-03-05 23:01:29 +00004579 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00004580 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00004581 if (flags & MONITOR_USE_READLINE) {
4582 mon->rs = readline_init(mon, monitor_find_completion);
4583 monitor_read_command(mon, 0);
4584 }
aliguori87127162009-03-05 23:01:29 +00004585
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004586 if (monitor_ctrl_mode(mon)) {
Anthony Liguori7267c092011-08-20 22:09:37 -05004587 mon->mc = g_malloc0(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004588 /* Control mode requires special handlers */
4589 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4590 monitor_control_event, mon);
Anthony Liguori15f31512011-08-15 11:17:35 -05004591 qemu_chr_fe_set_echo(chr, true);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004592 } else {
4593 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4594 monitor_event, mon);
4595 }
aliguori87127162009-03-05 23:01:29 +00004596
Blue Swirl72cf2d42009-09-12 07:36:22 +00004597 QLIST_INSERT_HEAD(&mon_list, mon, entry);
Markus Armbruster8631b602010-02-18 11:41:55 +01004598 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4599 default_mon = mon;
Wayne Xia816f8922011-10-12 11:32:41 +08004600
4601 sortcmdlist();
bellard7e2515e2004-08-01 21:52:19 +00004602}
4603
aliguori376253e2009-03-05 23:01:23 +00004604static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004605{
aliguoribb5fc202009-03-05 23:01:15 +00004606 BlockDriverState *bs = opaque;
4607 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00004608
aliguoribb5fc202009-03-05 23:01:15 +00004609 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00004610 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00004611 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00004612 }
aliguori731b0362009-03-05 23:01:42 +00004613 if (mon->password_completion_cb)
4614 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00004615
aliguori731b0362009-03-05 23:01:42 +00004616 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00004617}
aliguoric0f4ce72009-03-05 23:01:01 +00004618
Anthony Liguori7060b472011-09-02 12:34:50 -05004619ReadLineState *monitor_get_rs(Monitor *mon)
4620{
4621 return mon->rs;
4622}
4623
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004624int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4625 BlockDriverCompletionFunc *completion_cb,
4626 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00004627{
aliguoricde76ee2009-03-05 23:01:51 +00004628 int err;
4629
aliguoribb5fc202009-03-05 23:01:15 +00004630 if (!bdrv_key_required(bs)) {
4631 if (completion_cb)
4632 completion_cb(opaque, 0);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004633 return 0;
aliguoribb5fc202009-03-05 23:01:15 +00004634 }
aliguoric0f4ce72009-03-05 23:01:01 +00004635
Luiz Capitulino94171e12009-12-07 21:37:00 +01004636 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino903a8812011-12-13 17:18:30 -02004637 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs),
4638 bdrv_get_encrypted_filename(bs));
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004639 return -1;
Luiz Capitulino94171e12009-12-07 21:37:00 +01004640 }
4641
aliguori376253e2009-03-05 23:01:23 +00004642 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4643 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00004644
aliguori731b0362009-03-05 23:01:42 +00004645 mon->password_completion_cb = completion_cb;
4646 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00004647
aliguoricde76ee2009-03-05 23:01:51 +00004648 err = monitor_read_password(mon, bdrv_password_cb, bs);
4649
4650 if (err && completion_cb)
4651 completion_cb(opaque, err);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004652
4653 return err;
aliguoric0f4ce72009-03-05 23:01:01 +00004654}
Luiz Capitulinoe42e8182011-11-22 17:58:31 -02004655
4656int monitor_read_block_device_key(Monitor *mon, const char *device,
4657 BlockDriverCompletionFunc *completion_cb,
4658 void *opaque)
4659{
4660 BlockDriverState *bs;
4661
4662 bs = bdrv_find(device);
4663 if (!bs) {
4664 monitor_printf(mon, "Device not found %s\n", device);
4665 return -1;
4666 }
4667
4668 return monitor_read_bdrv_key_start(mon, bs, completion_cb, opaque);
4669}