blob: cadf422e3f4f8bc7921ef2eb6fce000cc415d244 [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"
37#include "sysemu.h"
aliguori376253e2009-03-05 23:01:23 +000038#include "monitor.h"
39#include "readline.h"
pbrook87ecb682007-11-17 17:14:51 +000040#include "console.h"
41#include "block.h"
42#include "audio/audio.h"
bellard9307c4c2004-04-04 12:57:25 +000043#include "disas.h"
aliguoridf751fa2008-12-04 20:19:35 +000044#include "balloon.h"
balrogc8256f92008-06-08 22:45:01 +000045#include "qemu-timer.h"
aliguori5bb79102008-10-13 03:12:02 +000046#include "migration.h"
aliguori7ba1e612008-11-05 16:04:33 +000047#include "kvm.h"
aliguori76655d62009-03-06 20:27:37 +000048#include "acl.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030049#include "qint.h"
Luiz Capitulino8f3cec02009-10-07 13:42:04 -030050#include "qlist.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030051#include "qdict.h"
Luiz Capitulino5fa737a2009-11-26 22:59:01 -020052#include "qbool.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030053#include "qstring.h"
Luiz Capitulino8204a912009-11-18 23:05:31 -020054#include "qerror.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"
ths6a5bd302007-12-03 17:05:38 +000059
bellard9dc39cb2004-03-14 21:38:27 +000060//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000061//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000062
bellard9307c4c2004-04-04 12:57:25 +000063/*
64 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000065 *
bellard9307c4c2004-04-04 12:57:25 +000066 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000067 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000068 * 's' string (accept optional quote)
bellard92a31b12005-02-10 22:00:52 +000069 * 'i' 32 bit integer
70 * 'l' target long (32 or 64 bit)
bellard9307c4c2004-04-04 12:57:25 +000071 * '/' optional gdb-like print format (like "/10x")
72 *
Luiz Capitulinofb466602009-08-28 15:27:27 -030073 * '?' optional type (for all types, except '/')
74 * '.' other form of optional type (for 'i' and 'l')
75 * '-' optional parameter (eg. '-f')
bellard9307c4c2004-04-04 12:57:25 +000076 *
77 */
78
Anthony Liguoric227f092009-10-01 16:12:16 -050079typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +000080 const char *name;
bellard9307c4c2004-04-04 12:57:25 +000081 const char *args_type;
bellard9dc39cb2004-03-14 21:38:27 +000082 const char *params;
83 const char *help;
Luiz Capitulinoa2876f52009-10-07 13:41:53 -030084 void (*user_print)(Monitor *mon, const QObject *data);
Luiz Capitulino910df892009-10-07 13:41:51 -030085 union {
86 void (*info)(Monitor *mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -030087 void (*info_new)(Monitor *mon, QObject **ret_data);
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -030088 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -030089 void (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
Luiz Capitulino910df892009-10-07 13:41:51 -030090 } mhandler;
Anthony Liguoric227f092009-10-01 16:12:16 -050091} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +000092
Mark McLoughlinf07918f2009-07-22 09:11:40 +010093/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -050094typedef struct mon_fd_t mon_fd_t;
95struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +010096 char *name;
97 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -050098 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +010099};
100
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200101typedef struct MonitorControl {
102 QObject *id;
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200103 int print_enabled;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200104 JSONMessageParser parser;
105} MonitorControl;
106
aliguori87127162009-03-05 23:01:29 +0000107struct Monitor {
108 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200109 int mux_out;
110 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000111 int flags;
112 int suspend_cnt;
113 uint8_t outbuf[1024];
114 int outbuf_index;
115 ReadLineState *rs;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200116 MonitorControl *mc;
aliguori731b0362009-03-05 23:01:42 +0000117 CPUState *mon_cpu;
118 BlockDriverCompletionFunc *password_completion_cb;
119 void *password_opaque;
Luiz Capitulino8204a912009-11-18 23:05:31 -0200120 QError *error;
Anthony Liguoric227f092009-10-01 16:12:16 -0500121 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000122 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000123};
124
Blue Swirl72cf2d42009-09-12 07:36:22 +0000125static QLIST_HEAD(mon_list, Monitor) mon_list;
bellard7e2515e2004-08-01 21:52:19 +0000126
Anthony Liguoric227f092009-10-01 16:12:16 -0500127static const mon_cmd_t mon_cmds[];
128static const mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000129
aliguori87127162009-03-05 23:01:29 +0000130Monitor *cur_mon = NULL;
aliguori376253e2009-03-05 23:01:23 +0000131
aliguori731b0362009-03-05 23:01:42 +0000132static void monitor_command_cb(Monitor *mon, const char *cmdline,
133 void *opaque);
aliguori83ab7952008-08-19 14:44:22 +0000134
Luiz Capitulino418173c2009-11-26 22:58:51 -0200135/* Return true if in control mode, false otherwise */
136static inline int monitor_ctrl_mode(const Monitor *mon)
137{
138 return (mon->flags & MONITOR_USE_CONTROL);
139}
140
aliguori731b0362009-03-05 23:01:42 +0000141static void monitor_read_command(Monitor *mon, int show_prompt)
142{
Luiz Capitulino183e6e52009-12-14 18:53:23 -0200143 if (!mon->rs)
144 return;
145
aliguori731b0362009-03-05 23:01:42 +0000146 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
147 if (show_prompt)
148 readline_show_prompt(mon->rs);
149}
bellard6a00d602005-11-21 23:25:50 +0000150
aliguoricde76ee2009-03-05 23:01:51 +0000151static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
152 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000153{
Luiz Capitulino94171e12009-12-07 21:37:00 +0100154 if (monitor_ctrl_mode(mon)) {
155 qemu_error_new(QERR_MISSING_PARAMETER, "password");
156 return -EINVAL;
157 } else if (mon->rs) {
aliguoricde76ee2009-03-05 23:01:51 +0000158 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
159 /* prompt is printed on return from the command handler */
160 return 0;
161 } else {
162 monitor_printf(mon, "terminal does not support password prompting\n");
163 return -ENOTTY;
164 }
aliguoribb5fc202009-03-05 23:01:15 +0000165}
166
aliguori376253e2009-03-05 23:01:23 +0000167void monitor_flush(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000168{
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200169 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
aliguori731b0362009-03-05 23:01:42 +0000170 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
171 mon->outbuf_index = 0;
bellard7e2515e2004-08-01 21:52:19 +0000172 }
173}
174
175/* flush at every end of line or if the buffer is full */
aliguori376253e2009-03-05 23:01:23 +0000176static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000177{
ths60fe76f2007-12-16 03:02:09 +0000178 char c;
aliguori731b0362009-03-05 23:01:42 +0000179
bellard7e2515e2004-08-01 21:52:19 +0000180 for(;;) {
181 c = *str++;
182 if (c == '\0')
183 break;
bellard7ba12602006-07-14 20:26:42 +0000184 if (c == '\n')
aliguori731b0362009-03-05 23:01:42 +0000185 mon->outbuf[mon->outbuf_index++] = '\r';
186 mon->outbuf[mon->outbuf_index++] = c;
187 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
188 || c == '\n')
aliguori376253e2009-03-05 23:01:23 +0000189 monitor_flush(mon);
bellard7e2515e2004-08-01 21:52:19 +0000190 }
191}
192
aliguori376253e2009-03-05 23:01:23 +0000193void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000194{
Luiz Capitulino2daa1192009-12-14 18:53:24 -0200195 if (!mon)
196 return;
197
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200198 if (mon->mc && !mon->mc->print_enabled) {
199 qemu_error_new(QERR_UNDEFINED_ERROR);
200 } else {
201 char buf[4096];
202 vsnprintf(buf, sizeof(buf), fmt, ap);
203 monitor_puts(mon, buf);
204 }
bellard7e2515e2004-08-01 21:52:19 +0000205}
206
aliguori376253e2009-03-05 23:01:23 +0000207void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000208{
209 va_list ap;
210 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000211 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000212 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000213}
214
aliguori376253e2009-03-05 23:01:23 +0000215void monitor_print_filename(Monitor *mon, const char *filename)
thsfef30742006-12-22 14:11:32 +0000216{
217 int i;
218
219 for (i = 0; filename[i]; i++) {
aliguori28a76be2009-03-06 20:27:40 +0000220 switch (filename[i]) {
221 case ' ':
222 case '"':
223 case '\\':
224 monitor_printf(mon, "\\%c", filename[i]);
225 break;
226 case '\t':
227 monitor_printf(mon, "\\t");
228 break;
229 case '\r':
230 monitor_printf(mon, "\\r");
231 break;
232 case '\n':
233 monitor_printf(mon, "\\n");
234 break;
235 default:
236 monitor_printf(mon, "%c", filename[i]);
237 break;
238 }
thsfef30742006-12-22 14:11:32 +0000239 }
240}
241
bellard7fe48482004-10-09 18:08:01 +0000242static int monitor_fprintf(FILE *stream, const char *fmt, ...)
243{
244 va_list ap;
245 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000246 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000247 va_end(ap);
248 return 0;
249}
250
Luiz Capitulino13c74252009-10-07 13:41:55 -0300251static void monitor_user_noop(Monitor *mon, const QObject *data) { }
252
Luiz Capitulino13917be2009-10-07 13:41:54 -0300253static inline int monitor_handler_ported(const mon_cmd_t *cmd)
254{
255 return cmd->user_print != NULL;
256}
257
Luiz Capitulino8204a912009-11-18 23:05:31 -0200258static inline int monitor_has_error(const Monitor *mon)
259{
260 return mon->error != NULL;
261}
262
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200263static void monitor_json_emitter(Monitor *mon, const QObject *data)
264{
265 QString *json;
266
267 json = qobject_to_json(data);
268 assert(json != NULL);
269
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200270 mon->mc->print_enabled = 1;
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200271 monitor_printf(mon, "%s\n", qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200272 mon->mc->print_enabled = 0;
273
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200274 QDECREF(json);
275}
276
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200277static void monitor_protocol_emitter(Monitor *mon, QObject *data)
278{
279 QDict *qmp;
280
281 qmp = qdict_new();
282
283 if (!monitor_has_error(mon)) {
284 /* success response */
285 if (data) {
286 qobject_incref(data);
287 qdict_put_obj(qmp, "return", data);
288 } else {
Luiz Capitulino0abc6572009-12-18 13:25:00 -0200289 /* return an empty QDict by default */
290 qdict_put(qmp, "return", qdict_new());
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200291 }
292 } else {
293 /* error response */
Markus Armbruster77e595e2009-12-07 21:37:16 +0100294 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200295 qdict_put(qmp, "error", mon->error->error);
296 QINCREF(mon->error->error);
297 QDECREF(mon->error);
298 mon->error = NULL;
299 }
300
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200301 if (mon->mc->id) {
302 qdict_put_obj(qmp, "id", mon->mc->id);
303 mon->mc->id = NULL;
304 }
305
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200306 monitor_json_emitter(mon, QOBJECT(qmp));
307 QDECREF(qmp);
308}
309
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200310static void timestamp_put(QDict *qdict)
311{
312 int err;
313 QObject *obj;
Blue Swirld08d6f02009-12-04 18:06:39 +0000314 qemu_timeval tv;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200315
Blue Swirld08d6f02009-12-04 18:06:39 +0000316 err = qemu_gettimeofday(&tv);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200317 if (err < 0)
318 return;
319
320 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
321 "'microseconds': %" PRId64 " }",
322 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
323 assert(obj != NULL);
324
325 qdict_put_obj(qdict, "timestamp", obj);
326}
327
328/**
329 * monitor_protocol_event(): Generate a Monitor event
330 *
331 * Event-specific data can be emitted through the (optional) 'data' parameter.
332 */
333void monitor_protocol_event(MonitorEvent event, QObject *data)
334{
335 QDict *qmp;
336 const char *event_name;
Adam Litkef039a562010-01-15 08:34:02 -0600337 Monitor *mon;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200338
Blue Swirl242cd002009-12-04 18:05:45 +0000339 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200340
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200341 switch (event) {
Blue Swirl242cd002009-12-04 18:05:45 +0000342 case QEVENT_DEBUG:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200343 event_name = "DEBUG";
344 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000345 case QEVENT_SHUTDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200346 event_name = "SHUTDOWN";
347 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000348 case QEVENT_RESET:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200349 event_name = "RESET";
350 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000351 case QEVENT_POWERDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200352 event_name = "POWERDOWN";
353 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000354 case QEVENT_STOP:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200355 event_name = "STOP";
356 break;
Luiz Capitulino586153d2010-01-14 14:50:57 -0200357 case QEVENT_VNC_CONNECTED:
358 event_name = "VNC_CONNECTED";
359 break;
Luiz Capitulino0d2ed462010-01-14 14:50:59 -0200360 case QEVENT_VNC_INITIALIZED:
361 event_name = "VNC_INITIALIZED";
362 break;
Luiz Capitulino0d72f3d2010-01-14 14:50:58 -0200363 case QEVENT_VNC_DISCONNECTED:
364 event_name = "VNC_DISCONNECTED";
365 break;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200366 default:
367 abort();
368 break;
369 }
370
371 qmp = qdict_new();
372 timestamp_put(qmp);
373 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200374 if (data) {
375 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200376 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200377 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200378
Adam Litkef039a562010-01-15 08:34:02 -0600379 QLIST_FOREACH(mon, &mon_list, entry) {
Luiz Capitulino23fabed2010-01-20 10:37:59 -0200380 if (monitor_ctrl_mode(mon)) {
381 monitor_json_emitter(mon, QOBJECT(qmp));
382 }
Adam Litkef039a562010-01-15 08:34:02 -0600383 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200384 QDECREF(qmp);
385}
386
bellard9dc39cb2004-03-14 21:38:27 +0000387static int compare_cmd(const char *name, const char *list)
388{
389 const char *p, *pstart;
390 int len;
391 len = strlen(name);
392 p = list;
393 for(;;) {
394 pstart = p;
395 p = strchr(p, '|');
396 if (!p)
397 p = pstart + strlen(pstart);
398 if ((p - pstart) == len && !memcmp(pstart, name, len))
399 return 1;
400 if (*p == '\0')
401 break;
402 p++;
403 }
404 return 0;
405}
406
Anthony Liguoric227f092009-10-01 16:12:16 -0500407static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000408 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000409{
Anthony Liguoric227f092009-10-01 16:12:16 -0500410 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000411
412 for(cmd = cmds; cmd->name != NULL; cmd++) {
413 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000414 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
415 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000416 }
417}
418
aliguori376253e2009-03-05 23:01:23 +0000419static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000420{
421 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000422 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000423 } else {
aliguori376253e2009-03-05 23:01:23 +0000424 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000425 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000426 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000427 monitor_printf(mon, "Log items (comma separated):\n");
428 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000429 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000430 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000431 }
432 }
bellard9dc39cb2004-03-14 21:38:27 +0000433 }
434}
435
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300436static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300437{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300438 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300439}
440
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300441static void do_commit(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000442{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200443 int all_devices;
444 DriveInfo *dinfo;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300445 const char *device = qdict_get_str(qdict, "device");
balrog2dc7b602007-05-24 18:53:22 +0000446
bellard7954c732006-08-01 15:52:40 +0000447 all_devices = !strcmp(device, "all");
Blue Swirl72cf2d42009-09-12 07:36:22 +0000448 QTAILQ_FOREACH(dinfo, &drives, next) {
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200449 if (!all_devices)
Luiz Capitulino73006d22009-07-31 15:15:41 -0300450 if (strcmp(bdrv_get_device_name(dinfo->bdrv), device))
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200451 continue;
452 bdrv_commit(dinfo->bdrv);
bellard9dc39cb2004-03-14 21:38:27 +0000453 }
454}
455
Luiz Capitulino13c74252009-10-07 13:41:55 -0300456static void do_info(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000457{
Anthony Liguoric227f092009-10-01 16:12:16 -0500458 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300459 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000460
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200461 if (!item) {
462 assert(monitor_ctrl_mode(mon) == 0);
bellard9dc39cb2004-03-14 21:38:27 +0000463 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200464 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300465
466 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000467 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300468 break;
bellard9dc39cb2004-03-14 21:38:27 +0000469 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300470
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200471 if (cmd->name == NULL) {
472 if (monitor_ctrl_mode(mon)) {
473 qemu_error_new(QERR_COMMAND_NOT_FOUND, item);
474 return;
475 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300476 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200477 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300478
479 if (monitor_handler_ported(cmd)) {
480 cmd->mhandler.info_new(mon, ret_data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200481
482 if (!monitor_ctrl_mode(mon)) {
483 /*
484 * User Protocol function is called here, Monitor Protocol is
485 * handled by monitor_call_handler()
486 */
487 if (*ret_data)
488 cmd->user_print(mon, *ret_data);
489 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300490 } else {
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200491 if (monitor_ctrl_mode(mon)) {
492 /* handler not converted yet */
493 qemu_error_new(QERR_COMMAND_NOT_FOUND, item);
494 } else {
495 cmd->mhandler.info(mon);
496 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300497 }
498
bellard9dc39cb2004-03-14 21:38:27 +0000499 return;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300500
501help:
502 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000503}
504
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200505static void do_info_version_print(Monitor *mon, const QObject *data)
506{
507 QDict *qdict;
508
509 qdict = qobject_to_qdict(data);
510
511 monitor_printf(mon, "%s%s\n", qdict_get_str(qdict, "qemu"),
512 qdict_get_str(qdict, "package"));
513}
514
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300515/**
516 * do_info_version(): Show QEMU version
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200517 *
518 * Return a QDict with the following information:
519 *
520 * - "qemu": QEMU's version
521 * - "package": package's version
522 *
523 * Example:
524 *
525 * { "qemu": "0.11.50", "package": "" }
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300526 */
527static void do_info_version(Monitor *mon, QObject **ret_data)
bellard9bc9d1c2004-10-10 15:15:51 +0000528{
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200529 *ret_data = qobject_from_jsonf("{ 'qemu': %s, 'package': %s }",
530 QEMU_VERSION, QEMU_PKGVERSION);
bellard9bc9d1c2004-10-10 15:15:51 +0000531}
532
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200533static void do_info_name_print(Monitor *mon, const QObject *data)
thsc35734b2007-03-19 15:17:08 +0000534{
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200535 QDict *qdict;
536
537 qdict = qobject_to_qdict(data);
538 if (qdict_size(qdict) == 0) {
539 return;
540 }
541
542 monitor_printf(mon, "%s\n", qdict_get_str(qdict, "name"));
543}
544
545/**
546 * do_info_name(): Show VM name
547 *
548 * Return a QDict with the following information:
549 *
550 * - "name": VM's name (optional)
551 *
552 * Example:
553 *
554 * { "name": "qemu-name" }
555 */
556static void do_info_name(Monitor *mon, QObject **ret_data)
557{
558 *ret_data = qemu_name ? qobject_from_jsonf("{'name': %s }", qemu_name) :
559 qobject_from_jsonf("{}");
thsc35734b2007-03-19 15:17:08 +0000560}
561
Luiz Capitulino1a728672009-12-10 17:15:56 -0200562static QObject *get_cmd_dict(const char *name)
563{
564 const char *p;
565
566 /* Remove '|' from some commands */
567 p = strchr(name, '|');
568 if (p) {
569 p++;
570 } else {
571 p = name;
572 }
573
574 return qobject_from_jsonf("{ 'name': %s }", p);
575}
576
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200577/**
578 * do_info_commands(): List QMP available commands
579 *
Luiz Capitulino1a728672009-12-10 17:15:56 -0200580 * Each command is represented by a QDict, the returned QObject is a QList
581 * of all commands.
582 *
583 * The QDict contains:
584 *
585 * - "name": command's name
586 *
587 * Example:
588 *
589 * { [ { "name": "query-balloon" }, { "name": "system_powerdown" } ] }
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200590 */
591static void do_info_commands(Monitor *mon, QObject **ret_data)
592{
593 QList *cmd_list;
594 const mon_cmd_t *cmd;
595
596 cmd_list = qlist_new();
597
598 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
599 if (monitor_handler_ported(cmd) && !compare_cmd(cmd->name, "info")) {
Luiz Capitulino1a728672009-12-10 17:15:56 -0200600 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200601 }
602 }
603
604 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
605 if (monitor_handler_ported(cmd)) {
606 char buf[128];
607 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
Luiz Capitulino1a728672009-12-10 17:15:56 -0200608 qlist_append_obj(cmd_list, get_cmd_dict(buf));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200609 }
610 }
611
612 *ret_data = QOBJECT(cmd_list);
613}
614
aurel32bf4f74c2008-12-18 22:42:34 +0000615#if defined(TARGET_I386)
Luiz Capitulino14f07202009-12-10 17:16:02 -0200616static void do_info_hpet_print(Monitor *mon, const QObject *data)
aliguori16b29ae2008-12-17 23:28:44 +0000617{
aliguori376253e2009-03-05 23:01:23 +0000618 monitor_printf(mon, "HPET is %s by QEMU\n",
Luiz Capitulino14f07202009-12-10 17:16:02 -0200619 qdict_get_bool(qobject_to_qdict(data), "enabled") ?
620 "enabled" : "disabled");
621}
622
623/**
624 * do_info_hpet(): Show HPET state
625 *
626 * Return a QDict with the following information:
627 *
628 * - "enabled": true if hpet if enabled, false otherwise
629 *
630 * Example:
631 *
632 * { "enabled": true }
633 */
634static void do_info_hpet(Monitor *mon, QObject **ret_data)
635{
636 *ret_data = qobject_from_jsonf("{ 'enabled': %i }", !no_hpet);
aliguori16b29ae2008-12-17 23:28:44 +0000637}
aurel32bf4f74c2008-12-18 22:42:34 +0000638#endif
aliguori16b29ae2008-12-17 23:28:44 +0000639
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200640static void do_info_uuid_print(Monitor *mon, const QObject *data)
blueswir1f1f23ad2008-09-18 18:30:20 +0000641{
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200642 monitor_printf(mon, "%s\n", qdict_get_str(qobject_to_qdict(data), "UUID"));
643}
644
645/**
646 * do_info_uuid(): Show VM UUID
647 *
648 * Return a QDict with the following information:
649 *
650 * - "UUID": Universally Unique Identifier
651 *
652 * Example:
653 *
654 * { "UUID": "550e8400-e29b-41d4-a716-446655440000" }
655 */
656static void do_info_uuid(Monitor *mon, QObject **ret_data)
657{
658 char uuid[64];
659
660 snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1],
aliguori376253e2009-03-05 23:01:23 +0000661 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
662 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
663 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
664 qemu_uuid[14], qemu_uuid[15]);
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200665 *ret_data = qobject_from_jsonf("{ 'UUID': %s }", uuid);
thsa36e69d2007-12-02 05:18:19 +0000666}
667
bellard6a00d602005-11-21 23:25:50 +0000668/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000669static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000670{
671 CPUState *env;
672
673 for(env = first_cpu; env != NULL; env = env->next_cpu) {
674 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000675 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000676 return 0;
677 }
678 }
679 return -1;
680}
681
pbrook9596ebb2007-11-18 01:44:38 +0000682static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000683{
aliguori731b0362009-03-05 23:01:42 +0000684 if (!cur_mon->mon_cpu) {
bellard6a00d602005-11-21 23:25:50 +0000685 mon_set_cpu(0);
686 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300687 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000688 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000689}
690
aliguori376253e2009-03-05 23:01:23 +0000691static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000692{
bellard6a00d602005-11-21 23:25:50 +0000693 CPUState *env;
694 env = mon_get_cpu();
695 if (!env)
696 return;
bellard9307c4c2004-04-04 12:57:25 +0000697#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000698 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000699 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000700#else
aliguori376253e2009-03-05 23:01:23 +0000701 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000702 0);
bellard9307c4c2004-04-04 12:57:25 +0000703#endif
704}
705
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300706static void print_cpu_iter(QObject *obj, void *opaque)
707{
708 QDict *cpu;
709 int active = ' ';
710 Monitor *mon = opaque;
711
712 assert(qobject_type(obj) == QTYPE_QDICT);
713 cpu = qobject_to_qdict(obj);
714
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200715 if (qdict_get_bool(cpu, "current")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300716 active = '*';
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200717 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300718
719 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
720
721#if defined(TARGET_I386)
722 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
723 (target_ulong) qdict_get_int(cpu, "pc"));
724#elif defined(TARGET_PPC)
725 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
726 (target_long) qdict_get_int(cpu, "nip"));
727#elif defined(TARGET_SPARC)
728 monitor_printf(mon, "pc=0x " TARGET_FMT_lx,
729 (target_long) qdict_get_int(cpu, "pc"));
730 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
731 (target_long) qdict_get_int(cpu, "npc"));
732#elif defined(TARGET_MIPS)
733 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
734 (target_long) qdict_get_int(cpu, "PC"));
735#endif
736
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200737 if (qdict_get_bool(cpu, "halted")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300738 monitor_printf(mon, " (halted)");
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200739 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300740
741 monitor_printf(mon, "\n");
742}
743
744static void monitor_print_cpus(Monitor *mon, const QObject *data)
745{
746 QList *cpu_list;
747
748 assert(qobject_type(data) == QTYPE_QLIST);
749 cpu_list = qobject_to_qlist(data);
750 qlist_iter(cpu_list, print_cpu_iter, mon);
751}
752
753/**
754 * do_info_cpus(): Show CPU information
755 *
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200756 * Return a QList. Each CPU is represented by a QDict, which contains:
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300757 *
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200758 * - "cpu": CPU index
759 * - "current": true if this is the current CPU, false otherwise
760 * - "halted": true if the cpu is halted, false otherwise
761 * - Current program counter. The key's name depends on the architecture:
762 * "pc": i386/x86)64
763 * "nip": PPC
764 * "pc" and "npc": sparc
765 * "PC": mips
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300766 *
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200767 * Example:
768 *
769 * [ { "CPU": 0, "current": true, "halted": false, "pc": 3227107138 },
770 * { "CPU": 1, "current": false, "halted": true, "pc": 7108165 } ]
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300771 */
772static void do_info_cpus(Monitor *mon, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000773{
774 CPUState *env;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300775 QList *cpu_list;
776
777 cpu_list = qlist_new();
bellard6a00d602005-11-21 23:25:50 +0000778
779 /* just to set the default cpu if not already done */
780 mon_get_cpu();
781
782 for(env = first_cpu; env != NULL; env = env->next_cpu) {
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200783 QDict *cpu;
784 QObject *obj;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300785
Avi Kivity4c0960c2009-08-17 23:19:53 +0300786 cpu_synchronize_state(env);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300787
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200788 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
789 env->cpu_index, env == mon->mon_cpu,
790 env->halted);
791 assert(obj != NULL);
792
793 cpu = qobject_to_qdict(obj);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300794
bellard6a00d602005-11-21 23:25:50 +0000795#if defined(TARGET_I386)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300796 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
bellarde80e1cc2005-11-23 22:05:28 +0000797#elif defined(TARGET_PPC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300798 qdict_put(cpu, "nip", qint_from_int(env->nip));
bellardba3c64f2005-12-05 20:31:52 +0000799#elif defined(TARGET_SPARC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300800 qdict_put(cpu, "pc", qint_from_int(env->pc));
801 qdict_put(cpu, "npc", qint_from_int(env->npc));
thsead93602007-09-06 00:18:15 +0000802#elif defined(TARGET_MIPS)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300803 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
bellardce5232c2008-05-28 17:14:10 +0000804#endif
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300805
806 qlist_append(cpu_list, cpu);
bellard6a00d602005-11-21 23:25:50 +0000807 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300808
809 *ret_data = QOBJECT(cpu_list);
bellard6a00d602005-11-21 23:25:50 +0000810}
811
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300812static void do_cpu_set(Monitor *mon, const QDict *qdict)
bellard6a00d602005-11-21 23:25:50 +0000813{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300814 int index = qdict_get_int(qdict, "index");
bellard6a00d602005-11-21 23:25:50 +0000815 if (mon_set_cpu(index) < 0)
aliguori376253e2009-03-05 23:01:23 +0000816 monitor_printf(mon, "Invalid CPU index\n");
bellard6a00d602005-11-21 23:25:50 +0000817}
818
aliguori376253e2009-03-05 23:01:23 +0000819static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000820{
aliguori376253e2009-03-05 23:01:23 +0000821 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000822}
823
aliguori376253e2009-03-05 23:01:23 +0000824static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000825{
826 int i;
bellard7e2515e2004-08-01 21:52:19 +0000827 const char *str;
ths3b46e622007-09-17 08:09:54 +0000828
aliguoricde76ee2009-03-05 23:01:51 +0000829 if (!mon->rs)
830 return;
bellard7e2515e2004-08-01 21:52:19 +0000831 i = 0;
832 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000833 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000834 if (!str)
835 break;
aliguori376253e2009-03-05 23:01:23 +0000836 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000837 i++;
bellardaa455482004-04-04 13:07:25 +0000838 }
839}
840
j_mayer76a66252007-03-07 08:32:30 +0000841#if defined(TARGET_PPC)
842/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000843static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000844{
845 CPUState *env;
846
847 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000848 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000849}
850#endif
851
Luiz Capitulinob223f352009-10-07 13:41:56 -0300852/**
853 * do_quit(): Quit QEMU execution
854 */
855static void do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000856{
857 exit(0);
858}
859
aliguori376253e2009-03-05 23:01:23 +0000860static int eject_device(Monitor *mon, BlockDriverState *bs, int force)
bellard9dc39cb2004-03-14 21:38:27 +0000861{
862 if (bdrv_is_inserted(bs)) {
863 if (!force) {
864 if (!bdrv_is_removable(bs)) {
Markus Armbruster2c2a6bb2009-12-07 21:37:05 +0100865 qemu_error_new(QERR_DEVICE_NOT_REMOVABLE,
866 bdrv_get_device_name(bs));
bellard9dc39cb2004-03-14 21:38:27 +0000867 return -1;
868 }
869 if (bdrv_is_locked(bs)) {
Markus Armbruster2c2a6bb2009-12-07 21:37:05 +0100870 qemu_error_new(QERR_DEVICE_LOCKED, bdrv_get_device_name(bs));
bellard9dc39cb2004-03-14 21:38:27 +0000871 return -1;
872 }
873 }
874 bdrv_close(bs);
875 }
876 return 0;
877}
878
Luiz Capitulinoe1c923a2009-10-16 12:23:49 -0300879static void do_eject(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000880{
881 BlockDriverState *bs;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -0300882 int force = qdict_get_int(qdict, "force");
Luiz Capitulino78d714e2009-12-14 18:53:21 -0200883 const char *filename = qdict_get_str(qdict, "device");
bellard9dc39cb2004-03-14 21:38:27 +0000884
bellard9307c4c2004-04-04 12:57:25 +0000885 bs = bdrv_find(filename);
bellard9dc39cb2004-03-14 21:38:27 +0000886 if (!bs) {
Markus Armbruster2c2a6bb2009-12-07 21:37:05 +0100887 qemu_error_new(QERR_DEVICE_NOT_FOUND, filename);
bellard9dc39cb2004-03-14 21:38:27 +0000888 return;
889 }
aliguori376253e2009-03-05 23:01:23 +0000890 eject_device(mon, bs, force);
bellard9dc39cb2004-03-14 21:38:27 +0000891}
892
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -0200893static void do_block_set_passwd(Monitor *mon, const QDict *qdict,
894 QObject **ret_data)
895{
896 BlockDriverState *bs;
897
898 bs = bdrv_find(qdict_get_str(qdict, "device"));
899 if (!bs) {
900 qemu_error_new(QERR_DEVICE_NOT_FOUND, qdict_get_str(qdict, "device"));
901 return;
902 }
903
904 if (bdrv_set_key(bs, qdict_get_str(qdict, "password")) < 0) {
905 qemu_error_new(QERR_INVALID_PASSWORD);
906 }
907}
908
aliguori376253e2009-03-05 23:01:23 +0000909static void do_change_block(Monitor *mon, const char *device,
910 const char *filename, const char *fmt)
bellard9dc39cb2004-03-14 21:38:27 +0000911{
912 BlockDriverState *bs;
aurel322ecea9b2008-06-18 22:10:01 +0000913 BlockDriver *drv = NULL;
bellard9dc39cb2004-03-14 21:38:27 +0000914
bellard9307c4c2004-04-04 12:57:25 +0000915 bs = bdrv_find(device);
bellard9dc39cb2004-03-14 21:38:27 +0000916 if (!bs) {
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100917 qemu_error_new(QERR_DEVICE_NOT_FOUND, device);
bellard9dc39cb2004-03-14 21:38:27 +0000918 return;
919 }
aurel322ecea9b2008-06-18 22:10:01 +0000920 if (fmt) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100921 drv = bdrv_find_whitelisted_format(fmt);
aurel322ecea9b2008-06-18 22:10:01 +0000922 if (!drv) {
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100923 qemu_error_new(QERR_INVALID_BLOCK_FORMAT, fmt);
aurel322ecea9b2008-06-18 22:10:01 +0000924 return;
925 }
926 }
aliguori376253e2009-03-05 23:01:23 +0000927 if (eject_device(mon, bs, 0) < 0)
bellard9dc39cb2004-03-14 21:38:27 +0000928 return;
Naphtali Spreif5edb012010-01-17 16:48:13 +0200929 bdrv_open2(bs, filename, BDRV_O_RDWR, drv);
aliguori376253e2009-03-05 23:01:23 +0000930 monitor_read_bdrv_key_start(mon, bs, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000931}
932
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100933static void change_vnc_password(const char *password)
aliguoribb5fc202009-03-05 23:01:15 +0000934{
935 if (vnc_display_password(NULL, password) < 0)
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100936 qemu_error_new(QERR_SET_PASSWD_FAILED);
aliguoribb5fc202009-03-05 23:01:15 +0000937
Markus Armbruster2895e072009-12-07 21:37:01 +0100938}
939
940static void change_vnc_password_cb(Monitor *mon, const char *password,
941 void *opaque)
942{
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100943 change_vnc_password(password);
aliguori731b0362009-03-05 23:01:42 +0000944 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +0000945}
946
aliguori376253e2009-03-05 23:01:23 +0000947static void do_change_vnc(Monitor *mon, const char *target, const char *arg)
thse25a5822007-08-25 01:36:20 +0000948{
ths70848512007-08-25 01:37:05 +0000949 if (strcmp(target, "passwd") == 0 ||
aliguori28a76be2009-03-06 20:27:40 +0000950 strcmp(target, "password") == 0) {
951 if (arg) {
aliguoribb5fc202009-03-05 23:01:15 +0000952 char password[9];
aliguori28a76be2009-03-06 20:27:40 +0000953 strncpy(password, arg, sizeof(password));
954 password[sizeof(password) - 1] = '\0';
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100955 change_vnc_password(password);
aliguoribb5fc202009-03-05 23:01:15 +0000956 } else {
aliguori376253e2009-03-05 23:01:23 +0000957 monitor_read_password(mon, change_vnc_password_cb, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000958 }
ths70848512007-08-25 01:37:05 +0000959 } else {
aliguori28a76be2009-03-06 20:27:40 +0000960 if (vnc_display_open(NULL, target) < 0)
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100961 qemu_error_new(QERR_VNC_SERVER_FAILED, target);
ths70848512007-08-25 01:37:05 +0000962 }
thse25a5822007-08-25 01:36:20 +0000963}
964
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100965/**
966 * do_change(): Change a removable medium, or VNC configuration
967 */
968static void do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
thse25a5822007-08-25 01:36:20 +0000969{
Luiz Capitulino1d4daa92009-08-28 15:27:15 -0300970 const char *device = qdict_get_str(qdict, "device");
971 const char *target = qdict_get_str(qdict, "target");
972 const char *arg = qdict_get_try_str(qdict, "arg");
thse25a5822007-08-25 01:36:20 +0000973 if (strcmp(device, "vnc") == 0) {
aliguori28a76be2009-03-06 20:27:40 +0000974 do_change_vnc(mon, target, arg);
thse25a5822007-08-25 01:36:20 +0000975 } else {
aliguori28a76be2009-03-06 20:27:40 +0000976 do_change_block(mon, device, target, arg);
thse25a5822007-08-25 01:36:20 +0000977 }
978}
979
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300980static void do_screen_dump(Monitor *mon, const QDict *qdict)
bellard59a983b2004-03-17 23:17:16 +0000981{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300982 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
bellard59a983b2004-03-17 23:17:16 +0000983}
984
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300985static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +0000986{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300987 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +0000988}
989
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300990static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +0000991{
992 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300993 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +0000994
bellard9307c4c2004-04-04 12:57:25 +0000995 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +0000996 mask = 0;
997 } else {
bellard9307c4c2004-04-04 12:57:25 +0000998 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +0000999 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001000 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001001 return;
1002 }
1003 }
1004 cpu_set_log(mask);
1005}
1006
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001007static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001008{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001009 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001010 if (!option || !strcmp(option, "on")) {
1011 singlestep = 1;
1012 } else if (!strcmp(option, "off")) {
1013 singlestep = 0;
1014 } else {
1015 monitor_printf(mon, "unexpected option %s\n", option);
1016 }
1017}
1018
Luiz Capitulinoe0c97bd2009-10-07 13:41:57 -03001019/**
1020 * do_stop(): Stop VM execution
1021 */
1022static void do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard8a7ddc32004-03-31 19:00:16 +00001023{
1024 vm_stop(EXCP_INTERRUPT);
1025}
1026
aliguoribb5fc202009-03-05 23:01:15 +00001027static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
aliguoric0f4ce72009-03-05 23:01:01 +00001028
aliguori376253e2009-03-05 23:01:23 +00001029struct bdrv_iterate_context {
1030 Monitor *mon;
1031 int err;
1032};
aliguoric0f4ce72009-03-05 23:01:01 +00001033
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001034/**
1035 * do_cont(): Resume emulation.
1036 */
1037static void do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
aliguori376253e2009-03-05 23:01:23 +00001038{
1039 struct bdrv_iterate_context context = { mon, 0 };
1040
1041 bdrv_iterate(encrypted_bdrv_it, &context);
aliguoric0f4ce72009-03-05 23:01:01 +00001042 /* only resume the vm if all keys are set and valid */
aliguori376253e2009-03-05 23:01:23 +00001043 if (!context.err)
aliguoric0f4ce72009-03-05 23:01:01 +00001044 vm_start();
bellard8a7ddc32004-03-31 19:00:16 +00001045}
1046
aliguoribb5fc202009-03-05 23:01:15 +00001047static void bdrv_key_cb(void *opaque, int err)
1048{
aliguori376253e2009-03-05 23:01:23 +00001049 Monitor *mon = opaque;
1050
aliguoribb5fc202009-03-05 23:01:15 +00001051 /* another key was set successfully, retry to continue */
1052 if (!err)
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001053 do_cont(mon, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001054}
1055
1056static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1057{
aliguori376253e2009-03-05 23:01:23 +00001058 struct bdrv_iterate_context *context = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00001059
aliguori376253e2009-03-05 23:01:23 +00001060 if (!context->err && bdrv_key_required(bs)) {
1061 context->err = -EBUSY;
1062 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1063 context->mon);
aliguoribb5fc202009-03-05 23:01:15 +00001064 }
1065}
1066
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001067static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001068{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001069 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001070 if (!device)
1071 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1072 if (gdbserver_start(device) < 0) {
1073 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1074 device);
1075 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001076 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001077 } else {
aliguori59030a82009-04-05 18:43:41 +00001078 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1079 device);
bellard8a7ddc32004-03-31 19:00:16 +00001080 }
1081}
1082
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001083static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001084{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001085 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001086 if (select_watchdog_action(action) == -1) {
1087 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1088 }
1089}
1090
aliguori376253e2009-03-05 23:01:23 +00001091static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001092{
aliguori376253e2009-03-05 23:01:23 +00001093 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001094 switch(c) {
1095 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001096 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001097 break;
1098 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001099 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001100 break;
1101 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001102 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001103 break;
1104 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001105 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001106 break;
1107 default:
1108 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001109 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001110 } else {
aliguori376253e2009-03-05 23:01:23 +00001111 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001112 }
1113 break;
1114 }
aliguori376253e2009-03-05 23:01:23 +00001115 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001116}
1117
aliguori376253e2009-03-05 23:01:23 +00001118static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -05001119 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001120{
bellard6a00d602005-11-21 23:25:50 +00001121 CPUState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +00001122 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001123 uint8_t buf[16];
1124 uint64_t v;
1125
1126 if (format == 'i') {
1127 int flags;
1128 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001129 env = mon_get_cpu();
1130 if (!env && !is_physical)
1131 return;
bellard9307c4c2004-04-04 12:57:25 +00001132#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001133 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001134 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001135 } else if (wsize == 4) {
1136 flags = 0;
1137 } else {
bellard6a15fd12006-04-12 21:07:07 +00001138 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001139 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001140 if (env) {
1141#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001142 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001143 (env->segs[R_CS].flags & DESC_L_MASK))
1144 flags = 2;
1145 else
1146#endif
1147 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1148 flags = 1;
1149 }
bellard4c27ba22004-04-25 18:05:08 +00001150 }
1151#endif
aliguori376253e2009-03-05 23:01:23 +00001152 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001153 return;
1154 }
1155
1156 len = wsize * count;
1157 if (wsize == 1)
1158 line_size = 8;
1159 else
1160 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001161 max_digits = 0;
1162
1163 switch(format) {
1164 case 'o':
1165 max_digits = (wsize * 8 + 2) / 3;
1166 break;
1167 default:
1168 case 'x':
1169 max_digits = (wsize * 8) / 4;
1170 break;
1171 case 'u':
1172 case 'd':
1173 max_digits = (wsize * 8 * 10 + 32) / 33;
1174 break;
1175 case 'c':
1176 wsize = 1;
1177 break;
1178 }
1179
1180 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001181 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001182 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001183 else
aliguori376253e2009-03-05 23:01:23 +00001184 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001185 l = len;
1186 if (l > line_size)
1187 l = line_size;
1188 if (is_physical) {
1189 cpu_physical_memory_rw(addr, buf, l, 0);
1190 } else {
bellard6a00d602005-11-21 23:25:50 +00001191 env = mon_get_cpu();
1192 if (!env)
1193 break;
aliguoric8f79b62008-08-18 14:00:20 +00001194 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001195 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001196 break;
1197 }
bellard9307c4c2004-04-04 12:57:25 +00001198 }
ths5fafdf22007-09-16 21:08:06 +00001199 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001200 while (i < l) {
1201 switch(wsize) {
1202 default:
1203 case 1:
1204 v = ldub_raw(buf + i);
1205 break;
1206 case 2:
1207 v = lduw_raw(buf + i);
1208 break;
1209 case 4:
bellard92a31b12005-02-10 22:00:52 +00001210 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001211 break;
1212 case 8:
1213 v = ldq_raw(buf + i);
1214 break;
1215 }
aliguori376253e2009-03-05 23:01:23 +00001216 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001217 switch(format) {
1218 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001219 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001220 break;
1221 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001222 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001223 break;
1224 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001225 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001226 break;
1227 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001228 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001229 break;
1230 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001231 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001232 break;
1233 }
1234 i += wsize;
1235 }
aliguori376253e2009-03-05 23:01:23 +00001236 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001237 addr += l;
1238 len -= l;
1239 }
1240}
1241
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001242static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001243{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001244 int count = qdict_get_int(qdict, "count");
1245 int format = qdict_get_int(qdict, "format");
1246 int size = qdict_get_int(qdict, "size");
1247 target_long addr = qdict_get_int(qdict, "addr");
1248
aliguori376253e2009-03-05 23:01:23 +00001249 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001250}
1251
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001252static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001253{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001254 int count = qdict_get_int(qdict, "count");
1255 int format = qdict_get_int(qdict, "format");
1256 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001257 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001258
aliguori376253e2009-03-05 23:01:23 +00001259 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001260}
1261
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001262static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001263{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001264 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001265 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001266
blueswir17743e582007-09-24 18:39:04 +00001267#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +00001268 switch(format) {
1269 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001270 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +00001271 break;
1272 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001273 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +00001274 break;
1275 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001276 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +00001277 break;
1278 default:
1279 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001280 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +00001281 break;
1282 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001283 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001284 break;
1285 }
bellard92a31b12005-02-10 22:00:52 +00001286#else
1287 switch(format) {
1288 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001289 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +00001290 break;
1291 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001292 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +00001293 break;
1294 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001295 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +00001296 break;
1297 default:
1298 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001299 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +00001300 break;
1301 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001302 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +00001303 break;
1304 }
1305#endif
aliguori376253e2009-03-05 23:01:23 +00001306 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001307}
1308
Luiz Capitulino57e09452009-10-16 12:23:43 -03001309static void do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellardb371dc52007-01-03 15:20:39 +00001310{
1311 FILE *f;
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001312 uint32_t size = qdict_get_int(qdict, "size");
1313 const char *filename = qdict_get_str(qdict, "filename");
1314 target_long addr = qdict_get_int(qdict, "val");
bellardb371dc52007-01-03 15:20:39 +00001315 uint32_t l;
1316 CPUState *env;
1317 uint8_t buf[1024];
1318
1319 env = mon_get_cpu();
1320 if (!env)
1321 return;
1322
1323 f = fopen(filename, "wb");
1324 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00001325 monitor_printf(mon, "could not open '%s'\n", filename);
bellardb371dc52007-01-03 15:20:39 +00001326 return;
1327 }
1328 while (size != 0) {
1329 l = sizeof(buf);
1330 if (l > size)
1331 l = size;
1332 cpu_memory_rw_debug(env, addr, buf, l, 0);
1333 fwrite(buf, 1, l, f);
1334 addr += l;
1335 size -= l;
1336 }
1337 fclose(f);
1338}
1339
Luiz Capitulino18f5a8b2009-10-16 12:23:44 -03001340static void do_physical_memory_save(Monitor *mon, const QDict *qdict,
1341 QObject **ret_data)
aurel32a8bdf7a2008-04-11 21:36:14 +00001342{
1343 FILE *f;
1344 uint32_t l;
1345 uint8_t buf[1024];
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001346 uint32_t size = qdict_get_int(qdict, "size");
1347 const char *filename = qdict_get_str(qdict, "filename");
Anthony Liguoric227f092009-10-01 16:12:16 -05001348 target_phys_addr_t addr = qdict_get_int(qdict, "val");
aurel32a8bdf7a2008-04-11 21:36:14 +00001349
1350 f = fopen(filename, "wb");
1351 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00001352 monitor_printf(mon, "could not open '%s'\n", filename);
aurel32a8bdf7a2008-04-11 21:36:14 +00001353 return;
1354 }
1355 while (size != 0) {
1356 l = sizeof(buf);
1357 if (l > size)
1358 l = size;
1359 cpu_physical_memory_rw(addr, buf, l, 0);
1360 fwrite(buf, 1, l, f);
1361 fflush(f);
1362 addr += l;
1363 size -= l;
1364 }
1365 fclose(f);
1366}
1367
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001368static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001369{
1370 uint32_t addr;
1371 uint8_t buf[1];
1372 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001373 uint32_t start = qdict_get_int(qdict, "start");
1374 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001375
1376 sum = 0;
1377 for(addr = start; addr < (start + size); addr++) {
1378 cpu_physical_memory_rw(addr, buf, 1, 0);
1379 /* BSD sum algorithm ('sum' Unix command) */
1380 sum = (sum >> 1) | (sum << 15);
1381 sum += buf[0];
1382 }
aliguori376253e2009-03-05 23:01:23 +00001383 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001384}
1385
bellarda3a91a32004-06-04 11:06:21 +00001386typedef struct {
1387 int keycode;
1388 const char *name;
1389} KeyDef;
1390
1391static const KeyDef key_defs[] = {
1392 { 0x2a, "shift" },
1393 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +00001394
bellarda3a91a32004-06-04 11:06:21 +00001395 { 0x38, "alt" },
1396 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +00001397 { 0x64, "altgr" },
1398 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +00001399 { 0x1d, "ctrl" },
1400 { 0x9d, "ctrl_r" },
1401
1402 { 0xdd, "menu" },
1403
1404 { 0x01, "esc" },
1405
1406 { 0x02, "1" },
1407 { 0x03, "2" },
1408 { 0x04, "3" },
1409 { 0x05, "4" },
1410 { 0x06, "5" },
1411 { 0x07, "6" },
1412 { 0x08, "7" },
1413 { 0x09, "8" },
1414 { 0x0a, "9" },
1415 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +00001416 { 0x0c, "minus" },
1417 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +00001418 { 0x0e, "backspace" },
1419
1420 { 0x0f, "tab" },
1421 { 0x10, "q" },
1422 { 0x11, "w" },
1423 { 0x12, "e" },
1424 { 0x13, "r" },
1425 { 0x14, "t" },
1426 { 0x15, "y" },
1427 { 0x16, "u" },
1428 { 0x17, "i" },
1429 { 0x18, "o" },
1430 { 0x19, "p" },
1431
1432 { 0x1c, "ret" },
1433
1434 { 0x1e, "a" },
1435 { 0x1f, "s" },
1436 { 0x20, "d" },
1437 { 0x21, "f" },
1438 { 0x22, "g" },
1439 { 0x23, "h" },
1440 { 0x24, "j" },
1441 { 0x25, "k" },
1442 { 0x26, "l" },
1443
1444 { 0x2c, "z" },
1445 { 0x2d, "x" },
1446 { 0x2e, "c" },
1447 { 0x2f, "v" },
1448 { 0x30, "b" },
1449 { 0x31, "n" },
1450 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +00001451 { 0x33, "comma" },
1452 { 0x34, "dot" },
1453 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +00001454
balrog4d3b6f62008-02-10 16:33:14 +00001455 { 0x37, "asterisk" },
1456
bellarda3a91a32004-06-04 11:06:21 +00001457 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +00001458 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001459 { 0x3b, "f1" },
1460 { 0x3c, "f2" },
1461 { 0x3d, "f3" },
1462 { 0x3e, "f4" },
1463 { 0x3f, "f5" },
1464 { 0x40, "f6" },
1465 { 0x41, "f7" },
1466 { 0x42, "f8" },
1467 { 0x43, "f9" },
1468 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +00001469 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001470 { 0x46, "scroll_lock" },
1471
bellard64866c32006-05-07 18:03:31 +00001472 { 0xb5, "kp_divide" },
1473 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +00001474 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +00001475 { 0x4e, "kp_add" },
1476 { 0x9c, "kp_enter" },
1477 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +00001478 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +00001479
1480 { 0x52, "kp_0" },
1481 { 0x4f, "kp_1" },
1482 { 0x50, "kp_2" },
1483 { 0x51, "kp_3" },
1484 { 0x4b, "kp_4" },
1485 { 0x4c, "kp_5" },
1486 { 0x4d, "kp_6" },
1487 { 0x47, "kp_7" },
1488 { 0x48, "kp_8" },
1489 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +00001490
bellarda3a91a32004-06-04 11:06:21 +00001491 { 0x56, "<" },
1492
1493 { 0x57, "f11" },
1494 { 0x58, "f12" },
1495
1496 { 0xb7, "print" },
1497
1498 { 0xc7, "home" },
1499 { 0xc9, "pgup" },
1500 { 0xd1, "pgdn" },
1501 { 0xcf, "end" },
1502
1503 { 0xcb, "left" },
1504 { 0xc8, "up" },
1505 { 0xd0, "down" },
1506 { 0xcd, "right" },
1507
1508 { 0xd2, "insert" },
1509 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001510#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1511 { 0xf0, "stop" },
1512 { 0xf1, "again" },
1513 { 0xf2, "props" },
1514 { 0xf3, "undo" },
1515 { 0xf4, "front" },
1516 { 0xf5, "copy" },
1517 { 0xf6, "open" },
1518 { 0xf7, "paste" },
1519 { 0xf8, "find" },
1520 { 0xf9, "cut" },
1521 { 0xfa, "lf" },
1522 { 0xfb, "help" },
1523 { 0xfc, "meta_l" },
1524 { 0xfd, "meta_r" },
1525 { 0xfe, "compose" },
1526#endif
bellarda3a91a32004-06-04 11:06:21 +00001527 { 0, NULL },
1528};
1529
1530static int get_keycode(const char *key)
1531{
1532 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001533 char *endp;
1534 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001535
1536 for(p = key_defs; p->name != NULL; p++) {
1537 if (!strcmp(key, p->name))
1538 return p->keycode;
1539 }
bellard64866c32006-05-07 18:03:31 +00001540 if (strstart(key, "0x", NULL)) {
1541 ret = strtoul(key, &endp, 0);
1542 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1543 return ret;
1544 }
bellarda3a91a32004-06-04 11:06:21 +00001545 return -1;
1546}
1547
balrogc8256f92008-06-08 22:45:01 +00001548#define MAX_KEYCODES 16
1549static uint8_t keycodes[MAX_KEYCODES];
1550static int nb_pending_keycodes;
1551static QEMUTimer *key_timer;
1552
1553static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001554{
balrogc8256f92008-06-08 22:45:01 +00001555 int keycode;
1556
1557 while (nb_pending_keycodes > 0) {
1558 nb_pending_keycodes--;
1559 keycode = keycodes[nb_pending_keycodes];
1560 if (keycode & 0x80)
1561 kbd_put_keycode(0xe0);
1562 kbd_put_keycode(keycode | 0x80);
1563 }
1564}
1565
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001566static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001567{
balrog3401c0d2008-06-04 10:05:59 +00001568 char keyname_buf[16];
1569 char *separator;
1570 int keyname_len, keycode, i;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001571 const char *string = qdict_get_str(qdict, "string");
1572 int has_hold_time = qdict_haskey(qdict, "hold_time");
1573 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
ths3b46e622007-09-17 08:09:54 +00001574
balrogc8256f92008-06-08 22:45:01 +00001575 if (nb_pending_keycodes > 0) {
1576 qemu_del_timer(key_timer);
1577 release_keys(NULL);
1578 }
1579 if (!has_hold_time)
1580 hold_time = 100;
1581 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001582 while (1) {
1583 separator = strchr(string, '-');
1584 keyname_len = separator ? separator - string : strlen(string);
1585 if (keyname_len > 0) {
1586 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1587 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001588 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001589 return;
bellarda3a91a32004-06-04 11:06:21 +00001590 }
balrogc8256f92008-06-08 22:45:01 +00001591 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001592 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001593 return;
1594 }
1595 keyname_buf[keyname_len] = 0;
1596 keycode = get_keycode(keyname_buf);
1597 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001598 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001599 return;
1600 }
balrogc8256f92008-06-08 22:45:01 +00001601 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001602 }
balrog3401c0d2008-06-04 10:05:59 +00001603 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001604 break;
balrog3401c0d2008-06-04 10:05:59 +00001605 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001606 }
balrogc8256f92008-06-08 22:45:01 +00001607 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001608 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001609 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001610 keycode = keycodes[i];
1611 if (keycode & 0x80)
1612 kbd_put_keycode(0xe0);
1613 kbd_put_keycode(keycode & 0x7f);
1614 }
balrogc8256f92008-06-08 22:45:01 +00001615 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +00001616 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001617 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001618}
1619
bellard13224a82006-07-14 22:03:35 +00001620static int mouse_button_state;
1621
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001622static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001623{
1624 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001625 const char *dx_str = qdict_get_str(qdict, "dx_str");
1626 const char *dy_str = qdict_get_str(qdict, "dy_str");
1627 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001628 dx = strtol(dx_str, NULL, 0);
1629 dy = strtol(dy_str, NULL, 0);
1630 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001631 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001632 dz = strtol(dz_str, NULL, 0);
1633 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1634}
1635
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001636static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001637{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001638 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001639 mouse_button_state = button_state;
1640 kbd_mouse_event(0, 0, 0, mouse_button_state);
1641}
1642
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001643static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001644{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001645 int size = qdict_get_int(qdict, "size");
1646 int addr = qdict_get_int(qdict, "addr");
1647 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001648 uint32_t val;
1649 int suffix;
1650
1651 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001652 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001653 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001654 addr++;
1655 }
1656 addr &= 0xffff;
1657
1658 switch(size) {
1659 default:
1660 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001661 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001662 suffix = 'b';
1663 break;
1664 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001665 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001666 suffix = 'w';
1667 break;
1668 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001669 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001670 suffix = 'l';
1671 break;
1672 }
aliguori376253e2009-03-05 23:01:23 +00001673 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1674 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001675}
bellarda3a91a32004-06-04 11:06:21 +00001676
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001677static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001678{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001679 int size = qdict_get_int(qdict, "size");
1680 int addr = qdict_get_int(qdict, "addr");
1681 int val = qdict_get_int(qdict, "val");
1682
Jan Kiszkaf1147842009-07-14 10:20:11 +02001683 addr &= IOPORTS_MASK;
1684
1685 switch (size) {
1686 default:
1687 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001688 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001689 break;
1690 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001691 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001692 break;
1693 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001694 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001695 break;
1696 }
1697}
1698
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001699static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001700{
1701 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001702 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001703
Jan Kiszka76e30d02009-07-02 00:19:02 +02001704 res = qemu_boot_set(bootdevice);
1705 if (res == 0) {
1706 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1707 } else if (res > 0) {
1708 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001709 } else {
aliguori376253e2009-03-05 23:01:23 +00001710 monitor_printf(mon, "no function defined to set boot device list for "
1711 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001712 }
1713}
1714
Luiz Capitulinoc80d2592009-10-07 13:41:58 -03001715/**
1716 * do_system_reset(): Issue a machine reset
1717 */
1718static void do_system_reset(Monitor *mon, const QDict *qdict,
1719 QObject **ret_data)
bellarde4f90822004-06-20 12:35:44 +00001720{
1721 qemu_system_reset_request();
1722}
1723
Luiz Capitulino43076662009-10-07 13:41:59 -03001724/**
1725 * do_system_powerdown(): Issue a machine powerdown
1726 */
1727static void do_system_powerdown(Monitor *mon, const QDict *qdict,
1728 QObject **ret_data)
bellard34751872005-07-02 14:31:34 +00001729{
1730 qemu_system_powerdown_request();
1731}
1732
bellardb86bda52004-09-18 19:32:46 +00001733#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +00001734static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
bellardb86bda52004-09-18 19:32:46 +00001735{
aliguori376253e2009-03-05 23:01:23 +00001736 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1737 addr,
1738 pte & mask,
1739 pte & PG_GLOBAL_MASK ? 'G' : '-',
1740 pte & PG_PSE_MASK ? 'P' : '-',
1741 pte & PG_DIRTY_MASK ? 'D' : '-',
1742 pte & PG_ACCESSED_MASK ? 'A' : '-',
1743 pte & PG_PCD_MASK ? 'C' : '-',
1744 pte & PG_PWT_MASK ? 'T' : '-',
1745 pte & PG_USER_MASK ? 'U' : '-',
1746 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001747}
1748
aliguori376253e2009-03-05 23:01:23 +00001749static void tlb_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001750{
bellard6a00d602005-11-21 23:25:50 +00001751 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001752 int l1, l2;
1753 uint32_t pgd, pde, pte;
1754
bellard6a00d602005-11-21 23:25:50 +00001755 env = mon_get_cpu();
1756 if (!env)
1757 return;
1758
bellardb86bda52004-09-18 19:32:46 +00001759 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001760 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001761 return;
1762 }
1763 pgd = env->cr[3] & ~0xfff;
1764 for(l1 = 0; l1 < 1024; l1++) {
1765 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1766 pde = le32_to_cpu(pde);
1767 if (pde & PG_PRESENT_MASK) {
1768 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001769 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
bellardb86bda52004-09-18 19:32:46 +00001770 } else {
1771 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001772 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001773 (uint8_t *)&pte, 4);
1774 pte = le32_to_cpu(pte);
1775 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001776 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001777 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001778 ~0xfff);
1779 }
1780 }
1781 }
1782 }
1783 }
1784}
1785
aliguori376253e2009-03-05 23:01:23 +00001786static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001787 uint32_t end, int prot)
1788{
bellard9746b152004-11-11 18:30:24 +00001789 int prot1;
1790 prot1 = *plast_prot;
1791 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001792 if (*pstart != -1) {
aliguori376253e2009-03-05 23:01:23 +00001793 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1794 *pstart, end, end - *pstart,
1795 prot1 & PG_USER_MASK ? 'u' : '-',
1796 'r',
1797 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001798 }
1799 if (prot != 0)
1800 *pstart = end;
1801 else
1802 *pstart = -1;
1803 *plast_prot = prot;
1804 }
1805}
1806
aliguori376253e2009-03-05 23:01:23 +00001807static void mem_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001808{
bellard6a00d602005-11-21 23:25:50 +00001809 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001810 int l1, l2, prot, last_prot;
1811 uint32_t pgd, pde, pte, start, end;
1812
bellard6a00d602005-11-21 23:25:50 +00001813 env = mon_get_cpu();
1814 if (!env)
1815 return;
1816
bellardb86bda52004-09-18 19:32:46 +00001817 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001818 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001819 return;
1820 }
1821 pgd = env->cr[3] & ~0xfff;
1822 last_prot = 0;
1823 start = -1;
1824 for(l1 = 0; l1 < 1024; l1++) {
1825 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1826 pde = le32_to_cpu(pde);
1827 end = l1 << 22;
1828 if (pde & PG_PRESENT_MASK) {
1829 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1830 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001831 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001832 } else {
1833 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001834 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001835 (uint8_t *)&pte, 4);
1836 pte = le32_to_cpu(pte);
1837 end = (l1 << 22) + (l2 << 12);
1838 if (pte & PG_PRESENT_MASK) {
1839 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1840 } else {
1841 prot = 0;
1842 }
aliguori376253e2009-03-05 23:01:23 +00001843 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001844 }
1845 }
1846 } else {
1847 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001848 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001849 }
1850 }
1851}
1852#endif
1853
aurel327c664e22009-03-03 06:12:22 +00001854#if defined(TARGET_SH4)
1855
aliguori376253e2009-03-05 23:01:23 +00001856static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001857{
aliguori376253e2009-03-05 23:01:23 +00001858 monitor_printf(mon, " tlb%i:\t"
1859 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1860 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1861 "dirty=%hhu writethrough=%hhu\n",
1862 idx,
1863 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1864 tlb->v, tlb->sh, tlb->c, tlb->pr,
1865 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001866}
1867
aliguori376253e2009-03-05 23:01:23 +00001868static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00001869{
1870 CPUState *env = mon_get_cpu();
1871 int i;
1872
aliguori376253e2009-03-05 23:01:23 +00001873 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001874 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001875 print_tlb (mon, i, &env->itlb[i]);
1876 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001877 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001878 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00001879}
1880
1881#endif
1882
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001883static void do_info_kvm_print(Monitor *mon, const QObject *data)
1884{
1885 QDict *qdict;
1886
1887 qdict = qobject_to_qdict(data);
1888
1889 monitor_printf(mon, "kvm support: ");
1890 if (qdict_get_bool(qdict, "present")) {
1891 monitor_printf(mon, "%s\n", qdict_get_bool(qdict, "enabled") ?
1892 "enabled" : "disabled");
1893 } else {
1894 monitor_printf(mon, "not compiled\n");
1895 }
1896}
1897
1898/**
1899 * do_info_kvm(): Show KVM information
1900 *
1901 * Return a QDict with the following information:
1902 *
1903 * - "enabled": true if KVM support is enabled, false otherwise
1904 * - "present": true if QEMU has KVM support, false otherwise
1905 *
1906 * Example:
1907 *
1908 * { "enabled": true, "present": true }
1909 */
1910static void do_info_kvm(Monitor *mon, QObject **ret_data)
aliguori7ba1e612008-11-05 16:04:33 +00001911{
1912#ifdef CONFIG_KVM
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001913 *ret_data = qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
1914 kvm_enabled());
aliguori7ba1e612008-11-05 16:04:33 +00001915#else
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001916 *ret_data = qobject_from_jsonf("{ 'enabled': false, 'present': false }");
aliguori7ba1e612008-11-05 16:04:33 +00001917#endif
1918}
1919
aliguori030ea372009-04-21 22:30:47 +00001920static void do_info_numa(Monitor *mon)
1921{
aliguorib28b6232009-04-22 20:20:29 +00001922 int i;
aliguori030ea372009-04-21 22:30:47 +00001923 CPUState *env;
1924
1925 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1926 for (i = 0; i < nb_numa_nodes; i++) {
1927 monitor_printf(mon, "node %d cpus:", i);
1928 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1929 if (env->numa_node == i) {
1930 monitor_printf(mon, " %d", env->cpu_index);
1931 }
1932 }
1933 monitor_printf(mon, "\n");
1934 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1935 node_mem[i] >> 20);
1936 }
1937}
1938
bellard5f1ce942006-02-08 22:40:15 +00001939#ifdef CONFIG_PROFILER
1940
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02001941int64_t qemu_time;
1942int64_t dev_time;
1943
aliguori376253e2009-03-05 23:01:23 +00001944static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001945{
1946 int64_t total;
1947 total = qemu_time;
1948 if (total == 0)
1949 total = 1;
aliguori376253e2009-03-05 23:01:23 +00001950 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02001951 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00001952 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02001953 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00001954 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001955 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001956}
1957#else
aliguori376253e2009-03-05 23:01:23 +00001958static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001959{
aliguori376253e2009-03-05 23:01:23 +00001960 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00001961}
1962#endif
1963
bellardec36b692006-07-16 18:57:03 +00001964/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001965static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00001966
aliguori376253e2009-03-05 23:01:23 +00001967static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00001968{
1969 int i;
1970 CaptureState *s;
1971
1972 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00001973 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00001974 s->ops.info (s->opaque);
1975 }
1976}
1977
Blue Swirl23130862009-06-06 08:22:04 +00001978#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001979static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00001980{
1981 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001982 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00001983 CaptureState *s;
1984
1985 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1986 if (i == n) {
1987 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00001988 QLIST_REMOVE (s, entries);
bellardec36b692006-07-16 18:57:03 +00001989 qemu_free (s);
1990 return;
1991 }
1992 }
1993}
1994
Luiz Capitulinoc1925482009-08-28 15:27:19 -03001995static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00001996{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03001997 const char *path = qdict_get_str(qdict, "path");
1998 int has_freq = qdict_haskey(qdict, "freq");
1999 int freq = qdict_get_try_int(qdict, "freq", -1);
2000 int has_bits = qdict_haskey(qdict, "bits");
2001 int bits = qdict_get_try_int(qdict, "bits", -1);
2002 int has_channels = qdict_haskey(qdict, "nchannels");
2003 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00002004 CaptureState *s;
2005
2006 s = qemu_mallocz (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002007
2008 freq = has_freq ? freq : 44100;
2009 bits = has_bits ? bits : 16;
2010 nchannels = has_channels ? nchannels : 2;
2011
2012 if (wav_start_capture (s, path, freq, bits, nchannels)) {
aliguori376253e2009-03-05 23:01:23 +00002013 monitor_printf(mon, "Faied to add wave capture\n");
bellardec36b692006-07-16 18:57:03 +00002014 qemu_free (s);
2015 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002016 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002017}
2018#endif
2019
aurel32dc1c0b72008-04-27 23:52:12 +00002020#if defined(TARGET_I386)
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002021static void do_inject_nmi(Monitor *mon, const QDict *qdict)
aurel32dc1c0b72008-04-27 23:52:12 +00002022{
2023 CPUState *env;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002024 int cpu_index = qdict_get_int(qdict, "cpu_index");
aurel32dc1c0b72008-04-27 23:52:12 +00002025
2026 for (env = first_cpu; env != NULL; env = env->next_cpu)
2027 if (env->cpu_index == cpu_index) {
2028 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2029 break;
2030 }
2031}
2032#endif
2033
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002034static void do_info_status_print(Monitor *mon, const QObject *data)
aurel326f9c5ee2008-12-18 22:43:56 +00002035{
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002036 QDict *qdict;
2037
2038 qdict = qobject_to_qdict(data);
2039
2040 monitor_printf(mon, "VM status: ");
2041 if (qdict_get_bool(qdict, "running")) {
2042 monitor_printf(mon, "running");
2043 if (qdict_get_bool(qdict, "singlestep")) {
2044 monitor_printf(mon, " (single step mode)");
aurel321b530a62009-04-05 20:08:59 +00002045 }
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002046 } else {
2047 monitor_printf(mon, "paused");
2048 }
2049
2050 monitor_printf(mon, "\n");
2051}
2052
2053/**
2054 * do_info_status(): VM status
2055 *
2056 * Return a QDict with the following information:
2057 *
2058 * - "running": true if the VM is running, or false if it is paused
2059 * - "singlestep": true if the VM is in single step mode, false otherwise
2060 *
2061 * Example:
2062 *
2063 * { "running": true, "singlestep": false }
2064 */
2065static void do_info_status(Monitor *mon, QObject **ret_data)
2066{
2067 *ret_data = qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2068 vm_running, singlestep);
aurel326f9c5ee2008-12-18 22:43:56 +00002069}
2070
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002071static ram_addr_t balloon_get_value(void)
2072{
2073 ram_addr_t actual;
2074
2075 if (kvm_enabled() && !kvm_has_sync_mmu()) {
2076 qemu_error_new(QERR_KVM_MISSING_CAP, "synchronous MMU", "balloon");
2077 return 0;
2078 }
2079
2080 actual = qemu_balloon_status();
2081 if (actual == 0) {
2082 qemu_error_new(QERR_DEVICE_NOT_ACTIVE, "balloon");
2083 return 0;
2084 }
2085
2086 return actual;
2087}
2088
Luiz Capitulino83fb1de2009-10-07 13:42:01 -03002089/**
2090 * do_balloon(): Request VM to change its memory allocation
2091 */
2092static void do_balloon(Monitor *mon, const QDict *qdict, QObject **ret_data)
aliguoridf751fa2008-12-04 20:19:35 +00002093{
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002094 if (balloon_get_value()) {
2095 /* ballooning is active */
Luiz Capitulino3b0bd6e2009-12-18 13:25:05 -02002096 qemu_balloon(qdict_get_int(qdict, "value"));
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002097 }
aliguoridf751fa2008-12-04 20:19:35 +00002098}
2099
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002100static void monitor_print_balloon(Monitor *mon, const QObject *data)
2101{
Luiz Capitulino7f179672009-12-10 17:15:55 -02002102 QDict *qdict;
2103
2104 qdict = qobject_to_qdict(data);
2105
2106 monitor_printf(mon, "balloon: actual=%" PRId64 "\n",
2107 qdict_get_int(qdict, "balloon") >> 20);
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002108}
2109
2110/**
2111 * do_info_balloon(): Balloon information
Luiz Capitulino7f179672009-12-10 17:15:55 -02002112 *
2113 * Return a QDict with the following information:
2114 *
2115 * - "balloon": current balloon value in bytes
2116 *
2117 * Example:
2118 *
2119 * { "balloon": 1073741824 }
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002120 */
2121static void do_info_balloon(Monitor *mon, QObject **ret_data)
aliguoridf751fa2008-12-04 20:19:35 +00002122{
Anthony Liguoric227f092009-10-01 16:12:16 -05002123 ram_addr_t actual;
aliguoridf751fa2008-12-04 20:19:35 +00002124
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002125 actual = balloon_get_value();
2126 if (actual != 0) {
Luiz Capitulino7f179672009-12-10 17:15:55 -02002127 *ret_data = qobject_from_jsonf("{ 'balloon': %" PRId64 "}",
2128 (int64_t) actual);
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002129 }
aliguoridf751fa2008-12-04 20:19:35 +00002130}
2131
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002132static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002133{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002134 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002135
aliguori76655d62009-03-06 20:27:37 +00002136 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002137 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002138 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002139 return acl;
2140}
aliguori76655d62009-03-06 20:27:37 +00002141
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002142static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002143{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002144 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002145 qemu_acl *acl = find_acl(mon, aclname);
2146 qemu_acl_entry *entry;
2147 int i = 0;
2148
2149 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002150 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002151 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002152 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002153 i++;
2154 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002155 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002156 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002157 }
2158}
2159
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002160static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002161{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002162 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002163 qemu_acl *acl = find_acl(mon, aclname);
2164
2165 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002166 qemu_acl_reset(acl);
2167 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002168 }
2169}
aliguori76655d62009-03-06 20:27:37 +00002170
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002171static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002172{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002173 const char *aclname = qdict_get_str(qdict, "aclname");
2174 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002175 qemu_acl *acl = find_acl(mon, aclname);
2176
2177 if (acl) {
2178 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002179 acl->defaultDeny = 0;
2180 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002181 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002182 acl->defaultDeny = 1;
2183 monitor_printf(mon, "acl: policy set to 'deny'\n");
2184 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002185 monitor_printf(mon, "acl: unknown policy '%s', "
2186 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002187 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002188 }
2189}
aliguori76655d62009-03-06 20:27:37 +00002190
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002191static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002192{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002193 const char *aclname = qdict_get_str(qdict, "aclname");
2194 const char *match = qdict_get_str(qdict, "match");
2195 const char *policy = qdict_get_str(qdict, "policy");
2196 int has_index = qdict_haskey(qdict, "index");
2197 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002198 qemu_acl *acl = find_acl(mon, aclname);
2199 int deny, ret;
2200
2201 if (acl) {
2202 if (strcmp(policy, "allow") == 0) {
2203 deny = 0;
2204 } else if (strcmp(policy, "deny") == 0) {
2205 deny = 1;
2206 } else {
2207 monitor_printf(mon, "acl: unknown policy '%s', "
2208 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002209 return;
2210 }
aliguori28a76be2009-03-06 20:27:40 +00002211 if (has_index)
2212 ret = qemu_acl_insert(acl, deny, match, index);
2213 else
2214 ret = qemu_acl_append(acl, deny, match);
2215 if (ret < 0)
2216 monitor_printf(mon, "acl: unable to add acl entry\n");
2217 else
2218 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002219 }
2220}
aliguori76655d62009-03-06 20:27:37 +00002221
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002222static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002223{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002224 const char *aclname = qdict_get_str(qdict, "aclname");
2225 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002226 qemu_acl *acl = find_acl(mon, aclname);
2227 int ret;
aliguori76655d62009-03-06 20:27:37 +00002228
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002229 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002230 ret = qemu_acl_remove(acl, match);
2231 if (ret < 0)
2232 monitor_printf(mon, "acl: no matching acl entry\n");
2233 else
2234 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002235 }
2236}
2237
Huang Ying79c4f6b2009-06-23 10:05:14 +08002238#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002239static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002240{
2241 CPUState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002242 int cpu_index = qdict_get_int(qdict, "cpu_index");
2243 int bank = qdict_get_int(qdict, "bank");
2244 uint64_t status = qdict_get_int(qdict, "status");
2245 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2246 uint64_t addr = qdict_get_int(qdict, "addr");
2247 uint64_t misc = qdict_get_int(qdict, "misc");
Huang Ying79c4f6b2009-06-23 10:05:14 +08002248
2249 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
2250 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
2251 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
2252 break;
2253 }
2254}
2255#endif
2256
Luiz Capitulinof0d60002009-10-16 12:23:50 -03002257static void do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002258{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002259 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002260 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002261 int fd;
2262
2263 fd = qemu_chr_get_msgfd(mon->chr);
2264 if (fd == -1) {
Markus Armbruster7cdfcfe2009-12-07 21:37:15 +01002265 qemu_error_new(QERR_FD_NOT_SUPPLIED);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002266 return;
2267 }
2268
2269 if (qemu_isdigit(fdname[0])) {
Markus Armbruster7cdfcfe2009-12-07 21:37:15 +01002270 qemu_error_new(QERR_INVALID_PARAMETER, "fdname");
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002271 return;
2272 }
2273
2274 fd = dup(fd);
2275 if (fd == -1) {
Markus Armbruster7cdfcfe2009-12-07 21:37:15 +01002276 if (errno == EMFILE)
2277 qemu_error_new(QERR_TOO_MANY_FILES);
2278 else
2279 qemu_error_new(QERR_UNDEFINED_ERROR);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002280 return;
2281 }
2282
Blue Swirl72cf2d42009-09-12 07:36:22 +00002283 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002284 if (strcmp(monfd->name, fdname) != 0) {
2285 continue;
2286 }
2287
2288 close(monfd->fd);
2289 monfd->fd = fd;
2290 return;
2291 }
2292
Anthony Liguoric227f092009-10-01 16:12:16 -05002293 monfd = qemu_mallocz(sizeof(mon_fd_t));
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002294 monfd->name = qemu_strdup(fdname);
2295 monfd->fd = fd;
2296
Blue Swirl72cf2d42009-09-12 07:36:22 +00002297 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002298}
2299
Luiz Capitulino18f3a512009-10-16 12:23:51 -03002300static void do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002301{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002302 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002303 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002304
Blue Swirl72cf2d42009-09-12 07:36:22 +00002305 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002306 if (strcmp(monfd->name, fdname) != 0) {
2307 continue;
2308 }
2309
Blue Swirl72cf2d42009-09-12 07:36:22 +00002310 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002311 close(monfd->fd);
2312 qemu_free(monfd->name);
2313 qemu_free(monfd);
2314 return;
2315 }
2316
Markus Armbruster063c1a02009-12-07 21:37:11 +01002317 qemu_error_new(QERR_FD_NOT_FOUND, fdname);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002318}
2319
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002320static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002321{
2322 int saved_vm_running = vm_running;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002323 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002324
2325 vm_stop(0);
2326
Juan Quintela05f24012009-08-20 19:42:22 +02002327 if (load_vmstate(mon, name) >= 0 && saved_vm_running)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002328 vm_start();
2329}
2330
Mark McLoughlin7768e042009-07-22 09:11:41 +01002331int monitor_get_fd(Monitor *mon, const char *fdname)
2332{
Anthony Liguoric227f092009-10-01 16:12:16 -05002333 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002334
Blue Swirl72cf2d42009-09-12 07:36:22 +00002335 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002336 int fd;
2337
2338 if (strcmp(monfd->name, fdname) != 0) {
2339 continue;
2340 }
2341
2342 fd = monfd->fd;
2343
2344 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002345 QLIST_REMOVE(monfd, next);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002346 qemu_free(monfd->name);
2347 qemu_free(monfd);
2348
2349 return fd;
2350 }
2351
2352 return -1;
2353}
2354
Anthony Liguoric227f092009-10-01 16:12:16 -05002355static const mon_cmd_t mon_cmds[] = {
Blue Swirl23130862009-06-06 08:22:04 +00002356#include "qemu-monitor.h"
ths5fafdf22007-09-16 21:08:06 +00002357 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002358};
2359
Blue Swirl23130862009-06-06 08:22:04 +00002360/* Please update qemu-monitor.hx when adding or changing commands */
Anthony Liguoric227f092009-10-01 16:12:16 -05002361static const mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002362 {
2363 .name = "version",
2364 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002365 .params = "",
2366 .help = "show the version of QEMU",
Luiz Capitulino45e914c2009-12-10 17:15:58 -02002367 .user_print = do_info_version_print,
Luiz Capitulinoab2d3182009-10-07 13:42:02 -03002368 .mhandler.info_new = do_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002369 },
2370 {
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -02002371 .name = "commands",
2372 .args_type = "",
2373 .params = "",
2374 .help = "list QMP available commands",
2375 .user_print = monitor_user_noop,
2376 .mhandler.info_new = do_info_commands,
2377 },
2378 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002379 .name = "network",
2380 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002381 .params = "",
2382 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002383 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002384 },
2385 {
2386 .name = "chardev",
2387 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002388 .params = "",
2389 .help = "show the character devices",
Luiz Capitulino588b3832009-12-10 17:16:08 -02002390 .user_print = qemu_chr_info_print,
2391 .mhandler.info_new = qemu_chr_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002392 },
2393 {
2394 .name = "block",
2395 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002396 .params = "",
2397 .help = "show the block devices",
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002398 .user_print = bdrv_info_print,
2399 .mhandler.info_new = bdrv_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002400 },
2401 {
2402 .name = "blockstats",
2403 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002404 .params = "",
2405 .help = "show block device statistics",
Luiz Capitulino218a5362009-12-10 17:16:07 -02002406 .user_print = bdrv_stats_print,
2407 .mhandler.info_new = bdrv_info_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002408 },
2409 {
2410 .name = "registers",
2411 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002412 .params = "",
2413 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002414 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002415 },
2416 {
2417 .name = "cpus",
2418 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002419 .params = "",
2420 .help = "show infos for each CPU",
Luiz Capitulino8f3cec02009-10-07 13:42:04 -03002421 .user_print = monitor_print_cpus,
2422 .mhandler.info_new = do_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002423 },
2424 {
2425 .name = "history",
2426 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002427 .params = "",
2428 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002429 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002430 },
2431 {
2432 .name = "irq",
2433 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002434 .params = "",
2435 .help = "show the interrupts statistics (if available)",
Luiz Capitulino910df892009-10-07 13:41:51 -03002436 .mhandler.info = irq_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002437 },
2438 {
2439 .name = "pic",
2440 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002441 .params = "",
2442 .help = "show i8259 (PIC) state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002443 .mhandler.info = pic_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002444 },
2445 {
2446 .name = "pci",
2447 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002448 .params = "",
2449 .help = "show PCI info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002450 .mhandler.info = pci_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002451 },
aurel327c664e22009-03-03 06:12:22 +00002452#if defined(TARGET_I386) || defined(TARGET_SH4)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002453 {
2454 .name = "tlb",
2455 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002456 .params = "",
2457 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002458 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002459 },
aurel327c664e22009-03-03 06:12:22 +00002460#endif
2461#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002462 {
2463 .name = "mem",
2464 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002465 .params = "",
2466 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002467 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002468 },
2469 {
2470 .name = "hpet",
2471 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002472 .params = "",
2473 .help = "show state of HPET",
Luiz Capitulino14f07202009-12-10 17:16:02 -02002474 .user_print = do_info_hpet_print,
2475 .mhandler.info_new = do_info_hpet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002476 },
bellardb86bda52004-09-18 19:32:46 +00002477#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002478 {
2479 .name = "jit",
2480 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002481 .params = "",
2482 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002483 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002484 },
2485 {
2486 .name = "kvm",
2487 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002488 .params = "",
2489 .help = "show KVM information",
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002490 .user_print = do_info_kvm_print,
2491 .mhandler.info_new = do_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002492 },
2493 {
2494 .name = "numa",
2495 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002496 .params = "",
2497 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002498 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002499 },
2500 {
2501 .name = "usb",
2502 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002503 .params = "",
2504 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002505 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002506 },
2507 {
2508 .name = "usbhost",
2509 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002510 .params = "",
2511 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002512 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002513 },
2514 {
2515 .name = "profile",
2516 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002517 .params = "",
2518 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002519 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002520 },
2521 {
2522 .name = "capture",
2523 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002524 .params = "",
2525 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002526 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002527 },
2528 {
2529 .name = "snapshots",
2530 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002531 .params = "",
2532 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002533 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002534 },
2535 {
2536 .name = "status",
2537 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002538 .params = "",
2539 .help = "show the current VM status (running|paused)",
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002540 .user_print = do_info_status_print,
2541 .mhandler.info_new = do_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002542 },
2543 {
2544 .name = "pcmcia",
2545 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002546 .params = "",
2547 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002548 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002549 },
2550 {
2551 .name = "mice",
2552 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002553 .params = "",
2554 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe78c48e2009-12-10 17:16:04 -02002555 .user_print = do_info_mice_print,
2556 .mhandler.info_new = do_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002557 },
2558 {
2559 .name = "vnc",
2560 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002561 .params = "",
2562 .help = "show the vnc server status",
Luiz Capitulinod96fd292009-12-10 17:16:10 -02002563 .user_print = do_info_vnc_print,
2564 .mhandler.info_new = do_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002565 },
2566 {
2567 .name = "name",
2568 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002569 .params = "",
2570 .help = "show the current VM name",
Luiz Capitulinoe05486c2009-12-10 17:16:01 -02002571 .user_print = do_info_name_print,
2572 .mhandler.info_new = do_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002573 },
2574 {
2575 .name = "uuid",
2576 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002577 .params = "",
2578 .help = "show the current VM UUID",
Luiz Capitulino9603ceb2009-12-10 17:16:03 -02002579 .user_print = do_info_uuid_print,
2580 .mhandler.info_new = do_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002581 },
j_mayer76a66252007-03-07 08:32:30 +00002582#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002583 {
2584 .name = "cpustats",
2585 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002586 .params = "",
2587 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002588 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002589 },
j_mayer76a66252007-03-07 08:32:30 +00002590#endif
blueswir131a60e22007-10-26 18:42:59 +00002591#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002592 {
2593 .name = "usernet",
2594 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002595 .params = "",
2596 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002597 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002598 },
blueswir131a60e22007-10-26 18:42:59 +00002599#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002600 {
2601 .name = "migrate",
2602 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002603 .params = "",
2604 .help = "show migration status",
Luiz Capitulinoc86a6682009-12-10 17:16:05 -02002605 .user_print = do_info_migrate_print,
2606 .mhandler.info_new = do_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002607 },
2608 {
2609 .name = "balloon",
2610 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002611 .params = "",
2612 .help = "show balloon information",
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002613 .user_print = monitor_print_balloon,
2614 .mhandler.info_new = do_info_balloon,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002615 },
2616 {
2617 .name = "qtree",
2618 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002619 .params = "",
2620 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002621 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002622 },
2623 {
2624 .name = "qdm",
2625 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002626 .params = "",
2627 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002628 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002629 },
2630 {
2631 .name = "roms",
2632 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002633 .params = "",
2634 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002635 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002636 },
2637 {
2638 .name = NULL,
2639 },
bellard9dc39cb2004-03-14 21:38:27 +00002640};
2641
bellard9307c4c2004-04-04 12:57:25 +00002642/*******************************************************************/
2643
2644static const char *pch;
2645static jmp_buf expr_env;
2646
bellard92a31b12005-02-10 22:00:52 +00002647#define MD_TLONG 0
2648#define MD_I32 1
2649
bellard9307c4c2004-04-04 12:57:25 +00002650typedef struct MonitorDef {
2651 const char *name;
2652 int offset;
blueswir18662d652008-10-02 18:32:44 +00002653 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002654 int type;
bellard9307c4c2004-04-04 12:57:25 +00002655} MonitorDef;
2656
bellard57206fd2004-04-25 18:54:52 +00002657#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002658static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002659{
bellard6a00d602005-11-21 23:25:50 +00002660 CPUState *env = mon_get_cpu();
2661 if (!env)
2662 return 0;
2663 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002664}
2665#endif
2666
bellarda541f292004-04-12 20:39:29 +00002667#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002668static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002669{
bellard6a00d602005-11-21 23:25:50 +00002670 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002671 unsigned int u;
2672 int i;
2673
bellard6a00d602005-11-21 23:25:50 +00002674 if (!env)
2675 return 0;
2676
bellarda541f292004-04-12 20:39:29 +00002677 u = 0;
2678 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002679 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002680
2681 return u;
2682}
2683
blueswir18662d652008-10-02 18:32:44 +00002684static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002685{
bellard6a00d602005-11-21 23:25:50 +00002686 CPUState *env = mon_get_cpu();
2687 if (!env)
2688 return 0;
j_mayer0411a972007-10-25 21:35:50 +00002689 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002690}
2691
blueswir18662d652008-10-02 18:32:44 +00002692static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002693{
bellard6a00d602005-11-21 23:25:50 +00002694 CPUState *env = mon_get_cpu();
2695 if (!env)
2696 return 0;
aurel323d7b4172008-10-21 11:28:46 +00002697 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002698}
bellard9fddaa02004-05-21 12:59:32 +00002699
blueswir18662d652008-10-02 18:32:44 +00002700static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002701{
bellard6a00d602005-11-21 23:25:50 +00002702 CPUState *env = mon_get_cpu();
2703 if (!env)
2704 return 0;
2705 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002706}
2707
blueswir18662d652008-10-02 18:32:44 +00002708static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002709{
bellard6a00d602005-11-21 23:25:50 +00002710 CPUState *env = mon_get_cpu();
2711 if (!env)
2712 return 0;
2713 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002714}
2715
blueswir18662d652008-10-02 18:32:44 +00002716static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002717{
bellard6a00d602005-11-21 23:25:50 +00002718 CPUState *env = mon_get_cpu();
2719 if (!env)
2720 return 0;
2721 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002722}
bellarda541f292004-04-12 20:39:29 +00002723#endif
2724
bellarde95c8d52004-09-30 22:22:08 +00002725#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002726#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002727static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002728{
bellard6a00d602005-11-21 23:25:50 +00002729 CPUState *env = mon_get_cpu();
2730 if (!env)
2731 return 0;
2732 return GET_PSR(env);
bellarde95c8d52004-09-30 22:22:08 +00002733}
bellard7b936c02005-10-30 17:05:13 +00002734#endif
bellarde95c8d52004-09-30 22:22:08 +00002735
blueswir18662d652008-10-02 18:32:44 +00002736static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002737{
bellard6a00d602005-11-21 23:25:50 +00002738 CPUState *env = mon_get_cpu();
2739 if (!env)
2740 return 0;
2741 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002742}
2743#endif
2744
blueswir18662d652008-10-02 18:32:44 +00002745static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002746#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002747
2748#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00002749 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00002750 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00002751 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002752
bellard9307c4c2004-04-04 12:57:25 +00002753 { "eax", offsetof(CPUState, regs[0]) },
2754 { "ecx", offsetof(CPUState, regs[1]) },
2755 { "edx", offsetof(CPUState, regs[2]) },
2756 { "ebx", offsetof(CPUState, regs[3]) },
2757 { "esp|sp", offsetof(CPUState, regs[4]) },
2758 { "ebp|fp", offsetof(CPUState, regs[5]) },
2759 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00002760 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002761#ifdef TARGET_X86_64
2762 { "r8", offsetof(CPUState, regs[8]) },
2763 { "r9", offsetof(CPUState, regs[9]) },
2764 { "r10", offsetof(CPUState, regs[10]) },
2765 { "r11", offsetof(CPUState, regs[11]) },
2766 { "r12", offsetof(CPUState, regs[12]) },
2767 { "r13", offsetof(CPUState, regs[13]) },
2768 { "r14", offsetof(CPUState, regs[14]) },
2769 { "r15", offsetof(CPUState, regs[15]) },
2770#endif
bellard9307c4c2004-04-04 12:57:25 +00002771 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00002772 { "eip", offsetof(CPUState, eip) },
2773 SEG("cs", R_CS)
2774 SEG("ds", R_DS)
2775 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002776 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002777 SEG("fs", R_FS)
2778 SEG("gs", R_GS)
2779 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002780#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002781 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00002782 { "r0", offsetof(CPUState, gpr[0]) },
2783 { "r1", offsetof(CPUState, gpr[1]) },
2784 { "r2", offsetof(CPUState, gpr[2]) },
2785 { "r3", offsetof(CPUState, gpr[3]) },
2786 { "r4", offsetof(CPUState, gpr[4]) },
2787 { "r5", offsetof(CPUState, gpr[5]) },
2788 { "r6", offsetof(CPUState, gpr[6]) },
2789 { "r7", offsetof(CPUState, gpr[7]) },
2790 { "r8", offsetof(CPUState, gpr[8]) },
2791 { "r9", offsetof(CPUState, gpr[9]) },
2792 { "r10", offsetof(CPUState, gpr[10]) },
2793 { "r11", offsetof(CPUState, gpr[11]) },
2794 { "r12", offsetof(CPUState, gpr[12]) },
2795 { "r13", offsetof(CPUState, gpr[13]) },
2796 { "r14", offsetof(CPUState, gpr[14]) },
2797 { "r15", offsetof(CPUState, gpr[15]) },
2798 { "r16", offsetof(CPUState, gpr[16]) },
2799 { "r17", offsetof(CPUState, gpr[17]) },
2800 { "r18", offsetof(CPUState, gpr[18]) },
2801 { "r19", offsetof(CPUState, gpr[19]) },
2802 { "r20", offsetof(CPUState, gpr[20]) },
2803 { "r21", offsetof(CPUState, gpr[21]) },
2804 { "r22", offsetof(CPUState, gpr[22]) },
2805 { "r23", offsetof(CPUState, gpr[23]) },
2806 { "r24", offsetof(CPUState, gpr[24]) },
2807 { "r25", offsetof(CPUState, gpr[25]) },
2808 { "r26", offsetof(CPUState, gpr[26]) },
2809 { "r27", offsetof(CPUState, gpr[27]) },
2810 { "r28", offsetof(CPUState, gpr[28]) },
2811 { "r29", offsetof(CPUState, gpr[29]) },
2812 { "r30", offsetof(CPUState, gpr[30]) },
2813 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00002814 /* Floating point registers */
2815 { "f0", offsetof(CPUState, fpr[0]) },
2816 { "f1", offsetof(CPUState, fpr[1]) },
2817 { "f2", offsetof(CPUState, fpr[2]) },
2818 { "f3", offsetof(CPUState, fpr[3]) },
2819 { "f4", offsetof(CPUState, fpr[4]) },
2820 { "f5", offsetof(CPUState, fpr[5]) },
2821 { "f6", offsetof(CPUState, fpr[6]) },
2822 { "f7", offsetof(CPUState, fpr[7]) },
2823 { "f8", offsetof(CPUState, fpr[8]) },
2824 { "f9", offsetof(CPUState, fpr[9]) },
2825 { "f10", offsetof(CPUState, fpr[10]) },
2826 { "f11", offsetof(CPUState, fpr[11]) },
2827 { "f12", offsetof(CPUState, fpr[12]) },
2828 { "f13", offsetof(CPUState, fpr[13]) },
2829 { "f14", offsetof(CPUState, fpr[14]) },
2830 { "f15", offsetof(CPUState, fpr[15]) },
2831 { "f16", offsetof(CPUState, fpr[16]) },
2832 { "f17", offsetof(CPUState, fpr[17]) },
2833 { "f18", offsetof(CPUState, fpr[18]) },
2834 { "f19", offsetof(CPUState, fpr[19]) },
2835 { "f20", offsetof(CPUState, fpr[20]) },
2836 { "f21", offsetof(CPUState, fpr[21]) },
2837 { "f22", offsetof(CPUState, fpr[22]) },
2838 { "f23", offsetof(CPUState, fpr[23]) },
2839 { "f24", offsetof(CPUState, fpr[24]) },
2840 { "f25", offsetof(CPUState, fpr[25]) },
2841 { "f26", offsetof(CPUState, fpr[26]) },
2842 { "f27", offsetof(CPUState, fpr[27]) },
2843 { "f28", offsetof(CPUState, fpr[28]) },
2844 { "f29", offsetof(CPUState, fpr[29]) },
2845 { "f30", offsetof(CPUState, fpr[30]) },
2846 { "f31", offsetof(CPUState, fpr[31]) },
2847 { "fpscr", offsetof(CPUState, fpscr) },
2848 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00002849 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00002850 { "lr", offsetof(CPUState, lr) },
2851 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00002852 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00002853 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00002854 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00002855 { "msr", 0, &monitor_get_msr, },
2856 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00002857 { "tbu", 0, &monitor_get_tbu, },
2858 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00002859#if defined(TARGET_PPC64)
2860 /* Address space register */
2861 { "asr", offsetof(CPUState, asr) },
2862#endif
2863 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00002864 { "sdr1", offsetof(CPUState, sdr1) },
2865 { "sr0", offsetof(CPUState, sr[0]) },
2866 { "sr1", offsetof(CPUState, sr[1]) },
2867 { "sr2", offsetof(CPUState, sr[2]) },
2868 { "sr3", offsetof(CPUState, sr[3]) },
2869 { "sr4", offsetof(CPUState, sr[4]) },
2870 { "sr5", offsetof(CPUState, sr[5]) },
2871 { "sr6", offsetof(CPUState, sr[6]) },
2872 { "sr7", offsetof(CPUState, sr[7]) },
2873 { "sr8", offsetof(CPUState, sr[8]) },
2874 { "sr9", offsetof(CPUState, sr[9]) },
2875 { "sr10", offsetof(CPUState, sr[10]) },
2876 { "sr11", offsetof(CPUState, sr[11]) },
2877 { "sr12", offsetof(CPUState, sr[12]) },
2878 { "sr13", offsetof(CPUState, sr[13]) },
2879 { "sr14", offsetof(CPUState, sr[14]) },
2880 { "sr15", offsetof(CPUState, sr[15]) },
2881 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00002882#elif defined(TARGET_SPARC)
2883 { "g0", offsetof(CPUState, gregs[0]) },
2884 { "g1", offsetof(CPUState, gregs[1]) },
2885 { "g2", offsetof(CPUState, gregs[2]) },
2886 { "g3", offsetof(CPUState, gregs[3]) },
2887 { "g4", offsetof(CPUState, gregs[4]) },
2888 { "g5", offsetof(CPUState, gregs[5]) },
2889 { "g6", offsetof(CPUState, gregs[6]) },
2890 { "g7", offsetof(CPUState, gregs[7]) },
2891 { "o0", 0, monitor_get_reg },
2892 { "o1", 1, monitor_get_reg },
2893 { "o2", 2, monitor_get_reg },
2894 { "o3", 3, monitor_get_reg },
2895 { "o4", 4, monitor_get_reg },
2896 { "o5", 5, monitor_get_reg },
2897 { "o6", 6, monitor_get_reg },
2898 { "o7", 7, monitor_get_reg },
2899 { "l0", 8, monitor_get_reg },
2900 { "l1", 9, monitor_get_reg },
2901 { "l2", 10, monitor_get_reg },
2902 { "l3", 11, monitor_get_reg },
2903 { "l4", 12, monitor_get_reg },
2904 { "l5", 13, monitor_get_reg },
2905 { "l6", 14, monitor_get_reg },
2906 { "l7", 15, monitor_get_reg },
2907 { "i0", 16, monitor_get_reg },
2908 { "i1", 17, monitor_get_reg },
2909 { "i2", 18, monitor_get_reg },
2910 { "i3", 19, monitor_get_reg },
2911 { "i4", 20, monitor_get_reg },
2912 { "i5", 21, monitor_get_reg },
2913 { "i6", 22, monitor_get_reg },
2914 { "i7", 23, monitor_get_reg },
2915 { "pc", offsetof(CPUState, pc) },
2916 { "npc", offsetof(CPUState, npc) },
2917 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00002918#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00002919 { "psr", 0, &monitor_get_psr, },
2920 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00002921#endif
bellarde95c8d52004-09-30 22:22:08 +00002922 { "tbr", offsetof(CPUState, tbr) },
2923 { "fsr", offsetof(CPUState, fsr) },
2924 { "f0", offsetof(CPUState, fpr[0]) },
2925 { "f1", offsetof(CPUState, fpr[1]) },
2926 { "f2", offsetof(CPUState, fpr[2]) },
2927 { "f3", offsetof(CPUState, fpr[3]) },
2928 { "f4", offsetof(CPUState, fpr[4]) },
2929 { "f5", offsetof(CPUState, fpr[5]) },
2930 { "f6", offsetof(CPUState, fpr[6]) },
2931 { "f7", offsetof(CPUState, fpr[7]) },
2932 { "f8", offsetof(CPUState, fpr[8]) },
2933 { "f9", offsetof(CPUState, fpr[9]) },
2934 { "f10", offsetof(CPUState, fpr[10]) },
2935 { "f11", offsetof(CPUState, fpr[11]) },
2936 { "f12", offsetof(CPUState, fpr[12]) },
2937 { "f13", offsetof(CPUState, fpr[13]) },
2938 { "f14", offsetof(CPUState, fpr[14]) },
2939 { "f15", offsetof(CPUState, fpr[15]) },
2940 { "f16", offsetof(CPUState, fpr[16]) },
2941 { "f17", offsetof(CPUState, fpr[17]) },
2942 { "f18", offsetof(CPUState, fpr[18]) },
2943 { "f19", offsetof(CPUState, fpr[19]) },
2944 { "f20", offsetof(CPUState, fpr[20]) },
2945 { "f21", offsetof(CPUState, fpr[21]) },
2946 { "f22", offsetof(CPUState, fpr[22]) },
2947 { "f23", offsetof(CPUState, fpr[23]) },
2948 { "f24", offsetof(CPUState, fpr[24]) },
2949 { "f25", offsetof(CPUState, fpr[25]) },
2950 { "f26", offsetof(CPUState, fpr[26]) },
2951 { "f27", offsetof(CPUState, fpr[27]) },
2952 { "f28", offsetof(CPUState, fpr[28]) },
2953 { "f29", offsetof(CPUState, fpr[29]) },
2954 { "f30", offsetof(CPUState, fpr[30]) },
2955 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00002956#ifdef TARGET_SPARC64
2957 { "f32", offsetof(CPUState, fpr[32]) },
2958 { "f34", offsetof(CPUState, fpr[34]) },
2959 { "f36", offsetof(CPUState, fpr[36]) },
2960 { "f38", offsetof(CPUState, fpr[38]) },
2961 { "f40", offsetof(CPUState, fpr[40]) },
2962 { "f42", offsetof(CPUState, fpr[42]) },
2963 { "f44", offsetof(CPUState, fpr[44]) },
2964 { "f46", offsetof(CPUState, fpr[46]) },
2965 { "f48", offsetof(CPUState, fpr[48]) },
2966 { "f50", offsetof(CPUState, fpr[50]) },
2967 { "f52", offsetof(CPUState, fpr[52]) },
2968 { "f54", offsetof(CPUState, fpr[54]) },
2969 { "f56", offsetof(CPUState, fpr[56]) },
2970 { "f58", offsetof(CPUState, fpr[58]) },
2971 { "f60", offsetof(CPUState, fpr[60]) },
2972 { "f62", offsetof(CPUState, fpr[62]) },
2973 { "asi", offsetof(CPUState, asi) },
2974 { "pstate", offsetof(CPUState, pstate) },
2975 { "cansave", offsetof(CPUState, cansave) },
2976 { "canrestore", offsetof(CPUState, canrestore) },
2977 { "otherwin", offsetof(CPUState, otherwin) },
2978 { "wstate", offsetof(CPUState, wstate) },
2979 { "cleanwin", offsetof(CPUState, cleanwin) },
2980 { "fprs", offsetof(CPUState, fprs) },
2981#endif
bellard9307c4c2004-04-04 12:57:25 +00002982#endif
2983 { NULL },
2984};
2985
aliguori376253e2009-03-05 23:01:23 +00002986static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00002987{
aliguori376253e2009-03-05 23:01:23 +00002988 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00002989 longjmp(expr_env, 1);
2990}
2991
bellard6a00d602005-11-21 23:25:50 +00002992/* return 0 if OK, -1 if not found, -2 if no CPU defined */
bellard92a31b12005-02-10 22:00:52 +00002993static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00002994{
blueswir18662d652008-10-02 18:32:44 +00002995 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00002996 void *ptr;
2997
bellard9307c4c2004-04-04 12:57:25 +00002998 for(md = monitor_defs; md->name != NULL; md++) {
2999 if (compare_cmd(name, md->name)) {
3000 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003001 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003002 } else {
bellard6a00d602005-11-21 23:25:50 +00003003 CPUState *env = mon_get_cpu();
3004 if (!env)
3005 return -2;
3006 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003007 switch(md->type) {
3008 case MD_I32:
3009 *pval = *(int32_t *)ptr;
3010 break;
3011 case MD_TLONG:
3012 *pval = *(target_long *)ptr;
3013 break;
3014 default:
3015 *pval = 0;
3016 break;
3017 }
bellard9307c4c2004-04-04 12:57:25 +00003018 }
3019 return 0;
3020 }
3021 }
3022 return -1;
3023}
3024
3025static void next(void)
3026{
Blue Swirl660f11b2009-07-31 21:16:51 +00003027 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003028 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003029 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003030 pch++;
3031 }
3032}
3033
aliguori376253e2009-03-05 23:01:23 +00003034static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003035
aliguori376253e2009-03-05 23:01:23 +00003036static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003037{
blueswir1c2efc952007-09-25 17:28:42 +00003038 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003039 char *p;
bellard6a00d602005-11-21 23:25:50 +00003040 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003041
3042 switch(*pch) {
3043 case '+':
3044 next();
aliguori376253e2009-03-05 23:01:23 +00003045 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003046 break;
3047 case '-':
3048 next();
aliguori376253e2009-03-05 23:01:23 +00003049 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003050 break;
3051 case '~':
3052 next();
aliguori376253e2009-03-05 23:01:23 +00003053 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003054 break;
3055 case '(':
3056 next();
aliguori376253e2009-03-05 23:01:23 +00003057 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003058 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003059 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003060 }
3061 next();
3062 break;
bellard81d09122004-07-14 17:21:37 +00003063 case '\'':
3064 pch++;
3065 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003066 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003067 n = *pch;
3068 pch++;
3069 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003070 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003071 next();
3072 break;
bellard9307c4c2004-04-04 12:57:25 +00003073 case '$':
3074 {
3075 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003076 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003077
bellard9307c4c2004-04-04 12:57:25 +00003078 pch++;
3079 q = buf;
3080 while ((*pch >= 'a' && *pch <= 'z') ||
3081 (*pch >= 'A' && *pch <= 'Z') ||
3082 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003083 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003084 if ((q - buf) < sizeof(buf) - 1)
3085 *q++ = *pch;
3086 pch++;
3087 }
blueswir1cd390082008-11-16 13:53:32 +00003088 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003089 pch++;
3090 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003091 ret = get_monitor_def(&reg, buf);
bellard6a00d602005-11-21 23:25:50 +00003092 if (ret == -1)
aliguori376253e2009-03-05 23:01:23 +00003093 expr_error(mon, "unknown register");
ths5fafdf22007-09-16 21:08:06 +00003094 else if (ret == -2)
aliguori376253e2009-03-05 23:01:23 +00003095 expr_error(mon, "no cpu defined");
blueswir17743e582007-09-24 18:39:04 +00003096 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003097 }
3098 break;
3099 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003100 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003101 n = 0;
3102 break;
3103 default:
blueswir17743e582007-09-24 18:39:04 +00003104#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003105 n = strtoull(pch, &p, 0);
3106#else
bellard9307c4c2004-04-04 12:57:25 +00003107 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003108#endif
bellard9307c4c2004-04-04 12:57:25 +00003109 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003110 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003111 }
3112 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003113 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003114 pch++;
3115 break;
3116 }
3117 return n;
3118}
3119
3120
aliguori376253e2009-03-05 23:01:23 +00003121static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003122{
blueswir1c2efc952007-09-25 17:28:42 +00003123 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003124 int op;
ths3b46e622007-09-17 08:09:54 +00003125
aliguori376253e2009-03-05 23:01:23 +00003126 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003127 for(;;) {
3128 op = *pch;
3129 if (op != '*' && op != '/' && op != '%')
3130 break;
3131 next();
aliguori376253e2009-03-05 23:01:23 +00003132 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003133 switch(op) {
3134 default:
3135 case '*':
3136 val *= val2;
3137 break;
3138 case '/':
3139 case '%':
ths5fafdf22007-09-16 21:08:06 +00003140 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003141 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003142 if (op == '/')
3143 val /= val2;
3144 else
3145 val %= val2;
3146 break;
3147 }
3148 }
3149 return val;
3150}
3151
aliguori376253e2009-03-05 23:01:23 +00003152static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003153{
blueswir1c2efc952007-09-25 17:28:42 +00003154 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003155 int op;
bellard9307c4c2004-04-04 12:57:25 +00003156
aliguori376253e2009-03-05 23:01:23 +00003157 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003158 for(;;) {
3159 op = *pch;
3160 if (op != '&' && op != '|' && op != '^')
3161 break;
3162 next();
aliguori376253e2009-03-05 23:01:23 +00003163 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003164 switch(op) {
3165 default:
3166 case '&':
3167 val &= val2;
3168 break;
3169 case '|':
3170 val |= val2;
3171 break;
3172 case '^':
3173 val ^= val2;
3174 break;
3175 }
3176 }
3177 return val;
3178}
3179
aliguori376253e2009-03-05 23:01:23 +00003180static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003181{
blueswir1c2efc952007-09-25 17:28:42 +00003182 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003183 int op;
bellard9307c4c2004-04-04 12:57:25 +00003184
aliguori376253e2009-03-05 23:01:23 +00003185 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003186 for(;;) {
3187 op = *pch;
3188 if (op != '+' && op != '-')
3189 break;
3190 next();
aliguori376253e2009-03-05 23:01:23 +00003191 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003192 if (op == '+')
3193 val += val2;
3194 else
3195 val -= val2;
3196 }
3197 return val;
3198}
3199
aliguori376253e2009-03-05 23:01:23 +00003200static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003201{
3202 pch = *pp;
3203 if (setjmp(expr_env)) {
3204 *pp = pch;
3205 return -1;
3206 }
blueswir1cd390082008-11-16 13:53:32 +00003207 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003208 pch++;
aliguori376253e2009-03-05 23:01:23 +00003209 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003210 *pp = pch;
3211 return 0;
3212}
3213
3214static int get_str(char *buf, int buf_size, const char **pp)
3215{
3216 const char *p;
3217 char *q;
3218 int c;
3219
bellard81d09122004-07-14 17:21:37 +00003220 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003221 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003222 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003223 p++;
3224 if (*p == '\0') {
3225 fail:
bellard81d09122004-07-14 17:21:37 +00003226 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003227 *pp = p;
3228 return -1;
3229 }
bellard9307c4c2004-04-04 12:57:25 +00003230 if (*p == '\"') {
3231 p++;
3232 while (*p != '\0' && *p != '\"') {
3233 if (*p == '\\') {
3234 p++;
3235 c = *p++;
3236 switch(c) {
3237 case 'n':
3238 c = '\n';
3239 break;
3240 case 'r':
3241 c = '\r';
3242 break;
3243 case '\\':
3244 case '\'':
3245 case '\"':
3246 break;
3247 default:
3248 qemu_printf("unsupported escape code: '\\%c'\n", c);
3249 goto fail;
3250 }
3251 if ((q - buf) < buf_size - 1) {
3252 *q++ = c;
3253 }
3254 } else {
3255 if ((q - buf) < buf_size - 1) {
3256 *q++ = *p;
3257 }
3258 p++;
3259 }
3260 }
3261 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003262 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003263 goto fail;
3264 }
3265 p++;
3266 } else {
blueswir1cd390082008-11-16 13:53:32 +00003267 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003268 if ((q - buf) < buf_size - 1) {
3269 *q++ = *p;
3270 }
3271 p++;
3272 }
bellard9307c4c2004-04-04 12:57:25 +00003273 }
bellard81d09122004-07-14 17:21:37 +00003274 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003275 *pp = p;
3276 return 0;
3277}
3278
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003279/*
3280 * Store the command-name in cmdname, and return a pointer to
3281 * the remaining of the command string.
3282 */
3283static const char *get_command_name(const char *cmdline,
3284 char *cmdname, size_t nlen)
3285{
3286 size_t len;
3287 const char *p, *pstart;
3288
3289 p = cmdline;
3290 while (qemu_isspace(*p))
3291 p++;
3292 if (*p == '\0')
3293 return NULL;
3294 pstart = p;
3295 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3296 p++;
3297 len = p - pstart;
3298 if (len > nlen - 1)
3299 len = nlen - 1;
3300 memcpy(cmdname, pstart, len);
3301 cmdname[len] = '\0';
3302 return p;
3303}
3304
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003305/**
3306 * Read key of 'type' into 'key' and return the current
3307 * 'type' pointer.
3308 */
3309static char *key_get_info(const char *type, char **key)
3310{
3311 size_t len;
3312 char *p, *str;
3313
3314 if (*type == ',')
3315 type++;
3316
3317 p = strchr(type, ':');
3318 if (!p) {
3319 *key = NULL;
3320 return NULL;
3321 }
3322 len = p - type;
3323
3324 str = qemu_malloc(len + 1);
3325 memcpy(str, type, len);
3326 str[len] = '\0';
3327
3328 *key = str;
3329 return ++p;
3330}
3331
bellard9307c4c2004-04-04 12:57:25 +00003332static int default_fmt_format = 'x';
3333static int default_fmt_size = 4;
3334
3335#define MAX_ARGS 16
3336
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003337static int is_valid_option(const char *c, const char *typestr)
3338{
3339 char option[3];
3340
3341 option[0] = '-';
3342 option[1] = *c;
3343 option[2] = '\0';
3344
3345 typestr = strstr(typestr, option);
3346 return (typestr != NULL);
3347}
3348
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003349static const mon_cmd_t *monitor_find_command(const char *cmdname)
3350{
3351 const mon_cmd_t *cmd;
3352
3353 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
3354 if (compare_cmd(cmdname, cmd->name)) {
3355 return cmd;
3356 }
3357 }
3358
3359 return NULL;
3360}
3361
Anthony Liguoric227f092009-10-01 16:12:16 -05003362static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003363 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003364 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003365{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003366 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003367 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003368 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003369 char cmdname[256];
3370 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003371 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003372
3373#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003374 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003375#endif
ths3b46e622007-09-17 08:09:54 +00003376
bellard9307c4c2004-04-04 12:57:25 +00003377 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003378 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3379 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003380 return NULL;
ths3b46e622007-09-17 08:09:54 +00003381
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003382 cmd = monitor_find_command(cmdname);
3383 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003384 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003385 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003386 }
bellard9307c4c2004-04-04 12:57:25 +00003387
bellard9307c4c2004-04-04 12:57:25 +00003388 /* parse the parameters */
3389 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003390 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003391 typestr = key_get_info(typestr, &key);
3392 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003393 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003394 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003395 typestr++;
3396 switch(c) {
3397 case 'F':
bellard81d09122004-07-14 17:21:37 +00003398 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003399 case 's':
3400 {
3401 int ret;
ths3b46e622007-09-17 08:09:54 +00003402
blueswir1cd390082008-11-16 13:53:32 +00003403 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003404 p++;
3405 if (*typestr == '?') {
3406 typestr++;
3407 if (*p == '\0') {
3408 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003409 break;
bellard9307c4c2004-04-04 12:57:25 +00003410 }
3411 }
3412 ret = get_str(buf, sizeof(buf), &p);
3413 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003414 switch(c) {
3415 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003416 monitor_printf(mon, "%s: filename expected\n",
3417 cmdname);
bellard81d09122004-07-14 17:21:37 +00003418 break;
3419 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003420 monitor_printf(mon, "%s: block device name expected\n",
3421 cmdname);
bellard81d09122004-07-14 17:21:37 +00003422 break;
3423 default:
aliguori376253e2009-03-05 23:01:23 +00003424 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003425 break;
3426 }
bellard9307c4c2004-04-04 12:57:25 +00003427 goto fail;
3428 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003429 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003430 }
3431 break;
3432 case '/':
3433 {
3434 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003435
blueswir1cd390082008-11-16 13:53:32 +00003436 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003437 p++;
3438 if (*p == '/') {
3439 /* format found */
3440 p++;
3441 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003442 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003443 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003444 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003445 count = count * 10 + (*p - '0');
3446 p++;
3447 }
3448 }
3449 size = -1;
3450 format = -1;
3451 for(;;) {
3452 switch(*p) {
3453 case 'o':
3454 case 'd':
3455 case 'u':
3456 case 'x':
3457 case 'i':
3458 case 'c':
3459 format = *p++;
3460 break;
3461 case 'b':
3462 size = 1;
3463 p++;
3464 break;
3465 case 'h':
3466 size = 2;
3467 p++;
3468 break;
3469 case 'w':
3470 size = 4;
3471 p++;
3472 break;
3473 case 'g':
3474 case 'L':
3475 size = 8;
3476 p++;
3477 break;
3478 default:
3479 goto next;
3480 }
3481 }
3482 next:
blueswir1cd390082008-11-16 13:53:32 +00003483 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003484 monitor_printf(mon, "invalid char in format: '%c'\n",
3485 *p);
bellard9307c4c2004-04-04 12:57:25 +00003486 goto fail;
3487 }
bellard9307c4c2004-04-04 12:57:25 +00003488 if (format < 0)
3489 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003490 if (format != 'i') {
3491 /* for 'i', not specifying a size gives -1 as size */
3492 if (size < 0)
3493 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003494 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003495 }
bellard9307c4c2004-04-04 12:57:25 +00003496 default_fmt_format = format;
3497 } else {
3498 count = 1;
3499 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003500 if (format != 'i') {
3501 size = default_fmt_size;
3502 } else {
3503 size = -1;
3504 }
bellard9307c4c2004-04-04 12:57:25 +00003505 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003506 qdict_put(qdict, "count", qint_from_int(count));
3507 qdict_put(qdict, "format", qint_from_int(format));
3508 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003509 }
3510 break;
3511 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003512 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003513 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003514 {
blueswir1c2efc952007-09-25 17:28:42 +00003515 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003516
blueswir1cd390082008-11-16 13:53:32 +00003517 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003518 p++;
bellard34405572004-06-08 00:55:58 +00003519 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003520 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003521 if (*p == '\0') {
3522 typestr++;
3523 break;
3524 }
bellard34405572004-06-08 00:55:58 +00003525 } else {
3526 if (*p == '.') {
3527 p++;
blueswir1cd390082008-11-16 13:53:32 +00003528 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003529 p++;
bellard34405572004-06-08 00:55:58 +00003530 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003531 typestr++;
3532 break;
bellard34405572004-06-08 00:55:58 +00003533 }
3534 }
bellard13224a82006-07-14 22:03:35 +00003535 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003536 }
aliguori376253e2009-03-05 23:01:23 +00003537 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003538 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003539 /* Check if 'i' is greater than 32-bit */
3540 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3541 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3542 monitor_printf(mon, "integer is for 32-bit values\n");
3543 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003544 } else if (c == 'M') {
3545 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003546 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003547 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003548 }
3549 break;
3550 case '-':
3551 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003552 const char *tmp = p;
3553 int has_option, skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003554 /* option */
ths3b46e622007-09-17 08:09:54 +00003555
bellard9307c4c2004-04-04 12:57:25 +00003556 c = *typestr++;
3557 if (c == '\0')
3558 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003559 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003560 p++;
3561 has_option = 0;
3562 if (*p == '-') {
3563 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003564 if(c != *p) {
3565 if(!is_valid_option(p, typestr)) {
3566
3567 monitor_printf(mon, "%s: unsupported option -%c\n",
3568 cmdname, *p);
3569 goto fail;
3570 } else {
3571 skip_key = 1;
3572 }
bellard9307c4c2004-04-04 12:57:25 +00003573 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003574 if(skip_key) {
3575 p = tmp;
3576 } else {
3577 p++;
3578 has_option = 1;
3579 }
bellard9307c4c2004-04-04 12:57:25 +00003580 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003581 qdict_put(qdict, key, qint_from_int(has_option));
bellard9307c4c2004-04-04 12:57:25 +00003582 }
3583 break;
3584 default:
3585 bad_type:
aliguori376253e2009-03-05 23:01:23 +00003586 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00003587 goto fail;
3588 }
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003589 qemu_free(key);
3590 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003591 }
3592 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003593 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003594 p++;
3595 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003596 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3597 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00003598 goto fail;
3599 }
3600
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003601 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003602
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003603fail:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003604 qemu_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003605 return NULL;
3606}
3607
Luiz Capitulino8204a912009-11-18 23:05:31 -02003608static void monitor_print_error(Monitor *mon)
3609{
3610 qerror_print(mon->error);
3611 QDECREF(mon->error);
3612 mon->error = NULL;
3613}
3614
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003615static void monitor_call_handler(Monitor *mon, const mon_cmd_t *cmd,
3616 const QDict *params)
3617{
3618 QObject *data = NULL;
3619
3620 cmd->mhandler.cmd_new(mon, params, &data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -02003621
3622 if (monitor_ctrl_mode(mon)) {
3623 /* Monitor Protocol */
3624 monitor_protocol_emitter(mon, data);
3625 } else {
3626 /* User Protocol */
3627 if (data)
3628 cmd->user_print(mon, data);
3629 }
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003630
3631 qobject_decref(data);
3632}
3633
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003634static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003635{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003636 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003637 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003638
3639 qdict = qdict_new();
3640
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03003641 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003642 if (!cmd)
3643 goto out;
3644
3645 qemu_errors_to_mon(mon);
3646
3647 if (monitor_handler_ported(cmd)) {
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003648 monitor_call_handler(mon, cmd, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003649 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03003650 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003651 }
3652
Luiz Capitulino8204a912009-11-18 23:05:31 -02003653 if (monitor_has_error(mon))
3654 monitor_print_error(mon);
3655
3656 qemu_errors_to_previous();
Luiz Capitulino13917be2009-10-07 13:41:54 -03003657
3658out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003659 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00003660}
3661
bellard81d09122004-07-14 17:21:37 +00003662static void cmd_completion(const char *name, const char *list)
3663{
3664 const char *p, *pstart;
3665 char cmd[128];
3666 int len;
3667
3668 p = list;
3669 for(;;) {
3670 pstart = p;
3671 p = strchr(p, '|');
3672 if (!p)
3673 p = pstart + strlen(pstart);
3674 len = p - pstart;
3675 if (len > sizeof(cmd) - 2)
3676 len = sizeof(cmd) - 2;
3677 memcpy(cmd, pstart, len);
3678 cmd[len] = '\0';
3679 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00003680 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00003681 }
3682 if (*p == '\0')
3683 break;
3684 p++;
3685 }
3686}
3687
3688static void file_completion(const char *input)
3689{
3690 DIR *ffs;
3691 struct dirent *d;
3692 char path[1024];
3693 char file[1024], file_prefix[1024];
3694 int input_path_len;
3695 const char *p;
3696
ths5fafdf22007-09-16 21:08:06 +00003697 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00003698 if (!p) {
3699 input_path_len = 0;
3700 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00003701 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00003702 } else {
3703 input_path_len = p - input + 1;
3704 memcpy(path, input, input_path_len);
3705 if (input_path_len > sizeof(path) - 1)
3706 input_path_len = sizeof(path) - 1;
3707 path[input_path_len] = '\0';
3708 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3709 }
3710#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00003711 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
3712 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00003713#endif
3714 ffs = opendir(path);
3715 if (!ffs)
3716 return;
3717 for(;;) {
3718 struct stat sb;
3719 d = readdir(ffs);
3720 if (!d)
3721 break;
3722 if (strstart(d->d_name, file_prefix, NULL)) {
3723 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00003724 if (input_path_len < sizeof(file))
3725 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3726 d->d_name);
bellard81d09122004-07-14 17:21:37 +00003727 /* stat the file to find out if it's a directory.
3728 * In that case add a slash to speed up typing long paths
3729 */
3730 stat(file, &sb);
3731 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00003732 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00003733 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00003734 }
3735 }
3736 closedir(ffs);
3737}
3738
aliguori51de9762009-03-05 23:00:43 +00003739static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00003740{
aliguori51de9762009-03-05 23:00:43 +00003741 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00003742 const char *input = opaque;
3743
3744 if (input[0] == '\0' ||
3745 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00003746 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00003747 }
3748}
3749
3750/* NOTE: this parser is an approximate form of the real command parser */
3751static void parse_cmdline(const char *cmdline,
3752 int *pnb_args, char **args)
3753{
3754 const char *p;
3755 int nb_args, ret;
3756 char buf[1024];
3757
3758 p = cmdline;
3759 nb_args = 0;
3760 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00003761 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00003762 p++;
3763 if (*p == '\0')
3764 break;
3765 if (nb_args >= MAX_ARGS)
3766 break;
3767 ret = get_str(buf, sizeof(buf), &p);
3768 args[nb_args] = qemu_strdup(buf);
3769 nb_args++;
3770 if (ret < 0)
3771 break;
3772 }
3773 *pnb_args = nb_args;
3774}
3775
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003776static const char *next_arg_type(const char *typestr)
3777{
3778 const char *p = strchr(typestr, ':');
3779 return (p != NULL ? ++p : typestr);
3780}
3781
aliguori4c36ba32009-03-05 23:01:37 +00003782static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00003783{
3784 const char *cmdname;
3785 char *args[MAX_ARGS];
3786 int nb_args, i, len;
3787 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05003788 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00003789 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00003790
3791 parse_cmdline(cmdline, &nb_args, args);
3792#ifdef DEBUG_COMPLETION
3793 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00003794 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00003795 }
3796#endif
3797
3798 /* if the line ends with a space, it means we want to complete the
3799 next arg */
3800 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00003801 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
bellard81d09122004-07-14 17:21:37 +00003802 if (nb_args >= MAX_ARGS)
3803 return;
3804 args[nb_args++] = qemu_strdup("");
3805 }
3806 if (nb_args <= 1) {
3807 /* command completion */
3808 if (nb_args == 0)
3809 cmdname = "";
3810 else
3811 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00003812 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00003813 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00003814 cmd_completion(cmdname, cmd->name);
3815 }
3816 } else {
3817 /* find the command */
aliguori376253e2009-03-05 23:01:23 +00003818 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00003819 if (compare_cmd(args[0], cmd->name))
3820 goto found;
3821 }
3822 return;
3823 found:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003824 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00003825 for(i = 0; i < nb_args - 2; i++) {
3826 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003827 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00003828 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003829 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00003830 }
3831 }
3832 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00003833 if (*ptype == '-' && ptype[1] != '\0') {
3834 ptype += 2;
3835 }
bellard81d09122004-07-14 17:21:37 +00003836 switch(*ptype) {
3837 case 'F':
3838 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00003839 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00003840 file_completion(str);
3841 break;
3842 case 'B':
3843 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00003844 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00003845 bdrv_iterate(block_completion_it, (void *)str);
3846 break;
bellard7fe48482004-10-09 18:08:01 +00003847 case 's':
3848 /* XXX: more generic ? */
3849 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00003850 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00003851 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
3852 cmd_completion(str, cmd->name);
3853 }
bellard64866c32006-05-07 18:03:31 +00003854 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00003855 char *sep = strrchr(str, '-');
3856 if (sep)
3857 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00003858 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00003859 for(key = key_defs; key->name != NULL; key++) {
3860 cmd_completion(str, key->name);
3861 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02003862 } else if (!strcmp(cmd->name, "help|?")) {
3863 readline_set_completion_index(cur_mon->rs, strlen(str));
3864 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
3865 cmd_completion(str, cmd->name);
3866 }
bellard7fe48482004-10-09 18:08:01 +00003867 }
3868 break;
bellard81d09122004-07-14 17:21:37 +00003869 default:
3870 break;
3871 }
3872 }
3873 for(i = 0; i < nb_args; i++)
3874 qemu_free(args[i]);
3875}
3876
aliguori731b0362009-03-05 23:01:42 +00003877static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00003878{
aliguori731b0362009-03-05 23:01:42 +00003879 Monitor *mon = opaque;
3880
Jan Kiszkac62313b2009-12-04 14:05:29 +01003881 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00003882}
3883
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02003884typedef struct CmdArgs {
3885 QString *name;
3886 int type;
3887 int flag;
3888 int optional;
3889} CmdArgs;
3890
3891static int check_opt(const CmdArgs *cmd_args, const char *name, QDict *args)
3892{
3893 if (!cmd_args->optional) {
3894 qemu_error_new(QERR_MISSING_PARAMETER, name);
3895 return -1;
3896 }
3897
3898 if (cmd_args->type == '-') {
3899 /* handlers expect a value, they need to be changed */
3900 qdict_put(args, name, qint_from_int(0));
3901 }
3902
3903 return 0;
3904}
3905
3906static int check_arg(const CmdArgs *cmd_args, QDict *args)
3907{
3908 QObject *value;
3909 const char *name;
3910
3911 name = qstring_get_str(cmd_args->name);
3912
3913 if (!args) {
3914 return check_opt(cmd_args, name, args);
3915 }
3916
3917 value = qdict_get(args, name);
3918 if (!value) {
3919 return check_opt(cmd_args, name, args);
3920 }
3921
3922 switch (cmd_args->type) {
3923 case 'F':
3924 case 'B':
3925 case 's':
3926 if (qobject_type(value) != QTYPE_QSTRING) {
3927 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "string");
3928 return -1;
3929 }
3930 break;
3931 case '/': {
3932 int i;
3933 const char *keys[] = { "count", "format", "size", NULL };
3934
3935 for (i = 0; keys[i]; i++) {
3936 QObject *obj = qdict_get(args, keys[i]);
3937 if (!obj) {
3938 qemu_error_new(QERR_MISSING_PARAMETER, name);
3939 return -1;
3940 }
3941 if (qobject_type(obj) != QTYPE_QINT) {
3942 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "int");
3943 return -1;
3944 }
3945 }
3946 break;
3947 }
3948 case 'i':
3949 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003950 case 'M':
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02003951 if (qobject_type(value) != QTYPE_QINT) {
3952 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "int");
3953 return -1;
3954 }
3955 break;
3956 case '-':
3957 if (qobject_type(value) != QTYPE_QINT &&
3958 qobject_type(value) != QTYPE_QBOOL) {
3959 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "bool");
3960 return -1;
3961 }
3962 if (qobject_type(value) == QTYPE_QBOOL) {
3963 /* handlers expect a QInt, they need to be changed */
3964 qdict_put(args, name,
3965 qint_from_int(qbool_get_int(qobject_to_qbool(value))));
3966 }
3967 break;
3968 default:
3969 /* impossible */
3970 abort();
3971 }
3972
3973 return 0;
3974}
3975
3976static void cmd_args_init(CmdArgs *cmd_args)
3977{
3978 cmd_args->name = qstring_new();
3979 cmd_args->type = cmd_args->flag = cmd_args->optional = 0;
3980}
3981
3982/*
3983 * This is not trivial, we have to parse Monitor command's argument
3984 * type syntax to be able to check the arguments provided by clients.
3985 *
3986 * In the near future we will be using an array for that and will be
3987 * able to drop all this parsing...
3988 */
3989static int monitor_check_qmp_args(const mon_cmd_t *cmd, QDict *args)
3990{
3991 int err;
3992 const char *p;
3993 CmdArgs cmd_args;
3994
Blue Swirldd5121b2009-12-04 20:52:02 +00003995 if (cmd->args_type == NULL) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02003996 return (qdict_size(args) == 0 ? 0 : -1);
3997 }
3998
3999 err = 0;
4000 cmd_args_init(&cmd_args);
4001
4002 for (p = cmd->args_type;; p++) {
4003 if (*p == ':') {
4004 cmd_args.type = *++p;
4005 p++;
4006 if (cmd_args.type == '-') {
4007 cmd_args.flag = *p++;
4008 cmd_args.optional = 1;
4009 } else if (*p == '?') {
4010 cmd_args.optional = 1;
4011 p++;
4012 }
4013
4014 assert(*p == ',' || *p == '\0');
4015 err = check_arg(&cmd_args, args);
4016
4017 QDECREF(cmd_args.name);
4018 cmd_args_init(&cmd_args);
4019
4020 if (err < 0) {
4021 break;
4022 }
4023 } else {
4024 qstring_append_chr(cmd_args.name, *p);
4025 }
4026
4027 if (*p == '\0') {
4028 break;
4029 }
4030 }
4031
4032 QDECREF(cmd_args.name);
4033 return err;
4034}
4035
4036static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4037{
4038 int err;
4039 QObject *obj;
4040 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004041 const mon_cmd_t *cmd;
4042 Monitor *mon = cur_mon;
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004043 const char *cmd_name, *info_item;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004044
4045 args = NULL;
4046 qemu_errors_to_mon(mon);
4047
4048 obj = json_parser_parse(tokens, NULL);
4049 if (!obj) {
4050 // FIXME: should be triggered in json_parser_parse()
4051 qemu_error_new(QERR_JSON_PARSING);
4052 goto err_out;
4053 } else if (qobject_type(obj) != QTYPE_QDICT) {
4054 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "object");
4055 qobject_decref(obj);
4056 goto err_out;
4057 }
4058
4059 input = qobject_to_qdict(obj);
4060
4061 mon->mc->id = qdict_get(input, "id");
4062 qobject_incref(mon->mc->id);
4063
4064 obj = qdict_get(input, "execute");
4065 if (!obj) {
4066 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4067 goto err_input;
4068 } else if (qobject_type(obj) != QTYPE_QSTRING) {
4069 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "string");
4070 goto err_input;
4071 }
4072
4073 cmd_name = qstring_get_str(qobject_to_qstring(obj));
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004074
4075 /*
4076 * XXX: We need this special case until we get info handlers
4077 * converted into 'query-' commands
4078 */
4079 if (compare_cmd(cmd_name, "info")) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004080 qemu_error_new(QERR_COMMAND_NOT_FOUND, cmd_name);
4081 goto err_input;
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004082 } else if (strstart(cmd_name, "query-", &info_item)) {
4083 cmd = monitor_find_command("info");
4084 qdict_put_obj(input, "arguments",
4085 qobject_from_jsonf("{ 'item': %s }", info_item));
4086 } else {
4087 cmd = monitor_find_command(cmd_name);
Luiz Capitulino43e713c2009-12-18 13:24:59 -02004088 if (!cmd || !monitor_handler_ported(cmd)) {
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004089 qemu_error_new(QERR_COMMAND_NOT_FOUND, cmd_name);
4090 goto err_input;
4091 }
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004092 }
4093
4094 obj = qdict_get(input, "arguments");
4095 if (!obj) {
4096 args = qdict_new();
4097 } else {
4098 args = qobject_to_qdict(obj);
4099 QINCREF(args);
4100 }
4101
4102 QDECREF(input);
4103
4104 err = monitor_check_qmp_args(cmd, args);
4105 if (err < 0) {
4106 goto err_out;
4107 }
4108
4109 monitor_call_handler(mon, cmd, args);
4110 goto out;
4111
4112err_input:
4113 QDECREF(input);
4114err_out:
4115 monitor_protocol_emitter(mon, NULL);
4116out:
4117 QDECREF(args);
4118 qemu_errors_to_previous();
4119}
4120
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004121/**
4122 * monitor_control_read(): Read and handle QMP input
4123 */
4124static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4125{
4126 Monitor *old_mon = cur_mon;
4127
4128 cur_mon = opaque;
4129
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004130 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004131
4132 cur_mon = old_mon;
4133}
4134
aliguori731b0362009-03-05 23:01:42 +00004135static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004136{
aliguori731b0362009-03-05 23:01:42 +00004137 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004138 int i;
aliguori376253e2009-03-05 23:01:23 +00004139
aliguori731b0362009-03-05 23:01:42 +00004140 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004141
aliguoricde76ee2009-03-05 23:01:51 +00004142 if (cur_mon->rs) {
4143 for (i = 0; i < size; i++)
4144 readline_handle_byte(cur_mon->rs, buf[i]);
4145 } else {
4146 if (size == 0 || buf[size - 1] != 0)
4147 monitor_printf(cur_mon, "corrupted command\n");
4148 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004149 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00004150 }
aliguori731b0362009-03-05 23:01:42 +00004151
4152 cur_mon = old_mon;
4153}
aliguorid8f44602008-10-06 13:52:44 +00004154
aliguori376253e2009-03-05 23:01:23 +00004155static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004156{
aliguori731b0362009-03-05 23:01:42 +00004157 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004158 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00004159 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00004160}
4161
aliguoricde76ee2009-03-05 23:01:51 +00004162int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004163{
aliguoricde76ee2009-03-05 23:01:51 +00004164 if (!mon->rs)
4165 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00004166 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00004167 return 0;
aliguorid8f44602008-10-06 13:52:44 +00004168}
4169
aliguori376253e2009-03-05 23:01:23 +00004170void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004171{
aliguoricde76ee2009-03-05 23:01:51 +00004172 if (!mon->rs)
4173 return;
aliguori731b0362009-03-05 23:01:42 +00004174 if (--mon->suspend_cnt == 0)
4175 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00004176}
4177
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004178/**
4179 * monitor_control_event(): Print QMP gretting
4180 */
4181static void monitor_control_event(void *opaque, int event)
4182{
4183 if (event == CHR_EVENT_OPENED) {
4184 QObject *data;
4185 Monitor *mon = opaque;
4186
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004187 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
4188
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004189 data = qobject_from_jsonf("{ 'QMP': { 'capabilities': [] } }");
4190 assert(data != NULL);
4191
4192 monitor_json_emitter(mon, data);
4193 qobject_decref(data);
4194 }
4195}
4196
aliguori731b0362009-03-05 23:01:42 +00004197static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00004198{
aliguori376253e2009-03-05 23:01:23 +00004199 Monitor *mon = opaque;
4200
aliguori2724b182009-03-05 23:01:47 +00004201 switch (event) {
4202 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004203 mon->mux_out = 0;
4204 if (mon->reset_seen) {
4205 readline_restart(mon->rs);
4206 monitor_resume(mon);
4207 monitor_flush(mon);
4208 } else {
4209 mon->suspend_cnt = 0;
4210 }
aliguori2724b182009-03-05 23:01:47 +00004211 break;
ths86e94de2007-01-05 22:01:59 +00004212
aliguori2724b182009-03-05 23:01:47 +00004213 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004214 if (mon->reset_seen) {
4215 if (mon->suspend_cnt == 0) {
4216 monitor_printf(mon, "\n");
4217 }
4218 monitor_flush(mon);
4219 monitor_suspend(mon);
4220 } else {
4221 mon->suspend_cnt++;
4222 }
4223 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00004224 break;
4225
Amit Shahb6b8df52009-10-07 18:31:16 +05304226 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00004227 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4228 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004229 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00004230 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004231 }
4232 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00004233 break;
4234 }
ths86e94de2007-01-05 22:01:59 +00004235}
4236
aliguori76655d62009-03-06 20:27:37 +00004237
4238/*
4239 * Local variables:
4240 * c-indent-level: 4
4241 * c-basic-offset: 4
4242 * tab-width: 8
4243 * End:
4244 */
4245
aliguori731b0362009-03-05 23:01:42 +00004246void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004247{
aliguori731b0362009-03-05 23:01:42 +00004248 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00004249 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00004250
4251 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00004252 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00004253 is_first_init = 0;
4254 }
aliguori87127162009-03-05 23:01:29 +00004255
4256 mon = qemu_mallocz(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00004257
aliguori87127162009-03-05 23:01:29 +00004258 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00004259 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00004260 if (flags & MONITOR_USE_READLINE) {
4261 mon->rs = readline_init(mon, monitor_find_completion);
4262 monitor_read_command(mon, 0);
4263 }
aliguori87127162009-03-05 23:01:29 +00004264
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004265 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004266 mon->mc = qemu_mallocz(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004267 /* Control mode requires special handlers */
4268 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4269 monitor_control_event, mon);
4270 } else {
4271 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4272 monitor_event, mon);
4273 }
aliguori87127162009-03-05 23:01:29 +00004274
Blue Swirl72cf2d42009-09-12 07:36:22 +00004275 QLIST_INSERT_HEAD(&mon_list, mon, entry);
aliguori731b0362009-03-05 23:01:42 +00004276 if (!cur_mon || (flags & MONITOR_IS_DEFAULT))
aliguori87127162009-03-05 23:01:29 +00004277 cur_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00004278}
4279
aliguori376253e2009-03-05 23:01:23 +00004280static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004281{
aliguoribb5fc202009-03-05 23:01:15 +00004282 BlockDriverState *bs = opaque;
4283 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00004284
aliguoribb5fc202009-03-05 23:01:15 +00004285 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00004286 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00004287 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00004288 }
aliguori731b0362009-03-05 23:01:42 +00004289 if (mon->password_completion_cb)
4290 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00004291
aliguori731b0362009-03-05 23:01:42 +00004292 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00004293}
aliguoric0f4ce72009-03-05 23:01:01 +00004294
aliguori376253e2009-03-05 23:01:23 +00004295void monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
aliguoribb5fc202009-03-05 23:01:15 +00004296 BlockDriverCompletionFunc *completion_cb,
4297 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00004298{
aliguoricde76ee2009-03-05 23:01:51 +00004299 int err;
4300
aliguoribb5fc202009-03-05 23:01:15 +00004301 if (!bdrv_key_required(bs)) {
4302 if (completion_cb)
4303 completion_cb(opaque, 0);
4304 return;
4305 }
aliguoric0f4ce72009-03-05 23:01:01 +00004306
Luiz Capitulino94171e12009-12-07 21:37:00 +01004307 if (monitor_ctrl_mode(mon)) {
4308 qemu_error_new(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
4309 return;
4310 }
4311
aliguori376253e2009-03-05 23:01:23 +00004312 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4313 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00004314
aliguori731b0362009-03-05 23:01:42 +00004315 mon->password_completion_cb = completion_cb;
4316 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00004317
aliguoricde76ee2009-03-05 23:01:51 +00004318 err = monitor_read_password(mon, bdrv_password_cb, bs);
4319
4320 if (err && completion_cb)
4321 completion_cb(opaque, err);
aliguoric0f4ce72009-03-05 23:01:01 +00004322}
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02004323
4324typedef struct QemuErrorSink QemuErrorSink;
4325struct QemuErrorSink {
4326 enum {
4327 ERR_SINK_FILE,
4328 ERR_SINK_MONITOR,
4329 } dest;
4330 union {
4331 FILE *fp;
4332 Monitor *mon;
4333 };
4334 QemuErrorSink *previous;
4335};
4336
Blue Swirl528e93a2009-08-31 15:14:40 +00004337static QemuErrorSink *qemu_error_sink;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02004338
4339void qemu_errors_to_file(FILE *fp)
4340{
4341 QemuErrorSink *sink;
4342
4343 sink = qemu_mallocz(sizeof(*sink));
4344 sink->dest = ERR_SINK_FILE;
4345 sink->fp = fp;
4346 sink->previous = qemu_error_sink;
4347 qemu_error_sink = sink;
4348}
4349
4350void qemu_errors_to_mon(Monitor *mon)
4351{
4352 QemuErrorSink *sink;
4353
4354 sink = qemu_mallocz(sizeof(*sink));
4355 sink->dest = ERR_SINK_MONITOR;
4356 sink->mon = mon;
4357 sink->previous = qemu_error_sink;
4358 qemu_error_sink = sink;
4359}
4360
4361void qemu_errors_to_previous(void)
4362{
4363 QemuErrorSink *sink;
4364
4365 assert(qemu_error_sink != NULL);
4366 sink = qemu_error_sink;
4367 qemu_error_sink = sink->previous;
4368 qemu_free(sink);
4369}
4370
4371void qemu_error(const char *fmt, ...)
4372{
4373 va_list args;
4374
4375 assert(qemu_error_sink != NULL);
4376 switch (qemu_error_sink->dest) {
4377 case ERR_SINK_FILE:
4378 va_start(args, fmt);
4379 vfprintf(qemu_error_sink->fp, fmt, args);
4380 va_end(args);
4381 break;
4382 case ERR_SINK_MONITOR:
4383 va_start(args, fmt);
4384 monitor_vprintf(qemu_error_sink->mon, fmt, args);
4385 va_end(args);
4386 break;
4387 }
4388}
Luiz Capitulino8204a912009-11-18 23:05:31 -02004389
4390void qemu_error_internal(const char *file, int linenr, const char *func,
4391 const char *fmt, ...)
4392{
4393 va_list va;
4394 QError *qerror;
4395
4396 assert(qemu_error_sink != NULL);
4397
4398 va_start(va, fmt);
4399 qerror = qerror_from_info(file, linenr, func, fmt, &va);
4400 va_end(va);
4401
4402 switch (qemu_error_sink->dest) {
4403 case ERR_SINK_FILE:
4404 qerror_print(qerror);
4405 QDECREF(qerror);
4406 break;
4407 case ERR_SINK_MONITOR:
4408 assert(qemu_error_sink->mon->error == NULL);
4409 qemu_error_sink->mon->error = qerror;
4410 break;
4411 }
4412}