blob: 6a0f1826471f2cdfd93357f1e4f9d9e5a653e484 [file] [log] [blame]
bellard9dc39cb2004-03-14 21:38:27 +00001/*
2 * QEMU monitor
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard9dc39cb2004-03-14 21:38:27 +00004 * Copyright (c) 2003-2004 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellard9dc39cb2004-03-14 21:38:27 +00006 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
blueswir1511d2b12009-03-07 15:32:56 +000024#include <dirent.h>
pbrook87ecb682007-11-17 17:14:51 +000025#include "hw/hw.h"
Gerd Hoffmanncae49562009-06-05 15:53:17 +010026#include "hw/qdev.h"
pbrook87ecb682007-11-17 17:14:51 +000027#include "hw/usb.h"
28#include "hw/pcmcia.h"
29#include "hw/pc.h"
30#include "hw/pci.h"
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +010031#include "hw/watchdog.h"
Gerd Hoffmann45a50b12009-10-01 16:42:33 +020032#include "hw/loader.h"
pbrook87ecb682007-11-17 17:14:51 +000033#include "gdbstub.h"
34#include "net.h"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000035#include "net/slirp.h"
pbrook87ecb682007-11-17 17:14:51 +000036#include "qemu-char.h"
37#include "sysemu.h"
aliguori376253e2009-03-05 23:01:23 +000038#include "monitor.h"
39#include "readline.h"
pbrook87ecb682007-11-17 17:14:51 +000040#include "console.h"
41#include "block.h"
42#include "audio/audio.h"
bellard9307c4c2004-04-04 12:57:25 +000043#include "disas.h"
aliguoridf751fa2008-12-04 20:19:35 +000044#include "balloon.h"
balrogc8256f92008-06-08 22:45:01 +000045#include "qemu-timer.h"
aliguori5bb79102008-10-13 03:12:02 +000046#include "migration.h"
aliguori7ba1e612008-11-05 16:04:33 +000047#include "kvm.h"
aliguori76655d62009-03-06 20:27:37 +000048#include "acl.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030049#include "qint.h"
Markus Armbruster3350a4d2010-01-25 14:23:03 +010050#include "qfloat.h"
Luiz Capitulino8f3cec02009-10-07 13:42:04 -030051#include "qlist.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030052#include "qdict.h"
Luiz Capitulino5fa737a2009-11-26 22:59:01 -020053#include "qbool.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030054#include "qstring.h"
Luiz Capitulino8204a912009-11-18 23:05:31 -020055#include "qerror.h"
Luiz Capitulino9b57c022009-11-26 22:58:58 -020056#include "qjson.h"
Luiz Capitulino5fa737a2009-11-26 22:59:01 -020057#include "json-streamer.h"
58#include "json-parser.h"
Blue Swirld08d6f02009-12-04 18:06:39 +000059#include "osdep.h"
ths6a5bd302007-12-03 17:05:38 +000060
bellard9dc39cb2004-03-14 21:38:27 +000061//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000062//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000063
bellard9307c4c2004-04-04 12:57:25 +000064/*
65 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000066 *
bellard9307c4c2004-04-04 12:57:25 +000067 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000068 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000069 * 's' string (accept optional quote)
bellard92a31b12005-02-10 22:00:52 +000070 * 'i' 32 bit integer
71 * 'l' target long (32 or 64 bit)
Markus Armbruster9fec5432010-01-25 14:23:01 +010072 * 'M' just like 'l', except in user mode the value is
73 * multiplied by 2^20 (think Mebibyte)
Markus Armbruster3350a4d2010-01-25 14:23:03 +010074 * 'b' double
75 * user mode accepts an optional G, g, M, m, K, k suffix,
76 * which multiplies the value by 2^30 for suffixes G and
77 * g, 2^20 for M and m, 2^10 for K and k
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +010078 * 'T' double
79 * user mode accepts an optional ms, us, ns suffix,
80 * which divides the value by 1e3, 1e6, 1e9, respectively
bellard9307c4c2004-04-04 12:57:25 +000081 * '/' optional gdb-like print format (like "/10x")
82 *
Luiz Capitulinofb466602009-08-28 15:27:27 -030083 * '?' optional type (for all types, except '/')
84 * '.' other form of optional type (for 'i' and 'l')
85 * '-' optional parameter (eg. '-f')
bellard9307c4c2004-04-04 12:57:25 +000086 *
87 */
88
Adam Litke940cc302010-01-25 12:18:44 -060089typedef struct MonitorCompletionData MonitorCompletionData;
90struct MonitorCompletionData {
91 Monitor *mon;
92 void (*user_print)(Monitor *mon, const QObject *data);
93};
94
Anthony Liguoric227f092009-10-01 16:12:16 -050095typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +000096 const char *name;
bellard9307c4c2004-04-04 12:57:25 +000097 const char *args_type;
bellard9dc39cb2004-03-14 21:38:27 +000098 const char *params;
99 const char *help;
Luiz Capitulinoa2876f52009-10-07 13:41:53 -0300100 void (*user_print)(Monitor *mon, const QObject *data);
Luiz Capitulino910df892009-10-07 13:41:51 -0300101 union {
102 void (*info)(Monitor *mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300103 void (*info_new)(Monitor *mon, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600104 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300105 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -0300106 void (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600107 int (*cmd_async)(Monitor *mon, const QDict *params,
108 MonitorCompletion *cb, void *opaque);
Luiz Capitulino910df892009-10-07 13:41:51 -0300109 } mhandler;
Adam Litke940cc302010-01-25 12:18:44 -0600110 int async;
Anthony Liguoric227f092009-10-01 16:12:16 -0500111} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +0000112
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100113/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -0500114typedef struct mon_fd_t mon_fd_t;
115struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100116 char *name;
117 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -0500118 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100119};
120
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200121typedef struct MonitorControl {
122 QObject *id;
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200123 int print_enabled;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200124 JSONMessageParser parser;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200125 int command_mode;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200126} MonitorControl;
127
aliguori87127162009-03-05 23:01:29 +0000128struct Monitor {
129 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200130 int mux_out;
131 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000132 int flags;
133 int suspend_cnt;
134 uint8_t outbuf[1024];
135 int outbuf_index;
136 ReadLineState *rs;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200137 MonitorControl *mc;
aliguori731b0362009-03-05 23:01:42 +0000138 CPUState *mon_cpu;
139 BlockDriverCompletionFunc *password_completion_cb;
140 void *password_opaque;
Luiz Capitulino8204a912009-11-18 23:05:31 -0200141 QError *error;
Anthony Liguoric227f092009-10-01 16:12:16 -0500142 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000143 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000144};
145
Blue Swirl72cf2d42009-09-12 07:36:22 +0000146static QLIST_HEAD(mon_list, Monitor) mon_list;
bellard7e2515e2004-08-01 21:52:19 +0000147
Anthony Liguoric227f092009-10-01 16:12:16 -0500148static const mon_cmd_t mon_cmds[];
149static const mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000150
aliguori87127162009-03-05 23:01:29 +0000151Monitor *cur_mon = NULL;
aliguori376253e2009-03-05 23:01:23 +0000152
aliguori731b0362009-03-05 23:01:42 +0000153static void monitor_command_cb(Monitor *mon, const char *cmdline,
154 void *opaque);
aliguori83ab7952008-08-19 14:44:22 +0000155
Luiz Capitulino09069b12010-02-04 18:10:06 -0200156static inline int qmp_cmd_mode(const Monitor *mon)
157{
158 return (mon->mc ? mon->mc->command_mode : 0);
159}
160
Luiz Capitulino418173c2009-11-26 22:58:51 -0200161/* Return true if in control mode, false otherwise */
162static inline int monitor_ctrl_mode(const Monitor *mon)
163{
164 return (mon->flags & MONITOR_USE_CONTROL);
165}
166
aliguori731b0362009-03-05 23:01:42 +0000167static void monitor_read_command(Monitor *mon, int show_prompt)
168{
Luiz Capitulino183e6e52009-12-14 18:53:23 -0200169 if (!mon->rs)
170 return;
171
aliguori731b0362009-03-05 23:01:42 +0000172 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
173 if (show_prompt)
174 readline_show_prompt(mon->rs);
175}
bellard6a00d602005-11-21 23:25:50 +0000176
aliguoricde76ee2009-03-05 23:01:51 +0000177static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
178 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000179{
Luiz Capitulino94171e12009-12-07 21:37:00 +0100180 if (monitor_ctrl_mode(mon)) {
181 qemu_error_new(QERR_MISSING_PARAMETER, "password");
182 return -EINVAL;
183 } else if (mon->rs) {
aliguoricde76ee2009-03-05 23:01:51 +0000184 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
185 /* prompt is printed on return from the command handler */
186 return 0;
187 } else {
188 monitor_printf(mon, "terminal does not support password prompting\n");
189 return -ENOTTY;
190 }
aliguoribb5fc202009-03-05 23:01:15 +0000191}
192
aliguori376253e2009-03-05 23:01:23 +0000193void monitor_flush(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000194{
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200195 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
aliguori731b0362009-03-05 23:01:42 +0000196 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
197 mon->outbuf_index = 0;
bellard7e2515e2004-08-01 21:52:19 +0000198 }
199}
200
201/* flush at every end of line or if the buffer is full */
aliguori376253e2009-03-05 23:01:23 +0000202static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000203{
ths60fe76f2007-12-16 03:02:09 +0000204 char c;
aliguori731b0362009-03-05 23:01:42 +0000205
bellard7e2515e2004-08-01 21:52:19 +0000206 for(;;) {
207 c = *str++;
208 if (c == '\0')
209 break;
bellard7ba12602006-07-14 20:26:42 +0000210 if (c == '\n')
aliguori731b0362009-03-05 23:01:42 +0000211 mon->outbuf[mon->outbuf_index++] = '\r';
212 mon->outbuf[mon->outbuf_index++] = c;
213 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
214 || c == '\n')
aliguori376253e2009-03-05 23:01:23 +0000215 monitor_flush(mon);
bellard7e2515e2004-08-01 21:52:19 +0000216 }
217}
218
aliguori376253e2009-03-05 23:01:23 +0000219void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000220{
Luiz Capitulino2daa1192009-12-14 18:53:24 -0200221 if (!mon)
222 return;
223
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200224 if (mon->mc && !mon->mc->print_enabled) {
225 qemu_error_new(QERR_UNDEFINED_ERROR);
226 } else {
227 char buf[4096];
228 vsnprintf(buf, sizeof(buf), fmt, ap);
229 monitor_puts(mon, buf);
230 }
bellard7e2515e2004-08-01 21:52:19 +0000231}
232
aliguori376253e2009-03-05 23:01:23 +0000233void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000234{
235 va_list ap;
236 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000237 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000238 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000239}
240
aliguori376253e2009-03-05 23:01:23 +0000241void monitor_print_filename(Monitor *mon, const char *filename)
thsfef30742006-12-22 14:11:32 +0000242{
243 int i;
244
245 for (i = 0; filename[i]; i++) {
aliguori28a76be2009-03-06 20:27:40 +0000246 switch (filename[i]) {
247 case ' ':
248 case '"':
249 case '\\':
250 monitor_printf(mon, "\\%c", filename[i]);
251 break;
252 case '\t':
253 monitor_printf(mon, "\\t");
254 break;
255 case '\r':
256 monitor_printf(mon, "\\r");
257 break;
258 case '\n':
259 monitor_printf(mon, "\\n");
260 break;
261 default:
262 monitor_printf(mon, "%c", filename[i]);
263 break;
264 }
thsfef30742006-12-22 14:11:32 +0000265 }
266}
267
bellard7fe48482004-10-09 18:08:01 +0000268static int monitor_fprintf(FILE *stream, const char *fmt, ...)
269{
270 va_list ap;
271 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000272 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000273 va_end(ap);
274 return 0;
275}
276
Luiz Capitulino13c74252009-10-07 13:41:55 -0300277static void monitor_user_noop(Monitor *mon, const QObject *data) { }
278
Luiz Capitulino13917be2009-10-07 13:41:54 -0300279static inline int monitor_handler_ported(const mon_cmd_t *cmd)
280{
281 return cmd->user_print != NULL;
282}
283
Adam Litke940cc302010-01-25 12:18:44 -0600284static inline bool monitor_handler_is_async(const mon_cmd_t *cmd)
285{
286 return cmd->async != 0;
287}
288
Luiz Capitulino8204a912009-11-18 23:05:31 -0200289static inline int monitor_has_error(const Monitor *mon)
290{
291 return mon->error != NULL;
292}
293
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200294static void monitor_json_emitter(Monitor *mon, const QObject *data)
295{
296 QString *json;
297
298 json = qobject_to_json(data);
299 assert(json != NULL);
300
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200301 mon->mc->print_enabled = 1;
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200302 monitor_printf(mon, "%s\n", qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200303 mon->mc->print_enabled = 0;
304
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200305 QDECREF(json);
306}
307
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200308static void monitor_protocol_emitter(Monitor *mon, QObject *data)
309{
310 QDict *qmp;
311
312 qmp = qdict_new();
313
314 if (!monitor_has_error(mon)) {
315 /* success response */
316 if (data) {
317 qobject_incref(data);
318 qdict_put_obj(qmp, "return", data);
319 } else {
Luiz Capitulino0abc6572009-12-18 13:25:00 -0200320 /* return an empty QDict by default */
321 qdict_put(qmp, "return", qdict_new());
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200322 }
323 } else {
324 /* error response */
Markus Armbruster77e595e2009-12-07 21:37:16 +0100325 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200326 qdict_put(qmp, "error", mon->error->error);
327 QINCREF(mon->error->error);
328 QDECREF(mon->error);
329 mon->error = NULL;
330 }
331
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200332 if (mon->mc->id) {
333 qdict_put_obj(qmp, "id", mon->mc->id);
334 mon->mc->id = NULL;
335 }
336
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200337 monitor_json_emitter(mon, QOBJECT(qmp));
338 QDECREF(qmp);
339}
340
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200341static void timestamp_put(QDict *qdict)
342{
343 int err;
344 QObject *obj;
Blue Swirld08d6f02009-12-04 18:06:39 +0000345 qemu_timeval tv;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200346
Blue Swirld08d6f02009-12-04 18:06:39 +0000347 err = qemu_gettimeofday(&tv);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200348 if (err < 0)
349 return;
350
351 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
352 "'microseconds': %" PRId64 " }",
353 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
354 assert(obj != NULL);
355
356 qdict_put_obj(qdict, "timestamp", obj);
357}
358
359/**
360 * monitor_protocol_event(): Generate a Monitor event
361 *
362 * Event-specific data can be emitted through the (optional) 'data' parameter.
363 */
364void monitor_protocol_event(MonitorEvent event, QObject *data)
365{
366 QDict *qmp;
367 const char *event_name;
Adam Litkef039a562010-01-15 08:34:02 -0600368 Monitor *mon;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200369
Blue Swirl242cd002009-12-04 18:05:45 +0000370 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200371
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200372 switch (event) {
Blue Swirl242cd002009-12-04 18:05:45 +0000373 case QEVENT_DEBUG:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200374 event_name = "DEBUG";
375 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000376 case QEVENT_SHUTDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200377 event_name = "SHUTDOWN";
378 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000379 case QEVENT_RESET:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200380 event_name = "RESET";
381 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000382 case QEVENT_POWERDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200383 event_name = "POWERDOWN";
384 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000385 case QEVENT_STOP:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200386 event_name = "STOP";
387 break;
Luiz Capitulino586153d2010-01-14 14:50:57 -0200388 case QEVENT_VNC_CONNECTED:
389 event_name = "VNC_CONNECTED";
390 break;
Luiz Capitulino0d2ed462010-01-14 14:50:59 -0200391 case QEVENT_VNC_INITIALIZED:
392 event_name = "VNC_INITIALIZED";
393 break;
Luiz Capitulino0d72f3d2010-01-14 14:50:58 -0200394 case QEVENT_VNC_DISCONNECTED:
395 event_name = "VNC_DISCONNECTED";
396 break;
Luiz Capitulinoaa1db6e2010-02-03 12:41:00 -0200397 case QEVENT_BLOCK_IO_ERROR:
398 event_name = "BLOCK_IO_ERROR";
399 break;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200400 default:
401 abort();
402 break;
403 }
404
405 qmp = qdict_new();
406 timestamp_put(qmp);
407 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200408 if (data) {
409 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200410 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200411 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200412
Adam Litkef039a562010-01-15 08:34:02 -0600413 QLIST_FOREACH(mon, &mon_list, entry) {
Luiz Capitulino09069b12010-02-04 18:10:06 -0200414 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
Luiz Capitulino23fabed2010-01-20 10:37:59 -0200415 monitor_json_emitter(mon, QOBJECT(qmp));
416 }
Adam Litkef039a562010-01-15 08:34:02 -0600417 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200418 QDECREF(qmp);
419}
420
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200421static void do_qmp_capabilities(Monitor *mon, const QDict *params,
422 QObject **ret_data)
423{
424 /* Will setup QMP capabilities in the future */
425 if (monitor_ctrl_mode(mon)) {
426 mon->mc->command_mode = 1;
427 }
428}
429
bellard9dc39cb2004-03-14 21:38:27 +0000430static int compare_cmd(const char *name, const char *list)
431{
432 const char *p, *pstart;
433 int len;
434 len = strlen(name);
435 p = list;
436 for(;;) {
437 pstart = p;
438 p = strchr(p, '|');
439 if (!p)
440 p = pstart + strlen(pstart);
441 if ((p - pstart) == len && !memcmp(pstart, name, len))
442 return 1;
443 if (*p == '\0')
444 break;
445 p++;
446 }
447 return 0;
448}
449
Anthony Liguoric227f092009-10-01 16:12:16 -0500450static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000451 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000452{
Anthony Liguoric227f092009-10-01 16:12:16 -0500453 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000454
455 for(cmd = cmds; cmd->name != NULL; cmd++) {
456 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000457 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
458 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000459 }
460}
461
aliguori376253e2009-03-05 23:01:23 +0000462static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000463{
464 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000465 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000466 } else {
aliguori376253e2009-03-05 23:01:23 +0000467 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000468 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000469 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000470 monitor_printf(mon, "Log items (comma separated):\n");
471 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000472 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000473 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000474 }
475 }
bellard9dc39cb2004-03-14 21:38:27 +0000476 }
477}
478
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300479static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300480{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300481 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300482}
483
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300484static void do_commit(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000485{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200486 int all_devices;
487 DriveInfo *dinfo;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300488 const char *device = qdict_get_str(qdict, "device");
balrog2dc7b602007-05-24 18:53:22 +0000489
bellard7954c732006-08-01 15:52:40 +0000490 all_devices = !strcmp(device, "all");
Blue Swirl72cf2d42009-09-12 07:36:22 +0000491 QTAILQ_FOREACH(dinfo, &drives, next) {
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200492 if (!all_devices)
Luiz Capitulino73006d22009-07-31 15:15:41 -0300493 if (strcmp(bdrv_get_device_name(dinfo->bdrv), device))
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200494 continue;
495 bdrv_commit(dinfo->bdrv);
bellard9dc39cb2004-03-14 21:38:27 +0000496 }
497}
498
Adam Litke940cc302010-01-25 12:18:44 -0600499static void user_monitor_complete(void *opaque, QObject *ret_data)
500{
501 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
502
503 if (ret_data) {
504 data->user_print(data->mon, ret_data);
505 }
506 monitor_resume(data->mon);
507 qemu_free(data);
508}
509
510static void qmp_monitor_complete(void *opaque, QObject *ret_data)
511{
512 monitor_protocol_emitter(opaque, ret_data);
513}
514
515static void qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
516 const QDict *params)
517{
518 cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
519}
520
521static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
522{
523 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
524}
525
526static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
527 const QDict *params)
528{
529 int ret;
530
531 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
532 cb_data->mon = mon;
533 cb_data->user_print = cmd->user_print;
534 monitor_suspend(mon);
535 ret = cmd->mhandler.cmd_async(mon, params,
536 user_monitor_complete, cb_data);
537 if (ret < 0) {
538 monitor_resume(mon);
539 qemu_free(cb_data);
540 }
541}
542
543static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
544{
545 int ret;
546
547 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
548 cb_data->mon = mon;
549 cb_data->user_print = cmd->user_print;
550 monitor_suspend(mon);
551 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
552 if (ret < 0) {
553 monitor_resume(mon);
554 qemu_free(cb_data);
555 }
556}
557
Luiz Capitulino13c74252009-10-07 13:41:55 -0300558static void do_info(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000559{
Anthony Liguoric227f092009-10-01 16:12:16 -0500560 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300561 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000562
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200563 if (!item) {
564 assert(monitor_ctrl_mode(mon) == 0);
bellard9dc39cb2004-03-14 21:38:27 +0000565 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200566 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300567
568 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000569 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300570 break;
bellard9dc39cb2004-03-14 21:38:27 +0000571 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300572
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200573 if (cmd->name == NULL) {
574 if (monitor_ctrl_mode(mon)) {
575 qemu_error_new(QERR_COMMAND_NOT_FOUND, item);
576 return;
577 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300578 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200579 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300580
Adam Litke940cc302010-01-25 12:18:44 -0600581 if (monitor_handler_is_async(cmd)) {
582 if (monitor_ctrl_mode(mon)) {
583 qmp_async_info_handler(mon, cmd);
584 } else {
585 user_async_info_handler(mon, cmd);
586 }
587 /*
588 * Indicate that this command is asynchronous and will not return any
589 * data (not even empty). Instead, the data will be returned via a
590 * completion callback.
591 */
592 *ret_data = qobject_from_jsonf("{ '__mon_async': 'return' }");
593 } else if (monitor_handler_ported(cmd)) {
Luiz Capitulino13c74252009-10-07 13:41:55 -0300594 cmd->mhandler.info_new(mon, ret_data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200595
596 if (!monitor_ctrl_mode(mon)) {
597 /*
598 * User Protocol function is called here, Monitor Protocol is
599 * handled by monitor_call_handler()
600 */
601 if (*ret_data)
602 cmd->user_print(mon, *ret_data);
603 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300604 } else {
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200605 if (monitor_ctrl_mode(mon)) {
606 /* handler not converted yet */
607 qemu_error_new(QERR_COMMAND_NOT_FOUND, item);
608 } else {
609 cmd->mhandler.info(mon);
610 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300611 }
612
bellard9dc39cb2004-03-14 21:38:27 +0000613 return;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300614
615help:
616 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000617}
618
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200619static void do_info_version_print(Monitor *mon, const QObject *data)
620{
621 QDict *qdict;
622
623 qdict = qobject_to_qdict(data);
624
625 monitor_printf(mon, "%s%s\n", qdict_get_str(qdict, "qemu"),
626 qdict_get_str(qdict, "package"));
627}
628
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300629/**
630 * do_info_version(): Show QEMU version
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200631 *
632 * Return a QDict with the following information:
633 *
634 * - "qemu": QEMU's version
635 * - "package": package's version
636 *
637 * Example:
638 *
639 * { "qemu": "0.11.50", "package": "" }
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300640 */
641static void do_info_version(Monitor *mon, QObject **ret_data)
bellard9bc9d1c2004-10-10 15:15:51 +0000642{
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200643 *ret_data = qobject_from_jsonf("{ 'qemu': %s, 'package': %s }",
644 QEMU_VERSION, QEMU_PKGVERSION);
bellard9bc9d1c2004-10-10 15:15:51 +0000645}
646
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200647static void do_info_name_print(Monitor *mon, const QObject *data)
thsc35734b2007-03-19 15:17:08 +0000648{
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200649 QDict *qdict;
650
651 qdict = qobject_to_qdict(data);
652 if (qdict_size(qdict) == 0) {
653 return;
654 }
655
656 monitor_printf(mon, "%s\n", qdict_get_str(qdict, "name"));
657}
658
659/**
660 * do_info_name(): Show VM name
661 *
662 * Return a QDict with the following information:
663 *
664 * - "name": VM's name (optional)
665 *
666 * Example:
667 *
668 * { "name": "qemu-name" }
669 */
670static void do_info_name(Monitor *mon, QObject **ret_data)
671{
672 *ret_data = qemu_name ? qobject_from_jsonf("{'name': %s }", qemu_name) :
673 qobject_from_jsonf("{}");
thsc35734b2007-03-19 15:17:08 +0000674}
675
Luiz Capitulino1a728672009-12-10 17:15:56 -0200676static QObject *get_cmd_dict(const char *name)
677{
678 const char *p;
679
680 /* Remove '|' from some commands */
681 p = strchr(name, '|');
682 if (p) {
683 p++;
684 } else {
685 p = name;
686 }
687
688 return qobject_from_jsonf("{ 'name': %s }", p);
689}
690
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200691/**
692 * do_info_commands(): List QMP available commands
693 *
Luiz Capitulino1a728672009-12-10 17:15:56 -0200694 * Each command is represented by a QDict, the returned QObject is a QList
695 * of all commands.
696 *
697 * The QDict contains:
698 *
699 * - "name": command's name
700 *
701 * Example:
702 *
703 * { [ { "name": "query-balloon" }, { "name": "system_powerdown" } ] }
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200704 */
705static void do_info_commands(Monitor *mon, QObject **ret_data)
706{
707 QList *cmd_list;
708 const mon_cmd_t *cmd;
709
710 cmd_list = qlist_new();
711
712 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
713 if (monitor_handler_ported(cmd) && !compare_cmd(cmd->name, "info")) {
Luiz Capitulino1a728672009-12-10 17:15:56 -0200714 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200715 }
716 }
717
718 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
719 if (monitor_handler_ported(cmd)) {
720 char buf[128];
721 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
Luiz Capitulino1a728672009-12-10 17:15:56 -0200722 qlist_append_obj(cmd_list, get_cmd_dict(buf));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200723 }
724 }
725
726 *ret_data = QOBJECT(cmd_list);
727}
728
aurel32bf4f74c2008-12-18 22:42:34 +0000729#if defined(TARGET_I386)
Luiz Capitulino14f07202009-12-10 17:16:02 -0200730static void do_info_hpet_print(Monitor *mon, const QObject *data)
aliguori16b29ae2008-12-17 23:28:44 +0000731{
aliguori376253e2009-03-05 23:01:23 +0000732 monitor_printf(mon, "HPET is %s by QEMU\n",
Luiz Capitulino14f07202009-12-10 17:16:02 -0200733 qdict_get_bool(qobject_to_qdict(data), "enabled") ?
734 "enabled" : "disabled");
735}
736
737/**
738 * do_info_hpet(): Show HPET state
739 *
740 * Return a QDict with the following information:
741 *
742 * - "enabled": true if hpet if enabled, false otherwise
743 *
744 * Example:
745 *
746 * { "enabled": true }
747 */
748static void do_info_hpet(Monitor *mon, QObject **ret_data)
749{
750 *ret_data = qobject_from_jsonf("{ 'enabled': %i }", !no_hpet);
aliguori16b29ae2008-12-17 23:28:44 +0000751}
aurel32bf4f74c2008-12-18 22:42:34 +0000752#endif
aliguori16b29ae2008-12-17 23:28:44 +0000753
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200754static void do_info_uuid_print(Monitor *mon, const QObject *data)
blueswir1f1f23ad2008-09-18 18:30:20 +0000755{
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200756 monitor_printf(mon, "%s\n", qdict_get_str(qobject_to_qdict(data), "UUID"));
757}
758
759/**
760 * do_info_uuid(): Show VM UUID
761 *
762 * Return a QDict with the following information:
763 *
764 * - "UUID": Universally Unique Identifier
765 *
766 * Example:
767 *
768 * { "UUID": "550e8400-e29b-41d4-a716-446655440000" }
769 */
770static void do_info_uuid(Monitor *mon, QObject **ret_data)
771{
772 char uuid[64];
773
774 snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1],
aliguori376253e2009-03-05 23:01:23 +0000775 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
776 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
777 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
778 qemu_uuid[14], qemu_uuid[15]);
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200779 *ret_data = qobject_from_jsonf("{ 'UUID': %s }", uuid);
thsa36e69d2007-12-02 05:18:19 +0000780}
781
bellard6a00d602005-11-21 23:25:50 +0000782/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000783static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000784{
785 CPUState *env;
786
787 for(env = first_cpu; env != NULL; env = env->next_cpu) {
788 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000789 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000790 return 0;
791 }
792 }
793 return -1;
794}
795
pbrook9596ebb2007-11-18 01:44:38 +0000796static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000797{
aliguori731b0362009-03-05 23:01:42 +0000798 if (!cur_mon->mon_cpu) {
bellard6a00d602005-11-21 23:25:50 +0000799 mon_set_cpu(0);
800 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300801 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000802 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000803}
804
aliguori376253e2009-03-05 23:01:23 +0000805static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000806{
bellard6a00d602005-11-21 23:25:50 +0000807 CPUState *env;
808 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +0000809#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000810 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000811 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000812#else
aliguori376253e2009-03-05 23:01:23 +0000813 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000814 0);
bellard9307c4c2004-04-04 12:57:25 +0000815#endif
816}
817
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300818static void print_cpu_iter(QObject *obj, void *opaque)
819{
820 QDict *cpu;
821 int active = ' ';
822 Monitor *mon = opaque;
823
824 assert(qobject_type(obj) == QTYPE_QDICT);
825 cpu = qobject_to_qdict(obj);
826
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200827 if (qdict_get_bool(cpu, "current")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300828 active = '*';
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200829 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300830
831 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
832
833#if defined(TARGET_I386)
834 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
835 (target_ulong) qdict_get_int(cpu, "pc"));
836#elif defined(TARGET_PPC)
837 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
838 (target_long) qdict_get_int(cpu, "nip"));
839#elif defined(TARGET_SPARC)
840 monitor_printf(mon, "pc=0x " TARGET_FMT_lx,
841 (target_long) qdict_get_int(cpu, "pc"));
842 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
843 (target_long) qdict_get_int(cpu, "npc"));
844#elif defined(TARGET_MIPS)
845 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
846 (target_long) qdict_get_int(cpu, "PC"));
847#endif
848
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200849 if (qdict_get_bool(cpu, "halted")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300850 monitor_printf(mon, " (halted)");
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200851 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300852
853 monitor_printf(mon, "\n");
854}
855
856static void monitor_print_cpus(Monitor *mon, const QObject *data)
857{
858 QList *cpu_list;
859
860 assert(qobject_type(data) == QTYPE_QLIST);
861 cpu_list = qobject_to_qlist(data);
862 qlist_iter(cpu_list, print_cpu_iter, mon);
863}
864
865/**
866 * do_info_cpus(): Show CPU information
867 *
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200868 * Return a QList. Each CPU is represented by a QDict, which contains:
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300869 *
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200870 * - "cpu": CPU index
871 * - "current": true if this is the current CPU, false otherwise
872 * - "halted": true if the cpu is halted, false otherwise
873 * - Current program counter. The key's name depends on the architecture:
874 * "pc": i386/x86)64
875 * "nip": PPC
876 * "pc" and "npc": sparc
877 * "PC": mips
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300878 *
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200879 * Example:
880 *
881 * [ { "CPU": 0, "current": true, "halted": false, "pc": 3227107138 },
882 * { "CPU": 1, "current": false, "halted": true, "pc": 7108165 } ]
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300883 */
884static void do_info_cpus(Monitor *mon, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000885{
886 CPUState *env;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300887 QList *cpu_list;
888
889 cpu_list = qlist_new();
bellard6a00d602005-11-21 23:25:50 +0000890
891 /* just to set the default cpu if not already done */
892 mon_get_cpu();
893
894 for(env = first_cpu; env != NULL; env = env->next_cpu) {
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200895 QDict *cpu;
896 QObject *obj;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300897
Avi Kivity4c0960c2009-08-17 23:19:53 +0300898 cpu_synchronize_state(env);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300899
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200900 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
901 env->cpu_index, env == mon->mon_cpu,
902 env->halted);
903 assert(obj != NULL);
904
905 cpu = qobject_to_qdict(obj);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300906
bellard6a00d602005-11-21 23:25:50 +0000907#if defined(TARGET_I386)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300908 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
bellarde80e1cc2005-11-23 22:05:28 +0000909#elif defined(TARGET_PPC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300910 qdict_put(cpu, "nip", qint_from_int(env->nip));
bellardba3c64f2005-12-05 20:31:52 +0000911#elif defined(TARGET_SPARC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300912 qdict_put(cpu, "pc", qint_from_int(env->pc));
913 qdict_put(cpu, "npc", qint_from_int(env->npc));
thsead93602007-09-06 00:18:15 +0000914#elif defined(TARGET_MIPS)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300915 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
bellardce5232c2008-05-28 17:14:10 +0000916#endif
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300917
918 qlist_append(cpu_list, cpu);
bellard6a00d602005-11-21 23:25:50 +0000919 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300920
921 *ret_data = QOBJECT(cpu_list);
bellard6a00d602005-11-21 23:25:50 +0000922}
923
Markus Armbruster81a1b452010-01-20 13:07:35 +0100924static void do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000925{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300926 int index = qdict_get_int(qdict, "index");
bellard6a00d602005-11-21 23:25:50 +0000927 if (mon_set_cpu(index) < 0)
Markus Armbrustercc0c4182010-01-29 10:34:00 +0100928 qemu_error_new(QERR_INVALID_PARAMETER, "index");
bellard6a00d602005-11-21 23:25:50 +0000929}
930
aliguori376253e2009-03-05 23:01:23 +0000931static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000932{
aliguori376253e2009-03-05 23:01:23 +0000933 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000934}
935
aliguori376253e2009-03-05 23:01:23 +0000936static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000937{
938 int i;
bellard7e2515e2004-08-01 21:52:19 +0000939 const char *str;
ths3b46e622007-09-17 08:09:54 +0000940
aliguoricde76ee2009-03-05 23:01:51 +0000941 if (!mon->rs)
942 return;
bellard7e2515e2004-08-01 21:52:19 +0000943 i = 0;
944 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000945 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000946 if (!str)
947 break;
aliguori376253e2009-03-05 23:01:23 +0000948 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000949 i++;
bellardaa455482004-04-04 13:07:25 +0000950 }
951}
952
j_mayer76a66252007-03-07 08:32:30 +0000953#if defined(TARGET_PPC)
954/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000955static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000956{
957 CPUState *env;
958
959 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000960 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000961}
962#endif
963
Luiz Capitulinob223f352009-10-07 13:41:56 -0300964/**
965 * do_quit(): Quit QEMU execution
966 */
967static void do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000968{
969 exit(0);
970}
971
aliguori376253e2009-03-05 23:01:23 +0000972static int eject_device(Monitor *mon, BlockDriverState *bs, int force)
bellard9dc39cb2004-03-14 21:38:27 +0000973{
974 if (bdrv_is_inserted(bs)) {
975 if (!force) {
976 if (!bdrv_is_removable(bs)) {
Markus Armbruster2c2a6bb2009-12-07 21:37:05 +0100977 qemu_error_new(QERR_DEVICE_NOT_REMOVABLE,
978 bdrv_get_device_name(bs));
bellard9dc39cb2004-03-14 21:38:27 +0000979 return -1;
980 }
981 if (bdrv_is_locked(bs)) {
Markus Armbruster2c2a6bb2009-12-07 21:37:05 +0100982 qemu_error_new(QERR_DEVICE_LOCKED, bdrv_get_device_name(bs));
bellard9dc39cb2004-03-14 21:38:27 +0000983 return -1;
984 }
985 }
986 bdrv_close(bs);
987 }
988 return 0;
989}
990
Luiz Capitulinoe1c923a2009-10-16 12:23:49 -0300991static void do_eject(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000992{
993 BlockDriverState *bs;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -0300994 int force = qdict_get_int(qdict, "force");
Luiz Capitulino78d714e2009-12-14 18:53:21 -0200995 const char *filename = qdict_get_str(qdict, "device");
bellard9dc39cb2004-03-14 21:38:27 +0000996
bellard9307c4c2004-04-04 12:57:25 +0000997 bs = bdrv_find(filename);
bellard9dc39cb2004-03-14 21:38:27 +0000998 if (!bs) {
Markus Armbruster2c2a6bb2009-12-07 21:37:05 +0100999 qemu_error_new(QERR_DEVICE_NOT_FOUND, filename);
bellard9dc39cb2004-03-14 21:38:27 +00001000 return;
1001 }
aliguori376253e2009-03-05 23:01:23 +00001002 eject_device(mon, bs, force);
bellard9dc39cb2004-03-14 21:38:27 +00001003}
1004
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001005static void do_block_set_passwd(Monitor *mon, const QDict *qdict,
1006 QObject **ret_data)
1007{
1008 BlockDriverState *bs;
1009
1010 bs = bdrv_find(qdict_get_str(qdict, "device"));
1011 if (!bs) {
1012 qemu_error_new(QERR_DEVICE_NOT_FOUND, qdict_get_str(qdict, "device"));
1013 return;
1014 }
1015
1016 if (bdrv_set_key(bs, qdict_get_str(qdict, "password")) < 0) {
1017 qemu_error_new(QERR_INVALID_PASSWORD);
1018 }
1019}
1020
aliguori376253e2009-03-05 23:01:23 +00001021static void do_change_block(Monitor *mon, const char *device,
1022 const char *filename, const char *fmt)
bellard9dc39cb2004-03-14 21:38:27 +00001023{
1024 BlockDriverState *bs;
aurel322ecea9b2008-06-18 22:10:01 +00001025 BlockDriver *drv = NULL;
bellard9dc39cb2004-03-14 21:38:27 +00001026
bellard9307c4c2004-04-04 12:57:25 +00001027 bs = bdrv_find(device);
bellard9dc39cb2004-03-14 21:38:27 +00001028 if (!bs) {
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001029 qemu_error_new(QERR_DEVICE_NOT_FOUND, device);
bellard9dc39cb2004-03-14 21:38:27 +00001030 return;
1031 }
aurel322ecea9b2008-06-18 22:10:01 +00001032 if (fmt) {
Markus Armbrustereb852012009-10-27 18:41:44 +01001033 drv = bdrv_find_whitelisted_format(fmt);
aurel322ecea9b2008-06-18 22:10:01 +00001034 if (!drv) {
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001035 qemu_error_new(QERR_INVALID_BLOCK_FORMAT, fmt);
aurel322ecea9b2008-06-18 22:10:01 +00001036 return;
1037 }
1038 }
aliguori376253e2009-03-05 23:01:23 +00001039 if (eject_device(mon, bs, 0) < 0)
bellard9dc39cb2004-03-14 21:38:27 +00001040 return;
Naphtali Spreif5edb012010-01-17 16:48:13 +02001041 bdrv_open2(bs, filename, BDRV_O_RDWR, drv);
aliguori376253e2009-03-05 23:01:23 +00001042 monitor_read_bdrv_key_start(mon, bs, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001043}
1044
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001045static void change_vnc_password(const char *password)
aliguoribb5fc202009-03-05 23:01:15 +00001046{
1047 if (vnc_display_password(NULL, password) < 0)
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001048 qemu_error_new(QERR_SET_PASSWD_FAILED);
aliguoribb5fc202009-03-05 23:01:15 +00001049
Markus Armbruster2895e072009-12-07 21:37:01 +01001050}
1051
1052static void change_vnc_password_cb(Monitor *mon, const char *password,
1053 void *opaque)
1054{
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001055 change_vnc_password(password);
aliguori731b0362009-03-05 23:01:42 +00001056 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00001057}
1058
aliguori376253e2009-03-05 23:01:23 +00001059static void do_change_vnc(Monitor *mon, const char *target, const char *arg)
thse25a5822007-08-25 01:36:20 +00001060{
ths70848512007-08-25 01:37:05 +00001061 if (strcmp(target, "passwd") == 0 ||
aliguori28a76be2009-03-06 20:27:40 +00001062 strcmp(target, "password") == 0) {
1063 if (arg) {
aliguoribb5fc202009-03-05 23:01:15 +00001064 char password[9];
aliguori28a76be2009-03-06 20:27:40 +00001065 strncpy(password, arg, sizeof(password));
1066 password[sizeof(password) - 1] = '\0';
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001067 change_vnc_password(password);
aliguoribb5fc202009-03-05 23:01:15 +00001068 } else {
aliguori376253e2009-03-05 23:01:23 +00001069 monitor_read_password(mon, change_vnc_password_cb, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001070 }
ths70848512007-08-25 01:37:05 +00001071 } else {
aliguori28a76be2009-03-06 20:27:40 +00001072 if (vnc_display_open(NULL, target) < 0)
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001073 qemu_error_new(QERR_VNC_SERVER_FAILED, target);
ths70848512007-08-25 01:37:05 +00001074 }
thse25a5822007-08-25 01:36:20 +00001075}
1076
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001077/**
1078 * do_change(): Change a removable medium, or VNC configuration
1079 */
1080static void do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
thse25a5822007-08-25 01:36:20 +00001081{
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001082 const char *device = qdict_get_str(qdict, "device");
1083 const char *target = qdict_get_str(qdict, "target");
1084 const char *arg = qdict_get_try_str(qdict, "arg");
thse25a5822007-08-25 01:36:20 +00001085 if (strcmp(device, "vnc") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00001086 do_change_vnc(mon, target, arg);
thse25a5822007-08-25 01:36:20 +00001087 } else {
aliguori28a76be2009-03-06 20:27:40 +00001088 do_change_block(mon, device, target, arg);
thse25a5822007-08-25 01:36:20 +00001089 }
1090}
1091
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001092static void do_screen_dump(Monitor *mon, const QDict *qdict)
bellard59a983b2004-03-17 23:17:16 +00001093{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001094 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
bellard59a983b2004-03-17 23:17:16 +00001095}
1096
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001097static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +00001098{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001099 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +00001100}
1101
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001102static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +00001103{
1104 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001105 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +00001106
bellard9307c4c2004-04-04 12:57:25 +00001107 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +00001108 mask = 0;
1109 } else {
bellard9307c4c2004-04-04 12:57:25 +00001110 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +00001111 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001112 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001113 return;
1114 }
1115 }
1116 cpu_set_log(mask);
1117}
1118
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001119static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001120{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001121 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001122 if (!option || !strcmp(option, "on")) {
1123 singlestep = 1;
1124 } else if (!strcmp(option, "off")) {
1125 singlestep = 0;
1126 } else {
1127 monitor_printf(mon, "unexpected option %s\n", option);
1128 }
1129}
1130
Luiz Capitulinoe0c97bd2009-10-07 13:41:57 -03001131/**
1132 * do_stop(): Stop VM execution
1133 */
1134static void do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard8a7ddc32004-03-31 19:00:16 +00001135{
1136 vm_stop(EXCP_INTERRUPT);
1137}
1138
aliguoribb5fc202009-03-05 23:01:15 +00001139static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
aliguoric0f4ce72009-03-05 23:01:01 +00001140
aliguori376253e2009-03-05 23:01:23 +00001141struct bdrv_iterate_context {
1142 Monitor *mon;
1143 int err;
1144};
aliguoric0f4ce72009-03-05 23:01:01 +00001145
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001146/**
1147 * do_cont(): Resume emulation.
1148 */
1149static void do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
aliguori376253e2009-03-05 23:01:23 +00001150{
1151 struct bdrv_iterate_context context = { mon, 0 };
1152
1153 bdrv_iterate(encrypted_bdrv_it, &context);
aliguoric0f4ce72009-03-05 23:01:01 +00001154 /* only resume the vm if all keys are set and valid */
aliguori376253e2009-03-05 23:01:23 +00001155 if (!context.err)
aliguoric0f4ce72009-03-05 23:01:01 +00001156 vm_start();
bellard8a7ddc32004-03-31 19:00:16 +00001157}
1158
aliguoribb5fc202009-03-05 23:01:15 +00001159static void bdrv_key_cb(void *opaque, int err)
1160{
aliguori376253e2009-03-05 23:01:23 +00001161 Monitor *mon = opaque;
1162
aliguoribb5fc202009-03-05 23:01:15 +00001163 /* another key was set successfully, retry to continue */
1164 if (!err)
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001165 do_cont(mon, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001166}
1167
1168static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1169{
aliguori376253e2009-03-05 23:01:23 +00001170 struct bdrv_iterate_context *context = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00001171
aliguori376253e2009-03-05 23:01:23 +00001172 if (!context->err && bdrv_key_required(bs)) {
1173 context->err = -EBUSY;
1174 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1175 context->mon);
aliguoribb5fc202009-03-05 23:01:15 +00001176 }
1177}
1178
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001179static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001180{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001181 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001182 if (!device)
1183 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1184 if (gdbserver_start(device) < 0) {
1185 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1186 device);
1187 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001188 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001189 } else {
aliguori59030a82009-04-05 18:43:41 +00001190 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1191 device);
bellard8a7ddc32004-03-31 19:00:16 +00001192 }
1193}
1194
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001195static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001196{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001197 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001198 if (select_watchdog_action(action) == -1) {
1199 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1200 }
1201}
1202
aliguori376253e2009-03-05 23:01:23 +00001203static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001204{
aliguori376253e2009-03-05 23:01:23 +00001205 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001206 switch(c) {
1207 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001208 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001209 break;
1210 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001211 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001212 break;
1213 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001214 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001215 break;
1216 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001217 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001218 break;
1219 default:
1220 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001221 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001222 } else {
aliguori376253e2009-03-05 23:01:23 +00001223 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001224 }
1225 break;
1226 }
aliguori376253e2009-03-05 23:01:23 +00001227 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001228}
1229
aliguori376253e2009-03-05 23:01:23 +00001230static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -05001231 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001232{
bellard6a00d602005-11-21 23:25:50 +00001233 CPUState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +00001234 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001235 uint8_t buf[16];
1236 uint64_t v;
1237
1238 if (format == 'i') {
1239 int flags;
1240 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001241 env = mon_get_cpu();
Markus Armbruster09b94182010-01-20 13:07:30 +01001242 if (!is_physical)
bellard6a00d602005-11-21 23:25:50 +00001243 return;
bellard9307c4c2004-04-04 12:57:25 +00001244#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001245 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001246 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001247 } else if (wsize == 4) {
1248 flags = 0;
1249 } else {
bellard6a15fd12006-04-12 21:07:07 +00001250 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001251 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001252 if (env) {
1253#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001254 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001255 (env->segs[R_CS].flags & DESC_L_MASK))
1256 flags = 2;
1257 else
1258#endif
1259 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1260 flags = 1;
1261 }
bellard4c27ba22004-04-25 18:05:08 +00001262 }
1263#endif
aliguori376253e2009-03-05 23:01:23 +00001264 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001265 return;
1266 }
1267
1268 len = wsize * count;
1269 if (wsize == 1)
1270 line_size = 8;
1271 else
1272 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001273 max_digits = 0;
1274
1275 switch(format) {
1276 case 'o':
1277 max_digits = (wsize * 8 + 2) / 3;
1278 break;
1279 default:
1280 case 'x':
1281 max_digits = (wsize * 8) / 4;
1282 break;
1283 case 'u':
1284 case 'd':
1285 max_digits = (wsize * 8 * 10 + 32) / 33;
1286 break;
1287 case 'c':
1288 wsize = 1;
1289 break;
1290 }
1291
1292 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001293 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001294 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001295 else
aliguori376253e2009-03-05 23:01:23 +00001296 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001297 l = len;
1298 if (l > line_size)
1299 l = line_size;
1300 if (is_physical) {
1301 cpu_physical_memory_rw(addr, buf, l, 0);
1302 } else {
bellard6a00d602005-11-21 23:25:50 +00001303 env = mon_get_cpu();
aliguoric8f79b62008-08-18 14:00:20 +00001304 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001305 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001306 break;
1307 }
bellard9307c4c2004-04-04 12:57:25 +00001308 }
ths5fafdf22007-09-16 21:08:06 +00001309 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001310 while (i < l) {
1311 switch(wsize) {
1312 default:
1313 case 1:
1314 v = ldub_raw(buf + i);
1315 break;
1316 case 2:
1317 v = lduw_raw(buf + i);
1318 break;
1319 case 4:
bellard92a31b12005-02-10 22:00:52 +00001320 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001321 break;
1322 case 8:
1323 v = ldq_raw(buf + i);
1324 break;
1325 }
aliguori376253e2009-03-05 23:01:23 +00001326 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001327 switch(format) {
1328 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001329 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001330 break;
1331 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001332 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001333 break;
1334 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001335 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001336 break;
1337 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001338 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001339 break;
1340 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001341 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001342 break;
1343 }
1344 i += wsize;
1345 }
aliguori376253e2009-03-05 23:01:23 +00001346 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001347 addr += l;
1348 len -= l;
1349 }
1350}
1351
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001352static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001353{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001354 int count = qdict_get_int(qdict, "count");
1355 int format = qdict_get_int(qdict, "format");
1356 int size = qdict_get_int(qdict, "size");
1357 target_long addr = qdict_get_int(qdict, "addr");
1358
aliguori376253e2009-03-05 23:01:23 +00001359 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001360}
1361
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001362static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001363{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001364 int count = qdict_get_int(qdict, "count");
1365 int format = qdict_get_int(qdict, "format");
1366 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001367 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001368
aliguori376253e2009-03-05 23:01:23 +00001369 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001370}
1371
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001372static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001373{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001374 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001375 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001376
blueswir17743e582007-09-24 18:39:04 +00001377#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +00001378 switch(format) {
1379 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001380 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +00001381 break;
1382 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001383 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +00001384 break;
1385 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001386 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +00001387 break;
1388 default:
1389 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001390 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +00001391 break;
1392 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001393 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001394 break;
1395 }
bellard92a31b12005-02-10 22:00:52 +00001396#else
1397 switch(format) {
1398 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001399 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +00001400 break;
1401 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001402 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +00001403 break;
1404 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001405 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +00001406 break;
1407 default:
1408 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001409 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +00001410 break;
1411 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001412 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +00001413 break;
1414 }
1415#endif
aliguori376253e2009-03-05 23:01:23 +00001416 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001417}
1418
Luiz Capitulino57e09452009-10-16 12:23:43 -03001419static void do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellardb371dc52007-01-03 15:20:39 +00001420{
1421 FILE *f;
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001422 uint32_t size = qdict_get_int(qdict, "size");
1423 const char *filename = qdict_get_str(qdict, "filename");
1424 target_long addr = qdict_get_int(qdict, "val");
bellardb371dc52007-01-03 15:20:39 +00001425 uint32_t l;
1426 CPUState *env;
1427 uint8_t buf[1024];
1428
1429 env = mon_get_cpu();
bellardb371dc52007-01-03 15:20:39 +00001430
1431 f = fopen(filename, "wb");
1432 if (!f) {
Markus Armbrusterc34ed282010-01-20 13:07:32 +01001433 qemu_error_new(QERR_OPEN_FILE_FAILED, filename);
bellardb371dc52007-01-03 15:20:39 +00001434 return;
1435 }
1436 while (size != 0) {
1437 l = sizeof(buf);
1438 if (l > size)
1439 l = size;
1440 cpu_memory_rw_debug(env, addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001441 if (fwrite(buf, 1, l, f) != l) {
1442 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1443 goto exit;
1444 }
bellardb371dc52007-01-03 15:20:39 +00001445 addr += l;
1446 size -= l;
1447 }
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001448exit:
bellardb371dc52007-01-03 15:20:39 +00001449 fclose(f);
1450}
1451
Luiz Capitulino18f5a8b2009-10-16 12:23:44 -03001452static void do_physical_memory_save(Monitor *mon, const QDict *qdict,
1453 QObject **ret_data)
aurel32a8bdf7a2008-04-11 21:36:14 +00001454{
1455 FILE *f;
1456 uint32_t l;
1457 uint8_t buf[1024];
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001458 uint32_t size = qdict_get_int(qdict, "size");
1459 const char *filename = qdict_get_str(qdict, "filename");
Anthony Liguoric227f092009-10-01 16:12:16 -05001460 target_phys_addr_t addr = qdict_get_int(qdict, "val");
aurel32a8bdf7a2008-04-11 21:36:14 +00001461
1462 f = fopen(filename, "wb");
1463 if (!f) {
Markus Armbruster95fada82010-01-20 13:07:33 +01001464 qemu_error_new(QERR_OPEN_FILE_FAILED, filename);
aurel32a8bdf7a2008-04-11 21:36:14 +00001465 return;
1466 }
1467 while (size != 0) {
1468 l = sizeof(buf);
1469 if (l > size)
1470 l = size;
1471 cpu_physical_memory_rw(addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001472 if (fwrite(buf, 1, l, f) != l) {
1473 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1474 goto exit;
1475 }
aurel32a8bdf7a2008-04-11 21:36:14 +00001476 fflush(f);
1477 addr += l;
1478 size -= l;
1479 }
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001480exit:
aurel32a8bdf7a2008-04-11 21:36:14 +00001481 fclose(f);
1482}
1483
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001484static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001485{
1486 uint32_t addr;
1487 uint8_t buf[1];
1488 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001489 uint32_t start = qdict_get_int(qdict, "start");
1490 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001491
1492 sum = 0;
1493 for(addr = start; addr < (start + size); addr++) {
1494 cpu_physical_memory_rw(addr, buf, 1, 0);
1495 /* BSD sum algorithm ('sum' Unix command) */
1496 sum = (sum >> 1) | (sum << 15);
1497 sum += buf[0];
1498 }
aliguori376253e2009-03-05 23:01:23 +00001499 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001500}
1501
bellarda3a91a32004-06-04 11:06:21 +00001502typedef struct {
1503 int keycode;
1504 const char *name;
1505} KeyDef;
1506
1507static const KeyDef key_defs[] = {
1508 { 0x2a, "shift" },
1509 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +00001510
bellarda3a91a32004-06-04 11:06:21 +00001511 { 0x38, "alt" },
1512 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +00001513 { 0x64, "altgr" },
1514 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +00001515 { 0x1d, "ctrl" },
1516 { 0x9d, "ctrl_r" },
1517
1518 { 0xdd, "menu" },
1519
1520 { 0x01, "esc" },
1521
1522 { 0x02, "1" },
1523 { 0x03, "2" },
1524 { 0x04, "3" },
1525 { 0x05, "4" },
1526 { 0x06, "5" },
1527 { 0x07, "6" },
1528 { 0x08, "7" },
1529 { 0x09, "8" },
1530 { 0x0a, "9" },
1531 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +00001532 { 0x0c, "minus" },
1533 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +00001534 { 0x0e, "backspace" },
1535
1536 { 0x0f, "tab" },
1537 { 0x10, "q" },
1538 { 0x11, "w" },
1539 { 0x12, "e" },
1540 { 0x13, "r" },
1541 { 0x14, "t" },
1542 { 0x15, "y" },
1543 { 0x16, "u" },
1544 { 0x17, "i" },
1545 { 0x18, "o" },
1546 { 0x19, "p" },
1547
1548 { 0x1c, "ret" },
1549
1550 { 0x1e, "a" },
1551 { 0x1f, "s" },
1552 { 0x20, "d" },
1553 { 0x21, "f" },
1554 { 0x22, "g" },
1555 { 0x23, "h" },
1556 { 0x24, "j" },
1557 { 0x25, "k" },
1558 { 0x26, "l" },
1559
1560 { 0x2c, "z" },
1561 { 0x2d, "x" },
1562 { 0x2e, "c" },
1563 { 0x2f, "v" },
1564 { 0x30, "b" },
1565 { 0x31, "n" },
1566 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +00001567 { 0x33, "comma" },
1568 { 0x34, "dot" },
1569 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +00001570
balrog4d3b6f62008-02-10 16:33:14 +00001571 { 0x37, "asterisk" },
1572
bellarda3a91a32004-06-04 11:06:21 +00001573 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +00001574 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001575 { 0x3b, "f1" },
1576 { 0x3c, "f2" },
1577 { 0x3d, "f3" },
1578 { 0x3e, "f4" },
1579 { 0x3f, "f5" },
1580 { 0x40, "f6" },
1581 { 0x41, "f7" },
1582 { 0x42, "f8" },
1583 { 0x43, "f9" },
1584 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +00001585 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001586 { 0x46, "scroll_lock" },
1587
bellard64866c32006-05-07 18:03:31 +00001588 { 0xb5, "kp_divide" },
1589 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +00001590 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +00001591 { 0x4e, "kp_add" },
1592 { 0x9c, "kp_enter" },
1593 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +00001594 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +00001595
1596 { 0x52, "kp_0" },
1597 { 0x4f, "kp_1" },
1598 { 0x50, "kp_2" },
1599 { 0x51, "kp_3" },
1600 { 0x4b, "kp_4" },
1601 { 0x4c, "kp_5" },
1602 { 0x4d, "kp_6" },
1603 { 0x47, "kp_7" },
1604 { 0x48, "kp_8" },
1605 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +00001606
bellarda3a91a32004-06-04 11:06:21 +00001607 { 0x56, "<" },
1608
1609 { 0x57, "f11" },
1610 { 0x58, "f12" },
1611
1612 { 0xb7, "print" },
1613
1614 { 0xc7, "home" },
1615 { 0xc9, "pgup" },
1616 { 0xd1, "pgdn" },
1617 { 0xcf, "end" },
1618
1619 { 0xcb, "left" },
1620 { 0xc8, "up" },
1621 { 0xd0, "down" },
1622 { 0xcd, "right" },
1623
1624 { 0xd2, "insert" },
1625 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001626#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1627 { 0xf0, "stop" },
1628 { 0xf1, "again" },
1629 { 0xf2, "props" },
1630 { 0xf3, "undo" },
1631 { 0xf4, "front" },
1632 { 0xf5, "copy" },
1633 { 0xf6, "open" },
1634 { 0xf7, "paste" },
1635 { 0xf8, "find" },
1636 { 0xf9, "cut" },
1637 { 0xfa, "lf" },
1638 { 0xfb, "help" },
1639 { 0xfc, "meta_l" },
1640 { 0xfd, "meta_r" },
1641 { 0xfe, "compose" },
1642#endif
bellarda3a91a32004-06-04 11:06:21 +00001643 { 0, NULL },
1644};
1645
1646static int get_keycode(const char *key)
1647{
1648 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001649 char *endp;
1650 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001651
1652 for(p = key_defs; p->name != NULL; p++) {
1653 if (!strcmp(key, p->name))
1654 return p->keycode;
1655 }
bellard64866c32006-05-07 18:03:31 +00001656 if (strstart(key, "0x", NULL)) {
1657 ret = strtoul(key, &endp, 0);
1658 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1659 return ret;
1660 }
bellarda3a91a32004-06-04 11:06:21 +00001661 return -1;
1662}
1663
balrogc8256f92008-06-08 22:45:01 +00001664#define MAX_KEYCODES 16
1665static uint8_t keycodes[MAX_KEYCODES];
1666static int nb_pending_keycodes;
1667static QEMUTimer *key_timer;
1668
1669static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001670{
balrogc8256f92008-06-08 22:45:01 +00001671 int keycode;
1672
1673 while (nb_pending_keycodes > 0) {
1674 nb_pending_keycodes--;
1675 keycode = keycodes[nb_pending_keycodes];
1676 if (keycode & 0x80)
1677 kbd_put_keycode(0xe0);
1678 kbd_put_keycode(keycode | 0x80);
1679 }
1680}
1681
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001682static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001683{
balrog3401c0d2008-06-04 10:05:59 +00001684 char keyname_buf[16];
1685 char *separator;
1686 int keyname_len, keycode, i;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001687 const char *string = qdict_get_str(qdict, "string");
1688 int has_hold_time = qdict_haskey(qdict, "hold_time");
1689 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
ths3b46e622007-09-17 08:09:54 +00001690
balrogc8256f92008-06-08 22:45:01 +00001691 if (nb_pending_keycodes > 0) {
1692 qemu_del_timer(key_timer);
1693 release_keys(NULL);
1694 }
1695 if (!has_hold_time)
1696 hold_time = 100;
1697 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001698 while (1) {
1699 separator = strchr(string, '-');
1700 keyname_len = separator ? separator - string : strlen(string);
1701 if (keyname_len > 0) {
1702 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1703 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001704 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001705 return;
bellarda3a91a32004-06-04 11:06:21 +00001706 }
balrogc8256f92008-06-08 22:45:01 +00001707 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001708 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001709 return;
1710 }
1711 keyname_buf[keyname_len] = 0;
1712 keycode = get_keycode(keyname_buf);
1713 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001714 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001715 return;
1716 }
balrogc8256f92008-06-08 22:45:01 +00001717 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001718 }
balrog3401c0d2008-06-04 10:05:59 +00001719 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001720 break;
balrog3401c0d2008-06-04 10:05:59 +00001721 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001722 }
balrogc8256f92008-06-08 22:45:01 +00001723 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001724 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001725 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001726 keycode = keycodes[i];
1727 if (keycode & 0x80)
1728 kbd_put_keycode(0xe0);
1729 kbd_put_keycode(keycode & 0x7f);
1730 }
balrogc8256f92008-06-08 22:45:01 +00001731 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +00001732 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001733 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001734}
1735
bellard13224a82006-07-14 22:03:35 +00001736static int mouse_button_state;
1737
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001738static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001739{
1740 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001741 const char *dx_str = qdict_get_str(qdict, "dx_str");
1742 const char *dy_str = qdict_get_str(qdict, "dy_str");
1743 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001744 dx = strtol(dx_str, NULL, 0);
1745 dy = strtol(dy_str, NULL, 0);
1746 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001747 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001748 dz = strtol(dz_str, NULL, 0);
1749 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1750}
1751
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001752static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001753{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001754 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001755 mouse_button_state = button_state;
1756 kbd_mouse_event(0, 0, 0, mouse_button_state);
1757}
1758
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001759static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001760{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001761 int size = qdict_get_int(qdict, "size");
1762 int addr = qdict_get_int(qdict, "addr");
1763 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001764 uint32_t val;
1765 int suffix;
1766
1767 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001768 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001769 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001770 addr++;
1771 }
1772 addr &= 0xffff;
1773
1774 switch(size) {
1775 default:
1776 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001777 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001778 suffix = 'b';
1779 break;
1780 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001781 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001782 suffix = 'w';
1783 break;
1784 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001785 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001786 suffix = 'l';
1787 break;
1788 }
aliguori376253e2009-03-05 23:01:23 +00001789 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1790 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001791}
bellarda3a91a32004-06-04 11:06:21 +00001792
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001793static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001794{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001795 int size = qdict_get_int(qdict, "size");
1796 int addr = qdict_get_int(qdict, "addr");
1797 int val = qdict_get_int(qdict, "val");
1798
Jan Kiszkaf1147842009-07-14 10:20:11 +02001799 addr &= IOPORTS_MASK;
1800
1801 switch (size) {
1802 default:
1803 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001804 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001805 break;
1806 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001807 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001808 break;
1809 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001810 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001811 break;
1812 }
1813}
1814
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001815static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001816{
1817 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001818 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001819
Jan Kiszka76e30d02009-07-02 00:19:02 +02001820 res = qemu_boot_set(bootdevice);
1821 if (res == 0) {
1822 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1823 } else if (res > 0) {
1824 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001825 } else {
aliguori376253e2009-03-05 23:01:23 +00001826 monitor_printf(mon, "no function defined to set boot device list for "
1827 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001828 }
1829}
1830
Luiz Capitulinoc80d2592009-10-07 13:41:58 -03001831/**
1832 * do_system_reset(): Issue a machine reset
1833 */
1834static void do_system_reset(Monitor *mon, const QDict *qdict,
1835 QObject **ret_data)
bellarde4f90822004-06-20 12:35:44 +00001836{
1837 qemu_system_reset_request();
1838}
1839
Luiz Capitulino43076662009-10-07 13:41:59 -03001840/**
1841 * do_system_powerdown(): Issue a machine powerdown
1842 */
1843static void do_system_powerdown(Monitor *mon, const QDict *qdict,
1844 QObject **ret_data)
bellard34751872005-07-02 14:31:34 +00001845{
1846 qemu_system_powerdown_request();
1847}
1848
bellardb86bda52004-09-18 19:32:46 +00001849#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +00001850static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
bellardb86bda52004-09-18 19:32:46 +00001851{
aliguori376253e2009-03-05 23:01:23 +00001852 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1853 addr,
1854 pte & mask,
1855 pte & PG_GLOBAL_MASK ? 'G' : '-',
1856 pte & PG_PSE_MASK ? 'P' : '-',
1857 pte & PG_DIRTY_MASK ? 'D' : '-',
1858 pte & PG_ACCESSED_MASK ? 'A' : '-',
1859 pte & PG_PCD_MASK ? 'C' : '-',
1860 pte & PG_PWT_MASK ? 'T' : '-',
1861 pte & PG_USER_MASK ? 'U' : '-',
1862 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001863}
1864
aliguori376253e2009-03-05 23:01:23 +00001865static void tlb_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001866{
bellard6a00d602005-11-21 23:25:50 +00001867 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001868 int l1, l2;
1869 uint32_t pgd, pde, pte;
1870
bellard6a00d602005-11-21 23:25:50 +00001871 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00001872
bellardb86bda52004-09-18 19:32:46 +00001873 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001874 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001875 return;
1876 }
1877 pgd = env->cr[3] & ~0xfff;
1878 for(l1 = 0; l1 < 1024; l1++) {
1879 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1880 pde = le32_to_cpu(pde);
1881 if (pde & PG_PRESENT_MASK) {
1882 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001883 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
bellardb86bda52004-09-18 19:32:46 +00001884 } else {
1885 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001886 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001887 (uint8_t *)&pte, 4);
1888 pte = le32_to_cpu(pte);
1889 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001890 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001891 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001892 ~0xfff);
1893 }
1894 }
1895 }
1896 }
1897 }
1898}
1899
aliguori376253e2009-03-05 23:01:23 +00001900static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001901 uint32_t end, int prot)
1902{
bellard9746b152004-11-11 18:30:24 +00001903 int prot1;
1904 prot1 = *plast_prot;
1905 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001906 if (*pstart != -1) {
aliguori376253e2009-03-05 23:01:23 +00001907 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1908 *pstart, end, end - *pstart,
1909 prot1 & PG_USER_MASK ? 'u' : '-',
1910 'r',
1911 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001912 }
1913 if (prot != 0)
1914 *pstart = end;
1915 else
1916 *pstart = -1;
1917 *plast_prot = prot;
1918 }
1919}
1920
aliguori376253e2009-03-05 23:01:23 +00001921static void mem_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001922{
bellard6a00d602005-11-21 23:25:50 +00001923 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001924 int l1, l2, prot, last_prot;
1925 uint32_t pgd, pde, pte, start, end;
1926
bellard6a00d602005-11-21 23:25:50 +00001927 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00001928
bellardb86bda52004-09-18 19:32:46 +00001929 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001930 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001931 return;
1932 }
1933 pgd = env->cr[3] & ~0xfff;
1934 last_prot = 0;
1935 start = -1;
1936 for(l1 = 0; l1 < 1024; l1++) {
1937 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1938 pde = le32_to_cpu(pde);
1939 end = l1 << 22;
1940 if (pde & PG_PRESENT_MASK) {
1941 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1942 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001943 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001944 } else {
1945 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001946 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001947 (uint8_t *)&pte, 4);
1948 pte = le32_to_cpu(pte);
1949 end = (l1 << 22) + (l2 << 12);
1950 if (pte & PG_PRESENT_MASK) {
1951 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1952 } else {
1953 prot = 0;
1954 }
aliguori376253e2009-03-05 23:01:23 +00001955 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001956 }
1957 }
1958 } else {
1959 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001960 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001961 }
1962 }
1963}
1964#endif
1965
aurel327c664e22009-03-03 06:12:22 +00001966#if defined(TARGET_SH4)
1967
aliguori376253e2009-03-05 23:01:23 +00001968static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001969{
aliguori376253e2009-03-05 23:01:23 +00001970 monitor_printf(mon, " tlb%i:\t"
1971 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1972 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1973 "dirty=%hhu writethrough=%hhu\n",
1974 idx,
1975 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1976 tlb->v, tlb->sh, tlb->c, tlb->pr,
1977 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001978}
1979
aliguori376253e2009-03-05 23:01:23 +00001980static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00001981{
1982 CPUState *env = mon_get_cpu();
1983 int i;
1984
aliguori376253e2009-03-05 23:01:23 +00001985 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001986 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001987 print_tlb (mon, i, &env->itlb[i]);
1988 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001989 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001990 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00001991}
1992
1993#endif
1994
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001995static void do_info_kvm_print(Monitor *mon, const QObject *data)
1996{
1997 QDict *qdict;
1998
1999 qdict = qobject_to_qdict(data);
2000
2001 monitor_printf(mon, "kvm support: ");
2002 if (qdict_get_bool(qdict, "present")) {
2003 monitor_printf(mon, "%s\n", qdict_get_bool(qdict, "enabled") ?
2004 "enabled" : "disabled");
2005 } else {
2006 monitor_printf(mon, "not compiled\n");
2007 }
2008}
2009
2010/**
2011 * do_info_kvm(): Show KVM information
2012 *
2013 * Return a QDict with the following information:
2014 *
2015 * - "enabled": true if KVM support is enabled, false otherwise
2016 * - "present": true if QEMU has KVM support, false otherwise
2017 *
2018 * Example:
2019 *
2020 * { "enabled": true, "present": true }
2021 */
2022static void do_info_kvm(Monitor *mon, QObject **ret_data)
aliguori7ba1e612008-11-05 16:04:33 +00002023{
2024#ifdef CONFIG_KVM
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002025 *ret_data = qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
2026 kvm_enabled());
aliguori7ba1e612008-11-05 16:04:33 +00002027#else
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002028 *ret_data = qobject_from_jsonf("{ 'enabled': false, 'present': false }");
aliguori7ba1e612008-11-05 16:04:33 +00002029#endif
2030}
2031
aliguori030ea372009-04-21 22:30:47 +00002032static void do_info_numa(Monitor *mon)
2033{
aliguorib28b6232009-04-22 20:20:29 +00002034 int i;
aliguori030ea372009-04-21 22:30:47 +00002035 CPUState *env;
2036
2037 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2038 for (i = 0; i < nb_numa_nodes; i++) {
2039 monitor_printf(mon, "node %d cpus:", i);
2040 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2041 if (env->numa_node == i) {
2042 monitor_printf(mon, " %d", env->cpu_index);
2043 }
2044 }
2045 monitor_printf(mon, "\n");
2046 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2047 node_mem[i] >> 20);
2048 }
2049}
2050
bellard5f1ce942006-02-08 22:40:15 +00002051#ifdef CONFIG_PROFILER
2052
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02002053int64_t qemu_time;
2054int64_t dev_time;
2055
aliguori376253e2009-03-05 23:01:23 +00002056static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002057{
2058 int64_t total;
2059 total = qemu_time;
2060 if (total == 0)
2061 total = 1;
aliguori376253e2009-03-05 23:01:23 +00002062 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002063 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00002064 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002065 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00002066 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002067 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002068}
2069#else
aliguori376253e2009-03-05 23:01:23 +00002070static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002071{
aliguori376253e2009-03-05 23:01:23 +00002072 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00002073}
2074#endif
2075
bellardec36b692006-07-16 18:57:03 +00002076/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002077static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00002078
aliguori376253e2009-03-05 23:01:23 +00002079static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00002080{
2081 int i;
2082 CaptureState *s;
2083
2084 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00002085 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00002086 s->ops.info (s->opaque);
2087 }
2088}
2089
Blue Swirl23130862009-06-06 08:22:04 +00002090#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002091static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002092{
2093 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002094 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00002095 CaptureState *s;
2096
2097 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2098 if (i == n) {
2099 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002100 QLIST_REMOVE (s, entries);
bellardec36b692006-07-16 18:57:03 +00002101 qemu_free (s);
2102 return;
2103 }
2104 }
2105}
2106
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002107static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002108{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002109 const char *path = qdict_get_str(qdict, "path");
2110 int has_freq = qdict_haskey(qdict, "freq");
2111 int freq = qdict_get_try_int(qdict, "freq", -1);
2112 int has_bits = qdict_haskey(qdict, "bits");
2113 int bits = qdict_get_try_int(qdict, "bits", -1);
2114 int has_channels = qdict_haskey(qdict, "nchannels");
2115 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00002116 CaptureState *s;
2117
2118 s = qemu_mallocz (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002119
2120 freq = has_freq ? freq : 44100;
2121 bits = has_bits ? bits : 16;
2122 nchannels = has_channels ? nchannels : 2;
2123
2124 if (wav_start_capture (s, path, freq, bits, nchannels)) {
aliguori376253e2009-03-05 23:01:23 +00002125 monitor_printf(mon, "Faied to add wave capture\n");
bellardec36b692006-07-16 18:57:03 +00002126 qemu_free (s);
2127 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002128 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002129}
2130#endif
2131
aurel32dc1c0b72008-04-27 23:52:12 +00002132#if defined(TARGET_I386)
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002133static void do_inject_nmi(Monitor *mon, const QDict *qdict)
aurel32dc1c0b72008-04-27 23:52:12 +00002134{
2135 CPUState *env;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002136 int cpu_index = qdict_get_int(qdict, "cpu_index");
aurel32dc1c0b72008-04-27 23:52:12 +00002137
2138 for (env = first_cpu; env != NULL; env = env->next_cpu)
2139 if (env->cpu_index == cpu_index) {
2140 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2141 break;
2142 }
2143}
2144#endif
2145
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002146static void do_info_status_print(Monitor *mon, const QObject *data)
aurel326f9c5ee2008-12-18 22:43:56 +00002147{
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002148 QDict *qdict;
2149
2150 qdict = qobject_to_qdict(data);
2151
2152 monitor_printf(mon, "VM status: ");
2153 if (qdict_get_bool(qdict, "running")) {
2154 monitor_printf(mon, "running");
2155 if (qdict_get_bool(qdict, "singlestep")) {
2156 monitor_printf(mon, " (single step mode)");
aurel321b530a62009-04-05 20:08:59 +00002157 }
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002158 } else {
2159 monitor_printf(mon, "paused");
2160 }
2161
2162 monitor_printf(mon, "\n");
2163}
2164
2165/**
2166 * do_info_status(): VM status
2167 *
2168 * Return a QDict with the following information:
2169 *
2170 * - "running": true if the VM is running, or false if it is paused
2171 * - "singlestep": true if the VM is in single step mode, false otherwise
2172 *
2173 * Example:
2174 *
2175 * { "running": true, "singlestep": false }
2176 */
2177static void do_info_status(Monitor *mon, QObject **ret_data)
2178{
2179 *ret_data = qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2180 vm_running, singlestep);
aurel326f9c5ee2008-12-18 22:43:56 +00002181}
2182
Adam Litke625a5be2010-01-26 14:17:35 -06002183static void print_balloon_stat(const char *key, QObject *obj, void *opaque)
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002184{
Adam Litke625a5be2010-01-26 14:17:35 -06002185 Monitor *mon = opaque;
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002186
Adam Litke625a5be2010-01-26 14:17:35 -06002187 if (strcmp(key, "actual"))
2188 monitor_printf(mon, ",%s=%" PRId64, key,
2189 qint_get_int(qobject_to_qint(obj)));
aliguoridf751fa2008-12-04 20:19:35 +00002190}
2191
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002192static void monitor_print_balloon(Monitor *mon, const QObject *data)
2193{
Luiz Capitulino7f179672009-12-10 17:15:55 -02002194 QDict *qdict;
2195
2196 qdict = qobject_to_qdict(data);
Adam Litke625a5be2010-01-26 14:17:35 -06002197 if (!qdict_haskey(qdict, "actual"))
2198 return;
Luiz Capitulino7f179672009-12-10 17:15:55 -02002199
Adam Litke625a5be2010-01-26 14:17:35 -06002200 monitor_printf(mon, "balloon: actual=%" PRId64,
2201 qdict_get_int(qdict, "actual") >> 20);
2202 qdict_iter(qdict, print_balloon_stat, mon);
2203 monitor_printf(mon, "\n");
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002204}
2205
2206/**
2207 * do_info_balloon(): Balloon information
Luiz Capitulino7f179672009-12-10 17:15:55 -02002208 *
Adam Litke625a5be2010-01-26 14:17:35 -06002209 * Make an asynchronous request for balloon info. When the request completes
2210 * a QDict will be returned according to the following specification:
Luiz Capitulino7f179672009-12-10 17:15:55 -02002211 *
Adam Litke625a5be2010-01-26 14:17:35 -06002212 * - "actual": current balloon value in bytes
2213 * The following fields may or may not be present:
2214 * - "mem_swapped_in": Amount of memory swapped in (bytes)
2215 * - "mem_swapped_out": Amount of memory swapped out (bytes)
2216 * - "major_page_faults": Number of major faults
2217 * - "minor_page_faults": Number of minor faults
2218 * - "free_mem": Total amount of free and unused memory (bytes)
2219 * - "total_mem": Total amount of available memory (bytes)
Luiz Capitulino7f179672009-12-10 17:15:55 -02002220 *
2221 * Example:
2222 *
Adam Litke625a5be2010-01-26 14:17:35 -06002223 * { "actual": 1073741824, "mem_swapped_in": 0, "mem_swapped_out": 0,
2224 * "major_page_faults": 142, "minor_page_faults": 239245,
2225 * "free_mem": 1014185984, "total_mem": 1044668416 }
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002226 */
Adam Litke625a5be2010-01-26 14:17:35 -06002227static int do_info_balloon(Monitor *mon, MonitorCompletion cb, void *opaque)
aliguoridf751fa2008-12-04 20:19:35 +00002228{
Adam Litke625a5be2010-01-26 14:17:35 -06002229 int ret;
aliguoridf751fa2008-12-04 20:19:35 +00002230
Adam Litke625a5be2010-01-26 14:17:35 -06002231 if (kvm_enabled() && !kvm_has_sync_mmu()) {
2232 qemu_error_new(QERR_KVM_MISSING_CAP, "synchronous MMU", "balloon");
2233 return -1;
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002234 }
Adam Litke625a5be2010-01-26 14:17:35 -06002235
2236 ret = qemu_balloon_status(cb, opaque);
2237 if (!ret) {
2238 qemu_error_new(QERR_DEVICE_NOT_ACTIVE, "balloon");
2239 return -1;
2240 }
2241
2242 return 0;
2243}
2244
2245/**
2246 * do_balloon(): Request VM to change its memory allocation
2247 */
2248static int do_balloon(Monitor *mon, const QDict *params,
2249 MonitorCompletion cb, void *opaque)
2250{
2251 int ret;
2252
2253 if (kvm_enabled() && !kvm_has_sync_mmu()) {
2254 qemu_error_new(QERR_KVM_MISSING_CAP, "synchronous MMU", "balloon");
2255 return -1;
2256 }
2257
2258 ret = qemu_balloon(qdict_get_int(params, "value"), cb, opaque);
2259 if (ret == 0) {
2260 qemu_error_new(QERR_DEVICE_NOT_ACTIVE, "balloon");
2261 return -1;
2262 }
2263
2264 return 0;
aliguoridf751fa2008-12-04 20:19:35 +00002265}
2266
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002267static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002268{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002269 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002270
aliguori76655d62009-03-06 20:27:37 +00002271 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002272 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002273 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002274 return acl;
2275}
aliguori76655d62009-03-06 20:27:37 +00002276
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002277static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002278{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002279 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002280 qemu_acl *acl = find_acl(mon, aclname);
2281 qemu_acl_entry *entry;
2282 int i = 0;
2283
2284 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002285 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002286 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002287 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002288 i++;
2289 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002290 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002291 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002292 }
2293}
2294
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002295static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002296{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002297 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002298 qemu_acl *acl = find_acl(mon, aclname);
2299
2300 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002301 qemu_acl_reset(acl);
2302 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002303 }
2304}
aliguori76655d62009-03-06 20:27:37 +00002305
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002306static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002307{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002308 const char *aclname = qdict_get_str(qdict, "aclname");
2309 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002310 qemu_acl *acl = find_acl(mon, aclname);
2311
2312 if (acl) {
2313 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002314 acl->defaultDeny = 0;
2315 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002316 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002317 acl->defaultDeny = 1;
2318 monitor_printf(mon, "acl: policy set to 'deny'\n");
2319 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002320 monitor_printf(mon, "acl: unknown policy '%s', "
2321 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002322 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002323 }
2324}
aliguori76655d62009-03-06 20:27:37 +00002325
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002326static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002327{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002328 const char *aclname = qdict_get_str(qdict, "aclname");
2329 const char *match = qdict_get_str(qdict, "match");
2330 const char *policy = qdict_get_str(qdict, "policy");
2331 int has_index = qdict_haskey(qdict, "index");
2332 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002333 qemu_acl *acl = find_acl(mon, aclname);
2334 int deny, ret;
2335
2336 if (acl) {
2337 if (strcmp(policy, "allow") == 0) {
2338 deny = 0;
2339 } else if (strcmp(policy, "deny") == 0) {
2340 deny = 1;
2341 } else {
2342 monitor_printf(mon, "acl: unknown policy '%s', "
2343 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002344 return;
2345 }
aliguori28a76be2009-03-06 20:27:40 +00002346 if (has_index)
2347 ret = qemu_acl_insert(acl, deny, match, index);
2348 else
2349 ret = qemu_acl_append(acl, deny, match);
2350 if (ret < 0)
2351 monitor_printf(mon, "acl: unable to add acl entry\n");
2352 else
2353 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002354 }
2355}
aliguori76655d62009-03-06 20:27:37 +00002356
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002357static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002358{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002359 const char *aclname = qdict_get_str(qdict, "aclname");
2360 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002361 qemu_acl *acl = find_acl(mon, aclname);
2362 int ret;
aliguori76655d62009-03-06 20:27:37 +00002363
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002364 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002365 ret = qemu_acl_remove(acl, match);
2366 if (ret < 0)
2367 monitor_printf(mon, "acl: no matching acl entry\n");
2368 else
2369 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002370 }
2371}
2372
Huang Ying79c4f6b2009-06-23 10:05:14 +08002373#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002374static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002375{
2376 CPUState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002377 int cpu_index = qdict_get_int(qdict, "cpu_index");
2378 int bank = qdict_get_int(qdict, "bank");
2379 uint64_t status = qdict_get_int(qdict, "status");
2380 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2381 uint64_t addr = qdict_get_int(qdict, "addr");
2382 uint64_t misc = qdict_get_int(qdict, "misc");
Huang Ying79c4f6b2009-06-23 10:05:14 +08002383
2384 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
2385 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
2386 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
2387 break;
2388 }
2389}
2390#endif
2391
Luiz Capitulinof0d60002009-10-16 12:23:50 -03002392static void do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002393{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002394 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002395 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002396 int fd;
2397
2398 fd = qemu_chr_get_msgfd(mon->chr);
2399 if (fd == -1) {
Markus Armbruster7cdfcfe2009-12-07 21:37:15 +01002400 qemu_error_new(QERR_FD_NOT_SUPPLIED);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002401 return;
2402 }
2403
2404 if (qemu_isdigit(fdname[0])) {
Markus Armbruster7cdfcfe2009-12-07 21:37:15 +01002405 qemu_error_new(QERR_INVALID_PARAMETER, "fdname");
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002406 return;
2407 }
2408
2409 fd = dup(fd);
2410 if (fd == -1) {
Markus Armbruster7cdfcfe2009-12-07 21:37:15 +01002411 if (errno == EMFILE)
2412 qemu_error_new(QERR_TOO_MANY_FILES);
2413 else
2414 qemu_error_new(QERR_UNDEFINED_ERROR);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002415 return;
2416 }
2417
Blue Swirl72cf2d42009-09-12 07:36:22 +00002418 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002419 if (strcmp(monfd->name, fdname) != 0) {
2420 continue;
2421 }
2422
2423 close(monfd->fd);
2424 monfd->fd = fd;
2425 return;
2426 }
2427
Anthony Liguoric227f092009-10-01 16:12:16 -05002428 monfd = qemu_mallocz(sizeof(mon_fd_t));
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002429 monfd->name = qemu_strdup(fdname);
2430 monfd->fd = fd;
2431
Blue Swirl72cf2d42009-09-12 07:36:22 +00002432 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002433}
2434
Luiz Capitulino18f3a512009-10-16 12:23:51 -03002435static void do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002436{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002437 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002438 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002439
Blue Swirl72cf2d42009-09-12 07:36:22 +00002440 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002441 if (strcmp(monfd->name, fdname) != 0) {
2442 continue;
2443 }
2444
Blue Swirl72cf2d42009-09-12 07:36:22 +00002445 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002446 close(monfd->fd);
2447 qemu_free(monfd->name);
2448 qemu_free(monfd);
2449 return;
2450 }
2451
Markus Armbruster063c1a02009-12-07 21:37:11 +01002452 qemu_error_new(QERR_FD_NOT_FOUND, fdname);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002453}
2454
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002455static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002456{
2457 int saved_vm_running = vm_running;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002458 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002459
2460 vm_stop(0);
2461
Juan Quintela05f24012009-08-20 19:42:22 +02002462 if (load_vmstate(mon, name) >= 0 && saved_vm_running)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002463 vm_start();
2464}
2465
Mark McLoughlin7768e042009-07-22 09:11:41 +01002466int monitor_get_fd(Monitor *mon, const char *fdname)
2467{
Anthony Liguoric227f092009-10-01 16:12:16 -05002468 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002469
Blue Swirl72cf2d42009-09-12 07:36:22 +00002470 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002471 int fd;
2472
2473 if (strcmp(monfd->name, fdname) != 0) {
2474 continue;
2475 }
2476
2477 fd = monfd->fd;
2478
2479 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002480 QLIST_REMOVE(monfd, next);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002481 qemu_free(monfd->name);
2482 qemu_free(monfd);
2483
2484 return fd;
2485 }
2486
2487 return -1;
2488}
2489
Anthony Liguoric227f092009-10-01 16:12:16 -05002490static const mon_cmd_t mon_cmds[] = {
Blue Swirl23130862009-06-06 08:22:04 +00002491#include "qemu-monitor.h"
ths5fafdf22007-09-16 21:08:06 +00002492 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002493};
2494
Blue Swirl23130862009-06-06 08:22:04 +00002495/* Please update qemu-monitor.hx when adding or changing commands */
Anthony Liguoric227f092009-10-01 16:12:16 -05002496static const mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002497 {
2498 .name = "version",
2499 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002500 .params = "",
2501 .help = "show the version of QEMU",
Luiz Capitulino45e914c2009-12-10 17:15:58 -02002502 .user_print = do_info_version_print,
Luiz Capitulinoab2d3182009-10-07 13:42:02 -03002503 .mhandler.info_new = do_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002504 },
2505 {
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -02002506 .name = "commands",
2507 .args_type = "",
2508 .params = "",
2509 .help = "list QMP available commands",
2510 .user_print = monitor_user_noop,
2511 .mhandler.info_new = do_info_commands,
2512 },
2513 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002514 .name = "network",
2515 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002516 .params = "",
2517 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002518 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002519 },
2520 {
2521 .name = "chardev",
2522 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002523 .params = "",
2524 .help = "show the character devices",
Luiz Capitulino588b3832009-12-10 17:16:08 -02002525 .user_print = qemu_chr_info_print,
2526 .mhandler.info_new = qemu_chr_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002527 },
2528 {
2529 .name = "block",
2530 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002531 .params = "",
2532 .help = "show the block devices",
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002533 .user_print = bdrv_info_print,
2534 .mhandler.info_new = bdrv_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002535 },
2536 {
2537 .name = "blockstats",
2538 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002539 .params = "",
2540 .help = "show block device statistics",
Luiz Capitulino218a5362009-12-10 17:16:07 -02002541 .user_print = bdrv_stats_print,
2542 .mhandler.info_new = bdrv_info_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002543 },
2544 {
2545 .name = "registers",
2546 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002547 .params = "",
2548 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002549 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002550 },
2551 {
2552 .name = "cpus",
2553 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002554 .params = "",
2555 .help = "show infos for each CPU",
Luiz Capitulino8f3cec02009-10-07 13:42:04 -03002556 .user_print = monitor_print_cpus,
2557 .mhandler.info_new = do_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002558 },
2559 {
2560 .name = "history",
2561 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002562 .params = "",
2563 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002564 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002565 },
2566 {
2567 .name = "irq",
2568 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002569 .params = "",
2570 .help = "show the interrupts statistics (if available)",
Luiz Capitulino910df892009-10-07 13:41:51 -03002571 .mhandler.info = irq_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002572 },
2573 {
2574 .name = "pic",
2575 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002576 .params = "",
2577 .help = "show i8259 (PIC) state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002578 .mhandler.info = pic_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002579 },
2580 {
2581 .name = "pci",
2582 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002583 .params = "",
2584 .help = "show PCI info",
Luiz Capitulino163c8a52010-01-21 19:15:40 -02002585 .user_print = do_pci_info_print,
2586 .mhandler.info_new = do_pci_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002587 },
aurel327c664e22009-03-03 06:12:22 +00002588#if defined(TARGET_I386) || defined(TARGET_SH4)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002589 {
2590 .name = "tlb",
2591 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002592 .params = "",
2593 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002594 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002595 },
aurel327c664e22009-03-03 06:12:22 +00002596#endif
2597#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002598 {
2599 .name = "mem",
2600 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002601 .params = "",
2602 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002603 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002604 },
2605 {
2606 .name = "hpet",
2607 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002608 .params = "",
2609 .help = "show state of HPET",
Luiz Capitulino14f07202009-12-10 17:16:02 -02002610 .user_print = do_info_hpet_print,
2611 .mhandler.info_new = do_info_hpet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002612 },
bellardb86bda52004-09-18 19:32:46 +00002613#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002614 {
2615 .name = "jit",
2616 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002617 .params = "",
2618 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002619 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002620 },
2621 {
2622 .name = "kvm",
2623 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002624 .params = "",
2625 .help = "show KVM information",
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002626 .user_print = do_info_kvm_print,
2627 .mhandler.info_new = do_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002628 },
2629 {
2630 .name = "numa",
2631 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002632 .params = "",
2633 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002634 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002635 },
2636 {
2637 .name = "usb",
2638 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002639 .params = "",
2640 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002641 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002642 },
2643 {
2644 .name = "usbhost",
2645 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002646 .params = "",
2647 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002648 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002649 },
2650 {
2651 .name = "profile",
2652 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002653 .params = "",
2654 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002655 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002656 },
2657 {
2658 .name = "capture",
2659 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002660 .params = "",
2661 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002662 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002663 },
2664 {
2665 .name = "snapshots",
2666 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002667 .params = "",
2668 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002669 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002670 },
2671 {
2672 .name = "status",
2673 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002674 .params = "",
2675 .help = "show the current VM status (running|paused)",
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002676 .user_print = do_info_status_print,
2677 .mhandler.info_new = do_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002678 },
2679 {
2680 .name = "pcmcia",
2681 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002682 .params = "",
2683 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002684 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002685 },
2686 {
2687 .name = "mice",
2688 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002689 .params = "",
2690 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe78c48e2009-12-10 17:16:04 -02002691 .user_print = do_info_mice_print,
2692 .mhandler.info_new = do_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002693 },
2694 {
2695 .name = "vnc",
2696 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002697 .params = "",
2698 .help = "show the vnc server status",
Luiz Capitulinod96fd292009-12-10 17:16:10 -02002699 .user_print = do_info_vnc_print,
2700 .mhandler.info_new = do_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002701 },
2702 {
2703 .name = "name",
2704 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002705 .params = "",
2706 .help = "show the current VM name",
Luiz Capitulinoe05486c2009-12-10 17:16:01 -02002707 .user_print = do_info_name_print,
2708 .mhandler.info_new = do_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002709 },
2710 {
2711 .name = "uuid",
2712 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002713 .params = "",
2714 .help = "show the current VM UUID",
Luiz Capitulino9603ceb2009-12-10 17:16:03 -02002715 .user_print = do_info_uuid_print,
2716 .mhandler.info_new = do_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002717 },
j_mayer76a66252007-03-07 08:32:30 +00002718#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002719 {
2720 .name = "cpustats",
2721 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002722 .params = "",
2723 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002724 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002725 },
j_mayer76a66252007-03-07 08:32:30 +00002726#endif
blueswir131a60e22007-10-26 18:42:59 +00002727#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002728 {
2729 .name = "usernet",
2730 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002731 .params = "",
2732 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002733 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002734 },
blueswir131a60e22007-10-26 18:42:59 +00002735#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002736 {
2737 .name = "migrate",
2738 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002739 .params = "",
2740 .help = "show migration status",
Luiz Capitulinoc86a6682009-12-10 17:16:05 -02002741 .user_print = do_info_migrate_print,
2742 .mhandler.info_new = do_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002743 },
2744 {
2745 .name = "balloon",
2746 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002747 .params = "",
2748 .help = "show balloon information",
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002749 .user_print = monitor_print_balloon,
Adam Litke625a5be2010-01-26 14:17:35 -06002750 .mhandler.info_async = do_info_balloon,
2751 .async = 1,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002752 },
2753 {
2754 .name = "qtree",
2755 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002756 .params = "",
2757 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002758 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002759 },
2760 {
2761 .name = "qdm",
2762 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002763 .params = "",
2764 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002765 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002766 },
2767 {
2768 .name = "roms",
2769 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002770 .params = "",
2771 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002772 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002773 },
2774 {
2775 .name = NULL,
2776 },
bellard9dc39cb2004-03-14 21:38:27 +00002777};
2778
bellard9307c4c2004-04-04 12:57:25 +00002779/*******************************************************************/
2780
2781static const char *pch;
2782static jmp_buf expr_env;
2783
bellard92a31b12005-02-10 22:00:52 +00002784#define MD_TLONG 0
2785#define MD_I32 1
2786
bellard9307c4c2004-04-04 12:57:25 +00002787typedef struct MonitorDef {
2788 const char *name;
2789 int offset;
blueswir18662d652008-10-02 18:32:44 +00002790 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002791 int type;
bellard9307c4c2004-04-04 12:57:25 +00002792} MonitorDef;
2793
bellard57206fd2004-04-25 18:54:52 +00002794#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002795static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002796{
bellard6a00d602005-11-21 23:25:50 +00002797 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002798 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002799}
2800#endif
2801
bellarda541f292004-04-12 20:39:29 +00002802#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002803static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002804{
bellard6a00d602005-11-21 23:25:50 +00002805 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002806 unsigned int u;
2807 int i;
2808
2809 u = 0;
2810 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002811 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002812
2813 return u;
2814}
2815
blueswir18662d652008-10-02 18:32:44 +00002816static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002817{
bellard6a00d602005-11-21 23:25:50 +00002818 CPUState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00002819 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002820}
2821
blueswir18662d652008-10-02 18:32:44 +00002822static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002823{
bellard6a00d602005-11-21 23:25:50 +00002824 CPUState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00002825 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002826}
bellard9fddaa02004-05-21 12:59:32 +00002827
blueswir18662d652008-10-02 18:32:44 +00002828static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002829{
bellard6a00d602005-11-21 23:25:50 +00002830 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002831 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002832}
2833
blueswir18662d652008-10-02 18:32:44 +00002834static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002835{
bellard6a00d602005-11-21 23:25:50 +00002836 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002837 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002838}
2839
blueswir18662d652008-10-02 18:32:44 +00002840static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002841{
bellard6a00d602005-11-21 23:25:50 +00002842 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002843 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002844}
bellarda541f292004-04-12 20:39:29 +00002845#endif
2846
bellarde95c8d52004-09-30 22:22:08 +00002847#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002848#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002849static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002850{
bellard6a00d602005-11-21 23:25:50 +00002851 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002852 return GET_PSR(env);
bellarde95c8d52004-09-30 22:22:08 +00002853}
bellard7b936c02005-10-30 17:05:13 +00002854#endif
bellarde95c8d52004-09-30 22:22:08 +00002855
blueswir18662d652008-10-02 18:32:44 +00002856static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002857{
bellard6a00d602005-11-21 23:25:50 +00002858 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002859 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002860}
2861#endif
2862
blueswir18662d652008-10-02 18:32:44 +00002863static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002864#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002865
2866#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00002867 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00002868 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00002869 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002870
bellard9307c4c2004-04-04 12:57:25 +00002871 { "eax", offsetof(CPUState, regs[0]) },
2872 { "ecx", offsetof(CPUState, regs[1]) },
2873 { "edx", offsetof(CPUState, regs[2]) },
2874 { "ebx", offsetof(CPUState, regs[3]) },
2875 { "esp|sp", offsetof(CPUState, regs[4]) },
2876 { "ebp|fp", offsetof(CPUState, regs[5]) },
2877 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00002878 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002879#ifdef TARGET_X86_64
2880 { "r8", offsetof(CPUState, regs[8]) },
2881 { "r9", offsetof(CPUState, regs[9]) },
2882 { "r10", offsetof(CPUState, regs[10]) },
2883 { "r11", offsetof(CPUState, regs[11]) },
2884 { "r12", offsetof(CPUState, regs[12]) },
2885 { "r13", offsetof(CPUState, regs[13]) },
2886 { "r14", offsetof(CPUState, regs[14]) },
2887 { "r15", offsetof(CPUState, regs[15]) },
2888#endif
bellard9307c4c2004-04-04 12:57:25 +00002889 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00002890 { "eip", offsetof(CPUState, eip) },
2891 SEG("cs", R_CS)
2892 SEG("ds", R_DS)
2893 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002894 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002895 SEG("fs", R_FS)
2896 SEG("gs", R_GS)
2897 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002898#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002899 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00002900 { "r0", offsetof(CPUState, gpr[0]) },
2901 { "r1", offsetof(CPUState, gpr[1]) },
2902 { "r2", offsetof(CPUState, gpr[2]) },
2903 { "r3", offsetof(CPUState, gpr[3]) },
2904 { "r4", offsetof(CPUState, gpr[4]) },
2905 { "r5", offsetof(CPUState, gpr[5]) },
2906 { "r6", offsetof(CPUState, gpr[6]) },
2907 { "r7", offsetof(CPUState, gpr[7]) },
2908 { "r8", offsetof(CPUState, gpr[8]) },
2909 { "r9", offsetof(CPUState, gpr[9]) },
2910 { "r10", offsetof(CPUState, gpr[10]) },
2911 { "r11", offsetof(CPUState, gpr[11]) },
2912 { "r12", offsetof(CPUState, gpr[12]) },
2913 { "r13", offsetof(CPUState, gpr[13]) },
2914 { "r14", offsetof(CPUState, gpr[14]) },
2915 { "r15", offsetof(CPUState, gpr[15]) },
2916 { "r16", offsetof(CPUState, gpr[16]) },
2917 { "r17", offsetof(CPUState, gpr[17]) },
2918 { "r18", offsetof(CPUState, gpr[18]) },
2919 { "r19", offsetof(CPUState, gpr[19]) },
2920 { "r20", offsetof(CPUState, gpr[20]) },
2921 { "r21", offsetof(CPUState, gpr[21]) },
2922 { "r22", offsetof(CPUState, gpr[22]) },
2923 { "r23", offsetof(CPUState, gpr[23]) },
2924 { "r24", offsetof(CPUState, gpr[24]) },
2925 { "r25", offsetof(CPUState, gpr[25]) },
2926 { "r26", offsetof(CPUState, gpr[26]) },
2927 { "r27", offsetof(CPUState, gpr[27]) },
2928 { "r28", offsetof(CPUState, gpr[28]) },
2929 { "r29", offsetof(CPUState, gpr[29]) },
2930 { "r30", offsetof(CPUState, gpr[30]) },
2931 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00002932 /* Floating point registers */
2933 { "f0", offsetof(CPUState, fpr[0]) },
2934 { "f1", offsetof(CPUState, fpr[1]) },
2935 { "f2", offsetof(CPUState, fpr[2]) },
2936 { "f3", offsetof(CPUState, fpr[3]) },
2937 { "f4", offsetof(CPUState, fpr[4]) },
2938 { "f5", offsetof(CPUState, fpr[5]) },
2939 { "f6", offsetof(CPUState, fpr[6]) },
2940 { "f7", offsetof(CPUState, fpr[7]) },
2941 { "f8", offsetof(CPUState, fpr[8]) },
2942 { "f9", offsetof(CPUState, fpr[9]) },
2943 { "f10", offsetof(CPUState, fpr[10]) },
2944 { "f11", offsetof(CPUState, fpr[11]) },
2945 { "f12", offsetof(CPUState, fpr[12]) },
2946 { "f13", offsetof(CPUState, fpr[13]) },
2947 { "f14", offsetof(CPUState, fpr[14]) },
2948 { "f15", offsetof(CPUState, fpr[15]) },
2949 { "f16", offsetof(CPUState, fpr[16]) },
2950 { "f17", offsetof(CPUState, fpr[17]) },
2951 { "f18", offsetof(CPUState, fpr[18]) },
2952 { "f19", offsetof(CPUState, fpr[19]) },
2953 { "f20", offsetof(CPUState, fpr[20]) },
2954 { "f21", offsetof(CPUState, fpr[21]) },
2955 { "f22", offsetof(CPUState, fpr[22]) },
2956 { "f23", offsetof(CPUState, fpr[23]) },
2957 { "f24", offsetof(CPUState, fpr[24]) },
2958 { "f25", offsetof(CPUState, fpr[25]) },
2959 { "f26", offsetof(CPUState, fpr[26]) },
2960 { "f27", offsetof(CPUState, fpr[27]) },
2961 { "f28", offsetof(CPUState, fpr[28]) },
2962 { "f29", offsetof(CPUState, fpr[29]) },
2963 { "f30", offsetof(CPUState, fpr[30]) },
2964 { "f31", offsetof(CPUState, fpr[31]) },
2965 { "fpscr", offsetof(CPUState, fpscr) },
2966 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00002967 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00002968 { "lr", offsetof(CPUState, lr) },
2969 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00002970 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00002971 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00002972 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00002973 { "msr", 0, &monitor_get_msr, },
2974 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00002975 { "tbu", 0, &monitor_get_tbu, },
2976 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00002977#if defined(TARGET_PPC64)
2978 /* Address space register */
2979 { "asr", offsetof(CPUState, asr) },
2980#endif
2981 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00002982 { "sdr1", offsetof(CPUState, sdr1) },
2983 { "sr0", offsetof(CPUState, sr[0]) },
2984 { "sr1", offsetof(CPUState, sr[1]) },
2985 { "sr2", offsetof(CPUState, sr[2]) },
2986 { "sr3", offsetof(CPUState, sr[3]) },
2987 { "sr4", offsetof(CPUState, sr[4]) },
2988 { "sr5", offsetof(CPUState, sr[5]) },
2989 { "sr6", offsetof(CPUState, sr[6]) },
2990 { "sr7", offsetof(CPUState, sr[7]) },
2991 { "sr8", offsetof(CPUState, sr[8]) },
2992 { "sr9", offsetof(CPUState, sr[9]) },
2993 { "sr10", offsetof(CPUState, sr[10]) },
2994 { "sr11", offsetof(CPUState, sr[11]) },
2995 { "sr12", offsetof(CPUState, sr[12]) },
2996 { "sr13", offsetof(CPUState, sr[13]) },
2997 { "sr14", offsetof(CPUState, sr[14]) },
2998 { "sr15", offsetof(CPUState, sr[15]) },
2999 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00003000#elif defined(TARGET_SPARC)
3001 { "g0", offsetof(CPUState, gregs[0]) },
3002 { "g1", offsetof(CPUState, gregs[1]) },
3003 { "g2", offsetof(CPUState, gregs[2]) },
3004 { "g3", offsetof(CPUState, gregs[3]) },
3005 { "g4", offsetof(CPUState, gregs[4]) },
3006 { "g5", offsetof(CPUState, gregs[5]) },
3007 { "g6", offsetof(CPUState, gregs[6]) },
3008 { "g7", offsetof(CPUState, gregs[7]) },
3009 { "o0", 0, monitor_get_reg },
3010 { "o1", 1, monitor_get_reg },
3011 { "o2", 2, monitor_get_reg },
3012 { "o3", 3, monitor_get_reg },
3013 { "o4", 4, monitor_get_reg },
3014 { "o5", 5, monitor_get_reg },
3015 { "o6", 6, monitor_get_reg },
3016 { "o7", 7, monitor_get_reg },
3017 { "l0", 8, monitor_get_reg },
3018 { "l1", 9, monitor_get_reg },
3019 { "l2", 10, monitor_get_reg },
3020 { "l3", 11, monitor_get_reg },
3021 { "l4", 12, monitor_get_reg },
3022 { "l5", 13, monitor_get_reg },
3023 { "l6", 14, monitor_get_reg },
3024 { "l7", 15, monitor_get_reg },
3025 { "i0", 16, monitor_get_reg },
3026 { "i1", 17, monitor_get_reg },
3027 { "i2", 18, monitor_get_reg },
3028 { "i3", 19, monitor_get_reg },
3029 { "i4", 20, monitor_get_reg },
3030 { "i5", 21, monitor_get_reg },
3031 { "i6", 22, monitor_get_reg },
3032 { "i7", 23, monitor_get_reg },
3033 { "pc", offsetof(CPUState, pc) },
3034 { "npc", offsetof(CPUState, npc) },
3035 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00003036#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00003037 { "psr", 0, &monitor_get_psr, },
3038 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00003039#endif
bellarde95c8d52004-09-30 22:22:08 +00003040 { "tbr", offsetof(CPUState, tbr) },
3041 { "fsr", offsetof(CPUState, fsr) },
3042 { "f0", offsetof(CPUState, fpr[0]) },
3043 { "f1", offsetof(CPUState, fpr[1]) },
3044 { "f2", offsetof(CPUState, fpr[2]) },
3045 { "f3", offsetof(CPUState, fpr[3]) },
3046 { "f4", offsetof(CPUState, fpr[4]) },
3047 { "f5", offsetof(CPUState, fpr[5]) },
3048 { "f6", offsetof(CPUState, fpr[6]) },
3049 { "f7", offsetof(CPUState, fpr[7]) },
3050 { "f8", offsetof(CPUState, fpr[8]) },
3051 { "f9", offsetof(CPUState, fpr[9]) },
3052 { "f10", offsetof(CPUState, fpr[10]) },
3053 { "f11", offsetof(CPUState, fpr[11]) },
3054 { "f12", offsetof(CPUState, fpr[12]) },
3055 { "f13", offsetof(CPUState, fpr[13]) },
3056 { "f14", offsetof(CPUState, fpr[14]) },
3057 { "f15", offsetof(CPUState, fpr[15]) },
3058 { "f16", offsetof(CPUState, fpr[16]) },
3059 { "f17", offsetof(CPUState, fpr[17]) },
3060 { "f18", offsetof(CPUState, fpr[18]) },
3061 { "f19", offsetof(CPUState, fpr[19]) },
3062 { "f20", offsetof(CPUState, fpr[20]) },
3063 { "f21", offsetof(CPUState, fpr[21]) },
3064 { "f22", offsetof(CPUState, fpr[22]) },
3065 { "f23", offsetof(CPUState, fpr[23]) },
3066 { "f24", offsetof(CPUState, fpr[24]) },
3067 { "f25", offsetof(CPUState, fpr[25]) },
3068 { "f26", offsetof(CPUState, fpr[26]) },
3069 { "f27", offsetof(CPUState, fpr[27]) },
3070 { "f28", offsetof(CPUState, fpr[28]) },
3071 { "f29", offsetof(CPUState, fpr[29]) },
3072 { "f30", offsetof(CPUState, fpr[30]) },
3073 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00003074#ifdef TARGET_SPARC64
3075 { "f32", offsetof(CPUState, fpr[32]) },
3076 { "f34", offsetof(CPUState, fpr[34]) },
3077 { "f36", offsetof(CPUState, fpr[36]) },
3078 { "f38", offsetof(CPUState, fpr[38]) },
3079 { "f40", offsetof(CPUState, fpr[40]) },
3080 { "f42", offsetof(CPUState, fpr[42]) },
3081 { "f44", offsetof(CPUState, fpr[44]) },
3082 { "f46", offsetof(CPUState, fpr[46]) },
3083 { "f48", offsetof(CPUState, fpr[48]) },
3084 { "f50", offsetof(CPUState, fpr[50]) },
3085 { "f52", offsetof(CPUState, fpr[52]) },
3086 { "f54", offsetof(CPUState, fpr[54]) },
3087 { "f56", offsetof(CPUState, fpr[56]) },
3088 { "f58", offsetof(CPUState, fpr[58]) },
3089 { "f60", offsetof(CPUState, fpr[60]) },
3090 { "f62", offsetof(CPUState, fpr[62]) },
3091 { "asi", offsetof(CPUState, asi) },
3092 { "pstate", offsetof(CPUState, pstate) },
3093 { "cansave", offsetof(CPUState, cansave) },
3094 { "canrestore", offsetof(CPUState, canrestore) },
3095 { "otherwin", offsetof(CPUState, otherwin) },
3096 { "wstate", offsetof(CPUState, wstate) },
3097 { "cleanwin", offsetof(CPUState, cleanwin) },
3098 { "fprs", offsetof(CPUState, fprs) },
3099#endif
bellard9307c4c2004-04-04 12:57:25 +00003100#endif
3101 { NULL },
3102};
3103
aliguori376253e2009-03-05 23:01:23 +00003104static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00003105{
aliguori376253e2009-03-05 23:01:23 +00003106 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00003107 longjmp(expr_env, 1);
3108}
3109
Markus Armbruster09b94182010-01-20 13:07:30 +01003110/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00003111static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00003112{
blueswir18662d652008-10-02 18:32:44 +00003113 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00003114 void *ptr;
3115
bellard9307c4c2004-04-04 12:57:25 +00003116 for(md = monitor_defs; md->name != NULL; md++) {
3117 if (compare_cmd(name, md->name)) {
3118 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003119 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003120 } else {
bellard6a00d602005-11-21 23:25:50 +00003121 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003122 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003123 switch(md->type) {
3124 case MD_I32:
3125 *pval = *(int32_t *)ptr;
3126 break;
3127 case MD_TLONG:
3128 *pval = *(target_long *)ptr;
3129 break;
3130 default:
3131 *pval = 0;
3132 break;
3133 }
bellard9307c4c2004-04-04 12:57:25 +00003134 }
3135 return 0;
3136 }
3137 }
3138 return -1;
3139}
3140
3141static void next(void)
3142{
Blue Swirl660f11b2009-07-31 21:16:51 +00003143 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003144 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003145 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003146 pch++;
3147 }
3148}
3149
aliguori376253e2009-03-05 23:01:23 +00003150static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003151
aliguori376253e2009-03-05 23:01:23 +00003152static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003153{
blueswir1c2efc952007-09-25 17:28:42 +00003154 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003155 char *p;
bellard6a00d602005-11-21 23:25:50 +00003156 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003157
3158 switch(*pch) {
3159 case '+':
3160 next();
aliguori376253e2009-03-05 23:01:23 +00003161 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003162 break;
3163 case '-':
3164 next();
aliguori376253e2009-03-05 23:01:23 +00003165 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003166 break;
3167 case '~':
3168 next();
aliguori376253e2009-03-05 23:01:23 +00003169 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003170 break;
3171 case '(':
3172 next();
aliguori376253e2009-03-05 23:01:23 +00003173 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003174 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003175 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003176 }
3177 next();
3178 break;
bellard81d09122004-07-14 17:21:37 +00003179 case '\'':
3180 pch++;
3181 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003182 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003183 n = *pch;
3184 pch++;
3185 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003186 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003187 next();
3188 break;
bellard9307c4c2004-04-04 12:57:25 +00003189 case '$':
3190 {
3191 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003192 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003193
bellard9307c4c2004-04-04 12:57:25 +00003194 pch++;
3195 q = buf;
3196 while ((*pch >= 'a' && *pch <= 'z') ||
3197 (*pch >= 'A' && *pch <= 'Z') ||
3198 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003199 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003200 if ((q - buf) < sizeof(buf) - 1)
3201 *q++ = *pch;
3202 pch++;
3203 }
blueswir1cd390082008-11-16 13:53:32 +00003204 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003205 pch++;
3206 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003207 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003208 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003209 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003210 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003211 }
3212 break;
3213 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003214 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003215 n = 0;
3216 break;
3217 default:
blueswir17743e582007-09-24 18:39:04 +00003218#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003219 n = strtoull(pch, &p, 0);
3220#else
bellard9307c4c2004-04-04 12:57:25 +00003221 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003222#endif
bellard9307c4c2004-04-04 12:57:25 +00003223 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003224 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003225 }
3226 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003227 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003228 pch++;
3229 break;
3230 }
3231 return n;
3232}
3233
3234
aliguori376253e2009-03-05 23:01:23 +00003235static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003236{
blueswir1c2efc952007-09-25 17:28:42 +00003237 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003238 int op;
ths3b46e622007-09-17 08:09:54 +00003239
aliguori376253e2009-03-05 23:01:23 +00003240 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003241 for(;;) {
3242 op = *pch;
3243 if (op != '*' && op != '/' && op != '%')
3244 break;
3245 next();
aliguori376253e2009-03-05 23:01:23 +00003246 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003247 switch(op) {
3248 default:
3249 case '*':
3250 val *= val2;
3251 break;
3252 case '/':
3253 case '%':
ths5fafdf22007-09-16 21:08:06 +00003254 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003255 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003256 if (op == '/')
3257 val /= val2;
3258 else
3259 val %= val2;
3260 break;
3261 }
3262 }
3263 return val;
3264}
3265
aliguori376253e2009-03-05 23:01:23 +00003266static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003267{
blueswir1c2efc952007-09-25 17:28:42 +00003268 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003269 int op;
bellard9307c4c2004-04-04 12:57:25 +00003270
aliguori376253e2009-03-05 23:01:23 +00003271 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003272 for(;;) {
3273 op = *pch;
3274 if (op != '&' && op != '|' && op != '^')
3275 break;
3276 next();
aliguori376253e2009-03-05 23:01:23 +00003277 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003278 switch(op) {
3279 default:
3280 case '&':
3281 val &= val2;
3282 break;
3283 case '|':
3284 val |= val2;
3285 break;
3286 case '^':
3287 val ^= val2;
3288 break;
3289 }
3290 }
3291 return val;
3292}
3293
aliguori376253e2009-03-05 23:01:23 +00003294static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003295{
blueswir1c2efc952007-09-25 17:28:42 +00003296 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003297 int op;
bellard9307c4c2004-04-04 12:57:25 +00003298
aliguori376253e2009-03-05 23:01:23 +00003299 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003300 for(;;) {
3301 op = *pch;
3302 if (op != '+' && op != '-')
3303 break;
3304 next();
aliguori376253e2009-03-05 23:01:23 +00003305 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003306 if (op == '+')
3307 val += val2;
3308 else
3309 val -= val2;
3310 }
3311 return val;
3312}
3313
aliguori376253e2009-03-05 23:01:23 +00003314static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003315{
3316 pch = *pp;
3317 if (setjmp(expr_env)) {
3318 *pp = pch;
3319 return -1;
3320 }
blueswir1cd390082008-11-16 13:53:32 +00003321 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003322 pch++;
aliguori376253e2009-03-05 23:01:23 +00003323 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003324 *pp = pch;
3325 return 0;
3326}
3327
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003328static int get_double(Monitor *mon, double *pval, const char **pp)
3329{
3330 const char *p = *pp;
3331 char *tailp;
3332 double d;
3333
3334 d = strtod(p, &tailp);
3335 if (tailp == p) {
3336 monitor_printf(mon, "Number expected\n");
3337 return -1;
3338 }
3339 if (d != d || d - d != 0) {
3340 /* NaN or infinity */
3341 monitor_printf(mon, "Bad number\n");
3342 return -1;
3343 }
3344 *pval = d;
3345 *pp = tailp;
3346 return 0;
3347}
3348
bellard9307c4c2004-04-04 12:57:25 +00003349static int get_str(char *buf, int buf_size, const char **pp)
3350{
3351 const char *p;
3352 char *q;
3353 int c;
3354
bellard81d09122004-07-14 17:21:37 +00003355 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003356 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003357 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003358 p++;
3359 if (*p == '\0') {
3360 fail:
bellard81d09122004-07-14 17:21:37 +00003361 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003362 *pp = p;
3363 return -1;
3364 }
bellard9307c4c2004-04-04 12:57:25 +00003365 if (*p == '\"') {
3366 p++;
3367 while (*p != '\0' && *p != '\"') {
3368 if (*p == '\\') {
3369 p++;
3370 c = *p++;
3371 switch(c) {
3372 case 'n':
3373 c = '\n';
3374 break;
3375 case 'r':
3376 c = '\r';
3377 break;
3378 case '\\':
3379 case '\'':
3380 case '\"':
3381 break;
3382 default:
3383 qemu_printf("unsupported escape code: '\\%c'\n", c);
3384 goto fail;
3385 }
3386 if ((q - buf) < buf_size - 1) {
3387 *q++ = c;
3388 }
3389 } else {
3390 if ((q - buf) < buf_size - 1) {
3391 *q++ = *p;
3392 }
3393 p++;
3394 }
3395 }
3396 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003397 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003398 goto fail;
3399 }
3400 p++;
3401 } else {
blueswir1cd390082008-11-16 13:53:32 +00003402 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003403 if ((q - buf) < buf_size - 1) {
3404 *q++ = *p;
3405 }
3406 p++;
3407 }
bellard9307c4c2004-04-04 12:57:25 +00003408 }
bellard81d09122004-07-14 17:21:37 +00003409 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003410 *pp = p;
3411 return 0;
3412}
3413
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003414/*
3415 * Store the command-name in cmdname, and return a pointer to
3416 * the remaining of the command string.
3417 */
3418static const char *get_command_name(const char *cmdline,
3419 char *cmdname, size_t nlen)
3420{
3421 size_t len;
3422 const char *p, *pstart;
3423
3424 p = cmdline;
3425 while (qemu_isspace(*p))
3426 p++;
3427 if (*p == '\0')
3428 return NULL;
3429 pstart = p;
3430 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3431 p++;
3432 len = p - pstart;
3433 if (len > nlen - 1)
3434 len = nlen - 1;
3435 memcpy(cmdname, pstart, len);
3436 cmdname[len] = '\0';
3437 return p;
3438}
3439
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003440/**
3441 * Read key of 'type' into 'key' and return the current
3442 * 'type' pointer.
3443 */
3444static char *key_get_info(const char *type, char **key)
3445{
3446 size_t len;
3447 char *p, *str;
3448
3449 if (*type == ',')
3450 type++;
3451
3452 p = strchr(type, ':');
3453 if (!p) {
3454 *key = NULL;
3455 return NULL;
3456 }
3457 len = p - type;
3458
3459 str = qemu_malloc(len + 1);
3460 memcpy(str, type, len);
3461 str[len] = '\0';
3462
3463 *key = str;
3464 return ++p;
3465}
3466
bellard9307c4c2004-04-04 12:57:25 +00003467static int default_fmt_format = 'x';
3468static int default_fmt_size = 4;
3469
3470#define MAX_ARGS 16
3471
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003472static int is_valid_option(const char *c, const char *typestr)
3473{
3474 char option[3];
3475
3476 option[0] = '-';
3477 option[1] = *c;
3478 option[2] = '\0';
3479
3480 typestr = strstr(typestr, option);
3481 return (typestr != NULL);
3482}
3483
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003484static const mon_cmd_t *monitor_find_command(const char *cmdname)
3485{
3486 const mon_cmd_t *cmd;
3487
3488 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
3489 if (compare_cmd(cmdname, cmd->name)) {
3490 return cmd;
3491 }
3492 }
3493
3494 return NULL;
3495}
3496
Anthony Liguoric227f092009-10-01 16:12:16 -05003497static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003498 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003499 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003500{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003501 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003502 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003503 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003504 char cmdname[256];
3505 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003506 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003507
3508#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003509 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003510#endif
ths3b46e622007-09-17 08:09:54 +00003511
bellard9307c4c2004-04-04 12:57:25 +00003512 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003513 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3514 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003515 return NULL;
ths3b46e622007-09-17 08:09:54 +00003516
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003517 cmd = monitor_find_command(cmdname);
3518 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003519 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003520 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003521 }
bellard9307c4c2004-04-04 12:57:25 +00003522
bellard9307c4c2004-04-04 12:57:25 +00003523 /* parse the parameters */
3524 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003525 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003526 typestr = key_get_info(typestr, &key);
3527 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003528 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003529 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003530 typestr++;
3531 switch(c) {
3532 case 'F':
bellard81d09122004-07-14 17:21:37 +00003533 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003534 case 's':
3535 {
3536 int ret;
ths3b46e622007-09-17 08:09:54 +00003537
blueswir1cd390082008-11-16 13:53:32 +00003538 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003539 p++;
3540 if (*typestr == '?') {
3541 typestr++;
3542 if (*p == '\0') {
3543 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003544 break;
bellard9307c4c2004-04-04 12:57:25 +00003545 }
3546 }
3547 ret = get_str(buf, sizeof(buf), &p);
3548 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003549 switch(c) {
3550 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003551 monitor_printf(mon, "%s: filename expected\n",
3552 cmdname);
bellard81d09122004-07-14 17:21:37 +00003553 break;
3554 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003555 monitor_printf(mon, "%s: block device name expected\n",
3556 cmdname);
bellard81d09122004-07-14 17:21:37 +00003557 break;
3558 default:
aliguori376253e2009-03-05 23:01:23 +00003559 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003560 break;
3561 }
bellard9307c4c2004-04-04 12:57:25 +00003562 goto fail;
3563 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003564 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003565 }
3566 break;
3567 case '/':
3568 {
3569 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003570
blueswir1cd390082008-11-16 13:53:32 +00003571 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003572 p++;
3573 if (*p == '/') {
3574 /* format found */
3575 p++;
3576 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003577 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003578 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003579 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003580 count = count * 10 + (*p - '0');
3581 p++;
3582 }
3583 }
3584 size = -1;
3585 format = -1;
3586 for(;;) {
3587 switch(*p) {
3588 case 'o':
3589 case 'd':
3590 case 'u':
3591 case 'x':
3592 case 'i':
3593 case 'c':
3594 format = *p++;
3595 break;
3596 case 'b':
3597 size = 1;
3598 p++;
3599 break;
3600 case 'h':
3601 size = 2;
3602 p++;
3603 break;
3604 case 'w':
3605 size = 4;
3606 p++;
3607 break;
3608 case 'g':
3609 case 'L':
3610 size = 8;
3611 p++;
3612 break;
3613 default:
3614 goto next;
3615 }
3616 }
3617 next:
blueswir1cd390082008-11-16 13:53:32 +00003618 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003619 monitor_printf(mon, "invalid char in format: '%c'\n",
3620 *p);
bellard9307c4c2004-04-04 12:57:25 +00003621 goto fail;
3622 }
bellard9307c4c2004-04-04 12:57:25 +00003623 if (format < 0)
3624 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003625 if (format != 'i') {
3626 /* for 'i', not specifying a size gives -1 as size */
3627 if (size < 0)
3628 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003629 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003630 }
bellard9307c4c2004-04-04 12:57:25 +00003631 default_fmt_format = format;
3632 } else {
3633 count = 1;
3634 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003635 if (format != 'i') {
3636 size = default_fmt_size;
3637 } else {
3638 size = -1;
3639 }
bellard9307c4c2004-04-04 12:57:25 +00003640 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003641 qdict_put(qdict, "count", qint_from_int(count));
3642 qdict_put(qdict, "format", qint_from_int(format));
3643 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003644 }
3645 break;
3646 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003647 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003648 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003649 {
blueswir1c2efc952007-09-25 17:28:42 +00003650 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003651
blueswir1cd390082008-11-16 13:53:32 +00003652 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003653 p++;
bellard34405572004-06-08 00:55:58 +00003654 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003655 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003656 if (*p == '\0') {
3657 typestr++;
3658 break;
3659 }
bellard34405572004-06-08 00:55:58 +00003660 } else {
3661 if (*p == '.') {
3662 p++;
blueswir1cd390082008-11-16 13:53:32 +00003663 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003664 p++;
bellard34405572004-06-08 00:55:58 +00003665 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003666 typestr++;
3667 break;
bellard34405572004-06-08 00:55:58 +00003668 }
3669 }
bellard13224a82006-07-14 22:03:35 +00003670 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003671 }
aliguori376253e2009-03-05 23:01:23 +00003672 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003673 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003674 /* Check if 'i' is greater than 32-bit */
3675 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3676 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3677 monitor_printf(mon, "integer is for 32-bit values\n");
3678 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003679 } else if (c == 'M') {
3680 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003681 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003682 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003683 }
3684 break;
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003685 case 'b':
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003686 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003687 {
3688 double val;
3689
3690 while (qemu_isspace(*p))
3691 p++;
3692 if (*typestr == '?') {
3693 typestr++;
3694 if (*p == '\0') {
3695 break;
3696 }
3697 }
3698 if (get_double(mon, &val, &p) < 0) {
3699 goto fail;
3700 }
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003701 if (c == 'b' && *p) {
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003702 switch (*p) {
3703 case 'K': case 'k':
3704 val *= 1 << 10; p++; break;
3705 case 'M': case 'm':
3706 val *= 1 << 20; p++; break;
3707 case 'G': case 'g':
3708 val *= 1 << 30; p++; break;
3709 }
3710 }
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003711 if (c == 'T' && p[0] && p[1] == 's') {
3712 switch (*p) {
3713 case 'm':
3714 val /= 1e3; p += 2; break;
3715 case 'u':
3716 val /= 1e6; p += 2; break;
3717 case 'n':
3718 val /= 1e9; p += 2; break;
3719 }
3720 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003721 if (*p && !qemu_isspace(*p)) {
3722 monitor_printf(mon, "Unknown unit suffix\n");
3723 goto fail;
3724 }
3725 qdict_put(qdict, key, qfloat_from_double(val));
3726 }
3727 break;
bellard9307c4c2004-04-04 12:57:25 +00003728 case '-':
3729 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003730 const char *tmp = p;
3731 int has_option, skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003732 /* option */
ths3b46e622007-09-17 08:09:54 +00003733
bellard9307c4c2004-04-04 12:57:25 +00003734 c = *typestr++;
3735 if (c == '\0')
3736 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003737 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003738 p++;
3739 has_option = 0;
3740 if (*p == '-') {
3741 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003742 if(c != *p) {
3743 if(!is_valid_option(p, typestr)) {
3744
3745 monitor_printf(mon, "%s: unsupported option -%c\n",
3746 cmdname, *p);
3747 goto fail;
3748 } else {
3749 skip_key = 1;
3750 }
bellard9307c4c2004-04-04 12:57:25 +00003751 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003752 if(skip_key) {
3753 p = tmp;
3754 } else {
3755 p++;
3756 has_option = 1;
3757 }
bellard9307c4c2004-04-04 12:57:25 +00003758 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003759 qdict_put(qdict, key, qint_from_int(has_option));
bellard9307c4c2004-04-04 12:57:25 +00003760 }
3761 break;
3762 default:
3763 bad_type:
aliguori376253e2009-03-05 23:01:23 +00003764 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00003765 goto fail;
3766 }
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003767 qemu_free(key);
3768 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003769 }
3770 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003771 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003772 p++;
3773 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003774 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3775 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00003776 goto fail;
3777 }
3778
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003779 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003780
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003781fail:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003782 qemu_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003783 return NULL;
3784}
3785
Luiz Capitulino8204a912009-11-18 23:05:31 -02003786static void monitor_print_error(Monitor *mon)
3787{
3788 qerror_print(mon->error);
3789 QDECREF(mon->error);
3790 mon->error = NULL;
3791}
3792
Adam Litke940cc302010-01-25 12:18:44 -06003793static int is_async_return(const QObject *data)
3794{
Luiz Capitulino82617d72010-01-27 18:01:17 -02003795 if (data && qobject_type(data) == QTYPE_QDICT) {
3796 return qdict_haskey(qobject_to_qdict(data), "__mon_async");
3797 }
3798
3799 return 0;
Adam Litke940cc302010-01-25 12:18:44 -06003800}
3801
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003802static void monitor_call_handler(Monitor *mon, const mon_cmd_t *cmd,
3803 const QDict *params)
3804{
3805 QObject *data = NULL;
3806
3807 cmd->mhandler.cmd_new(mon, params, &data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -02003808
Adam Litke940cc302010-01-25 12:18:44 -06003809 if (is_async_return(data)) {
3810 /*
3811 * Asynchronous commands have no initial return data but they can
3812 * generate errors. Data is returned via the async completion handler.
3813 */
3814 if (monitor_ctrl_mode(mon) && monitor_has_error(mon)) {
3815 monitor_protocol_emitter(mon, NULL);
3816 }
3817 } else if (monitor_ctrl_mode(mon)) {
Luiz Capitulino25b422e2009-11-26 22:58:59 -02003818 /* Monitor Protocol */
3819 monitor_protocol_emitter(mon, data);
3820 } else {
3821 /* User Protocol */
3822 if (data)
3823 cmd->user_print(mon, data);
3824 }
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003825
3826 qobject_decref(data);
3827}
3828
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003829static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003830{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003831 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003832 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003833
3834 qdict = qdict_new();
3835
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03003836 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003837 if (!cmd)
3838 goto out;
3839
3840 qemu_errors_to_mon(mon);
3841
Adam Litke940cc302010-01-25 12:18:44 -06003842 if (monitor_handler_is_async(cmd)) {
3843 user_async_cmd_handler(mon, cmd, qdict);
3844 } else if (monitor_handler_ported(cmd)) {
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003845 monitor_call_handler(mon, cmd, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003846 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03003847 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003848 }
3849
Luiz Capitulino8204a912009-11-18 23:05:31 -02003850 if (monitor_has_error(mon))
3851 monitor_print_error(mon);
3852
3853 qemu_errors_to_previous();
Luiz Capitulino13917be2009-10-07 13:41:54 -03003854
3855out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003856 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00003857}
3858
bellard81d09122004-07-14 17:21:37 +00003859static void cmd_completion(const char *name, const char *list)
3860{
3861 const char *p, *pstart;
3862 char cmd[128];
3863 int len;
3864
3865 p = list;
3866 for(;;) {
3867 pstart = p;
3868 p = strchr(p, '|');
3869 if (!p)
3870 p = pstart + strlen(pstart);
3871 len = p - pstart;
3872 if (len > sizeof(cmd) - 2)
3873 len = sizeof(cmd) - 2;
3874 memcpy(cmd, pstart, len);
3875 cmd[len] = '\0';
3876 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00003877 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00003878 }
3879 if (*p == '\0')
3880 break;
3881 p++;
3882 }
3883}
3884
3885static void file_completion(const char *input)
3886{
3887 DIR *ffs;
3888 struct dirent *d;
3889 char path[1024];
3890 char file[1024], file_prefix[1024];
3891 int input_path_len;
3892 const char *p;
3893
ths5fafdf22007-09-16 21:08:06 +00003894 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00003895 if (!p) {
3896 input_path_len = 0;
3897 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00003898 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00003899 } else {
3900 input_path_len = p - input + 1;
3901 memcpy(path, input, input_path_len);
3902 if (input_path_len > sizeof(path) - 1)
3903 input_path_len = sizeof(path) - 1;
3904 path[input_path_len] = '\0';
3905 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3906 }
3907#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00003908 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
3909 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00003910#endif
3911 ffs = opendir(path);
3912 if (!ffs)
3913 return;
3914 for(;;) {
3915 struct stat sb;
3916 d = readdir(ffs);
3917 if (!d)
3918 break;
3919 if (strstart(d->d_name, file_prefix, NULL)) {
3920 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00003921 if (input_path_len < sizeof(file))
3922 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3923 d->d_name);
bellard81d09122004-07-14 17:21:37 +00003924 /* stat the file to find out if it's a directory.
3925 * In that case add a slash to speed up typing long paths
3926 */
3927 stat(file, &sb);
3928 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00003929 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00003930 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00003931 }
3932 }
3933 closedir(ffs);
3934}
3935
aliguori51de9762009-03-05 23:00:43 +00003936static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00003937{
aliguori51de9762009-03-05 23:00:43 +00003938 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00003939 const char *input = opaque;
3940
3941 if (input[0] == '\0' ||
3942 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00003943 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00003944 }
3945}
3946
3947/* NOTE: this parser is an approximate form of the real command parser */
3948static void parse_cmdline(const char *cmdline,
3949 int *pnb_args, char **args)
3950{
3951 const char *p;
3952 int nb_args, ret;
3953 char buf[1024];
3954
3955 p = cmdline;
3956 nb_args = 0;
3957 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00003958 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00003959 p++;
3960 if (*p == '\0')
3961 break;
3962 if (nb_args >= MAX_ARGS)
3963 break;
3964 ret = get_str(buf, sizeof(buf), &p);
3965 args[nb_args] = qemu_strdup(buf);
3966 nb_args++;
3967 if (ret < 0)
3968 break;
3969 }
3970 *pnb_args = nb_args;
3971}
3972
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003973static const char *next_arg_type(const char *typestr)
3974{
3975 const char *p = strchr(typestr, ':');
3976 return (p != NULL ? ++p : typestr);
3977}
3978
aliguori4c36ba32009-03-05 23:01:37 +00003979static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00003980{
3981 const char *cmdname;
3982 char *args[MAX_ARGS];
3983 int nb_args, i, len;
3984 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05003985 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00003986 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00003987
3988 parse_cmdline(cmdline, &nb_args, args);
3989#ifdef DEBUG_COMPLETION
3990 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00003991 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00003992 }
3993#endif
3994
3995 /* if the line ends with a space, it means we want to complete the
3996 next arg */
3997 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00003998 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
bellard81d09122004-07-14 17:21:37 +00003999 if (nb_args >= MAX_ARGS)
4000 return;
4001 args[nb_args++] = qemu_strdup("");
4002 }
4003 if (nb_args <= 1) {
4004 /* command completion */
4005 if (nb_args == 0)
4006 cmdname = "";
4007 else
4008 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00004009 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00004010 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00004011 cmd_completion(cmdname, cmd->name);
4012 }
4013 } else {
4014 /* find the command */
aliguori376253e2009-03-05 23:01:23 +00004015 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00004016 if (compare_cmd(args[0], cmd->name))
4017 goto found;
4018 }
4019 return;
4020 found:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004021 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00004022 for(i = 0; i < nb_args - 2; i++) {
4023 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004024 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004025 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004026 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004027 }
4028 }
4029 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00004030 if (*ptype == '-' && ptype[1] != '\0') {
4031 ptype += 2;
4032 }
bellard81d09122004-07-14 17:21:37 +00004033 switch(*ptype) {
4034 case 'F':
4035 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00004036 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004037 file_completion(str);
4038 break;
4039 case 'B':
4040 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00004041 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004042 bdrv_iterate(block_completion_it, (void *)str);
4043 break;
bellard7fe48482004-10-09 18:08:01 +00004044 case 's':
4045 /* XXX: more generic ? */
4046 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00004047 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00004048 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4049 cmd_completion(str, cmd->name);
4050 }
bellard64866c32006-05-07 18:03:31 +00004051 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00004052 char *sep = strrchr(str, '-');
4053 if (sep)
4054 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00004055 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00004056 for(key = key_defs; key->name != NULL; key++) {
4057 cmd_completion(str, key->name);
4058 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02004059 } else if (!strcmp(cmd->name, "help|?")) {
4060 readline_set_completion_index(cur_mon->rs, strlen(str));
4061 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4062 cmd_completion(str, cmd->name);
4063 }
bellard7fe48482004-10-09 18:08:01 +00004064 }
4065 break;
bellard81d09122004-07-14 17:21:37 +00004066 default:
4067 break;
4068 }
4069 }
4070 for(i = 0; i < nb_args; i++)
4071 qemu_free(args[i]);
4072}
4073
aliguori731b0362009-03-05 23:01:42 +00004074static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004075{
aliguori731b0362009-03-05 23:01:42 +00004076 Monitor *mon = opaque;
4077
Jan Kiszkac62313b2009-12-04 14:05:29 +01004078 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00004079}
4080
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004081typedef struct CmdArgs {
4082 QString *name;
4083 int type;
4084 int flag;
4085 int optional;
4086} CmdArgs;
4087
4088static int check_opt(const CmdArgs *cmd_args, const char *name, QDict *args)
4089{
4090 if (!cmd_args->optional) {
4091 qemu_error_new(QERR_MISSING_PARAMETER, name);
4092 return -1;
4093 }
4094
4095 if (cmd_args->type == '-') {
4096 /* handlers expect a value, they need to be changed */
4097 qdict_put(args, name, qint_from_int(0));
4098 }
4099
4100 return 0;
4101}
4102
4103static int check_arg(const CmdArgs *cmd_args, QDict *args)
4104{
4105 QObject *value;
4106 const char *name;
4107
4108 name = qstring_get_str(cmd_args->name);
4109
4110 if (!args) {
4111 return check_opt(cmd_args, name, args);
4112 }
4113
4114 value = qdict_get(args, name);
4115 if (!value) {
4116 return check_opt(cmd_args, name, args);
4117 }
4118
4119 switch (cmd_args->type) {
4120 case 'F':
4121 case 'B':
4122 case 's':
4123 if (qobject_type(value) != QTYPE_QSTRING) {
4124 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "string");
4125 return -1;
4126 }
4127 break;
4128 case '/': {
4129 int i;
4130 const char *keys[] = { "count", "format", "size", NULL };
4131
4132 for (i = 0; keys[i]; i++) {
4133 QObject *obj = qdict_get(args, keys[i]);
4134 if (!obj) {
4135 qemu_error_new(QERR_MISSING_PARAMETER, name);
4136 return -1;
4137 }
4138 if (qobject_type(obj) != QTYPE_QINT) {
4139 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "int");
4140 return -1;
4141 }
4142 }
4143 break;
4144 }
4145 case 'i':
4146 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02004147 case 'M':
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004148 if (qobject_type(value) != QTYPE_QINT) {
4149 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "int");
4150 return -1;
4151 }
4152 break;
Markus Armbruster3350a4d2010-01-25 14:23:03 +01004153 case 'b':
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01004154 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01004155 if (qobject_type(value) != QTYPE_QINT && qobject_type(value) != QTYPE_QFLOAT) {
4156 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "number");
4157 return -1;
4158 }
4159 break;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004160 case '-':
4161 if (qobject_type(value) != QTYPE_QINT &&
4162 qobject_type(value) != QTYPE_QBOOL) {
4163 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "bool");
4164 return -1;
4165 }
4166 if (qobject_type(value) == QTYPE_QBOOL) {
4167 /* handlers expect a QInt, they need to be changed */
4168 qdict_put(args, name,
4169 qint_from_int(qbool_get_int(qobject_to_qbool(value))));
4170 }
4171 break;
4172 default:
4173 /* impossible */
4174 abort();
4175 }
4176
4177 return 0;
4178}
4179
4180static void cmd_args_init(CmdArgs *cmd_args)
4181{
4182 cmd_args->name = qstring_new();
4183 cmd_args->type = cmd_args->flag = cmd_args->optional = 0;
4184}
4185
4186/*
4187 * This is not trivial, we have to parse Monitor command's argument
4188 * type syntax to be able to check the arguments provided by clients.
4189 *
4190 * In the near future we will be using an array for that and will be
4191 * able to drop all this parsing...
4192 */
4193static int monitor_check_qmp_args(const mon_cmd_t *cmd, QDict *args)
4194{
4195 int err;
4196 const char *p;
4197 CmdArgs cmd_args;
4198
Blue Swirldd5121b2009-12-04 20:52:02 +00004199 if (cmd->args_type == NULL) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004200 return (qdict_size(args) == 0 ? 0 : -1);
4201 }
4202
4203 err = 0;
4204 cmd_args_init(&cmd_args);
4205
4206 for (p = cmd->args_type;; p++) {
4207 if (*p == ':') {
4208 cmd_args.type = *++p;
4209 p++;
4210 if (cmd_args.type == '-') {
4211 cmd_args.flag = *p++;
4212 cmd_args.optional = 1;
4213 } else if (*p == '?') {
4214 cmd_args.optional = 1;
4215 p++;
4216 }
4217
4218 assert(*p == ',' || *p == '\0');
4219 err = check_arg(&cmd_args, args);
4220
4221 QDECREF(cmd_args.name);
4222 cmd_args_init(&cmd_args);
4223
4224 if (err < 0) {
4225 break;
4226 }
4227 } else {
4228 qstring_append_chr(cmd_args.name, *p);
4229 }
4230
4231 if (*p == '\0') {
4232 break;
4233 }
4234 }
4235
4236 QDECREF(cmd_args.name);
4237 return err;
4238}
4239
Luiz Capitulino09069b12010-02-04 18:10:06 -02004240static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4241{
4242 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4243 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4244}
4245
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004246static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4247{
4248 int err;
4249 QObject *obj;
4250 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004251 const mon_cmd_t *cmd;
4252 Monitor *mon = cur_mon;
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004253 const char *cmd_name, *info_item;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004254
4255 args = NULL;
4256 qemu_errors_to_mon(mon);
4257
4258 obj = json_parser_parse(tokens, NULL);
4259 if (!obj) {
4260 // FIXME: should be triggered in json_parser_parse()
4261 qemu_error_new(QERR_JSON_PARSING);
4262 goto err_out;
4263 } else if (qobject_type(obj) != QTYPE_QDICT) {
4264 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "object");
4265 qobject_decref(obj);
4266 goto err_out;
4267 }
4268
4269 input = qobject_to_qdict(obj);
4270
4271 mon->mc->id = qdict_get(input, "id");
4272 qobject_incref(mon->mc->id);
4273
4274 obj = qdict_get(input, "execute");
4275 if (!obj) {
4276 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4277 goto err_input;
4278 } else if (qobject_type(obj) != QTYPE_QSTRING) {
4279 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "string");
4280 goto err_input;
4281 }
4282
4283 cmd_name = qstring_get_str(qobject_to_qstring(obj));
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004284
Luiz Capitulino09069b12010-02-04 18:10:06 -02004285 if (invalid_qmp_mode(mon, cmd_name)) {
4286 qemu_error_new(QERR_COMMAND_NOT_FOUND, cmd_name);
4287 goto err_input;
4288 }
4289
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004290 /*
4291 * XXX: We need this special case until we get info handlers
4292 * converted into 'query-' commands
4293 */
4294 if (compare_cmd(cmd_name, "info")) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004295 qemu_error_new(QERR_COMMAND_NOT_FOUND, cmd_name);
4296 goto err_input;
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004297 } else if (strstart(cmd_name, "query-", &info_item)) {
4298 cmd = monitor_find_command("info");
4299 qdict_put_obj(input, "arguments",
4300 qobject_from_jsonf("{ 'item': %s }", info_item));
4301 } else {
4302 cmd = monitor_find_command(cmd_name);
Luiz Capitulino43e713c2009-12-18 13:24:59 -02004303 if (!cmd || !monitor_handler_ported(cmd)) {
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004304 qemu_error_new(QERR_COMMAND_NOT_FOUND, cmd_name);
4305 goto err_input;
4306 }
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004307 }
4308
4309 obj = qdict_get(input, "arguments");
4310 if (!obj) {
4311 args = qdict_new();
4312 } else {
4313 args = qobject_to_qdict(obj);
4314 QINCREF(args);
4315 }
4316
4317 QDECREF(input);
4318
4319 err = monitor_check_qmp_args(cmd, args);
4320 if (err < 0) {
4321 goto err_out;
4322 }
4323
Adam Litke940cc302010-01-25 12:18:44 -06004324 if (monitor_handler_is_async(cmd)) {
4325 qmp_async_cmd_handler(mon, cmd, args);
4326 } else {
4327 monitor_call_handler(mon, cmd, args);
4328 }
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004329 goto out;
4330
4331err_input:
4332 QDECREF(input);
4333err_out:
4334 monitor_protocol_emitter(mon, NULL);
4335out:
4336 QDECREF(args);
4337 qemu_errors_to_previous();
4338}
4339
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004340/**
4341 * monitor_control_read(): Read and handle QMP input
4342 */
4343static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4344{
4345 Monitor *old_mon = cur_mon;
4346
4347 cur_mon = opaque;
4348
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004349 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004350
4351 cur_mon = old_mon;
4352}
4353
aliguori731b0362009-03-05 23:01:42 +00004354static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004355{
aliguori731b0362009-03-05 23:01:42 +00004356 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004357 int i;
aliguori376253e2009-03-05 23:01:23 +00004358
aliguori731b0362009-03-05 23:01:42 +00004359 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004360
aliguoricde76ee2009-03-05 23:01:51 +00004361 if (cur_mon->rs) {
4362 for (i = 0; i < size; i++)
4363 readline_handle_byte(cur_mon->rs, buf[i]);
4364 } else {
4365 if (size == 0 || buf[size - 1] != 0)
4366 monitor_printf(cur_mon, "corrupted command\n");
4367 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004368 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00004369 }
aliguori731b0362009-03-05 23:01:42 +00004370
4371 cur_mon = old_mon;
4372}
aliguorid8f44602008-10-06 13:52:44 +00004373
aliguori376253e2009-03-05 23:01:23 +00004374static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004375{
aliguori731b0362009-03-05 23:01:42 +00004376 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004377 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00004378 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00004379}
4380
aliguoricde76ee2009-03-05 23:01:51 +00004381int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004382{
aliguoricde76ee2009-03-05 23:01:51 +00004383 if (!mon->rs)
4384 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00004385 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00004386 return 0;
aliguorid8f44602008-10-06 13:52:44 +00004387}
4388
aliguori376253e2009-03-05 23:01:23 +00004389void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004390{
aliguoricde76ee2009-03-05 23:01:51 +00004391 if (!mon->rs)
4392 return;
aliguori731b0362009-03-05 23:01:42 +00004393 if (--mon->suspend_cnt == 0)
4394 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00004395}
4396
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004397static QObject *get_qmp_greeting(void)
4398{
4399 QObject *ver;
4400
4401 do_info_version(NULL, &ver);
4402 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4403}
4404
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004405/**
4406 * monitor_control_event(): Print QMP gretting
4407 */
4408static void monitor_control_event(void *opaque, int event)
4409{
4410 if (event == CHR_EVENT_OPENED) {
4411 QObject *data;
4412 Monitor *mon = opaque;
4413
Luiz Capitulino4a7e1192010-02-04 18:10:05 -02004414 mon->mc->command_mode = 0;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004415 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
4416
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004417 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004418 assert(data != NULL);
4419
4420 monitor_json_emitter(mon, data);
4421 qobject_decref(data);
4422 }
4423}
4424
aliguori731b0362009-03-05 23:01:42 +00004425static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00004426{
aliguori376253e2009-03-05 23:01:23 +00004427 Monitor *mon = opaque;
4428
aliguori2724b182009-03-05 23:01:47 +00004429 switch (event) {
4430 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004431 mon->mux_out = 0;
4432 if (mon->reset_seen) {
4433 readline_restart(mon->rs);
4434 monitor_resume(mon);
4435 monitor_flush(mon);
4436 } else {
4437 mon->suspend_cnt = 0;
4438 }
aliguori2724b182009-03-05 23:01:47 +00004439 break;
ths86e94de2007-01-05 22:01:59 +00004440
aliguori2724b182009-03-05 23:01:47 +00004441 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004442 if (mon->reset_seen) {
4443 if (mon->suspend_cnt == 0) {
4444 monitor_printf(mon, "\n");
4445 }
4446 monitor_flush(mon);
4447 monitor_suspend(mon);
4448 } else {
4449 mon->suspend_cnt++;
4450 }
4451 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00004452 break;
4453
Amit Shahb6b8df52009-10-07 18:31:16 +05304454 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00004455 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4456 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004457 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00004458 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004459 }
4460 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00004461 break;
4462 }
ths86e94de2007-01-05 22:01:59 +00004463}
4464
aliguori76655d62009-03-06 20:27:37 +00004465
4466/*
4467 * Local variables:
4468 * c-indent-level: 4
4469 * c-basic-offset: 4
4470 * tab-width: 8
4471 * End:
4472 */
4473
aliguori731b0362009-03-05 23:01:42 +00004474void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004475{
aliguori731b0362009-03-05 23:01:42 +00004476 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00004477 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00004478
4479 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00004480 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00004481 is_first_init = 0;
4482 }
aliguori87127162009-03-05 23:01:29 +00004483
4484 mon = qemu_mallocz(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00004485
aliguori87127162009-03-05 23:01:29 +00004486 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00004487 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00004488 if (flags & MONITOR_USE_READLINE) {
4489 mon->rs = readline_init(mon, monitor_find_completion);
4490 monitor_read_command(mon, 0);
4491 }
aliguori87127162009-03-05 23:01:29 +00004492
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004493 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004494 mon->mc = qemu_mallocz(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004495 /* Control mode requires special handlers */
4496 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4497 monitor_control_event, mon);
4498 } else {
4499 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4500 monitor_event, mon);
4501 }
aliguori87127162009-03-05 23:01:29 +00004502
Blue Swirl72cf2d42009-09-12 07:36:22 +00004503 QLIST_INSERT_HEAD(&mon_list, mon, entry);
aliguori731b0362009-03-05 23:01:42 +00004504 if (!cur_mon || (flags & MONITOR_IS_DEFAULT))
aliguori87127162009-03-05 23:01:29 +00004505 cur_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00004506}
4507
aliguori376253e2009-03-05 23:01:23 +00004508static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004509{
aliguoribb5fc202009-03-05 23:01:15 +00004510 BlockDriverState *bs = opaque;
4511 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00004512
aliguoribb5fc202009-03-05 23:01:15 +00004513 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00004514 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00004515 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00004516 }
aliguori731b0362009-03-05 23:01:42 +00004517 if (mon->password_completion_cb)
4518 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00004519
aliguori731b0362009-03-05 23:01:42 +00004520 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00004521}
aliguoric0f4ce72009-03-05 23:01:01 +00004522
aliguori376253e2009-03-05 23:01:23 +00004523void monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
aliguoribb5fc202009-03-05 23:01:15 +00004524 BlockDriverCompletionFunc *completion_cb,
4525 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00004526{
aliguoricde76ee2009-03-05 23:01:51 +00004527 int err;
4528
aliguoribb5fc202009-03-05 23:01:15 +00004529 if (!bdrv_key_required(bs)) {
4530 if (completion_cb)
4531 completion_cb(opaque, 0);
4532 return;
4533 }
aliguoric0f4ce72009-03-05 23:01:01 +00004534
Luiz Capitulino94171e12009-12-07 21:37:00 +01004535 if (monitor_ctrl_mode(mon)) {
4536 qemu_error_new(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
4537 return;
4538 }
4539
aliguori376253e2009-03-05 23:01:23 +00004540 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4541 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00004542
aliguori731b0362009-03-05 23:01:42 +00004543 mon->password_completion_cb = completion_cb;
4544 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00004545
aliguoricde76ee2009-03-05 23:01:51 +00004546 err = monitor_read_password(mon, bdrv_password_cb, bs);
4547
4548 if (err && completion_cb)
4549 completion_cb(opaque, err);
aliguoric0f4ce72009-03-05 23:01:01 +00004550}
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02004551
4552typedef struct QemuErrorSink QemuErrorSink;
4553struct QemuErrorSink {
4554 enum {
4555 ERR_SINK_FILE,
4556 ERR_SINK_MONITOR,
4557 } dest;
4558 union {
4559 FILE *fp;
4560 Monitor *mon;
4561 };
4562 QemuErrorSink *previous;
4563};
4564
Blue Swirl528e93a2009-08-31 15:14:40 +00004565static QemuErrorSink *qemu_error_sink;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02004566
4567void qemu_errors_to_file(FILE *fp)
4568{
4569 QemuErrorSink *sink;
4570
4571 sink = qemu_mallocz(sizeof(*sink));
4572 sink->dest = ERR_SINK_FILE;
4573 sink->fp = fp;
4574 sink->previous = qemu_error_sink;
4575 qemu_error_sink = sink;
4576}
4577
4578void qemu_errors_to_mon(Monitor *mon)
4579{
4580 QemuErrorSink *sink;
4581
4582 sink = qemu_mallocz(sizeof(*sink));
4583 sink->dest = ERR_SINK_MONITOR;
4584 sink->mon = mon;
4585 sink->previous = qemu_error_sink;
4586 qemu_error_sink = sink;
4587}
4588
4589void qemu_errors_to_previous(void)
4590{
4591 QemuErrorSink *sink;
4592
4593 assert(qemu_error_sink != NULL);
4594 sink = qemu_error_sink;
4595 qemu_error_sink = sink->previous;
4596 qemu_free(sink);
4597}
4598
4599void qemu_error(const char *fmt, ...)
4600{
4601 va_list args;
4602
4603 assert(qemu_error_sink != NULL);
4604 switch (qemu_error_sink->dest) {
4605 case ERR_SINK_FILE:
4606 va_start(args, fmt);
4607 vfprintf(qemu_error_sink->fp, fmt, args);
4608 va_end(args);
4609 break;
4610 case ERR_SINK_MONITOR:
4611 va_start(args, fmt);
4612 monitor_vprintf(qemu_error_sink->mon, fmt, args);
4613 va_end(args);
4614 break;
4615 }
4616}
Luiz Capitulino8204a912009-11-18 23:05:31 -02004617
4618void qemu_error_internal(const char *file, int linenr, const char *func,
4619 const char *fmt, ...)
4620{
4621 va_list va;
4622 QError *qerror;
4623
4624 assert(qemu_error_sink != NULL);
4625
4626 va_start(va, fmt);
4627 qerror = qerror_from_info(file, linenr, func, fmt, &va);
4628 va_end(va);
4629
4630 switch (qemu_error_sink->dest) {
4631 case ERR_SINK_FILE:
4632 qerror_print(qerror);
4633 QDECREF(qerror);
4634 break;
4635 case ERR_SINK_MONITOR:
4636 assert(qemu_error_sink->mon->error == NULL);
4637 qemu_error_sink->mon->error = qerror;
4638 break;
4639 }
4640}