blob: 801a92601e453b9665ada3e4f1aa8ab89da5fb29 [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) {
380 if (!monitor_ctrl_mode(mon))
381 return;
382
383 monitor_json_emitter(mon, QOBJECT(qmp));
384 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200385 QDECREF(qmp);
386}
387
bellard9dc39cb2004-03-14 21:38:27 +0000388static int compare_cmd(const char *name, const char *list)
389{
390 const char *p, *pstart;
391 int len;
392 len = strlen(name);
393 p = list;
394 for(;;) {
395 pstart = p;
396 p = strchr(p, '|');
397 if (!p)
398 p = pstart + strlen(pstart);
399 if ((p - pstart) == len && !memcmp(pstart, name, len))
400 return 1;
401 if (*p == '\0')
402 break;
403 p++;
404 }
405 return 0;
406}
407
Anthony Liguoric227f092009-10-01 16:12:16 -0500408static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000409 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000410{
Anthony Liguoric227f092009-10-01 16:12:16 -0500411 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000412
413 for(cmd = cmds; cmd->name != NULL; cmd++) {
414 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000415 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
416 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000417 }
418}
419
aliguori376253e2009-03-05 23:01:23 +0000420static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000421{
422 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000423 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000424 } else {
aliguori376253e2009-03-05 23:01:23 +0000425 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000426 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000427 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000428 monitor_printf(mon, "Log items (comma separated):\n");
429 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000430 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000431 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000432 }
433 }
bellard9dc39cb2004-03-14 21:38:27 +0000434 }
435}
436
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300437static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300438{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300439 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300440}
441
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300442static void do_commit(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000443{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200444 int all_devices;
445 DriveInfo *dinfo;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300446 const char *device = qdict_get_str(qdict, "device");
balrog2dc7b602007-05-24 18:53:22 +0000447
bellard7954c732006-08-01 15:52:40 +0000448 all_devices = !strcmp(device, "all");
Blue Swirl72cf2d42009-09-12 07:36:22 +0000449 QTAILQ_FOREACH(dinfo, &drives, next) {
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200450 if (!all_devices)
Luiz Capitulino73006d22009-07-31 15:15:41 -0300451 if (strcmp(bdrv_get_device_name(dinfo->bdrv), device))
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200452 continue;
453 bdrv_commit(dinfo->bdrv);
bellard9dc39cb2004-03-14 21:38:27 +0000454 }
455}
456
Luiz Capitulino13c74252009-10-07 13:41:55 -0300457static void do_info(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000458{
Anthony Liguoric227f092009-10-01 16:12:16 -0500459 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300460 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000461
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200462 if (!item) {
463 assert(monitor_ctrl_mode(mon) == 0);
bellard9dc39cb2004-03-14 21:38:27 +0000464 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200465 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300466
467 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000468 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300469 break;
bellard9dc39cb2004-03-14 21:38:27 +0000470 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300471
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200472 if (cmd->name == NULL) {
473 if (monitor_ctrl_mode(mon)) {
474 qemu_error_new(QERR_COMMAND_NOT_FOUND, item);
475 return;
476 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300477 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200478 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300479
480 if (monitor_handler_ported(cmd)) {
481 cmd->mhandler.info_new(mon, ret_data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200482
483 if (!monitor_ctrl_mode(mon)) {
484 /*
485 * User Protocol function is called here, Monitor Protocol is
486 * handled by monitor_call_handler()
487 */
488 if (*ret_data)
489 cmd->user_print(mon, *ret_data);
490 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300491 } else {
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200492 if (monitor_ctrl_mode(mon)) {
493 /* handler not converted yet */
494 qemu_error_new(QERR_COMMAND_NOT_FOUND, item);
495 } else {
496 cmd->mhandler.info(mon);
497 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300498 }
499
bellard9dc39cb2004-03-14 21:38:27 +0000500 return;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300501
502help:
503 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000504}
505
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200506static void do_info_version_print(Monitor *mon, const QObject *data)
507{
508 QDict *qdict;
509
510 qdict = qobject_to_qdict(data);
511
512 monitor_printf(mon, "%s%s\n", qdict_get_str(qdict, "qemu"),
513 qdict_get_str(qdict, "package"));
514}
515
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300516/**
517 * do_info_version(): Show QEMU version
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200518 *
519 * Return a QDict with the following information:
520 *
521 * - "qemu": QEMU's version
522 * - "package": package's version
523 *
524 * Example:
525 *
526 * { "qemu": "0.11.50", "package": "" }
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300527 */
528static void do_info_version(Monitor *mon, QObject **ret_data)
bellard9bc9d1c2004-10-10 15:15:51 +0000529{
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200530 *ret_data = qobject_from_jsonf("{ 'qemu': %s, 'package': %s }",
531 QEMU_VERSION, QEMU_PKGVERSION);
bellard9bc9d1c2004-10-10 15:15:51 +0000532}
533
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200534static void do_info_name_print(Monitor *mon, const QObject *data)
thsc35734b2007-03-19 15:17:08 +0000535{
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200536 QDict *qdict;
537
538 qdict = qobject_to_qdict(data);
539 if (qdict_size(qdict) == 0) {
540 return;
541 }
542
543 monitor_printf(mon, "%s\n", qdict_get_str(qdict, "name"));
544}
545
546/**
547 * do_info_name(): Show VM name
548 *
549 * Return a QDict with the following information:
550 *
551 * - "name": VM's name (optional)
552 *
553 * Example:
554 *
555 * { "name": "qemu-name" }
556 */
557static void do_info_name(Monitor *mon, QObject **ret_data)
558{
559 *ret_data = qemu_name ? qobject_from_jsonf("{'name': %s }", qemu_name) :
560 qobject_from_jsonf("{}");
thsc35734b2007-03-19 15:17:08 +0000561}
562
Luiz Capitulino1a728672009-12-10 17:15:56 -0200563static QObject *get_cmd_dict(const char *name)
564{
565 const char *p;
566
567 /* Remove '|' from some commands */
568 p = strchr(name, '|');
569 if (p) {
570 p++;
571 } else {
572 p = name;
573 }
574
575 return qobject_from_jsonf("{ 'name': %s }", p);
576}
577
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200578/**
579 * do_info_commands(): List QMP available commands
580 *
Luiz Capitulino1a728672009-12-10 17:15:56 -0200581 * Each command is represented by a QDict, the returned QObject is a QList
582 * of all commands.
583 *
584 * The QDict contains:
585 *
586 * - "name": command's name
587 *
588 * Example:
589 *
590 * { [ { "name": "query-balloon" }, { "name": "system_powerdown" } ] }
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200591 */
592static void do_info_commands(Monitor *mon, QObject **ret_data)
593{
594 QList *cmd_list;
595 const mon_cmd_t *cmd;
596
597 cmd_list = qlist_new();
598
599 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
600 if (monitor_handler_ported(cmd) && !compare_cmd(cmd->name, "info")) {
Luiz Capitulino1a728672009-12-10 17:15:56 -0200601 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200602 }
603 }
604
605 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
606 if (monitor_handler_ported(cmd)) {
607 char buf[128];
608 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
Luiz Capitulino1a728672009-12-10 17:15:56 -0200609 qlist_append_obj(cmd_list, get_cmd_dict(buf));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200610 }
611 }
612
613 *ret_data = QOBJECT(cmd_list);
614}
615
aurel32bf4f74c2008-12-18 22:42:34 +0000616#if defined(TARGET_I386)
Luiz Capitulino14f07202009-12-10 17:16:02 -0200617static void do_info_hpet_print(Monitor *mon, const QObject *data)
aliguori16b29ae2008-12-17 23:28:44 +0000618{
aliguori376253e2009-03-05 23:01:23 +0000619 monitor_printf(mon, "HPET is %s by QEMU\n",
Luiz Capitulino14f07202009-12-10 17:16:02 -0200620 qdict_get_bool(qobject_to_qdict(data), "enabled") ?
621 "enabled" : "disabled");
622}
623
624/**
625 * do_info_hpet(): Show HPET state
626 *
627 * Return a QDict with the following information:
628 *
629 * - "enabled": true if hpet if enabled, false otherwise
630 *
631 * Example:
632 *
633 * { "enabled": true }
634 */
635static void do_info_hpet(Monitor *mon, QObject **ret_data)
636{
637 *ret_data = qobject_from_jsonf("{ 'enabled': %i }", !no_hpet);
aliguori16b29ae2008-12-17 23:28:44 +0000638}
aurel32bf4f74c2008-12-18 22:42:34 +0000639#endif
aliguori16b29ae2008-12-17 23:28:44 +0000640
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200641static void do_info_uuid_print(Monitor *mon, const QObject *data)
blueswir1f1f23ad2008-09-18 18:30:20 +0000642{
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200643 monitor_printf(mon, "%s\n", qdict_get_str(qobject_to_qdict(data), "UUID"));
644}
645
646/**
647 * do_info_uuid(): Show VM UUID
648 *
649 * Return a QDict with the following information:
650 *
651 * - "UUID": Universally Unique Identifier
652 *
653 * Example:
654 *
655 * { "UUID": "550e8400-e29b-41d4-a716-446655440000" }
656 */
657static void do_info_uuid(Monitor *mon, QObject **ret_data)
658{
659 char uuid[64];
660
661 snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1],
aliguori376253e2009-03-05 23:01:23 +0000662 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
663 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
664 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
665 qemu_uuid[14], qemu_uuid[15]);
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200666 *ret_data = qobject_from_jsonf("{ 'UUID': %s }", uuid);
thsa36e69d2007-12-02 05:18:19 +0000667}
668
bellard6a00d602005-11-21 23:25:50 +0000669/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000670static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000671{
672 CPUState *env;
673
674 for(env = first_cpu; env != NULL; env = env->next_cpu) {
675 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000676 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000677 return 0;
678 }
679 }
680 return -1;
681}
682
pbrook9596ebb2007-11-18 01:44:38 +0000683static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000684{
aliguori731b0362009-03-05 23:01:42 +0000685 if (!cur_mon->mon_cpu) {
bellard6a00d602005-11-21 23:25:50 +0000686 mon_set_cpu(0);
687 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300688 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000689 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000690}
691
aliguori376253e2009-03-05 23:01:23 +0000692static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000693{
bellard6a00d602005-11-21 23:25:50 +0000694 CPUState *env;
695 env = mon_get_cpu();
696 if (!env)
697 return;
bellard9307c4c2004-04-04 12:57:25 +0000698#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000699 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000700 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000701#else
aliguori376253e2009-03-05 23:01:23 +0000702 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000703 0);
bellard9307c4c2004-04-04 12:57:25 +0000704#endif
705}
706
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300707static void print_cpu_iter(QObject *obj, void *opaque)
708{
709 QDict *cpu;
710 int active = ' ';
711 Monitor *mon = opaque;
712
713 assert(qobject_type(obj) == QTYPE_QDICT);
714 cpu = qobject_to_qdict(obj);
715
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200716 if (qdict_get_bool(cpu, "current")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300717 active = '*';
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200718 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300719
720 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
721
722#if defined(TARGET_I386)
723 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
724 (target_ulong) qdict_get_int(cpu, "pc"));
725#elif defined(TARGET_PPC)
726 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
727 (target_long) qdict_get_int(cpu, "nip"));
728#elif defined(TARGET_SPARC)
729 monitor_printf(mon, "pc=0x " TARGET_FMT_lx,
730 (target_long) qdict_get_int(cpu, "pc"));
731 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
732 (target_long) qdict_get_int(cpu, "npc"));
733#elif defined(TARGET_MIPS)
734 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
735 (target_long) qdict_get_int(cpu, "PC"));
736#endif
737
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200738 if (qdict_get_bool(cpu, "halted")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300739 monitor_printf(mon, " (halted)");
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200740 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300741
742 monitor_printf(mon, "\n");
743}
744
745static void monitor_print_cpus(Monitor *mon, const QObject *data)
746{
747 QList *cpu_list;
748
749 assert(qobject_type(data) == QTYPE_QLIST);
750 cpu_list = qobject_to_qlist(data);
751 qlist_iter(cpu_list, print_cpu_iter, mon);
752}
753
754/**
755 * do_info_cpus(): Show CPU information
756 *
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200757 * Return a QList. Each CPU is represented by a QDict, which contains:
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300758 *
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200759 * - "cpu": CPU index
760 * - "current": true if this is the current CPU, false otherwise
761 * - "halted": true if the cpu is halted, false otherwise
762 * - Current program counter. The key's name depends on the architecture:
763 * "pc": i386/x86)64
764 * "nip": PPC
765 * "pc" and "npc": sparc
766 * "PC": mips
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300767 *
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200768 * Example:
769 *
770 * [ { "CPU": 0, "current": true, "halted": false, "pc": 3227107138 },
771 * { "CPU": 1, "current": false, "halted": true, "pc": 7108165 } ]
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300772 */
773static void do_info_cpus(Monitor *mon, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000774{
775 CPUState *env;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300776 QList *cpu_list;
777
778 cpu_list = qlist_new();
bellard6a00d602005-11-21 23:25:50 +0000779
780 /* just to set the default cpu if not already done */
781 mon_get_cpu();
782
783 for(env = first_cpu; env != NULL; env = env->next_cpu) {
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200784 QDict *cpu;
785 QObject *obj;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300786
Avi Kivity4c0960c2009-08-17 23:19:53 +0300787 cpu_synchronize_state(env);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300788
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200789 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
790 env->cpu_index, env == mon->mon_cpu,
791 env->halted);
792 assert(obj != NULL);
793
794 cpu = qobject_to_qdict(obj);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300795
bellard6a00d602005-11-21 23:25:50 +0000796#if defined(TARGET_I386)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300797 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
bellarde80e1cc2005-11-23 22:05:28 +0000798#elif defined(TARGET_PPC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300799 qdict_put(cpu, "nip", qint_from_int(env->nip));
bellardba3c64f2005-12-05 20:31:52 +0000800#elif defined(TARGET_SPARC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300801 qdict_put(cpu, "pc", qint_from_int(env->pc));
802 qdict_put(cpu, "npc", qint_from_int(env->npc));
thsead93602007-09-06 00:18:15 +0000803#elif defined(TARGET_MIPS)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300804 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
bellardce5232c2008-05-28 17:14:10 +0000805#endif
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300806
807 qlist_append(cpu_list, cpu);
bellard6a00d602005-11-21 23:25:50 +0000808 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300809
810 *ret_data = QOBJECT(cpu_list);
bellard6a00d602005-11-21 23:25:50 +0000811}
812
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300813static void do_cpu_set(Monitor *mon, const QDict *qdict)
bellard6a00d602005-11-21 23:25:50 +0000814{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300815 int index = qdict_get_int(qdict, "index");
bellard6a00d602005-11-21 23:25:50 +0000816 if (mon_set_cpu(index) < 0)
aliguori376253e2009-03-05 23:01:23 +0000817 monitor_printf(mon, "Invalid CPU index\n");
bellard6a00d602005-11-21 23:25:50 +0000818}
819
aliguori376253e2009-03-05 23:01:23 +0000820static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000821{
aliguori376253e2009-03-05 23:01:23 +0000822 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000823}
824
aliguori376253e2009-03-05 23:01:23 +0000825static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000826{
827 int i;
bellard7e2515e2004-08-01 21:52:19 +0000828 const char *str;
ths3b46e622007-09-17 08:09:54 +0000829
aliguoricde76ee2009-03-05 23:01:51 +0000830 if (!mon->rs)
831 return;
bellard7e2515e2004-08-01 21:52:19 +0000832 i = 0;
833 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000834 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000835 if (!str)
836 break;
aliguori376253e2009-03-05 23:01:23 +0000837 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000838 i++;
bellardaa455482004-04-04 13:07:25 +0000839 }
840}
841
j_mayer76a66252007-03-07 08:32:30 +0000842#if defined(TARGET_PPC)
843/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000844static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000845{
846 CPUState *env;
847
848 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000849 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000850}
851#endif
852
Luiz Capitulinob223f352009-10-07 13:41:56 -0300853/**
854 * do_quit(): Quit QEMU execution
855 */
856static void do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000857{
858 exit(0);
859}
860
aliguori376253e2009-03-05 23:01:23 +0000861static int eject_device(Monitor *mon, BlockDriverState *bs, int force)
bellard9dc39cb2004-03-14 21:38:27 +0000862{
863 if (bdrv_is_inserted(bs)) {
864 if (!force) {
865 if (!bdrv_is_removable(bs)) {
Markus Armbruster2c2a6bb2009-12-07 21:37:05 +0100866 qemu_error_new(QERR_DEVICE_NOT_REMOVABLE,
867 bdrv_get_device_name(bs));
bellard9dc39cb2004-03-14 21:38:27 +0000868 return -1;
869 }
870 if (bdrv_is_locked(bs)) {
Markus Armbruster2c2a6bb2009-12-07 21:37:05 +0100871 qemu_error_new(QERR_DEVICE_LOCKED, bdrv_get_device_name(bs));
bellard9dc39cb2004-03-14 21:38:27 +0000872 return -1;
873 }
874 }
875 bdrv_close(bs);
876 }
877 return 0;
878}
879
Luiz Capitulinoe1c923a2009-10-16 12:23:49 -0300880static void do_eject(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000881{
882 BlockDriverState *bs;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -0300883 int force = qdict_get_int(qdict, "force");
Luiz Capitulino78d714e2009-12-14 18:53:21 -0200884 const char *filename = qdict_get_str(qdict, "device");
bellard9dc39cb2004-03-14 21:38:27 +0000885
bellard9307c4c2004-04-04 12:57:25 +0000886 bs = bdrv_find(filename);
bellard9dc39cb2004-03-14 21:38:27 +0000887 if (!bs) {
Markus Armbruster2c2a6bb2009-12-07 21:37:05 +0100888 qemu_error_new(QERR_DEVICE_NOT_FOUND, filename);
bellard9dc39cb2004-03-14 21:38:27 +0000889 return;
890 }
aliguori376253e2009-03-05 23:01:23 +0000891 eject_device(mon, bs, force);
bellard9dc39cb2004-03-14 21:38:27 +0000892}
893
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -0200894static void do_block_set_passwd(Monitor *mon, const QDict *qdict,
895 QObject **ret_data)
896{
897 BlockDriverState *bs;
898
899 bs = bdrv_find(qdict_get_str(qdict, "device"));
900 if (!bs) {
901 qemu_error_new(QERR_DEVICE_NOT_FOUND, qdict_get_str(qdict, "device"));
902 return;
903 }
904
905 if (bdrv_set_key(bs, qdict_get_str(qdict, "password")) < 0) {
906 qemu_error_new(QERR_INVALID_PASSWORD);
907 }
908}
909
aliguori376253e2009-03-05 23:01:23 +0000910static void do_change_block(Monitor *mon, const char *device,
911 const char *filename, const char *fmt)
bellard9dc39cb2004-03-14 21:38:27 +0000912{
913 BlockDriverState *bs;
aurel322ecea9b2008-06-18 22:10:01 +0000914 BlockDriver *drv = NULL;
bellard9dc39cb2004-03-14 21:38:27 +0000915
bellard9307c4c2004-04-04 12:57:25 +0000916 bs = bdrv_find(device);
bellard9dc39cb2004-03-14 21:38:27 +0000917 if (!bs) {
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100918 qemu_error_new(QERR_DEVICE_NOT_FOUND, device);
bellard9dc39cb2004-03-14 21:38:27 +0000919 return;
920 }
aurel322ecea9b2008-06-18 22:10:01 +0000921 if (fmt) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100922 drv = bdrv_find_whitelisted_format(fmt);
aurel322ecea9b2008-06-18 22:10:01 +0000923 if (!drv) {
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100924 qemu_error_new(QERR_INVALID_BLOCK_FORMAT, fmt);
aurel322ecea9b2008-06-18 22:10:01 +0000925 return;
926 }
927 }
aliguori376253e2009-03-05 23:01:23 +0000928 if (eject_device(mon, bs, 0) < 0)
bellard9dc39cb2004-03-14 21:38:27 +0000929 return;
Naphtali Spreif5edb012010-01-17 16:48:13 +0200930 bdrv_open2(bs, filename, BDRV_O_RDWR, drv);
aliguori376253e2009-03-05 23:01:23 +0000931 monitor_read_bdrv_key_start(mon, bs, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000932}
933
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100934static void change_vnc_password(const char *password)
aliguoribb5fc202009-03-05 23:01:15 +0000935{
936 if (vnc_display_password(NULL, password) < 0)
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100937 qemu_error_new(QERR_SET_PASSWD_FAILED);
aliguoribb5fc202009-03-05 23:01:15 +0000938
Markus Armbruster2895e072009-12-07 21:37:01 +0100939}
940
941static void change_vnc_password_cb(Monitor *mon, const char *password,
942 void *opaque)
943{
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100944 change_vnc_password(password);
aliguori731b0362009-03-05 23:01:42 +0000945 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +0000946}
947
aliguori376253e2009-03-05 23:01:23 +0000948static void do_change_vnc(Monitor *mon, const char *target, const char *arg)
thse25a5822007-08-25 01:36:20 +0000949{
ths70848512007-08-25 01:37:05 +0000950 if (strcmp(target, "passwd") == 0 ||
aliguori28a76be2009-03-06 20:27:40 +0000951 strcmp(target, "password") == 0) {
952 if (arg) {
aliguoribb5fc202009-03-05 23:01:15 +0000953 char password[9];
aliguori28a76be2009-03-06 20:27:40 +0000954 strncpy(password, arg, sizeof(password));
955 password[sizeof(password) - 1] = '\0';
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100956 change_vnc_password(password);
aliguoribb5fc202009-03-05 23:01:15 +0000957 } else {
aliguori376253e2009-03-05 23:01:23 +0000958 monitor_read_password(mon, change_vnc_password_cb, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000959 }
ths70848512007-08-25 01:37:05 +0000960 } else {
aliguori28a76be2009-03-06 20:27:40 +0000961 if (vnc_display_open(NULL, target) < 0)
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100962 qemu_error_new(QERR_VNC_SERVER_FAILED, target);
ths70848512007-08-25 01:37:05 +0000963 }
thse25a5822007-08-25 01:36:20 +0000964}
965
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100966/**
967 * do_change(): Change a removable medium, or VNC configuration
968 */
969static void do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
thse25a5822007-08-25 01:36:20 +0000970{
Luiz Capitulino1d4daa92009-08-28 15:27:15 -0300971 const char *device = qdict_get_str(qdict, "device");
972 const char *target = qdict_get_str(qdict, "target");
973 const char *arg = qdict_get_try_str(qdict, "arg");
thse25a5822007-08-25 01:36:20 +0000974 if (strcmp(device, "vnc") == 0) {
aliguori28a76be2009-03-06 20:27:40 +0000975 do_change_vnc(mon, target, arg);
thse25a5822007-08-25 01:36:20 +0000976 } else {
aliguori28a76be2009-03-06 20:27:40 +0000977 do_change_block(mon, device, target, arg);
thse25a5822007-08-25 01:36:20 +0000978 }
979}
980
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300981static void do_screen_dump(Monitor *mon, const QDict *qdict)
bellard59a983b2004-03-17 23:17:16 +0000982{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300983 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
bellard59a983b2004-03-17 23:17:16 +0000984}
985
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300986static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +0000987{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300988 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +0000989}
990
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300991static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +0000992{
993 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300994 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +0000995
bellard9307c4c2004-04-04 12:57:25 +0000996 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +0000997 mask = 0;
998 } else {
bellard9307c4c2004-04-04 12:57:25 +0000999 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +00001000 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001001 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001002 return;
1003 }
1004 }
1005 cpu_set_log(mask);
1006}
1007
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001008static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001009{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001010 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001011 if (!option || !strcmp(option, "on")) {
1012 singlestep = 1;
1013 } else if (!strcmp(option, "off")) {
1014 singlestep = 0;
1015 } else {
1016 monitor_printf(mon, "unexpected option %s\n", option);
1017 }
1018}
1019
Luiz Capitulinoe0c97bd2009-10-07 13:41:57 -03001020/**
1021 * do_stop(): Stop VM execution
1022 */
1023static void do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard8a7ddc32004-03-31 19:00:16 +00001024{
1025 vm_stop(EXCP_INTERRUPT);
1026}
1027
aliguoribb5fc202009-03-05 23:01:15 +00001028static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
aliguoric0f4ce72009-03-05 23:01:01 +00001029
aliguori376253e2009-03-05 23:01:23 +00001030struct bdrv_iterate_context {
1031 Monitor *mon;
1032 int err;
1033};
aliguoric0f4ce72009-03-05 23:01:01 +00001034
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001035/**
1036 * do_cont(): Resume emulation.
1037 */
1038static void do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
aliguori376253e2009-03-05 23:01:23 +00001039{
1040 struct bdrv_iterate_context context = { mon, 0 };
1041
1042 bdrv_iterate(encrypted_bdrv_it, &context);
aliguoric0f4ce72009-03-05 23:01:01 +00001043 /* only resume the vm if all keys are set and valid */
aliguori376253e2009-03-05 23:01:23 +00001044 if (!context.err)
aliguoric0f4ce72009-03-05 23:01:01 +00001045 vm_start();
bellard8a7ddc32004-03-31 19:00:16 +00001046}
1047
aliguoribb5fc202009-03-05 23:01:15 +00001048static void bdrv_key_cb(void *opaque, int err)
1049{
aliguori376253e2009-03-05 23:01:23 +00001050 Monitor *mon = opaque;
1051
aliguoribb5fc202009-03-05 23:01:15 +00001052 /* another key was set successfully, retry to continue */
1053 if (!err)
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001054 do_cont(mon, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001055}
1056
1057static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1058{
aliguori376253e2009-03-05 23:01:23 +00001059 struct bdrv_iterate_context *context = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00001060
aliguori376253e2009-03-05 23:01:23 +00001061 if (!context->err && bdrv_key_required(bs)) {
1062 context->err = -EBUSY;
1063 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1064 context->mon);
aliguoribb5fc202009-03-05 23:01:15 +00001065 }
1066}
1067
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001068static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001069{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001070 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001071 if (!device)
1072 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1073 if (gdbserver_start(device) < 0) {
1074 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1075 device);
1076 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001077 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001078 } else {
aliguori59030a82009-04-05 18:43:41 +00001079 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1080 device);
bellard8a7ddc32004-03-31 19:00:16 +00001081 }
1082}
1083
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001084static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001085{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001086 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001087 if (select_watchdog_action(action) == -1) {
1088 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1089 }
1090}
1091
aliguori376253e2009-03-05 23:01:23 +00001092static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001093{
aliguori376253e2009-03-05 23:01:23 +00001094 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001095 switch(c) {
1096 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001097 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001098 break;
1099 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001100 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001101 break;
1102 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001103 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001104 break;
1105 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001106 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001107 break;
1108 default:
1109 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001110 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001111 } else {
aliguori376253e2009-03-05 23:01:23 +00001112 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001113 }
1114 break;
1115 }
aliguori376253e2009-03-05 23:01:23 +00001116 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001117}
1118
aliguori376253e2009-03-05 23:01:23 +00001119static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -05001120 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001121{
bellard6a00d602005-11-21 23:25:50 +00001122 CPUState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +00001123 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001124 uint8_t buf[16];
1125 uint64_t v;
1126
1127 if (format == 'i') {
1128 int flags;
1129 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001130 env = mon_get_cpu();
1131 if (!env && !is_physical)
1132 return;
bellard9307c4c2004-04-04 12:57:25 +00001133#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001134 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001135 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001136 } else if (wsize == 4) {
1137 flags = 0;
1138 } else {
bellard6a15fd12006-04-12 21:07:07 +00001139 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001140 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001141 if (env) {
1142#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001143 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001144 (env->segs[R_CS].flags & DESC_L_MASK))
1145 flags = 2;
1146 else
1147#endif
1148 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1149 flags = 1;
1150 }
bellard4c27ba22004-04-25 18:05:08 +00001151 }
1152#endif
aliguori376253e2009-03-05 23:01:23 +00001153 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001154 return;
1155 }
1156
1157 len = wsize * count;
1158 if (wsize == 1)
1159 line_size = 8;
1160 else
1161 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001162 max_digits = 0;
1163
1164 switch(format) {
1165 case 'o':
1166 max_digits = (wsize * 8 + 2) / 3;
1167 break;
1168 default:
1169 case 'x':
1170 max_digits = (wsize * 8) / 4;
1171 break;
1172 case 'u':
1173 case 'd':
1174 max_digits = (wsize * 8 * 10 + 32) / 33;
1175 break;
1176 case 'c':
1177 wsize = 1;
1178 break;
1179 }
1180
1181 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001182 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001183 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001184 else
aliguori376253e2009-03-05 23:01:23 +00001185 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001186 l = len;
1187 if (l > line_size)
1188 l = line_size;
1189 if (is_physical) {
1190 cpu_physical_memory_rw(addr, buf, l, 0);
1191 } else {
bellard6a00d602005-11-21 23:25:50 +00001192 env = mon_get_cpu();
1193 if (!env)
1194 break;
aliguoric8f79b62008-08-18 14:00:20 +00001195 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001196 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001197 break;
1198 }
bellard9307c4c2004-04-04 12:57:25 +00001199 }
ths5fafdf22007-09-16 21:08:06 +00001200 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001201 while (i < l) {
1202 switch(wsize) {
1203 default:
1204 case 1:
1205 v = ldub_raw(buf + i);
1206 break;
1207 case 2:
1208 v = lduw_raw(buf + i);
1209 break;
1210 case 4:
bellard92a31b12005-02-10 22:00:52 +00001211 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001212 break;
1213 case 8:
1214 v = ldq_raw(buf + i);
1215 break;
1216 }
aliguori376253e2009-03-05 23:01:23 +00001217 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001218 switch(format) {
1219 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001220 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001221 break;
1222 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001223 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001224 break;
1225 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001226 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001227 break;
1228 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001229 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001230 break;
1231 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001232 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001233 break;
1234 }
1235 i += wsize;
1236 }
aliguori376253e2009-03-05 23:01:23 +00001237 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001238 addr += l;
1239 len -= l;
1240 }
1241}
1242
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001243static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001244{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001245 int count = qdict_get_int(qdict, "count");
1246 int format = qdict_get_int(qdict, "format");
1247 int size = qdict_get_int(qdict, "size");
1248 target_long addr = qdict_get_int(qdict, "addr");
1249
aliguori376253e2009-03-05 23:01:23 +00001250 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001251}
1252
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001253static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001254{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001255 int count = qdict_get_int(qdict, "count");
1256 int format = qdict_get_int(qdict, "format");
1257 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001258 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001259
aliguori376253e2009-03-05 23:01:23 +00001260 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001261}
1262
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001263static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001264{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001265 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001266 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001267
blueswir17743e582007-09-24 18:39:04 +00001268#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +00001269 switch(format) {
1270 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001271 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +00001272 break;
1273 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001274 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +00001275 break;
1276 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001277 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +00001278 break;
1279 default:
1280 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001281 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +00001282 break;
1283 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001284 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001285 break;
1286 }
bellard92a31b12005-02-10 22:00:52 +00001287#else
1288 switch(format) {
1289 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001290 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +00001291 break;
1292 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001293 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +00001294 break;
1295 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001296 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +00001297 break;
1298 default:
1299 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001300 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +00001301 break;
1302 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001303 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +00001304 break;
1305 }
1306#endif
aliguori376253e2009-03-05 23:01:23 +00001307 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001308}
1309
Luiz Capitulino57e09452009-10-16 12:23:43 -03001310static void do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellardb371dc52007-01-03 15:20:39 +00001311{
1312 FILE *f;
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001313 uint32_t size = qdict_get_int(qdict, "size");
1314 const char *filename = qdict_get_str(qdict, "filename");
1315 target_long addr = qdict_get_int(qdict, "val");
bellardb371dc52007-01-03 15:20:39 +00001316 uint32_t l;
1317 CPUState *env;
1318 uint8_t buf[1024];
1319
1320 env = mon_get_cpu();
1321 if (!env)
1322 return;
1323
1324 f = fopen(filename, "wb");
1325 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00001326 monitor_printf(mon, "could not open '%s'\n", filename);
bellardb371dc52007-01-03 15:20:39 +00001327 return;
1328 }
1329 while (size != 0) {
1330 l = sizeof(buf);
1331 if (l > size)
1332 l = size;
1333 cpu_memory_rw_debug(env, addr, buf, l, 0);
1334 fwrite(buf, 1, l, f);
1335 addr += l;
1336 size -= l;
1337 }
1338 fclose(f);
1339}
1340
Luiz Capitulino18f5a8b2009-10-16 12:23:44 -03001341static void do_physical_memory_save(Monitor *mon, const QDict *qdict,
1342 QObject **ret_data)
aurel32a8bdf7a2008-04-11 21:36:14 +00001343{
1344 FILE *f;
1345 uint32_t l;
1346 uint8_t buf[1024];
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001347 uint32_t size = qdict_get_int(qdict, "size");
1348 const char *filename = qdict_get_str(qdict, "filename");
Anthony Liguoric227f092009-10-01 16:12:16 -05001349 target_phys_addr_t addr = qdict_get_int(qdict, "val");
aurel32a8bdf7a2008-04-11 21:36:14 +00001350
1351 f = fopen(filename, "wb");
1352 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00001353 monitor_printf(mon, "could not open '%s'\n", filename);
aurel32a8bdf7a2008-04-11 21:36:14 +00001354 return;
1355 }
1356 while (size != 0) {
1357 l = sizeof(buf);
1358 if (l > size)
1359 l = size;
1360 cpu_physical_memory_rw(addr, buf, l, 0);
1361 fwrite(buf, 1, l, f);
1362 fflush(f);
1363 addr += l;
1364 size -= l;
1365 }
1366 fclose(f);
1367}
1368
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001369static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001370{
1371 uint32_t addr;
1372 uint8_t buf[1];
1373 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001374 uint32_t start = qdict_get_int(qdict, "start");
1375 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001376
1377 sum = 0;
1378 for(addr = start; addr < (start + size); addr++) {
1379 cpu_physical_memory_rw(addr, buf, 1, 0);
1380 /* BSD sum algorithm ('sum' Unix command) */
1381 sum = (sum >> 1) | (sum << 15);
1382 sum += buf[0];
1383 }
aliguori376253e2009-03-05 23:01:23 +00001384 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001385}
1386
bellarda3a91a32004-06-04 11:06:21 +00001387typedef struct {
1388 int keycode;
1389 const char *name;
1390} KeyDef;
1391
1392static const KeyDef key_defs[] = {
1393 { 0x2a, "shift" },
1394 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +00001395
bellarda3a91a32004-06-04 11:06:21 +00001396 { 0x38, "alt" },
1397 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +00001398 { 0x64, "altgr" },
1399 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +00001400 { 0x1d, "ctrl" },
1401 { 0x9d, "ctrl_r" },
1402
1403 { 0xdd, "menu" },
1404
1405 { 0x01, "esc" },
1406
1407 { 0x02, "1" },
1408 { 0x03, "2" },
1409 { 0x04, "3" },
1410 { 0x05, "4" },
1411 { 0x06, "5" },
1412 { 0x07, "6" },
1413 { 0x08, "7" },
1414 { 0x09, "8" },
1415 { 0x0a, "9" },
1416 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +00001417 { 0x0c, "minus" },
1418 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +00001419 { 0x0e, "backspace" },
1420
1421 { 0x0f, "tab" },
1422 { 0x10, "q" },
1423 { 0x11, "w" },
1424 { 0x12, "e" },
1425 { 0x13, "r" },
1426 { 0x14, "t" },
1427 { 0x15, "y" },
1428 { 0x16, "u" },
1429 { 0x17, "i" },
1430 { 0x18, "o" },
1431 { 0x19, "p" },
1432
1433 { 0x1c, "ret" },
1434
1435 { 0x1e, "a" },
1436 { 0x1f, "s" },
1437 { 0x20, "d" },
1438 { 0x21, "f" },
1439 { 0x22, "g" },
1440 { 0x23, "h" },
1441 { 0x24, "j" },
1442 { 0x25, "k" },
1443 { 0x26, "l" },
1444
1445 { 0x2c, "z" },
1446 { 0x2d, "x" },
1447 { 0x2e, "c" },
1448 { 0x2f, "v" },
1449 { 0x30, "b" },
1450 { 0x31, "n" },
1451 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +00001452 { 0x33, "comma" },
1453 { 0x34, "dot" },
1454 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +00001455
balrog4d3b6f62008-02-10 16:33:14 +00001456 { 0x37, "asterisk" },
1457
bellarda3a91a32004-06-04 11:06:21 +00001458 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +00001459 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001460 { 0x3b, "f1" },
1461 { 0x3c, "f2" },
1462 { 0x3d, "f3" },
1463 { 0x3e, "f4" },
1464 { 0x3f, "f5" },
1465 { 0x40, "f6" },
1466 { 0x41, "f7" },
1467 { 0x42, "f8" },
1468 { 0x43, "f9" },
1469 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +00001470 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001471 { 0x46, "scroll_lock" },
1472
bellard64866c32006-05-07 18:03:31 +00001473 { 0xb5, "kp_divide" },
1474 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +00001475 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +00001476 { 0x4e, "kp_add" },
1477 { 0x9c, "kp_enter" },
1478 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +00001479 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +00001480
1481 { 0x52, "kp_0" },
1482 { 0x4f, "kp_1" },
1483 { 0x50, "kp_2" },
1484 { 0x51, "kp_3" },
1485 { 0x4b, "kp_4" },
1486 { 0x4c, "kp_5" },
1487 { 0x4d, "kp_6" },
1488 { 0x47, "kp_7" },
1489 { 0x48, "kp_8" },
1490 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +00001491
bellarda3a91a32004-06-04 11:06:21 +00001492 { 0x56, "<" },
1493
1494 { 0x57, "f11" },
1495 { 0x58, "f12" },
1496
1497 { 0xb7, "print" },
1498
1499 { 0xc7, "home" },
1500 { 0xc9, "pgup" },
1501 { 0xd1, "pgdn" },
1502 { 0xcf, "end" },
1503
1504 { 0xcb, "left" },
1505 { 0xc8, "up" },
1506 { 0xd0, "down" },
1507 { 0xcd, "right" },
1508
1509 { 0xd2, "insert" },
1510 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001511#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1512 { 0xf0, "stop" },
1513 { 0xf1, "again" },
1514 { 0xf2, "props" },
1515 { 0xf3, "undo" },
1516 { 0xf4, "front" },
1517 { 0xf5, "copy" },
1518 { 0xf6, "open" },
1519 { 0xf7, "paste" },
1520 { 0xf8, "find" },
1521 { 0xf9, "cut" },
1522 { 0xfa, "lf" },
1523 { 0xfb, "help" },
1524 { 0xfc, "meta_l" },
1525 { 0xfd, "meta_r" },
1526 { 0xfe, "compose" },
1527#endif
bellarda3a91a32004-06-04 11:06:21 +00001528 { 0, NULL },
1529};
1530
1531static int get_keycode(const char *key)
1532{
1533 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001534 char *endp;
1535 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001536
1537 for(p = key_defs; p->name != NULL; p++) {
1538 if (!strcmp(key, p->name))
1539 return p->keycode;
1540 }
bellard64866c32006-05-07 18:03:31 +00001541 if (strstart(key, "0x", NULL)) {
1542 ret = strtoul(key, &endp, 0);
1543 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1544 return ret;
1545 }
bellarda3a91a32004-06-04 11:06:21 +00001546 return -1;
1547}
1548
balrogc8256f92008-06-08 22:45:01 +00001549#define MAX_KEYCODES 16
1550static uint8_t keycodes[MAX_KEYCODES];
1551static int nb_pending_keycodes;
1552static QEMUTimer *key_timer;
1553
1554static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001555{
balrogc8256f92008-06-08 22:45:01 +00001556 int keycode;
1557
1558 while (nb_pending_keycodes > 0) {
1559 nb_pending_keycodes--;
1560 keycode = keycodes[nb_pending_keycodes];
1561 if (keycode & 0x80)
1562 kbd_put_keycode(0xe0);
1563 kbd_put_keycode(keycode | 0x80);
1564 }
1565}
1566
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001567static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001568{
balrog3401c0d2008-06-04 10:05:59 +00001569 char keyname_buf[16];
1570 char *separator;
1571 int keyname_len, keycode, i;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001572 const char *string = qdict_get_str(qdict, "string");
1573 int has_hold_time = qdict_haskey(qdict, "hold_time");
1574 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
ths3b46e622007-09-17 08:09:54 +00001575
balrogc8256f92008-06-08 22:45:01 +00001576 if (nb_pending_keycodes > 0) {
1577 qemu_del_timer(key_timer);
1578 release_keys(NULL);
1579 }
1580 if (!has_hold_time)
1581 hold_time = 100;
1582 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001583 while (1) {
1584 separator = strchr(string, '-');
1585 keyname_len = separator ? separator - string : strlen(string);
1586 if (keyname_len > 0) {
1587 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1588 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001589 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001590 return;
bellarda3a91a32004-06-04 11:06:21 +00001591 }
balrogc8256f92008-06-08 22:45:01 +00001592 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001593 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001594 return;
1595 }
1596 keyname_buf[keyname_len] = 0;
1597 keycode = get_keycode(keyname_buf);
1598 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001599 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001600 return;
1601 }
balrogc8256f92008-06-08 22:45:01 +00001602 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001603 }
balrog3401c0d2008-06-04 10:05:59 +00001604 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001605 break;
balrog3401c0d2008-06-04 10:05:59 +00001606 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001607 }
balrogc8256f92008-06-08 22:45:01 +00001608 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001609 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001610 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001611 keycode = keycodes[i];
1612 if (keycode & 0x80)
1613 kbd_put_keycode(0xe0);
1614 kbd_put_keycode(keycode & 0x7f);
1615 }
balrogc8256f92008-06-08 22:45:01 +00001616 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +00001617 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001618 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001619}
1620
bellard13224a82006-07-14 22:03:35 +00001621static int mouse_button_state;
1622
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001623static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001624{
1625 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001626 const char *dx_str = qdict_get_str(qdict, "dx_str");
1627 const char *dy_str = qdict_get_str(qdict, "dy_str");
1628 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001629 dx = strtol(dx_str, NULL, 0);
1630 dy = strtol(dy_str, NULL, 0);
1631 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001632 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001633 dz = strtol(dz_str, NULL, 0);
1634 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1635}
1636
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001637static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001638{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001639 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001640 mouse_button_state = button_state;
1641 kbd_mouse_event(0, 0, 0, mouse_button_state);
1642}
1643
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001644static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001645{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001646 int size = qdict_get_int(qdict, "size");
1647 int addr = qdict_get_int(qdict, "addr");
1648 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001649 uint32_t val;
1650 int suffix;
1651
1652 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001653 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001654 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001655 addr++;
1656 }
1657 addr &= 0xffff;
1658
1659 switch(size) {
1660 default:
1661 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001662 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001663 suffix = 'b';
1664 break;
1665 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001666 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001667 suffix = 'w';
1668 break;
1669 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001670 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001671 suffix = 'l';
1672 break;
1673 }
aliguori376253e2009-03-05 23:01:23 +00001674 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1675 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001676}
bellarda3a91a32004-06-04 11:06:21 +00001677
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001678static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001679{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001680 int size = qdict_get_int(qdict, "size");
1681 int addr = qdict_get_int(qdict, "addr");
1682 int val = qdict_get_int(qdict, "val");
1683
Jan Kiszkaf1147842009-07-14 10:20:11 +02001684 addr &= IOPORTS_MASK;
1685
1686 switch (size) {
1687 default:
1688 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001689 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001690 break;
1691 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001692 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001693 break;
1694 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001695 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001696 break;
1697 }
1698}
1699
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001700static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001701{
1702 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001703 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001704
Jan Kiszka76e30d02009-07-02 00:19:02 +02001705 res = qemu_boot_set(bootdevice);
1706 if (res == 0) {
1707 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1708 } else if (res > 0) {
1709 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001710 } else {
aliguori376253e2009-03-05 23:01:23 +00001711 monitor_printf(mon, "no function defined to set boot device list for "
1712 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001713 }
1714}
1715
Luiz Capitulinoc80d2592009-10-07 13:41:58 -03001716/**
1717 * do_system_reset(): Issue a machine reset
1718 */
1719static void do_system_reset(Monitor *mon, const QDict *qdict,
1720 QObject **ret_data)
bellarde4f90822004-06-20 12:35:44 +00001721{
1722 qemu_system_reset_request();
1723}
1724
Luiz Capitulino43076662009-10-07 13:41:59 -03001725/**
1726 * do_system_powerdown(): Issue a machine powerdown
1727 */
1728static void do_system_powerdown(Monitor *mon, const QDict *qdict,
1729 QObject **ret_data)
bellard34751872005-07-02 14:31:34 +00001730{
1731 qemu_system_powerdown_request();
1732}
1733
bellardb86bda52004-09-18 19:32:46 +00001734#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +00001735static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
bellardb86bda52004-09-18 19:32:46 +00001736{
aliguori376253e2009-03-05 23:01:23 +00001737 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1738 addr,
1739 pte & mask,
1740 pte & PG_GLOBAL_MASK ? 'G' : '-',
1741 pte & PG_PSE_MASK ? 'P' : '-',
1742 pte & PG_DIRTY_MASK ? 'D' : '-',
1743 pte & PG_ACCESSED_MASK ? 'A' : '-',
1744 pte & PG_PCD_MASK ? 'C' : '-',
1745 pte & PG_PWT_MASK ? 'T' : '-',
1746 pte & PG_USER_MASK ? 'U' : '-',
1747 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001748}
1749
aliguori376253e2009-03-05 23:01:23 +00001750static void tlb_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001751{
bellard6a00d602005-11-21 23:25:50 +00001752 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001753 int l1, l2;
1754 uint32_t pgd, pde, pte;
1755
bellard6a00d602005-11-21 23:25:50 +00001756 env = mon_get_cpu();
1757 if (!env)
1758 return;
1759
bellardb86bda52004-09-18 19:32:46 +00001760 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001761 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001762 return;
1763 }
1764 pgd = env->cr[3] & ~0xfff;
1765 for(l1 = 0; l1 < 1024; l1++) {
1766 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1767 pde = le32_to_cpu(pde);
1768 if (pde & PG_PRESENT_MASK) {
1769 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001770 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
bellardb86bda52004-09-18 19:32:46 +00001771 } else {
1772 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001773 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001774 (uint8_t *)&pte, 4);
1775 pte = le32_to_cpu(pte);
1776 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001777 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001778 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001779 ~0xfff);
1780 }
1781 }
1782 }
1783 }
1784 }
1785}
1786
aliguori376253e2009-03-05 23:01:23 +00001787static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001788 uint32_t end, int prot)
1789{
bellard9746b152004-11-11 18:30:24 +00001790 int prot1;
1791 prot1 = *plast_prot;
1792 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001793 if (*pstart != -1) {
aliguori376253e2009-03-05 23:01:23 +00001794 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1795 *pstart, end, end - *pstart,
1796 prot1 & PG_USER_MASK ? 'u' : '-',
1797 'r',
1798 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001799 }
1800 if (prot != 0)
1801 *pstart = end;
1802 else
1803 *pstart = -1;
1804 *plast_prot = prot;
1805 }
1806}
1807
aliguori376253e2009-03-05 23:01:23 +00001808static void mem_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001809{
bellard6a00d602005-11-21 23:25:50 +00001810 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001811 int l1, l2, prot, last_prot;
1812 uint32_t pgd, pde, pte, start, end;
1813
bellard6a00d602005-11-21 23:25:50 +00001814 env = mon_get_cpu();
1815 if (!env)
1816 return;
1817
bellardb86bda52004-09-18 19:32:46 +00001818 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001819 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001820 return;
1821 }
1822 pgd = env->cr[3] & ~0xfff;
1823 last_prot = 0;
1824 start = -1;
1825 for(l1 = 0; l1 < 1024; l1++) {
1826 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1827 pde = le32_to_cpu(pde);
1828 end = l1 << 22;
1829 if (pde & PG_PRESENT_MASK) {
1830 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1831 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001832 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001833 } else {
1834 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001835 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001836 (uint8_t *)&pte, 4);
1837 pte = le32_to_cpu(pte);
1838 end = (l1 << 22) + (l2 << 12);
1839 if (pte & PG_PRESENT_MASK) {
1840 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1841 } else {
1842 prot = 0;
1843 }
aliguori376253e2009-03-05 23:01:23 +00001844 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001845 }
1846 }
1847 } else {
1848 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001849 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001850 }
1851 }
1852}
1853#endif
1854
aurel327c664e22009-03-03 06:12:22 +00001855#if defined(TARGET_SH4)
1856
aliguori376253e2009-03-05 23:01:23 +00001857static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001858{
aliguori376253e2009-03-05 23:01:23 +00001859 monitor_printf(mon, " tlb%i:\t"
1860 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1861 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1862 "dirty=%hhu writethrough=%hhu\n",
1863 idx,
1864 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1865 tlb->v, tlb->sh, tlb->c, tlb->pr,
1866 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001867}
1868
aliguori376253e2009-03-05 23:01:23 +00001869static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00001870{
1871 CPUState *env = mon_get_cpu();
1872 int i;
1873
aliguori376253e2009-03-05 23:01:23 +00001874 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001875 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001876 print_tlb (mon, i, &env->itlb[i]);
1877 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001878 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001879 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00001880}
1881
1882#endif
1883
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001884static void do_info_kvm_print(Monitor *mon, const QObject *data)
1885{
1886 QDict *qdict;
1887
1888 qdict = qobject_to_qdict(data);
1889
1890 monitor_printf(mon, "kvm support: ");
1891 if (qdict_get_bool(qdict, "present")) {
1892 monitor_printf(mon, "%s\n", qdict_get_bool(qdict, "enabled") ?
1893 "enabled" : "disabled");
1894 } else {
1895 monitor_printf(mon, "not compiled\n");
1896 }
1897}
1898
1899/**
1900 * do_info_kvm(): Show KVM information
1901 *
1902 * Return a QDict with the following information:
1903 *
1904 * - "enabled": true if KVM support is enabled, false otherwise
1905 * - "present": true if QEMU has KVM support, false otherwise
1906 *
1907 * Example:
1908 *
1909 * { "enabled": true, "present": true }
1910 */
1911static void do_info_kvm(Monitor *mon, QObject **ret_data)
aliguori7ba1e612008-11-05 16:04:33 +00001912{
1913#ifdef CONFIG_KVM
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001914 *ret_data = qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
1915 kvm_enabled());
aliguori7ba1e612008-11-05 16:04:33 +00001916#else
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001917 *ret_data = qobject_from_jsonf("{ 'enabled': false, 'present': false }");
aliguori7ba1e612008-11-05 16:04:33 +00001918#endif
1919}
1920
aliguori030ea372009-04-21 22:30:47 +00001921static void do_info_numa(Monitor *mon)
1922{
aliguorib28b6232009-04-22 20:20:29 +00001923 int i;
aliguori030ea372009-04-21 22:30:47 +00001924 CPUState *env;
1925
1926 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1927 for (i = 0; i < nb_numa_nodes; i++) {
1928 monitor_printf(mon, "node %d cpus:", i);
1929 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1930 if (env->numa_node == i) {
1931 monitor_printf(mon, " %d", env->cpu_index);
1932 }
1933 }
1934 monitor_printf(mon, "\n");
1935 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1936 node_mem[i] >> 20);
1937 }
1938}
1939
bellard5f1ce942006-02-08 22:40:15 +00001940#ifdef CONFIG_PROFILER
1941
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02001942int64_t qemu_time;
1943int64_t dev_time;
1944
aliguori376253e2009-03-05 23:01:23 +00001945static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001946{
1947 int64_t total;
1948 total = qemu_time;
1949 if (total == 0)
1950 total = 1;
aliguori376253e2009-03-05 23:01:23 +00001951 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02001952 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00001953 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02001954 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00001955 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001956 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001957}
1958#else
aliguori376253e2009-03-05 23:01:23 +00001959static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001960{
aliguori376253e2009-03-05 23:01:23 +00001961 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00001962}
1963#endif
1964
bellardec36b692006-07-16 18:57:03 +00001965/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001966static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00001967
aliguori376253e2009-03-05 23:01:23 +00001968static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00001969{
1970 int i;
1971 CaptureState *s;
1972
1973 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00001974 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00001975 s->ops.info (s->opaque);
1976 }
1977}
1978
Blue Swirl23130862009-06-06 08:22:04 +00001979#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001980static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00001981{
1982 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001983 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00001984 CaptureState *s;
1985
1986 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1987 if (i == n) {
1988 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00001989 QLIST_REMOVE (s, entries);
bellardec36b692006-07-16 18:57:03 +00001990 qemu_free (s);
1991 return;
1992 }
1993 }
1994}
1995
Luiz Capitulinoc1925482009-08-28 15:27:19 -03001996static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00001997{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03001998 const char *path = qdict_get_str(qdict, "path");
1999 int has_freq = qdict_haskey(qdict, "freq");
2000 int freq = qdict_get_try_int(qdict, "freq", -1);
2001 int has_bits = qdict_haskey(qdict, "bits");
2002 int bits = qdict_get_try_int(qdict, "bits", -1);
2003 int has_channels = qdict_haskey(qdict, "nchannels");
2004 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00002005 CaptureState *s;
2006
2007 s = qemu_mallocz (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002008
2009 freq = has_freq ? freq : 44100;
2010 bits = has_bits ? bits : 16;
2011 nchannels = has_channels ? nchannels : 2;
2012
2013 if (wav_start_capture (s, path, freq, bits, nchannels)) {
aliguori376253e2009-03-05 23:01:23 +00002014 monitor_printf(mon, "Faied to add wave capture\n");
bellardec36b692006-07-16 18:57:03 +00002015 qemu_free (s);
2016 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002017 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002018}
2019#endif
2020
aurel32dc1c0b72008-04-27 23:52:12 +00002021#if defined(TARGET_I386)
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002022static void do_inject_nmi(Monitor *mon, const QDict *qdict)
aurel32dc1c0b72008-04-27 23:52:12 +00002023{
2024 CPUState *env;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002025 int cpu_index = qdict_get_int(qdict, "cpu_index");
aurel32dc1c0b72008-04-27 23:52:12 +00002026
2027 for (env = first_cpu; env != NULL; env = env->next_cpu)
2028 if (env->cpu_index == cpu_index) {
2029 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2030 break;
2031 }
2032}
2033#endif
2034
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002035static void do_info_status_print(Monitor *mon, const QObject *data)
aurel326f9c5ee2008-12-18 22:43:56 +00002036{
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002037 QDict *qdict;
2038
2039 qdict = qobject_to_qdict(data);
2040
2041 monitor_printf(mon, "VM status: ");
2042 if (qdict_get_bool(qdict, "running")) {
2043 monitor_printf(mon, "running");
2044 if (qdict_get_bool(qdict, "singlestep")) {
2045 monitor_printf(mon, " (single step mode)");
aurel321b530a62009-04-05 20:08:59 +00002046 }
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002047 } else {
2048 monitor_printf(mon, "paused");
2049 }
2050
2051 monitor_printf(mon, "\n");
2052}
2053
2054/**
2055 * do_info_status(): VM status
2056 *
2057 * Return a QDict with the following information:
2058 *
2059 * - "running": true if the VM is running, or false if it is paused
2060 * - "singlestep": true if the VM is in single step mode, false otherwise
2061 *
2062 * Example:
2063 *
2064 * { "running": true, "singlestep": false }
2065 */
2066static void do_info_status(Monitor *mon, QObject **ret_data)
2067{
2068 *ret_data = qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2069 vm_running, singlestep);
aurel326f9c5ee2008-12-18 22:43:56 +00002070}
2071
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002072static ram_addr_t balloon_get_value(void)
2073{
2074 ram_addr_t actual;
2075
2076 if (kvm_enabled() && !kvm_has_sync_mmu()) {
2077 qemu_error_new(QERR_KVM_MISSING_CAP, "synchronous MMU", "balloon");
2078 return 0;
2079 }
2080
2081 actual = qemu_balloon_status();
2082 if (actual == 0) {
2083 qemu_error_new(QERR_DEVICE_NOT_ACTIVE, "balloon");
2084 return 0;
2085 }
2086
2087 return actual;
2088}
2089
Luiz Capitulino83fb1de2009-10-07 13:42:01 -03002090/**
2091 * do_balloon(): Request VM to change its memory allocation
2092 */
2093static void do_balloon(Monitor *mon, const QDict *qdict, QObject **ret_data)
aliguoridf751fa2008-12-04 20:19:35 +00002094{
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002095 if (balloon_get_value()) {
2096 /* ballooning is active */
Luiz Capitulino3b0bd6e2009-12-18 13:25:05 -02002097 qemu_balloon(qdict_get_int(qdict, "value"));
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002098 }
aliguoridf751fa2008-12-04 20:19:35 +00002099}
2100
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002101static void monitor_print_balloon(Monitor *mon, const QObject *data)
2102{
Luiz Capitulino7f179672009-12-10 17:15:55 -02002103 QDict *qdict;
2104
2105 qdict = qobject_to_qdict(data);
2106
2107 monitor_printf(mon, "balloon: actual=%" PRId64 "\n",
2108 qdict_get_int(qdict, "balloon") >> 20);
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002109}
2110
2111/**
2112 * do_info_balloon(): Balloon information
Luiz Capitulino7f179672009-12-10 17:15:55 -02002113 *
2114 * Return a QDict with the following information:
2115 *
2116 * - "balloon": current balloon value in bytes
2117 *
2118 * Example:
2119 *
2120 * { "balloon": 1073741824 }
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002121 */
2122static void do_info_balloon(Monitor *mon, QObject **ret_data)
aliguoridf751fa2008-12-04 20:19:35 +00002123{
Anthony Liguoric227f092009-10-01 16:12:16 -05002124 ram_addr_t actual;
aliguoridf751fa2008-12-04 20:19:35 +00002125
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002126 actual = balloon_get_value();
2127 if (actual != 0) {
Luiz Capitulino7f179672009-12-10 17:15:55 -02002128 *ret_data = qobject_from_jsonf("{ 'balloon': %" PRId64 "}",
2129 (int64_t) actual);
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002130 }
aliguoridf751fa2008-12-04 20:19:35 +00002131}
2132
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002133static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002134{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002135 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002136
aliguori76655d62009-03-06 20:27:37 +00002137 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002138 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002139 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002140 return acl;
2141}
aliguori76655d62009-03-06 20:27:37 +00002142
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002143static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002144{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002145 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002146 qemu_acl *acl = find_acl(mon, aclname);
2147 qemu_acl_entry *entry;
2148 int i = 0;
2149
2150 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002151 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002152 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002153 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002154 i++;
2155 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002156 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002157 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002158 }
2159}
2160
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002161static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002162{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002163 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002164 qemu_acl *acl = find_acl(mon, aclname);
2165
2166 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002167 qemu_acl_reset(acl);
2168 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002169 }
2170}
aliguori76655d62009-03-06 20:27:37 +00002171
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002172static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002173{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002174 const char *aclname = qdict_get_str(qdict, "aclname");
2175 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002176 qemu_acl *acl = find_acl(mon, aclname);
2177
2178 if (acl) {
2179 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002180 acl->defaultDeny = 0;
2181 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002182 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002183 acl->defaultDeny = 1;
2184 monitor_printf(mon, "acl: policy set to 'deny'\n");
2185 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002186 monitor_printf(mon, "acl: unknown policy '%s', "
2187 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002188 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002189 }
2190}
aliguori76655d62009-03-06 20:27:37 +00002191
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002192static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002193{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002194 const char *aclname = qdict_get_str(qdict, "aclname");
2195 const char *match = qdict_get_str(qdict, "match");
2196 const char *policy = qdict_get_str(qdict, "policy");
2197 int has_index = qdict_haskey(qdict, "index");
2198 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002199 qemu_acl *acl = find_acl(mon, aclname);
2200 int deny, ret;
2201
2202 if (acl) {
2203 if (strcmp(policy, "allow") == 0) {
2204 deny = 0;
2205 } else if (strcmp(policy, "deny") == 0) {
2206 deny = 1;
2207 } else {
2208 monitor_printf(mon, "acl: unknown policy '%s', "
2209 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002210 return;
2211 }
aliguori28a76be2009-03-06 20:27:40 +00002212 if (has_index)
2213 ret = qemu_acl_insert(acl, deny, match, index);
2214 else
2215 ret = qemu_acl_append(acl, deny, match);
2216 if (ret < 0)
2217 monitor_printf(mon, "acl: unable to add acl entry\n");
2218 else
2219 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002220 }
2221}
aliguori76655d62009-03-06 20:27:37 +00002222
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002223static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002224{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002225 const char *aclname = qdict_get_str(qdict, "aclname");
2226 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002227 qemu_acl *acl = find_acl(mon, aclname);
2228 int ret;
aliguori76655d62009-03-06 20:27:37 +00002229
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002230 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002231 ret = qemu_acl_remove(acl, match);
2232 if (ret < 0)
2233 monitor_printf(mon, "acl: no matching acl entry\n");
2234 else
2235 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002236 }
2237}
2238
Huang Ying79c4f6b2009-06-23 10:05:14 +08002239#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002240static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002241{
2242 CPUState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002243 int cpu_index = qdict_get_int(qdict, "cpu_index");
2244 int bank = qdict_get_int(qdict, "bank");
2245 uint64_t status = qdict_get_int(qdict, "status");
2246 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2247 uint64_t addr = qdict_get_int(qdict, "addr");
2248 uint64_t misc = qdict_get_int(qdict, "misc");
Huang Ying79c4f6b2009-06-23 10:05:14 +08002249
2250 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
2251 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
2252 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
2253 break;
2254 }
2255}
2256#endif
2257
Luiz Capitulinof0d60002009-10-16 12:23:50 -03002258static void do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002259{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002260 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002261 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002262 int fd;
2263
2264 fd = qemu_chr_get_msgfd(mon->chr);
2265 if (fd == -1) {
Markus Armbruster7cdfcfe2009-12-07 21:37:15 +01002266 qemu_error_new(QERR_FD_NOT_SUPPLIED);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002267 return;
2268 }
2269
2270 if (qemu_isdigit(fdname[0])) {
Markus Armbruster7cdfcfe2009-12-07 21:37:15 +01002271 qemu_error_new(QERR_INVALID_PARAMETER, "fdname");
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002272 return;
2273 }
2274
2275 fd = dup(fd);
2276 if (fd == -1) {
Markus Armbruster7cdfcfe2009-12-07 21:37:15 +01002277 if (errno == EMFILE)
2278 qemu_error_new(QERR_TOO_MANY_FILES);
2279 else
2280 qemu_error_new(QERR_UNDEFINED_ERROR);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002281 return;
2282 }
2283
Blue Swirl72cf2d42009-09-12 07:36:22 +00002284 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002285 if (strcmp(monfd->name, fdname) != 0) {
2286 continue;
2287 }
2288
2289 close(monfd->fd);
2290 monfd->fd = fd;
2291 return;
2292 }
2293
Anthony Liguoric227f092009-10-01 16:12:16 -05002294 monfd = qemu_mallocz(sizeof(mon_fd_t));
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002295 monfd->name = qemu_strdup(fdname);
2296 monfd->fd = fd;
2297
Blue Swirl72cf2d42009-09-12 07:36:22 +00002298 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002299}
2300
Luiz Capitulino18f3a512009-10-16 12:23:51 -03002301static void do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002302{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002303 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002304 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002305
Blue Swirl72cf2d42009-09-12 07:36:22 +00002306 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002307 if (strcmp(monfd->name, fdname) != 0) {
2308 continue;
2309 }
2310
Blue Swirl72cf2d42009-09-12 07:36:22 +00002311 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002312 close(monfd->fd);
2313 qemu_free(monfd->name);
2314 qemu_free(monfd);
2315 return;
2316 }
2317
Markus Armbruster063c1a02009-12-07 21:37:11 +01002318 qemu_error_new(QERR_FD_NOT_FOUND, fdname);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002319}
2320
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002321static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002322{
2323 int saved_vm_running = vm_running;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002324 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002325
2326 vm_stop(0);
2327
Juan Quintela05f24012009-08-20 19:42:22 +02002328 if (load_vmstate(mon, name) >= 0 && saved_vm_running)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002329 vm_start();
2330}
2331
Mark McLoughlin7768e042009-07-22 09:11:41 +01002332int monitor_get_fd(Monitor *mon, const char *fdname)
2333{
Anthony Liguoric227f092009-10-01 16:12:16 -05002334 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002335
Blue Swirl72cf2d42009-09-12 07:36:22 +00002336 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002337 int fd;
2338
2339 if (strcmp(monfd->name, fdname) != 0) {
2340 continue;
2341 }
2342
2343 fd = monfd->fd;
2344
2345 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002346 QLIST_REMOVE(monfd, next);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002347 qemu_free(monfd->name);
2348 qemu_free(monfd);
2349
2350 return fd;
2351 }
2352
2353 return -1;
2354}
2355
Anthony Liguoric227f092009-10-01 16:12:16 -05002356static const mon_cmd_t mon_cmds[] = {
Blue Swirl23130862009-06-06 08:22:04 +00002357#include "qemu-monitor.h"
ths5fafdf22007-09-16 21:08:06 +00002358 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002359};
2360
Blue Swirl23130862009-06-06 08:22:04 +00002361/* Please update qemu-monitor.hx when adding or changing commands */
Anthony Liguoric227f092009-10-01 16:12:16 -05002362static const mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002363 {
2364 .name = "version",
2365 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002366 .params = "",
2367 .help = "show the version of QEMU",
Luiz Capitulino45e914c2009-12-10 17:15:58 -02002368 .user_print = do_info_version_print,
Luiz Capitulinoab2d3182009-10-07 13:42:02 -03002369 .mhandler.info_new = do_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002370 },
2371 {
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -02002372 .name = "commands",
2373 .args_type = "",
2374 .params = "",
2375 .help = "list QMP available commands",
2376 .user_print = monitor_user_noop,
2377 .mhandler.info_new = do_info_commands,
2378 },
2379 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002380 .name = "network",
2381 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002382 .params = "",
2383 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002384 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002385 },
2386 {
2387 .name = "chardev",
2388 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002389 .params = "",
2390 .help = "show the character devices",
Luiz Capitulino588b3832009-12-10 17:16:08 -02002391 .user_print = qemu_chr_info_print,
2392 .mhandler.info_new = qemu_chr_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002393 },
2394 {
2395 .name = "block",
2396 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002397 .params = "",
2398 .help = "show the block devices",
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002399 .user_print = bdrv_info_print,
2400 .mhandler.info_new = bdrv_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002401 },
2402 {
2403 .name = "blockstats",
2404 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002405 .params = "",
2406 .help = "show block device statistics",
Luiz Capitulino218a5362009-12-10 17:16:07 -02002407 .user_print = bdrv_stats_print,
2408 .mhandler.info_new = bdrv_info_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002409 },
2410 {
2411 .name = "registers",
2412 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002413 .params = "",
2414 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002415 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002416 },
2417 {
2418 .name = "cpus",
2419 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002420 .params = "",
2421 .help = "show infos for each CPU",
Luiz Capitulino8f3cec02009-10-07 13:42:04 -03002422 .user_print = monitor_print_cpus,
2423 .mhandler.info_new = do_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002424 },
2425 {
2426 .name = "history",
2427 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002428 .params = "",
2429 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002430 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002431 },
2432 {
2433 .name = "irq",
2434 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002435 .params = "",
2436 .help = "show the interrupts statistics (if available)",
Luiz Capitulino910df892009-10-07 13:41:51 -03002437 .mhandler.info = irq_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002438 },
2439 {
2440 .name = "pic",
2441 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002442 .params = "",
2443 .help = "show i8259 (PIC) state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002444 .mhandler.info = pic_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002445 },
2446 {
2447 .name = "pci",
2448 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002449 .params = "",
2450 .help = "show PCI info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002451 .mhandler.info = pci_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002452 },
aurel327c664e22009-03-03 06:12:22 +00002453#if defined(TARGET_I386) || defined(TARGET_SH4)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002454 {
2455 .name = "tlb",
2456 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002457 .params = "",
2458 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002459 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002460 },
aurel327c664e22009-03-03 06:12:22 +00002461#endif
2462#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002463 {
2464 .name = "mem",
2465 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002466 .params = "",
2467 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002468 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002469 },
2470 {
2471 .name = "hpet",
2472 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002473 .params = "",
2474 .help = "show state of HPET",
Luiz Capitulino14f07202009-12-10 17:16:02 -02002475 .user_print = do_info_hpet_print,
2476 .mhandler.info_new = do_info_hpet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002477 },
bellardb86bda52004-09-18 19:32:46 +00002478#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002479 {
2480 .name = "jit",
2481 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002482 .params = "",
2483 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002484 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002485 },
2486 {
2487 .name = "kvm",
2488 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002489 .params = "",
2490 .help = "show KVM information",
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002491 .user_print = do_info_kvm_print,
2492 .mhandler.info_new = do_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002493 },
2494 {
2495 .name = "numa",
2496 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002497 .params = "",
2498 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002499 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002500 },
2501 {
2502 .name = "usb",
2503 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002504 .params = "",
2505 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002506 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002507 },
2508 {
2509 .name = "usbhost",
2510 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002511 .params = "",
2512 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002513 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002514 },
2515 {
2516 .name = "profile",
2517 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002518 .params = "",
2519 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002520 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002521 },
2522 {
2523 .name = "capture",
2524 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002525 .params = "",
2526 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002527 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002528 },
2529 {
2530 .name = "snapshots",
2531 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002532 .params = "",
2533 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002534 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002535 },
2536 {
2537 .name = "status",
2538 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002539 .params = "",
2540 .help = "show the current VM status (running|paused)",
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002541 .user_print = do_info_status_print,
2542 .mhandler.info_new = do_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002543 },
2544 {
2545 .name = "pcmcia",
2546 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002547 .params = "",
2548 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002549 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002550 },
2551 {
2552 .name = "mice",
2553 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002554 .params = "",
2555 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe78c48e2009-12-10 17:16:04 -02002556 .user_print = do_info_mice_print,
2557 .mhandler.info_new = do_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002558 },
2559 {
2560 .name = "vnc",
2561 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002562 .params = "",
2563 .help = "show the vnc server status",
Luiz Capitulinod96fd292009-12-10 17:16:10 -02002564 .user_print = do_info_vnc_print,
2565 .mhandler.info_new = do_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002566 },
2567 {
2568 .name = "name",
2569 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002570 .params = "",
2571 .help = "show the current VM name",
Luiz Capitulinoe05486c2009-12-10 17:16:01 -02002572 .user_print = do_info_name_print,
2573 .mhandler.info_new = do_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002574 },
2575 {
2576 .name = "uuid",
2577 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002578 .params = "",
2579 .help = "show the current VM UUID",
Luiz Capitulino9603ceb2009-12-10 17:16:03 -02002580 .user_print = do_info_uuid_print,
2581 .mhandler.info_new = do_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002582 },
j_mayer76a66252007-03-07 08:32:30 +00002583#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002584 {
2585 .name = "cpustats",
2586 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002587 .params = "",
2588 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002589 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002590 },
j_mayer76a66252007-03-07 08:32:30 +00002591#endif
blueswir131a60e22007-10-26 18:42:59 +00002592#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002593 {
2594 .name = "usernet",
2595 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002596 .params = "",
2597 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002598 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002599 },
blueswir131a60e22007-10-26 18:42:59 +00002600#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002601 {
2602 .name = "migrate",
2603 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002604 .params = "",
2605 .help = "show migration status",
Luiz Capitulinoc86a6682009-12-10 17:16:05 -02002606 .user_print = do_info_migrate_print,
2607 .mhandler.info_new = do_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002608 },
2609 {
2610 .name = "balloon",
2611 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002612 .params = "",
2613 .help = "show balloon information",
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002614 .user_print = monitor_print_balloon,
2615 .mhandler.info_new = do_info_balloon,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002616 },
2617 {
2618 .name = "qtree",
2619 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002620 .params = "",
2621 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002622 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002623 },
2624 {
2625 .name = "qdm",
2626 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002627 .params = "",
2628 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002629 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002630 },
2631 {
2632 .name = "roms",
2633 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002634 .params = "",
2635 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002636 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002637 },
2638 {
2639 .name = NULL,
2640 },
bellard9dc39cb2004-03-14 21:38:27 +00002641};
2642
bellard9307c4c2004-04-04 12:57:25 +00002643/*******************************************************************/
2644
2645static const char *pch;
2646static jmp_buf expr_env;
2647
bellard92a31b12005-02-10 22:00:52 +00002648#define MD_TLONG 0
2649#define MD_I32 1
2650
bellard9307c4c2004-04-04 12:57:25 +00002651typedef struct MonitorDef {
2652 const char *name;
2653 int offset;
blueswir18662d652008-10-02 18:32:44 +00002654 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002655 int type;
bellard9307c4c2004-04-04 12:57:25 +00002656} MonitorDef;
2657
bellard57206fd2004-04-25 18:54:52 +00002658#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002659static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002660{
bellard6a00d602005-11-21 23:25:50 +00002661 CPUState *env = mon_get_cpu();
2662 if (!env)
2663 return 0;
2664 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002665}
2666#endif
2667
bellarda541f292004-04-12 20:39:29 +00002668#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002669static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002670{
bellard6a00d602005-11-21 23:25:50 +00002671 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002672 unsigned int u;
2673 int i;
2674
bellard6a00d602005-11-21 23:25:50 +00002675 if (!env)
2676 return 0;
2677
bellarda541f292004-04-12 20:39:29 +00002678 u = 0;
2679 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002680 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002681
2682 return u;
2683}
2684
blueswir18662d652008-10-02 18:32:44 +00002685static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002686{
bellard6a00d602005-11-21 23:25:50 +00002687 CPUState *env = mon_get_cpu();
2688 if (!env)
2689 return 0;
j_mayer0411a972007-10-25 21:35:50 +00002690 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002691}
2692
blueswir18662d652008-10-02 18:32:44 +00002693static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002694{
bellard6a00d602005-11-21 23:25:50 +00002695 CPUState *env = mon_get_cpu();
2696 if (!env)
2697 return 0;
aurel323d7b4172008-10-21 11:28:46 +00002698 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002699}
bellard9fddaa02004-05-21 12:59:32 +00002700
blueswir18662d652008-10-02 18:32:44 +00002701static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002702{
bellard6a00d602005-11-21 23:25:50 +00002703 CPUState *env = mon_get_cpu();
2704 if (!env)
2705 return 0;
2706 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002707}
2708
blueswir18662d652008-10-02 18:32:44 +00002709static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002710{
bellard6a00d602005-11-21 23:25:50 +00002711 CPUState *env = mon_get_cpu();
2712 if (!env)
2713 return 0;
2714 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002715}
2716
blueswir18662d652008-10-02 18:32:44 +00002717static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002718{
bellard6a00d602005-11-21 23:25:50 +00002719 CPUState *env = mon_get_cpu();
2720 if (!env)
2721 return 0;
2722 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002723}
bellarda541f292004-04-12 20:39:29 +00002724#endif
2725
bellarde95c8d52004-09-30 22:22:08 +00002726#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002727#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002728static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002729{
bellard6a00d602005-11-21 23:25:50 +00002730 CPUState *env = mon_get_cpu();
2731 if (!env)
2732 return 0;
2733 return GET_PSR(env);
bellarde95c8d52004-09-30 22:22:08 +00002734}
bellard7b936c02005-10-30 17:05:13 +00002735#endif
bellarde95c8d52004-09-30 22:22:08 +00002736
blueswir18662d652008-10-02 18:32:44 +00002737static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002738{
bellard6a00d602005-11-21 23:25:50 +00002739 CPUState *env = mon_get_cpu();
2740 if (!env)
2741 return 0;
2742 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002743}
2744#endif
2745
blueswir18662d652008-10-02 18:32:44 +00002746static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002747#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002748
2749#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00002750 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00002751 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00002752 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002753
bellard9307c4c2004-04-04 12:57:25 +00002754 { "eax", offsetof(CPUState, regs[0]) },
2755 { "ecx", offsetof(CPUState, regs[1]) },
2756 { "edx", offsetof(CPUState, regs[2]) },
2757 { "ebx", offsetof(CPUState, regs[3]) },
2758 { "esp|sp", offsetof(CPUState, regs[4]) },
2759 { "ebp|fp", offsetof(CPUState, regs[5]) },
2760 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00002761 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002762#ifdef TARGET_X86_64
2763 { "r8", offsetof(CPUState, regs[8]) },
2764 { "r9", offsetof(CPUState, regs[9]) },
2765 { "r10", offsetof(CPUState, regs[10]) },
2766 { "r11", offsetof(CPUState, regs[11]) },
2767 { "r12", offsetof(CPUState, regs[12]) },
2768 { "r13", offsetof(CPUState, regs[13]) },
2769 { "r14", offsetof(CPUState, regs[14]) },
2770 { "r15", offsetof(CPUState, regs[15]) },
2771#endif
bellard9307c4c2004-04-04 12:57:25 +00002772 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00002773 { "eip", offsetof(CPUState, eip) },
2774 SEG("cs", R_CS)
2775 SEG("ds", R_DS)
2776 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002777 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002778 SEG("fs", R_FS)
2779 SEG("gs", R_GS)
2780 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002781#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002782 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00002783 { "r0", offsetof(CPUState, gpr[0]) },
2784 { "r1", offsetof(CPUState, gpr[1]) },
2785 { "r2", offsetof(CPUState, gpr[2]) },
2786 { "r3", offsetof(CPUState, gpr[3]) },
2787 { "r4", offsetof(CPUState, gpr[4]) },
2788 { "r5", offsetof(CPUState, gpr[5]) },
2789 { "r6", offsetof(CPUState, gpr[6]) },
2790 { "r7", offsetof(CPUState, gpr[7]) },
2791 { "r8", offsetof(CPUState, gpr[8]) },
2792 { "r9", offsetof(CPUState, gpr[9]) },
2793 { "r10", offsetof(CPUState, gpr[10]) },
2794 { "r11", offsetof(CPUState, gpr[11]) },
2795 { "r12", offsetof(CPUState, gpr[12]) },
2796 { "r13", offsetof(CPUState, gpr[13]) },
2797 { "r14", offsetof(CPUState, gpr[14]) },
2798 { "r15", offsetof(CPUState, gpr[15]) },
2799 { "r16", offsetof(CPUState, gpr[16]) },
2800 { "r17", offsetof(CPUState, gpr[17]) },
2801 { "r18", offsetof(CPUState, gpr[18]) },
2802 { "r19", offsetof(CPUState, gpr[19]) },
2803 { "r20", offsetof(CPUState, gpr[20]) },
2804 { "r21", offsetof(CPUState, gpr[21]) },
2805 { "r22", offsetof(CPUState, gpr[22]) },
2806 { "r23", offsetof(CPUState, gpr[23]) },
2807 { "r24", offsetof(CPUState, gpr[24]) },
2808 { "r25", offsetof(CPUState, gpr[25]) },
2809 { "r26", offsetof(CPUState, gpr[26]) },
2810 { "r27", offsetof(CPUState, gpr[27]) },
2811 { "r28", offsetof(CPUState, gpr[28]) },
2812 { "r29", offsetof(CPUState, gpr[29]) },
2813 { "r30", offsetof(CPUState, gpr[30]) },
2814 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00002815 /* Floating point registers */
2816 { "f0", offsetof(CPUState, fpr[0]) },
2817 { "f1", offsetof(CPUState, fpr[1]) },
2818 { "f2", offsetof(CPUState, fpr[2]) },
2819 { "f3", offsetof(CPUState, fpr[3]) },
2820 { "f4", offsetof(CPUState, fpr[4]) },
2821 { "f5", offsetof(CPUState, fpr[5]) },
2822 { "f6", offsetof(CPUState, fpr[6]) },
2823 { "f7", offsetof(CPUState, fpr[7]) },
2824 { "f8", offsetof(CPUState, fpr[8]) },
2825 { "f9", offsetof(CPUState, fpr[9]) },
2826 { "f10", offsetof(CPUState, fpr[10]) },
2827 { "f11", offsetof(CPUState, fpr[11]) },
2828 { "f12", offsetof(CPUState, fpr[12]) },
2829 { "f13", offsetof(CPUState, fpr[13]) },
2830 { "f14", offsetof(CPUState, fpr[14]) },
2831 { "f15", offsetof(CPUState, fpr[15]) },
2832 { "f16", offsetof(CPUState, fpr[16]) },
2833 { "f17", offsetof(CPUState, fpr[17]) },
2834 { "f18", offsetof(CPUState, fpr[18]) },
2835 { "f19", offsetof(CPUState, fpr[19]) },
2836 { "f20", offsetof(CPUState, fpr[20]) },
2837 { "f21", offsetof(CPUState, fpr[21]) },
2838 { "f22", offsetof(CPUState, fpr[22]) },
2839 { "f23", offsetof(CPUState, fpr[23]) },
2840 { "f24", offsetof(CPUState, fpr[24]) },
2841 { "f25", offsetof(CPUState, fpr[25]) },
2842 { "f26", offsetof(CPUState, fpr[26]) },
2843 { "f27", offsetof(CPUState, fpr[27]) },
2844 { "f28", offsetof(CPUState, fpr[28]) },
2845 { "f29", offsetof(CPUState, fpr[29]) },
2846 { "f30", offsetof(CPUState, fpr[30]) },
2847 { "f31", offsetof(CPUState, fpr[31]) },
2848 { "fpscr", offsetof(CPUState, fpscr) },
2849 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00002850 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00002851 { "lr", offsetof(CPUState, lr) },
2852 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00002853 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00002854 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00002855 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00002856 { "msr", 0, &monitor_get_msr, },
2857 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00002858 { "tbu", 0, &monitor_get_tbu, },
2859 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00002860#if defined(TARGET_PPC64)
2861 /* Address space register */
2862 { "asr", offsetof(CPUState, asr) },
2863#endif
2864 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00002865 { "sdr1", offsetof(CPUState, sdr1) },
2866 { "sr0", offsetof(CPUState, sr[0]) },
2867 { "sr1", offsetof(CPUState, sr[1]) },
2868 { "sr2", offsetof(CPUState, sr[2]) },
2869 { "sr3", offsetof(CPUState, sr[3]) },
2870 { "sr4", offsetof(CPUState, sr[4]) },
2871 { "sr5", offsetof(CPUState, sr[5]) },
2872 { "sr6", offsetof(CPUState, sr[6]) },
2873 { "sr7", offsetof(CPUState, sr[7]) },
2874 { "sr8", offsetof(CPUState, sr[8]) },
2875 { "sr9", offsetof(CPUState, sr[9]) },
2876 { "sr10", offsetof(CPUState, sr[10]) },
2877 { "sr11", offsetof(CPUState, sr[11]) },
2878 { "sr12", offsetof(CPUState, sr[12]) },
2879 { "sr13", offsetof(CPUState, sr[13]) },
2880 { "sr14", offsetof(CPUState, sr[14]) },
2881 { "sr15", offsetof(CPUState, sr[15]) },
2882 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00002883#elif defined(TARGET_SPARC)
2884 { "g0", offsetof(CPUState, gregs[0]) },
2885 { "g1", offsetof(CPUState, gregs[1]) },
2886 { "g2", offsetof(CPUState, gregs[2]) },
2887 { "g3", offsetof(CPUState, gregs[3]) },
2888 { "g4", offsetof(CPUState, gregs[4]) },
2889 { "g5", offsetof(CPUState, gregs[5]) },
2890 { "g6", offsetof(CPUState, gregs[6]) },
2891 { "g7", offsetof(CPUState, gregs[7]) },
2892 { "o0", 0, monitor_get_reg },
2893 { "o1", 1, monitor_get_reg },
2894 { "o2", 2, monitor_get_reg },
2895 { "o3", 3, monitor_get_reg },
2896 { "o4", 4, monitor_get_reg },
2897 { "o5", 5, monitor_get_reg },
2898 { "o6", 6, monitor_get_reg },
2899 { "o7", 7, monitor_get_reg },
2900 { "l0", 8, monitor_get_reg },
2901 { "l1", 9, monitor_get_reg },
2902 { "l2", 10, monitor_get_reg },
2903 { "l3", 11, monitor_get_reg },
2904 { "l4", 12, monitor_get_reg },
2905 { "l5", 13, monitor_get_reg },
2906 { "l6", 14, monitor_get_reg },
2907 { "l7", 15, monitor_get_reg },
2908 { "i0", 16, monitor_get_reg },
2909 { "i1", 17, monitor_get_reg },
2910 { "i2", 18, monitor_get_reg },
2911 { "i3", 19, monitor_get_reg },
2912 { "i4", 20, monitor_get_reg },
2913 { "i5", 21, monitor_get_reg },
2914 { "i6", 22, monitor_get_reg },
2915 { "i7", 23, monitor_get_reg },
2916 { "pc", offsetof(CPUState, pc) },
2917 { "npc", offsetof(CPUState, npc) },
2918 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00002919#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00002920 { "psr", 0, &monitor_get_psr, },
2921 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00002922#endif
bellarde95c8d52004-09-30 22:22:08 +00002923 { "tbr", offsetof(CPUState, tbr) },
2924 { "fsr", offsetof(CPUState, fsr) },
2925 { "f0", offsetof(CPUState, fpr[0]) },
2926 { "f1", offsetof(CPUState, fpr[1]) },
2927 { "f2", offsetof(CPUState, fpr[2]) },
2928 { "f3", offsetof(CPUState, fpr[3]) },
2929 { "f4", offsetof(CPUState, fpr[4]) },
2930 { "f5", offsetof(CPUState, fpr[5]) },
2931 { "f6", offsetof(CPUState, fpr[6]) },
2932 { "f7", offsetof(CPUState, fpr[7]) },
2933 { "f8", offsetof(CPUState, fpr[8]) },
2934 { "f9", offsetof(CPUState, fpr[9]) },
2935 { "f10", offsetof(CPUState, fpr[10]) },
2936 { "f11", offsetof(CPUState, fpr[11]) },
2937 { "f12", offsetof(CPUState, fpr[12]) },
2938 { "f13", offsetof(CPUState, fpr[13]) },
2939 { "f14", offsetof(CPUState, fpr[14]) },
2940 { "f15", offsetof(CPUState, fpr[15]) },
2941 { "f16", offsetof(CPUState, fpr[16]) },
2942 { "f17", offsetof(CPUState, fpr[17]) },
2943 { "f18", offsetof(CPUState, fpr[18]) },
2944 { "f19", offsetof(CPUState, fpr[19]) },
2945 { "f20", offsetof(CPUState, fpr[20]) },
2946 { "f21", offsetof(CPUState, fpr[21]) },
2947 { "f22", offsetof(CPUState, fpr[22]) },
2948 { "f23", offsetof(CPUState, fpr[23]) },
2949 { "f24", offsetof(CPUState, fpr[24]) },
2950 { "f25", offsetof(CPUState, fpr[25]) },
2951 { "f26", offsetof(CPUState, fpr[26]) },
2952 { "f27", offsetof(CPUState, fpr[27]) },
2953 { "f28", offsetof(CPUState, fpr[28]) },
2954 { "f29", offsetof(CPUState, fpr[29]) },
2955 { "f30", offsetof(CPUState, fpr[30]) },
2956 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00002957#ifdef TARGET_SPARC64
2958 { "f32", offsetof(CPUState, fpr[32]) },
2959 { "f34", offsetof(CPUState, fpr[34]) },
2960 { "f36", offsetof(CPUState, fpr[36]) },
2961 { "f38", offsetof(CPUState, fpr[38]) },
2962 { "f40", offsetof(CPUState, fpr[40]) },
2963 { "f42", offsetof(CPUState, fpr[42]) },
2964 { "f44", offsetof(CPUState, fpr[44]) },
2965 { "f46", offsetof(CPUState, fpr[46]) },
2966 { "f48", offsetof(CPUState, fpr[48]) },
2967 { "f50", offsetof(CPUState, fpr[50]) },
2968 { "f52", offsetof(CPUState, fpr[52]) },
2969 { "f54", offsetof(CPUState, fpr[54]) },
2970 { "f56", offsetof(CPUState, fpr[56]) },
2971 { "f58", offsetof(CPUState, fpr[58]) },
2972 { "f60", offsetof(CPUState, fpr[60]) },
2973 { "f62", offsetof(CPUState, fpr[62]) },
2974 { "asi", offsetof(CPUState, asi) },
2975 { "pstate", offsetof(CPUState, pstate) },
2976 { "cansave", offsetof(CPUState, cansave) },
2977 { "canrestore", offsetof(CPUState, canrestore) },
2978 { "otherwin", offsetof(CPUState, otherwin) },
2979 { "wstate", offsetof(CPUState, wstate) },
2980 { "cleanwin", offsetof(CPUState, cleanwin) },
2981 { "fprs", offsetof(CPUState, fprs) },
2982#endif
bellard9307c4c2004-04-04 12:57:25 +00002983#endif
2984 { NULL },
2985};
2986
aliguori376253e2009-03-05 23:01:23 +00002987static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00002988{
aliguori376253e2009-03-05 23:01:23 +00002989 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00002990 longjmp(expr_env, 1);
2991}
2992
bellard6a00d602005-11-21 23:25:50 +00002993/* return 0 if OK, -1 if not found, -2 if no CPU defined */
bellard92a31b12005-02-10 22:00:52 +00002994static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00002995{
blueswir18662d652008-10-02 18:32:44 +00002996 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00002997 void *ptr;
2998
bellard9307c4c2004-04-04 12:57:25 +00002999 for(md = monitor_defs; md->name != NULL; md++) {
3000 if (compare_cmd(name, md->name)) {
3001 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003002 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003003 } else {
bellard6a00d602005-11-21 23:25:50 +00003004 CPUState *env = mon_get_cpu();
3005 if (!env)
3006 return -2;
3007 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003008 switch(md->type) {
3009 case MD_I32:
3010 *pval = *(int32_t *)ptr;
3011 break;
3012 case MD_TLONG:
3013 *pval = *(target_long *)ptr;
3014 break;
3015 default:
3016 *pval = 0;
3017 break;
3018 }
bellard9307c4c2004-04-04 12:57:25 +00003019 }
3020 return 0;
3021 }
3022 }
3023 return -1;
3024}
3025
3026static void next(void)
3027{
Blue Swirl660f11b2009-07-31 21:16:51 +00003028 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003029 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003030 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003031 pch++;
3032 }
3033}
3034
aliguori376253e2009-03-05 23:01:23 +00003035static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003036
aliguori376253e2009-03-05 23:01:23 +00003037static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003038{
blueswir1c2efc952007-09-25 17:28:42 +00003039 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003040 char *p;
bellard6a00d602005-11-21 23:25:50 +00003041 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003042
3043 switch(*pch) {
3044 case '+':
3045 next();
aliguori376253e2009-03-05 23:01:23 +00003046 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003047 break;
3048 case '-':
3049 next();
aliguori376253e2009-03-05 23:01:23 +00003050 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003051 break;
3052 case '~':
3053 next();
aliguori376253e2009-03-05 23:01:23 +00003054 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003055 break;
3056 case '(':
3057 next();
aliguori376253e2009-03-05 23:01:23 +00003058 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003059 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003060 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003061 }
3062 next();
3063 break;
bellard81d09122004-07-14 17:21:37 +00003064 case '\'':
3065 pch++;
3066 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003067 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003068 n = *pch;
3069 pch++;
3070 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003071 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003072 next();
3073 break;
bellard9307c4c2004-04-04 12:57:25 +00003074 case '$':
3075 {
3076 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003077 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003078
bellard9307c4c2004-04-04 12:57:25 +00003079 pch++;
3080 q = buf;
3081 while ((*pch >= 'a' && *pch <= 'z') ||
3082 (*pch >= 'A' && *pch <= 'Z') ||
3083 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003084 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003085 if ((q - buf) < sizeof(buf) - 1)
3086 *q++ = *pch;
3087 pch++;
3088 }
blueswir1cd390082008-11-16 13:53:32 +00003089 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003090 pch++;
3091 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003092 ret = get_monitor_def(&reg, buf);
bellard6a00d602005-11-21 23:25:50 +00003093 if (ret == -1)
aliguori376253e2009-03-05 23:01:23 +00003094 expr_error(mon, "unknown register");
ths5fafdf22007-09-16 21:08:06 +00003095 else if (ret == -2)
aliguori376253e2009-03-05 23:01:23 +00003096 expr_error(mon, "no cpu defined");
blueswir17743e582007-09-24 18:39:04 +00003097 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003098 }
3099 break;
3100 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003101 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003102 n = 0;
3103 break;
3104 default:
blueswir17743e582007-09-24 18:39:04 +00003105#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003106 n = strtoull(pch, &p, 0);
3107#else
bellard9307c4c2004-04-04 12:57:25 +00003108 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003109#endif
bellard9307c4c2004-04-04 12:57:25 +00003110 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003111 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003112 }
3113 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003114 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003115 pch++;
3116 break;
3117 }
3118 return n;
3119}
3120
3121
aliguori376253e2009-03-05 23:01:23 +00003122static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003123{
blueswir1c2efc952007-09-25 17:28:42 +00003124 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003125 int op;
ths3b46e622007-09-17 08:09:54 +00003126
aliguori376253e2009-03-05 23:01:23 +00003127 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003128 for(;;) {
3129 op = *pch;
3130 if (op != '*' && op != '/' && op != '%')
3131 break;
3132 next();
aliguori376253e2009-03-05 23:01:23 +00003133 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003134 switch(op) {
3135 default:
3136 case '*':
3137 val *= val2;
3138 break;
3139 case '/':
3140 case '%':
ths5fafdf22007-09-16 21:08:06 +00003141 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003142 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003143 if (op == '/')
3144 val /= val2;
3145 else
3146 val %= val2;
3147 break;
3148 }
3149 }
3150 return val;
3151}
3152
aliguori376253e2009-03-05 23:01:23 +00003153static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003154{
blueswir1c2efc952007-09-25 17:28:42 +00003155 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003156 int op;
bellard9307c4c2004-04-04 12:57:25 +00003157
aliguori376253e2009-03-05 23:01:23 +00003158 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003159 for(;;) {
3160 op = *pch;
3161 if (op != '&' && op != '|' && op != '^')
3162 break;
3163 next();
aliguori376253e2009-03-05 23:01:23 +00003164 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003165 switch(op) {
3166 default:
3167 case '&':
3168 val &= val2;
3169 break;
3170 case '|':
3171 val |= val2;
3172 break;
3173 case '^':
3174 val ^= val2;
3175 break;
3176 }
3177 }
3178 return val;
3179}
3180
aliguori376253e2009-03-05 23:01:23 +00003181static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003182{
blueswir1c2efc952007-09-25 17:28:42 +00003183 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003184 int op;
bellard9307c4c2004-04-04 12:57:25 +00003185
aliguori376253e2009-03-05 23:01:23 +00003186 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003187 for(;;) {
3188 op = *pch;
3189 if (op != '+' && op != '-')
3190 break;
3191 next();
aliguori376253e2009-03-05 23:01:23 +00003192 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003193 if (op == '+')
3194 val += val2;
3195 else
3196 val -= val2;
3197 }
3198 return val;
3199}
3200
aliguori376253e2009-03-05 23:01:23 +00003201static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003202{
3203 pch = *pp;
3204 if (setjmp(expr_env)) {
3205 *pp = pch;
3206 return -1;
3207 }
blueswir1cd390082008-11-16 13:53:32 +00003208 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003209 pch++;
aliguori376253e2009-03-05 23:01:23 +00003210 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003211 *pp = pch;
3212 return 0;
3213}
3214
3215static int get_str(char *buf, int buf_size, const char **pp)
3216{
3217 const char *p;
3218 char *q;
3219 int c;
3220
bellard81d09122004-07-14 17:21:37 +00003221 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003222 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003223 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003224 p++;
3225 if (*p == '\0') {
3226 fail:
bellard81d09122004-07-14 17:21:37 +00003227 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003228 *pp = p;
3229 return -1;
3230 }
bellard9307c4c2004-04-04 12:57:25 +00003231 if (*p == '\"') {
3232 p++;
3233 while (*p != '\0' && *p != '\"') {
3234 if (*p == '\\') {
3235 p++;
3236 c = *p++;
3237 switch(c) {
3238 case 'n':
3239 c = '\n';
3240 break;
3241 case 'r':
3242 c = '\r';
3243 break;
3244 case '\\':
3245 case '\'':
3246 case '\"':
3247 break;
3248 default:
3249 qemu_printf("unsupported escape code: '\\%c'\n", c);
3250 goto fail;
3251 }
3252 if ((q - buf) < buf_size - 1) {
3253 *q++ = c;
3254 }
3255 } else {
3256 if ((q - buf) < buf_size - 1) {
3257 *q++ = *p;
3258 }
3259 p++;
3260 }
3261 }
3262 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003263 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003264 goto fail;
3265 }
3266 p++;
3267 } else {
blueswir1cd390082008-11-16 13:53:32 +00003268 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003269 if ((q - buf) < buf_size - 1) {
3270 *q++ = *p;
3271 }
3272 p++;
3273 }
bellard9307c4c2004-04-04 12:57:25 +00003274 }
bellard81d09122004-07-14 17:21:37 +00003275 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003276 *pp = p;
3277 return 0;
3278}
3279
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003280/*
3281 * Store the command-name in cmdname, and return a pointer to
3282 * the remaining of the command string.
3283 */
3284static const char *get_command_name(const char *cmdline,
3285 char *cmdname, size_t nlen)
3286{
3287 size_t len;
3288 const char *p, *pstart;
3289
3290 p = cmdline;
3291 while (qemu_isspace(*p))
3292 p++;
3293 if (*p == '\0')
3294 return NULL;
3295 pstart = p;
3296 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3297 p++;
3298 len = p - pstart;
3299 if (len > nlen - 1)
3300 len = nlen - 1;
3301 memcpy(cmdname, pstart, len);
3302 cmdname[len] = '\0';
3303 return p;
3304}
3305
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003306/**
3307 * Read key of 'type' into 'key' and return the current
3308 * 'type' pointer.
3309 */
3310static char *key_get_info(const char *type, char **key)
3311{
3312 size_t len;
3313 char *p, *str;
3314
3315 if (*type == ',')
3316 type++;
3317
3318 p = strchr(type, ':');
3319 if (!p) {
3320 *key = NULL;
3321 return NULL;
3322 }
3323 len = p - type;
3324
3325 str = qemu_malloc(len + 1);
3326 memcpy(str, type, len);
3327 str[len] = '\0';
3328
3329 *key = str;
3330 return ++p;
3331}
3332
bellard9307c4c2004-04-04 12:57:25 +00003333static int default_fmt_format = 'x';
3334static int default_fmt_size = 4;
3335
3336#define MAX_ARGS 16
3337
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003338static int is_valid_option(const char *c, const char *typestr)
3339{
3340 char option[3];
3341
3342 option[0] = '-';
3343 option[1] = *c;
3344 option[2] = '\0';
3345
3346 typestr = strstr(typestr, option);
3347 return (typestr != NULL);
3348}
3349
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003350static const mon_cmd_t *monitor_find_command(const char *cmdname)
3351{
3352 const mon_cmd_t *cmd;
3353
3354 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
3355 if (compare_cmd(cmdname, cmd->name)) {
3356 return cmd;
3357 }
3358 }
3359
3360 return NULL;
3361}
3362
Anthony Liguoric227f092009-10-01 16:12:16 -05003363static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003364 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003365 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003366{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003367 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003368 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003369 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003370 char cmdname[256];
3371 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003372 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003373
3374#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003375 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003376#endif
ths3b46e622007-09-17 08:09:54 +00003377
bellard9307c4c2004-04-04 12:57:25 +00003378 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003379 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3380 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003381 return NULL;
ths3b46e622007-09-17 08:09:54 +00003382
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003383 cmd = monitor_find_command(cmdname);
3384 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003385 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003386 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003387 }
bellard9307c4c2004-04-04 12:57:25 +00003388
bellard9307c4c2004-04-04 12:57:25 +00003389 /* parse the parameters */
3390 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003391 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003392 typestr = key_get_info(typestr, &key);
3393 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003394 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003395 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003396 typestr++;
3397 switch(c) {
3398 case 'F':
bellard81d09122004-07-14 17:21:37 +00003399 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003400 case 's':
3401 {
3402 int ret;
ths3b46e622007-09-17 08:09:54 +00003403
blueswir1cd390082008-11-16 13:53:32 +00003404 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003405 p++;
3406 if (*typestr == '?') {
3407 typestr++;
3408 if (*p == '\0') {
3409 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003410 break;
bellard9307c4c2004-04-04 12:57:25 +00003411 }
3412 }
3413 ret = get_str(buf, sizeof(buf), &p);
3414 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003415 switch(c) {
3416 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003417 monitor_printf(mon, "%s: filename expected\n",
3418 cmdname);
bellard81d09122004-07-14 17:21:37 +00003419 break;
3420 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003421 monitor_printf(mon, "%s: block device name expected\n",
3422 cmdname);
bellard81d09122004-07-14 17:21:37 +00003423 break;
3424 default:
aliguori376253e2009-03-05 23:01:23 +00003425 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003426 break;
3427 }
bellard9307c4c2004-04-04 12:57:25 +00003428 goto fail;
3429 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003430 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003431 }
3432 break;
3433 case '/':
3434 {
3435 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003436
blueswir1cd390082008-11-16 13:53:32 +00003437 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003438 p++;
3439 if (*p == '/') {
3440 /* format found */
3441 p++;
3442 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003443 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003444 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003445 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003446 count = count * 10 + (*p - '0');
3447 p++;
3448 }
3449 }
3450 size = -1;
3451 format = -1;
3452 for(;;) {
3453 switch(*p) {
3454 case 'o':
3455 case 'd':
3456 case 'u':
3457 case 'x':
3458 case 'i':
3459 case 'c':
3460 format = *p++;
3461 break;
3462 case 'b':
3463 size = 1;
3464 p++;
3465 break;
3466 case 'h':
3467 size = 2;
3468 p++;
3469 break;
3470 case 'w':
3471 size = 4;
3472 p++;
3473 break;
3474 case 'g':
3475 case 'L':
3476 size = 8;
3477 p++;
3478 break;
3479 default:
3480 goto next;
3481 }
3482 }
3483 next:
blueswir1cd390082008-11-16 13:53:32 +00003484 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003485 monitor_printf(mon, "invalid char in format: '%c'\n",
3486 *p);
bellard9307c4c2004-04-04 12:57:25 +00003487 goto fail;
3488 }
bellard9307c4c2004-04-04 12:57:25 +00003489 if (format < 0)
3490 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003491 if (format != 'i') {
3492 /* for 'i', not specifying a size gives -1 as size */
3493 if (size < 0)
3494 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003495 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003496 }
bellard9307c4c2004-04-04 12:57:25 +00003497 default_fmt_format = format;
3498 } else {
3499 count = 1;
3500 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003501 if (format != 'i') {
3502 size = default_fmt_size;
3503 } else {
3504 size = -1;
3505 }
bellard9307c4c2004-04-04 12:57:25 +00003506 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003507 qdict_put(qdict, "count", qint_from_int(count));
3508 qdict_put(qdict, "format", qint_from_int(format));
3509 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003510 }
3511 break;
3512 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003513 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003514 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003515 {
blueswir1c2efc952007-09-25 17:28:42 +00003516 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003517
blueswir1cd390082008-11-16 13:53:32 +00003518 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003519 p++;
bellard34405572004-06-08 00:55:58 +00003520 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003521 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003522 if (*p == '\0') {
3523 typestr++;
3524 break;
3525 }
bellard34405572004-06-08 00:55:58 +00003526 } else {
3527 if (*p == '.') {
3528 p++;
blueswir1cd390082008-11-16 13:53:32 +00003529 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003530 p++;
bellard34405572004-06-08 00:55:58 +00003531 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003532 typestr++;
3533 break;
bellard34405572004-06-08 00:55:58 +00003534 }
3535 }
bellard13224a82006-07-14 22:03:35 +00003536 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003537 }
aliguori376253e2009-03-05 23:01:23 +00003538 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003539 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003540 /* Check if 'i' is greater than 32-bit */
3541 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3542 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3543 monitor_printf(mon, "integer is for 32-bit values\n");
3544 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003545 } else if (c == 'M') {
3546 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003547 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003548 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003549 }
3550 break;
3551 case '-':
3552 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003553 const char *tmp = p;
3554 int has_option, skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003555 /* option */
ths3b46e622007-09-17 08:09:54 +00003556
bellard9307c4c2004-04-04 12:57:25 +00003557 c = *typestr++;
3558 if (c == '\0')
3559 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003560 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003561 p++;
3562 has_option = 0;
3563 if (*p == '-') {
3564 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003565 if(c != *p) {
3566 if(!is_valid_option(p, typestr)) {
3567
3568 monitor_printf(mon, "%s: unsupported option -%c\n",
3569 cmdname, *p);
3570 goto fail;
3571 } else {
3572 skip_key = 1;
3573 }
bellard9307c4c2004-04-04 12:57:25 +00003574 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003575 if(skip_key) {
3576 p = tmp;
3577 } else {
3578 p++;
3579 has_option = 1;
3580 }
bellard9307c4c2004-04-04 12:57:25 +00003581 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003582 qdict_put(qdict, key, qint_from_int(has_option));
bellard9307c4c2004-04-04 12:57:25 +00003583 }
3584 break;
3585 default:
3586 bad_type:
aliguori376253e2009-03-05 23:01:23 +00003587 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00003588 goto fail;
3589 }
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003590 qemu_free(key);
3591 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003592 }
3593 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003594 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003595 p++;
3596 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003597 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3598 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00003599 goto fail;
3600 }
3601
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003602 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003603
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003604fail:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003605 qemu_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003606 return NULL;
3607}
3608
Luiz Capitulino8204a912009-11-18 23:05:31 -02003609static void monitor_print_error(Monitor *mon)
3610{
3611 qerror_print(mon->error);
3612 QDECREF(mon->error);
3613 mon->error = NULL;
3614}
3615
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003616static void monitor_call_handler(Monitor *mon, const mon_cmd_t *cmd,
3617 const QDict *params)
3618{
3619 QObject *data = NULL;
3620
3621 cmd->mhandler.cmd_new(mon, params, &data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -02003622
3623 if (monitor_ctrl_mode(mon)) {
3624 /* Monitor Protocol */
3625 monitor_protocol_emitter(mon, data);
3626 } else {
3627 /* User Protocol */
3628 if (data)
3629 cmd->user_print(mon, data);
3630 }
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003631
3632 qobject_decref(data);
3633}
3634
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003635static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003636{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003637 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003638 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003639
3640 qdict = qdict_new();
3641
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03003642 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003643 if (!cmd)
3644 goto out;
3645
3646 qemu_errors_to_mon(mon);
3647
3648 if (monitor_handler_ported(cmd)) {
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003649 monitor_call_handler(mon, cmd, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003650 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03003651 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003652 }
3653
Luiz Capitulino8204a912009-11-18 23:05:31 -02003654 if (monitor_has_error(mon))
3655 monitor_print_error(mon);
3656
3657 qemu_errors_to_previous();
Luiz Capitulino13917be2009-10-07 13:41:54 -03003658
3659out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003660 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00003661}
3662
bellard81d09122004-07-14 17:21:37 +00003663static void cmd_completion(const char *name, const char *list)
3664{
3665 const char *p, *pstart;
3666 char cmd[128];
3667 int len;
3668
3669 p = list;
3670 for(;;) {
3671 pstart = p;
3672 p = strchr(p, '|');
3673 if (!p)
3674 p = pstart + strlen(pstart);
3675 len = p - pstart;
3676 if (len > sizeof(cmd) - 2)
3677 len = sizeof(cmd) - 2;
3678 memcpy(cmd, pstart, len);
3679 cmd[len] = '\0';
3680 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00003681 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00003682 }
3683 if (*p == '\0')
3684 break;
3685 p++;
3686 }
3687}
3688
3689static void file_completion(const char *input)
3690{
3691 DIR *ffs;
3692 struct dirent *d;
3693 char path[1024];
3694 char file[1024], file_prefix[1024];
3695 int input_path_len;
3696 const char *p;
3697
ths5fafdf22007-09-16 21:08:06 +00003698 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00003699 if (!p) {
3700 input_path_len = 0;
3701 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00003702 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00003703 } else {
3704 input_path_len = p - input + 1;
3705 memcpy(path, input, input_path_len);
3706 if (input_path_len > sizeof(path) - 1)
3707 input_path_len = sizeof(path) - 1;
3708 path[input_path_len] = '\0';
3709 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3710 }
3711#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00003712 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
3713 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00003714#endif
3715 ffs = opendir(path);
3716 if (!ffs)
3717 return;
3718 for(;;) {
3719 struct stat sb;
3720 d = readdir(ffs);
3721 if (!d)
3722 break;
3723 if (strstart(d->d_name, file_prefix, NULL)) {
3724 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00003725 if (input_path_len < sizeof(file))
3726 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3727 d->d_name);
bellard81d09122004-07-14 17:21:37 +00003728 /* stat the file to find out if it's a directory.
3729 * In that case add a slash to speed up typing long paths
3730 */
3731 stat(file, &sb);
3732 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00003733 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00003734 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00003735 }
3736 }
3737 closedir(ffs);
3738}
3739
aliguori51de9762009-03-05 23:00:43 +00003740static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00003741{
aliguori51de9762009-03-05 23:00:43 +00003742 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00003743 const char *input = opaque;
3744
3745 if (input[0] == '\0' ||
3746 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00003747 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00003748 }
3749}
3750
3751/* NOTE: this parser is an approximate form of the real command parser */
3752static void parse_cmdline(const char *cmdline,
3753 int *pnb_args, char **args)
3754{
3755 const char *p;
3756 int nb_args, ret;
3757 char buf[1024];
3758
3759 p = cmdline;
3760 nb_args = 0;
3761 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00003762 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00003763 p++;
3764 if (*p == '\0')
3765 break;
3766 if (nb_args >= MAX_ARGS)
3767 break;
3768 ret = get_str(buf, sizeof(buf), &p);
3769 args[nb_args] = qemu_strdup(buf);
3770 nb_args++;
3771 if (ret < 0)
3772 break;
3773 }
3774 *pnb_args = nb_args;
3775}
3776
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003777static const char *next_arg_type(const char *typestr)
3778{
3779 const char *p = strchr(typestr, ':');
3780 return (p != NULL ? ++p : typestr);
3781}
3782
aliguori4c36ba32009-03-05 23:01:37 +00003783static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00003784{
3785 const char *cmdname;
3786 char *args[MAX_ARGS];
3787 int nb_args, i, len;
3788 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05003789 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00003790 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00003791
3792 parse_cmdline(cmdline, &nb_args, args);
3793#ifdef DEBUG_COMPLETION
3794 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00003795 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00003796 }
3797#endif
3798
3799 /* if the line ends with a space, it means we want to complete the
3800 next arg */
3801 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00003802 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
bellard81d09122004-07-14 17:21:37 +00003803 if (nb_args >= MAX_ARGS)
3804 return;
3805 args[nb_args++] = qemu_strdup("");
3806 }
3807 if (nb_args <= 1) {
3808 /* command completion */
3809 if (nb_args == 0)
3810 cmdname = "";
3811 else
3812 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00003813 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00003814 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00003815 cmd_completion(cmdname, cmd->name);
3816 }
3817 } else {
3818 /* find the command */
aliguori376253e2009-03-05 23:01:23 +00003819 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00003820 if (compare_cmd(args[0], cmd->name))
3821 goto found;
3822 }
3823 return;
3824 found:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003825 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00003826 for(i = 0; i < nb_args - 2; i++) {
3827 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003828 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00003829 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003830 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00003831 }
3832 }
3833 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00003834 if (*ptype == '-' && ptype[1] != '\0') {
3835 ptype += 2;
3836 }
bellard81d09122004-07-14 17:21:37 +00003837 switch(*ptype) {
3838 case 'F':
3839 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00003840 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00003841 file_completion(str);
3842 break;
3843 case 'B':
3844 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00003845 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00003846 bdrv_iterate(block_completion_it, (void *)str);
3847 break;
bellard7fe48482004-10-09 18:08:01 +00003848 case 's':
3849 /* XXX: more generic ? */
3850 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00003851 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00003852 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
3853 cmd_completion(str, cmd->name);
3854 }
bellard64866c32006-05-07 18:03:31 +00003855 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00003856 char *sep = strrchr(str, '-');
3857 if (sep)
3858 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00003859 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00003860 for(key = key_defs; key->name != NULL; key++) {
3861 cmd_completion(str, key->name);
3862 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02003863 } else if (!strcmp(cmd->name, "help|?")) {
3864 readline_set_completion_index(cur_mon->rs, strlen(str));
3865 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
3866 cmd_completion(str, cmd->name);
3867 }
bellard7fe48482004-10-09 18:08:01 +00003868 }
3869 break;
bellard81d09122004-07-14 17:21:37 +00003870 default:
3871 break;
3872 }
3873 }
3874 for(i = 0; i < nb_args; i++)
3875 qemu_free(args[i]);
3876}
3877
aliguori731b0362009-03-05 23:01:42 +00003878static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00003879{
aliguori731b0362009-03-05 23:01:42 +00003880 Monitor *mon = opaque;
3881
Jan Kiszkac62313b2009-12-04 14:05:29 +01003882 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00003883}
3884
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02003885typedef struct CmdArgs {
3886 QString *name;
3887 int type;
3888 int flag;
3889 int optional;
3890} CmdArgs;
3891
3892static int check_opt(const CmdArgs *cmd_args, const char *name, QDict *args)
3893{
3894 if (!cmd_args->optional) {
3895 qemu_error_new(QERR_MISSING_PARAMETER, name);
3896 return -1;
3897 }
3898
3899 if (cmd_args->type == '-') {
3900 /* handlers expect a value, they need to be changed */
3901 qdict_put(args, name, qint_from_int(0));
3902 }
3903
3904 return 0;
3905}
3906
3907static int check_arg(const CmdArgs *cmd_args, QDict *args)
3908{
3909 QObject *value;
3910 const char *name;
3911
3912 name = qstring_get_str(cmd_args->name);
3913
3914 if (!args) {
3915 return check_opt(cmd_args, name, args);
3916 }
3917
3918 value = qdict_get(args, name);
3919 if (!value) {
3920 return check_opt(cmd_args, name, args);
3921 }
3922
3923 switch (cmd_args->type) {
3924 case 'F':
3925 case 'B':
3926 case 's':
3927 if (qobject_type(value) != QTYPE_QSTRING) {
3928 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "string");
3929 return -1;
3930 }
3931 break;
3932 case '/': {
3933 int i;
3934 const char *keys[] = { "count", "format", "size", NULL };
3935
3936 for (i = 0; keys[i]; i++) {
3937 QObject *obj = qdict_get(args, keys[i]);
3938 if (!obj) {
3939 qemu_error_new(QERR_MISSING_PARAMETER, name);
3940 return -1;
3941 }
3942 if (qobject_type(obj) != QTYPE_QINT) {
3943 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "int");
3944 return -1;
3945 }
3946 }
3947 break;
3948 }
3949 case 'i':
3950 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003951 case 'M':
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02003952 if (qobject_type(value) != QTYPE_QINT) {
3953 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "int");
3954 return -1;
3955 }
3956 break;
3957 case '-':
3958 if (qobject_type(value) != QTYPE_QINT &&
3959 qobject_type(value) != QTYPE_QBOOL) {
3960 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "bool");
3961 return -1;
3962 }
3963 if (qobject_type(value) == QTYPE_QBOOL) {
3964 /* handlers expect a QInt, they need to be changed */
3965 qdict_put(args, name,
3966 qint_from_int(qbool_get_int(qobject_to_qbool(value))));
3967 }
3968 break;
3969 default:
3970 /* impossible */
3971 abort();
3972 }
3973
3974 return 0;
3975}
3976
3977static void cmd_args_init(CmdArgs *cmd_args)
3978{
3979 cmd_args->name = qstring_new();
3980 cmd_args->type = cmd_args->flag = cmd_args->optional = 0;
3981}
3982
3983/*
3984 * This is not trivial, we have to parse Monitor command's argument
3985 * type syntax to be able to check the arguments provided by clients.
3986 *
3987 * In the near future we will be using an array for that and will be
3988 * able to drop all this parsing...
3989 */
3990static int monitor_check_qmp_args(const mon_cmd_t *cmd, QDict *args)
3991{
3992 int err;
3993 const char *p;
3994 CmdArgs cmd_args;
3995
Blue Swirldd5121b2009-12-04 20:52:02 +00003996 if (cmd->args_type == NULL) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02003997 return (qdict_size(args) == 0 ? 0 : -1);
3998 }
3999
4000 err = 0;
4001 cmd_args_init(&cmd_args);
4002
4003 for (p = cmd->args_type;; p++) {
4004 if (*p == ':') {
4005 cmd_args.type = *++p;
4006 p++;
4007 if (cmd_args.type == '-') {
4008 cmd_args.flag = *p++;
4009 cmd_args.optional = 1;
4010 } else if (*p == '?') {
4011 cmd_args.optional = 1;
4012 p++;
4013 }
4014
4015 assert(*p == ',' || *p == '\0');
4016 err = check_arg(&cmd_args, args);
4017
4018 QDECREF(cmd_args.name);
4019 cmd_args_init(&cmd_args);
4020
4021 if (err < 0) {
4022 break;
4023 }
4024 } else {
4025 qstring_append_chr(cmd_args.name, *p);
4026 }
4027
4028 if (*p == '\0') {
4029 break;
4030 }
4031 }
4032
4033 QDECREF(cmd_args.name);
4034 return err;
4035}
4036
4037static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4038{
4039 int err;
4040 QObject *obj;
4041 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004042 const mon_cmd_t *cmd;
4043 Monitor *mon = cur_mon;
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004044 const char *cmd_name, *info_item;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004045
4046 args = NULL;
4047 qemu_errors_to_mon(mon);
4048
4049 obj = json_parser_parse(tokens, NULL);
4050 if (!obj) {
4051 // FIXME: should be triggered in json_parser_parse()
4052 qemu_error_new(QERR_JSON_PARSING);
4053 goto err_out;
4054 } else if (qobject_type(obj) != QTYPE_QDICT) {
4055 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "object");
4056 qobject_decref(obj);
4057 goto err_out;
4058 }
4059
4060 input = qobject_to_qdict(obj);
4061
4062 mon->mc->id = qdict_get(input, "id");
4063 qobject_incref(mon->mc->id);
4064
4065 obj = qdict_get(input, "execute");
4066 if (!obj) {
4067 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4068 goto err_input;
4069 } else if (qobject_type(obj) != QTYPE_QSTRING) {
4070 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "string");
4071 goto err_input;
4072 }
4073
4074 cmd_name = qstring_get_str(qobject_to_qstring(obj));
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004075
4076 /*
4077 * XXX: We need this special case until we get info handlers
4078 * converted into 'query-' commands
4079 */
4080 if (compare_cmd(cmd_name, "info")) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004081 qemu_error_new(QERR_COMMAND_NOT_FOUND, cmd_name);
4082 goto err_input;
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004083 } else if (strstart(cmd_name, "query-", &info_item)) {
4084 cmd = monitor_find_command("info");
4085 qdict_put_obj(input, "arguments",
4086 qobject_from_jsonf("{ 'item': %s }", info_item));
4087 } else {
4088 cmd = monitor_find_command(cmd_name);
Luiz Capitulino43e713c2009-12-18 13:24:59 -02004089 if (!cmd || !monitor_handler_ported(cmd)) {
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004090 qemu_error_new(QERR_COMMAND_NOT_FOUND, cmd_name);
4091 goto err_input;
4092 }
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004093 }
4094
4095 obj = qdict_get(input, "arguments");
4096 if (!obj) {
4097 args = qdict_new();
4098 } else {
4099 args = qobject_to_qdict(obj);
4100 QINCREF(args);
4101 }
4102
4103 QDECREF(input);
4104
4105 err = monitor_check_qmp_args(cmd, args);
4106 if (err < 0) {
4107 goto err_out;
4108 }
4109
4110 monitor_call_handler(mon, cmd, args);
4111 goto out;
4112
4113err_input:
4114 QDECREF(input);
4115err_out:
4116 monitor_protocol_emitter(mon, NULL);
4117out:
4118 QDECREF(args);
4119 qemu_errors_to_previous();
4120}
4121
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004122/**
4123 * monitor_control_read(): Read and handle QMP input
4124 */
4125static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4126{
4127 Monitor *old_mon = cur_mon;
4128
4129 cur_mon = opaque;
4130
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004131 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004132
4133 cur_mon = old_mon;
4134}
4135
aliguori731b0362009-03-05 23:01:42 +00004136static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004137{
aliguori731b0362009-03-05 23:01:42 +00004138 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004139 int i;
aliguori376253e2009-03-05 23:01:23 +00004140
aliguori731b0362009-03-05 23:01:42 +00004141 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004142
aliguoricde76ee2009-03-05 23:01:51 +00004143 if (cur_mon->rs) {
4144 for (i = 0; i < size; i++)
4145 readline_handle_byte(cur_mon->rs, buf[i]);
4146 } else {
4147 if (size == 0 || buf[size - 1] != 0)
4148 monitor_printf(cur_mon, "corrupted command\n");
4149 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004150 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00004151 }
aliguori731b0362009-03-05 23:01:42 +00004152
4153 cur_mon = old_mon;
4154}
aliguorid8f44602008-10-06 13:52:44 +00004155
aliguori376253e2009-03-05 23:01:23 +00004156static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004157{
aliguori731b0362009-03-05 23:01:42 +00004158 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004159 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00004160 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00004161}
4162
aliguoricde76ee2009-03-05 23:01:51 +00004163int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004164{
aliguoricde76ee2009-03-05 23:01:51 +00004165 if (!mon->rs)
4166 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00004167 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00004168 return 0;
aliguorid8f44602008-10-06 13:52:44 +00004169}
4170
aliguori376253e2009-03-05 23:01:23 +00004171void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004172{
aliguoricde76ee2009-03-05 23:01:51 +00004173 if (!mon->rs)
4174 return;
aliguori731b0362009-03-05 23:01:42 +00004175 if (--mon->suspend_cnt == 0)
4176 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00004177}
4178
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004179/**
4180 * monitor_control_event(): Print QMP gretting
4181 */
4182static void monitor_control_event(void *opaque, int event)
4183{
4184 if (event == CHR_EVENT_OPENED) {
4185 QObject *data;
4186 Monitor *mon = opaque;
4187
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004188 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
4189
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004190 data = qobject_from_jsonf("{ 'QMP': { 'capabilities': [] } }");
4191 assert(data != NULL);
4192
4193 monitor_json_emitter(mon, data);
4194 qobject_decref(data);
4195 }
4196}
4197
aliguori731b0362009-03-05 23:01:42 +00004198static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00004199{
aliguori376253e2009-03-05 23:01:23 +00004200 Monitor *mon = opaque;
4201
aliguori2724b182009-03-05 23:01:47 +00004202 switch (event) {
4203 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004204 mon->mux_out = 0;
4205 if (mon->reset_seen) {
4206 readline_restart(mon->rs);
4207 monitor_resume(mon);
4208 monitor_flush(mon);
4209 } else {
4210 mon->suspend_cnt = 0;
4211 }
aliguori2724b182009-03-05 23:01:47 +00004212 break;
ths86e94de2007-01-05 22:01:59 +00004213
aliguori2724b182009-03-05 23:01:47 +00004214 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004215 if (mon->reset_seen) {
4216 if (mon->suspend_cnt == 0) {
4217 monitor_printf(mon, "\n");
4218 }
4219 monitor_flush(mon);
4220 monitor_suspend(mon);
4221 } else {
4222 mon->suspend_cnt++;
4223 }
4224 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00004225 break;
4226
Amit Shahb6b8df52009-10-07 18:31:16 +05304227 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00004228 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4229 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004230 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00004231 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004232 }
4233 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00004234 break;
4235 }
ths86e94de2007-01-05 22:01:59 +00004236}
4237
aliguori76655d62009-03-06 20:27:37 +00004238
4239/*
4240 * Local variables:
4241 * c-indent-level: 4
4242 * c-basic-offset: 4
4243 * tab-width: 8
4244 * End:
4245 */
4246
aliguori731b0362009-03-05 23:01:42 +00004247void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004248{
aliguori731b0362009-03-05 23:01:42 +00004249 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00004250 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00004251
4252 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00004253 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00004254 is_first_init = 0;
4255 }
aliguori87127162009-03-05 23:01:29 +00004256
4257 mon = qemu_mallocz(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00004258
aliguori87127162009-03-05 23:01:29 +00004259 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00004260 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00004261 if (flags & MONITOR_USE_READLINE) {
4262 mon->rs = readline_init(mon, monitor_find_completion);
4263 monitor_read_command(mon, 0);
4264 }
aliguori87127162009-03-05 23:01:29 +00004265
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004266 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004267 mon->mc = qemu_mallocz(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004268 /* Control mode requires special handlers */
4269 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4270 monitor_control_event, mon);
4271 } else {
4272 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4273 monitor_event, mon);
4274 }
aliguori87127162009-03-05 23:01:29 +00004275
Blue Swirl72cf2d42009-09-12 07:36:22 +00004276 QLIST_INSERT_HEAD(&mon_list, mon, entry);
aliguori731b0362009-03-05 23:01:42 +00004277 if (!cur_mon || (flags & MONITOR_IS_DEFAULT))
aliguori87127162009-03-05 23:01:29 +00004278 cur_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00004279}
4280
aliguori376253e2009-03-05 23:01:23 +00004281static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004282{
aliguoribb5fc202009-03-05 23:01:15 +00004283 BlockDriverState *bs = opaque;
4284 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00004285
aliguoribb5fc202009-03-05 23:01:15 +00004286 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00004287 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00004288 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00004289 }
aliguori731b0362009-03-05 23:01:42 +00004290 if (mon->password_completion_cb)
4291 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00004292
aliguori731b0362009-03-05 23:01:42 +00004293 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00004294}
aliguoric0f4ce72009-03-05 23:01:01 +00004295
aliguori376253e2009-03-05 23:01:23 +00004296void monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
aliguoribb5fc202009-03-05 23:01:15 +00004297 BlockDriverCompletionFunc *completion_cb,
4298 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00004299{
aliguoricde76ee2009-03-05 23:01:51 +00004300 int err;
4301
aliguoribb5fc202009-03-05 23:01:15 +00004302 if (!bdrv_key_required(bs)) {
4303 if (completion_cb)
4304 completion_cb(opaque, 0);
4305 return;
4306 }
aliguoric0f4ce72009-03-05 23:01:01 +00004307
Luiz Capitulino94171e12009-12-07 21:37:00 +01004308 if (monitor_ctrl_mode(mon)) {
4309 qemu_error_new(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
4310 return;
4311 }
4312
aliguori376253e2009-03-05 23:01:23 +00004313 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4314 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00004315
aliguori731b0362009-03-05 23:01:42 +00004316 mon->password_completion_cb = completion_cb;
4317 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00004318
aliguoricde76ee2009-03-05 23:01:51 +00004319 err = monitor_read_password(mon, bdrv_password_cb, bs);
4320
4321 if (err && completion_cb)
4322 completion_cb(opaque, err);
aliguoric0f4ce72009-03-05 23:01:01 +00004323}
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02004324
4325typedef struct QemuErrorSink QemuErrorSink;
4326struct QemuErrorSink {
4327 enum {
4328 ERR_SINK_FILE,
4329 ERR_SINK_MONITOR,
4330 } dest;
4331 union {
4332 FILE *fp;
4333 Monitor *mon;
4334 };
4335 QemuErrorSink *previous;
4336};
4337
Blue Swirl528e93a2009-08-31 15:14:40 +00004338static QemuErrorSink *qemu_error_sink;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02004339
4340void qemu_errors_to_file(FILE *fp)
4341{
4342 QemuErrorSink *sink;
4343
4344 sink = qemu_mallocz(sizeof(*sink));
4345 sink->dest = ERR_SINK_FILE;
4346 sink->fp = fp;
4347 sink->previous = qemu_error_sink;
4348 qemu_error_sink = sink;
4349}
4350
4351void qemu_errors_to_mon(Monitor *mon)
4352{
4353 QemuErrorSink *sink;
4354
4355 sink = qemu_mallocz(sizeof(*sink));
4356 sink->dest = ERR_SINK_MONITOR;
4357 sink->mon = mon;
4358 sink->previous = qemu_error_sink;
4359 qemu_error_sink = sink;
4360}
4361
4362void qemu_errors_to_previous(void)
4363{
4364 QemuErrorSink *sink;
4365
4366 assert(qemu_error_sink != NULL);
4367 sink = qemu_error_sink;
4368 qemu_error_sink = sink->previous;
4369 qemu_free(sink);
4370}
4371
4372void qemu_error(const char *fmt, ...)
4373{
4374 va_list args;
4375
4376 assert(qemu_error_sink != NULL);
4377 switch (qemu_error_sink->dest) {
4378 case ERR_SINK_FILE:
4379 va_start(args, fmt);
4380 vfprintf(qemu_error_sink->fp, fmt, args);
4381 va_end(args);
4382 break;
4383 case ERR_SINK_MONITOR:
4384 va_start(args, fmt);
4385 monitor_vprintf(qemu_error_sink->mon, fmt, args);
4386 va_end(args);
4387 break;
4388 }
4389}
Luiz Capitulino8204a912009-11-18 23:05:31 -02004390
4391void qemu_error_internal(const char *file, int linenr, const char *func,
4392 const char *fmt, ...)
4393{
4394 va_list va;
4395 QError *qerror;
4396
4397 assert(qemu_error_sink != NULL);
4398
4399 va_start(va, fmt);
4400 qerror = qerror_from_info(file, linenr, func, fmt, &va);
4401 va_end(va);
4402
4403 switch (qemu_error_sink->dest) {
4404 case ERR_SINK_FILE:
4405 qerror_print(qerror);
4406 QDECREF(qerror);
4407 break;
4408 case ERR_SINK_MONITOR:
4409 assert(qemu_error_sink->mon->error == NULL);
4410 qemu_error_sink->mon->error = qerror;
4411 break;
4412 }
4413}