blob: 68b63cacc351405769e1c9cdfe89ff953d0c6123 [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"
35#include "qemu-char.h"
36#include "sysemu.h"
aliguori376253e2009-03-05 23:01:23 +000037#include "monitor.h"
38#include "readline.h"
pbrook87ecb682007-11-17 17:14:51 +000039#include "console.h"
40#include "block.h"
41#include "audio/audio.h"
bellard9307c4c2004-04-04 12:57:25 +000042#include "disas.h"
aliguoridf751fa2008-12-04 20:19:35 +000043#include "balloon.h"
balrogc8256f92008-06-08 22:45:01 +000044#include "qemu-timer.h"
aliguori5bb79102008-10-13 03:12:02 +000045#include "migration.h"
aliguori7ba1e612008-11-05 16:04:33 +000046#include "kvm.h"
aliguori76655d62009-03-06 20:27:37 +000047#include "acl.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030048#include "qint.h"
Luiz Capitulino8f3cec02009-10-07 13:42:04 -030049#include "qlist.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030050#include "qdict.h"
Luiz Capitulino5fa737a2009-11-26 22:59:01 -020051#include "qbool.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030052#include "qstring.h"
Luiz Capitulino8204a912009-11-18 23:05:31 -020053#include "qerror.h"
Luiz Capitulino9b57c022009-11-26 22:58:58 -020054#include "qjson.h"
Luiz Capitulino5fa737a2009-11-26 22:59:01 -020055#include "json-streamer.h"
56#include "json-parser.h"
ths6a5bd302007-12-03 17:05:38 +000057
bellard9dc39cb2004-03-14 21:38:27 +000058//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000059//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000060
bellard9307c4c2004-04-04 12:57:25 +000061/*
62 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000063 *
bellard9307c4c2004-04-04 12:57:25 +000064 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000065 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000066 * 's' string (accept optional quote)
bellard92a31b12005-02-10 22:00:52 +000067 * 'i' 32 bit integer
68 * 'l' target long (32 or 64 bit)
bellard9307c4c2004-04-04 12:57:25 +000069 * '/' optional gdb-like print format (like "/10x")
70 *
Luiz Capitulinofb466602009-08-28 15:27:27 -030071 * '?' optional type (for all types, except '/')
72 * '.' other form of optional type (for 'i' and 'l')
73 * '-' optional parameter (eg. '-f')
bellard9307c4c2004-04-04 12:57:25 +000074 *
75 */
76
Anthony Liguoric227f092009-10-01 16:12:16 -050077typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +000078 const char *name;
bellard9307c4c2004-04-04 12:57:25 +000079 const char *args_type;
bellard9dc39cb2004-03-14 21:38:27 +000080 const char *params;
81 const char *help;
Luiz Capitulinoa2876f52009-10-07 13:41:53 -030082 void (*user_print)(Monitor *mon, const QObject *data);
Luiz Capitulino910df892009-10-07 13:41:51 -030083 union {
84 void (*info)(Monitor *mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -030085 void (*info_new)(Monitor *mon, QObject **ret_data);
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -030086 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -030087 void (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
Luiz Capitulino910df892009-10-07 13:41:51 -030088 } mhandler;
Anthony Liguoric227f092009-10-01 16:12:16 -050089} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +000090
Mark McLoughlinf07918f2009-07-22 09:11:40 +010091/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -050092typedef struct mon_fd_t mon_fd_t;
93struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +010094 char *name;
95 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -050096 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +010097};
98
Luiz Capitulino5fa737a2009-11-26 22:59:01 -020099typedef struct MonitorControl {
100 QObject *id;
101 JSONMessageParser parser;
102} MonitorControl;
103
aliguori87127162009-03-05 23:01:29 +0000104struct Monitor {
105 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200106 int mux_out;
107 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000108 int flags;
109 int suspend_cnt;
110 uint8_t outbuf[1024];
111 int outbuf_index;
112 ReadLineState *rs;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200113 MonitorControl *mc;
aliguori731b0362009-03-05 23:01:42 +0000114 CPUState *mon_cpu;
115 BlockDriverCompletionFunc *password_completion_cb;
116 void *password_opaque;
Luiz Capitulino8204a912009-11-18 23:05:31 -0200117 QError *error;
Anthony Liguoric227f092009-10-01 16:12:16 -0500118 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000119 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000120};
121
Blue Swirl72cf2d42009-09-12 07:36:22 +0000122static QLIST_HEAD(mon_list, Monitor) mon_list;
bellard7e2515e2004-08-01 21:52:19 +0000123
Anthony Liguoric227f092009-10-01 16:12:16 -0500124static const mon_cmd_t mon_cmds[];
125static const mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000126
aliguori87127162009-03-05 23:01:29 +0000127Monitor *cur_mon = NULL;
aliguori376253e2009-03-05 23:01:23 +0000128
aliguori731b0362009-03-05 23:01:42 +0000129static void monitor_command_cb(Monitor *mon, const char *cmdline,
130 void *opaque);
aliguori83ab7952008-08-19 14:44:22 +0000131
Luiz Capitulino418173c2009-11-26 22:58:51 -0200132/* Return true if in control mode, false otherwise */
133static inline int monitor_ctrl_mode(const Monitor *mon)
134{
135 return (mon->flags & MONITOR_USE_CONTROL);
136}
137
aliguori731b0362009-03-05 23:01:42 +0000138static void monitor_read_command(Monitor *mon, int show_prompt)
139{
140 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
141 if (show_prompt)
142 readline_show_prompt(mon->rs);
143}
bellard6a00d602005-11-21 23:25:50 +0000144
aliguoricde76ee2009-03-05 23:01:51 +0000145static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
146 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000147{
aliguoricde76ee2009-03-05 23:01:51 +0000148 if (mon->rs) {
149 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
150 /* prompt is printed on return from the command handler */
151 return 0;
152 } else {
153 monitor_printf(mon, "terminal does not support password prompting\n");
154 return -ENOTTY;
155 }
aliguoribb5fc202009-03-05 23:01:15 +0000156}
157
aliguori376253e2009-03-05 23:01:23 +0000158void monitor_flush(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000159{
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200160 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
aliguori731b0362009-03-05 23:01:42 +0000161 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
162 mon->outbuf_index = 0;
bellard7e2515e2004-08-01 21:52:19 +0000163 }
164}
165
166/* flush at every end of line or if the buffer is full */
aliguori376253e2009-03-05 23:01:23 +0000167static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000168{
ths60fe76f2007-12-16 03:02:09 +0000169 char c;
aliguori731b0362009-03-05 23:01:42 +0000170
171 if (!mon)
172 return;
173
bellard7e2515e2004-08-01 21:52:19 +0000174 for(;;) {
175 c = *str++;
176 if (c == '\0')
177 break;
bellard7ba12602006-07-14 20:26:42 +0000178 if (c == '\n')
aliguori731b0362009-03-05 23:01:42 +0000179 mon->outbuf[mon->outbuf_index++] = '\r';
180 mon->outbuf[mon->outbuf_index++] = c;
181 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
182 || c == '\n')
aliguori376253e2009-03-05 23:01:23 +0000183 monitor_flush(mon);
bellard7e2515e2004-08-01 21:52:19 +0000184 }
185}
186
aliguori376253e2009-03-05 23:01:23 +0000187void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000188{
189 char buf[4096];
190 vsnprintf(buf, sizeof(buf), fmt, ap);
aliguori376253e2009-03-05 23:01:23 +0000191 monitor_puts(mon, buf);
bellard7e2515e2004-08-01 21:52:19 +0000192}
193
aliguori376253e2009-03-05 23:01:23 +0000194void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000195{
196 va_list ap;
197 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000198 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000199 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000200}
201
aliguori376253e2009-03-05 23:01:23 +0000202void monitor_print_filename(Monitor *mon, const char *filename)
thsfef30742006-12-22 14:11:32 +0000203{
204 int i;
205
206 for (i = 0; filename[i]; i++) {
aliguori28a76be2009-03-06 20:27:40 +0000207 switch (filename[i]) {
208 case ' ':
209 case '"':
210 case '\\':
211 monitor_printf(mon, "\\%c", filename[i]);
212 break;
213 case '\t':
214 monitor_printf(mon, "\\t");
215 break;
216 case '\r':
217 monitor_printf(mon, "\\r");
218 break;
219 case '\n':
220 monitor_printf(mon, "\\n");
221 break;
222 default:
223 monitor_printf(mon, "%c", filename[i]);
224 break;
225 }
thsfef30742006-12-22 14:11:32 +0000226 }
227}
228
bellard7fe48482004-10-09 18:08:01 +0000229static int monitor_fprintf(FILE *stream, const char *fmt, ...)
230{
231 va_list ap;
232 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000233 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000234 va_end(ap);
235 return 0;
236}
237
Luiz Capitulino13c74252009-10-07 13:41:55 -0300238static void monitor_user_noop(Monitor *mon, const QObject *data) { }
239
Luiz Capitulino13917be2009-10-07 13:41:54 -0300240static inline int monitor_handler_ported(const mon_cmd_t *cmd)
241{
242 return cmd->user_print != NULL;
243}
244
Luiz Capitulino8204a912009-11-18 23:05:31 -0200245static inline int monitor_has_error(const Monitor *mon)
246{
247 return mon->error != NULL;
248}
249
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300250static void monitor_print_qobject(Monitor *mon, const QObject *data)
251{
252 switch (qobject_type(data)) {
253 case QTYPE_QSTRING:
254 monitor_printf(mon, "%s",qstring_get_str(qobject_to_qstring(data)));
255 break;
256 case QTYPE_QINT:
257 monitor_printf(mon, "%" PRId64,qint_get_int(qobject_to_qint(data)));
258 break;
259 default:
260 monitor_printf(mon, "ERROR: unsupported type: %d",
261 qobject_type(data));
262 break;
263 }
264
265 monitor_puts(mon, "\n");
266}
267
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200268static void monitor_json_emitter(Monitor *mon, const QObject *data)
269{
270 QString *json;
271
272 json = qobject_to_json(data);
273 assert(json != NULL);
274
275 monitor_printf(mon, "%s\n", qstring_get_str(json));
276 QDECREF(json);
277}
278
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200279static void monitor_protocol_emitter(Monitor *mon, QObject *data)
280{
281 QDict *qmp;
282
283 qmp = qdict_new();
284
285 if (!monitor_has_error(mon)) {
286 /* success response */
287 if (data) {
288 qobject_incref(data);
289 qdict_put_obj(qmp, "return", data);
290 } else {
291 qdict_put(qmp, "return", qstring_from_str("OK"));
292 }
293 } else {
294 /* error response */
295 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;
314 struct timeval tv;
315
316 err = gettimeofday(&tv, NULL);
317 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;
337 Monitor *mon = cur_mon;
338
339 assert(event < EVENT_MAX);
340
341 if (!monitor_ctrl_mode(mon))
342 return;
343
344 switch (event) {
345 default:
346 abort();
347 break;
348 }
349
350 qmp = qdict_new();
351 timestamp_put(qmp);
352 qdict_put(qmp, "event", qstring_from_str(event_name));
353 if (data)
354 qdict_put_obj(qmp, "data", data);
355
356 monitor_json_emitter(mon, QOBJECT(qmp));
357 QDECREF(qmp);
358}
359
bellard9dc39cb2004-03-14 21:38:27 +0000360static int compare_cmd(const char *name, const char *list)
361{
362 const char *p, *pstart;
363 int len;
364 len = strlen(name);
365 p = list;
366 for(;;) {
367 pstart = p;
368 p = strchr(p, '|');
369 if (!p)
370 p = pstart + strlen(pstart);
371 if ((p - pstart) == len && !memcmp(pstart, name, len))
372 return 1;
373 if (*p == '\0')
374 break;
375 p++;
376 }
377 return 0;
378}
379
Anthony Liguoric227f092009-10-01 16:12:16 -0500380static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000381 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000382{
Anthony Liguoric227f092009-10-01 16:12:16 -0500383 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000384
385 for(cmd = cmds; cmd->name != NULL; cmd++) {
386 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000387 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
388 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000389 }
390}
391
aliguori376253e2009-03-05 23:01:23 +0000392static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000393{
394 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000395 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000396 } else {
aliguori376253e2009-03-05 23:01:23 +0000397 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000398 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000399 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000400 monitor_printf(mon, "Log items (comma separated):\n");
401 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000402 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000403 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000404 }
405 }
bellard9dc39cb2004-03-14 21:38:27 +0000406 }
407}
408
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300409static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300410{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300411 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300412}
413
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300414static void do_commit(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000415{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200416 int all_devices;
417 DriveInfo *dinfo;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300418 const char *device = qdict_get_str(qdict, "device");
balrog2dc7b602007-05-24 18:53:22 +0000419
bellard7954c732006-08-01 15:52:40 +0000420 all_devices = !strcmp(device, "all");
Blue Swirl72cf2d42009-09-12 07:36:22 +0000421 QTAILQ_FOREACH(dinfo, &drives, next) {
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200422 if (!all_devices)
Luiz Capitulino73006d22009-07-31 15:15:41 -0300423 if (strcmp(bdrv_get_device_name(dinfo->bdrv), device))
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200424 continue;
425 bdrv_commit(dinfo->bdrv);
bellard9dc39cb2004-03-14 21:38:27 +0000426 }
427}
428
Luiz Capitulino13c74252009-10-07 13:41:55 -0300429static void do_info(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000430{
Anthony Liguoric227f092009-10-01 16:12:16 -0500431 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300432 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000433
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200434 if (!item) {
435 assert(monitor_ctrl_mode(mon) == 0);
bellard9dc39cb2004-03-14 21:38:27 +0000436 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200437 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300438
439 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000440 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300441 break;
bellard9dc39cb2004-03-14 21:38:27 +0000442 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300443
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200444 if (cmd->name == NULL) {
445 if (monitor_ctrl_mode(mon)) {
446 qemu_error_new(QERR_COMMAND_NOT_FOUND, item);
447 return;
448 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300449 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200450 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300451
452 if (monitor_handler_ported(cmd)) {
453 cmd->mhandler.info_new(mon, ret_data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200454
455 if (!monitor_ctrl_mode(mon)) {
456 /*
457 * User Protocol function is called here, Monitor Protocol is
458 * handled by monitor_call_handler()
459 */
460 if (*ret_data)
461 cmd->user_print(mon, *ret_data);
462 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300463 } else {
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200464 if (monitor_ctrl_mode(mon)) {
465 /* handler not converted yet */
466 qemu_error_new(QERR_COMMAND_NOT_FOUND, item);
467 } else {
468 cmd->mhandler.info(mon);
469 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300470 }
471
bellard9dc39cb2004-03-14 21:38:27 +0000472 return;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300473
474help:
475 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000476}
477
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300478/**
479 * do_info_version(): Show QEMU version
480 */
481static void do_info_version(Monitor *mon, QObject **ret_data)
bellard9bc9d1c2004-10-10 15:15:51 +0000482{
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300483 *ret_data = QOBJECT(qstring_from_str(QEMU_VERSION QEMU_PKGVERSION));
bellard9bc9d1c2004-10-10 15:15:51 +0000484}
485
aliguori376253e2009-03-05 23:01:23 +0000486static void do_info_name(Monitor *mon)
thsc35734b2007-03-19 15:17:08 +0000487{
488 if (qemu_name)
aliguori376253e2009-03-05 23:01:23 +0000489 monitor_printf(mon, "%s\n", qemu_name);
thsc35734b2007-03-19 15:17:08 +0000490}
491
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200492/**
493 * do_info_commands(): List QMP available commands
494 *
495 * Return a QList of QStrings.
496 */
497static void do_info_commands(Monitor *mon, QObject **ret_data)
498{
499 QList *cmd_list;
500 const mon_cmd_t *cmd;
501
502 cmd_list = qlist_new();
503
504 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
505 if (monitor_handler_ported(cmd) && !compare_cmd(cmd->name, "info")) {
506 qlist_append(cmd_list, qstring_from_str(cmd->name));
507 }
508 }
509
510 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
511 if (monitor_handler_ported(cmd)) {
512 char buf[128];
513 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
514 qlist_append(cmd_list, qstring_from_str(buf));
515 }
516 }
517
518 *ret_data = QOBJECT(cmd_list);
519}
520
aurel32bf4f74c2008-12-18 22:42:34 +0000521#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +0000522static void do_info_hpet(Monitor *mon)
aliguori16b29ae2008-12-17 23:28:44 +0000523{
aliguori376253e2009-03-05 23:01:23 +0000524 monitor_printf(mon, "HPET is %s by QEMU\n",
525 (no_hpet) ? "disabled" : "enabled");
aliguori16b29ae2008-12-17 23:28:44 +0000526}
aurel32bf4f74c2008-12-18 22:42:34 +0000527#endif
aliguori16b29ae2008-12-17 23:28:44 +0000528
aliguori376253e2009-03-05 23:01:23 +0000529static void do_info_uuid(Monitor *mon)
blueswir1f1f23ad2008-09-18 18:30:20 +0000530{
aliguori376253e2009-03-05 23:01:23 +0000531 monitor_printf(mon, UUID_FMT "\n", qemu_uuid[0], qemu_uuid[1],
532 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
533 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
534 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
535 qemu_uuid[14], qemu_uuid[15]);
thsa36e69d2007-12-02 05:18:19 +0000536}
537
bellard6a00d602005-11-21 23:25:50 +0000538/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000539static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000540{
541 CPUState *env;
542
543 for(env = first_cpu; env != NULL; env = env->next_cpu) {
544 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000545 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000546 return 0;
547 }
548 }
549 return -1;
550}
551
pbrook9596ebb2007-11-18 01:44:38 +0000552static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000553{
aliguori731b0362009-03-05 23:01:42 +0000554 if (!cur_mon->mon_cpu) {
bellard6a00d602005-11-21 23:25:50 +0000555 mon_set_cpu(0);
556 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300557 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000558 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000559}
560
aliguori376253e2009-03-05 23:01:23 +0000561static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000562{
bellard6a00d602005-11-21 23:25:50 +0000563 CPUState *env;
564 env = mon_get_cpu();
565 if (!env)
566 return;
bellard9307c4c2004-04-04 12:57:25 +0000567#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000568 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000569 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000570#else
aliguori376253e2009-03-05 23:01:23 +0000571 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000572 0);
bellard9307c4c2004-04-04 12:57:25 +0000573#endif
574}
575
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300576static void print_cpu_iter(QObject *obj, void *opaque)
577{
578 QDict *cpu;
579 int active = ' ';
580 Monitor *mon = opaque;
581
582 assert(qobject_type(obj) == QTYPE_QDICT);
583 cpu = qobject_to_qdict(obj);
584
585 if (strcmp(qdict_get_str(cpu, "current"), "yes") == 0)
586 active = '*';
587
588 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
589
590#if defined(TARGET_I386)
591 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
592 (target_ulong) qdict_get_int(cpu, "pc"));
593#elif defined(TARGET_PPC)
594 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
595 (target_long) qdict_get_int(cpu, "nip"));
596#elif defined(TARGET_SPARC)
597 monitor_printf(mon, "pc=0x " TARGET_FMT_lx,
598 (target_long) qdict_get_int(cpu, "pc"));
599 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
600 (target_long) qdict_get_int(cpu, "npc"));
601#elif defined(TARGET_MIPS)
602 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
603 (target_long) qdict_get_int(cpu, "PC"));
604#endif
605
606 if (strcmp(qdict_get_str(cpu, "halted"), "yes") == 0)
607 monitor_printf(mon, " (halted)");
608
609 monitor_printf(mon, "\n");
610}
611
612static void monitor_print_cpus(Monitor *mon, const QObject *data)
613{
614 QList *cpu_list;
615
616 assert(qobject_type(data) == QTYPE_QLIST);
617 cpu_list = qobject_to_qlist(data);
618 qlist_iter(cpu_list, print_cpu_iter, mon);
619}
620
621/**
622 * do_info_cpus(): Show CPU information
623 *
624 * Return a QList with a QDict for each CPU.
625 *
626 * For example:
627 *
628 * [ { "CPU": 0, "current": "yes", "pc": 0x..., "halted": "no" },
629 * { "CPU": 1, "current": "no", "pc": 0x..., "halted": "yes" } ]
630 */
631static void do_info_cpus(Monitor *mon, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000632{
633 CPUState *env;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300634 QList *cpu_list;
635
636 cpu_list = qlist_new();
bellard6a00d602005-11-21 23:25:50 +0000637
638 /* just to set the default cpu if not already done */
639 mon_get_cpu();
640
641 for(env = first_cpu; env != NULL; env = env->next_cpu) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300642 const char *answer;
643 QDict *cpu = qdict_new();
644
Avi Kivity4c0960c2009-08-17 23:19:53 +0300645 cpu_synchronize_state(env);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300646
647 qdict_put(cpu, "CPU", qint_from_int(env->cpu_index));
648 answer = (env == mon->mon_cpu) ? "yes" : "no";
649 qdict_put(cpu, "current", qstring_from_str(answer));
650
bellard6a00d602005-11-21 23:25:50 +0000651#if defined(TARGET_I386)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300652 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
bellarde80e1cc2005-11-23 22:05:28 +0000653#elif defined(TARGET_PPC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300654 qdict_put(cpu, "nip", qint_from_int(env->nip));
bellardba3c64f2005-12-05 20:31:52 +0000655#elif defined(TARGET_SPARC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300656 qdict_put(cpu, "pc", qint_from_int(env->pc));
657 qdict_put(cpu, "npc", qint_from_int(env->npc));
thsead93602007-09-06 00:18:15 +0000658#elif defined(TARGET_MIPS)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300659 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
bellardce5232c2008-05-28 17:14:10 +0000660#endif
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300661 answer = env->halted ? "yes" : "no";
662 qdict_put(cpu, "halted", qstring_from_str(answer));
663
664 qlist_append(cpu_list, cpu);
bellard6a00d602005-11-21 23:25:50 +0000665 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300666
667 *ret_data = QOBJECT(cpu_list);
bellard6a00d602005-11-21 23:25:50 +0000668}
669
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300670static void do_cpu_set(Monitor *mon, const QDict *qdict)
bellard6a00d602005-11-21 23:25:50 +0000671{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300672 int index = qdict_get_int(qdict, "index");
bellard6a00d602005-11-21 23:25:50 +0000673 if (mon_set_cpu(index) < 0)
aliguori376253e2009-03-05 23:01:23 +0000674 monitor_printf(mon, "Invalid CPU index\n");
bellard6a00d602005-11-21 23:25:50 +0000675}
676
aliguori376253e2009-03-05 23:01:23 +0000677static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000678{
aliguori376253e2009-03-05 23:01:23 +0000679 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000680}
681
aliguori376253e2009-03-05 23:01:23 +0000682static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000683{
684 int i;
bellard7e2515e2004-08-01 21:52:19 +0000685 const char *str;
ths3b46e622007-09-17 08:09:54 +0000686
aliguoricde76ee2009-03-05 23:01:51 +0000687 if (!mon->rs)
688 return;
bellard7e2515e2004-08-01 21:52:19 +0000689 i = 0;
690 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000691 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000692 if (!str)
693 break;
aliguori376253e2009-03-05 23:01:23 +0000694 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000695 i++;
bellardaa455482004-04-04 13:07:25 +0000696 }
697}
698
j_mayer76a66252007-03-07 08:32:30 +0000699#if defined(TARGET_PPC)
700/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000701static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000702{
703 CPUState *env;
704
705 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000706 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000707}
708#endif
709
Luiz Capitulinob223f352009-10-07 13:41:56 -0300710/**
711 * do_quit(): Quit QEMU execution
712 */
713static void do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000714{
715 exit(0);
716}
717
aliguori376253e2009-03-05 23:01:23 +0000718static int eject_device(Monitor *mon, BlockDriverState *bs, int force)
bellard9dc39cb2004-03-14 21:38:27 +0000719{
720 if (bdrv_is_inserted(bs)) {
721 if (!force) {
722 if (!bdrv_is_removable(bs)) {
aliguori376253e2009-03-05 23:01:23 +0000723 monitor_printf(mon, "device is not removable\n");
bellard9dc39cb2004-03-14 21:38:27 +0000724 return -1;
725 }
726 if (bdrv_is_locked(bs)) {
aliguori376253e2009-03-05 23:01:23 +0000727 monitor_printf(mon, "device is locked\n");
bellard9dc39cb2004-03-14 21:38:27 +0000728 return -1;
729 }
730 }
731 bdrv_close(bs);
732 }
733 return 0;
734}
735
Luiz Capitulinoe1c923a2009-10-16 12:23:49 -0300736static void do_eject(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000737{
738 BlockDriverState *bs;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -0300739 int force = qdict_get_int(qdict, "force");
740 const char *filename = qdict_get_str(qdict, "filename");
bellard9dc39cb2004-03-14 21:38:27 +0000741
bellard9307c4c2004-04-04 12:57:25 +0000742 bs = bdrv_find(filename);
bellard9dc39cb2004-03-14 21:38:27 +0000743 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +0000744 monitor_printf(mon, "device not found\n");
bellard9dc39cb2004-03-14 21:38:27 +0000745 return;
746 }
aliguori376253e2009-03-05 23:01:23 +0000747 eject_device(mon, bs, force);
bellard9dc39cb2004-03-14 21:38:27 +0000748}
749
aliguori376253e2009-03-05 23:01:23 +0000750static void do_change_block(Monitor *mon, const char *device,
751 const char *filename, const char *fmt)
bellard9dc39cb2004-03-14 21:38:27 +0000752{
753 BlockDriverState *bs;
aurel322ecea9b2008-06-18 22:10:01 +0000754 BlockDriver *drv = NULL;
bellard9dc39cb2004-03-14 21:38:27 +0000755
bellard9307c4c2004-04-04 12:57:25 +0000756 bs = bdrv_find(device);
bellard9dc39cb2004-03-14 21:38:27 +0000757 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +0000758 monitor_printf(mon, "device not found\n");
bellard9dc39cb2004-03-14 21:38:27 +0000759 return;
760 }
aurel322ecea9b2008-06-18 22:10:01 +0000761 if (fmt) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100762 drv = bdrv_find_whitelisted_format(fmt);
aurel322ecea9b2008-06-18 22:10:01 +0000763 if (!drv) {
aliguori376253e2009-03-05 23:01:23 +0000764 monitor_printf(mon, "invalid format %s\n", fmt);
aurel322ecea9b2008-06-18 22:10:01 +0000765 return;
766 }
767 }
aliguori376253e2009-03-05 23:01:23 +0000768 if (eject_device(mon, bs, 0) < 0)
bellard9dc39cb2004-03-14 21:38:27 +0000769 return;
aurel322ecea9b2008-06-18 22:10:01 +0000770 bdrv_open2(bs, filename, 0, drv);
aliguori376253e2009-03-05 23:01:23 +0000771 monitor_read_bdrv_key_start(mon, bs, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000772}
773
aliguori376253e2009-03-05 23:01:23 +0000774static void change_vnc_password_cb(Monitor *mon, const char *password,
775 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000776{
777 if (vnc_display_password(NULL, password) < 0)
aliguori376253e2009-03-05 23:01:23 +0000778 monitor_printf(mon, "could not set VNC server password\n");
aliguoribb5fc202009-03-05 23:01:15 +0000779
aliguori731b0362009-03-05 23:01:42 +0000780 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +0000781}
782
aliguori376253e2009-03-05 23:01:23 +0000783static void do_change_vnc(Monitor *mon, const char *target, const char *arg)
thse25a5822007-08-25 01:36:20 +0000784{
ths70848512007-08-25 01:37:05 +0000785 if (strcmp(target, "passwd") == 0 ||
aliguori28a76be2009-03-06 20:27:40 +0000786 strcmp(target, "password") == 0) {
787 if (arg) {
aliguoribb5fc202009-03-05 23:01:15 +0000788 char password[9];
aliguori28a76be2009-03-06 20:27:40 +0000789 strncpy(password, arg, sizeof(password));
790 password[sizeof(password) - 1] = '\0';
aliguori376253e2009-03-05 23:01:23 +0000791 change_vnc_password_cb(mon, password, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000792 } else {
aliguori376253e2009-03-05 23:01:23 +0000793 monitor_read_password(mon, change_vnc_password_cb, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000794 }
ths70848512007-08-25 01:37:05 +0000795 } else {
aliguori28a76be2009-03-06 20:27:40 +0000796 if (vnc_display_open(NULL, target) < 0)
aliguori376253e2009-03-05 23:01:23 +0000797 monitor_printf(mon, "could not start VNC server on %s\n", target);
ths70848512007-08-25 01:37:05 +0000798 }
thse25a5822007-08-25 01:36:20 +0000799}
800
Luiz Capitulino1d4daa92009-08-28 15:27:15 -0300801static void do_change(Monitor *mon, const QDict *qdict)
thse25a5822007-08-25 01:36:20 +0000802{
Luiz Capitulino1d4daa92009-08-28 15:27:15 -0300803 const char *device = qdict_get_str(qdict, "device");
804 const char *target = qdict_get_str(qdict, "target");
805 const char *arg = qdict_get_try_str(qdict, "arg");
thse25a5822007-08-25 01:36:20 +0000806 if (strcmp(device, "vnc") == 0) {
aliguori28a76be2009-03-06 20:27:40 +0000807 do_change_vnc(mon, target, arg);
thse25a5822007-08-25 01:36:20 +0000808 } else {
aliguori28a76be2009-03-06 20:27:40 +0000809 do_change_block(mon, device, target, arg);
thse25a5822007-08-25 01:36:20 +0000810 }
811}
812
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300813static void do_screen_dump(Monitor *mon, const QDict *qdict)
bellard59a983b2004-03-17 23:17:16 +0000814{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300815 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
bellard59a983b2004-03-17 23:17:16 +0000816}
817
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300818static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +0000819{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300820 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +0000821}
822
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300823static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +0000824{
825 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300826 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +0000827
bellard9307c4c2004-04-04 12:57:25 +0000828 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +0000829 mask = 0;
830 } else {
bellard9307c4c2004-04-04 12:57:25 +0000831 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +0000832 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +0000833 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +0000834 return;
835 }
836 }
837 cpu_set_log(mask);
838}
839
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300840static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +0000841{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300842 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +0000843 if (!option || !strcmp(option, "on")) {
844 singlestep = 1;
845 } else if (!strcmp(option, "off")) {
846 singlestep = 0;
847 } else {
848 monitor_printf(mon, "unexpected option %s\n", option);
849 }
850}
851
Luiz Capitulinoe0c97bd2009-10-07 13:41:57 -0300852/**
853 * do_stop(): Stop VM execution
854 */
855static void do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard8a7ddc32004-03-31 19:00:16 +0000856{
857 vm_stop(EXCP_INTERRUPT);
858}
859
aliguoribb5fc202009-03-05 23:01:15 +0000860static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
aliguoric0f4ce72009-03-05 23:01:01 +0000861
aliguori376253e2009-03-05 23:01:23 +0000862struct bdrv_iterate_context {
863 Monitor *mon;
864 int err;
865};
aliguoric0f4ce72009-03-05 23:01:01 +0000866
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -0300867/**
868 * do_cont(): Resume emulation.
869 */
870static void do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
aliguori376253e2009-03-05 23:01:23 +0000871{
872 struct bdrv_iterate_context context = { mon, 0 };
873
874 bdrv_iterate(encrypted_bdrv_it, &context);
aliguoric0f4ce72009-03-05 23:01:01 +0000875 /* only resume the vm if all keys are set and valid */
aliguori376253e2009-03-05 23:01:23 +0000876 if (!context.err)
aliguoric0f4ce72009-03-05 23:01:01 +0000877 vm_start();
bellard8a7ddc32004-03-31 19:00:16 +0000878}
879
aliguoribb5fc202009-03-05 23:01:15 +0000880static void bdrv_key_cb(void *opaque, int err)
881{
aliguori376253e2009-03-05 23:01:23 +0000882 Monitor *mon = opaque;
883
aliguoribb5fc202009-03-05 23:01:15 +0000884 /* another key was set successfully, retry to continue */
885 if (!err)
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -0300886 do_cont(mon, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000887}
888
889static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
890{
aliguori376253e2009-03-05 23:01:23 +0000891 struct bdrv_iterate_context *context = opaque;
aliguoribb5fc202009-03-05 23:01:15 +0000892
aliguori376253e2009-03-05 23:01:23 +0000893 if (!context->err && bdrv_key_required(bs)) {
894 context->err = -EBUSY;
895 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
896 context->mon);
aliguoribb5fc202009-03-05 23:01:15 +0000897 }
898}
899
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300900static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +0000901{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300902 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +0000903 if (!device)
904 device = "tcp::" DEFAULT_GDBSTUB_PORT;
905 if (gdbserver_start(device) < 0) {
906 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
907 device);
908 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +0000909 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +0000910 } else {
aliguori59030a82009-04-05 18:43:41 +0000911 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
912 device);
bellard8a7ddc32004-03-31 19:00:16 +0000913 }
914}
915
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300916static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +0100917{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300918 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +0100919 if (select_watchdog_action(action) == -1) {
920 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
921 }
922}
923
aliguori376253e2009-03-05 23:01:23 +0000924static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +0000925{
aliguori376253e2009-03-05 23:01:23 +0000926 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +0000927 switch(c) {
928 case '\'':
aliguori376253e2009-03-05 23:01:23 +0000929 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +0000930 break;
931 case '\\':
aliguori376253e2009-03-05 23:01:23 +0000932 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +0000933 break;
934 case '\n':
aliguori376253e2009-03-05 23:01:23 +0000935 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +0000936 break;
937 case '\r':
aliguori376253e2009-03-05 23:01:23 +0000938 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +0000939 break;
940 default:
941 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +0000942 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +0000943 } else {
aliguori376253e2009-03-05 23:01:23 +0000944 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +0000945 }
946 break;
947 }
aliguori376253e2009-03-05 23:01:23 +0000948 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +0000949}
950
aliguori376253e2009-03-05 23:01:23 +0000951static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -0500952 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +0000953{
bellard6a00d602005-11-21 23:25:50 +0000954 CPUState *env;
bellard9307c4c2004-04-04 12:57:25 +0000955 int nb_per_line, l, line_size, i, max_digits, len;
956 uint8_t buf[16];
957 uint64_t v;
958
959 if (format == 'i') {
960 int flags;
961 flags = 0;
bellard6a00d602005-11-21 23:25:50 +0000962 env = mon_get_cpu();
963 if (!env && !is_physical)
964 return;
bellard9307c4c2004-04-04 12:57:25 +0000965#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +0000966 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +0000967 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +0000968 } else if (wsize == 4) {
969 flags = 0;
970 } else {
bellard6a15fd12006-04-12 21:07:07 +0000971 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +0000972 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +0000973 if (env) {
974#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +0000975 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +0000976 (env->segs[R_CS].flags & DESC_L_MASK))
977 flags = 2;
978 else
979#endif
980 if (!(env->segs[R_CS].flags & DESC_B_MASK))
981 flags = 1;
982 }
bellard4c27ba22004-04-25 18:05:08 +0000983 }
984#endif
aliguori376253e2009-03-05 23:01:23 +0000985 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +0000986 return;
987 }
988
989 len = wsize * count;
990 if (wsize == 1)
991 line_size = 8;
992 else
993 line_size = 16;
994 nb_per_line = line_size / wsize;
995 max_digits = 0;
996
997 switch(format) {
998 case 'o':
999 max_digits = (wsize * 8 + 2) / 3;
1000 break;
1001 default:
1002 case 'x':
1003 max_digits = (wsize * 8) / 4;
1004 break;
1005 case 'u':
1006 case 'd':
1007 max_digits = (wsize * 8 * 10 + 32) / 33;
1008 break;
1009 case 'c':
1010 wsize = 1;
1011 break;
1012 }
1013
1014 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001015 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001016 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001017 else
aliguori376253e2009-03-05 23:01:23 +00001018 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001019 l = len;
1020 if (l > line_size)
1021 l = line_size;
1022 if (is_physical) {
1023 cpu_physical_memory_rw(addr, buf, l, 0);
1024 } else {
bellard6a00d602005-11-21 23:25:50 +00001025 env = mon_get_cpu();
1026 if (!env)
1027 break;
aliguoric8f79b62008-08-18 14:00:20 +00001028 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001029 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001030 break;
1031 }
bellard9307c4c2004-04-04 12:57:25 +00001032 }
ths5fafdf22007-09-16 21:08:06 +00001033 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001034 while (i < l) {
1035 switch(wsize) {
1036 default:
1037 case 1:
1038 v = ldub_raw(buf + i);
1039 break;
1040 case 2:
1041 v = lduw_raw(buf + i);
1042 break;
1043 case 4:
bellard92a31b12005-02-10 22:00:52 +00001044 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001045 break;
1046 case 8:
1047 v = ldq_raw(buf + i);
1048 break;
1049 }
aliguori376253e2009-03-05 23:01:23 +00001050 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001051 switch(format) {
1052 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001053 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001054 break;
1055 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001056 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001057 break;
1058 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001059 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001060 break;
1061 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001062 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001063 break;
1064 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001065 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001066 break;
1067 }
1068 i += wsize;
1069 }
aliguori376253e2009-03-05 23:01:23 +00001070 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001071 addr += l;
1072 len -= l;
1073 }
1074}
1075
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001076static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001077{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001078 int count = qdict_get_int(qdict, "count");
1079 int format = qdict_get_int(qdict, "format");
1080 int size = qdict_get_int(qdict, "size");
1081 target_long addr = qdict_get_int(qdict, "addr");
1082
aliguori376253e2009-03-05 23:01:23 +00001083 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001084}
1085
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001086static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001087{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001088 int count = qdict_get_int(qdict, "count");
1089 int format = qdict_get_int(qdict, "format");
1090 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001091 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001092
aliguori376253e2009-03-05 23:01:23 +00001093 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001094}
1095
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001096static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001097{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001098 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001099 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001100
blueswir17743e582007-09-24 18:39:04 +00001101#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +00001102 switch(format) {
1103 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001104 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +00001105 break;
1106 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001107 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +00001108 break;
1109 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001110 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +00001111 break;
1112 default:
1113 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001114 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +00001115 break;
1116 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001117 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001118 break;
1119 }
bellard92a31b12005-02-10 22:00:52 +00001120#else
1121 switch(format) {
1122 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001123 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +00001124 break;
1125 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001126 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +00001127 break;
1128 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001129 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +00001130 break;
1131 default:
1132 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001133 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +00001134 break;
1135 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001136 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +00001137 break;
1138 }
1139#endif
aliguori376253e2009-03-05 23:01:23 +00001140 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001141}
1142
Luiz Capitulino57e09452009-10-16 12:23:43 -03001143static void do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellardb371dc52007-01-03 15:20:39 +00001144{
1145 FILE *f;
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001146 uint32_t size = qdict_get_int(qdict, "size");
1147 const char *filename = qdict_get_str(qdict, "filename");
1148 target_long addr = qdict_get_int(qdict, "val");
bellardb371dc52007-01-03 15:20:39 +00001149 uint32_t l;
1150 CPUState *env;
1151 uint8_t buf[1024];
1152
1153 env = mon_get_cpu();
1154 if (!env)
1155 return;
1156
1157 f = fopen(filename, "wb");
1158 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00001159 monitor_printf(mon, "could not open '%s'\n", filename);
bellardb371dc52007-01-03 15:20:39 +00001160 return;
1161 }
1162 while (size != 0) {
1163 l = sizeof(buf);
1164 if (l > size)
1165 l = size;
1166 cpu_memory_rw_debug(env, addr, buf, l, 0);
1167 fwrite(buf, 1, l, f);
1168 addr += l;
1169 size -= l;
1170 }
1171 fclose(f);
1172}
1173
Luiz Capitulino18f5a8b2009-10-16 12:23:44 -03001174static void do_physical_memory_save(Monitor *mon, const QDict *qdict,
1175 QObject **ret_data)
aurel32a8bdf7a2008-04-11 21:36:14 +00001176{
1177 FILE *f;
1178 uint32_t l;
1179 uint8_t buf[1024];
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001180 uint32_t size = qdict_get_int(qdict, "size");
1181 const char *filename = qdict_get_str(qdict, "filename");
Anthony Liguoric227f092009-10-01 16:12:16 -05001182 target_phys_addr_t addr = qdict_get_int(qdict, "val");
aurel32a8bdf7a2008-04-11 21:36:14 +00001183
1184 f = fopen(filename, "wb");
1185 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00001186 monitor_printf(mon, "could not open '%s'\n", filename);
aurel32a8bdf7a2008-04-11 21:36:14 +00001187 return;
1188 }
1189 while (size != 0) {
1190 l = sizeof(buf);
1191 if (l > size)
1192 l = size;
1193 cpu_physical_memory_rw(addr, buf, l, 0);
1194 fwrite(buf, 1, l, f);
1195 fflush(f);
1196 addr += l;
1197 size -= l;
1198 }
1199 fclose(f);
1200}
1201
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001202static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001203{
1204 uint32_t addr;
1205 uint8_t buf[1];
1206 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001207 uint32_t start = qdict_get_int(qdict, "start");
1208 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001209
1210 sum = 0;
1211 for(addr = start; addr < (start + size); addr++) {
1212 cpu_physical_memory_rw(addr, buf, 1, 0);
1213 /* BSD sum algorithm ('sum' Unix command) */
1214 sum = (sum >> 1) | (sum << 15);
1215 sum += buf[0];
1216 }
aliguori376253e2009-03-05 23:01:23 +00001217 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001218}
1219
bellarda3a91a32004-06-04 11:06:21 +00001220typedef struct {
1221 int keycode;
1222 const char *name;
1223} KeyDef;
1224
1225static const KeyDef key_defs[] = {
1226 { 0x2a, "shift" },
1227 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +00001228
bellarda3a91a32004-06-04 11:06:21 +00001229 { 0x38, "alt" },
1230 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +00001231 { 0x64, "altgr" },
1232 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +00001233 { 0x1d, "ctrl" },
1234 { 0x9d, "ctrl_r" },
1235
1236 { 0xdd, "menu" },
1237
1238 { 0x01, "esc" },
1239
1240 { 0x02, "1" },
1241 { 0x03, "2" },
1242 { 0x04, "3" },
1243 { 0x05, "4" },
1244 { 0x06, "5" },
1245 { 0x07, "6" },
1246 { 0x08, "7" },
1247 { 0x09, "8" },
1248 { 0x0a, "9" },
1249 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +00001250 { 0x0c, "minus" },
1251 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +00001252 { 0x0e, "backspace" },
1253
1254 { 0x0f, "tab" },
1255 { 0x10, "q" },
1256 { 0x11, "w" },
1257 { 0x12, "e" },
1258 { 0x13, "r" },
1259 { 0x14, "t" },
1260 { 0x15, "y" },
1261 { 0x16, "u" },
1262 { 0x17, "i" },
1263 { 0x18, "o" },
1264 { 0x19, "p" },
1265
1266 { 0x1c, "ret" },
1267
1268 { 0x1e, "a" },
1269 { 0x1f, "s" },
1270 { 0x20, "d" },
1271 { 0x21, "f" },
1272 { 0x22, "g" },
1273 { 0x23, "h" },
1274 { 0x24, "j" },
1275 { 0x25, "k" },
1276 { 0x26, "l" },
1277
1278 { 0x2c, "z" },
1279 { 0x2d, "x" },
1280 { 0x2e, "c" },
1281 { 0x2f, "v" },
1282 { 0x30, "b" },
1283 { 0x31, "n" },
1284 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +00001285 { 0x33, "comma" },
1286 { 0x34, "dot" },
1287 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +00001288
balrog4d3b6f62008-02-10 16:33:14 +00001289 { 0x37, "asterisk" },
1290
bellarda3a91a32004-06-04 11:06:21 +00001291 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +00001292 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001293 { 0x3b, "f1" },
1294 { 0x3c, "f2" },
1295 { 0x3d, "f3" },
1296 { 0x3e, "f4" },
1297 { 0x3f, "f5" },
1298 { 0x40, "f6" },
1299 { 0x41, "f7" },
1300 { 0x42, "f8" },
1301 { 0x43, "f9" },
1302 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +00001303 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001304 { 0x46, "scroll_lock" },
1305
bellard64866c32006-05-07 18:03:31 +00001306 { 0xb5, "kp_divide" },
1307 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +00001308 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +00001309 { 0x4e, "kp_add" },
1310 { 0x9c, "kp_enter" },
1311 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +00001312 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +00001313
1314 { 0x52, "kp_0" },
1315 { 0x4f, "kp_1" },
1316 { 0x50, "kp_2" },
1317 { 0x51, "kp_3" },
1318 { 0x4b, "kp_4" },
1319 { 0x4c, "kp_5" },
1320 { 0x4d, "kp_6" },
1321 { 0x47, "kp_7" },
1322 { 0x48, "kp_8" },
1323 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +00001324
bellarda3a91a32004-06-04 11:06:21 +00001325 { 0x56, "<" },
1326
1327 { 0x57, "f11" },
1328 { 0x58, "f12" },
1329
1330 { 0xb7, "print" },
1331
1332 { 0xc7, "home" },
1333 { 0xc9, "pgup" },
1334 { 0xd1, "pgdn" },
1335 { 0xcf, "end" },
1336
1337 { 0xcb, "left" },
1338 { 0xc8, "up" },
1339 { 0xd0, "down" },
1340 { 0xcd, "right" },
1341
1342 { 0xd2, "insert" },
1343 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001344#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1345 { 0xf0, "stop" },
1346 { 0xf1, "again" },
1347 { 0xf2, "props" },
1348 { 0xf3, "undo" },
1349 { 0xf4, "front" },
1350 { 0xf5, "copy" },
1351 { 0xf6, "open" },
1352 { 0xf7, "paste" },
1353 { 0xf8, "find" },
1354 { 0xf9, "cut" },
1355 { 0xfa, "lf" },
1356 { 0xfb, "help" },
1357 { 0xfc, "meta_l" },
1358 { 0xfd, "meta_r" },
1359 { 0xfe, "compose" },
1360#endif
bellarda3a91a32004-06-04 11:06:21 +00001361 { 0, NULL },
1362};
1363
1364static int get_keycode(const char *key)
1365{
1366 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001367 char *endp;
1368 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001369
1370 for(p = key_defs; p->name != NULL; p++) {
1371 if (!strcmp(key, p->name))
1372 return p->keycode;
1373 }
bellard64866c32006-05-07 18:03:31 +00001374 if (strstart(key, "0x", NULL)) {
1375 ret = strtoul(key, &endp, 0);
1376 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1377 return ret;
1378 }
bellarda3a91a32004-06-04 11:06:21 +00001379 return -1;
1380}
1381
balrogc8256f92008-06-08 22:45:01 +00001382#define MAX_KEYCODES 16
1383static uint8_t keycodes[MAX_KEYCODES];
1384static int nb_pending_keycodes;
1385static QEMUTimer *key_timer;
1386
1387static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001388{
balrogc8256f92008-06-08 22:45:01 +00001389 int keycode;
1390
1391 while (nb_pending_keycodes > 0) {
1392 nb_pending_keycodes--;
1393 keycode = keycodes[nb_pending_keycodes];
1394 if (keycode & 0x80)
1395 kbd_put_keycode(0xe0);
1396 kbd_put_keycode(keycode | 0x80);
1397 }
1398}
1399
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001400static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001401{
balrog3401c0d2008-06-04 10:05:59 +00001402 char keyname_buf[16];
1403 char *separator;
1404 int keyname_len, keycode, i;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001405 const char *string = qdict_get_str(qdict, "string");
1406 int has_hold_time = qdict_haskey(qdict, "hold_time");
1407 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
ths3b46e622007-09-17 08:09:54 +00001408
balrogc8256f92008-06-08 22:45:01 +00001409 if (nb_pending_keycodes > 0) {
1410 qemu_del_timer(key_timer);
1411 release_keys(NULL);
1412 }
1413 if (!has_hold_time)
1414 hold_time = 100;
1415 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001416 while (1) {
1417 separator = strchr(string, '-');
1418 keyname_len = separator ? separator - string : strlen(string);
1419 if (keyname_len > 0) {
1420 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1421 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001422 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001423 return;
bellarda3a91a32004-06-04 11:06:21 +00001424 }
balrogc8256f92008-06-08 22:45:01 +00001425 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001426 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001427 return;
1428 }
1429 keyname_buf[keyname_len] = 0;
1430 keycode = get_keycode(keyname_buf);
1431 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001432 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001433 return;
1434 }
balrogc8256f92008-06-08 22:45:01 +00001435 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001436 }
balrog3401c0d2008-06-04 10:05:59 +00001437 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001438 break;
balrog3401c0d2008-06-04 10:05:59 +00001439 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001440 }
balrogc8256f92008-06-08 22:45:01 +00001441 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001442 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001443 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001444 keycode = keycodes[i];
1445 if (keycode & 0x80)
1446 kbd_put_keycode(0xe0);
1447 kbd_put_keycode(keycode & 0x7f);
1448 }
balrogc8256f92008-06-08 22:45:01 +00001449 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +00001450 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001451 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001452}
1453
bellard13224a82006-07-14 22:03:35 +00001454static int mouse_button_state;
1455
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001456static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001457{
1458 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001459 const char *dx_str = qdict_get_str(qdict, "dx_str");
1460 const char *dy_str = qdict_get_str(qdict, "dy_str");
1461 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001462 dx = strtol(dx_str, NULL, 0);
1463 dy = strtol(dy_str, NULL, 0);
1464 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001465 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001466 dz = strtol(dz_str, NULL, 0);
1467 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1468}
1469
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001470static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001471{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001472 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001473 mouse_button_state = button_state;
1474 kbd_mouse_event(0, 0, 0, mouse_button_state);
1475}
1476
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001477static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001478{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001479 int size = qdict_get_int(qdict, "size");
1480 int addr = qdict_get_int(qdict, "addr");
1481 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001482 uint32_t val;
1483 int suffix;
1484
1485 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001486 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001487 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001488 addr++;
1489 }
1490 addr &= 0xffff;
1491
1492 switch(size) {
1493 default:
1494 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001495 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001496 suffix = 'b';
1497 break;
1498 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001499 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001500 suffix = 'w';
1501 break;
1502 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001503 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001504 suffix = 'l';
1505 break;
1506 }
aliguori376253e2009-03-05 23:01:23 +00001507 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1508 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001509}
bellarda3a91a32004-06-04 11:06:21 +00001510
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001511static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001512{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001513 int size = qdict_get_int(qdict, "size");
1514 int addr = qdict_get_int(qdict, "addr");
1515 int val = qdict_get_int(qdict, "val");
1516
Jan Kiszkaf1147842009-07-14 10:20:11 +02001517 addr &= IOPORTS_MASK;
1518
1519 switch (size) {
1520 default:
1521 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001522 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001523 break;
1524 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001525 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001526 break;
1527 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001528 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001529 break;
1530 }
1531}
1532
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001533static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001534{
1535 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001536 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001537
Jan Kiszka76e30d02009-07-02 00:19:02 +02001538 res = qemu_boot_set(bootdevice);
1539 if (res == 0) {
1540 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1541 } else if (res > 0) {
1542 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001543 } else {
aliguori376253e2009-03-05 23:01:23 +00001544 monitor_printf(mon, "no function defined to set boot device list for "
1545 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001546 }
1547}
1548
Luiz Capitulinoc80d2592009-10-07 13:41:58 -03001549/**
1550 * do_system_reset(): Issue a machine reset
1551 */
1552static void do_system_reset(Monitor *mon, const QDict *qdict,
1553 QObject **ret_data)
bellarde4f90822004-06-20 12:35:44 +00001554{
1555 qemu_system_reset_request();
1556}
1557
Luiz Capitulino43076662009-10-07 13:41:59 -03001558/**
1559 * do_system_powerdown(): Issue a machine powerdown
1560 */
1561static void do_system_powerdown(Monitor *mon, const QDict *qdict,
1562 QObject **ret_data)
bellard34751872005-07-02 14:31:34 +00001563{
1564 qemu_system_powerdown_request();
1565}
1566
bellardb86bda52004-09-18 19:32:46 +00001567#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +00001568static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
bellardb86bda52004-09-18 19:32:46 +00001569{
aliguori376253e2009-03-05 23:01:23 +00001570 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1571 addr,
1572 pte & mask,
1573 pte & PG_GLOBAL_MASK ? 'G' : '-',
1574 pte & PG_PSE_MASK ? 'P' : '-',
1575 pte & PG_DIRTY_MASK ? 'D' : '-',
1576 pte & PG_ACCESSED_MASK ? 'A' : '-',
1577 pte & PG_PCD_MASK ? 'C' : '-',
1578 pte & PG_PWT_MASK ? 'T' : '-',
1579 pte & PG_USER_MASK ? 'U' : '-',
1580 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001581}
1582
aliguori376253e2009-03-05 23:01:23 +00001583static void tlb_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001584{
bellard6a00d602005-11-21 23:25:50 +00001585 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001586 int l1, l2;
1587 uint32_t pgd, pde, pte;
1588
bellard6a00d602005-11-21 23:25:50 +00001589 env = mon_get_cpu();
1590 if (!env)
1591 return;
1592
bellardb86bda52004-09-18 19:32:46 +00001593 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001594 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001595 return;
1596 }
1597 pgd = env->cr[3] & ~0xfff;
1598 for(l1 = 0; l1 < 1024; l1++) {
1599 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1600 pde = le32_to_cpu(pde);
1601 if (pde & PG_PRESENT_MASK) {
1602 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001603 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
bellardb86bda52004-09-18 19:32:46 +00001604 } else {
1605 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001606 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001607 (uint8_t *)&pte, 4);
1608 pte = le32_to_cpu(pte);
1609 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001610 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001611 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001612 ~0xfff);
1613 }
1614 }
1615 }
1616 }
1617 }
1618}
1619
aliguori376253e2009-03-05 23:01:23 +00001620static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001621 uint32_t end, int prot)
1622{
bellard9746b152004-11-11 18:30:24 +00001623 int prot1;
1624 prot1 = *plast_prot;
1625 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001626 if (*pstart != -1) {
aliguori376253e2009-03-05 23:01:23 +00001627 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1628 *pstart, end, end - *pstart,
1629 prot1 & PG_USER_MASK ? 'u' : '-',
1630 'r',
1631 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001632 }
1633 if (prot != 0)
1634 *pstart = end;
1635 else
1636 *pstart = -1;
1637 *plast_prot = prot;
1638 }
1639}
1640
aliguori376253e2009-03-05 23:01:23 +00001641static void mem_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001642{
bellard6a00d602005-11-21 23:25:50 +00001643 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001644 int l1, l2, prot, last_prot;
1645 uint32_t pgd, pde, pte, start, end;
1646
bellard6a00d602005-11-21 23:25:50 +00001647 env = mon_get_cpu();
1648 if (!env)
1649 return;
1650
bellardb86bda52004-09-18 19:32:46 +00001651 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001652 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001653 return;
1654 }
1655 pgd = env->cr[3] & ~0xfff;
1656 last_prot = 0;
1657 start = -1;
1658 for(l1 = 0; l1 < 1024; l1++) {
1659 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1660 pde = le32_to_cpu(pde);
1661 end = l1 << 22;
1662 if (pde & PG_PRESENT_MASK) {
1663 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1664 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001665 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001666 } else {
1667 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001668 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001669 (uint8_t *)&pte, 4);
1670 pte = le32_to_cpu(pte);
1671 end = (l1 << 22) + (l2 << 12);
1672 if (pte & PG_PRESENT_MASK) {
1673 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1674 } else {
1675 prot = 0;
1676 }
aliguori376253e2009-03-05 23:01:23 +00001677 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001678 }
1679 }
1680 } else {
1681 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001682 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001683 }
1684 }
1685}
1686#endif
1687
aurel327c664e22009-03-03 06:12:22 +00001688#if defined(TARGET_SH4)
1689
aliguori376253e2009-03-05 23:01:23 +00001690static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001691{
aliguori376253e2009-03-05 23:01:23 +00001692 monitor_printf(mon, " tlb%i:\t"
1693 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1694 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1695 "dirty=%hhu writethrough=%hhu\n",
1696 idx,
1697 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1698 tlb->v, tlb->sh, tlb->c, tlb->pr,
1699 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001700}
1701
aliguori376253e2009-03-05 23:01:23 +00001702static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00001703{
1704 CPUState *env = mon_get_cpu();
1705 int i;
1706
aliguori376253e2009-03-05 23:01:23 +00001707 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001708 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001709 print_tlb (mon, i, &env->itlb[i]);
1710 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001711 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001712 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00001713}
1714
1715#endif
1716
aliguori376253e2009-03-05 23:01:23 +00001717static void do_info_kvm(Monitor *mon)
aliguori7ba1e612008-11-05 16:04:33 +00001718{
1719#ifdef CONFIG_KVM
aliguori376253e2009-03-05 23:01:23 +00001720 monitor_printf(mon, "kvm support: ");
aliguori7ba1e612008-11-05 16:04:33 +00001721 if (kvm_enabled())
aliguori376253e2009-03-05 23:01:23 +00001722 monitor_printf(mon, "enabled\n");
aliguori7ba1e612008-11-05 16:04:33 +00001723 else
aliguori376253e2009-03-05 23:01:23 +00001724 monitor_printf(mon, "disabled\n");
aliguori7ba1e612008-11-05 16:04:33 +00001725#else
aliguori376253e2009-03-05 23:01:23 +00001726 monitor_printf(mon, "kvm support: not compiled\n");
aliguori7ba1e612008-11-05 16:04:33 +00001727#endif
1728}
1729
aliguori030ea372009-04-21 22:30:47 +00001730static void do_info_numa(Monitor *mon)
1731{
aliguorib28b6232009-04-22 20:20:29 +00001732 int i;
aliguori030ea372009-04-21 22:30:47 +00001733 CPUState *env;
1734
1735 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1736 for (i = 0; i < nb_numa_nodes; i++) {
1737 monitor_printf(mon, "node %d cpus:", i);
1738 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1739 if (env->numa_node == i) {
1740 monitor_printf(mon, " %d", env->cpu_index);
1741 }
1742 }
1743 monitor_printf(mon, "\n");
1744 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1745 node_mem[i] >> 20);
1746 }
1747}
1748
bellard5f1ce942006-02-08 22:40:15 +00001749#ifdef CONFIG_PROFILER
1750
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02001751int64_t qemu_time;
1752int64_t dev_time;
1753
aliguori376253e2009-03-05 23:01:23 +00001754static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001755{
1756 int64_t total;
1757 total = qemu_time;
1758 if (total == 0)
1759 total = 1;
aliguori376253e2009-03-05 23:01:23 +00001760 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02001761 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00001762 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02001763 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00001764 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001765 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001766}
1767#else
aliguori376253e2009-03-05 23:01:23 +00001768static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001769{
aliguori376253e2009-03-05 23:01:23 +00001770 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00001771}
1772#endif
1773
bellardec36b692006-07-16 18:57:03 +00001774/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001775static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00001776
aliguori376253e2009-03-05 23:01:23 +00001777static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00001778{
1779 int i;
1780 CaptureState *s;
1781
1782 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00001783 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00001784 s->ops.info (s->opaque);
1785 }
1786}
1787
Blue Swirl23130862009-06-06 08:22:04 +00001788#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001789static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00001790{
1791 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001792 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00001793 CaptureState *s;
1794
1795 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1796 if (i == n) {
1797 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00001798 QLIST_REMOVE (s, entries);
bellardec36b692006-07-16 18:57:03 +00001799 qemu_free (s);
1800 return;
1801 }
1802 }
1803}
1804
Luiz Capitulinoc1925482009-08-28 15:27:19 -03001805static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00001806{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03001807 const char *path = qdict_get_str(qdict, "path");
1808 int has_freq = qdict_haskey(qdict, "freq");
1809 int freq = qdict_get_try_int(qdict, "freq", -1);
1810 int has_bits = qdict_haskey(qdict, "bits");
1811 int bits = qdict_get_try_int(qdict, "bits", -1);
1812 int has_channels = qdict_haskey(qdict, "nchannels");
1813 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00001814 CaptureState *s;
1815
1816 s = qemu_mallocz (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00001817
1818 freq = has_freq ? freq : 44100;
1819 bits = has_bits ? bits : 16;
1820 nchannels = has_channels ? nchannels : 2;
1821
1822 if (wav_start_capture (s, path, freq, bits, nchannels)) {
aliguori376253e2009-03-05 23:01:23 +00001823 monitor_printf(mon, "Faied to add wave capture\n");
bellardec36b692006-07-16 18:57:03 +00001824 qemu_free (s);
1825 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00001826 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00001827}
1828#endif
1829
aurel32dc1c0b72008-04-27 23:52:12 +00001830#if defined(TARGET_I386)
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001831static void do_inject_nmi(Monitor *mon, const QDict *qdict)
aurel32dc1c0b72008-04-27 23:52:12 +00001832{
1833 CPUState *env;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001834 int cpu_index = qdict_get_int(qdict, "cpu_index");
aurel32dc1c0b72008-04-27 23:52:12 +00001835
1836 for (env = first_cpu; env != NULL; env = env->next_cpu)
1837 if (env->cpu_index == cpu_index) {
1838 cpu_interrupt(env, CPU_INTERRUPT_NMI);
1839 break;
1840 }
1841}
1842#endif
1843
aliguori376253e2009-03-05 23:01:23 +00001844static void do_info_status(Monitor *mon)
aurel326f9c5ee2008-12-18 22:43:56 +00001845{
aurel321b530a62009-04-05 20:08:59 +00001846 if (vm_running) {
1847 if (singlestep) {
1848 monitor_printf(mon, "VM status: running (single step mode)\n");
1849 } else {
1850 monitor_printf(mon, "VM status: running\n");
1851 }
1852 } else
aliguori376253e2009-03-05 23:01:23 +00001853 monitor_printf(mon, "VM status: paused\n");
aurel326f9c5ee2008-12-18 22:43:56 +00001854}
1855
Luiz Capitulino83fb1de2009-10-07 13:42:01 -03001856/**
1857 * do_balloon(): Request VM to change its memory allocation
1858 */
1859static void do_balloon(Monitor *mon, const QDict *qdict, QObject **ret_data)
aliguoridf751fa2008-12-04 20:19:35 +00001860{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001861 int value = qdict_get_int(qdict, "value");
Anthony Liguoric227f092009-10-01 16:12:16 -05001862 ram_addr_t target = value;
aliguoridf751fa2008-12-04 20:19:35 +00001863 qemu_balloon(target << 20);
1864}
1865
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03001866static void monitor_print_balloon(Monitor *mon, const QObject *data)
1867{
1868 monitor_printf(mon, "balloon: actual=%d\n",
1869 (int)qint_get_int(qobject_to_qint(data)));
1870}
1871
1872/**
1873 * do_info_balloon(): Balloon information
1874 */
1875static void do_info_balloon(Monitor *mon, QObject **ret_data)
aliguoridf751fa2008-12-04 20:19:35 +00001876{
Anthony Liguoric227f092009-10-01 16:12:16 -05001877 ram_addr_t actual;
aliguoridf751fa2008-12-04 20:19:35 +00001878
1879 actual = qemu_balloon_status();
aliguoribd322082008-12-04 20:33:06 +00001880 if (kvm_enabled() && !kvm_has_sync_mmu())
Luiz Capitulino5d6c37f2009-11-18 23:05:36 -02001881 qemu_error_new(QERR_KVM_MISSING_CAP, "synchronous MMU", "balloon");
aliguoribd322082008-12-04 20:33:06 +00001882 else if (actual == 0)
Luiz Capitulino5d6c37f2009-11-18 23:05:36 -02001883 qemu_error_new(QERR_DEVICE_NOT_ACTIVE, "balloon");
aliguoridf751fa2008-12-04 20:19:35 +00001884 else
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03001885 *ret_data = QOBJECT(qint_from_int((int)(actual >> 20)));
aliguoridf751fa2008-12-04 20:19:35 +00001886}
1887
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001888static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00001889{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001890 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00001891
aliguori76655d62009-03-06 20:27:37 +00001892 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001893 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00001894 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001895 return acl;
1896}
aliguori76655d62009-03-06 20:27:37 +00001897
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001898static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001899{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001900 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001901 qemu_acl *acl = find_acl(mon, aclname);
1902 qemu_acl_entry *entry;
1903 int i = 0;
1904
1905 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00001906 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00001907 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00001908 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00001909 i++;
1910 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001911 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00001912 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001913 }
1914}
1915
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001916static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001917{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001918 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001919 qemu_acl *acl = find_acl(mon, aclname);
1920
1921 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00001922 qemu_acl_reset(acl);
1923 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001924 }
1925}
aliguori76655d62009-03-06 20:27:37 +00001926
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001927static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001928{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001929 const char *aclname = qdict_get_str(qdict, "aclname");
1930 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001931 qemu_acl *acl = find_acl(mon, aclname);
1932
1933 if (acl) {
1934 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00001935 acl->defaultDeny = 0;
1936 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001937 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00001938 acl->defaultDeny = 1;
1939 monitor_printf(mon, "acl: policy set to 'deny'\n");
1940 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001941 monitor_printf(mon, "acl: unknown policy '%s', "
1942 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00001943 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001944 }
1945}
aliguori76655d62009-03-06 20:27:37 +00001946
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001947static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001948{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001949 const char *aclname = qdict_get_str(qdict, "aclname");
1950 const char *match = qdict_get_str(qdict, "match");
1951 const char *policy = qdict_get_str(qdict, "policy");
1952 int has_index = qdict_haskey(qdict, "index");
1953 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001954 qemu_acl *acl = find_acl(mon, aclname);
1955 int deny, ret;
1956
1957 if (acl) {
1958 if (strcmp(policy, "allow") == 0) {
1959 deny = 0;
1960 } else if (strcmp(policy, "deny") == 0) {
1961 deny = 1;
1962 } else {
1963 monitor_printf(mon, "acl: unknown policy '%s', "
1964 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00001965 return;
1966 }
aliguori28a76be2009-03-06 20:27:40 +00001967 if (has_index)
1968 ret = qemu_acl_insert(acl, deny, match, index);
1969 else
1970 ret = qemu_acl_append(acl, deny, match);
1971 if (ret < 0)
1972 monitor_printf(mon, "acl: unable to add acl entry\n");
1973 else
1974 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001975 }
1976}
aliguori76655d62009-03-06 20:27:37 +00001977
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001978static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001979{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001980 const char *aclname = qdict_get_str(qdict, "aclname");
1981 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001982 qemu_acl *acl = find_acl(mon, aclname);
1983 int ret;
aliguori76655d62009-03-06 20:27:37 +00001984
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001985 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00001986 ret = qemu_acl_remove(acl, match);
1987 if (ret < 0)
1988 monitor_printf(mon, "acl: no matching acl entry\n");
1989 else
1990 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00001991 }
1992}
1993
Huang Ying79c4f6b2009-06-23 10:05:14 +08001994#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03001995static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08001996{
1997 CPUState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03001998 int cpu_index = qdict_get_int(qdict, "cpu_index");
1999 int bank = qdict_get_int(qdict, "bank");
2000 uint64_t status = qdict_get_int(qdict, "status");
2001 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2002 uint64_t addr = qdict_get_int(qdict, "addr");
2003 uint64_t misc = qdict_get_int(qdict, "misc");
Huang Ying79c4f6b2009-06-23 10:05:14 +08002004
2005 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
2006 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
2007 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
2008 break;
2009 }
2010}
2011#endif
2012
Luiz Capitulinof0d60002009-10-16 12:23:50 -03002013static void do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002014{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002015 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002016 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002017 int fd;
2018
2019 fd = qemu_chr_get_msgfd(mon->chr);
2020 if (fd == -1) {
2021 monitor_printf(mon, "getfd: no file descriptor supplied via SCM_RIGHTS\n");
2022 return;
2023 }
2024
2025 if (qemu_isdigit(fdname[0])) {
2026 monitor_printf(mon, "getfd: monitor names may not begin with a number\n");
2027 return;
2028 }
2029
2030 fd = dup(fd);
2031 if (fd == -1) {
2032 monitor_printf(mon, "Failed to dup() file descriptor: %s\n",
2033 strerror(errno));
2034 return;
2035 }
2036
Blue Swirl72cf2d42009-09-12 07:36:22 +00002037 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002038 if (strcmp(monfd->name, fdname) != 0) {
2039 continue;
2040 }
2041
2042 close(monfd->fd);
2043 monfd->fd = fd;
2044 return;
2045 }
2046
Anthony Liguoric227f092009-10-01 16:12:16 -05002047 monfd = qemu_mallocz(sizeof(mon_fd_t));
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002048 monfd->name = qemu_strdup(fdname);
2049 monfd->fd = fd;
2050
Blue Swirl72cf2d42009-09-12 07:36:22 +00002051 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002052}
2053
Luiz Capitulino18f3a512009-10-16 12:23:51 -03002054static void do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002055{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002056 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002057 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002058
Blue Swirl72cf2d42009-09-12 07:36:22 +00002059 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002060 if (strcmp(monfd->name, fdname) != 0) {
2061 continue;
2062 }
2063
Blue Swirl72cf2d42009-09-12 07:36:22 +00002064 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002065 close(monfd->fd);
2066 qemu_free(monfd->name);
2067 qemu_free(monfd);
2068 return;
2069 }
2070
2071 monitor_printf(mon, "Failed to find file descriptor named %s\n",
2072 fdname);
2073}
2074
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002075static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002076{
2077 int saved_vm_running = vm_running;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002078 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002079
2080 vm_stop(0);
2081
Juan Quintela05f24012009-08-20 19:42:22 +02002082 if (load_vmstate(mon, name) >= 0 && saved_vm_running)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002083 vm_start();
2084}
2085
Mark McLoughlin7768e042009-07-22 09:11:41 +01002086int monitor_get_fd(Monitor *mon, const char *fdname)
2087{
Anthony Liguoric227f092009-10-01 16:12:16 -05002088 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002089
Blue Swirl72cf2d42009-09-12 07:36:22 +00002090 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002091 int fd;
2092
2093 if (strcmp(monfd->name, fdname) != 0) {
2094 continue;
2095 }
2096
2097 fd = monfd->fd;
2098
2099 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002100 QLIST_REMOVE(monfd, next);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002101 qemu_free(monfd->name);
2102 qemu_free(monfd);
2103
2104 return fd;
2105 }
2106
2107 return -1;
2108}
2109
Anthony Liguoric227f092009-10-01 16:12:16 -05002110static const mon_cmd_t mon_cmds[] = {
Blue Swirl23130862009-06-06 08:22:04 +00002111#include "qemu-monitor.h"
ths5fafdf22007-09-16 21:08:06 +00002112 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002113};
2114
Blue Swirl23130862009-06-06 08:22:04 +00002115/* Please update qemu-monitor.hx when adding or changing commands */
Anthony Liguoric227f092009-10-01 16:12:16 -05002116static const mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002117 {
2118 .name = "version",
2119 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002120 .params = "",
2121 .help = "show the version of QEMU",
Luiz Capitulinoab2d3182009-10-07 13:42:02 -03002122 .user_print = monitor_print_qobject,
2123 .mhandler.info_new = do_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002124 },
2125 {
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -02002126 .name = "commands",
2127 .args_type = "",
2128 .params = "",
2129 .help = "list QMP available commands",
2130 .user_print = monitor_user_noop,
2131 .mhandler.info_new = do_info_commands,
2132 },
2133 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002134 .name = "network",
2135 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002136 .params = "",
2137 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002138 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002139 },
2140 {
2141 .name = "chardev",
2142 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002143 .params = "",
2144 .help = "show the character devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002145 .mhandler.info = qemu_chr_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002146 },
2147 {
2148 .name = "block",
2149 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002150 .params = "",
2151 .help = "show the block devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002152 .mhandler.info = bdrv_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002153 },
2154 {
2155 .name = "blockstats",
2156 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002157 .params = "",
2158 .help = "show block device statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002159 .mhandler.info = bdrv_info_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002160 },
2161 {
2162 .name = "registers",
2163 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002164 .params = "",
2165 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002166 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002167 },
2168 {
2169 .name = "cpus",
2170 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002171 .params = "",
2172 .help = "show infos for each CPU",
Luiz Capitulino8f3cec02009-10-07 13:42:04 -03002173 .user_print = monitor_print_cpus,
2174 .mhandler.info_new = do_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002175 },
2176 {
2177 .name = "history",
2178 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002179 .params = "",
2180 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002181 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002182 },
2183 {
2184 .name = "irq",
2185 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002186 .params = "",
2187 .help = "show the interrupts statistics (if available)",
Luiz Capitulino910df892009-10-07 13:41:51 -03002188 .mhandler.info = irq_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002189 },
2190 {
2191 .name = "pic",
2192 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002193 .params = "",
2194 .help = "show i8259 (PIC) state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002195 .mhandler.info = pic_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002196 },
2197 {
2198 .name = "pci",
2199 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002200 .params = "",
2201 .help = "show PCI info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002202 .mhandler.info = pci_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002203 },
aurel327c664e22009-03-03 06:12:22 +00002204#if defined(TARGET_I386) || defined(TARGET_SH4)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002205 {
2206 .name = "tlb",
2207 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002208 .params = "",
2209 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002210 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002211 },
aurel327c664e22009-03-03 06:12:22 +00002212#endif
2213#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002214 {
2215 .name = "mem",
2216 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002217 .params = "",
2218 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002219 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002220 },
2221 {
2222 .name = "hpet",
2223 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002224 .params = "",
2225 .help = "show state of HPET",
Luiz Capitulino910df892009-10-07 13:41:51 -03002226 .mhandler.info = do_info_hpet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002227 },
bellardb86bda52004-09-18 19:32:46 +00002228#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002229 {
2230 .name = "jit",
2231 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002232 .params = "",
2233 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002234 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002235 },
2236 {
2237 .name = "kvm",
2238 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002239 .params = "",
2240 .help = "show KVM information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002241 .mhandler.info = do_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002242 },
2243 {
2244 .name = "numa",
2245 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002246 .params = "",
2247 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002248 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002249 },
2250 {
2251 .name = "usb",
2252 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002253 .params = "",
2254 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002255 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002256 },
2257 {
2258 .name = "usbhost",
2259 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002260 .params = "",
2261 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002262 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002263 },
2264 {
2265 .name = "profile",
2266 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002267 .params = "",
2268 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002269 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002270 },
2271 {
2272 .name = "capture",
2273 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002274 .params = "",
2275 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002276 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002277 },
2278 {
2279 .name = "snapshots",
2280 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002281 .params = "",
2282 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002283 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002284 },
2285 {
2286 .name = "status",
2287 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002288 .params = "",
2289 .help = "show the current VM status (running|paused)",
Luiz Capitulino910df892009-10-07 13:41:51 -03002290 .mhandler.info = do_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002291 },
2292 {
2293 .name = "pcmcia",
2294 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002295 .params = "",
2296 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002297 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002298 },
2299 {
2300 .name = "mice",
2301 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002302 .params = "",
2303 .help = "show which guest mouse is receiving events",
Luiz Capitulino910df892009-10-07 13:41:51 -03002304 .mhandler.info = do_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002305 },
2306 {
2307 .name = "vnc",
2308 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002309 .params = "",
2310 .help = "show the vnc server status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002311 .mhandler.info = do_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002312 },
2313 {
2314 .name = "name",
2315 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002316 .params = "",
2317 .help = "show the current VM name",
Luiz Capitulino910df892009-10-07 13:41:51 -03002318 .mhandler.info = do_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002319 },
2320 {
2321 .name = "uuid",
2322 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002323 .params = "",
2324 .help = "show the current VM UUID",
Luiz Capitulino910df892009-10-07 13:41:51 -03002325 .mhandler.info = do_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002326 },
j_mayer76a66252007-03-07 08:32:30 +00002327#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002328 {
2329 .name = "cpustats",
2330 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002331 .params = "",
2332 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002333 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002334 },
j_mayer76a66252007-03-07 08:32:30 +00002335#endif
blueswir131a60e22007-10-26 18:42:59 +00002336#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002337 {
2338 .name = "usernet",
2339 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002340 .params = "",
2341 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002342 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002343 },
blueswir131a60e22007-10-26 18:42:59 +00002344#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002345 {
2346 .name = "migrate",
2347 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002348 .params = "",
2349 .help = "show migration status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002350 .mhandler.info = do_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002351 },
2352 {
2353 .name = "balloon",
2354 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002355 .params = "",
2356 .help = "show balloon information",
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002357 .user_print = monitor_print_balloon,
2358 .mhandler.info_new = do_info_balloon,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002359 },
2360 {
2361 .name = "qtree",
2362 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002363 .params = "",
2364 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002365 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002366 },
2367 {
2368 .name = "qdm",
2369 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002370 .params = "",
2371 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002372 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002373 },
2374 {
2375 .name = "roms",
2376 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002377 .params = "",
2378 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002379 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002380 },
2381 {
2382 .name = NULL,
2383 },
bellard9dc39cb2004-03-14 21:38:27 +00002384};
2385
bellard9307c4c2004-04-04 12:57:25 +00002386/*******************************************************************/
2387
2388static const char *pch;
2389static jmp_buf expr_env;
2390
bellard92a31b12005-02-10 22:00:52 +00002391#define MD_TLONG 0
2392#define MD_I32 1
2393
bellard9307c4c2004-04-04 12:57:25 +00002394typedef struct MonitorDef {
2395 const char *name;
2396 int offset;
blueswir18662d652008-10-02 18:32:44 +00002397 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002398 int type;
bellard9307c4c2004-04-04 12:57:25 +00002399} MonitorDef;
2400
bellard57206fd2004-04-25 18:54:52 +00002401#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002402static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002403{
bellard6a00d602005-11-21 23:25:50 +00002404 CPUState *env = mon_get_cpu();
2405 if (!env)
2406 return 0;
2407 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002408}
2409#endif
2410
bellarda541f292004-04-12 20:39:29 +00002411#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002412static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002413{
bellard6a00d602005-11-21 23:25:50 +00002414 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002415 unsigned int u;
2416 int i;
2417
bellard6a00d602005-11-21 23:25:50 +00002418 if (!env)
2419 return 0;
2420
bellarda541f292004-04-12 20:39:29 +00002421 u = 0;
2422 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002423 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002424
2425 return u;
2426}
2427
blueswir18662d652008-10-02 18:32:44 +00002428static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002429{
bellard6a00d602005-11-21 23:25:50 +00002430 CPUState *env = mon_get_cpu();
2431 if (!env)
2432 return 0;
j_mayer0411a972007-10-25 21:35:50 +00002433 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002434}
2435
blueswir18662d652008-10-02 18:32:44 +00002436static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002437{
bellard6a00d602005-11-21 23:25:50 +00002438 CPUState *env = mon_get_cpu();
2439 if (!env)
2440 return 0;
aurel323d7b4172008-10-21 11:28:46 +00002441 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002442}
bellard9fddaa02004-05-21 12:59:32 +00002443
blueswir18662d652008-10-02 18:32:44 +00002444static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002445{
bellard6a00d602005-11-21 23:25:50 +00002446 CPUState *env = mon_get_cpu();
2447 if (!env)
2448 return 0;
2449 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002450}
2451
blueswir18662d652008-10-02 18:32:44 +00002452static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002453{
bellard6a00d602005-11-21 23:25:50 +00002454 CPUState *env = mon_get_cpu();
2455 if (!env)
2456 return 0;
2457 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002458}
2459
blueswir18662d652008-10-02 18:32:44 +00002460static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002461{
bellard6a00d602005-11-21 23:25:50 +00002462 CPUState *env = mon_get_cpu();
2463 if (!env)
2464 return 0;
2465 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002466}
bellarda541f292004-04-12 20:39:29 +00002467#endif
2468
bellarde95c8d52004-09-30 22:22:08 +00002469#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002470#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002471static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002472{
bellard6a00d602005-11-21 23:25:50 +00002473 CPUState *env = mon_get_cpu();
2474 if (!env)
2475 return 0;
2476 return GET_PSR(env);
bellarde95c8d52004-09-30 22:22:08 +00002477}
bellard7b936c02005-10-30 17:05:13 +00002478#endif
bellarde95c8d52004-09-30 22:22:08 +00002479
blueswir18662d652008-10-02 18:32:44 +00002480static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002481{
bellard6a00d602005-11-21 23:25:50 +00002482 CPUState *env = mon_get_cpu();
2483 if (!env)
2484 return 0;
2485 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002486}
2487#endif
2488
blueswir18662d652008-10-02 18:32:44 +00002489static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002490#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002491
2492#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00002493 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00002494 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00002495 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002496
bellard9307c4c2004-04-04 12:57:25 +00002497 { "eax", offsetof(CPUState, regs[0]) },
2498 { "ecx", offsetof(CPUState, regs[1]) },
2499 { "edx", offsetof(CPUState, regs[2]) },
2500 { "ebx", offsetof(CPUState, regs[3]) },
2501 { "esp|sp", offsetof(CPUState, regs[4]) },
2502 { "ebp|fp", offsetof(CPUState, regs[5]) },
2503 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00002504 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002505#ifdef TARGET_X86_64
2506 { "r8", offsetof(CPUState, regs[8]) },
2507 { "r9", offsetof(CPUState, regs[9]) },
2508 { "r10", offsetof(CPUState, regs[10]) },
2509 { "r11", offsetof(CPUState, regs[11]) },
2510 { "r12", offsetof(CPUState, regs[12]) },
2511 { "r13", offsetof(CPUState, regs[13]) },
2512 { "r14", offsetof(CPUState, regs[14]) },
2513 { "r15", offsetof(CPUState, regs[15]) },
2514#endif
bellard9307c4c2004-04-04 12:57:25 +00002515 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00002516 { "eip", offsetof(CPUState, eip) },
2517 SEG("cs", R_CS)
2518 SEG("ds", R_DS)
2519 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002520 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002521 SEG("fs", R_FS)
2522 SEG("gs", R_GS)
2523 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002524#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002525 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00002526 { "r0", offsetof(CPUState, gpr[0]) },
2527 { "r1", offsetof(CPUState, gpr[1]) },
2528 { "r2", offsetof(CPUState, gpr[2]) },
2529 { "r3", offsetof(CPUState, gpr[3]) },
2530 { "r4", offsetof(CPUState, gpr[4]) },
2531 { "r5", offsetof(CPUState, gpr[5]) },
2532 { "r6", offsetof(CPUState, gpr[6]) },
2533 { "r7", offsetof(CPUState, gpr[7]) },
2534 { "r8", offsetof(CPUState, gpr[8]) },
2535 { "r9", offsetof(CPUState, gpr[9]) },
2536 { "r10", offsetof(CPUState, gpr[10]) },
2537 { "r11", offsetof(CPUState, gpr[11]) },
2538 { "r12", offsetof(CPUState, gpr[12]) },
2539 { "r13", offsetof(CPUState, gpr[13]) },
2540 { "r14", offsetof(CPUState, gpr[14]) },
2541 { "r15", offsetof(CPUState, gpr[15]) },
2542 { "r16", offsetof(CPUState, gpr[16]) },
2543 { "r17", offsetof(CPUState, gpr[17]) },
2544 { "r18", offsetof(CPUState, gpr[18]) },
2545 { "r19", offsetof(CPUState, gpr[19]) },
2546 { "r20", offsetof(CPUState, gpr[20]) },
2547 { "r21", offsetof(CPUState, gpr[21]) },
2548 { "r22", offsetof(CPUState, gpr[22]) },
2549 { "r23", offsetof(CPUState, gpr[23]) },
2550 { "r24", offsetof(CPUState, gpr[24]) },
2551 { "r25", offsetof(CPUState, gpr[25]) },
2552 { "r26", offsetof(CPUState, gpr[26]) },
2553 { "r27", offsetof(CPUState, gpr[27]) },
2554 { "r28", offsetof(CPUState, gpr[28]) },
2555 { "r29", offsetof(CPUState, gpr[29]) },
2556 { "r30", offsetof(CPUState, gpr[30]) },
2557 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00002558 /* Floating point registers */
2559 { "f0", offsetof(CPUState, fpr[0]) },
2560 { "f1", offsetof(CPUState, fpr[1]) },
2561 { "f2", offsetof(CPUState, fpr[2]) },
2562 { "f3", offsetof(CPUState, fpr[3]) },
2563 { "f4", offsetof(CPUState, fpr[4]) },
2564 { "f5", offsetof(CPUState, fpr[5]) },
2565 { "f6", offsetof(CPUState, fpr[6]) },
2566 { "f7", offsetof(CPUState, fpr[7]) },
2567 { "f8", offsetof(CPUState, fpr[8]) },
2568 { "f9", offsetof(CPUState, fpr[9]) },
2569 { "f10", offsetof(CPUState, fpr[10]) },
2570 { "f11", offsetof(CPUState, fpr[11]) },
2571 { "f12", offsetof(CPUState, fpr[12]) },
2572 { "f13", offsetof(CPUState, fpr[13]) },
2573 { "f14", offsetof(CPUState, fpr[14]) },
2574 { "f15", offsetof(CPUState, fpr[15]) },
2575 { "f16", offsetof(CPUState, fpr[16]) },
2576 { "f17", offsetof(CPUState, fpr[17]) },
2577 { "f18", offsetof(CPUState, fpr[18]) },
2578 { "f19", offsetof(CPUState, fpr[19]) },
2579 { "f20", offsetof(CPUState, fpr[20]) },
2580 { "f21", offsetof(CPUState, fpr[21]) },
2581 { "f22", offsetof(CPUState, fpr[22]) },
2582 { "f23", offsetof(CPUState, fpr[23]) },
2583 { "f24", offsetof(CPUState, fpr[24]) },
2584 { "f25", offsetof(CPUState, fpr[25]) },
2585 { "f26", offsetof(CPUState, fpr[26]) },
2586 { "f27", offsetof(CPUState, fpr[27]) },
2587 { "f28", offsetof(CPUState, fpr[28]) },
2588 { "f29", offsetof(CPUState, fpr[29]) },
2589 { "f30", offsetof(CPUState, fpr[30]) },
2590 { "f31", offsetof(CPUState, fpr[31]) },
2591 { "fpscr", offsetof(CPUState, fpscr) },
2592 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00002593 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00002594 { "lr", offsetof(CPUState, lr) },
2595 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00002596 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00002597 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00002598 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00002599 { "msr", 0, &monitor_get_msr, },
2600 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00002601 { "tbu", 0, &monitor_get_tbu, },
2602 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00002603#if defined(TARGET_PPC64)
2604 /* Address space register */
2605 { "asr", offsetof(CPUState, asr) },
2606#endif
2607 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00002608 { "sdr1", offsetof(CPUState, sdr1) },
2609 { "sr0", offsetof(CPUState, sr[0]) },
2610 { "sr1", offsetof(CPUState, sr[1]) },
2611 { "sr2", offsetof(CPUState, sr[2]) },
2612 { "sr3", offsetof(CPUState, sr[3]) },
2613 { "sr4", offsetof(CPUState, sr[4]) },
2614 { "sr5", offsetof(CPUState, sr[5]) },
2615 { "sr6", offsetof(CPUState, sr[6]) },
2616 { "sr7", offsetof(CPUState, sr[7]) },
2617 { "sr8", offsetof(CPUState, sr[8]) },
2618 { "sr9", offsetof(CPUState, sr[9]) },
2619 { "sr10", offsetof(CPUState, sr[10]) },
2620 { "sr11", offsetof(CPUState, sr[11]) },
2621 { "sr12", offsetof(CPUState, sr[12]) },
2622 { "sr13", offsetof(CPUState, sr[13]) },
2623 { "sr14", offsetof(CPUState, sr[14]) },
2624 { "sr15", offsetof(CPUState, sr[15]) },
2625 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00002626#elif defined(TARGET_SPARC)
2627 { "g0", offsetof(CPUState, gregs[0]) },
2628 { "g1", offsetof(CPUState, gregs[1]) },
2629 { "g2", offsetof(CPUState, gregs[2]) },
2630 { "g3", offsetof(CPUState, gregs[3]) },
2631 { "g4", offsetof(CPUState, gregs[4]) },
2632 { "g5", offsetof(CPUState, gregs[5]) },
2633 { "g6", offsetof(CPUState, gregs[6]) },
2634 { "g7", offsetof(CPUState, gregs[7]) },
2635 { "o0", 0, monitor_get_reg },
2636 { "o1", 1, monitor_get_reg },
2637 { "o2", 2, monitor_get_reg },
2638 { "o3", 3, monitor_get_reg },
2639 { "o4", 4, monitor_get_reg },
2640 { "o5", 5, monitor_get_reg },
2641 { "o6", 6, monitor_get_reg },
2642 { "o7", 7, monitor_get_reg },
2643 { "l0", 8, monitor_get_reg },
2644 { "l1", 9, monitor_get_reg },
2645 { "l2", 10, monitor_get_reg },
2646 { "l3", 11, monitor_get_reg },
2647 { "l4", 12, monitor_get_reg },
2648 { "l5", 13, monitor_get_reg },
2649 { "l6", 14, monitor_get_reg },
2650 { "l7", 15, monitor_get_reg },
2651 { "i0", 16, monitor_get_reg },
2652 { "i1", 17, monitor_get_reg },
2653 { "i2", 18, monitor_get_reg },
2654 { "i3", 19, monitor_get_reg },
2655 { "i4", 20, monitor_get_reg },
2656 { "i5", 21, monitor_get_reg },
2657 { "i6", 22, monitor_get_reg },
2658 { "i7", 23, monitor_get_reg },
2659 { "pc", offsetof(CPUState, pc) },
2660 { "npc", offsetof(CPUState, npc) },
2661 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00002662#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00002663 { "psr", 0, &monitor_get_psr, },
2664 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00002665#endif
bellarde95c8d52004-09-30 22:22:08 +00002666 { "tbr", offsetof(CPUState, tbr) },
2667 { "fsr", offsetof(CPUState, fsr) },
2668 { "f0", offsetof(CPUState, fpr[0]) },
2669 { "f1", offsetof(CPUState, fpr[1]) },
2670 { "f2", offsetof(CPUState, fpr[2]) },
2671 { "f3", offsetof(CPUState, fpr[3]) },
2672 { "f4", offsetof(CPUState, fpr[4]) },
2673 { "f5", offsetof(CPUState, fpr[5]) },
2674 { "f6", offsetof(CPUState, fpr[6]) },
2675 { "f7", offsetof(CPUState, fpr[7]) },
2676 { "f8", offsetof(CPUState, fpr[8]) },
2677 { "f9", offsetof(CPUState, fpr[9]) },
2678 { "f10", offsetof(CPUState, fpr[10]) },
2679 { "f11", offsetof(CPUState, fpr[11]) },
2680 { "f12", offsetof(CPUState, fpr[12]) },
2681 { "f13", offsetof(CPUState, fpr[13]) },
2682 { "f14", offsetof(CPUState, fpr[14]) },
2683 { "f15", offsetof(CPUState, fpr[15]) },
2684 { "f16", offsetof(CPUState, fpr[16]) },
2685 { "f17", offsetof(CPUState, fpr[17]) },
2686 { "f18", offsetof(CPUState, fpr[18]) },
2687 { "f19", offsetof(CPUState, fpr[19]) },
2688 { "f20", offsetof(CPUState, fpr[20]) },
2689 { "f21", offsetof(CPUState, fpr[21]) },
2690 { "f22", offsetof(CPUState, fpr[22]) },
2691 { "f23", offsetof(CPUState, fpr[23]) },
2692 { "f24", offsetof(CPUState, fpr[24]) },
2693 { "f25", offsetof(CPUState, fpr[25]) },
2694 { "f26", offsetof(CPUState, fpr[26]) },
2695 { "f27", offsetof(CPUState, fpr[27]) },
2696 { "f28", offsetof(CPUState, fpr[28]) },
2697 { "f29", offsetof(CPUState, fpr[29]) },
2698 { "f30", offsetof(CPUState, fpr[30]) },
2699 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00002700#ifdef TARGET_SPARC64
2701 { "f32", offsetof(CPUState, fpr[32]) },
2702 { "f34", offsetof(CPUState, fpr[34]) },
2703 { "f36", offsetof(CPUState, fpr[36]) },
2704 { "f38", offsetof(CPUState, fpr[38]) },
2705 { "f40", offsetof(CPUState, fpr[40]) },
2706 { "f42", offsetof(CPUState, fpr[42]) },
2707 { "f44", offsetof(CPUState, fpr[44]) },
2708 { "f46", offsetof(CPUState, fpr[46]) },
2709 { "f48", offsetof(CPUState, fpr[48]) },
2710 { "f50", offsetof(CPUState, fpr[50]) },
2711 { "f52", offsetof(CPUState, fpr[52]) },
2712 { "f54", offsetof(CPUState, fpr[54]) },
2713 { "f56", offsetof(CPUState, fpr[56]) },
2714 { "f58", offsetof(CPUState, fpr[58]) },
2715 { "f60", offsetof(CPUState, fpr[60]) },
2716 { "f62", offsetof(CPUState, fpr[62]) },
2717 { "asi", offsetof(CPUState, asi) },
2718 { "pstate", offsetof(CPUState, pstate) },
2719 { "cansave", offsetof(CPUState, cansave) },
2720 { "canrestore", offsetof(CPUState, canrestore) },
2721 { "otherwin", offsetof(CPUState, otherwin) },
2722 { "wstate", offsetof(CPUState, wstate) },
2723 { "cleanwin", offsetof(CPUState, cleanwin) },
2724 { "fprs", offsetof(CPUState, fprs) },
2725#endif
bellard9307c4c2004-04-04 12:57:25 +00002726#endif
2727 { NULL },
2728};
2729
aliguori376253e2009-03-05 23:01:23 +00002730static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00002731{
aliguori376253e2009-03-05 23:01:23 +00002732 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00002733 longjmp(expr_env, 1);
2734}
2735
bellard6a00d602005-11-21 23:25:50 +00002736/* return 0 if OK, -1 if not found, -2 if no CPU defined */
bellard92a31b12005-02-10 22:00:52 +00002737static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00002738{
blueswir18662d652008-10-02 18:32:44 +00002739 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00002740 void *ptr;
2741
bellard9307c4c2004-04-04 12:57:25 +00002742 for(md = monitor_defs; md->name != NULL; md++) {
2743 if (compare_cmd(name, md->name)) {
2744 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00002745 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00002746 } else {
bellard6a00d602005-11-21 23:25:50 +00002747 CPUState *env = mon_get_cpu();
2748 if (!env)
2749 return -2;
2750 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00002751 switch(md->type) {
2752 case MD_I32:
2753 *pval = *(int32_t *)ptr;
2754 break;
2755 case MD_TLONG:
2756 *pval = *(target_long *)ptr;
2757 break;
2758 default:
2759 *pval = 0;
2760 break;
2761 }
bellard9307c4c2004-04-04 12:57:25 +00002762 }
2763 return 0;
2764 }
2765 }
2766 return -1;
2767}
2768
2769static void next(void)
2770{
Blue Swirl660f11b2009-07-31 21:16:51 +00002771 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00002772 pch++;
blueswir1cd390082008-11-16 13:53:32 +00002773 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002774 pch++;
2775 }
2776}
2777
aliguori376253e2009-03-05 23:01:23 +00002778static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00002779
aliguori376253e2009-03-05 23:01:23 +00002780static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002781{
blueswir1c2efc952007-09-25 17:28:42 +00002782 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00002783 char *p;
bellard6a00d602005-11-21 23:25:50 +00002784 int ret;
bellard9307c4c2004-04-04 12:57:25 +00002785
2786 switch(*pch) {
2787 case '+':
2788 next();
aliguori376253e2009-03-05 23:01:23 +00002789 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002790 break;
2791 case '-':
2792 next();
aliguori376253e2009-03-05 23:01:23 +00002793 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002794 break;
2795 case '~':
2796 next();
aliguori376253e2009-03-05 23:01:23 +00002797 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002798 break;
2799 case '(':
2800 next();
aliguori376253e2009-03-05 23:01:23 +00002801 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00002802 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00002803 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00002804 }
2805 next();
2806 break;
bellard81d09122004-07-14 17:21:37 +00002807 case '\'':
2808 pch++;
2809 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00002810 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00002811 n = *pch;
2812 pch++;
2813 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00002814 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00002815 next();
2816 break;
bellard9307c4c2004-04-04 12:57:25 +00002817 case '$':
2818 {
2819 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00002820 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00002821
bellard9307c4c2004-04-04 12:57:25 +00002822 pch++;
2823 q = buf;
2824 while ((*pch >= 'a' && *pch <= 'z') ||
2825 (*pch >= 'A' && *pch <= 'Z') ||
2826 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00002827 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00002828 if ((q - buf) < sizeof(buf) - 1)
2829 *q++ = *pch;
2830 pch++;
2831 }
blueswir1cd390082008-11-16 13:53:32 +00002832 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002833 pch++;
2834 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00002835 ret = get_monitor_def(&reg, buf);
bellard6a00d602005-11-21 23:25:50 +00002836 if (ret == -1)
aliguori376253e2009-03-05 23:01:23 +00002837 expr_error(mon, "unknown register");
ths5fafdf22007-09-16 21:08:06 +00002838 else if (ret == -2)
aliguori376253e2009-03-05 23:01:23 +00002839 expr_error(mon, "no cpu defined");
blueswir17743e582007-09-24 18:39:04 +00002840 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00002841 }
2842 break;
2843 case '\0':
aliguori376253e2009-03-05 23:01:23 +00002844 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00002845 n = 0;
2846 break;
2847 default:
blueswir17743e582007-09-24 18:39:04 +00002848#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00002849 n = strtoull(pch, &p, 0);
2850#else
bellard9307c4c2004-04-04 12:57:25 +00002851 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00002852#endif
bellard9307c4c2004-04-04 12:57:25 +00002853 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00002854 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00002855 }
2856 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00002857 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002858 pch++;
2859 break;
2860 }
2861 return n;
2862}
2863
2864
aliguori376253e2009-03-05 23:01:23 +00002865static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002866{
blueswir1c2efc952007-09-25 17:28:42 +00002867 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002868 int op;
ths3b46e622007-09-17 08:09:54 +00002869
aliguori376253e2009-03-05 23:01:23 +00002870 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002871 for(;;) {
2872 op = *pch;
2873 if (op != '*' && op != '/' && op != '%')
2874 break;
2875 next();
aliguori376253e2009-03-05 23:01:23 +00002876 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002877 switch(op) {
2878 default:
2879 case '*':
2880 val *= val2;
2881 break;
2882 case '/':
2883 case '%':
ths5fafdf22007-09-16 21:08:06 +00002884 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00002885 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00002886 if (op == '/')
2887 val /= val2;
2888 else
2889 val %= val2;
2890 break;
2891 }
2892 }
2893 return val;
2894}
2895
aliguori376253e2009-03-05 23:01:23 +00002896static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002897{
blueswir1c2efc952007-09-25 17:28:42 +00002898 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002899 int op;
bellard9307c4c2004-04-04 12:57:25 +00002900
aliguori376253e2009-03-05 23:01:23 +00002901 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00002902 for(;;) {
2903 op = *pch;
2904 if (op != '&' && op != '|' && op != '^')
2905 break;
2906 next();
aliguori376253e2009-03-05 23:01:23 +00002907 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00002908 switch(op) {
2909 default:
2910 case '&':
2911 val &= val2;
2912 break;
2913 case '|':
2914 val |= val2;
2915 break;
2916 case '^':
2917 val ^= val2;
2918 break;
2919 }
2920 }
2921 return val;
2922}
2923
aliguori376253e2009-03-05 23:01:23 +00002924static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002925{
blueswir1c2efc952007-09-25 17:28:42 +00002926 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00002927 int op;
bellard9307c4c2004-04-04 12:57:25 +00002928
aliguori376253e2009-03-05 23:01:23 +00002929 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00002930 for(;;) {
2931 op = *pch;
2932 if (op != '+' && op != '-')
2933 break;
2934 next();
aliguori376253e2009-03-05 23:01:23 +00002935 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00002936 if (op == '+')
2937 val += val2;
2938 else
2939 val -= val2;
2940 }
2941 return val;
2942}
2943
aliguori376253e2009-03-05 23:01:23 +00002944static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00002945{
2946 pch = *pp;
2947 if (setjmp(expr_env)) {
2948 *pp = pch;
2949 return -1;
2950 }
blueswir1cd390082008-11-16 13:53:32 +00002951 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002952 pch++;
aliguori376253e2009-03-05 23:01:23 +00002953 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00002954 *pp = pch;
2955 return 0;
2956}
2957
2958static int get_str(char *buf, int buf_size, const char **pp)
2959{
2960 const char *p;
2961 char *q;
2962 int c;
2963
bellard81d09122004-07-14 17:21:37 +00002964 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00002965 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00002966 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00002967 p++;
2968 if (*p == '\0') {
2969 fail:
bellard81d09122004-07-14 17:21:37 +00002970 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00002971 *pp = p;
2972 return -1;
2973 }
bellard9307c4c2004-04-04 12:57:25 +00002974 if (*p == '\"') {
2975 p++;
2976 while (*p != '\0' && *p != '\"') {
2977 if (*p == '\\') {
2978 p++;
2979 c = *p++;
2980 switch(c) {
2981 case 'n':
2982 c = '\n';
2983 break;
2984 case 'r':
2985 c = '\r';
2986 break;
2987 case '\\':
2988 case '\'':
2989 case '\"':
2990 break;
2991 default:
2992 qemu_printf("unsupported escape code: '\\%c'\n", c);
2993 goto fail;
2994 }
2995 if ((q - buf) < buf_size - 1) {
2996 *q++ = c;
2997 }
2998 } else {
2999 if ((q - buf) < buf_size - 1) {
3000 *q++ = *p;
3001 }
3002 p++;
3003 }
3004 }
3005 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003006 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003007 goto fail;
3008 }
3009 p++;
3010 } else {
blueswir1cd390082008-11-16 13:53:32 +00003011 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003012 if ((q - buf) < buf_size - 1) {
3013 *q++ = *p;
3014 }
3015 p++;
3016 }
bellard9307c4c2004-04-04 12:57:25 +00003017 }
bellard81d09122004-07-14 17:21:37 +00003018 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003019 *pp = p;
3020 return 0;
3021}
3022
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003023/*
3024 * Store the command-name in cmdname, and return a pointer to
3025 * the remaining of the command string.
3026 */
3027static const char *get_command_name(const char *cmdline,
3028 char *cmdname, size_t nlen)
3029{
3030 size_t len;
3031 const char *p, *pstart;
3032
3033 p = cmdline;
3034 while (qemu_isspace(*p))
3035 p++;
3036 if (*p == '\0')
3037 return NULL;
3038 pstart = p;
3039 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3040 p++;
3041 len = p - pstart;
3042 if (len > nlen - 1)
3043 len = nlen - 1;
3044 memcpy(cmdname, pstart, len);
3045 cmdname[len] = '\0';
3046 return p;
3047}
3048
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003049/**
3050 * Read key of 'type' into 'key' and return the current
3051 * 'type' pointer.
3052 */
3053static char *key_get_info(const char *type, char **key)
3054{
3055 size_t len;
3056 char *p, *str;
3057
3058 if (*type == ',')
3059 type++;
3060
3061 p = strchr(type, ':');
3062 if (!p) {
3063 *key = NULL;
3064 return NULL;
3065 }
3066 len = p - type;
3067
3068 str = qemu_malloc(len + 1);
3069 memcpy(str, type, len);
3070 str[len] = '\0';
3071
3072 *key = str;
3073 return ++p;
3074}
3075
bellard9307c4c2004-04-04 12:57:25 +00003076static int default_fmt_format = 'x';
3077static int default_fmt_size = 4;
3078
3079#define MAX_ARGS 16
3080
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003081static int is_valid_option(const char *c, const char *typestr)
3082{
3083 char option[3];
3084
3085 option[0] = '-';
3086 option[1] = *c;
3087 option[2] = '\0';
3088
3089 typestr = strstr(typestr, option);
3090 return (typestr != NULL);
3091}
3092
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003093static const mon_cmd_t *monitor_find_command(const char *cmdname)
3094{
3095 const mon_cmd_t *cmd;
3096
3097 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
3098 if (compare_cmd(cmdname, cmd->name)) {
3099 return cmd;
3100 }
3101 }
3102
3103 return NULL;
3104}
3105
Anthony Liguoric227f092009-10-01 16:12:16 -05003106static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003107 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003108 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003109{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003110 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003111 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003112 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003113 char cmdname[256];
3114 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003115 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003116
3117#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003118 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003119#endif
ths3b46e622007-09-17 08:09:54 +00003120
bellard9307c4c2004-04-04 12:57:25 +00003121 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003122 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3123 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003124 return NULL;
ths3b46e622007-09-17 08:09:54 +00003125
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003126 cmd = monitor_find_command(cmdname);
3127 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003128 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003129 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003130 }
bellard9307c4c2004-04-04 12:57:25 +00003131
bellard9307c4c2004-04-04 12:57:25 +00003132 /* parse the parameters */
3133 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003134 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003135 typestr = key_get_info(typestr, &key);
3136 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003137 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003138 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003139 typestr++;
3140 switch(c) {
3141 case 'F':
bellard81d09122004-07-14 17:21:37 +00003142 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003143 case 's':
3144 {
3145 int ret;
ths3b46e622007-09-17 08:09:54 +00003146
blueswir1cd390082008-11-16 13:53:32 +00003147 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003148 p++;
3149 if (*typestr == '?') {
3150 typestr++;
3151 if (*p == '\0') {
3152 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003153 break;
bellard9307c4c2004-04-04 12:57:25 +00003154 }
3155 }
3156 ret = get_str(buf, sizeof(buf), &p);
3157 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003158 switch(c) {
3159 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003160 monitor_printf(mon, "%s: filename expected\n",
3161 cmdname);
bellard81d09122004-07-14 17:21:37 +00003162 break;
3163 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003164 monitor_printf(mon, "%s: block device name expected\n",
3165 cmdname);
bellard81d09122004-07-14 17:21:37 +00003166 break;
3167 default:
aliguori376253e2009-03-05 23:01:23 +00003168 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003169 break;
3170 }
bellard9307c4c2004-04-04 12:57:25 +00003171 goto fail;
3172 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003173 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003174 }
3175 break;
3176 case '/':
3177 {
3178 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003179
blueswir1cd390082008-11-16 13:53:32 +00003180 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003181 p++;
3182 if (*p == '/') {
3183 /* format found */
3184 p++;
3185 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003186 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003187 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003188 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003189 count = count * 10 + (*p - '0');
3190 p++;
3191 }
3192 }
3193 size = -1;
3194 format = -1;
3195 for(;;) {
3196 switch(*p) {
3197 case 'o':
3198 case 'd':
3199 case 'u':
3200 case 'x':
3201 case 'i':
3202 case 'c':
3203 format = *p++;
3204 break;
3205 case 'b':
3206 size = 1;
3207 p++;
3208 break;
3209 case 'h':
3210 size = 2;
3211 p++;
3212 break;
3213 case 'w':
3214 size = 4;
3215 p++;
3216 break;
3217 case 'g':
3218 case 'L':
3219 size = 8;
3220 p++;
3221 break;
3222 default:
3223 goto next;
3224 }
3225 }
3226 next:
blueswir1cd390082008-11-16 13:53:32 +00003227 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003228 monitor_printf(mon, "invalid char in format: '%c'\n",
3229 *p);
bellard9307c4c2004-04-04 12:57:25 +00003230 goto fail;
3231 }
bellard9307c4c2004-04-04 12:57:25 +00003232 if (format < 0)
3233 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003234 if (format != 'i') {
3235 /* for 'i', not specifying a size gives -1 as size */
3236 if (size < 0)
3237 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003238 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003239 }
bellard9307c4c2004-04-04 12:57:25 +00003240 default_fmt_format = format;
3241 } else {
3242 count = 1;
3243 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003244 if (format != 'i') {
3245 size = default_fmt_size;
3246 } else {
3247 size = -1;
3248 }
bellard9307c4c2004-04-04 12:57:25 +00003249 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003250 qdict_put(qdict, "count", qint_from_int(count));
3251 qdict_put(qdict, "format", qint_from_int(format));
3252 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003253 }
3254 break;
3255 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003256 case 'l':
bellard9307c4c2004-04-04 12:57:25 +00003257 {
blueswir1c2efc952007-09-25 17:28:42 +00003258 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003259
blueswir1cd390082008-11-16 13:53:32 +00003260 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003261 p++;
bellard34405572004-06-08 00:55:58 +00003262 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003263 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003264 if (*p == '\0') {
3265 typestr++;
3266 break;
3267 }
bellard34405572004-06-08 00:55:58 +00003268 } else {
3269 if (*p == '.') {
3270 p++;
blueswir1cd390082008-11-16 13:53:32 +00003271 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003272 p++;
bellard34405572004-06-08 00:55:58 +00003273 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003274 typestr++;
3275 break;
bellard34405572004-06-08 00:55:58 +00003276 }
3277 }
bellard13224a82006-07-14 22:03:35 +00003278 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003279 }
aliguori376253e2009-03-05 23:01:23 +00003280 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003281 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003282 /* Check if 'i' is greater than 32-bit */
3283 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3284 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3285 monitor_printf(mon, "integer is for 32-bit values\n");
3286 goto fail;
3287 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003288 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003289 }
3290 break;
3291 case '-':
3292 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003293 const char *tmp = p;
3294 int has_option, skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003295 /* option */
ths3b46e622007-09-17 08:09:54 +00003296
bellard9307c4c2004-04-04 12:57:25 +00003297 c = *typestr++;
3298 if (c == '\0')
3299 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003300 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003301 p++;
3302 has_option = 0;
3303 if (*p == '-') {
3304 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003305 if(c != *p) {
3306 if(!is_valid_option(p, typestr)) {
3307
3308 monitor_printf(mon, "%s: unsupported option -%c\n",
3309 cmdname, *p);
3310 goto fail;
3311 } else {
3312 skip_key = 1;
3313 }
bellard9307c4c2004-04-04 12:57:25 +00003314 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003315 if(skip_key) {
3316 p = tmp;
3317 } else {
3318 p++;
3319 has_option = 1;
3320 }
bellard9307c4c2004-04-04 12:57:25 +00003321 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003322 qdict_put(qdict, key, qint_from_int(has_option));
bellard9307c4c2004-04-04 12:57:25 +00003323 }
3324 break;
3325 default:
3326 bad_type:
aliguori376253e2009-03-05 23:01:23 +00003327 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00003328 goto fail;
3329 }
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003330 qemu_free(key);
3331 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003332 }
3333 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003334 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003335 p++;
3336 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003337 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3338 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00003339 goto fail;
3340 }
3341
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003342 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003343
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003344fail:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003345 qemu_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003346 return NULL;
3347}
3348
Luiz Capitulino8204a912009-11-18 23:05:31 -02003349static void monitor_print_error(Monitor *mon)
3350{
3351 qerror_print(mon->error);
3352 QDECREF(mon->error);
3353 mon->error = NULL;
3354}
3355
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003356static void monitor_call_handler(Monitor *mon, const mon_cmd_t *cmd,
3357 const QDict *params)
3358{
3359 QObject *data = NULL;
3360
3361 cmd->mhandler.cmd_new(mon, params, &data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -02003362
3363 if (monitor_ctrl_mode(mon)) {
3364 /* Monitor Protocol */
3365 monitor_protocol_emitter(mon, data);
3366 } else {
3367 /* User Protocol */
3368 if (data)
3369 cmd->user_print(mon, data);
3370 }
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003371
3372 qobject_decref(data);
3373}
3374
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003375static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003376{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003377 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003378 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003379
3380 qdict = qdict_new();
3381
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03003382 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003383 if (!cmd)
3384 goto out;
3385
3386 qemu_errors_to_mon(mon);
3387
3388 if (monitor_handler_ported(cmd)) {
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003389 monitor_call_handler(mon, cmd, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003390 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03003391 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003392 }
3393
Luiz Capitulino8204a912009-11-18 23:05:31 -02003394 if (monitor_has_error(mon))
3395 monitor_print_error(mon);
3396
3397 qemu_errors_to_previous();
Luiz Capitulino13917be2009-10-07 13:41:54 -03003398
3399out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003400 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00003401}
3402
bellard81d09122004-07-14 17:21:37 +00003403static void cmd_completion(const char *name, const char *list)
3404{
3405 const char *p, *pstart;
3406 char cmd[128];
3407 int len;
3408
3409 p = list;
3410 for(;;) {
3411 pstart = p;
3412 p = strchr(p, '|');
3413 if (!p)
3414 p = pstart + strlen(pstart);
3415 len = p - pstart;
3416 if (len > sizeof(cmd) - 2)
3417 len = sizeof(cmd) - 2;
3418 memcpy(cmd, pstart, len);
3419 cmd[len] = '\0';
3420 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00003421 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00003422 }
3423 if (*p == '\0')
3424 break;
3425 p++;
3426 }
3427}
3428
3429static void file_completion(const char *input)
3430{
3431 DIR *ffs;
3432 struct dirent *d;
3433 char path[1024];
3434 char file[1024], file_prefix[1024];
3435 int input_path_len;
3436 const char *p;
3437
ths5fafdf22007-09-16 21:08:06 +00003438 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00003439 if (!p) {
3440 input_path_len = 0;
3441 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00003442 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00003443 } else {
3444 input_path_len = p - input + 1;
3445 memcpy(path, input, input_path_len);
3446 if (input_path_len > sizeof(path) - 1)
3447 input_path_len = sizeof(path) - 1;
3448 path[input_path_len] = '\0';
3449 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3450 }
3451#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00003452 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
3453 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00003454#endif
3455 ffs = opendir(path);
3456 if (!ffs)
3457 return;
3458 for(;;) {
3459 struct stat sb;
3460 d = readdir(ffs);
3461 if (!d)
3462 break;
3463 if (strstart(d->d_name, file_prefix, NULL)) {
3464 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00003465 if (input_path_len < sizeof(file))
3466 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3467 d->d_name);
bellard81d09122004-07-14 17:21:37 +00003468 /* stat the file to find out if it's a directory.
3469 * In that case add a slash to speed up typing long paths
3470 */
3471 stat(file, &sb);
3472 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00003473 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00003474 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00003475 }
3476 }
3477 closedir(ffs);
3478}
3479
aliguori51de9762009-03-05 23:00:43 +00003480static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00003481{
aliguori51de9762009-03-05 23:00:43 +00003482 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00003483 const char *input = opaque;
3484
3485 if (input[0] == '\0' ||
3486 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00003487 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00003488 }
3489}
3490
3491/* NOTE: this parser is an approximate form of the real command parser */
3492static void parse_cmdline(const char *cmdline,
3493 int *pnb_args, char **args)
3494{
3495 const char *p;
3496 int nb_args, ret;
3497 char buf[1024];
3498
3499 p = cmdline;
3500 nb_args = 0;
3501 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00003502 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00003503 p++;
3504 if (*p == '\0')
3505 break;
3506 if (nb_args >= MAX_ARGS)
3507 break;
3508 ret = get_str(buf, sizeof(buf), &p);
3509 args[nb_args] = qemu_strdup(buf);
3510 nb_args++;
3511 if (ret < 0)
3512 break;
3513 }
3514 *pnb_args = nb_args;
3515}
3516
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003517static const char *next_arg_type(const char *typestr)
3518{
3519 const char *p = strchr(typestr, ':');
3520 return (p != NULL ? ++p : typestr);
3521}
3522
aliguori4c36ba32009-03-05 23:01:37 +00003523static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00003524{
3525 const char *cmdname;
3526 char *args[MAX_ARGS];
3527 int nb_args, i, len;
3528 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05003529 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00003530 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00003531
3532 parse_cmdline(cmdline, &nb_args, args);
3533#ifdef DEBUG_COMPLETION
3534 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00003535 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00003536 }
3537#endif
3538
3539 /* if the line ends with a space, it means we want to complete the
3540 next arg */
3541 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00003542 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
bellard81d09122004-07-14 17:21:37 +00003543 if (nb_args >= MAX_ARGS)
3544 return;
3545 args[nb_args++] = qemu_strdup("");
3546 }
3547 if (nb_args <= 1) {
3548 /* command completion */
3549 if (nb_args == 0)
3550 cmdname = "";
3551 else
3552 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00003553 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00003554 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00003555 cmd_completion(cmdname, cmd->name);
3556 }
3557 } else {
3558 /* find the command */
aliguori376253e2009-03-05 23:01:23 +00003559 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00003560 if (compare_cmd(args[0], cmd->name))
3561 goto found;
3562 }
3563 return;
3564 found:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003565 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00003566 for(i = 0; i < nb_args - 2; i++) {
3567 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003568 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00003569 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003570 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00003571 }
3572 }
3573 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00003574 if (*ptype == '-' && ptype[1] != '\0') {
3575 ptype += 2;
3576 }
bellard81d09122004-07-14 17:21:37 +00003577 switch(*ptype) {
3578 case 'F':
3579 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00003580 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00003581 file_completion(str);
3582 break;
3583 case 'B':
3584 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00003585 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00003586 bdrv_iterate(block_completion_it, (void *)str);
3587 break;
bellard7fe48482004-10-09 18:08:01 +00003588 case 's':
3589 /* XXX: more generic ? */
3590 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00003591 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00003592 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
3593 cmd_completion(str, cmd->name);
3594 }
bellard64866c32006-05-07 18:03:31 +00003595 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00003596 char *sep = strrchr(str, '-');
3597 if (sep)
3598 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00003599 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00003600 for(key = key_defs; key->name != NULL; key++) {
3601 cmd_completion(str, key->name);
3602 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02003603 } else if (!strcmp(cmd->name, "help|?")) {
3604 readline_set_completion_index(cur_mon->rs, strlen(str));
3605 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
3606 cmd_completion(str, cmd->name);
3607 }
bellard7fe48482004-10-09 18:08:01 +00003608 }
3609 break;
bellard81d09122004-07-14 17:21:37 +00003610 default:
3611 break;
3612 }
3613 }
3614 for(i = 0; i < nb_args; i++)
3615 qemu_free(args[i]);
3616}
3617
aliguori731b0362009-03-05 23:01:42 +00003618static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00003619{
aliguori731b0362009-03-05 23:01:42 +00003620 Monitor *mon = opaque;
3621
3622 return (mon->suspend_cnt == 0) ? 128 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00003623}
3624
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02003625typedef struct CmdArgs {
3626 QString *name;
3627 int type;
3628 int flag;
3629 int optional;
3630} CmdArgs;
3631
3632static int check_opt(const CmdArgs *cmd_args, const char *name, QDict *args)
3633{
3634 if (!cmd_args->optional) {
3635 qemu_error_new(QERR_MISSING_PARAMETER, name);
3636 return -1;
3637 }
3638
3639 if (cmd_args->type == '-') {
3640 /* handlers expect a value, they need to be changed */
3641 qdict_put(args, name, qint_from_int(0));
3642 }
3643
3644 return 0;
3645}
3646
3647static int check_arg(const CmdArgs *cmd_args, QDict *args)
3648{
3649 QObject *value;
3650 const char *name;
3651
3652 name = qstring_get_str(cmd_args->name);
3653
3654 if (!args) {
3655 return check_opt(cmd_args, name, args);
3656 }
3657
3658 value = qdict_get(args, name);
3659 if (!value) {
3660 return check_opt(cmd_args, name, args);
3661 }
3662
3663 switch (cmd_args->type) {
3664 case 'F':
3665 case 'B':
3666 case 's':
3667 if (qobject_type(value) != QTYPE_QSTRING) {
3668 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "string");
3669 return -1;
3670 }
3671 break;
3672 case '/': {
3673 int i;
3674 const char *keys[] = { "count", "format", "size", NULL };
3675
3676 for (i = 0; keys[i]; i++) {
3677 QObject *obj = qdict_get(args, keys[i]);
3678 if (!obj) {
3679 qemu_error_new(QERR_MISSING_PARAMETER, name);
3680 return -1;
3681 }
3682 if (qobject_type(obj) != QTYPE_QINT) {
3683 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "int");
3684 return -1;
3685 }
3686 }
3687 break;
3688 }
3689 case 'i':
3690 case 'l':
3691 if (qobject_type(value) != QTYPE_QINT) {
3692 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "int");
3693 return -1;
3694 }
3695 break;
3696 case '-':
3697 if (qobject_type(value) != QTYPE_QINT &&
3698 qobject_type(value) != QTYPE_QBOOL) {
3699 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "bool");
3700 return -1;
3701 }
3702 if (qobject_type(value) == QTYPE_QBOOL) {
3703 /* handlers expect a QInt, they need to be changed */
3704 qdict_put(args, name,
3705 qint_from_int(qbool_get_int(qobject_to_qbool(value))));
3706 }
3707 break;
3708 default:
3709 /* impossible */
3710 abort();
3711 }
3712
3713 return 0;
3714}
3715
3716static void cmd_args_init(CmdArgs *cmd_args)
3717{
3718 cmd_args->name = qstring_new();
3719 cmd_args->type = cmd_args->flag = cmd_args->optional = 0;
3720}
3721
3722/*
3723 * This is not trivial, we have to parse Monitor command's argument
3724 * type syntax to be able to check the arguments provided by clients.
3725 *
3726 * In the near future we will be using an array for that and will be
3727 * able to drop all this parsing...
3728 */
3729static int monitor_check_qmp_args(const mon_cmd_t *cmd, QDict *args)
3730{
3731 int err;
3732 const char *p;
3733 CmdArgs cmd_args;
3734
3735 if (cmd->args_type == '\0') {
3736 return (qdict_size(args) == 0 ? 0 : -1);
3737 }
3738
3739 err = 0;
3740 cmd_args_init(&cmd_args);
3741
3742 for (p = cmd->args_type;; p++) {
3743 if (*p == ':') {
3744 cmd_args.type = *++p;
3745 p++;
3746 if (cmd_args.type == '-') {
3747 cmd_args.flag = *p++;
3748 cmd_args.optional = 1;
3749 } else if (*p == '?') {
3750 cmd_args.optional = 1;
3751 p++;
3752 }
3753
3754 assert(*p == ',' || *p == '\0');
3755 err = check_arg(&cmd_args, args);
3756
3757 QDECREF(cmd_args.name);
3758 cmd_args_init(&cmd_args);
3759
3760 if (err < 0) {
3761 break;
3762 }
3763 } else {
3764 qstring_append_chr(cmd_args.name, *p);
3765 }
3766
3767 if (*p == '\0') {
3768 break;
3769 }
3770 }
3771
3772 QDECREF(cmd_args.name);
3773 return err;
3774}
3775
3776static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
3777{
3778 int err;
3779 QObject *obj;
3780 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02003781 const mon_cmd_t *cmd;
3782 Monitor *mon = cur_mon;
Luiz Capitulino5e23f482009-11-26 22:59:02 -02003783 const char *cmd_name, *info_item;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02003784
3785 args = NULL;
3786 qemu_errors_to_mon(mon);
3787
3788 obj = json_parser_parse(tokens, NULL);
3789 if (!obj) {
3790 // FIXME: should be triggered in json_parser_parse()
3791 qemu_error_new(QERR_JSON_PARSING);
3792 goto err_out;
3793 } else if (qobject_type(obj) != QTYPE_QDICT) {
3794 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "object");
3795 qobject_decref(obj);
3796 goto err_out;
3797 }
3798
3799 input = qobject_to_qdict(obj);
3800
3801 mon->mc->id = qdict_get(input, "id");
3802 qobject_incref(mon->mc->id);
3803
3804 obj = qdict_get(input, "execute");
3805 if (!obj) {
3806 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "execute");
3807 goto err_input;
3808 } else if (qobject_type(obj) != QTYPE_QSTRING) {
3809 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "string");
3810 goto err_input;
3811 }
3812
3813 cmd_name = qstring_get_str(qobject_to_qstring(obj));
Luiz Capitulino5e23f482009-11-26 22:59:02 -02003814
3815 /*
3816 * XXX: We need this special case until we get info handlers
3817 * converted into 'query-' commands
3818 */
3819 if (compare_cmd(cmd_name, "info")) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02003820 qemu_error_new(QERR_COMMAND_NOT_FOUND, cmd_name);
3821 goto err_input;
Luiz Capitulino5e23f482009-11-26 22:59:02 -02003822 } else if (strstart(cmd_name, "query-", &info_item)) {
3823 cmd = monitor_find_command("info");
3824 qdict_put_obj(input, "arguments",
3825 qobject_from_jsonf("{ 'item': %s }", info_item));
3826 } else {
3827 cmd = monitor_find_command(cmd_name);
3828 if (!cmd) {
3829 qemu_error_new(QERR_COMMAND_NOT_FOUND, cmd_name);
3830 goto err_input;
3831 }
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02003832 }
3833
3834 obj = qdict_get(input, "arguments");
3835 if (!obj) {
3836 args = qdict_new();
3837 } else {
3838 args = qobject_to_qdict(obj);
3839 QINCREF(args);
3840 }
3841
3842 QDECREF(input);
3843
3844 err = monitor_check_qmp_args(cmd, args);
3845 if (err < 0) {
3846 goto err_out;
3847 }
3848
3849 monitor_call_handler(mon, cmd, args);
3850 goto out;
3851
3852err_input:
3853 QDECREF(input);
3854err_out:
3855 monitor_protocol_emitter(mon, NULL);
3856out:
3857 QDECREF(args);
3858 qemu_errors_to_previous();
3859}
3860
Luiz Capitulino9b57c022009-11-26 22:58:58 -02003861/**
3862 * monitor_control_read(): Read and handle QMP input
3863 */
3864static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
3865{
3866 Monitor *old_mon = cur_mon;
3867
3868 cur_mon = opaque;
3869
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02003870 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02003871
3872 cur_mon = old_mon;
3873}
3874
aliguori731b0362009-03-05 23:01:42 +00003875static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00003876{
aliguori731b0362009-03-05 23:01:42 +00003877 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00003878 int i;
aliguori376253e2009-03-05 23:01:23 +00003879
aliguori731b0362009-03-05 23:01:42 +00003880 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00003881
aliguoricde76ee2009-03-05 23:01:51 +00003882 if (cur_mon->rs) {
3883 for (i = 0; i < size; i++)
3884 readline_handle_byte(cur_mon->rs, buf[i]);
3885 } else {
3886 if (size == 0 || buf[size - 1] != 0)
3887 monitor_printf(cur_mon, "corrupted command\n");
3888 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003889 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00003890 }
aliguori731b0362009-03-05 23:01:42 +00003891
3892 cur_mon = old_mon;
3893}
aliguorid8f44602008-10-06 13:52:44 +00003894
aliguori376253e2009-03-05 23:01:23 +00003895static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00003896{
aliguori731b0362009-03-05 23:01:42 +00003897 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003898 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00003899 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00003900}
3901
aliguoricde76ee2009-03-05 23:01:51 +00003902int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00003903{
aliguoricde76ee2009-03-05 23:01:51 +00003904 if (!mon->rs)
3905 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00003906 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00003907 return 0;
aliguorid8f44602008-10-06 13:52:44 +00003908}
3909
aliguori376253e2009-03-05 23:01:23 +00003910void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00003911{
aliguoricde76ee2009-03-05 23:01:51 +00003912 if (!mon->rs)
3913 return;
aliguori731b0362009-03-05 23:01:42 +00003914 if (--mon->suspend_cnt == 0)
3915 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00003916}
3917
Luiz Capitulino9b57c022009-11-26 22:58:58 -02003918/**
3919 * monitor_control_event(): Print QMP gretting
3920 */
3921static void monitor_control_event(void *opaque, int event)
3922{
3923 if (event == CHR_EVENT_OPENED) {
3924 QObject *data;
3925 Monitor *mon = opaque;
3926
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02003927 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
3928
Luiz Capitulino9b57c022009-11-26 22:58:58 -02003929 data = qobject_from_jsonf("{ 'QMP': { 'capabilities': [] } }");
3930 assert(data != NULL);
3931
3932 monitor_json_emitter(mon, data);
3933 qobject_decref(data);
3934 }
3935}
3936
aliguori731b0362009-03-05 23:01:42 +00003937static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00003938{
aliguori376253e2009-03-05 23:01:23 +00003939 Monitor *mon = opaque;
3940
aliguori2724b182009-03-05 23:01:47 +00003941 switch (event) {
3942 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02003943 mon->mux_out = 0;
3944 if (mon->reset_seen) {
3945 readline_restart(mon->rs);
3946 monitor_resume(mon);
3947 monitor_flush(mon);
3948 } else {
3949 mon->suspend_cnt = 0;
3950 }
aliguori2724b182009-03-05 23:01:47 +00003951 break;
ths86e94de2007-01-05 22:01:59 +00003952
aliguori2724b182009-03-05 23:01:47 +00003953 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02003954 if (mon->reset_seen) {
3955 if (mon->suspend_cnt == 0) {
3956 monitor_printf(mon, "\n");
3957 }
3958 monitor_flush(mon);
3959 monitor_suspend(mon);
3960 } else {
3961 mon->suspend_cnt++;
3962 }
3963 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00003964 break;
3965
Amit Shahb6b8df52009-10-07 18:31:16 +05303966 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00003967 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
3968 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02003969 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00003970 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02003971 }
3972 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00003973 break;
3974 }
ths86e94de2007-01-05 22:01:59 +00003975}
3976
aliguori76655d62009-03-06 20:27:37 +00003977
3978/*
3979 * Local variables:
3980 * c-indent-level: 4
3981 * c-basic-offset: 4
3982 * tab-width: 8
3983 * End:
3984 */
3985
Luiz Capitulinoadcb1812009-11-26 22:58:52 -02003986const char *monitor_cmdline_parse(const char *cmdline, int *flags)
3987{
3988 const char *dev;
3989
3990 if (strstart(cmdline, "control,", &dev)) {
3991 if (strstart(dev, "vc", NULL)) {
3992 fprintf(stderr, "qemu: control mode is for low-level interaction ");
3993 fprintf(stderr, "cannot be used with device 'vc'\n");
3994 exit(1);
3995 }
3996 *flags &= ~MONITOR_USE_READLINE;
3997 *flags |= MONITOR_USE_CONTROL;
3998 return dev;
3999 }
4000
4001 return cmdline;
4002}
4003
aliguori731b0362009-03-05 23:01:42 +00004004void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004005{
aliguori731b0362009-03-05 23:01:42 +00004006 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00004007 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00004008
4009 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00004010 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00004011 is_first_init = 0;
4012 }
aliguori87127162009-03-05 23:01:29 +00004013
4014 mon = qemu_mallocz(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00004015
aliguori87127162009-03-05 23:01:29 +00004016 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00004017 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00004018 if (flags & MONITOR_USE_READLINE) {
4019 mon->rs = readline_init(mon, monitor_find_completion);
4020 monitor_read_command(mon, 0);
4021 }
aliguori87127162009-03-05 23:01:29 +00004022
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004023 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004024 mon->mc = qemu_mallocz(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004025 /* Control mode requires special handlers */
4026 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4027 monitor_control_event, mon);
4028 } else {
4029 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4030 monitor_event, mon);
4031 }
aliguori87127162009-03-05 23:01:29 +00004032
Blue Swirl72cf2d42009-09-12 07:36:22 +00004033 QLIST_INSERT_HEAD(&mon_list, mon, entry);
aliguori731b0362009-03-05 23:01:42 +00004034 if (!cur_mon || (flags & MONITOR_IS_DEFAULT))
aliguori87127162009-03-05 23:01:29 +00004035 cur_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00004036}
4037
aliguori376253e2009-03-05 23:01:23 +00004038static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004039{
aliguoribb5fc202009-03-05 23:01:15 +00004040 BlockDriverState *bs = opaque;
4041 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00004042
aliguoribb5fc202009-03-05 23:01:15 +00004043 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00004044 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00004045 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00004046 }
aliguori731b0362009-03-05 23:01:42 +00004047 if (mon->password_completion_cb)
4048 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00004049
aliguori731b0362009-03-05 23:01:42 +00004050 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00004051}
aliguoric0f4ce72009-03-05 23:01:01 +00004052
aliguori376253e2009-03-05 23:01:23 +00004053void monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
aliguoribb5fc202009-03-05 23:01:15 +00004054 BlockDriverCompletionFunc *completion_cb,
4055 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00004056{
aliguoricde76ee2009-03-05 23:01:51 +00004057 int err;
4058
aliguoribb5fc202009-03-05 23:01:15 +00004059 if (!bdrv_key_required(bs)) {
4060 if (completion_cb)
4061 completion_cb(opaque, 0);
4062 return;
4063 }
aliguoric0f4ce72009-03-05 23:01:01 +00004064
aliguori376253e2009-03-05 23:01:23 +00004065 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4066 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00004067
aliguori731b0362009-03-05 23:01:42 +00004068 mon->password_completion_cb = completion_cb;
4069 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00004070
aliguoricde76ee2009-03-05 23:01:51 +00004071 err = monitor_read_password(mon, bdrv_password_cb, bs);
4072
4073 if (err && completion_cb)
4074 completion_cb(opaque, err);
aliguoric0f4ce72009-03-05 23:01:01 +00004075}
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02004076
4077typedef struct QemuErrorSink QemuErrorSink;
4078struct QemuErrorSink {
4079 enum {
4080 ERR_SINK_FILE,
4081 ERR_SINK_MONITOR,
4082 } dest;
4083 union {
4084 FILE *fp;
4085 Monitor *mon;
4086 };
4087 QemuErrorSink *previous;
4088};
4089
Blue Swirl528e93a2009-08-31 15:14:40 +00004090static QemuErrorSink *qemu_error_sink;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02004091
4092void qemu_errors_to_file(FILE *fp)
4093{
4094 QemuErrorSink *sink;
4095
4096 sink = qemu_mallocz(sizeof(*sink));
4097 sink->dest = ERR_SINK_FILE;
4098 sink->fp = fp;
4099 sink->previous = qemu_error_sink;
4100 qemu_error_sink = sink;
4101}
4102
4103void qemu_errors_to_mon(Monitor *mon)
4104{
4105 QemuErrorSink *sink;
4106
4107 sink = qemu_mallocz(sizeof(*sink));
4108 sink->dest = ERR_SINK_MONITOR;
4109 sink->mon = mon;
4110 sink->previous = qemu_error_sink;
4111 qemu_error_sink = sink;
4112}
4113
4114void qemu_errors_to_previous(void)
4115{
4116 QemuErrorSink *sink;
4117
4118 assert(qemu_error_sink != NULL);
4119 sink = qemu_error_sink;
4120 qemu_error_sink = sink->previous;
4121 qemu_free(sink);
4122}
4123
4124void qemu_error(const char *fmt, ...)
4125{
4126 va_list args;
4127
4128 assert(qemu_error_sink != NULL);
4129 switch (qemu_error_sink->dest) {
4130 case ERR_SINK_FILE:
4131 va_start(args, fmt);
4132 vfprintf(qemu_error_sink->fp, fmt, args);
4133 va_end(args);
4134 break;
4135 case ERR_SINK_MONITOR:
4136 va_start(args, fmt);
4137 monitor_vprintf(qemu_error_sink->mon, fmt, args);
4138 va_end(args);
4139 break;
4140 }
4141}
Luiz Capitulino8204a912009-11-18 23:05:31 -02004142
4143void qemu_error_internal(const char *file, int linenr, const char *func,
4144 const char *fmt, ...)
4145{
4146 va_list va;
4147 QError *qerror;
4148
4149 assert(qemu_error_sink != NULL);
4150
4151 va_start(va, fmt);
4152 qerror = qerror_from_info(file, linenr, func, fmt, &va);
4153 va_end(va);
4154
4155 switch (qemu_error_sink->dest) {
4156 case ERR_SINK_FILE:
4157 qerror_print(qerror);
4158 QDECREF(qerror);
4159 break;
4160 case ERR_SINK_MONITOR:
4161 assert(qemu_error_sink->mon->error == NULL);
4162 qemu_error_sink->mon->error = qerror;
4163 break;
4164 }
4165}