blob: 86a0dad2cbe67617cf741d484388fd8d6056afda [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"
Lluís31965ae2011-08-31 20:31:24 +020060#include "trace/control.h"
Lluís6d8a7642011-08-31 20:30:43 +020061#ifdef CONFIG_TRACE_SIMPLE
Lluís31965ae2011-08-31 20:31:24 +020062#include "trace/simple.h"
Prerna Saxena22890ab2010-06-24 17:04:53 +053063#endif
Lluísfc764102011-08-31 20:31:18 +020064#include "trace/control.h"
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
bellard9dc39cb2004-03-14 21:38:27 +000070//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000071//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000072
bellard9307c4c2004-04-04 12:57:25 +000073/*
74 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000075 *
bellard9307c4c2004-04-04 12:57:25 +000076 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000077 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000078 * 's' string (accept optional quote)
Markus Armbruster361127d2010-02-10 20:24:35 +010079 * 'O' option string of the form NAME=VALUE,...
80 * parsed according to QemuOptsList given by its name
81 * Example: 'device:O' uses qemu_device_opts.
82 * Restriction: only lists with empty desc are supported
83 * TODO lift the restriction
bellard92a31b12005-02-10 22:00:52 +000084 * 'i' 32 bit integer
85 * 'l' target long (32 or 64 bit)
Markus Armbruster9fec5432010-01-25 14:23:01 +010086 * 'M' just like 'l', except in user mode the value is
87 * multiplied by 2^20 (think Mebibyte)
Jes Sorensendbc0c672010-10-21 17:15:47 +020088 * 'o' octets (aka bytes)
89 * user mode accepts an optional T, t, G, g, M, m, K, k
90 * suffix, which multiplies the value by 2^40 for
91 * suffixes T and t, 2^30 for suffixes G and g, 2^20 for
92 * M and m, 2^10 for K and k
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +010093 * 'T' double
94 * user mode accepts an optional ms, us, ns suffix,
95 * which divides the value by 1e3, 1e6, 1e9, respectively
bellard9307c4c2004-04-04 12:57:25 +000096 * '/' optional gdb-like print format (like "/10x")
97 *
Luiz Capitulinofb466602009-08-28 15:27:27 -030098 * '?' optional type (for all types, except '/')
99 * '.' other form of optional type (for 'i' and 'l')
Markus Armbruster942cd1f2010-03-26 09:07:09 +0100100 * 'b' boolean
101 * user mode accepts "on" or "off"
Luiz Capitulinofb466602009-08-28 15:27:27 -0300102 * '-' optional parameter (eg. '-f')
bellard9307c4c2004-04-04 12:57:25 +0000103 *
104 */
105
Adam Litke940cc302010-01-25 12:18:44 -0600106typedef struct MonitorCompletionData MonitorCompletionData;
107struct MonitorCompletionData {
108 Monitor *mon;
109 void (*user_print)(Monitor *mon, const QObject *data);
110};
111
Anthony Liguoric227f092009-10-01 16:12:16 -0500112typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +0000113 const char *name;
bellard9307c4c2004-04-04 12:57:25 +0000114 const char *args_type;
bellard9dc39cb2004-03-14 21:38:27 +0000115 const char *params;
116 const char *help;
Luiz Capitulinoa2876f52009-10-07 13:41:53 -0300117 void (*user_print)(Monitor *mon, const QObject *data);
Luiz Capitulino910df892009-10-07 13:41:51 -0300118 union {
119 void (*info)(Monitor *mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300120 void (*info_new)(Monitor *mon, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600121 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300122 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino261394d2010-02-10 23:50:02 -0200123 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600124 int (*cmd_async)(Monitor *mon, const QDict *params,
125 MonitorCompletion *cb, void *opaque);
Luiz Capitulino910df892009-10-07 13:41:51 -0300126 } mhandler;
Anthony Liguorie3193602011-09-02 12:34:47 -0500127 bool qapi;
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200128 int flags;
Anthony Liguoric227f092009-10-01 16:12:16 -0500129} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +0000130
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100131/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -0500132typedef struct mon_fd_t mon_fd_t;
133struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100134 char *name;
135 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -0500136 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100137};
138
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200139typedef struct MonitorControl {
140 QObject *id;
141 JSONMessageParser parser;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200142 int command_mode;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200143} MonitorControl;
144
aliguori87127162009-03-05 23:01:29 +0000145struct Monitor {
146 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200147 int mux_out;
148 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000149 int flags;
150 int suspend_cnt;
151 uint8_t outbuf[1024];
152 int outbuf_index;
153 ReadLineState *rs;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200154 MonitorControl *mc;
aliguori731b0362009-03-05 23:01:42 +0000155 CPUState *mon_cpu;
156 BlockDriverCompletionFunc *password_completion_cb;
157 void *password_opaque;
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200158#ifdef CONFIG_DEBUG_MONITOR
159 int print_calls_nr;
160#endif
Luiz Capitulino8204a912009-11-18 23:05:31 -0200161 QError *error;
Anthony Liguoric227f092009-10-01 16:12:16 -0500162 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000163 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000164};
165
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200166#ifdef CONFIG_DEBUG_MONITOR
167#define MON_DEBUG(fmt, ...) do { \
168 fprintf(stderr, "Monitor: "); \
169 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200170
171static inline void mon_print_count_inc(Monitor *mon)
172{
173 mon->print_calls_nr++;
174}
175
176static inline void mon_print_count_init(Monitor *mon)
177{
178 mon->print_calls_nr = 0;
179}
180
181static inline int mon_print_count_get(const Monitor *mon)
182{
183 return mon->print_calls_nr;
184}
185
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200186#else /* !CONFIG_DEBUG_MONITOR */
187#define MON_DEBUG(fmt, ...) do { } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200188static inline void mon_print_count_inc(Monitor *mon) { }
189static inline void mon_print_count_init(Monitor *mon) { }
190static inline int mon_print_count_get(const Monitor *mon) { return 0; }
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200191#endif /* CONFIG_DEBUG_MONITOR */
192
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -0300193/* QMP checker flags */
194#define QMP_ACCEPT_UNKNOWNS 1
195
Blue Swirl72cf2d42009-09-12 07:36:22 +0000196static QLIST_HEAD(mon_list, Monitor) mon_list;
bellard7e2515e2004-08-01 21:52:19 +0000197
Anthony Liguoric227f092009-10-01 16:12:16 -0500198static const mon_cmd_t mon_cmds[];
199static const mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000200
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300201static const mon_cmd_t qmp_cmds[];
Luiz Capitulino3e12a752010-09-15 17:20:33 -0300202static const mon_cmd_t qmp_query_cmds[];
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300203
Markus Armbruster8631b602010-02-18 11:41:55 +0100204Monitor *cur_mon;
205Monitor *default_mon;
aliguori376253e2009-03-05 23:01:23 +0000206
aliguori731b0362009-03-05 23:01:42 +0000207static void monitor_command_cb(Monitor *mon, const char *cmdline,
208 void *opaque);
aliguori83ab7952008-08-19 14:44:22 +0000209
Luiz Capitulino09069b12010-02-04 18:10:06 -0200210static inline int qmp_cmd_mode(const Monitor *mon)
211{
212 return (mon->mc ? mon->mc->command_mode : 0);
213}
214
Luiz Capitulino418173c2009-11-26 22:58:51 -0200215/* Return true if in control mode, false otherwise */
216static inline int monitor_ctrl_mode(const Monitor *mon)
217{
218 return (mon->flags & MONITOR_USE_CONTROL);
219}
220
Markus Armbruster6620d3c2010-02-11 17:05:43 +0100221/* Return non-zero iff we have a current monitor, and it is in QMP mode. */
222int monitor_cur_is_qmp(void)
223{
224 return cur_mon && monitor_ctrl_mode(cur_mon);
225}
226
aliguori731b0362009-03-05 23:01:42 +0000227static void monitor_read_command(Monitor *mon, int show_prompt)
228{
Luiz Capitulino183e6e52009-12-14 18:53:23 -0200229 if (!mon->rs)
230 return;
231
aliguori731b0362009-03-05 23:01:42 +0000232 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
233 if (show_prompt)
234 readline_show_prompt(mon->rs);
235}
bellard6a00d602005-11-21 23:25:50 +0000236
aliguoricde76ee2009-03-05 23:01:51 +0000237static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
238 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000239{
Luiz Capitulino94171e12009-12-07 21:37:00 +0100240 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100241 qerror_report(QERR_MISSING_PARAMETER, "password");
Luiz Capitulino94171e12009-12-07 21:37:00 +0100242 return -EINVAL;
243 } else if (mon->rs) {
aliguoricde76ee2009-03-05 23:01:51 +0000244 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
245 /* prompt is printed on return from the command handler */
246 return 0;
247 } else {
248 monitor_printf(mon, "terminal does not support password prompting\n");
249 return -ENOTTY;
250 }
aliguoribb5fc202009-03-05 23:01:15 +0000251}
252
aliguori376253e2009-03-05 23:01:23 +0000253void monitor_flush(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000254{
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200255 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
Anthony Liguori2cc6e0a2011-08-15 11:17:28 -0500256 qemu_chr_fe_write(mon->chr, mon->outbuf, mon->outbuf_index);
aliguori731b0362009-03-05 23:01:42 +0000257 mon->outbuf_index = 0;
bellard7e2515e2004-08-01 21:52:19 +0000258 }
259}
260
261/* flush at every end of line or if the buffer is full */
aliguori376253e2009-03-05 23:01:23 +0000262static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000263{
ths60fe76f2007-12-16 03:02:09 +0000264 char c;
aliguori731b0362009-03-05 23:01:42 +0000265
bellard7e2515e2004-08-01 21:52:19 +0000266 for(;;) {
267 c = *str++;
268 if (c == '\0')
269 break;
bellard7ba12602006-07-14 20:26:42 +0000270 if (c == '\n')
aliguori731b0362009-03-05 23:01:42 +0000271 mon->outbuf[mon->outbuf_index++] = '\r';
272 mon->outbuf[mon->outbuf_index++] = c;
273 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
274 || c == '\n')
aliguori376253e2009-03-05 23:01:23 +0000275 monitor_flush(mon);
bellard7e2515e2004-08-01 21:52:19 +0000276 }
277}
278
aliguori376253e2009-03-05 23:01:23 +0000279void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000280{
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200281 char buf[4096];
282
Luiz Capitulino2daa1192009-12-14 18:53:24 -0200283 if (!mon)
284 return;
285
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200286 mon_print_count_inc(mon);
287
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200288 if (monitor_ctrl_mode(mon)) {
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200289 return;
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200290 }
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200291
292 vsnprintf(buf, sizeof(buf), fmt, ap);
293 monitor_puts(mon, buf);
bellard7e2515e2004-08-01 21:52:19 +0000294}
295
aliguori376253e2009-03-05 23:01:23 +0000296void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000297{
298 va_list ap;
299 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000300 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000301 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000302}
303
aliguori376253e2009-03-05 23:01:23 +0000304void monitor_print_filename(Monitor *mon, const char *filename)
thsfef30742006-12-22 14:11:32 +0000305{
306 int i;
307
308 for (i = 0; filename[i]; i++) {
aliguori28a76be2009-03-06 20:27:40 +0000309 switch (filename[i]) {
310 case ' ':
311 case '"':
312 case '\\':
313 monitor_printf(mon, "\\%c", filename[i]);
314 break;
315 case '\t':
316 monitor_printf(mon, "\\t");
317 break;
318 case '\r':
319 monitor_printf(mon, "\\r");
320 break;
321 case '\n':
322 monitor_printf(mon, "\\n");
323 break;
324 default:
325 monitor_printf(mon, "%c", filename[i]);
326 break;
327 }
thsfef30742006-12-22 14:11:32 +0000328 }
329}
330
Stefan Weil8b7968f2010-09-23 21:28:05 +0200331static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
332 const char *fmt, ...)
bellard7fe48482004-10-09 18:08:01 +0000333{
334 va_list ap;
335 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000336 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000337 va_end(ap);
338 return 0;
339}
340
Luiz Capitulino13c74252009-10-07 13:41:55 -0300341static void monitor_user_noop(Monitor *mon, const QObject *data) { }
342
Luiz Capitulino9e807212010-09-16 10:58:59 -0300343static inline int handler_is_qobject(const mon_cmd_t *cmd)
Luiz Capitulino13917be2009-10-07 13:41:54 -0300344{
345 return cmd->user_print != NULL;
346}
347
Luiz Capitulino4903de02010-09-16 11:01:32 -0300348static inline bool handler_is_async(const mon_cmd_t *cmd)
Adam Litke940cc302010-01-25 12:18:44 -0600349{
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200350 return cmd->flags & MONITOR_CMD_ASYNC;
Adam Litke940cc302010-01-25 12:18:44 -0600351}
352
Luiz Capitulino8204a912009-11-18 23:05:31 -0200353static inline int monitor_has_error(const Monitor *mon)
354{
355 return mon->error != NULL;
356}
357
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200358static void monitor_json_emitter(Monitor *mon, const QObject *data)
359{
360 QString *json;
361
Luiz Capitulino83a27d42010-11-22 17:10:37 -0200362 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
363 qobject_to_json(data);
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200364 assert(json != NULL);
365
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200366 qstring_append_chr(json, '\n');
367 monitor_puts(mon, qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200368
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200369 QDECREF(json);
370}
371
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200372static void monitor_protocol_emitter(Monitor *mon, QObject *data)
373{
374 QDict *qmp;
375
376 qmp = qdict_new();
377
378 if (!monitor_has_error(mon)) {
379 /* success response */
380 if (data) {
381 qobject_incref(data);
382 qdict_put_obj(qmp, "return", data);
383 } else {
Luiz Capitulino0abc6572009-12-18 13:25:00 -0200384 /* return an empty QDict by default */
385 qdict_put(qmp, "return", qdict_new());
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200386 }
387 } else {
388 /* error response */
Markus Armbruster77e595e2009-12-07 21:37:16 +0100389 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200390 qdict_put(qmp, "error", mon->error->error);
391 QINCREF(mon->error->error);
392 QDECREF(mon->error);
393 mon->error = NULL;
394 }
395
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200396 if (mon->mc->id) {
397 qdict_put_obj(qmp, "id", mon->mc->id);
398 mon->mc->id = NULL;
399 }
400
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200401 monitor_json_emitter(mon, QOBJECT(qmp));
402 QDECREF(qmp);
403}
404
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200405static void timestamp_put(QDict *qdict)
406{
407 int err;
408 QObject *obj;
Blue Swirld08d6f02009-12-04 18:06:39 +0000409 qemu_timeval tv;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200410
Blue Swirld08d6f02009-12-04 18:06:39 +0000411 err = qemu_gettimeofday(&tv);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200412 if (err < 0)
413 return;
414
415 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
416 "'microseconds': %" PRId64 " }",
417 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200418 qdict_put_obj(qdict, "timestamp", obj);
419}
420
421/**
422 * monitor_protocol_event(): Generate a Monitor event
423 *
424 * Event-specific data can be emitted through the (optional) 'data' parameter.
425 */
426void monitor_protocol_event(MonitorEvent event, QObject *data)
427{
428 QDict *qmp;
429 const char *event_name;
Adam Litkef039a562010-01-15 08:34:02 -0600430 Monitor *mon;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200431
Blue Swirl242cd002009-12-04 18:05:45 +0000432 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200433
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200434 switch (event) {
Blue Swirl242cd002009-12-04 18:05:45 +0000435 case QEVENT_SHUTDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200436 event_name = "SHUTDOWN";
437 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000438 case QEVENT_RESET:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200439 event_name = "RESET";
440 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000441 case QEVENT_POWERDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200442 event_name = "POWERDOWN";
443 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000444 case QEVENT_STOP:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200445 event_name = "STOP";
446 break;
Luiz Capitulino6ed2c482010-04-27 20:35:59 -0300447 case QEVENT_RESUME:
448 event_name = "RESUME";
449 break;
Luiz Capitulino586153d2010-01-14 14:50:57 -0200450 case QEVENT_VNC_CONNECTED:
451 event_name = "VNC_CONNECTED";
452 break;
Luiz Capitulino0d2ed462010-01-14 14:50:59 -0200453 case QEVENT_VNC_INITIALIZED:
454 event_name = "VNC_INITIALIZED";
455 break;
Luiz Capitulino0d72f3d2010-01-14 14:50:58 -0200456 case QEVENT_VNC_DISCONNECTED:
457 event_name = "VNC_DISCONNECTED";
458 break;
Luiz Capitulinoaa1db6e2010-02-03 12:41:00 -0200459 case QEVENT_BLOCK_IO_ERROR:
460 event_name = "BLOCK_IO_ERROR";
461 break;
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300462 case QEVENT_RTC_CHANGE:
463 event_name = "RTC_CHANGE";
464 break;
Luiz Capitulino9eedeb32010-02-25 12:13:04 -0300465 case QEVENT_WATCHDOG:
466 event_name = "WATCHDOG";
467 break;
Gerd Hoffmann6f8c63f2010-10-11 18:03:51 +0200468 case QEVENT_SPICE_CONNECTED:
469 event_name = "SPICE_CONNECTED";
470 break;
471 case QEVENT_SPICE_INITIALIZED:
472 event_name = "SPICE_INITIALIZED";
473 break;
474 case QEVENT_SPICE_DISCONNECTED:
475 event_name = "SPICE_DISCONNECTED";
476 break;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200477 default:
478 abort();
479 break;
480 }
481
482 qmp = qdict_new();
483 timestamp_put(qmp);
484 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200485 if (data) {
486 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200487 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200488 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200489
Adam Litkef039a562010-01-15 08:34:02 -0600490 QLIST_FOREACH(mon, &mon_list, entry) {
Luiz Capitulino09069b12010-02-04 18:10:06 -0200491 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
Luiz Capitulino23fabed2010-01-20 10:37:59 -0200492 monitor_json_emitter(mon, QOBJECT(qmp));
493 }
Adam Litkef039a562010-01-15 08:34:02 -0600494 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200495 QDECREF(qmp);
496}
497
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200498static int do_qmp_capabilities(Monitor *mon, const QDict *params,
499 QObject **ret_data)
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200500{
501 /* Will setup QMP capabilities in the future */
502 if (monitor_ctrl_mode(mon)) {
503 mon->mc->command_mode = 1;
504 }
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200505
506 return 0;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200507}
508
Luiz Capitulino0268d972010-10-22 10:08:02 -0200509static int mon_set_cpu(int cpu_index);
510static void handle_user_command(Monitor *mon, const char *cmdline);
511
512static int do_hmp_passthrough(Monitor *mon, const QDict *params,
513 QObject **ret_data)
514{
515 int ret = 0;
516 Monitor *old_mon, hmp;
517 CharDriverState mchar;
518
519 memset(&hmp, 0, sizeof(hmp));
520 qemu_chr_init_mem(&mchar);
521 hmp.chr = &mchar;
522
523 old_mon = cur_mon;
524 cur_mon = &hmp;
525
526 if (qdict_haskey(params, "cpu-index")) {
527 ret = mon_set_cpu(qdict_get_int(params, "cpu-index"));
528 if (ret < 0) {
529 cur_mon = old_mon;
530 qerror_report(QERR_INVALID_PARAMETER_VALUE, "cpu-index", "a CPU number");
531 goto out;
532 }
533 }
534
535 handle_user_command(&hmp, qdict_get_str(params, "command-line"));
536 cur_mon = old_mon;
537
538 if (qemu_chr_mem_osize(hmp.chr) > 0) {
539 *ret_data = QOBJECT(qemu_chr_mem_to_qs(hmp.chr));
540 }
541
542out:
543 qemu_chr_close_mem(hmp.chr);
544 return ret;
545}
546
bellard9dc39cb2004-03-14 21:38:27 +0000547static int compare_cmd(const char *name, const char *list)
548{
549 const char *p, *pstart;
550 int len;
551 len = strlen(name);
552 p = list;
553 for(;;) {
554 pstart = p;
555 p = strchr(p, '|');
556 if (!p)
557 p = pstart + strlen(pstart);
558 if ((p - pstart) == len && !memcmp(pstart, name, len))
559 return 1;
560 if (*p == '\0')
561 break;
562 p++;
563 }
564 return 0;
565}
566
Anthony Liguoric227f092009-10-01 16:12:16 -0500567static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000568 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000569{
Anthony Liguoric227f092009-10-01 16:12:16 -0500570 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000571
572 for(cmd = cmds; cmd->name != NULL; cmd++) {
573 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000574 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
575 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000576 }
577}
578
aliguori376253e2009-03-05 23:01:23 +0000579static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000580{
581 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000582 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000583 } else {
aliguori376253e2009-03-05 23:01:23 +0000584 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000585 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000586 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000587 monitor_printf(mon, "Log items (comma separated):\n");
588 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000589 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000590 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000591 }
592 }
bellard9dc39cb2004-03-14 21:38:27 +0000593 }
594}
595
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300596static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300597{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300598 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300599}
600
Lluísfc764102011-08-31 20:31:18 +0200601static void do_trace_event_set_state(Monitor *mon, const QDict *qdict)
Prerna Saxena22890ab2010-06-24 17:04:53 +0530602{
603 const char *tp_name = qdict_get_str(qdict, "name");
604 bool new_state = qdict_get_bool(qdict, "option");
Lluísfc764102011-08-31 20:31:18 +0200605 int ret = trace_event_set_state(tp_name, new_state);
Blue Swirlf871d682010-10-13 19:14:29 +0000606
607 if (!ret) {
608 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
609 }
Prerna Saxena22890ab2010-06-24 17:04:53 +0530610}
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100611
Lluís31965ae2011-08-31 20:31:24 +0200612#ifdef CONFIG_SIMPLE_TRACE
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100613static void do_trace_file(Monitor *mon, const QDict *qdict)
614{
615 const char *op = qdict_get_try_str(qdict, "op");
616 const char *arg = qdict_get_try_str(qdict, "arg");
617
618 if (!op) {
619 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
620 } else if (!strcmp(op, "on")) {
621 st_set_trace_file_enabled(true);
622 } else if (!strcmp(op, "off")) {
623 st_set_trace_file_enabled(false);
624 } else if (!strcmp(op, "flush")) {
625 st_flush_trace_buffer();
626 } else if (!strcmp(op, "set")) {
627 if (arg) {
628 st_set_trace_file(arg);
629 }
630 } else {
631 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
632 help_cmd(mon, "trace-file");
633 }
634}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530635#endif
636
Adam Litke940cc302010-01-25 12:18:44 -0600637static void user_monitor_complete(void *opaque, QObject *ret_data)
638{
639 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
640
641 if (ret_data) {
642 data->user_print(data->mon, ret_data);
643 }
644 monitor_resume(data->mon);
Anthony Liguori7267c092011-08-20 22:09:37 -0500645 g_free(data);
Adam Litke940cc302010-01-25 12:18:44 -0600646}
647
648static void qmp_monitor_complete(void *opaque, QObject *ret_data)
649{
650 monitor_protocol_emitter(opaque, ret_data);
651}
652
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300653static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
654 const QDict *params)
Adam Litke940cc302010-01-25 12:18:44 -0600655{
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300656 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
Adam Litke940cc302010-01-25 12:18:44 -0600657}
658
659static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
660{
661 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
662}
663
664static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
665 const QDict *params)
666{
667 int ret;
668
Anthony Liguori7267c092011-08-20 22:09:37 -0500669 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
Adam Litke940cc302010-01-25 12:18:44 -0600670 cb_data->mon = mon;
671 cb_data->user_print = cmd->user_print;
672 monitor_suspend(mon);
673 ret = cmd->mhandler.cmd_async(mon, params,
674 user_monitor_complete, cb_data);
675 if (ret < 0) {
676 monitor_resume(mon);
Anthony Liguori7267c092011-08-20 22:09:37 -0500677 g_free(cb_data);
Adam Litke940cc302010-01-25 12:18:44 -0600678 }
679}
680
681static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
682{
683 int ret;
684
Anthony Liguori7267c092011-08-20 22:09:37 -0500685 MonitorCompletionData *cb_data = g_malloc(sizeof(*cb_data));
Adam Litke940cc302010-01-25 12:18:44 -0600686 cb_data->mon = mon;
687 cb_data->user_print = cmd->user_print;
688 monitor_suspend(mon);
689 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
690 if (ret < 0) {
691 monitor_resume(mon);
Anthony Liguori7267c092011-08-20 22:09:37 -0500692 g_free(cb_data);
Adam Litke940cc302010-01-25 12:18:44 -0600693 }
694}
695
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300696static void do_info(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000697{
Anthony Liguoric227f092009-10-01 16:12:16 -0500698 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300699 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000700
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200701 if (!item) {
bellard9dc39cb2004-03-14 21:38:27 +0000702 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200703 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300704
705 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000706 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300707 break;
bellard9dc39cb2004-03-14 21:38:27 +0000708 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300709
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200710 if (cmd->name == NULL) {
Luiz Capitulino13c74252009-10-07 13:41:55 -0300711 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200712 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300713
Luiz Capitulino4903de02010-09-16 11:01:32 -0300714 if (handler_is_async(cmd)) {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300715 user_async_info_handler(mon, cmd);
Luiz Capitulino9e807212010-09-16 10:58:59 -0300716 } else if (handler_is_qobject(cmd)) {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300717 QObject *info_data = NULL;
Jan Kiszkaa6c4d362010-06-28 18:27:47 +0200718
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300719 cmd->mhandler.info_new(mon, &info_data);
720 if (info_data) {
721 cmd->user_print(mon, info_data);
722 qobject_decref(info_data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200723 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300724 } else {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300725 cmd->mhandler.info(mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300726 }
727
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300728 return;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300729
730help:
731 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000732}
733
Luiz Capitulino1a728672009-12-10 17:15:56 -0200734static QObject *get_cmd_dict(const char *name)
735{
736 const char *p;
737
738 /* Remove '|' from some commands */
739 p = strchr(name, '|');
740 if (p) {
741 p++;
742 } else {
743 p = name;
744 }
745
746 return qobject_from_jsonf("{ 'name': %s }", p);
747}
748
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200749static void do_info_commands(Monitor *mon, QObject **ret_data)
750{
751 QList *cmd_list;
752 const mon_cmd_t *cmd;
753
754 cmd_list = qlist_new();
755
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300756 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino2e061a72010-09-16 10:36:54 -0300757 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200758 }
759
Luiz Capitulino3e12a752010-09-15 17:20:33 -0300760 for (cmd = qmp_query_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino2e061a72010-09-16 10:36:54 -0300761 char buf[128];
762 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
763 qlist_append_obj(cmd_list, get_cmd_dict(buf));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200764 }
765
766 *ret_data = QOBJECT(cmd_list);
767}
768
bellard6a00d602005-11-21 23:25:50 +0000769/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000770static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000771{
772 CPUState *env;
773
774 for(env = first_cpu; env != NULL; env = env->next_cpu) {
775 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000776 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000777 return 0;
778 }
779 }
780 return -1;
781}
782
pbrook9596ebb2007-11-18 01:44:38 +0000783static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000784{
aliguori731b0362009-03-05 23:01:42 +0000785 if (!cur_mon->mon_cpu) {
bellard6a00d602005-11-21 23:25:50 +0000786 mon_set_cpu(0);
787 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300788 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000789 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000790}
791
aliguori376253e2009-03-05 23:01:23 +0000792static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000793{
bellard6a00d602005-11-21 23:25:50 +0000794 CPUState *env;
795 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +0000796#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000797 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000798 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000799#else
aliguori376253e2009-03-05 23:01:23 +0000800 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000801 0);
bellard9307c4c2004-04-04 12:57:25 +0000802#endif
803}
804
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300805static void print_cpu_iter(QObject *obj, void *opaque)
806{
807 QDict *cpu;
808 int active = ' ';
809 Monitor *mon = opaque;
810
811 assert(qobject_type(obj) == QTYPE_QDICT);
812 cpu = qobject_to_qdict(obj);
813
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200814 if (qdict_get_bool(cpu, "current")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300815 active = '*';
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200816 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300817
818 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
819
820#if defined(TARGET_I386)
821 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
822 (target_ulong) qdict_get_int(cpu, "pc"));
823#elif defined(TARGET_PPC)
824 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
825 (target_long) qdict_get_int(cpu, "nip"));
826#elif defined(TARGET_SPARC)
Nathan Kunkee3f9c3592011-09-08 21:58:31 -0500827 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300828 (target_long) qdict_get_int(cpu, "pc"));
829 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
830 (target_long) qdict_get_int(cpu, "npc"));
831#elif defined(TARGET_MIPS)
832 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
833 (target_long) qdict_get_int(cpu, "PC"));
834#endif
835
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200836 if (qdict_get_bool(cpu, "halted")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300837 monitor_printf(mon, " (halted)");
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200838 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300839
Jan Kiszkadc7a09c2011-03-15 12:26:31 +0100840 monitor_printf(mon, " thread_id=%" PRId64 " ",
841 qdict_get_int(cpu, "thread_id"));
842
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300843 monitor_printf(mon, "\n");
844}
845
846static void monitor_print_cpus(Monitor *mon, const QObject *data)
847{
848 QList *cpu_list;
849
850 assert(qobject_type(data) == QTYPE_QLIST);
851 cpu_list = qobject_to_qlist(data);
852 qlist_iter(cpu_list, print_cpu_iter, mon);
853}
854
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300855static void do_info_cpus(Monitor *mon, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000856{
857 CPUState *env;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300858 QList *cpu_list;
859
860 cpu_list = qlist_new();
bellard6a00d602005-11-21 23:25:50 +0000861
862 /* just to set the default cpu if not already done */
863 mon_get_cpu();
864
865 for(env = first_cpu; env != NULL; env = env->next_cpu) {
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200866 QDict *cpu;
867 QObject *obj;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300868
Avi Kivity4c0960c2009-08-17 23:19:53 +0300869 cpu_synchronize_state(env);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300870
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200871 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
872 env->cpu_index, env == mon->mon_cpu,
873 env->halted);
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200874
875 cpu = qobject_to_qdict(obj);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300876
bellard6a00d602005-11-21 23:25:50 +0000877#if defined(TARGET_I386)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300878 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
bellarde80e1cc2005-11-23 22:05:28 +0000879#elif defined(TARGET_PPC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300880 qdict_put(cpu, "nip", qint_from_int(env->nip));
bellardba3c64f2005-12-05 20:31:52 +0000881#elif defined(TARGET_SPARC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300882 qdict_put(cpu, "pc", qint_from_int(env->pc));
883 qdict_put(cpu, "npc", qint_from_int(env->npc));
thsead93602007-09-06 00:18:15 +0000884#elif defined(TARGET_MIPS)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300885 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
bellardce5232c2008-05-28 17:14:10 +0000886#endif
Jan Kiszkadc7a09c2011-03-15 12:26:31 +0100887 qdict_put(cpu, "thread_id", qint_from_int(env->thread_id));
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300888
889 qlist_append(cpu_list, cpu);
bellard6a00d602005-11-21 23:25:50 +0000890 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300891
892 *ret_data = QOBJECT(cpu_list);
bellard6a00d602005-11-21 23:25:50 +0000893}
894
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200895static int do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000896{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300897 int index = qdict_get_int(qdict, "index");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200898 if (mon_set_cpu(index) < 0) {
Markus Armbrustere17ba872010-03-25 17:22:36 +0100899 qerror_report(QERR_INVALID_PARAMETER_VALUE, "index",
900 "a CPU number");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200901 return -1;
902 }
903 return 0;
bellard6a00d602005-11-21 23:25:50 +0000904}
905
aliguori376253e2009-03-05 23:01:23 +0000906static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000907{
aliguori376253e2009-03-05 23:01:23 +0000908 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000909}
910
aliguori376253e2009-03-05 23:01:23 +0000911static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000912{
913 int i;
bellard7e2515e2004-08-01 21:52:19 +0000914 const char *str;
ths3b46e622007-09-17 08:09:54 +0000915
aliguoricde76ee2009-03-05 23:01:51 +0000916 if (!mon->rs)
917 return;
bellard7e2515e2004-08-01 21:52:19 +0000918 i = 0;
919 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000920 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000921 if (!str)
922 break;
aliguori376253e2009-03-05 23:01:23 +0000923 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000924 i++;
bellardaa455482004-04-04 13:07:25 +0000925 }
926}
927
j_mayer76a66252007-03-07 08:32:30 +0000928#if defined(TARGET_PPC)
929/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000930static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000931{
932 CPUState *env;
933
934 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000935 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000936}
937#endif
938
Lluís6d8a7642011-08-31 20:30:43 +0200939#if defined(CONFIG_TRACE_SIMPLE)
Prerna Saxena22890ab2010-06-24 17:04:53 +0530940static void do_info_trace(Monitor *mon)
941{
942 st_print_trace((FILE *)mon, &monitor_fprintf);
943}
Lluís31965ae2011-08-31 20:31:24 +0200944#endif
Prerna Saxena22890ab2010-06-24 17:04:53 +0530945
Lluísfc764102011-08-31 20:31:18 +0200946static void do_trace_print_events(Monitor *mon)
Prerna Saxena22890ab2010-06-24 17:04:53 +0530947{
Lluísfc764102011-08-31 20:31:18 +0200948 trace_print_events((FILE *)mon, &monitor_fprintf);
Prerna Saxena22890ab2010-06-24 17:04:53 +0530949}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530950
Luiz Capitulinob223f352009-10-07 13:41:56 -0300951/**
952 * do_quit(): Quit QEMU execution
953 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200954static int do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000955{
Luiz Capitulino39b59d22010-05-11 18:08:20 -0300956 monitor_suspend(mon);
957 no_shutdown = 0;
958 qemu_system_shutdown_request();
959
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200960 return 0;
bellard9dc39cb2004-03-14 21:38:27 +0000961}
962
Jes Sorensen821601e2011-03-16 13:33:36 +0100963#ifdef CONFIG_VNC
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200964static int change_vnc_password(const char *password)
aliguoribb5fc202009-03-05 23:01:15 +0000965{
Anthony Liguori1cd20f82011-01-31 14:27:36 -0600966 if (!password || !password[0]) {
967 if (vnc_display_disable_login(NULL)) {
968 qerror_report(QERR_SET_PASSWD_FAILED);
969 return -1;
970 }
971 return 0;
972 }
973
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200974 if (vnc_display_password(NULL, password) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100975 qerror_report(QERR_SET_PASSWD_FAILED);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200976 return -1;
977 }
aliguoribb5fc202009-03-05 23:01:15 +0000978
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200979 return 0;
Markus Armbruster2895e072009-12-07 21:37:01 +0100980}
981
982static void change_vnc_password_cb(Monitor *mon, const char *password,
983 void *opaque)
984{
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100985 change_vnc_password(password);
aliguori731b0362009-03-05 23:01:42 +0000986 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +0000987}
988
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200989static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
thse25a5822007-08-25 01:36:20 +0000990{
ths70848512007-08-25 01:37:05 +0000991 if (strcmp(target, "passwd") == 0 ||
aliguori28a76be2009-03-06 20:27:40 +0000992 strcmp(target, "password") == 0) {
993 if (arg) {
aliguoribb5fc202009-03-05 23:01:15 +0000994 char password[9];
aliguori28a76be2009-03-06 20:27:40 +0000995 strncpy(password, arg, sizeof(password));
996 password[sizeof(password) - 1] = '\0';
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200997 return change_vnc_password(password);
aliguoribb5fc202009-03-05 23:01:15 +0000998 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200999 return monitor_read_password(mon, change_vnc_password_cb, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001000 }
ths70848512007-08-25 01:37:05 +00001001 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001002 if (vnc_display_open(NULL, target) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001003 qerror_report(QERR_VNC_SERVER_FAILED, target);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001004 return -1;
1005 }
ths70848512007-08-25 01:37:05 +00001006 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001007
1008 return 0;
thse25a5822007-08-25 01:36:20 +00001009}
Jes Sorensen821601e2011-03-16 13:33:36 +01001010#else
1011static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
1012{
1013 qerror_report(QERR_FEATURE_DISABLED, "vnc");
1014 return -ENODEV;
1015}
1016#endif
thse25a5822007-08-25 01:36:20 +00001017
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001018/**
1019 * do_change(): Change a removable medium, or VNC configuration
1020 */
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001021static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
thse25a5822007-08-25 01:36:20 +00001022{
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001023 const char *device = qdict_get_str(qdict, "device");
1024 const char *target = qdict_get_str(qdict, "target");
1025 const char *arg = qdict_get_try_str(qdict, "arg");
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001026 int ret;
1027
thse25a5822007-08-25 01:36:20 +00001028 if (strcmp(device, "vnc") == 0) {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001029 ret = do_change_vnc(mon, target, arg);
thse25a5822007-08-25 01:36:20 +00001030 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001031 ret = do_change_block(mon, device, target, arg);
thse25a5822007-08-25 01:36:20 +00001032 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001033
1034 return ret;
thse25a5822007-08-25 01:36:20 +00001035}
1036
Gerd Hoffmann75721502010-10-07 12:22:54 +02001037static int set_password(Monitor *mon, const QDict *qdict, QObject **ret_data)
1038{
1039 const char *protocol = qdict_get_str(qdict, "protocol");
1040 const char *password = qdict_get_str(qdict, "password");
1041 const char *connected = qdict_get_try_str(qdict, "connected");
1042 int disconnect_if_connected = 0;
1043 int fail_if_connected = 0;
1044 int rc;
1045
1046 if (connected) {
1047 if (strcmp(connected, "fail") == 0) {
1048 fail_if_connected = 1;
1049 } else if (strcmp(connected, "disconnect") == 0) {
1050 disconnect_if_connected = 1;
1051 } else if (strcmp(connected, "keep") == 0) {
1052 /* nothing */
1053 } else {
1054 qerror_report(QERR_INVALID_PARAMETER, "connected");
1055 return -1;
1056 }
1057 }
1058
1059 if (strcmp(protocol, "spice") == 0) {
1060 if (!using_spice) {
1061 /* correct one? spice isn't a device ,,, */
1062 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1063 return -1;
1064 }
1065 rc = qemu_spice_set_passwd(password, fail_if_connected,
1066 disconnect_if_connected);
1067 if (rc != 0) {
1068 qerror_report(QERR_SET_PASSWD_FAILED);
1069 return -1;
1070 }
1071 return 0;
1072 }
1073
1074 if (strcmp(protocol, "vnc") == 0) {
1075 if (fail_if_connected || disconnect_if_connected) {
1076 /* vnc supports "connected=keep" only */
1077 qerror_report(QERR_INVALID_PARAMETER, "connected");
1078 return -1;
1079 }
Anthony Liguori1cd20f82011-01-31 14:27:36 -06001080 /* Note that setting an empty password will not disable login through
1081 * this interface. */
Jes Sorensen821601e2011-03-16 13:33:36 +01001082 return vnc_display_password(NULL, password);
Gerd Hoffmann75721502010-10-07 12:22:54 +02001083 }
1084
1085 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1086 return -1;
1087}
1088
1089static int expire_password(Monitor *mon, const QDict *qdict, QObject **ret_data)
1090{
1091 const char *protocol = qdict_get_str(qdict, "protocol");
1092 const char *whenstr = qdict_get_str(qdict, "time");
1093 time_t when;
1094 int rc;
1095
Marc-André Lureau8d86e2b2011-01-06 11:43:17 +01001096 if (strcmp(whenstr, "now") == 0) {
Gerd Hoffmann75721502010-10-07 12:22:54 +02001097 when = 0;
Marc-André Lureau8d86e2b2011-01-06 11:43:17 +01001098 } else if (strcmp(whenstr, "never") == 0) {
Gerd Hoffmann75721502010-10-07 12:22:54 +02001099 when = TIME_MAX;
1100 } else if (whenstr[0] == '+') {
1101 when = time(NULL) + strtoull(whenstr+1, NULL, 10);
1102 } else {
1103 when = strtoull(whenstr, NULL, 10);
1104 }
1105
1106 if (strcmp(protocol, "spice") == 0) {
1107 if (!using_spice) {
1108 /* correct one? spice isn't a device ,,, */
1109 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1110 return -1;
1111 }
1112 rc = qemu_spice_set_pw_expire(when);
1113 if (rc != 0) {
1114 qerror_report(QERR_SET_PASSWD_FAILED);
1115 return -1;
1116 }
1117 return 0;
1118 }
1119
1120 if (strcmp(protocol, "vnc") == 0) {
Jes Sorensen821601e2011-03-16 13:33:36 +01001121 return vnc_display_pw_expire(NULL, when);
Gerd Hoffmann75721502010-10-07 12:22:54 +02001122 }
1123
1124 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1125 return -1;
1126}
1127
Daniel P. Berrange13661082011-06-23 13:31:42 +01001128static int add_graphics_client(Monitor *mon, const QDict *qdict, QObject **ret_data)
1129{
1130 const char *protocol = qdict_get_str(qdict, "protocol");
1131 const char *fdname = qdict_get_str(qdict, "fdname");
Daniel P. Berrange13661082011-06-23 13:31:42 +01001132 CharDriverState *s;
1133
1134 if (strcmp(protocol, "spice") == 0) {
1135 if (!using_spice) {
1136 /* correct one? spice isn't a device ,,, */
1137 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1138 return -1;
1139 }
1140 qerror_report(QERR_ADD_CLIENT_FAILED);
1141 return -1;
TeLeManc62f6d12011-07-25 16:29:14 +08001142#ifdef CONFIG_VNC
Daniel P. Berrange13661082011-06-23 13:31:42 +01001143 } else if (strcmp(protocol, "vnc") == 0) {
1144 int fd = monitor_get_fd(mon, fdname);
Jamie Iles860341f2011-08-10 15:18:42 +01001145 int skipauth = qdict_get_try_bool(qdict, "skipauth", 0);
Daniel P. Berrange13661082011-06-23 13:31:42 +01001146 vnc_display_add_client(NULL, fd, skipauth);
1147 return 0;
TeLeManc62f6d12011-07-25 16:29:14 +08001148#endif
Daniel P. Berrange13661082011-06-23 13:31:42 +01001149 } else if ((s = qemu_chr_find(protocol)) != NULL) {
1150 int fd = monitor_get_fd(mon, fdname);
1151 if (qemu_chr_add_client(s, fd) < 0) {
1152 qerror_report(QERR_ADD_CLIENT_FAILED);
1153 return -1;
1154 }
1155 return 0;
1156 }
1157
1158 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1159 return -1;
1160}
1161
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001162static int client_migrate_info(Monitor *mon, const QDict *qdict, QObject **ret_data)
1163{
1164 const char *protocol = qdict_get_str(qdict, "protocol");
1165 const char *hostname = qdict_get_str(qdict, "hostname");
1166 const char *subject = qdict_get_try_str(qdict, "cert-subject");
1167 int port = qdict_get_try_int(qdict, "port", -1);
1168 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
1169 int ret;
1170
1171 if (strcmp(protocol, "spice") == 0) {
1172 if (!using_spice) {
1173 qerror_report(QERR_DEVICE_NOT_ACTIVE, "spice");
1174 return -1;
1175 }
1176
1177 ret = qemu_spice_migrate_info(hostname, port, tls_port, subject);
1178 if (ret != 0) {
1179 qerror_report(QERR_UNDEFINED_ERROR);
1180 return -1;
1181 }
1182 return 0;
1183 }
1184
1185 qerror_report(QERR_INVALID_PARAMETER, "protocol");
1186 return -1;
1187}
1188
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -03001189static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard59a983b2004-03-17 23:17:16 +00001190{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001191 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -03001192 return 0;
bellard59a983b2004-03-17 23:17:16 +00001193}
1194
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001195static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +00001196{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001197 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +00001198}
1199
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001200static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +00001201{
1202 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001203 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +00001204
bellard9307c4c2004-04-04 12:57:25 +00001205 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +00001206 mask = 0;
1207 } else {
bellard9307c4c2004-04-04 12:57:25 +00001208 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +00001209 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001210 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001211 return;
1212 }
1213 }
1214 cpu_set_log(mask);
1215}
1216
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001217static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001218{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001219 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001220 if (!option || !strcmp(option, "on")) {
1221 singlestep = 1;
1222 } else if (!strcmp(option, "off")) {
1223 singlestep = 0;
1224 } else {
1225 monitor_printf(mon, "unexpected option %s\n", option);
1226 }
1227}
1228
Luiz Capitulinoe0c97bd2009-10-07 13:41:57 -03001229/**
1230 * do_stop(): Stop VM execution
1231 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001232static int do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard8a7ddc32004-03-31 19:00:16 +00001233{
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001234 vm_stop(RUN_STATE_PAUSED);
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001235 return 0;
bellard8a7ddc32004-03-31 19:00:16 +00001236}
1237
aliguoribb5fc202009-03-05 23:01:15 +00001238static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
aliguoric0f4ce72009-03-05 23:01:01 +00001239
aliguori376253e2009-03-05 23:01:23 +00001240struct bdrv_iterate_context {
1241 Monitor *mon;
1242 int err;
1243};
aliguoric0f4ce72009-03-05 23:01:01 +00001244
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001245/**
1246 * do_cont(): Resume emulation.
1247 */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001248static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
aliguori376253e2009-03-05 23:01:23 +00001249{
1250 struct bdrv_iterate_context context = { mon, 0 };
1251
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001252 if (runstate_check(RUN_STATE_INMIGRATE)) {
Amit Shah8e848652010-07-27 15:49:19 +05301253 qerror_report(QERR_MIGRATION_EXPECTED);
1254 return -1;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001255 } else if (runstate_check(RUN_STATE_INTERNAL_ERROR) ||
1256 runstate_check(RUN_STATE_SHUTDOWN)) {
Luiz Capitulino6667b232011-07-29 15:57:54 -03001257 qerror_report(QERR_RESET_REQUIRED);
1258 return -1;
Amit Shah8e848652010-07-27 15:49:19 +05301259 }
Luiz Capitulino6667b232011-07-29 15:57:54 -03001260
aliguori376253e2009-03-05 23:01:23 +00001261 bdrv_iterate(encrypted_bdrv_it, &context);
aliguoric0f4ce72009-03-05 23:01:01 +00001262 /* only resume the vm if all keys are set and valid */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001263 if (!context.err) {
aliguoric0f4ce72009-03-05 23:01:01 +00001264 vm_start();
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001265 return 0;
1266 } else {
1267 return -1;
1268 }
bellard8a7ddc32004-03-31 19:00:16 +00001269}
1270
aliguoribb5fc202009-03-05 23:01:15 +00001271static void bdrv_key_cb(void *opaque, int err)
1272{
aliguori376253e2009-03-05 23:01:23 +00001273 Monitor *mon = opaque;
1274
aliguoribb5fc202009-03-05 23:01:15 +00001275 /* another key was set successfully, retry to continue */
1276 if (!err)
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001277 do_cont(mon, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001278}
1279
1280static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1281{
aliguori376253e2009-03-05 23:01:23 +00001282 struct bdrv_iterate_context *context = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00001283
aliguori376253e2009-03-05 23:01:23 +00001284 if (!context->err && bdrv_key_required(bs)) {
1285 context->err = -EBUSY;
1286 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1287 context->mon);
aliguoribb5fc202009-03-05 23:01:15 +00001288 }
1289}
1290
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001291static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001292{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001293 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001294 if (!device)
1295 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1296 if (gdbserver_start(device) < 0) {
1297 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1298 device);
1299 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001300 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001301 } else {
aliguori59030a82009-04-05 18:43:41 +00001302 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1303 device);
bellard8a7ddc32004-03-31 19:00:16 +00001304 }
1305}
1306
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001307static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001308{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001309 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001310 if (select_watchdog_action(action) == -1) {
1311 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1312 }
1313}
1314
aliguori376253e2009-03-05 23:01:23 +00001315static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001316{
aliguori376253e2009-03-05 23:01:23 +00001317 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001318 switch(c) {
1319 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001320 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001321 break;
1322 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001323 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001324 break;
1325 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001326 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001327 break;
1328 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001329 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001330 break;
1331 default:
1332 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001333 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001334 } else {
aliguori376253e2009-03-05 23:01:23 +00001335 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001336 }
1337 break;
1338 }
aliguori376253e2009-03-05 23:01:23 +00001339 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001340}
1341
aliguori376253e2009-03-05 23:01:23 +00001342static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -05001343 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001344{
bellard6a00d602005-11-21 23:25:50 +00001345 CPUState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +00001346 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001347 uint8_t buf[16];
1348 uint64_t v;
1349
1350 if (format == 'i') {
1351 int flags;
1352 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001353 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +00001354#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001355 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001356 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001357 } else if (wsize == 4) {
1358 flags = 0;
1359 } else {
bellard6a15fd12006-04-12 21:07:07 +00001360 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001361 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001362 if (env) {
1363#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001364 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001365 (env->segs[R_CS].flags & DESC_L_MASK))
1366 flags = 2;
1367 else
1368#endif
1369 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1370 flags = 1;
1371 }
bellard4c27ba22004-04-25 18:05:08 +00001372 }
1373#endif
aliguori376253e2009-03-05 23:01:23 +00001374 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001375 return;
1376 }
1377
1378 len = wsize * count;
1379 if (wsize == 1)
1380 line_size = 8;
1381 else
1382 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001383 max_digits = 0;
1384
1385 switch(format) {
1386 case 'o':
1387 max_digits = (wsize * 8 + 2) / 3;
1388 break;
1389 default:
1390 case 'x':
1391 max_digits = (wsize * 8) / 4;
1392 break;
1393 case 'u':
1394 case 'd':
1395 max_digits = (wsize * 8 * 10 + 32) / 33;
1396 break;
1397 case 'c':
1398 wsize = 1;
1399 break;
1400 }
1401
1402 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001403 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001404 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001405 else
aliguori376253e2009-03-05 23:01:23 +00001406 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001407 l = len;
1408 if (l > line_size)
1409 l = line_size;
1410 if (is_physical) {
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001411 cpu_physical_memory_read(addr, buf, l);
bellard9307c4c2004-04-04 12:57:25 +00001412 } else {
bellard6a00d602005-11-21 23:25:50 +00001413 env = mon_get_cpu();
aliguoric8f79b62008-08-18 14:00:20 +00001414 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001415 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001416 break;
1417 }
bellard9307c4c2004-04-04 12:57:25 +00001418 }
ths5fafdf22007-09-16 21:08:06 +00001419 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001420 while (i < l) {
1421 switch(wsize) {
1422 default:
1423 case 1:
1424 v = ldub_raw(buf + i);
1425 break;
1426 case 2:
1427 v = lduw_raw(buf + i);
1428 break;
1429 case 4:
bellard92a31b12005-02-10 22:00:52 +00001430 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001431 break;
1432 case 8:
1433 v = ldq_raw(buf + i);
1434 break;
1435 }
aliguori376253e2009-03-05 23:01:23 +00001436 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001437 switch(format) {
1438 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001439 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001440 break;
1441 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001442 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001443 break;
1444 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001445 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001446 break;
1447 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001448 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001449 break;
1450 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001451 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001452 break;
1453 }
1454 i += wsize;
1455 }
aliguori376253e2009-03-05 23:01:23 +00001456 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001457 addr += l;
1458 len -= l;
1459 }
1460}
1461
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001462static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001463{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001464 int count = qdict_get_int(qdict, "count");
1465 int format = qdict_get_int(qdict, "format");
1466 int size = qdict_get_int(qdict, "size");
1467 target_long addr = qdict_get_int(qdict, "addr");
1468
aliguori376253e2009-03-05 23:01:23 +00001469 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001470}
1471
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001472static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001473{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001474 int count = qdict_get_int(qdict, "count");
1475 int format = qdict_get_int(qdict, "format");
1476 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001477 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001478
aliguori376253e2009-03-05 23:01:23 +00001479 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001480}
1481
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001482static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001483{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001484 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001485 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001486
blueswir17743e582007-09-24 18:39:04 +00001487#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +00001488 switch(format) {
1489 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001490 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +00001491 break;
1492 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001493 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +00001494 break;
1495 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001496 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +00001497 break;
1498 default:
1499 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001500 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +00001501 break;
1502 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001503 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001504 break;
1505 }
bellard92a31b12005-02-10 22:00:52 +00001506#else
1507 switch(format) {
1508 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001509 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +00001510 break;
1511 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001512 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +00001513 break;
1514 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001515 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +00001516 break;
1517 default:
1518 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001519 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +00001520 break;
1521 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001522 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +00001523 break;
1524 }
1525#endif
aliguori376253e2009-03-05 23:01:23 +00001526 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001527}
1528
Luiz Capitulino98696222010-02-10 23:49:58 -02001529static int do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellardb371dc52007-01-03 15:20:39 +00001530{
1531 FILE *f;
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001532 uint32_t size = qdict_get_int(qdict, "size");
1533 const char *filename = qdict_get_str(qdict, "filename");
1534 target_long addr = qdict_get_int(qdict, "val");
bellardb371dc52007-01-03 15:20:39 +00001535 uint32_t l;
1536 CPUState *env;
1537 uint8_t buf[1024];
Luiz Capitulino98696222010-02-10 23:49:58 -02001538 int ret = -1;
bellardb371dc52007-01-03 15:20:39 +00001539
1540 env = mon_get_cpu();
bellardb371dc52007-01-03 15:20:39 +00001541
1542 f = fopen(filename, "wb");
1543 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001544 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulino98696222010-02-10 23:49:58 -02001545 return -1;
bellardb371dc52007-01-03 15:20:39 +00001546 }
1547 while (size != 0) {
1548 l = sizeof(buf);
1549 if (l > size)
1550 l = size;
1551 cpu_memory_rw_debug(env, addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001552 if (fwrite(buf, 1, l, f) != l) {
1553 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1554 goto exit;
1555 }
bellardb371dc52007-01-03 15:20:39 +00001556 addr += l;
1557 size -= l;
1558 }
Luiz Capitulino98696222010-02-10 23:49:58 -02001559
1560 ret = 0;
1561
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001562exit:
bellardb371dc52007-01-03 15:20:39 +00001563 fclose(f);
Luiz Capitulino98696222010-02-10 23:49:58 -02001564 return ret;
bellardb371dc52007-01-03 15:20:39 +00001565}
1566
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001567static int do_physical_memory_save(Monitor *mon, const QDict *qdict,
Luiz Capitulino18f5a8b2009-10-16 12:23:44 -03001568 QObject **ret_data)
aurel32a8bdf7a2008-04-11 21:36:14 +00001569{
1570 FILE *f;
1571 uint32_t l;
1572 uint8_t buf[1024];
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001573 uint32_t size = qdict_get_int(qdict, "size");
1574 const char *filename = qdict_get_str(qdict, "filename");
Anthony Liguoric227f092009-10-01 16:12:16 -05001575 target_phys_addr_t addr = qdict_get_int(qdict, "val");
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001576 int ret = -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001577
1578 f = fopen(filename, "wb");
1579 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001580 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001581 return -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001582 }
1583 while (size != 0) {
1584 l = sizeof(buf);
1585 if (l > size)
1586 l = size;
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001587 cpu_physical_memory_read(addr, buf, l);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001588 if (fwrite(buf, 1, l, f) != l) {
1589 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1590 goto exit;
1591 }
aurel32a8bdf7a2008-04-11 21:36:14 +00001592 fflush(f);
1593 addr += l;
1594 size -= l;
1595 }
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001596
1597 ret = 0;
1598
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001599exit:
aurel32a8bdf7a2008-04-11 21:36:14 +00001600 fclose(f);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001601 return ret;
aurel32a8bdf7a2008-04-11 21:36:14 +00001602}
1603
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001604static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001605{
1606 uint32_t addr;
bellarde4cf1ad2005-06-04 20:15:57 +00001607 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001608 uint32_t start = qdict_get_int(qdict, "start");
1609 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001610
1611 sum = 0;
1612 for(addr = start; addr < (start + size); addr++) {
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001613 uint8_t val = ldub_phys(addr);
bellarde4cf1ad2005-06-04 20:15:57 +00001614 /* BSD sum algorithm ('sum' Unix command) */
1615 sum = (sum >> 1) | (sum << 15);
Stefan Weil54f7b4a2011-04-10 18:23:39 +02001616 sum += val;
bellarde4cf1ad2005-06-04 20:15:57 +00001617 }
aliguori376253e2009-03-05 23:01:23 +00001618 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001619}
1620
bellarda3a91a32004-06-04 11:06:21 +00001621typedef struct {
1622 int keycode;
1623 const char *name;
1624} KeyDef;
1625
1626static const KeyDef key_defs[] = {
1627 { 0x2a, "shift" },
1628 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +00001629
bellarda3a91a32004-06-04 11:06:21 +00001630 { 0x38, "alt" },
1631 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +00001632 { 0x64, "altgr" },
1633 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +00001634 { 0x1d, "ctrl" },
1635 { 0x9d, "ctrl_r" },
1636
1637 { 0xdd, "menu" },
1638
1639 { 0x01, "esc" },
1640
1641 { 0x02, "1" },
1642 { 0x03, "2" },
1643 { 0x04, "3" },
1644 { 0x05, "4" },
1645 { 0x06, "5" },
1646 { 0x07, "6" },
1647 { 0x08, "7" },
1648 { 0x09, "8" },
1649 { 0x0a, "9" },
1650 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +00001651 { 0x0c, "minus" },
1652 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +00001653 { 0x0e, "backspace" },
1654
1655 { 0x0f, "tab" },
1656 { 0x10, "q" },
1657 { 0x11, "w" },
1658 { 0x12, "e" },
1659 { 0x13, "r" },
1660 { 0x14, "t" },
1661 { 0x15, "y" },
1662 { 0x16, "u" },
1663 { 0x17, "i" },
1664 { 0x18, "o" },
1665 { 0x19, "p" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001666 { 0x1a, "bracket_left" },
1667 { 0x1b, "bracket_right" },
bellarda3a91a32004-06-04 11:06:21 +00001668 { 0x1c, "ret" },
1669
1670 { 0x1e, "a" },
1671 { 0x1f, "s" },
1672 { 0x20, "d" },
1673 { 0x21, "f" },
1674 { 0x22, "g" },
1675 { 0x23, "h" },
1676 { 0x24, "j" },
1677 { 0x25, "k" },
1678 { 0x26, "l" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001679 { 0x27, "semicolon" },
1680 { 0x28, "apostrophe" },
1681 { 0x29, "grave_accent" },
bellarda3a91a32004-06-04 11:06:21 +00001682
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001683 { 0x2b, "backslash" },
bellarda3a91a32004-06-04 11:06:21 +00001684 { 0x2c, "z" },
1685 { 0x2d, "x" },
1686 { 0x2e, "c" },
1687 { 0x2f, "v" },
1688 { 0x30, "b" },
1689 { 0x31, "n" },
1690 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +00001691 { 0x33, "comma" },
1692 { 0x34, "dot" },
1693 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +00001694
balrog4d3b6f62008-02-10 16:33:14 +00001695 { 0x37, "asterisk" },
1696
bellarda3a91a32004-06-04 11:06:21 +00001697 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +00001698 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001699 { 0x3b, "f1" },
1700 { 0x3c, "f2" },
1701 { 0x3d, "f3" },
1702 { 0x3e, "f4" },
1703 { 0x3f, "f5" },
1704 { 0x40, "f6" },
1705 { 0x41, "f7" },
1706 { 0x42, "f8" },
1707 { 0x43, "f9" },
1708 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +00001709 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001710 { 0x46, "scroll_lock" },
1711
bellard64866c32006-05-07 18:03:31 +00001712 { 0xb5, "kp_divide" },
1713 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +00001714 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +00001715 { 0x4e, "kp_add" },
1716 { 0x9c, "kp_enter" },
1717 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +00001718 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +00001719
1720 { 0x52, "kp_0" },
1721 { 0x4f, "kp_1" },
1722 { 0x50, "kp_2" },
1723 { 0x51, "kp_3" },
1724 { 0x4b, "kp_4" },
1725 { 0x4c, "kp_5" },
1726 { 0x4d, "kp_6" },
1727 { 0x47, "kp_7" },
1728 { 0x48, "kp_8" },
1729 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +00001730
bellarda3a91a32004-06-04 11:06:21 +00001731 { 0x56, "<" },
1732
1733 { 0x57, "f11" },
1734 { 0x58, "f12" },
1735
1736 { 0xb7, "print" },
1737
1738 { 0xc7, "home" },
1739 { 0xc9, "pgup" },
1740 { 0xd1, "pgdn" },
1741 { 0xcf, "end" },
1742
1743 { 0xcb, "left" },
1744 { 0xc8, "up" },
1745 { 0xd0, "down" },
1746 { 0xcd, "right" },
1747
1748 { 0xd2, "insert" },
1749 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001750#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1751 { 0xf0, "stop" },
1752 { 0xf1, "again" },
1753 { 0xf2, "props" },
1754 { 0xf3, "undo" },
1755 { 0xf4, "front" },
1756 { 0xf5, "copy" },
1757 { 0xf6, "open" },
1758 { 0xf7, "paste" },
1759 { 0xf8, "find" },
1760 { 0xf9, "cut" },
1761 { 0xfa, "lf" },
1762 { 0xfb, "help" },
1763 { 0xfc, "meta_l" },
1764 { 0xfd, "meta_r" },
1765 { 0xfe, "compose" },
1766#endif
bellarda3a91a32004-06-04 11:06:21 +00001767 { 0, NULL },
1768};
1769
1770static int get_keycode(const char *key)
1771{
1772 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001773 char *endp;
1774 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001775
1776 for(p = key_defs; p->name != NULL; p++) {
1777 if (!strcmp(key, p->name))
1778 return p->keycode;
1779 }
bellard64866c32006-05-07 18:03:31 +00001780 if (strstart(key, "0x", NULL)) {
1781 ret = strtoul(key, &endp, 0);
1782 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1783 return ret;
1784 }
bellarda3a91a32004-06-04 11:06:21 +00001785 return -1;
1786}
1787
balrogc8256f92008-06-08 22:45:01 +00001788#define MAX_KEYCODES 16
1789static uint8_t keycodes[MAX_KEYCODES];
1790static int nb_pending_keycodes;
1791static QEMUTimer *key_timer;
1792
1793static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001794{
balrogc8256f92008-06-08 22:45:01 +00001795 int keycode;
1796
1797 while (nb_pending_keycodes > 0) {
1798 nb_pending_keycodes--;
1799 keycode = keycodes[nb_pending_keycodes];
1800 if (keycode & 0x80)
1801 kbd_put_keycode(0xe0);
1802 kbd_put_keycode(keycode | 0x80);
1803 }
1804}
1805
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001806static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001807{
balrog3401c0d2008-06-04 10:05:59 +00001808 char keyname_buf[16];
1809 char *separator;
1810 int keyname_len, keycode, i;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001811 const char *string = qdict_get_str(qdict, "string");
1812 int has_hold_time = qdict_haskey(qdict, "hold_time");
1813 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
ths3b46e622007-09-17 08:09:54 +00001814
balrogc8256f92008-06-08 22:45:01 +00001815 if (nb_pending_keycodes > 0) {
1816 qemu_del_timer(key_timer);
1817 release_keys(NULL);
1818 }
1819 if (!has_hold_time)
1820 hold_time = 100;
1821 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001822 while (1) {
1823 separator = strchr(string, '-');
1824 keyname_len = separator ? separator - string : strlen(string);
1825 if (keyname_len > 0) {
1826 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1827 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001828 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001829 return;
bellarda3a91a32004-06-04 11:06:21 +00001830 }
balrogc8256f92008-06-08 22:45:01 +00001831 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001832 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001833 return;
1834 }
1835 keyname_buf[keyname_len] = 0;
1836 keycode = get_keycode(keyname_buf);
1837 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001838 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001839 return;
1840 }
balrogc8256f92008-06-08 22:45:01 +00001841 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001842 }
balrog3401c0d2008-06-04 10:05:59 +00001843 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001844 break;
balrog3401c0d2008-06-04 10:05:59 +00001845 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001846 }
balrogc8256f92008-06-08 22:45:01 +00001847 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001848 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001849 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001850 keycode = keycodes[i];
1851 if (keycode & 0x80)
1852 kbd_put_keycode(0xe0);
1853 kbd_put_keycode(keycode & 0x7f);
1854 }
balrogc8256f92008-06-08 22:45:01 +00001855 /* delayed key up events */
Paolo Bonzini74475452011-03-11 16:47:48 +01001856 qemu_mod_timer(key_timer, qemu_get_clock_ns(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001857 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001858}
1859
bellard13224a82006-07-14 22:03:35 +00001860static int mouse_button_state;
1861
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001862static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001863{
1864 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001865 const char *dx_str = qdict_get_str(qdict, "dx_str");
1866 const char *dy_str = qdict_get_str(qdict, "dy_str");
1867 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001868 dx = strtol(dx_str, NULL, 0);
1869 dy = strtol(dy_str, NULL, 0);
1870 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001871 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001872 dz = strtol(dz_str, NULL, 0);
1873 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1874}
1875
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001876static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001877{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001878 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001879 mouse_button_state = button_state;
1880 kbd_mouse_event(0, 0, 0, mouse_button_state);
1881}
1882
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001883static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001884{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001885 int size = qdict_get_int(qdict, "size");
1886 int addr = qdict_get_int(qdict, "addr");
1887 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001888 uint32_t val;
1889 int suffix;
1890
1891 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001892 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001893 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001894 addr++;
1895 }
1896 addr &= 0xffff;
1897
1898 switch(size) {
1899 default:
1900 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001901 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001902 suffix = 'b';
1903 break;
1904 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001905 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001906 suffix = 'w';
1907 break;
1908 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001909 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001910 suffix = 'l';
1911 break;
1912 }
aliguori376253e2009-03-05 23:01:23 +00001913 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1914 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001915}
bellarda3a91a32004-06-04 11:06:21 +00001916
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001917static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001918{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001919 int size = qdict_get_int(qdict, "size");
1920 int addr = qdict_get_int(qdict, "addr");
1921 int val = qdict_get_int(qdict, "val");
1922
Jan Kiszkaf1147842009-07-14 10:20:11 +02001923 addr &= IOPORTS_MASK;
1924
1925 switch (size) {
1926 default:
1927 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001928 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001929 break;
1930 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001931 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001932 break;
1933 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001934 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001935 break;
1936 }
1937}
1938
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001939static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001940{
1941 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001942 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001943
Jan Kiszka76e30d02009-07-02 00:19:02 +02001944 res = qemu_boot_set(bootdevice);
1945 if (res == 0) {
1946 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1947 } else if (res > 0) {
1948 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001949 } else {
aliguori376253e2009-03-05 23:01:23 +00001950 monitor_printf(mon, "no function defined to set boot device list for "
1951 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001952 }
1953}
1954
Luiz Capitulinoc80d2592009-10-07 13:41:58 -03001955/**
1956 * do_system_reset(): Issue a machine reset
1957 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001958static int do_system_reset(Monitor *mon, const QDict *qdict,
1959 QObject **ret_data)
bellarde4f90822004-06-20 12:35:44 +00001960{
1961 qemu_system_reset_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001962 return 0;
bellarde4f90822004-06-20 12:35:44 +00001963}
1964
Luiz Capitulino43076662009-10-07 13:41:59 -03001965/**
1966 * do_system_powerdown(): Issue a machine powerdown
1967 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001968static int do_system_powerdown(Monitor *mon, const QDict *qdict,
1969 QObject **ret_data)
bellard34751872005-07-02 14:31:34 +00001970{
1971 qemu_system_powerdown_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001972 return 0;
bellard34751872005-07-02 14:31:34 +00001973}
1974
bellardb86bda52004-09-18 19:32:46 +00001975#if defined(TARGET_I386)
Blue Swirld65aaf32010-12-11 18:56:24 +00001976static void print_pte(Monitor *mon, target_phys_addr_t addr,
1977 target_phys_addr_t pte,
1978 target_phys_addr_t mask)
bellardb86bda52004-09-18 19:32:46 +00001979{
Blue Swirld65aaf32010-12-11 18:56:24 +00001980#ifdef TARGET_X86_64
1981 if (addr & (1ULL << 47)) {
1982 addr |= -1LL << 48;
1983 }
1984#endif
1985 monitor_printf(mon, TARGET_FMT_plx ": " TARGET_FMT_plx
1986 " %c%c%c%c%c%c%c%c%c\n",
aliguori376253e2009-03-05 23:01:23 +00001987 addr,
1988 pte & mask,
Blue Swirld65aaf32010-12-11 18:56:24 +00001989 pte & PG_NX_MASK ? 'X' : '-',
aliguori376253e2009-03-05 23:01:23 +00001990 pte & PG_GLOBAL_MASK ? 'G' : '-',
1991 pte & PG_PSE_MASK ? 'P' : '-',
1992 pte & PG_DIRTY_MASK ? 'D' : '-',
1993 pte & PG_ACCESSED_MASK ? 'A' : '-',
1994 pte & PG_PCD_MASK ? 'C' : '-',
1995 pte & PG_PWT_MASK ? 'T' : '-',
1996 pte & PG_USER_MASK ? 'U' : '-',
1997 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001998}
1999
Blue Swirld65aaf32010-12-11 18:56:24 +00002000static void tlb_info_32(Monitor *mon, CPUState *env)
bellardb86bda52004-09-18 19:32:46 +00002001{
Austin Clements94ac5cd2011-08-21 14:49:45 -04002002 unsigned int l1, l2;
bellardb86bda52004-09-18 19:32:46 +00002003 uint32_t pgd, pde, pte;
2004
bellardb86bda52004-09-18 19:32:46 +00002005 pgd = env->cr[3] & ~0xfff;
2006 for(l1 = 0; l1 < 1024; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002007 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
bellardb86bda52004-09-18 19:32:46 +00002008 pde = le32_to_cpu(pde);
2009 if (pde & PG_PRESENT_MASK) {
2010 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
Blue Swirld65aaf32010-12-11 18:56:24 +00002011 /* 4M pages */
2012 print_pte(mon, (l1 << 22), pde, ~((1 << 21) - 1));
bellardb86bda52004-09-18 19:32:46 +00002013 } else {
2014 for(l2 = 0; l2 < 1024; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002015 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
bellardb86bda52004-09-18 19:32:46 +00002016 pte = le32_to_cpu(pte);
2017 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00002018 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00002019 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00002020 ~0xfff);
2021 }
2022 }
2023 }
2024 }
2025 }
2026}
2027
Blue Swirld65aaf32010-12-11 18:56:24 +00002028static void tlb_info_pae32(Monitor *mon, CPUState *env)
2029{
Austin Clements94ac5cd2011-08-21 14:49:45 -04002030 unsigned int l1, l2, l3;
Blue Swirld65aaf32010-12-11 18:56:24 +00002031 uint64_t pdpe, pde, pte;
2032 uint64_t pdp_addr, pd_addr, pt_addr;
2033
2034 pdp_addr = env->cr[3] & ~0x1f;
2035 for (l1 = 0; l1 < 4; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002036 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00002037 pdpe = le64_to_cpu(pdpe);
2038 if (pdpe & PG_PRESENT_MASK) {
2039 pd_addr = pdpe & 0x3fffffffff000ULL;
2040 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002041 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00002042 pde = le64_to_cpu(pde);
2043 if (pde & PG_PRESENT_MASK) {
2044 if (pde & PG_PSE_MASK) {
2045 /* 2M pages with PAE, CR4.PSE is ignored */
2046 print_pte(mon, (l1 << 30 ) + (l2 << 21), pde,
2047 ~((target_phys_addr_t)(1 << 20) - 1));
2048 } else {
2049 pt_addr = pde & 0x3fffffffff000ULL;
2050 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002051 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00002052 pte = le64_to_cpu(pte);
2053 if (pte & PG_PRESENT_MASK) {
2054 print_pte(mon, (l1 << 30 ) + (l2 << 21)
2055 + (l3 << 12),
2056 pte & ~PG_PSE_MASK,
2057 ~(target_phys_addr_t)0xfff);
2058 }
2059 }
2060 }
2061 }
2062 }
2063 }
2064 }
2065}
2066
2067#ifdef TARGET_X86_64
2068static void tlb_info_64(Monitor *mon, CPUState *env)
2069{
2070 uint64_t l1, l2, l3, l4;
2071 uint64_t pml4e, pdpe, pde, pte;
2072 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr;
2073
2074 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
2075 for (l1 = 0; l1 < 512; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002076 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00002077 pml4e = le64_to_cpu(pml4e);
2078 if (pml4e & PG_PRESENT_MASK) {
2079 pdp_addr = pml4e & 0x3fffffffff000ULL;
2080 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002081 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00002082 pdpe = le64_to_cpu(pdpe);
2083 if (pdpe & PG_PRESENT_MASK) {
2084 if (pdpe & PG_PSE_MASK) {
2085 /* 1G pages, CR4.PSE is ignored */
2086 print_pte(mon, (l1 << 39) + (l2 << 30), pdpe,
2087 0x3ffffc0000000ULL);
2088 } else {
2089 pd_addr = pdpe & 0x3fffffffff000ULL;
2090 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002091 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00002092 pde = le64_to_cpu(pde);
2093 if (pde & PG_PRESENT_MASK) {
2094 if (pde & PG_PSE_MASK) {
2095 /* 2M pages, CR4.PSE is ignored */
2096 print_pte(mon, (l1 << 39) + (l2 << 30) +
2097 (l3 << 21), pde,
2098 0x3ffffffe00000ULL);
2099 } else {
2100 pt_addr = pde & 0x3fffffffff000ULL;
2101 for (l4 = 0; l4 < 512; l4++) {
2102 cpu_physical_memory_read(pt_addr
2103 + l4 * 8,
Stefan Weilb8b79322011-03-26 21:11:05 +01002104 &pte, 8);
Blue Swirld65aaf32010-12-11 18:56:24 +00002105 pte = le64_to_cpu(pte);
2106 if (pte & PG_PRESENT_MASK) {
2107 print_pte(mon, (l1 << 39) +
2108 (l2 << 30) +
2109 (l3 << 21) + (l4 << 12),
2110 pte & ~PG_PSE_MASK,
2111 0x3fffffffff000ULL);
2112 }
2113 }
2114 }
2115 }
2116 }
2117 }
2118 }
2119 }
2120 }
2121 }
2122}
2123#endif
2124
2125static void tlb_info(Monitor *mon)
2126{
2127 CPUState *env;
2128
2129 env = mon_get_cpu();
2130
2131 if (!(env->cr[0] & CR0_PG_MASK)) {
2132 monitor_printf(mon, "PG disabled\n");
2133 return;
2134 }
2135 if (env->cr[4] & CR4_PAE_MASK) {
2136#ifdef TARGET_X86_64
2137 if (env->hflags & HF_LMA_MASK) {
2138 tlb_info_64(mon, env);
2139 } else
2140#endif
2141 {
2142 tlb_info_pae32(mon, env);
2143 }
2144 } else {
2145 tlb_info_32(mon, env);
2146 }
2147}
2148
Blue Swirl1b3cba62010-12-11 18:56:27 +00002149static void mem_print(Monitor *mon, target_phys_addr_t *pstart,
2150 int *plast_prot,
2151 target_phys_addr_t end, int prot)
bellardb86bda52004-09-18 19:32:46 +00002152{
bellard9746b152004-11-11 18:30:24 +00002153 int prot1;
2154 prot1 = *plast_prot;
2155 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00002156 if (*pstart != -1) {
Blue Swirl1b3cba62010-12-11 18:56:27 +00002157 monitor_printf(mon, TARGET_FMT_plx "-" TARGET_FMT_plx " "
2158 TARGET_FMT_plx " %c%c%c\n",
aliguori376253e2009-03-05 23:01:23 +00002159 *pstart, end, end - *pstart,
2160 prot1 & PG_USER_MASK ? 'u' : '-',
2161 'r',
2162 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00002163 }
2164 if (prot != 0)
2165 *pstart = end;
2166 else
2167 *pstart = -1;
2168 *plast_prot = prot;
2169 }
2170}
2171
Blue Swirl1b3cba62010-12-11 18:56:27 +00002172static void mem_info_32(Monitor *mon, CPUState *env)
bellardb86bda52004-09-18 19:32:46 +00002173{
Austin Clementsb49ca722011-08-14 23:19:21 -04002174 unsigned int l1, l2;
2175 int prot, last_prot;
Blue Swirl1b3cba62010-12-11 18:56:27 +00002176 uint32_t pgd, pde, pte;
2177 target_phys_addr_t start, end;
bellardb86bda52004-09-18 19:32:46 +00002178
bellardb86bda52004-09-18 19:32:46 +00002179 pgd = env->cr[3] & ~0xfff;
2180 last_prot = 0;
2181 start = -1;
2182 for(l1 = 0; l1 < 1024; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002183 cpu_physical_memory_read(pgd + l1 * 4, &pde, 4);
bellardb86bda52004-09-18 19:32:46 +00002184 pde = le32_to_cpu(pde);
2185 end = l1 << 22;
2186 if (pde & PG_PRESENT_MASK) {
2187 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
2188 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00002189 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00002190 } else {
2191 for(l2 = 0; l2 < 1024; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002192 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4, &pte, 4);
bellardb86bda52004-09-18 19:32:46 +00002193 pte = le32_to_cpu(pte);
2194 end = (l1 << 22) + (l2 << 12);
2195 if (pte & PG_PRESENT_MASK) {
Austin Clementsc76c8412011-08-14 23:22:28 -04002196 prot = pte & pde &
2197 (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
bellardb86bda52004-09-18 19:32:46 +00002198 } else {
2199 prot = 0;
2200 }
aliguori376253e2009-03-05 23:01:23 +00002201 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00002202 }
2203 }
2204 } else {
2205 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00002206 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00002207 }
2208 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04002209 /* Flush last range */
2210 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
bellardb86bda52004-09-18 19:32:46 +00002211}
Blue Swirl1b3cba62010-12-11 18:56:27 +00002212
2213static void mem_info_pae32(Monitor *mon, CPUState *env)
2214{
Austin Clementsb49ca722011-08-14 23:19:21 -04002215 unsigned int l1, l2, l3;
2216 int prot, last_prot;
Blue Swirl1b3cba62010-12-11 18:56:27 +00002217 uint64_t pdpe, pde, pte;
2218 uint64_t pdp_addr, pd_addr, pt_addr;
2219 target_phys_addr_t start, end;
2220
2221 pdp_addr = env->cr[3] & ~0x1f;
2222 last_prot = 0;
2223 start = -1;
2224 for (l1 = 0; l1 < 4; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002225 cpu_physical_memory_read(pdp_addr + l1 * 8, &pdpe, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002226 pdpe = le64_to_cpu(pdpe);
2227 end = l1 << 30;
2228 if (pdpe & PG_PRESENT_MASK) {
2229 pd_addr = pdpe & 0x3fffffffff000ULL;
2230 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002231 cpu_physical_memory_read(pd_addr + l2 * 8, &pde, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002232 pde = le64_to_cpu(pde);
2233 end = (l1 << 30) + (l2 << 21);
2234 if (pde & PG_PRESENT_MASK) {
2235 if (pde & PG_PSE_MASK) {
2236 prot = pde & (PG_USER_MASK | PG_RW_MASK |
2237 PG_PRESENT_MASK);
2238 mem_print(mon, &start, &last_prot, end, prot);
2239 } else {
2240 pt_addr = pde & 0x3fffffffff000ULL;
2241 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002242 cpu_physical_memory_read(pt_addr + l3 * 8, &pte, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002243 pte = le64_to_cpu(pte);
2244 end = (l1 << 30) + (l2 << 21) + (l3 << 12);
2245 if (pte & PG_PRESENT_MASK) {
Austin Clementsc76c8412011-08-14 23:22:28 -04002246 prot = pte & pde & (PG_USER_MASK | PG_RW_MASK |
2247 PG_PRESENT_MASK);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002248 } else {
2249 prot = 0;
2250 }
2251 mem_print(mon, &start, &last_prot, end, prot);
2252 }
2253 }
2254 } else {
2255 prot = 0;
2256 mem_print(mon, &start, &last_prot, end, prot);
2257 }
2258 }
2259 } else {
2260 prot = 0;
2261 mem_print(mon, &start, &last_prot, end, prot);
2262 }
2263 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04002264 /* Flush last range */
2265 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 32, 0);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002266}
2267
2268
2269#ifdef TARGET_X86_64
2270static void mem_info_64(Monitor *mon, CPUState *env)
2271{
2272 int prot, last_prot;
2273 uint64_t l1, l2, l3, l4;
2274 uint64_t pml4e, pdpe, pde, pte;
2275 uint64_t pml4_addr, pdp_addr, pd_addr, pt_addr, start, end;
2276
2277 pml4_addr = env->cr[3] & 0x3fffffffff000ULL;
2278 last_prot = 0;
2279 start = -1;
2280 for (l1 = 0; l1 < 512; l1++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002281 cpu_physical_memory_read(pml4_addr + l1 * 8, &pml4e, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002282 pml4e = le64_to_cpu(pml4e);
2283 end = l1 << 39;
2284 if (pml4e & PG_PRESENT_MASK) {
2285 pdp_addr = pml4e & 0x3fffffffff000ULL;
2286 for (l2 = 0; l2 < 512; l2++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002287 cpu_physical_memory_read(pdp_addr + l2 * 8, &pdpe, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002288 pdpe = le64_to_cpu(pdpe);
2289 end = (l1 << 39) + (l2 << 30);
2290 if (pdpe & PG_PRESENT_MASK) {
2291 if (pdpe & PG_PSE_MASK) {
Blue Swirl2d5b5072011-01-15 08:31:00 +00002292 prot = pdpe & (PG_USER_MASK | PG_RW_MASK |
2293 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04002294 prot &= pml4e;
Blue Swirl1b3cba62010-12-11 18:56:27 +00002295 mem_print(mon, &start, &last_prot, end, prot);
2296 } else {
2297 pd_addr = pdpe & 0x3fffffffff000ULL;
2298 for (l3 = 0; l3 < 512; l3++) {
Stefan Weilb8b79322011-03-26 21:11:05 +01002299 cpu_physical_memory_read(pd_addr + l3 * 8, &pde, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002300 pde = le64_to_cpu(pde);
2301 end = (l1 << 39) + (l2 << 30) + (l3 << 21);
2302 if (pde & PG_PRESENT_MASK) {
2303 if (pde & PG_PSE_MASK) {
2304 prot = pde & (PG_USER_MASK | PG_RW_MASK |
2305 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04002306 prot &= pml4e & pdpe;
Blue Swirl1b3cba62010-12-11 18:56:27 +00002307 mem_print(mon, &start, &last_prot, end, prot);
2308 } else {
2309 pt_addr = pde & 0x3fffffffff000ULL;
2310 for (l4 = 0; l4 < 512; l4++) {
2311 cpu_physical_memory_read(pt_addr
2312 + l4 * 8,
Stefan Weilb8b79322011-03-26 21:11:05 +01002313 &pte, 8);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002314 pte = le64_to_cpu(pte);
2315 end = (l1 << 39) + (l2 << 30) +
2316 (l3 << 21) + (l4 << 12);
2317 if (pte & PG_PRESENT_MASK) {
2318 prot = pte & (PG_USER_MASK | PG_RW_MASK |
2319 PG_PRESENT_MASK);
Austin Clementsc76c8412011-08-14 23:22:28 -04002320 prot &= pml4e & pdpe & pde;
Blue Swirl1b3cba62010-12-11 18:56:27 +00002321 } else {
2322 prot = 0;
2323 }
2324 mem_print(mon, &start, &last_prot, end, prot);
2325 }
2326 }
2327 } else {
2328 prot = 0;
2329 mem_print(mon, &start, &last_prot, end, prot);
2330 }
2331 }
2332 }
2333 } else {
2334 prot = 0;
2335 mem_print(mon, &start, &last_prot, end, prot);
2336 }
2337 }
2338 } else {
2339 prot = 0;
2340 mem_print(mon, &start, &last_prot, end, prot);
2341 }
2342 }
Austin Clements8a94b8ca2011-08-14 23:22:04 -04002343 /* Flush last range */
2344 mem_print(mon, &start, &last_prot, (target_phys_addr_t)1 << 48, 0);
Blue Swirl1b3cba62010-12-11 18:56:27 +00002345}
2346#endif
2347
2348static void mem_info(Monitor *mon)
2349{
2350 CPUState *env;
2351
2352 env = mon_get_cpu();
2353
2354 if (!(env->cr[0] & CR0_PG_MASK)) {
2355 monitor_printf(mon, "PG disabled\n");
2356 return;
2357 }
2358 if (env->cr[4] & CR4_PAE_MASK) {
2359#ifdef TARGET_X86_64
2360 if (env->hflags & HF_LMA_MASK) {
2361 mem_info_64(mon, env);
2362 } else
2363#endif
2364 {
2365 mem_info_pae32(mon, env);
2366 }
2367 } else {
2368 mem_info_32(mon, env);
2369 }
2370}
bellardb86bda52004-09-18 19:32:46 +00002371#endif
2372
aurel327c664e22009-03-03 06:12:22 +00002373#if defined(TARGET_SH4)
2374
aliguori376253e2009-03-05 23:01:23 +00002375static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00002376{
aliguori376253e2009-03-05 23:01:23 +00002377 monitor_printf(mon, " tlb%i:\t"
2378 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
2379 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
2380 "dirty=%hhu writethrough=%hhu\n",
2381 idx,
2382 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
2383 tlb->v, tlb->sh, tlb->c, tlb->pr,
2384 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00002385}
2386
aliguori376253e2009-03-05 23:01:23 +00002387static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00002388{
2389 CPUState *env = mon_get_cpu();
2390 int i;
2391
aliguori376253e2009-03-05 23:01:23 +00002392 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00002393 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00002394 print_tlb (mon, i, &env->itlb[i]);
2395 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00002396 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00002397 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00002398}
2399
2400#endif
2401
Blue Swirld41160a2010-12-19 13:42:56 +00002402#if defined(TARGET_SPARC)
2403static void tlb_info(Monitor *mon)
2404{
2405 CPUState *env1 = mon_get_cpu();
2406
2407 dump_mmu((FILE*)mon, (fprintf_function)monitor_printf, env1);
2408}
2409#endif
2410
Blue Swirl314e2982011-09-11 20:22:05 +00002411static void do_info_mtree(Monitor *mon)
2412{
2413 mtree_info((fprintf_function)monitor_printf, mon);
2414}
2415
aliguori030ea372009-04-21 22:30:47 +00002416static void do_info_numa(Monitor *mon)
2417{
aliguorib28b6232009-04-22 20:20:29 +00002418 int i;
aliguori030ea372009-04-21 22:30:47 +00002419 CPUState *env;
2420
2421 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2422 for (i = 0; i < nb_numa_nodes; i++) {
2423 monitor_printf(mon, "node %d cpus:", i);
2424 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2425 if (env->numa_node == i) {
2426 monitor_printf(mon, " %d", env->cpu_index);
2427 }
2428 }
2429 monitor_printf(mon, "\n");
2430 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2431 node_mem[i] >> 20);
2432 }
2433}
2434
bellard5f1ce942006-02-08 22:40:15 +00002435#ifdef CONFIG_PROFILER
2436
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02002437int64_t qemu_time;
2438int64_t dev_time;
2439
aliguori376253e2009-03-05 23:01:23 +00002440static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002441{
2442 int64_t total;
2443 total = qemu_time;
2444 if (total == 0)
2445 total = 1;
aliguori376253e2009-03-05 23:01:23 +00002446 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002447 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00002448 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002449 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00002450 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002451 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002452}
2453#else
aliguori376253e2009-03-05 23:01:23 +00002454static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002455{
aliguori376253e2009-03-05 23:01:23 +00002456 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00002457}
2458#endif
2459
bellardec36b692006-07-16 18:57:03 +00002460/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002461static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00002462
aliguori376253e2009-03-05 23:01:23 +00002463static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00002464{
2465 int i;
2466 CaptureState *s;
2467
2468 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00002469 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00002470 s->ops.info (s->opaque);
2471 }
2472}
2473
Blue Swirl23130862009-06-06 08:22:04 +00002474#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002475static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002476{
2477 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002478 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00002479 CaptureState *s;
2480
2481 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2482 if (i == n) {
2483 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002484 QLIST_REMOVE (s, entries);
Anthony Liguori7267c092011-08-20 22:09:37 -05002485 g_free (s);
bellardec36b692006-07-16 18:57:03 +00002486 return;
2487 }
2488 }
2489}
2490
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002491static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002492{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002493 const char *path = qdict_get_str(qdict, "path");
2494 int has_freq = qdict_haskey(qdict, "freq");
2495 int freq = qdict_get_try_int(qdict, "freq", -1);
2496 int has_bits = qdict_haskey(qdict, "bits");
2497 int bits = qdict_get_try_int(qdict, "bits", -1);
2498 int has_channels = qdict_haskey(qdict, "nchannels");
2499 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00002500 CaptureState *s;
2501
Anthony Liguori7267c092011-08-20 22:09:37 -05002502 s = g_malloc0 (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002503
2504 freq = has_freq ? freq : 44100;
2505 bits = has_bits ? bits : 16;
2506 nchannels = has_channels ? nchannels : 2;
2507
2508 if (wav_start_capture (s, path, freq, bits, nchannels)) {
Isaku Yamahatad00b2612011-01-21 19:53:55 +09002509 monitor_printf(mon, "Failed to add wave capture\n");
Anthony Liguori7267c092011-08-20 22:09:37 -05002510 g_free (s);
Isaku Yamahatad00b2612011-01-21 19:53:55 +09002511 return;
bellardec36b692006-07-16 18:57:03 +00002512 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002513 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002514}
2515#endif
2516
aurel32dc1c0b72008-04-27 23:52:12 +00002517#if defined(TARGET_I386)
Luiz Capitulinoe9b4b432011-04-29 12:11:50 -03002518static int do_inject_nmi(Monitor *mon, const QDict *qdict, QObject **ret_data)
Lai Jiangshana4046662011-03-07 17:05:15 +08002519{
2520 CPUState *env;
2521
2522 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2523 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2524 }
2525
2526 return 0;
2527}
2528#else
Luiz Capitulinoe9b4b432011-04-29 12:11:50 -03002529static int do_inject_nmi(Monitor *mon, const QDict *qdict, QObject **ret_data)
Lai Jiangshana4046662011-03-07 17:05:15 +08002530{
2531 qerror_report(QERR_UNSUPPORTED);
2532 return -1;
2533}
aurel32dc1c0b72008-04-27 23:52:12 +00002534#endif
2535
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002536static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002537{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002538 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002539
aliguori76655d62009-03-06 20:27:37 +00002540 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002541 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002542 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002543 return acl;
2544}
aliguori76655d62009-03-06 20:27:37 +00002545
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002546static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002547{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002548 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002549 qemu_acl *acl = find_acl(mon, aclname);
2550 qemu_acl_entry *entry;
2551 int i = 0;
2552
2553 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002554 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002555 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002556 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002557 i++;
2558 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002559 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002560 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002561 }
2562}
2563
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002564static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002565{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002566 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002567 qemu_acl *acl = find_acl(mon, aclname);
2568
2569 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002570 qemu_acl_reset(acl);
2571 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002572 }
2573}
aliguori76655d62009-03-06 20:27:37 +00002574
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002575static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002576{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002577 const char *aclname = qdict_get_str(qdict, "aclname");
2578 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002579 qemu_acl *acl = find_acl(mon, aclname);
2580
2581 if (acl) {
2582 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002583 acl->defaultDeny = 0;
2584 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002585 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002586 acl->defaultDeny = 1;
2587 monitor_printf(mon, "acl: policy set to 'deny'\n");
2588 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002589 monitor_printf(mon, "acl: unknown policy '%s', "
2590 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002591 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002592 }
2593}
aliguori76655d62009-03-06 20:27:37 +00002594
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002595static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002596{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002597 const char *aclname = qdict_get_str(qdict, "aclname");
2598 const char *match = qdict_get_str(qdict, "match");
2599 const char *policy = qdict_get_str(qdict, "policy");
2600 int has_index = qdict_haskey(qdict, "index");
2601 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002602 qemu_acl *acl = find_acl(mon, aclname);
2603 int deny, ret;
2604
2605 if (acl) {
2606 if (strcmp(policy, "allow") == 0) {
2607 deny = 0;
2608 } else if (strcmp(policy, "deny") == 0) {
2609 deny = 1;
2610 } else {
2611 monitor_printf(mon, "acl: unknown policy '%s', "
2612 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002613 return;
2614 }
aliguori28a76be2009-03-06 20:27:40 +00002615 if (has_index)
2616 ret = qemu_acl_insert(acl, deny, match, index);
2617 else
2618 ret = qemu_acl_append(acl, deny, match);
2619 if (ret < 0)
2620 monitor_printf(mon, "acl: unable to add acl entry\n");
2621 else
2622 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002623 }
2624}
aliguori76655d62009-03-06 20:27:37 +00002625
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002626static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002627{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002628 const char *aclname = qdict_get_str(qdict, "aclname");
2629 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002630 qemu_acl *acl = find_acl(mon, aclname);
2631 int ret;
aliguori76655d62009-03-06 20:27:37 +00002632
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002633 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002634 ret = qemu_acl_remove(acl, match);
2635 if (ret < 0)
2636 monitor_printf(mon, "acl: no matching acl entry\n");
2637 else
2638 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002639 }
2640}
2641
Huang Ying79c4f6b2009-06-23 10:05:14 +08002642#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002643static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002644{
2645 CPUState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002646 int cpu_index = qdict_get_int(qdict, "cpu_index");
2647 int bank = qdict_get_int(qdict, "bank");
2648 uint64_t status = qdict_get_int(qdict, "status");
2649 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2650 uint64_t addr = qdict_get_int(qdict, "addr");
2651 uint64_t misc = qdict_get_int(qdict, "misc");
Jan Kiszka747461c2011-03-02 08:56:10 +01002652 int flags = MCE_INJECT_UNCOND_AO;
Huang Ying79c4f6b2009-06-23 10:05:14 +08002653
Jan Kiszka747461c2011-03-02 08:56:10 +01002654 if (qdict_get_try_bool(qdict, "broadcast", 0)) {
2655 flags |= MCE_INJECT_BROADCAST;
2656 }
Jin Dongming31ce5e02010-12-10 17:21:02 +09002657 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu) {
Jan Kiszka316378e2011-03-02 08:56:09 +01002658 if (cenv->cpu_index == cpu_index) {
2659 cpu_x86_inject_mce(mon, cenv, bank, status, mcg_status, addr, misc,
Jan Kiszka747461c2011-03-02 08:56:10 +01002660 flags);
Huang Ying79c4f6b2009-06-23 10:05:14 +08002661 break;
2662 }
Jin Dongming31ce5e02010-12-10 17:21:02 +09002663 }
Huang Ying79c4f6b2009-06-23 10:05:14 +08002664}
2665#endif
2666
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002667static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002668{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002669 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002670 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002671 int fd;
2672
Anthony Liguori74c0d6f2011-08-15 11:17:39 -05002673 fd = qemu_chr_fe_get_msgfd(mon->chr);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002674 if (fd == -1) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002675 qerror_report(QERR_FD_NOT_SUPPLIED);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002676 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002677 }
2678
2679 if (qemu_isdigit(fdname[0])) {
Markus Armbrustere17ba872010-03-25 17:22:36 +01002680 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2681 "a name not starting with a digit");
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002682 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002683 }
2684
Blue Swirl72cf2d42009-09-12 07:36:22 +00002685 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002686 if (strcmp(monfd->name, fdname) != 0) {
2687 continue;
2688 }
2689
2690 close(monfd->fd);
2691 monfd->fd = fd;
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002692 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002693 }
2694
Anthony Liguori7267c092011-08-20 22:09:37 -05002695 monfd = g_malloc0(sizeof(mon_fd_t));
2696 monfd->name = g_strdup(fdname);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002697 monfd->fd = fd;
2698
Blue Swirl72cf2d42009-09-12 07:36:22 +00002699 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002700 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002701}
2702
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002703static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002704{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002705 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002706 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002707
Blue Swirl72cf2d42009-09-12 07:36:22 +00002708 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002709 if (strcmp(monfd->name, fdname) != 0) {
2710 continue;
2711 }
2712
Blue Swirl72cf2d42009-09-12 07:36:22 +00002713 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002714 close(monfd->fd);
Anthony Liguori7267c092011-08-20 22:09:37 -05002715 g_free(monfd->name);
2716 g_free(monfd);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002717 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002718 }
2719
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002720 qerror_report(QERR_FD_NOT_FOUND, fdname);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002721 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002722}
2723
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002724static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002725{
Luiz Capitulino13548692011-07-29 15:36:43 -03002726 int saved_vm_running = runstate_is_running();
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002727 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002728
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002729 vm_stop(RUN_STATE_RESTORE_VM);
Juan Quintelac8d41b22009-08-20 19:42:21 +02002730
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002731 if (load_vmstate(name) == 0 && saved_vm_running) {
Juan Quintelac8d41b22009-08-20 19:42:21 +02002732 vm_start();
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002733 }
Juan Quintelac8d41b22009-08-20 19:42:21 +02002734}
2735
Mark McLoughlin7768e042009-07-22 09:11:41 +01002736int monitor_get_fd(Monitor *mon, const char *fdname)
2737{
Anthony Liguoric227f092009-10-01 16:12:16 -05002738 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002739
Blue Swirl72cf2d42009-09-12 07:36:22 +00002740 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002741 int fd;
2742
2743 if (strcmp(monfd->name, fdname) != 0) {
2744 continue;
2745 }
2746
2747 fd = monfd->fd;
2748
2749 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002750 QLIST_REMOVE(monfd, next);
Anthony Liguori7267c092011-08-20 22:09:37 -05002751 g_free(monfd->name);
2752 g_free(monfd);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002753
2754 return fd;
2755 }
2756
2757 return -1;
2758}
2759
Anthony Liguoric227f092009-10-01 16:12:16 -05002760static const mon_cmd_t mon_cmds[] = {
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002761#include "hmp-commands.h"
ths5fafdf22007-09-16 21:08:06 +00002762 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002763};
2764
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002765/* Please update hmp-commands.hx when adding or changing commands */
Anthony Liguoric227f092009-10-01 16:12:16 -05002766static const mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002767 {
2768 .name = "version",
2769 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002770 .params = "",
2771 .help = "show the version of QEMU",
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03002772 .mhandler.info = hmp_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002773 },
2774 {
2775 .name = "network",
2776 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002777 .params = "",
2778 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002779 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002780 },
2781 {
2782 .name = "chardev",
2783 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002784 .params = "",
2785 .help = "show the character devices",
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03002786 .mhandler.info = hmp_info_chardev,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002787 },
2788 {
2789 .name = "block",
2790 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002791 .params = "",
2792 .help = "show the block devices",
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002793 .user_print = bdrv_info_print,
2794 .mhandler.info_new = bdrv_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002795 },
2796 {
2797 .name = "blockstats",
2798 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002799 .params = "",
2800 .help = "show block device statistics",
Luiz Capitulino218a5362009-12-10 17:16:07 -02002801 .user_print = bdrv_stats_print,
2802 .mhandler.info_new = bdrv_info_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002803 },
2804 {
2805 .name = "registers",
2806 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002807 .params = "",
2808 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002809 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002810 },
2811 {
2812 .name = "cpus",
2813 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002814 .params = "",
2815 .help = "show infos for each CPU",
Luiz Capitulino8f3cec02009-10-07 13:42:04 -03002816 .user_print = monitor_print_cpus,
2817 .mhandler.info_new = do_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002818 },
2819 {
2820 .name = "history",
2821 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002822 .params = "",
2823 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002824 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002825 },
2826 {
2827 .name = "irq",
2828 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002829 .params = "",
2830 .help = "show the interrupts statistics (if available)",
Luiz Capitulino910df892009-10-07 13:41:51 -03002831 .mhandler.info = irq_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002832 },
2833 {
2834 .name = "pic",
2835 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002836 .params = "",
2837 .help = "show i8259 (PIC) state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002838 .mhandler.info = pic_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002839 },
2840 {
2841 .name = "pci",
2842 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002843 .params = "",
2844 .help = "show PCI info",
Luiz Capitulino163c8a52010-01-21 19:15:40 -02002845 .user_print = do_pci_info_print,
2846 .mhandler.info_new = do_pci_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002847 },
Blue Swirld41160a2010-12-19 13:42:56 +00002848#if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002849 {
2850 .name = "tlb",
2851 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002852 .params = "",
2853 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002854 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002855 },
aurel327c664e22009-03-03 06:12:22 +00002856#endif
2857#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002858 {
2859 .name = "mem",
2860 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002861 .params = "",
2862 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002863 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002864 },
bellardb86bda52004-09-18 19:32:46 +00002865#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002866 {
Blue Swirl314e2982011-09-11 20:22:05 +00002867 .name = "mtree",
2868 .args_type = "",
2869 .params = "",
2870 .help = "show memory tree",
2871 .mhandler.info = do_info_mtree,
2872 },
2873 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002874 .name = "jit",
2875 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002876 .params = "",
2877 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002878 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002879 },
2880 {
2881 .name = "kvm",
2882 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002883 .params = "",
2884 .help = "show KVM information",
Luiz Capitulino292a2602011-09-12 15:10:53 -03002885 .mhandler.info = hmp_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002886 },
2887 {
2888 .name = "numa",
2889 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002890 .params = "",
2891 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002892 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002893 },
2894 {
2895 .name = "usb",
2896 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002897 .params = "",
2898 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002899 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002900 },
2901 {
2902 .name = "usbhost",
2903 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002904 .params = "",
2905 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002906 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002907 },
2908 {
2909 .name = "profile",
2910 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002911 .params = "",
2912 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002913 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002914 },
2915 {
2916 .name = "capture",
2917 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002918 .params = "",
2919 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002920 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002921 },
2922 {
2923 .name = "snapshots",
2924 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002925 .params = "",
2926 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002927 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002928 },
2929 {
2930 .name = "status",
2931 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002932 .params = "",
2933 .help = "show the current VM status (running|paused)",
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -03002934 .mhandler.info = hmp_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002935 },
2936 {
2937 .name = "pcmcia",
2938 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002939 .params = "",
2940 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002941 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002942 },
2943 {
2944 .name = "mice",
2945 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002946 .params = "",
2947 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe78c48e2009-12-10 17:16:04 -02002948 .user_print = do_info_mice_print,
2949 .mhandler.info_new = do_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002950 },
2951 {
2952 .name = "vnc",
2953 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002954 .params = "",
2955 .help = "show the vnc server status",
Luiz Capitulinod96fd292009-12-10 17:16:10 -02002956 .user_print = do_info_vnc_print,
2957 .mhandler.info_new = do_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002958 },
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002959#if defined(CONFIG_SPICE)
2960 {
2961 .name = "spice",
2962 .args_type = "",
2963 .params = "",
2964 .help = "show the spice server status",
2965 .user_print = do_info_spice_print,
2966 .mhandler.info_new = do_info_spice,
2967 },
2968#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002969 {
2970 .name = "name",
2971 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002972 .params = "",
2973 .help = "show the current VM name",
Anthony Liguori48a32be2011-09-02 12:34:48 -05002974 .mhandler.info = hmp_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002975 },
2976 {
2977 .name = "uuid",
2978 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002979 .params = "",
2980 .help = "show the current VM UUID",
Luiz Capitulinoefab7672011-09-13 17:16:25 -03002981 .mhandler.info = hmp_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002982 },
j_mayer76a66252007-03-07 08:32:30 +00002983#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002984 {
2985 .name = "cpustats",
2986 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002987 .params = "",
2988 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002989 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002990 },
j_mayer76a66252007-03-07 08:32:30 +00002991#endif
blueswir131a60e22007-10-26 18:42:59 +00002992#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002993 {
2994 .name = "usernet",
2995 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002996 .params = "",
2997 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002998 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002999 },
blueswir131a60e22007-10-26 18:42:59 +00003000#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003001 {
3002 .name = "migrate",
3003 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003004 .params = "",
3005 .help = "show migration status",
Luiz Capitulinoc86a6682009-12-10 17:16:05 -02003006 .user_print = do_info_migrate_print,
3007 .mhandler.info_new = do_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003008 },
3009 {
3010 .name = "balloon",
3011 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003012 .params = "",
3013 .help = "show balloon information",
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03003014 .user_print = monitor_print_balloon,
Adam Litke625a5be2010-01-26 14:17:35 -06003015 .mhandler.info_async = do_info_balloon,
Jan Kiszka8ac470c2010-06-16 00:38:39 +02003016 .flags = MONITOR_CMD_ASYNC,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003017 },
3018 {
3019 .name = "qtree",
3020 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003021 .params = "",
3022 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03003023 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003024 },
3025 {
3026 .name = "qdm",
3027 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003028 .params = "",
3029 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03003030 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003031 },
3032 {
3033 .name = "roms",
3034 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003035 .params = "",
3036 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03003037 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003038 },
Lluís6d8a7642011-08-31 20:30:43 +02003039#if defined(CONFIG_TRACE_SIMPLE)
Prerna Saxena22890ab2010-06-24 17:04:53 +05303040 {
3041 .name = "trace",
3042 .args_type = "",
3043 .params = "",
3044 .help = "show current contents of trace buffer",
3045 .mhandler.info = do_info_trace,
3046 },
Lluís31965ae2011-08-31 20:31:24 +02003047#endif
Prerna Saxena22890ab2010-06-24 17:04:53 +05303048 {
3049 .name = "trace-events",
3050 .args_type = "",
3051 .params = "",
3052 .help = "show available trace-events & their state",
Lluísfc764102011-08-31 20:31:18 +02003053 .mhandler.info = do_trace_print_events,
Prerna Saxena22890ab2010-06-24 17:04:53 +05303054 },
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03003055 {
3056 .name = NULL,
3057 },
bellard9dc39cb2004-03-14 21:38:27 +00003058};
3059
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003060static const mon_cmd_t qmp_cmds[] = {
Anthony Liguorie3193602011-09-02 12:34:47 -05003061#include "qmp-commands-old.h"
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003062 { /* NULL */ },
3063};
3064
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003065static const mon_cmd_t qmp_query_cmds[] = {
3066 {
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003067 .name = "commands",
3068 .args_type = "",
3069 .params = "",
3070 .help = "list QMP available commands",
3071 .user_print = monitor_user_noop,
3072 .mhandler.info_new = do_info_commands,
3073 },
3074 {
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003075 .name = "block",
3076 .args_type = "",
3077 .params = "",
3078 .help = "show the block devices",
3079 .user_print = bdrv_info_print,
3080 .mhandler.info_new = bdrv_info,
3081 },
3082 {
3083 .name = "blockstats",
3084 .args_type = "",
3085 .params = "",
3086 .help = "show block device statistics",
3087 .user_print = bdrv_stats_print,
3088 .mhandler.info_new = bdrv_info_stats,
3089 },
3090 {
3091 .name = "cpus",
3092 .args_type = "",
3093 .params = "",
3094 .help = "show infos for each CPU",
3095 .user_print = monitor_print_cpus,
3096 .mhandler.info_new = do_info_cpus,
3097 },
3098 {
3099 .name = "pci",
3100 .args_type = "",
3101 .params = "",
3102 .help = "show PCI info",
3103 .user_print = do_pci_info_print,
3104 .mhandler.info_new = do_pci_info,
3105 },
3106 {
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003107 .name = "mice",
3108 .args_type = "",
3109 .params = "",
3110 .help = "show which guest mouse is receiving events",
3111 .user_print = do_info_mice_print,
3112 .mhandler.info_new = do_info_mice,
3113 },
3114 {
3115 .name = "vnc",
3116 .args_type = "",
3117 .params = "",
3118 .help = "show the vnc server status",
3119 .user_print = do_info_vnc_print,
3120 .mhandler.info_new = do_info_vnc,
3121 },
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01003122#if defined(CONFIG_SPICE)
3123 {
3124 .name = "spice",
3125 .args_type = "",
3126 .params = "",
3127 .help = "show the spice server status",
3128 .user_print = do_info_spice_print,
3129 .mhandler.info_new = do_info_spice,
3130 },
3131#endif
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003132 {
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003133 .name = "migrate",
3134 .args_type = "",
3135 .params = "",
3136 .help = "show migration status",
3137 .user_print = do_info_migrate_print,
3138 .mhandler.info_new = do_info_migrate,
3139 },
3140 {
3141 .name = "balloon",
3142 .args_type = "",
3143 .params = "",
3144 .help = "show balloon information",
3145 .user_print = monitor_print_balloon,
3146 .mhandler.info_async = do_info_balloon,
3147 .flags = MONITOR_CMD_ASYNC,
3148 },
3149 { /* NULL */ },
3150};
3151
bellard9307c4c2004-04-04 12:57:25 +00003152/*******************************************************************/
3153
3154static const char *pch;
3155static jmp_buf expr_env;
3156
bellard92a31b12005-02-10 22:00:52 +00003157#define MD_TLONG 0
3158#define MD_I32 1
3159
bellard9307c4c2004-04-04 12:57:25 +00003160typedef struct MonitorDef {
3161 const char *name;
3162 int offset;
blueswir18662d652008-10-02 18:32:44 +00003163 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00003164 int type;
bellard9307c4c2004-04-04 12:57:25 +00003165} MonitorDef;
3166
bellard57206fd2004-04-25 18:54:52 +00003167#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00003168static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00003169{
bellard6a00d602005-11-21 23:25:50 +00003170 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003171 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00003172}
3173#endif
3174
bellarda541f292004-04-12 20:39:29 +00003175#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00003176static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00003177{
bellard6a00d602005-11-21 23:25:50 +00003178 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00003179 unsigned int u;
3180 int i;
3181
3182 u = 0;
3183 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00003184 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00003185
3186 return u;
3187}
3188
blueswir18662d652008-10-02 18:32:44 +00003189static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00003190{
bellard6a00d602005-11-21 23:25:50 +00003191 CPUState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00003192 return env->msr;
bellarda541f292004-04-12 20:39:29 +00003193}
3194
blueswir18662d652008-10-02 18:32:44 +00003195static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00003196{
bellard6a00d602005-11-21 23:25:50 +00003197 CPUState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00003198 return env->xer;
bellarda541f292004-04-12 20:39:29 +00003199}
bellard9fddaa02004-05-21 12:59:32 +00003200
blueswir18662d652008-10-02 18:32:44 +00003201static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00003202{
bellard6a00d602005-11-21 23:25:50 +00003203 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003204 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00003205}
3206
blueswir18662d652008-10-02 18:32:44 +00003207static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00003208{
bellard6a00d602005-11-21 23:25:50 +00003209 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003210 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00003211}
3212
blueswir18662d652008-10-02 18:32:44 +00003213static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00003214{
bellard6a00d602005-11-21 23:25:50 +00003215 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003216 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00003217}
bellarda541f292004-04-12 20:39:29 +00003218#endif
3219
bellarde95c8d52004-09-30 22:22:08 +00003220#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00003221#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00003222static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00003223{
bellard6a00d602005-11-21 23:25:50 +00003224 CPUState *env = mon_get_cpu();
Blue Swirl5a834bb2010-05-09 20:19:04 +00003225
3226 return cpu_get_psr(env);
bellarde95c8d52004-09-30 22:22:08 +00003227}
bellard7b936c02005-10-30 17:05:13 +00003228#endif
bellarde95c8d52004-09-30 22:22:08 +00003229
blueswir18662d652008-10-02 18:32:44 +00003230static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00003231{
bellard6a00d602005-11-21 23:25:50 +00003232 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003233 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00003234}
3235#endif
3236
blueswir18662d652008-10-02 18:32:44 +00003237static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00003238#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00003239
3240#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00003241 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00003242 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00003243 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00003244
bellard9307c4c2004-04-04 12:57:25 +00003245 { "eax", offsetof(CPUState, regs[0]) },
3246 { "ecx", offsetof(CPUState, regs[1]) },
3247 { "edx", offsetof(CPUState, regs[2]) },
3248 { "ebx", offsetof(CPUState, regs[3]) },
3249 { "esp|sp", offsetof(CPUState, regs[4]) },
3250 { "ebp|fp", offsetof(CPUState, regs[5]) },
3251 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00003252 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00003253#ifdef TARGET_X86_64
3254 { "r8", offsetof(CPUState, regs[8]) },
3255 { "r9", offsetof(CPUState, regs[9]) },
3256 { "r10", offsetof(CPUState, regs[10]) },
3257 { "r11", offsetof(CPUState, regs[11]) },
3258 { "r12", offsetof(CPUState, regs[12]) },
3259 { "r13", offsetof(CPUState, regs[13]) },
3260 { "r14", offsetof(CPUState, regs[14]) },
3261 { "r15", offsetof(CPUState, regs[15]) },
3262#endif
bellard9307c4c2004-04-04 12:57:25 +00003263 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00003264 { "eip", offsetof(CPUState, eip) },
3265 SEG("cs", R_CS)
3266 SEG("ds", R_DS)
3267 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00003268 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00003269 SEG("fs", R_FS)
3270 SEG("gs", R_GS)
3271 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00003272#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00003273 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00003274 { "r0", offsetof(CPUState, gpr[0]) },
3275 { "r1", offsetof(CPUState, gpr[1]) },
3276 { "r2", offsetof(CPUState, gpr[2]) },
3277 { "r3", offsetof(CPUState, gpr[3]) },
3278 { "r4", offsetof(CPUState, gpr[4]) },
3279 { "r5", offsetof(CPUState, gpr[5]) },
3280 { "r6", offsetof(CPUState, gpr[6]) },
3281 { "r7", offsetof(CPUState, gpr[7]) },
3282 { "r8", offsetof(CPUState, gpr[8]) },
3283 { "r9", offsetof(CPUState, gpr[9]) },
3284 { "r10", offsetof(CPUState, gpr[10]) },
3285 { "r11", offsetof(CPUState, gpr[11]) },
3286 { "r12", offsetof(CPUState, gpr[12]) },
3287 { "r13", offsetof(CPUState, gpr[13]) },
3288 { "r14", offsetof(CPUState, gpr[14]) },
3289 { "r15", offsetof(CPUState, gpr[15]) },
3290 { "r16", offsetof(CPUState, gpr[16]) },
3291 { "r17", offsetof(CPUState, gpr[17]) },
3292 { "r18", offsetof(CPUState, gpr[18]) },
3293 { "r19", offsetof(CPUState, gpr[19]) },
3294 { "r20", offsetof(CPUState, gpr[20]) },
3295 { "r21", offsetof(CPUState, gpr[21]) },
3296 { "r22", offsetof(CPUState, gpr[22]) },
3297 { "r23", offsetof(CPUState, gpr[23]) },
3298 { "r24", offsetof(CPUState, gpr[24]) },
3299 { "r25", offsetof(CPUState, gpr[25]) },
3300 { "r26", offsetof(CPUState, gpr[26]) },
3301 { "r27", offsetof(CPUState, gpr[27]) },
3302 { "r28", offsetof(CPUState, gpr[28]) },
3303 { "r29", offsetof(CPUState, gpr[29]) },
3304 { "r30", offsetof(CPUState, gpr[30]) },
3305 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00003306 /* Floating point registers */
3307 { "f0", offsetof(CPUState, fpr[0]) },
3308 { "f1", offsetof(CPUState, fpr[1]) },
3309 { "f2", offsetof(CPUState, fpr[2]) },
3310 { "f3", offsetof(CPUState, fpr[3]) },
3311 { "f4", offsetof(CPUState, fpr[4]) },
3312 { "f5", offsetof(CPUState, fpr[5]) },
3313 { "f6", offsetof(CPUState, fpr[6]) },
3314 { "f7", offsetof(CPUState, fpr[7]) },
3315 { "f8", offsetof(CPUState, fpr[8]) },
3316 { "f9", offsetof(CPUState, fpr[9]) },
3317 { "f10", offsetof(CPUState, fpr[10]) },
3318 { "f11", offsetof(CPUState, fpr[11]) },
3319 { "f12", offsetof(CPUState, fpr[12]) },
3320 { "f13", offsetof(CPUState, fpr[13]) },
3321 { "f14", offsetof(CPUState, fpr[14]) },
3322 { "f15", offsetof(CPUState, fpr[15]) },
3323 { "f16", offsetof(CPUState, fpr[16]) },
3324 { "f17", offsetof(CPUState, fpr[17]) },
3325 { "f18", offsetof(CPUState, fpr[18]) },
3326 { "f19", offsetof(CPUState, fpr[19]) },
3327 { "f20", offsetof(CPUState, fpr[20]) },
3328 { "f21", offsetof(CPUState, fpr[21]) },
3329 { "f22", offsetof(CPUState, fpr[22]) },
3330 { "f23", offsetof(CPUState, fpr[23]) },
3331 { "f24", offsetof(CPUState, fpr[24]) },
3332 { "f25", offsetof(CPUState, fpr[25]) },
3333 { "f26", offsetof(CPUState, fpr[26]) },
3334 { "f27", offsetof(CPUState, fpr[27]) },
3335 { "f28", offsetof(CPUState, fpr[28]) },
3336 { "f29", offsetof(CPUState, fpr[29]) },
3337 { "f30", offsetof(CPUState, fpr[30]) },
3338 { "f31", offsetof(CPUState, fpr[31]) },
3339 { "fpscr", offsetof(CPUState, fpscr) },
3340 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00003341 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00003342 { "lr", offsetof(CPUState, lr) },
3343 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00003344 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00003345 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00003346 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00003347 { "msr", 0, &monitor_get_msr, },
3348 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00003349 { "tbu", 0, &monitor_get_tbu, },
3350 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00003351#if defined(TARGET_PPC64)
3352 /* Address space register */
3353 { "asr", offsetof(CPUState, asr) },
3354#endif
3355 /* Segment registers */
David Gibsonbb593902011-04-01 15:15:15 +11003356 { "sdr1", offsetof(CPUState, spr[SPR_SDR1]) },
bellarda541f292004-04-12 20:39:29 +00003357 { "sr0", offsetof(CPUState, sr[0]) },
3358 { "sr1", offsetof(CPUState, sr[1]) },
3359 { "sr2", offsetof(CPUState, sr[2]) },
3360 { "sr3", offsetof(CPUState, sr[3]) },
3361 { "sr4", offsetof(CPUState, sr[4]) },
3362 { "sr5", offsetof(CPUState, sr[5]) },
3363 { "sr6", offsetof(CPUState, sr[6]) },
3364 { "sr7", offsetof(CPUState, sr[7]) },
3365 { "sr8", offsetof(CPUState, sr[8]) },
3366 { "sr9", offsetof(CPUState, sr[9]) },
3367 { "sr10", offsetof(CPUState, sr[10]) },
3368 { "sr11", offsetof(CPUState, sr[11]) },
3369 { "sr12", offsetof(CPUState, sr[12]) },
3370 { "sr13", offsetof(CPUState, sr[13]) },
3371 { "sr14", offsetof(CPUState, sr[14]) },
3372 { "sr15", offsetof(CPUState, sr[15]) },
Scott Wood90dc8812011-04-29 17:10:23 -05003373 /* Too lazy to put BATs... */
3374 { "pvr", offsetof(CPUState, spr[SPR_PVR]) },
3375
3376 { "srr0", offsetof(CPUState, spr[SPR_SRR0]) },
3377 { "srr1", offsetof(CPUState, spr[SPR_SRR1]) },
3378 { "sprg0", offsetof(CPUState, spr[SPR_SPRG0]) },
3379 { "sprg1", offsetof(CPUState, spr[SPR_SPRG1]) },
3380 { "sprg2", offsetof(CPUState, spr[SPR_SPRG2]) },
3381 { "sprg3", offsetof(CPUState, spr[SPR_SPRG3]) },
3382 { "sprg4", offsetof(CPUState, spr[SPR_SPRG4]) },
3383 { "sprg5", offsetof(CPUState, spr[SPR_SPRG5]) },
3384 { "sprg6", offsetof(CPUState, spr[SPR_SPRG6]) },
3385 { "sprg7", offsetof(CPUState, spr[SPR_SPRG7]) },
3386 { "pid", offsetof(CPUState, spr[SPR_BOOKE_PID]) },
3387 { "csrr0", offsetof(CPUState, spr[SPR_BOOKE_CSRR0]) },
3388 { "csrr1", offsetof(CPUState, spr[SPR_BOOKE_CSRR1]) },
3389 { "esr", offsetof(CPUState, spr[SPR_BOOKE_ESR]) },
3390 { "dear", offsetof(CPUState, spr[SPR_BOOKE_DEAR]) },
3391 { "mcsr", offsetof(CPUState, spr[SPR_BOOKE_MCSR]) },
3392 { "tsr", offsetof(CPUState, spr[SPR_BOOKE_TSR]) },
3393 { "tcr", offsetof(CPUState, spr[SPR_BOOKE_TCR]) },
3394 { "vrsave", offsetof(CPUState, spr[SPR_VRSAVE]) },
3395 { "pir", offsetof(CPUState, spr[SPR_BOOKE_PIR]) },
3396 { "mcsrr0", offsetof(CPUState, spr[SPR_BOOKE_MCSRR0]) },
3397 { "mcsrr1", offsetof(CPUState, spr[SPR_BOOKE_MCSRR1]) },
3398 { "decar", offsetof(CPUState, spr[SPR_BOOKE_DECAR]) },
3399 { "ivpr", offsetof(CPUState, spr[SPR_BOOKE_IVPR]) },
3400 { "epcr", offsetof(CPUState, spr[SPR_BOOKE_EPCR]) },
3401 { "sprg8", offsetof(CPUState, spr[SPR_BOOKE_SPRG8]) },
3402 { "ivor0", offsetof(CPUState, spr[SPR_BOOKE_IVOR0]) },
3403 { "ivor1", offsetof(CPUState, spr[SPR_BOOKE_IVOR1]) },
3404 { "ivor2", offsetof(CPUState, spr[SPR_BOOKE_IVOR2]) },
3405 { "ivor3", offsetof(CPUState, spr[SPR_BOOKE_IVOR3]) },
3406 { "ivor4", offsetof(CPUState, spr[SPR_BOOKE_IVOR4]) },
3407 { "ivor5", offsetof(CPUState, spr[SPR_BOOKE_IVOR5]) },
3408 { "ivor6", offsetof(CPUState, spr[SPR_BOOKE_IVOR6]) },
3409 { "ivor7", offsetof(CPUState, spr[SPR_BOOKE_IVOR7]) },
3410 { "ivor8", offsetof(CPUState, spr[SPR_BOOKE_IVOR8]) },
3411 { "ivor9", offsetof(CPUState, spr[SPR_BOOKE_IVOR9]) },
3412 { "ivor10", offsetof(CPUState, spr[SPR_BOOKE_IVOR10]) },
3413 { "ivor11", offsetof(CPUState, spr[SPR_BOOKE_IVOR11]) },
3414 { "ivor12", offsetof(CPUState, spr[SPR_BOOKE_IVOR12]) },
3415 { "ivor13", offsetof(CPUState, spr[SPR_BOOKE_IVOR13]) },
3416 { "ivor14", offsetof(CPUState, spr[SPR_BOOKE_IVOR14]) },
3417 { "ivor15", offsetof(CPUState, spr[SPR_BOOKE_IVOR15]) },
3418 { "ivor32", offsetof(CPUState, spr[SPR_BOOKE_IVOR32]) },
3419 { "ivor33", offsetof(CPUState, spr[SPR_BOOKE_IVOR33]) },
3420 { "ivor34", offsetof(CPUState, spr[SPR_BOOKE_IVOR34]) },
3421 { "ivor35", offsetof(CPUState, spr[SPR_BOOKE_IVOR35]) },
3422 { "ivor36", offsetof(CPUState, spr[SPR_BOOKE_IVOR36]) },
3423 { "ivor37", offsetof(CPUState, spr[SPR_BOOKE_IVOR37]) },
3424 { "mas0", offsetof(CPUState, spr[SPR_BOOKE_MAS0]) },
3425 { "mas1", offsetof(CPUState, spr[SPR_BOOKE_MAS1]) },
3426 { "mas2", offsetof(CPUState, spr[SPR_BOOKE_MAS2]) },
3427 { "mas3", offsetof(CPUState, spr[SPR_BOOKE_MAS3]) },
3428 { "mas4", offsetof(CPUState, spr[SPR_BOOKE_MAS4]) },
3429 { "mas6", offsetof(CPUState, spr[SPR_BOOKE_MAS6]) },
3430 { "mas7", offsetof(CPUState, spr[SPR_BOOKE_MAS7]) },
3431 { "mmucfg", offsetof(CPUState, spr[SPR_MMUCFG]) },
3432 { "tlb0cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB0CFG]) },
3433 { "tlb1cfg", offsetof(CPUState, spr[SPR_BOOKE_TLB1CFG]) },
3434 { "epr", offsetof(CPUState, spr[SPR_BOOKE_EPR]) },
3435 { "eplc", offsetof(CPUState, spr[SPR_BOOKE_EPLC]) },
3436 { "epsc", offsetof(CPUState, spr[SPR_BOOKE_EPSC]) },
3437 { "svr", offsetof(CPUState, spr[SPR_E500_SVR]) },
3438 { "mcar", offsetof(CPUState, spr[SPR_Exxx_MCAR]) },
3439 { "pid1", offsetof(CPUState, spr[SPR_BOOKE_PID1]) },
3440 { "pid2", offsetof(CPUState, spr[SPR_BOOKE_PID2]) },
3441 { "hid0", offsetof(CPUState, spr[SPR_HID0]) },
3442
bellarde95c8d52004-09-30 22:22:08 +00003443#elif defined(TARGET_SPARC)
3444 { "g0", offsetof(CPUState, gregs[0]) },
3445 { "g1", offsetof(CPUState, gregs[1]) },
3446 { "g2", offsetof(CPUState, gregs[2]) },
3447 { "g3", offsetof(CPUState, gregs[3]) },
3448 { "g4", offsetof(CPUState, gregs[4]) },
3449 { "g5", offsetof(CPUState, gregs[5]) },
3450 { "g6", offsetof(CPUState, gregs[6]) },
3451 { "g7", offsetof(CPUState, gregs[7]) },
3452 { "o0", 0, monitor_get_reg },
3453 { "o1", 1, monitor_get_reg },
3454 { "o2", 2, monitor_get_reg },
3455 { "o3", 3, monitor_get_reg },
3456 { "o4", 4, monitor_get_reg },
3457 { "o5", 5, monitor_get_reg },
3458 { "o6", 6, monitor_get_reg },
3459 { "o7", 7, monitor_get_reg },
3460 { "l0", 8, monitor_get_reg },
3461 { "l1", 9, monitor_get_reg },
3462 { "l2", 10, monitor_get_reg },
3463 { "l3", 11, monitor_get_reg },
3464 { "l4", 12, monitor_get_reg },
3465 { "l5", 13, monitor_get_reg },
3466 { "l6", 14, monitor_get_reg },
3467 { "l7", 15, monitor_get_reg },
3468 { "i0", 16, monitor_get_reg },
3469 { "i1", 17, monitor_get_reg },
3470 { "i2", 18, monitor_get_reg },
3471 { "i3", 19, monitor_get_reg },
3472 { "i4", 20, monitor_get_reg },
3473 { "i5", 21, monitor_get_reg },
3474 { "i6", 22, monitor_get_reg },
3475 { "i7", 23, monitor_get_reg },
3476 { "pc", offsetof(CPUState, pc) },
3477 { "npc", offsetof(CPUState, npc) },
3478 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00003479#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00003480 { "psr", 0, &monitor_get_psr, },
3481 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00003482#endif
bellarde95c8d52004-09-30 22:22:08 +00003483 { "tbr", offsetof(CPUState, tbr) },
3484 { "fsr", offsetof(CPUState, fsr) },
3485 { "f0", offsetof(CPUState, fpr[0]) },
3486 { "f1", offsetof(CPUState, fpr[1]) },
3487 { "f2", offsetof(CPUState, fpr[2]) },
3488 { "f3", offsetof(CPUState, fpr[3]) },
3489 { "f4", offsetof(CPUState, fpr[4]) },
3490 { "f5", offsetof(CPUState, fpr[5]) },
3491 { "f6", offsetof(CPUState, fpr[6]) },
3492 { "f7", offsetof(CPUState, fpr[7]) },
3493 { "f8", offsetof(CPUState, fpr[8]) },
3494 { "f9", offsetof(CPUState, fpr[9]) },
3495 { "f10", offsetof(CPUState, fpr[10]) },
3496 { "f11", offsetof(CPUState, fpr[11]) },
3497 { "f12", offsetof(CPUState, fpr[12]) },
3498 { "f13", offsetof(CPUState, fpr[13]) },
3499 { "f14", offsetof(CPUState, fpr[14]) },
3500 { "f15", offsetof(CPUState, fpr[15]) },
3501 { "f16", offsetof(CPUState, fpr[16]) },
3502 { "f17", offsetof(CPUState, fpr[17]) },
3503 { "f18", offsetof(CPUState, fpr[18]) },
3504 { "f19", offsetof(CPUState, fpr[19]) },
3505 { "f20", offsetof(CPUState, fpr[20]) },
3506 { "f21", offsetof(CPUState, fpr[21]) },
3507 { "f22", offsetof(CPUState, fpr[22]) },
3508 { "f23", offsetof(CPUState, fpr[23]) },
3509 { "f24", offsetof(CPUState, fpr[24]) },
3510 { "f25", offsetof(CPUState, fpr[25]) },
3511 { "f26", offsetof(CPUState, fpr[26]) },
3512 { "f27", offsetof(CPUState, fpr[27]) },
3513 { "f28", offsetof(CPUState, fpr[28]) },
3514 { "f29", offsetof(CPUState, fpr[29]) },
3515 { "f30", offsetof(CPUState, fpr[30]) },
3516 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00003517#ifdef TARGET_SPARC64
3518 { "f32", offsetof(CPUState, fpr[32]) },
3519 { "f34", offsetof(CPUState, fpr[34]) },
3520 { "f36", offsetof(CPUState, fpr[36]) },
3521 { "f38", offsetof(CPUState, fpr[38]) },
3522 { "f40", offsetof(CPUState, fpr[40]) },
3523 { "f42", offsetof(CPUState, fpr[42]) },
3524 { "f44", offsetof(CPUState, fpr[44]) },
3525 { "f46", offsetof(CPUState, fpr[46]) },
3526 { "f48", offsetof(CPUState, fpr[48]) },
3527 { "f50", offsetof(CPUState, fpr[50]) },
3528 { "f52", offsetof(CPUState, fpr[52]) },
3529 { "f54", offsetof(CPUState, fpr[54]) },
3530 { "f56", offsetof(CPUState, fpr[56]) },
3531 { "f58", offsetof(CPUState, fpr[58]) },
3532 { "f60", offsetof(CPUState, fpr[60]) },
3533 { "f62", offsetof(CPUState, fpr[62]) },
3534 { "asi", offsetof(CPUState, asi) },
3535 { "pstate", offsetof(CPUState, pstate) },
3536 { "cansave", offsetof(CPUState, cansave) },
3537 { "canrestore", offsetof(CPUState, canrestore) },
3538 { "otherwin", offsetof(CPUState, otherwin) },
3539 { "wstate", offsetof(CPUState, wstate) },
3540 { "cleanwin", offsetof(CPUState, cleanwin) },
3541 { "fprs", offsetof(CPUState, fprs) },
3542#endif
bellard9307c4c2004-04-04 12:57:25 +00003543#endif
3544 { NULL },
3545};
3546
aliguori376253e2009-03-05 23:01:23 +00003547static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00003548{
aliguori376253e2009-03-05 23:01:23 +00003549 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00003550 longjmp(expr_env, 1);
3551}
3552
Markus Armbruster09b94182010-01-20 13:07:30 +01003553/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00003554static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00003555{
blueswir18662d652008-10-02 18:32:44 +00003556 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00003557 void *ptr;
3558
bellard9307c4c2004-04-04 12:57:25 +00003559 for(md = monitor_defs; md->name != NULL; md++) {
3560 if (compare_cmd(name, md->name)) {
3561 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003562 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003563 } else {
bellard6a00d602005-11-21 23:25:50 +00003564 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003565 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003566 switch(md->type) {
3567 case MD_I32:
3568 *pval = *(int32_t *)ptr;
3569 break;
3570 case MD_TLONG:
3571 *pval = *(target_long *)ptr;
3572 break;
3573 default:
3574 *pval = 0;
3575 break;
3576 }
bellard9307c4c2004-04-04 12:57:25 +00003577 }
3578 return 0;
3579 }
3580 }
3581 return -1;
3582}
3583
3584static void next(void)
3585{
Blue Swirl660f11b2009-07-31 21:16:51 +00003586 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003587 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003588 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003589 pch++;
3590 }
3591}
3592
aliguori376253e2009-03-05 23:01:23 +00003593static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003594
aliguori376253e2009-03-05 23:01:23 +00003595static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003596{
blueswir1c2efc952007-09-25 17:28:42 +00003597 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003598 char *p;
bellard6a00d602005-11-21 23:25:50 +00003599 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003600
3601 switch(*pch) {
3602 case '+':
3603 next();
aliguori376253e2009-03-05 23:01:23 +00003604 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003605 break;
3606 case '-':
3607 next();
aliguori376253e2009-03-05 23:01:23 +00003608 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003609 break;
3610 case '~':
3611 next();
aliguori376253e2009-03-05 23:01:23 +00003612 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003613 break;
3614 case '(':
3615 next();
aliguori376253e2009-03-05 23:01:23 +00003616 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003617 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003618 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003619 }
3620 next();
3621 break;
bellard81d09122004-07-14 17:21:37 +00003622 case '\'':
3623 pch++;
3624 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003625 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003626 n = *pch;
3627 pch++;
3628 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003629 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003630 next();
3631 break;
bellard9307c4c2004-04-04 12:57:25 +00003632 case '$':
3633 {
3634 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003635 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003636
bellard9307c4c2004-04-04 12:57:25 +00003637 pch++;
3638 q = buf;
3639 while ((*pch >= 'a' && *pch <= 'z') ||
3640 (*pch >= 'A' && *pch <= 'Z') ||
3641 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003642 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003643 if ((q - buf) < sizeof(buf) - 1)
3644 *q++ = *pch;
3645 pch++;
3646 }
blueswir1cd390082008-11-16 13:53:32 +00003647 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003648 pch++;
3649 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003650 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003651 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003652 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003653 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003654 }
3655 break;
3656 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003657 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003658 n = 0;
3659 break;
3660 default:
blueswir17743e582007-09-24 18:39:04 +00003661#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003662 n = strtoull(pch, &p, 0);
3663#else
bellard9307c4c2004-04-04 12:57:25 +00003664 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003665#endif
bellard9307c4c2004-04-04 12:57:25 +00003666 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003667 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003668 }
3669 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003670 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003671 pch++;
3672 break;
3673 }
3674 return n;
3675}
3676
3677
aliguori376253e2009-03-05 23:01:23 +00003678static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003679{
blueswir1c2efc952007-09-25 17:28:42 +00003680 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003681 int op;
ths3b46e622007-09-17 08:09:54 +00003682
aliguori376253e2009-03-05 23:01:23 +00003683 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003684 for(;;) {
3685 op = *pch;
3686 if (op != '*' && op != '/' && op != '%')
3687 break;
3688 next();
aliguori376253e2009-03-05 23:01:23 +00003689 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003690 switch(op) {
3691 default:
3692 case '*':
3693 val *= val2;
3694 break;
3695 case '/':
3696 case '%':
ths5fafdf22007-09-16 21:08:06 +00003697 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003698 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003699 if (op == '/')
3700 val /= val2;
3701 else
3702 val %= val2;
3703 break;
3704 }
3705 }
3706 return val;
3707}
3708
aliguori376253e2009-03-05 23:01:23 +00003709static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003710{
blueswir1c2efc952007-09-25 17:28:42 +00003711 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003712 int op;
bellard9307c4c2004-04-04 12:57:25 +00003713
aliguori376253e2009-03-05 23:01:23 +00003714 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003715 for(;;) {
3716 op = *pch;
3717 if (op != '&' && op != '|' && op != '^')
3718 break;
3719 next();
aliguori376253e2009-03-05 23:01:23 +00003720 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003721 switch(op) {
3722 default:
3723 case '&':
3724 val &= val2;
3725 break;
3726 case '|':
3727 val |= val2;
3728 break;
3729 case '^':
3730 val ^= val2;
3731 break;
3732 }
3733 }
3734 return val;
3735}
3736
aliguori376253e2009-03-05 23:01:23 +00003737static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003738{
blueswir1c2efc952007-09-25 17:28:42 +00003739 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003740 int op;
bellard9307c4c2004-04-04 12:57:25 +00003741
aliguori376253e2009-03-05 23:01:23 +00003742 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003743 for(;;) {
3744 op = *pch;
3745 if (op != '+' && op != '-')
3746 break;
3747 next();
aliguori376253e2009-03-05 23:01:23 +00003748 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003749 if (op == '+')
3750 val += val2;
3751 else
3752 val -= val2;
3753 }
3754 return val;
3755}
3756
aliguori376253e2009-03-05 23:01:23 +00003757static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003758{
3759 pch = *pp;
3760 if (setjmp(expr_env)) {
3761 *pp = pch;
3762 return -1;
3763 }
blueswir1cd390082008-11-16 13:53:32 +00003764 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003765 pch++;
aliguori376253e2009-03-05 23:01:23 +00003766 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003767 *pp = pch;
3768 return 0;
3769}
3770
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003771static int get_double(Monitor *mon, double *pval, const char **pp)
3772{
3773 const char *p = *pp;
3774 char *tailp;
3775 double d;
3776
3777 d = strtod(p, &tailp);
3778 if (tailp == p) {
3779 monitor_printf(mon, "Number expected\n");
3780 return -1;
3781 }
3782 if (d != d || d - d != 0) {
3783 /* NaN or infinity */
3784 monitor_printf(mon, "Bad number\n");
3785 return -1;
3786 }
3787 *pval = d;
3788 *pp = tailp;
3789 return 0;
3790}
3791
bellard9307c4c2004-04-04 12:57:25 +00003792static int get_str(char *buf, int buf_size, const char **pp)
3793{
3794 const char *p;
3795 char *q;
3796 int c;
3797
bellard81d09122004-07-14 17:21:37 +00003798 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003799 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003800 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003801 p++;
3802 if (*p == '\0') {
3803 fail:
bellard81d09122004-07-14 17:21:37 +00003804 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003805 *pp = p;
3806 return -1;
3807 }
bellard9307c4c2004-04-04 12:57:25 +00003808 if (*p == '\"') {
3809 p++;
3810 while (*p != '\0' && *p != '\"') {
3811 if (*p == '\\') {
3812 p++;
3813 c = *p++;
3814 switch(c) {
3815 case 'n':
3816 c = '\n';
3817 break;
3818 case 'r':
3819 c = '\r';
3820 break;
3821 case '\\':
3822 case '\'':
3823 case '\"':
3824 break;
3825 default:
3826 qemu_printf("unsupported escape code: '\\%c'\n", c);
3827 goto fail;
3828 }
3829 if ((q - buf) < buf_size - 1) {
3830 *q++ = c;
3831 }
3832 } else {
3833 if ((q - buf) < buf_size - 1) {
3834 *q++ = *p;
3835 }
3836 p++;
3837 }
3838 }
3839 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003840 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003841 goto fail;
3842 }
3843 p++;
3844 } else {
blueswir1cd390082008-11-16 13:53:32 +00003845 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003846 if ((q - buf) < buf_size - 1) {
3847 *q++ = *p;
3848 }
3849 p++;
3850 }
bellard9307c4c2004-04-04 12:57:25 +00003851 }
bellard81d09122004-07-14 17:21:37 +00003852 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003853 *pp = p;
3854 return 0;
3855}
3856
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003857/*
3858 * Store the command-name in cmdname, and return a pointer to
3859 * the remaining of the command string.
3860 */
3861static const char *get_command_name(const char *cmdline,
3862 char *cmdname, size_t nlen)
3863{
3864 size_t len;
3865 const char *p, *pstart;
3866
3867 p = cmdline;
3868 while (qemu_isspace(*p))
3869 p++;
3870 if (*p == '\0')
3871 return NULL;
3872 pstart = p;
3873 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3874 p++;
3875 len = p - pstart;
3876 if (len > nlen - 1)
3877 len = nlen - 1;
3878 memcpy(cmdname, pstart, len);
3879 cmdname[len] = '\0';
3880 return p;
3881}
3882
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003883/**
3884 * Read key of 'type' into 'key' and return the current
3885 * 'type' pointer.
3886 */
3887static char *key_get_info(const char *type, char **key)
3888{
3889 size_t len;
3890 char *p, *str;
3891
3892 if (*type == ',')
3893 type++;
3894
3895 p = strchr(type, ':');
3896 if (!p) {
3897 *key = NULL;
3898 return NULL;
3899 }
3900 len = p - type;
3901
Anthony Liguori7267c092011-08-20 22:09:37 -05003902 str = g_malloc(len + 1);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003903 memcpy(str, type, len);
3904 str[len] = '\0';
3905
3906 *key = str;
3907 return ++p;
3908}
3909
bellard9307c4c2004-04-04 12:57:25 +00003910static int default_fmt_format = 'x';
3911static int default_fmt_size = 4;
3912
3913#define MAX_ARGS 16
3914
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003915static int is_valid_option(const char *c, const char *typestr)
3916{
3917 char option[3];
3918
3919 option[0] = '-';
3920 option[1] = *c;
3921 option[2] = '\0';
3922
3923 typestr = strstr(typestr, option);
3924 return (typestr != NULL);
3925}
3926
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003927static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3928 const char *cmdname)
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003929{
3930 const mon_cmd_t *cmd;
3931
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003932 for (cmd = disp_table; cmd->name != NULL; cmd++) {
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003933 if (compare_cmd(cmdname, cmd->name)) {
3934 return cmd;
3935 }
3936 }
3937
3938 return NULL;
3939}
3940
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003941static const mon_cmd_t *monitor_find_command(const char *cmdname)
3942{
3943 return search_dispatch_table(mon_cmds, cmdname);
3944}
3945
Luiz Capitulino030db6e2010-09-10 16:03:38 -03003946static const mon_cmd_t *qmp_find_query_cmd(const char *info_item)
3947{
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003948 return search_dispatch_table(qmp_query_cmds, info_item);
Luiz Capitulino030db6e2010-09-10 16:03:38 -03003949}
3950
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003951static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3952{
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003953 return search_dispatch_table(qmp_cmds, cmdname);
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003954}
3955
Anthony Liguoric227f092009-10-01 16:12:16 -05003956static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003957 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003958 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003959{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003960 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003961 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003962 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003963 char cmdname[256];
3964 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003965 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003966
3967#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003968 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003969#endif
ths3b46e622007-09-17 08:09:54 +00003970
bellard9307c4c2004-04-04 12:57:25 +00003971 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003972 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3973 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003974 return NULL;
ths3b46e622007-09-17 08:09:54 +00003975
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003976 cmd = monitor_find_command(cmdname);
3977 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003978 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003979 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003980 }
bellard9307c4c2004-04-04 12:57:25 +00003981
bellard9307c4c2004-04-04 12:57:25 +00003982 /* parse the parameters */
3983 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003984 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003985 typestr = key_get_info(typestr, &key);
3986 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003987 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003988 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003989 typestr++;
3990 switch(c) {
3991 case 'F':
bellard81d09122004-07-14 17:21:37 +00003992 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003993 case 's':
3994 {
3995 int ret;
ths3b46e622007-09-17 08:09:54 +00003996
blueswir1cd390082008-11-16 13:53:32 +00003997 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003998 p++;
3999 if (*typestr == '?') {
4000 typestr++;
4001 if (*p == '\0') {
4002 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03004003 break;
bellard9307c4c2004-04-04 12:57:25 +00004004 }
4005 }
4006 ret = get_str(buf, sizeof(buf), &p);
4007 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00004008 switch(c) {
4009 case 'F':
aliguori376253e2009-03-05 23:01:23 +00004010 monitor_printf(mon, "%s: filename expected\n",
4011 cmdname);
bellard81d09122004-07-14 17:21:37 +00004012 break;
4013 case 'B':
aliguori376253e2009-03-05 23:01:23 +00004014 monitor_printf(mon, "%s: block device name expected\n",
4015 cmdname);
bellard81d09122004-07-14 17:21:37 +00004016 break;
4017 default:
aliguori376253e2009-03-05 23:01:23 +00004018 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00004019 break;
4020 }
bellard9307c4c2004-04-04 12:57:25 +00004021 goto fail;
4022 }
Luiz Capitulino53773582009-08-28 15:27:25 -03004023 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00004024 }
4025 break;
Markus Armbruster361127d2010-02-10 20:24:35 +01004026 case 'O':
4027 {
4028 QemuOptsList *opts_list;
4029 QemuOpts *opts;
4030
4031 opts_list = qemu_find_opts(key);
4032 if (!opts_list || opts_list->desc->name) {
4033 goto bad_type;
4034 }
4035 while (qemu_isspace(*p)) {
4036 p++;
4037 }
4038 if (!*p)
4039 break;
4040 if (get_str(buf, sizeof(buf), &p) < 0) {
4041 goto fail;
4042 }
4043 opts = qemu_opts_parse(opts_list, buf, 1);
4044 if (!opts) {
4045 goto fail;
4046 }
4047 qemu_opts_to_qdict(opts, qdict);
4048 qemu_opts_del(opts);
4049 }
4050 break;
bellard9307c4c2004-04-04 12:57:25 +00004051 case '/':
4052 {
4053 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00004054
blueswir1cd390082008-11-16 13:53:32 +00004055 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00004056 p++;
4057 if (*p == '/') {
4058 /* format found */
4059 p++;
4060 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00004061 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00004062 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00004063 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00004064 count = count * 10 + (*p - '0');
4065 p++;
4066 }
4067 }
4068 size = -1;
4069 format = -1;
4070 for(;;) {
4071 switch(*p) {
4072 case 'o':
4073 case 'd':
4074 case 'u':
4075 case 'x':
4076 case 'i':
4077 case 'c':
4078 format = *p++;
4079 break;
4080 case 'b':
4081 size = 1;
4082 p++;
4083 break;
4084 case 'h':
4085 size = 2;
4086 p++;
4087 break;
4088 case 'w':
4089 size = 4;
4090 p++;
4091 break;
4092 case 'g':
4093 case 'L':
4094 size = 8;
4095 p++;
4096 break;
4097 default:
4098 goto next;
4099 }
4100 }
4101 next:
blueswir1cd390082008-11-16 13:53:32 +00004102 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00004103 monitor_printf(mon, "invalid char in format: '%c'\n",
4104 *p);
bellard9307c4c2004-04-04 12:57:25 +00004105 goto fail;
4106 }
bellard9307c4c2004-04-04 12:57:25 +00004107 if (format < 0)
4108 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00004109 if (format != 'i') {
4110 /* for 'i', not specifying a size gives -1 as size */
4111 if (size < 0)
4112 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00004113 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00004114 }
bellard9307c4c2004-04-04 12:57:25 +00004115 default_fmt_format = format;
4116 } else {
4117 count = 1;
4118 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00004119 if (format != 'i') {
4120 size = default_fmt_size;
4121 } else {
4122 size = -1;
4123 }
bellard9307c4c2004-04-04 12:57:25 +00004124 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03004125 qdict_put(qdict, "count", qint_from_int(count));
4126 qdict_put(qdict, "format", qint_from_int(format));
4127 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00004128 }
4129 break;
4130 case 'i':
bellard92a31b12005-02-10 22:00:52 +00004131 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02004132 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00004133 {
blueswir1c2efc952007-09-25 17:28:42 +00004134 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00004135
blueswir1cd390082008-11-16 13:53:32 +00004136 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00004137 p++;
bellard34405572004-06-08 00:55:58 +00004138 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00004139 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03004140 if (*p == '\0') {
4141 typestr++;
4142 break;
4143 }
bellard34405572004-06-08 00:55:58 +00004144 } else {
4145 if (*p == '.') {
4146 p++;
blueswir1cd390082008-11-16 13:53:32 +00004147 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00004148 p++;
bellard34405572004-06-08 00:55:58 +00004149 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03004150 typestr++;
4151 break;
bellard34405572004-06-08 00:55:58 +00004152 }
4153 }
bellard13224a82006-07-14 22:03:35 +00004154 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00004155 }
aliguori376253e2009-03-05 23:01:23 +00004156 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00004157 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03004158 /* Check if 'i' is greater than 32-bit */
4159 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
4160 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
4161 monitor_printf(mon, "integer is for 32-bit values\n");
4162 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02004163 } else if (c == 'M') {
4164 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03004165 }
Luiz Capitulino53773582009-08-28 15:27:25 -03004166 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00004167 }
4168 break;
Jes Sorensendbc0c672010-10-21 17:15:47 +02004169 case 'o':
4170 {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +01004171 int64_t val;
Jes Sorensendbc0c672010-10-21 17:15:47 +02004172 char *end;
4173
4174 while (qemu_isspace(*p)) {
4175 p++;
4176 }
4177 if (*typestr == '?') {
4178 typestr++;
4179 if (*p == '\0') {
4180 break;
4181 }
4182 }
4183 val = strtosz(p, &end);
4184 if (val < 0) {
4185 monitor_printf(mon, "invalid size\n");
4186 goto fail;
4187 }
4188 qdict_put(qdict, key, qint_from_int(val));
4189 p = end;
4190 }
4191 break;
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01004192 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01004193 {
4194 double val;
4195
4196 while (qemu_isspace(*p))
4197 p++;
4198 if (*typestr == '?') {
4199 typestr++;
4200 if (*p == '\0') {
4201 break;
4202 }
4203 }
4204 if (get_double(mon, &val, &p) < 0) {
4205 goto fail;
4206 }
Jes Sorensen07de3e62010-10-21 17:15:49 +02004207 if (p[0] && p[1] == 's') {
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01004208 switch (*p) {
4209 case 'm':
4210 val /= 1e3; p += 2; break;
4211 case 'u':
4212 val /= 1e6; p += 2; break;
4213 case 'n':
4214 val /= 1e9; p += 2; break;
4215 }
4216 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01004217 if (*p && !qemu_isspace(*p)) {
4218 monitor_printf(mon, "Unknown unit suffix\n");
4219 goto fail;
4220 }
4221 qdict_put(qdict, key, qfloat_from_double(val));
4222 }
4223 break;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01004224 case 'b':
4225 {
4226 const char *beg;
4227 int val;
4228
4229 while (qemu_isspace(*p)) {
4230 p++;
4231 }
4232 beg = p;
4233 while (qemu_isgraph(*p)) {
4234 p++;
4235 }
4236 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
4237 val = 1;
4238 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
4239 val = 0;
4240 } else {
4241 monitor_printf(mon, "Expected 'on' or 'off'\n");
4242 goto fail;
4243 }
4244 qdict_put(qdict, key, qbool_from_int(val));
4245 }
4246 break;
bellard9307c4c2004-04-04 12:57:25 +00004247 case '-':
4248 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02004249 const char *tmp = p;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03004250 int skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00004251 /* option */
ths3b46e622007-09-17 08:09:54 +00004252
bellard9307c4c2004-04-04 12:57:25 +00004253 c = *typestr++;
4254 if (c == '\0')
4255 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00004256 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00004257 p++;
bellard9307c4c2004-04-04 12:57:25 +00004258 if (*p == '-') {
4259 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02004260 if(c != *p) {
4261 if(!is_valid_option(p, typestr)) {
4262
4263 monitor_printf(mon, "%s: unsupported option -%c\n",
4264 cmdname, *p);
4265 goto fail;
4266 } else {
4267 skip_key = 1;
4268 }
bellard9307c4c2004-04-04 12:57:25 +00004269 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02004270 if(skip_key) {
4271 p = tmp;
4272 } else {
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03004273 /* has option */
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02004274 p++;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03004275 qdict_put(qdict, key, qbool_from_int(1));
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02004276 }
bellard9307c4c2004-04-04 12:57:25 +00004277 }
bellard9307c4c2004-04-04 12:57:25 +00004278 }
4279 break;
4280 default:
4281 bad_type:
aliguori376253e2009-03-05 23:01:23 +00004282 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00004283 goto fail;
4284 }
Anthony Liguori7267c092011-08-20 22:09:37 -05004285 g_free(key);
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004286 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00004287 }
4288 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00004289 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00004290 p++;
4291 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00004292 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
4293 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00004294 goto fail;
4295 }
4296
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004297 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02004298
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004299fail:
Anthony Liguori7267c092011-08-20 22:09:37 -05004300 g_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004301 return NULL;
4302}
4303
Markus Armbrusterd6f46832010-02-17 10:52:26 +01004304void monitor_set_error(Monitor *mon, QError *qerror)
4305{
4306 /* report only the first error */
4307 if (!mon->error) {
4308 mon->error = qerror;
4309 } else {
4310 MON_DEBUG("Additional error report at %s:%d\n",
4311 qerror->file, qerror->linenr);
4312 QDECREF(qerror);
4313 }
4314}
4315
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02004316static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
4317{
Luiz Capitulino6d441432010-11-22 16:35:09 -02004318 if (ret && !monitor_has_error(mon)) {
4319 /*
4320 * If it returns failure, it must have passed on error.
4321 *
4322 * Action: Report an internal error to the client if in QMP.
4323 */
4324 qerror_report(QERR_UNDEFINED_ERROR);
4325 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
4326 cmd->name);
4327 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02004328
4329#ifdef CONFIG_DEBUG_MONITOR
Luiz Capitulino6d441432010-11-22 16:35:09 -02004330 if (!ret && monitor_has_error(mon)) {
4331 /*
4332 * If it returns success, it must not have passed an error.
4333 *
4334 * Action: Report the passed error to the client.
4335 */
4336 MON_DEBUG("command '%s' returned success but passed an error\n",
4337 cmd->name);
Markus Armbrustercde0fc72010-03-02 14:56:34 +01004338 }
Luiz Capitulino6d441432010-11-22 16:35:09 -02004339
4340 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
4341 /*
4342 * Handlers should not call Monitor print functions.
4343 *
4344 * Action: Ignore them in QMP.
4345 *
4346 * (XXX: we don't check any 'info' or 'query' command here
4347 * because the user print function _is_ called by do_info(), hence
4348 * we will trigger this check. This problem will go away when we
4349 * make 'query' commands real and kill do_info())
4350 */
4351 MON_DEBUG("command '%s' called print functions %d time(s)\n",
4352 cmd->name, mon_print_count_get(mon));
4353 }
4354#endif
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02004355}
4356
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004357static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004358{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004359 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05004360 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004361
4362 qdict = qdict_new();
4363
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03004364 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03004365 if (!cmd)
4366 goto out;
4367
Luiz Capitulino4903de02010-09-16 11:01:32 -03004368 if (handler_is_async(cmd)) {
Adam Litke940cc302010-01-25 12:18:44 -06004369 user_async_cmd_handler(mon, cmd, qdict);
Luiz Capitulino9e807212010-09-16 10:58:59 -03004370 } else if (handler_is_qobject(cmd)) {
Luiz Capitulinode79ba62010-09-16 11:06:11 -03004371 QObject *data = NULL;
4372
4373 /* XXX: ignores the error code */
4374 cmd->mhandler.cmd_new(mon, qdict, &data);
4375 assert(!monitor_has_error(mon));
4376 if (data) {
4377 cmd->user_print(mon, data);
4378 qobject_decref(data);
4379 }
Luiz Capitulino13917be2009-10-07 13:41:54 -03004380 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03004381 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03004382 }
4383
Luiz Capitulino13917be2009-10-07 13:41:54 -03004384out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03004385 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00004386}
4387
bellard81d09122004-07-14 17:21:37 +00004388static void cmd_completion(const char *name, const char *list)
4389{
4390 const char *p, *pstart;
4391 char cmd[128];
4392 int len;
4393
4394 p = list;
4395 for(;;) {
4396 pstart = p;
4397 p = strchr(p, '|');
4398 if (!p)
4399 p = pstart + strlen(pstart);
4400 len = p - pstart;
4401 if (len > sizeof(cmd) - 2)
4402 len = sizeof(cmd) - 2;
4403 memcpy(cmd, pstart, len);
4404 cmd[len] = '\0';
4405 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00004406 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00004407 }
4408 if (*p == '\0')
4409 break;
4410 p++;
4411 }
4412}
4413
4414static void file_completion(const char *input)
4415{
4416 DIR *ffs;
4417 struct dirent *d;
4418 char path[1024];
4419 char file[1024], file_prefix[1024];
4420 int input_path_len;
4421 const char *p;
4422
ths5fafdf22007-09-16 21:08:06 +00004423 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00004424 if (!p) {
4425 input_path_len = 0;
4426 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00004427 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00004428 } else {
4429 input_path_len = p - input + 1;
4430 memcpy(path, input, input_path_len);
4431 if (input_path_len > sizeof(path) - 1)
4432 input_path_len = sizeof(path) - 1;
4433 path[input_path_len] = '\0';
4434 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4435 }
4436#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00004437 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
4438 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00004439#endif
4440 ffs = opendir(path);
4441 if (!ffs)
4442 return;
4443 for(;;) {
4444 struct stat sb;
4445 d = readdir(ffs);
4446 if (!d)
4447 break;
Kusanagi Kouichi46c7fc12010-10-20 18:00:01 +09004448
4449 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4450 continue;
4451 }
4452
bellard81d09122004-07-14 17:21:37 +00004453 if (strstart(d->d_name, file_prefix, NULL)) {
4454 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00004455 if (input_path_len < sizeof(file))
4456 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4457 d->d_name);
bellard81d09122004-07-14 17:21:37 +00004458 /* stat the file to find out if it's a directory.
4459 * In that case add a slash to speed up typing long paths
4460 */
4461 stat(file, &sb);
4462 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00004463 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00004464 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00004465 }
4466 }
4467 closedir(ffs);
4468}
4469
aliguori51de9762009-03-05 23:00:43 +00004470static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00004471{
aliguori51de9762009-03-05 23:00:43 +00004472 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00004473 const char *input = opaque;
4474
4475 if (input[0] == '\0' ||
4476 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00004477 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00004478 }
4479}
4480
4481/* NOTE: this parser is an approximate form of the real command parser */
4482static void parse_cmdline(const char *cmdline,
4483 int *pnb_args, char **args)
4484{
4485 const char *p;
4486 int nb_args, ret;
4487 char buf[1024];
4488
4489 p = cmdline;
4490 nb_args = 0;
4491 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00004492 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00004493 p++;
4494 if (*p == '\0')
4495 break;
4496 if (nb_args >= MAX_ARGS)
4497 break;
4498 ret = get_str(buf, sizeof(buf), &p);
Anthony Liguori7267c092011-08-20 22:09:37 -05004499 args[nb_args] = g_strdup(buf);
bellard81d09122004-07-14 17:21:37 +00004500 nb_args++;
4501 if (ret < 0)
4502 break;
4503 }
4504 *pnb_args = nb_args;
4505}
4506
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004507static const char *next_arg_type(const char *typestr)
4508{
4509 const char *p = strchr(typestr, ':');
4510 return (p != NULL ? ++p : typestr);
4511}
4512
aliguori4c36ba32009-03-05 23:01:37 +00004513static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00004514{
4515 const char *cmdname;
4516 char *args[MAX_ARGS];
4517 int nb_args, i, len;
4518 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05004519 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00004520 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00004521
4522 parse_cmdline(cmdline, &nb_args, args);
4523#ifdef DEBUG_COMPLETION
4524 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00004525 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00004526 }
4527#endif
4528
4529 /* if the line ends with a space, it means we want to complete the
4530 next arg */
4531 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00004532 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
Jan Kiszka03a63482010-06-16 00:38:33 +02004533 if (nb_args >= MAX_ARGS) {
4534 goto cleanup;
4535 }
Anthony Liguori7267c092011-08-20 22:09:37 -05004536 args[nb_args++] = g_strdup("");
bellard81d09122004-07-14 17:21:37 +00004537 }
4538 if (nb_args <= 1) {
4539 /* command completion */
4540 if (nb_args == 0)
4541 cmdname = "";
4542 else
4543 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00004544 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00004545 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00004546 cmd_completion(cmdname, cmd->name);
4547 }
4548 } else {
4549 /* find the command */
Jan Kiszka03a63482010-06-16 00:38:33 +02004550 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4551 if (compare_cmd(args[0], cmd->name)) {
4552 break;
4553 }
bellard81d09122004-07-14 17:21:37 +00004554 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004555 if (!cmd->name) {
4556 goto cleanup;
4557 }
4558
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004559 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00004560 for(i = 0; i < nb_args - 2; i++) {
4561 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004562 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004563 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004564 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004565 }
4566 }
4567 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00004568 if (*ptype == '-' && ptype[1] != '\0') {
Jan Kiszka3b6dbf22010-06-16 00:38:34 +02004569 ptype = next_arg_type(ptype);
Blue Swirl2a1704a2009-08-23 20:10:28 +00004570 }
bellard81d09122004-07-14 17:21:37 +00004571 switch(*ptype) {
4572 case 'F':
4573 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00004574 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004575 file_completion(str);
4576 break;
4577 case 'B':
4578 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00004579 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004580 bdrv_iterate(block_completion_it, (void *)str);
4581 break;
bellard7fe48482004-10-09 18:08:01 +00004582 case 's':
4583 /* XXX: more generic ? */
4584 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00004585 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00004586 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4587 cmd_completion(str, cmd->name);
4588 }
bellard64866c32006-05-07 18:03:31 +00004589 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00004590 char *sep = strrchr(str, '-');
4591 if (sep)
4592 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00004593 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00004594 for(key = key_defs; key->name != NULL; key++) {
4595 cmd_completion(str, key->name);
4596 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02004597 } else if (!strcmp(cmd->name, "help|?")) {
4598 readline_set_completion_index(cur_mon->rs, strlen(str));
4599 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4600 cmd_completion(str, cmd->name);
4601 }
bellard7fe48482004-10-09 18:08:01 +00004602 }
4603 break;
bellard81d09122004-07-14 17:21:37 +00004604 default:
4605 break;
4606 }
4607 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004608
4609cleanup:
4610 for (i = 0; i < nb_args; i++) {
Anthony Liguori7267c092011-08-20 22:09:37 -05004611 g_free(args[i]);
Jan Kiszka03a63482010-06-16 00:38:33 +02004612 }
bellard81d09122004-07-14 17:21:37 +00004613}
4614
aliguori731b0362009-03-05 23:01:42 +00004615static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004616{
aliguori731b0362009-03-05 23:01:42 +00004617 Monitor *mon = opaque;
4618
Jan Kiszkac62313b2009-12-04 14:05:29 +01004619 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00004620}
4621
Luiz Capitulino09069b12010-02-04 18:10:06 -02004622static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4623{
4624 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4625 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4626}
4627
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004628/*
Luiz Capitulino4af91932010-06-22 11:44:05 -03004629 * Argument validation rules:
4630 *
4631 * 1. The argument must exist in cmd_args qdict
4632 * 2. The argument type must be the expected one
4633 *
4634 * Special case: If the argument doesn't exist in cmd_args and
4635 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4636 * checking is skipped for it.
4637 */
4638static int check_client_args_type(const QDict *client_args,
4639 const QDict *cmd_args, int flags)
4640{
4641 const QDictEntry *ent;
4642
4643 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4644 QObject *obj;
4645 QString *arg_type;
4646 const QObject *client_arg = qdict_entry_value(ent);
4647 const char *client_arg_name = qdict_entry_key(ent);
4648
4649 obj = qdict_get(cmd_args, client_arg_name);
4650 if (!obj) {
4651 if (flags & QMP_ACCEPT_UNKNOWNS) {
4652 /* handler accepts unknowns */
4653 continue;
4654 }
4655 /* client arg doesn't exist */
4656 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4657 return -1;
4658 }
4659
4660 arg_type = qobject_to_qstring(obj);
4661 assert(arg_type != NULL);
4662
4663 /* check if argument's type is correct */
4664 switch (qstring_get_str(arg_type)[0]) {
4665 case 'F':
4666 case 'B':
4667 case 's':
4668 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4669 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4670 "string");
4671 return -1;
4672 }
4673 break;
4674 case 'i':
4675 case 'l':
4676 case 'M':
Jes Sorensendbc0c672010-10-21 17:15:47 +02004677 case 'o':
Luiz Capitulino4af91932010-06-22 11:44:05 -03004678 if (qobject_type(client_arg) != QTYPE_QINT) {
4679 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4680 "int");
4681 return -1;
4682 }
4683 break;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004684 case 'T':
4685 if (qobject_type(client_arg) != QTYPE_QINT &&
4686 qobject_type(client_arg) != QTYPE_QFLOAT) {
4687 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4688 "number");
4689 return -1;
4690 }
4691 break;
4692 case 'b':
4693 case '-':
4694 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4695 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4696 "bool");
4697 return -1;
4698 }
4699 break;
4700 case 'O':
4701 assert(flags & QMP_ACCEPT_UNKNOWNS);
4702 break;
4703 case '/':
4704 case '.':
4705 /*
4706 * These types are not supported by QMP and thus are not
4707 * handled here. Fall through.
4708 */
4709 default:
4710 abort();
4711 }
4712 }
4713
4714 return 0;
4715}
4716
4717/*
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004718 * - Check if the client has passed all mandatory args
4719 * - Set special flags for argument validation
4720 */
4721static int check_mandatory_args(const QDict *cmd_args,
4722 const QDict *client_args, int *flags)
4723{
4724 const QDictEntry *ent;
4725
4726 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4727 const char *cmd_arg_name = qdict_entry_key(ent);
4728 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4729 assert(type != NULL);
4730
4731 if (qstring_get_str(type)[0] == 'O') {
4732 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4733 *flags |= QMP_ACCEPT_UNKNOWNS;
4734 } else if (qstring_get_str(type)[0] != '-' &&
4735 qstring_get_str(type)[1] != '?' &&
4736 !qdict_haskey(client_args, cmd_arg_name)) {
4737 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4738 return -1;
4739 }
4740 }
4741
4742 return 0;
4743}
4744
4745static QDict *qdict_from_args_type(const char *args_type)
4746{
4747 int i;
4748 QDict *qdict;
4749 QString *key, *type, *cur_qs;
4750
4751 assert(args_type != NULL);
4752
4753 qdict = qdict_new();
4754
4755 if (args_type == NULL || args_type[0] == '\0') {
4756 /* no args, empty qdict */
4757 goto out;
4758 }
4759
4760 key = qstring_new();
4761 type = qstring_new();
4762
4763 cur_qs = key;
4764
4765 for (i = 0;; i++) {
4766 switch (args_type[i]) {
4767 case ',':
4768 case '\0':
4769 qdict_put(qdict, qstring_get_str(key), type);
4770 QDECREF(key);
4771 if (args_type[i] == '\0') {
4772 goto out;
4773 }
4774 type = qstring_new(); /* qdict has ref */
4775 cur_qs = key = qstring_new();
4776 break;
4777 case ':':
4778 cur_qs = type;
4779 break;
4780 default:
4781 qstring_append_chr(cur_qs, args_type[i]);
4782 break;
4783 }
4784 }
4785
4786out:
4787 return qdict;
4788}
4789
4790/*
4791 * Client argument checking rules:
4792 *
4793 * 1. Client must provide all mandatory arguments
Luiz Capitulino4af91932010-06-22 11:44:05 -03004794 * 2. Each argument provided by the client must be expected
4795 * 3. Each argument provided by the client must have the type expected
4796 * by the command
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004797 */
4798static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4799{
4800 int flags, err;
4801 QDict *cmd_args;
4802
4803 cmd_args = qdict_from_args_type(cmd->args_type);
4804
4805 flags = 0;
4806 err = check_mandatory_args(cmd_args, client_args, &flags);
4807 if (err) {
4808 goto out;
4809 }
4810
Luiz Capitulino4af91932010-06-22 11:44:05 -03004811 err = check_client_args_type(client_args, cmd_args, flags);
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004812
4813out:
4814 QDECREF(cmd_args);
4815 return err;
4816}
4817
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004818/*
4819 * Input object checking rules
4820 *
4821 * 1. Input object must be a dict
4822 * 2. The "execute" key must exist
4823 * 3. The "execute" key must be a string
4824 * 4. If the "arguments" key exists, it must be a dict
4825 * 5. If the "id" key exists, it can be anything (ie. json-value)
4826 * 6. Any argument not listed above is considered invalid
4827 */
4828static QDict *qmp_check_input_obj(QObject *input_obj)
4829{
4830 const QDictEntry *ent;
4831 int has_exec_key = 0;
4832 QDict *input_dict;
4833
4834 if (qobject_type(input_obj) != QTYPE_QDICT) {
4835 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4836 return NULL;
4837 }
4838
4839 input_dict = qobject_to_qdict(input_obj);
4840
4841 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4842 const char *arg_name = qdict_entry_key(ent);
4843 const QObject *arg_obj = qdict_entry_value(ent);
4844
4845 if (!strcmp(arg_name, "execute")) {
4846 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4847 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4848 "string");
4849 return NULL;
4850 }
4851 has_exec_key = 1;
4852 } else if (!strcmp(arg_name, "arguments")) {
4853 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4854 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4855 "object");
4856 return NULL;
4857 }
4858 } else if (!strcmp(arg_name, "id")) {
4859 /* FIXME: check duplicated IDs for async commands */
4860 } else {
4861 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4862 return NULL;
4863 }
4864 }
4865
4866 if (!has_exec_key) {
4867 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4868 return NULL;
4869 }
4870
4871 return input_dict;
4872}
4873
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004874static void qmp_call_query_cmd(Monitor *mon, const mon_cmd_t *cmd)
4875{
4876 QObject *ret_data = NULL;
4877
Luiz Capitulino4903de02010-09-16 11:01:32 -03004878 if (handler_is_async(cmd)) {
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004879 qmp_async_info_handler(mon, cmd);
4880 if (monitor_has_error(mon)) {
4881 monitor_protocol_emitter(mon, NULL);
4882 }
4883 } else {
4884 cmd->mhandler.info_new(mon, &ret_data);
Luiz Capitulinoc01e6882010-11-22 16:22:47 -02004885 monitor_protocol_emitter(mon, ret_data);
4886 qobject_decref(ret_data);
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004887 }
4888}
4889
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004890static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4891 const QDict *params)
4892{
4893 int ret;
4894 QObject *data = NULL;
4895
4896 mon_print_count_init(mon);
4897
4898 ret = cmd->mhandler.cmd_new(mon, params, &data);
4899 handler_audit(mon, cmd, ret);
4900 monitor_protocol_emitter(mon, data);
4901 qobject_decref(data);
4902}
4903
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004904static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4905{
4906 int err;
4907 QObject *obj;
4908 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004909 const mon_cmd_t *cmd;
4910 Monitor *mon = cur_mon;
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004911 const char *cmd_name, *query_cmd;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004912
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004913 query_cmd = NULL;
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004914 args = input = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004915
4916 obj = json_parser_parse(tokens, NULL);
4917 if (!obj) {
4918 // FIXME: should be triggered in json_parser_parse()
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004919 qerror_report(QERR_JSON_PARSING);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004920 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004921 }
4922
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004923 input = qmp_check_input_obj(obj);
4924 if (!input) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004925 qobject_decref(obj);
4926 goto err_out;
4927 }
4928
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004929 mon->mc->id = qdict_get(input, "id");
4930 qobject_incref(mon->mc->id);
4931
Luiz Capitulino0bbab462010-05-31 17:32:50 -03004932 cmd_name = qdict_get_str(input, "execute");
Luiz Capitulino09069b12010-02-04 18:10:06 -02004933 if (invalid_qmp_mode(mon, cmd_name)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004934 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004935 goto err_out;
Luiz Capitulino09069b12010-02-04 18:10:06 -02004936 }
4937
Anthony Liguorie3193602011-09-02 12:34:47 -05004938 cmd = qmp_find_cmd(cmd_name);
4939 if (!cmd && strstart(cmd_name, "query-", &query_cmd)) {
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004940 cmd = qmp_find_query_cmd(query_cmd);
Luiz Capitulino0fb88582010-09-15 10:56:17 -03004941 }
Luiz Capitulinod1249ea2010-09-13 14:44:27 -03004942 if (!cmd) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004943 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004944 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004945 }
4946
4947 obj = qdict_get(input, "arguments");
4948 if (!obj) {
4949 args = qdict_new();
4950 } else {
4951 args = qobject_to_qdict(obj);
4952 QINCREF(args);
4953 }
4954
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004955 err = qmp_check_client_args(cmd, args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004956 if (err < 0) {
4957 goto err_out;
4958 }
4959
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004960 if (query_cmd) {
4961 qmp_call_query_cmd(mon, cmd);
Luiz Capitulino4903de02010-09-16 11:01:32 -03004962 } else if (handler_is_async(cmd)) {
Luiz Capitulino5af7bba2010-06-22 19:10:46 -03004963 err = qmp_async_cmd_handler(mon, cmd, args);
4964 if (err) {
4965 /* emit the error response */
4966 goto err_out;
4967 }
Adam Litke940cc302010-01-25 12:18:44 -06004968 } else {
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004969 qmp_call_cmd(mon, cmd, args);
Adam Litke940cc302010-01-25 12:18:44 -06004970 }
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004971
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004972 goto out;
4973
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004974err_out:
4975 monitor_protocol_emitter(mon, NULL);
4976out:
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004977 QDECREF(input);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004978 QDECREF(args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004979}
4980
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004981/**
4982 * monitor_control_read(): Read and handle QMP input
4983 */
4984static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4985{
4986 Monitor *old_mon = cur_mon;
4987
4988 cur_mon = opaque;
4989
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004990 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004991
4992 cur_mon = old_mon;
4993}
4994
aliguori731b0362009-03-05 23:01:42 +00004995static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004996{
aliguori731b0362009-03-05 23:01:42 +00004997 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004998 int i;
aliguori376253e2009-03-05 23:01:23 +00004999
aliguori731b0362009-03-05 23:01:42 +00005000 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00005001
aliguoricde76ee2009-03-05 23:01:51 +00005002 if (cur_mon->rs) {
5003 for (i = 0; i < size; i++)
5004 readline_handle_byte(cur_mon->rs, buf[i]);
5005 } else {
5006 if (size == 0 || buf[size - 1] != 0)
5007 monitor_printf(cur_mon, "corrupted command\n");
5008 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02005009 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00005010 }
aliguori731b0362009-03-05 23:01:42 +00005011
5012 cur_mon = old_mon;
5013}
aliguorid8f44602008-10-06 13:52:44 +00005014
aliguori376253e2009-03-05 23:01:23 +00005015static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00005016{
aliguori731b0362009-03-05 23:01:42 +00005017 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02005018 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00005019 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00005020}
5021
aliguoricde76ee2009-03-05 23:01:51 +00005022int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00005023{
aliguoricde76ee2009-03-05 23:01:51 +00005024 if (!mon->rs)
5025 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00005026 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00005027 return 0;
aliguorid8f44602008-10-06 13:52:44 +00005028}
5029
aliguori376253e2009-03-05 23:01:23 +00005030void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00005031{
aliguoricde76ee2009-03-05 23:01:51 +00005032 if (!mon->rs)
5033 return;
aliguori731b0362009-03-05 23:01:42 +00005034 if (--mon->suspend_cnt == 0)
5035 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00005036}
5037
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02005038static QObject *get_qmp_greeting(void)
5039{
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03005040 QObject *ver = NULL;
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02005041
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03005042 qmp_marshal_input_query_version(NULL, NULL, &ver);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02005043 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
5044}
5045
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005046/**
5047 * monitor_control_event(): Print QMP gretting
5048 */
5049static void monitor_control_event(void *opaque, int event)
5050{
Luiz Capitulino47116d12010-02-08 17:01:30 -02005051 QObject *data;
5052 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005053
Luiz Capitulino47116d12010-02-08 17:01:30 -02005054 switch (event) {
5055 case CHR_EVENT_OPENED:
Luiz Capitulino4a7e1192010-02-04 18:10:05 -02005056 mon->mc->command_mode = 0;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02005057 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02005058 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005059 monitor_json_emitter(mon, data);
5060 qobject_decref(data);
Luiz Capitulino47116d12010-02-08 17:01:30 -02005061 break;
5062 case CHR_EVENT_CLOSED:
5063 json_message_parser_destroy(&mon->mc->parser);
5064 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005065 }
5066}
5067
aliguori731b0362009-03-05 23:01:42 +00005068static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00005069{
aliguori376253e2009-03-05 23:01:23 +00005070 Monitor *mon = opaque;
5071
aliguori2724b182009-03-05 23:01:47 +00005072 switch (event) {
5073 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005074 mon->mux_out = 0;
5075 if (mon->reset_seen) {
5076 readline_restart(mon->rs);
5077 monitor_resume(mon);
5078 monitor_flush(mon);
5079 } else {
5080 mon->suspend_cnt = 0;
5081 }
aliguori2724b182009-03-05 23:01:47 +00005082 break;
ths86e94de2007-01-05 22:01:59 +00005083
aliguori2724b182009-03-05 23:01:47 +00005084 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005085 if (mon->reset_seen) {
5086 if (mon->suspend_cnt == 0) {
5087 monitor_printf(mon, "\n");
5088 }
5089 monitor_flush(mon);
5090 monitor_suspend(mon);
5091 } else {
5092 mon->suspend_cnt++;
5093 }
5094 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00005095 break;
5096
Amit Shahb6b8df52009-10-07 18:31:16 +05305097 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00005098 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
5099 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005100 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00005101 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02005102 }
5103 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00005104 break;
5105 }
ths86e94de2007-01-05 22:01:59 +00005106}
5107
aliguori76655d62009-03-06 20:27:37 +00005108
5109/*
5110 * Local variables:
5111 * c-indent-level: 4
5112 * c-basic-offset: 4
5113 * tab-width: 8
5114 * End:
5115 */
5116
aliguori731b0362009-03-05 23:01:42 +00005117void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00005118{
aliguori731b0362009-03-05 23:01:42 +00005119 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00005120 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00005121
5122 if (is_first_init) {
Paolo Bonzini74475452011-03-11 16:47:48 +01005123 key_timer = qemu_new_timer_ns(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00005124 is_first_init = 0;
5125 }
aliguori87127162009-03-05 23:01:29 +00005126
Anthony Liguori7267c092011-08-20 22:09:37 -05005127 mon = g_malloc0(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00005128
aliguori87127162009-03-05 23:01:29 +00005129 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00005130 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00005131 if (flags & MONITOR_USE_READLINE) {
5132 mon->rs = readline_init(mon, monitor_find_completion);
5133 monitor_read_command(mon, 0);
5134 }
aliguori87127162009-03-05 23:01:29 +00005135
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005136 if (monitor_ctrl_mode(mon)) {
Anthony Liguori7267c092011-08-20 22:09:37 -05005137 mon->mc = g_malloc0(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005138 /* Control mode requires special handlers */
5139 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
5140 monitor_control_event, mon);
Anthony Liguori15f31512011-08-15 11:17:35 -05005141 qemu_chr_fe_set_echo(chr, true);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02005142 } else {
5143 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
5144 monitor_event, mon);
5145 }
aliguori87127162009-03-05 23:01:29 +00005146
Blue Swirl72cf2d42009-09-12 07:36:22 +00005147 QLIST_INSERT_HEAD(&mon_list, mon, entry);
Markus Armbruster8631b602010-02-18 11:41:55 +01005148 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
5149 default_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00005150}
5151
aliguori376253e2009-03-05 23:01:23 +00005152static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00005153{
aliguoribb5fc202009-03-05 23:01:15 +00005154 BlockDriverState *bs = opaque;
5155 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00005156
aliguoribb5fc202009-03-05 23:01:15 +00005157 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00005158 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00005159 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00005160 }
aliguori731b0362009-03-05 23:01:42 +00005161 if (mon->password_completion_cb)
5162 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00005163
aliguori731b0362009-03-05 23:01:42 +00005164 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00005165}
aliguoric0f4ce72009-03-05 23:01:01 +00005166
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02005167int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
5168 BlockDriverCompletionFunc *completion_cb,
5169 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00005170{
aliguoricde76ee2009-03-05 23:01:51 +00005171 int err;
5172
aliguoribb5fc202009-03-05 23:01:15 +00005173 if (!bdrv_key_required(bs)) {
5174 if (completion_cb)
5175 completion_cb(opaque, 0);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02005176 return 0;
aliguoribb5fc202009-03-05 23:01:15 +00005177 }
aliguoric0f4ce72009-03-05 23:01:01 +00005178
Luiz Capitulino94171e12009-12-07 21:37:00 +01005179 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01005180 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02005181 return -1;
Luiz Capitulino94171e12009-12-07 21:37:00 +01005182 }
5183
aliguori376253e2009-03-05 23:01:23 +00005184 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
5185 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00005186
aliguori731b0362009-03-05 23:01:42 +00005187 mon->password_completion_cb = completion_cb;
5188 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00005189
aliguoricde76ee2009-03-05 23:01:51 +00005190 err = monitor_read_password(mon, bdrv_password_cb, bs);
5191
5192 if (err && completion_cb)
5193 completion_cb(opaque, err);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02005194
5195 return err;
aliguoric0f4ce72009-03-05 23:01:01 +00005196}