blob: 37a2a48daf076732904e7165c7ebda8b244527df [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 Capitulino97536cf2010-02-10 23:49:47 -0200101 int (*cmd_new_ret)(Monitor *mon, const QDict *params, QObject **ret_data);
Luiz Capitulino910df892009-10-07 13:41:51 -0300102 union {
103 void (*info)(Monitor *mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300104 void (*info_new)(Monitor *mon, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600105 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300106 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -0300107 void (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600108 int (*cmd_async)(Monitor *mon, const QDict *params,
109 MonitorCompletion *cb, void *opaque);
Luiz Capitulino910df892009-10-07 13:41:51 -0300110 } mhandler;
Adam Litke940cc302010-01-25 12:18:44 -0600111 int async;
Anthony Liguoric227f092009-10-01 16:12:16 -0500112} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +0000113
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100114/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -0500115typedef struct mon_fd_t mon_fd_t;
116struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100117 char *name;
118 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -0500119 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100120};
121
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200122typedef struct MonitorControl {
123 QObject *id;
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200124 int print_enabled;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200125 JSONMessageParser parser;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200126 int command_mode;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200127} MonitorControl;
128
aliguori87127162009-03-05 23:01:29 +0000129struct Monitor {
130 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200131 int mux_out;
132 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000133 int flags;
134 int suspend_cnt;
135 uint8_t outbuf[1024];
136 int outbuf_index;
137 ReadLineState *rs;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200138 MonitorControl *mc;
aliguori731b0362009-03-05 23:01:42 +0000139 CPUState *mon_cpu;
140 BlockDriverCompletionFunc *password_completion_cb;
141 void *password_opaque;
Luiz Capitulino8204a912009-11-18 23:05:31 -0200142 QError *error;
Anthony Liguoric227f092009-10-01 16:12:16 -0500143 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000144 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000145};
146
Blue Swirl72cf2d42009-09-12 07:36:22 +0000147static QLIST_HEAD(mon_list, Monitor) mon_list;
bellard7e2515e2004-08-01 21:52:19 +0000148
Anthony Liguoric227f092009-10-01 16:12:16 -0500149static const mon_cmd_t mon_cmds[];
150static const mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000151
aliguori87127162009-03-05 23:01:29 +0000152Monitor *cur_mon = NULL;
aliguori376253e2009-03-05 23:01:23 +0000153
aliguori731b0362009-03-05 23:01:42 +0000154static void monitor_command_cb(Monitor *mon, const char *cmdline,
155 void *opaque);
aliguori83ab7952008-08-19 14:44:22 +0000156
Luiz Capitulino09069b12010-02-04 18:10:06 -0200157static inline int qmp_cmd_mode(const Monitor *mon)
158{
159 return (mon->mc ? mon->mc->command_mode : 0);
160}
161
Luiz Capitulino418173c2009-11-26 22:58:51 -0200162/* Return true if in control mode, false otherwise */
163static inline int monitor_ctrl_mode(const Monitor *mon)
164{
165 return (mon->flags & MONITOR_USE_CONTROL);
166}
167
aliguori731b0362009-03-05 23:01:42 +0000168static void monitor_read_command(Monitor *mon, int show_prompt)
169{
Luiz Capitulino183e6e52009-12-14 18:53:23 -0200170 if (!mon->rs)
171 return;
172
aliguori731b0362009-03-05 23:01:42 +0000173 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
174 if (show_prompt)
175 readline_show_prompt(mon->rs);
176}
bellard6a00d602005-11-21 23:25:50 +0000177
aliguoricde76ee2009-03-05 23:01:51 +0000178static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
179 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000180{
Luiz Capitulino94171e12009-12-07 21:37:00 +0100181 if (monitor_ctrl_mode(mon)) {
182 qemu_error_new(QERR_MISSING_PARAMETER, "password");
183 return -EINVAL;
184 } else if (mon->rs) {
aliguoricde76ee2009-03-05 23:01:51 +0000185 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
186 /* prompt is printed on return from the command handler */
187 return 0;
188 } else {
189 monitor_printf(mon, "terminal does not support password prompting\n");
190 return -ENOTTY;
191 }
aliguoribb5fc202009-03-05 23:01:15 +0000192}
193
aliguori376253e2009-03-05 23:01:23 +0000194void monitor_flush(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000195{
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200196 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
aliguori731b0362009-03-05 23:01:42 +0000197 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
198 mon->outbuf_index = 0;
bellard7e2515e2004-08-01 21:52:19 +0000199 }
200}
201
202/* flush at every end of line or if the buffer is full */
aliguori376253e2009-03-05 23:01:23 +0000203static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000204{
ths60fe76f2007-12-16 03:02:09 +0000205 char c;
aliguori731b0362009-03-05 23:01:42 +0000206
bellard7e2515e2004-08-01 21:52:19 +0000207 for(;;) {
208 c = *str++;
209 if (c == '\0')
210 break;
bellard7ba12602006-07-14 20:26:42 +0000211 if (c == '\n')
aliguori731b0362009-03-05 23:01:42 +0000212 mon->outbuf[mon->outbuf_index++] = '\r';
213 mon->outbuf[mon->outbuf_index++] = c;
214 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
215 || c == '\n')
aliguori376253e2009-03-05 23:01:23 +0000216 monitor_flush(mon);
bellard7e2515e2004-08-01 21:52:19 +0000217 }
218}
219
aliguori376253e2009-03-05 23:01:23 +0000220void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000221{
Luiz Capitulino2daa1192009-12-14 18:53:24 -0200222 if (!mon)
223 return;
224
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200225 if (mon->mc && !mon->mc->print_enabled) {
226 qemu_error_new(QERR_UNDEFINED_ERROR);
227 } else {
228 char buf[4096];
229 vsnprintf(buf, sizeof(buf), fmt, ap);
230 monitor_puts(mon, buf);
231 }
bellard7e2515e2004-08-01 21:52:19 +0000232}
233
aliguori376253e2009-03-05 23:01:23 +0000234void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000235{
236 va_list ap;
237 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000238 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000239 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000240}
241
aliguori376253e2009-03-05 23:01:23 +0000242void monitor_print_filename(Monitor *mon, const char *filename)
thsfef30742006-12-22 14:11:32 +0000243{
244 int i;
245
246 for (i = 0; filename[i]; i++) {
aliguori28a76be2009-03-06 20:27:40 +0000247 switch (filename[i]) {
248 case ' ':
249 case '"':
250 case '\\':
251 monitor_printf(mon, "\\%c", filename[i]);
252 break;
253 case '\t':
254 monitor_printf(mon, "\\t");
255 break;
256 case '\r':
257 monitor_printf(mon, "\\r");
258 break;
259 case '\n':
260 monitor_printf(mon, "\\n");
261 break;
262 default:
263 monitor_printf(mon, "%c", filename[i]);
264 break;
265 }
thsfef30742006-12-22 14:11:32 +0000266 }
267}
268
bellard7fe48482004-10-09 18:08:01 +0000269static int monitor_fprintf(FILE *stream, const char *fmt, ...)
270{
271 va_list ap;
272 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000273 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000274 va_end(ap);
275 return 0;
276}
277
Luiz Capitulino13c74252009-10-07 13:41:55 -0300278static void monitor_user_noop(Monitor *mon, const QObject *data) { }
279
Luiz Capitulino13917be2009-10-07 13:41:54 -0300280static inline int monitor_handler_ported(const mon_cmd_t *cmd)
281{
282 return cmd->user_print != NULL;
283}
284
Adam Litke940cc302010-01-25 12:18:44 -0600285static inline bool monitor_handler_is_async(const mon_cmd_t *cmd)
286{
287 return cmd->async != 0;
288}
289
Luiz Capitulino8204a912009-11-18 23:05:31 -0200290static inline int monitor_has_error(const Monitor *mon)
291{
292 return mon->error != NULL;
293}
294
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200295static void monitor_json_emitter(Monitor *mon, const QObject *data)
296{
297 QString *json;
298
299 json = qobject_to_json(data);
300 assert(json != NULL);
301
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200302 mon->mc->print_enabled = 1;
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200303 monitor_printf(mon, "%s\n", qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200304 mon->mc->print_enabled = 0;
305
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200306 QDECREF(json);
307}
308
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200309static void monitor_protocol_emitter(Monitor *mon, QObject *data)
310{
311 QDict *qmp;
312
313 qmp = qdict_new();
314
315 if (!monitor_has_error(mon)) {
316 /* success response */
317 if (data) {
318 qobject_incref(data);
319 qdict_put_obj(qmp, "return", data);
320 } else {
Luiz Capitulino0abc6572009-12-18 13:25:00 -0200321 /* return an empty QDict by default */
322 qdict_put(qmp, "return", qdict_new());
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200323 }
324 } else {
325 /* error response */
Markus Armbruster77e595e2009-12-07 21:37:16 +0100326 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200327 qdict_put(qmp, "error", mon->error->error);
328 QINCREF(mon->error->error);
329 QDECREF(mon->error);
330 mon->error = NULL;
331 }
332
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200333 if (mon->mc->id) {
334 qdict_put_obj(qmp, "id", mon->mc->id);
335 mon->mc->id = NULL;
336 }
337
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200338 monitor_json_emitter(mon, QOBJECT(qmp));
339 QDECREF(qmp);
340}
341
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200342static void timestamp_put(QDict *qdict)
343{
344 int err;
345 QObject *obj;
Blue Swirld08d6f02009-12-04 18:06:39 +0000346 qemu_timeval tv;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200347
Blue Swirld08d6f02009-12-04 18:06:39 +0000348 err = qemu_gettimeofday(&tv);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200349 if (err < 0)
350 return;
351
352 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
353 "'microseconds': %" PRId64 " }",
354 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200355 qdict_put_obj(qdict, "timestamp", obj);
356}
357
358/**
359 * monitor_protocol_event(): Generate a Monitor event
360 *
361 * Event-specific data can be emitted through the (optional) 'data' parameter.
362 */
363void monitor_protocol_event(MonitorEvent event, QObject *data)
364{
365 QDict *qmp;
366 const char *event_name;
Adam Litkef039a562010-01-15 08:34:02 -0600367 Monitor *mon;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200368
Blue Swirl242cd002009-12-04 18:05:45 +0000369 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200370
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200371 switch (event) {
Blue Swirl242cd002009-12-04 18:05:45 +0000372 case QEVENT_DEBUG:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200373 event_name = "DEBUG";
374 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000375 case QEVENT_SHUTDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200376 event_name = "SHUTDOWN";
377 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000378 case QEVENT_RESET:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200379 event_name = "RESET";
380 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000381 case QEVENT_POWERDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200382 event_name = "POWERDOWN";
383 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000384 case QEVENT_STOP:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200385 event_name = "STOP";
386 break;
Luiz Capitulino586153d2010-01-14 14:50:57 -0200387 case QEVENT_VNC_CONNECTED:
388 event_name = "VNC_CONNECTED";
389 break;
Luiz Capitulino0d2ed462010-01-14 14:50:59 -0200390 case QEVENT_VNC_INITIALIZED:
391 event_name = "VNC_INITIALIZED";
392 break;
Luiz Capitulino0d72f3d2010-01-14 14:50:58 -0200393 case QEVENT_VNC_DISCONNECTED:
394 event_name = "VNC_DISCONNECTED";
395 break;
Luiz Capitulinoaa1db6e2010-02-03 12:41:00 -0200396 case QEVENT_BLOCK_IO_ERROR:
397 event_name = "BLOCK_IO_ERROR";
398 break;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200399 default:
400 abort();
401 break;
402 }
403
404 qmp = qdict_new();
405 timestamp_put(qmp);
406 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200407 if (data) {
408 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200409 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200410 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200411
Adam Litkef039a562010-01-15 08:34:02 -0600412 QLIST_FOREACH(mon, &mon_list, entry) {
Luiz Capitulino09069b12010-02-04 18:10:06 -0200413 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
Luiz Capitulino23fabed2010-01-20 10:37:59 -0200414 monitor_json_emitter(mon, QOBJECT(qmp));
415 }
Adam Litkef039a562010-01-15 08:34:02 -0600416 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200417 QDECREF(qmp);
418}
419
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200420static int do_qmp_capabilities(Monitor *mon, const QDict *params,
421 QObject **ret_data)
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200422{
423 /* Will setup QMP capabilities in the future */
424 if (monitor_ctrl_mode(mon)) {
425 mon->mc->command_mode = 1;
426 }
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200427
428 return 0;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200429}
430
bellard9dc39cb2004-03-14 21:38:27 +0000431static int compare_cmd(const char *name, const char *list)
432{
433 const char *p, *pstart;
434 int len;
435 len = strlen(name);
436 p = list;
437 for(;;) {
438 pstart = p;
439 p = strchr(p, '|');
440 if (!p)
441 p = pstart + strlen(pstart);
442 if ((p - pstart) == len && !memcmp(pstart, name, len))
443 return 1;
444 if (*p == '\0')
445 break;
446 p++;
447 }
448 return 0;
449}
450
Anthony Liguoric227f092009-10-01 16:12:16 -0500451static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000452 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000453{
Anthony Liguoric227f092009-10-01 16:12:16 -0500454 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000455
456 for(cmd = cmds; cmd->name != NULL; cmd++) {
457 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000458 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
459 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000460 }
461}
462
aliguori376253e2009-03-05 23:01:23 +0000463static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000464{
465 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000466 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000467 } else {
aliguori376253e2009-03-05 23:01:23 +0000468 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000469 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000470 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000471 monitor_printf(mon, "Log items (comma separated):\n");
472 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000473 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000474 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000475 }
476 }
bellard9dc39cb2004-03-14 21:38:27 +0000477 }
478}
479
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300480static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300481{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300482 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300483}
484
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300485static void do_commit(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000486{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200487 int all_devices;
488 DriveInfo *dinfo;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300489 const char *device = qdict_get_str(qdict, "device");
balrog2dc7b602007-05-24 18:53:22 +0000490
bellard7954c732006-08-01 15:52:40 +0000491 all_devices = !strcmp(device, "all");
Blue Swirl72cf2d42009-09-12 07:36:22 +0000492 QTAILQ_FOREACH(dinfo, &drives, next) {
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200493 if (!all_devices)
Luiz Capitulino73006d22009-07-31 15:15:41 -0300494 if (strcmp(bdrv_get_device_name(dinfo->bdrv), device))
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200495 continue;
496 bdrv_commit(dinfo->bdrv);
bellard9dc39cb2004-03-14 21:38:27 +0000497 }
498}
499
Adam Litke940cc302010-01-25 12:18:44 -0600500static void user_monitor_complete(void *opaque, QObject *ret_data)
501{
502 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
503
504 if (ret_data) {
505 data->user_print(data->mon, ret_data);
506 }
507 monitor_resume(data->mon);
508 qemu_free(data);
509}
510
511static void qmp_monitor_complete(void *opaque, QObject *ret_data)
512{
513 monitor_protocol_emitter(opaque, ret_data);
514}
515
516static void qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
517 const QDict *params)
518{
519 cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
520}
521
522static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
523{
524 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
525}
526
527static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
528 const QDict *params)
529{
530 int ret;
531
532 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
533 cb_data->mon = mon;
534 cb_data->user_print = cmd->user_print;
535 monitor_suspend(mon);
536 ret = cmd->mhandler.cmd_async(mon, params,
537 user_monitor_complete, cb_data);
538 if (ret < 0) {
539 monitor_resume(mon);
540 qemu_free(cb_data);
541 }
542}
543
544static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
545{
546 int ret;
547
548 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
549 cb_data->mon = mon;
550 cb_data->user_print = cmd->user_print;
551 monitor_suspend(mon);
552 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
553 if (ret < 0) {
554 monitor_resume(mon);
555 qemu_free(cb_data);
556 }
557}
558
Luiz Capitulino4fdc94b2010-02-10 23:50:00 -0200559static int do_info(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000560{
Anthony Liguoric227f092009-10-01 16:12:16 -0500561 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300562 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000563
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200564 if (!item) {
565 assert(monitor_ctrl_mode(mon) == 0);
bellard9dc39cb2004-03-14 21:38:27 +0000566 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200567 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300568
569 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000570 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300571 break;
bellard9dc39cb2004-03-14 21:38:27 +0000572 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300573
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200574 if (cmd->name == NULL) {
575 if (monitor_ctrl_mode(mon)) {
576 qemu_error_new(QERR_COMMAND_NOT_FOUND, item);
Luiz Capitulino4fdc94b2010-02-10 23:50:00 -0200577 return -1;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200578 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300579 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200580 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300581
Adam Litke940cc302010-01-25 12:18:44 -0600582 if (monitor_handler_is_async(cmd)) {
583 if (monitor_ctrl_mode(mon)) {
584 qmp_async_info_handler(mon, cmd);
585 } else {
586 user_async_info_handler(mon, cmd);
587 }
588 /*
589 * Indicate that this command is asynchronous and will not return any
590 * data (not even empty). Instead, the data will be returned via a
591 * completion callback.
592 */
593 *ret_data = qobject_from_jsonf("{ '__mon_async': 'return' }");
594 } else if (monitor_handler_ported(cmd)) {
Luiz Capitulino13c74252009-10-07 13:41:55 -0300595 cmd->mhandler.info_new(mon, ret_data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200596
597 if (!monitor_ctrl_mode(mon)) {
598 /*
599 * User Protocol function is called here, Monitor Protocol is
600 * handled by monitor_call_handler()
601 */
602 if (*ret_data)
603 cmd->user_print(mon, *ret_data);
604 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300605 } else {
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200606 if (monitor_ctrl_mode(mon)) {
607 /* handler not converted yet */
608 qemu_error_new(QERR_COMMAND_NOT_FOUND, item);
Luiz Capitulino4fdc94b2010-02-10 23:50:00 -0200609 return -1;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200610 } else {
611 cmd->mhandler.info(mon);
612 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300613 }
614
Luiz Capitulino4fdc94b2010-02-10 23:50:00 -0200615 return 0;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300616
617help:
618 help_cmd(mon, "info");
Luiz Capitulino4fdc94b2010-02-10 23:50:00 -0200619 return 0;
bellard9dc39cb2004-03-14 21:38:27 +0000620}
621
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200622static void do_info_version_print(Monitor *mon, const QObject *data)
623{
624 QDict *qdict;
625
626 qdict = qobject_to_qdict(data);
627
628 monitor_printf(mon, "%s%s\n", qdict_get_str(qdict, "qemu"),
629 qdict_get_str(qdict, "package"));
630}
631
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300632/**
633 * do_info_version(): Show QEMU version
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200634 *
635 * Return a QDict with the following information:
636 *
637 * - "qemu": QEMU's version
638 * - "package": package's version
639 *
640 * Example:
641 *
642 * { "qemu": "0.11.50", "package": "" }
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300643 */
644static void do_info_version(Monitor *mon, QObject **ret_data)
bellard9bc9d1c2004-10-10 15:15:51 +0000645{
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200646 *ret_data = qobject_from_jsonf("{ 'qemu': %s, 'package': %s }",
647 QEMU_VERSION, QEMU_PKGVERSION);
bellard9bc9d1c2004-10-10 15:15:51 +0000648}
649
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200650static void do_info_name_print(Monitor *mon, const QObject *data)
thsc35734b2007-03-19 15:17:08 +0000651{
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200652 QDict *qdict;
653
654 qdict = qobject_to_qdict(data);
655 if (qdict_size(qdict) == 0) {
656 return;
657 }
658
659 monitor_printf(mon, "%s\n", qdict_get_str(qdict, "name"));
660}
661
662/**
663 * do_info_name(): Show VM name
664 *
665 * Return a QDict with the following information:
666 *
667 * - "name": VM's name (optional)
668 *
669 * Example:
670 *
671 * { "name": "qemu-name" }
672 */
673static void do_info_name(Monitor *mon, QObject **ret_data)
674{
675 *ret_data = qemu_name ? qobject_from_jsonf("{'name': %s }", qemu_name) :
676 qobject_from_jsonf("{}");
thsc35734b2007-03-19 15:17:08 +0000677}
678
Luiz Capitulino1a728672009-12-10 17:15:56 -0200679static QObject *get_cmd_dict(const char *name)
680{
681 const char *p;
682
683 /* Remove '|' from some commands */
684 p = strchr(name, '|');
685 if (p) {
686 p++;
687 } else {
688 p = name;
689 }
690
691 return qobject_from_jsonf("{ 'name': %s }", p);
692}
693
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200694/**
695 * do_info_commands(): List QMP available commands
696 *
Luiz Capitulino1a728672009-12-10 17:15:56 -0200697 * Each command is represented by a QDict, the returned QObject is a QList
698 * of all commands.
699 *
700 * The QDict contains:
701 *
702 * - "name": command's name
703 *
704 * Example:
705 *
706 * { [ { "name": "query-balloon" }, { "name": "system_powerdown" } ] }
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200707 */
708static void do_info_commands(Monitor *mon, QObject **ret_data)
709{
710 QList *cmd_list;
711 const mon_cmd_t *cmd;
712
713 cmd_list = qlist_new();
714
715 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
716 if (monitor_handler_ported(cmd) && !compare_cmd(cmd->name, "info")) {
Luiz Capitulino1a728672009-12-10 17:15:56 -0200717 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200718 }
719 }
720
721 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
722 if (monitor_handler_ported(cmd)) {
723 char buf[128];
724 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
Luiz Capitulino1a728672009-12-10 17:15:56 -0200725 qlist_append_obj(cmd_list, get_cmd_dict(buf));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200726 }
727 }
728
729 *ret_data = QOBJECT(cmd_list);
730}
731
aurel32bf4f74c2008-12-18 22:42:34 +0000732#if defined(TARGET_I386)
Luiz Capitulino14f07202009-12-10 17:16:02 -0200733static void do_info_hpet_print(Monitor *mon, const QObject *data)
aliguori16b29ae2008-12-17 23:28:44 +0000734{
aliguori376253e2009-03-05 23:01:23 +0000735 monitor_printf(mon, "HPET is %s by QEMU\n",
Luiz Capitulino14f07202009-12-10 17:16:02 -0200736 qdict_get_bool(qobject_to_qdict(data), "enabled") ?
737 "enabled" : "disabled");
738}
739
740/**
741 * do_info_hpet(): Show HPET state
742 *
743 * Return a QDict with the following information:
744 *
745 * - "enabled": true if hpet if enabled, false otherwise
746 *
747 * Example:
748 *
749 * { "enabled": true }
750 */
751static void do_info_hpet(Monitor *mon, QObject **ret_data)
752{
753 *ret_data = qobject_from_jsonf("{ 'enabled': %i }", !no_hpet);
aliguori16b29ae2008-12-17 23:28:44 +0000754}
aurel32bf4f74c2008-12-18 22:42:34 +0000755#endif
aliguori16b29ae2008-12-17 23:28:44 +0000756
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200757static void do_info_uuid_print(Monitor *mon, const QObject *data)
blueswir1f1f23ad2008-09-18 18:30:20 +0000758{
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200759 monitor_printf(mon, "%s\n", qdict_get_str(qobject_to_qdict(data), "UUID"));
760}
761
762/**
763 * do_info_uuid(): Show VM UUID
764 *
765 * Return a QDict with the following information:
766 *
767 * - "UUID": Universally Unique Identifier
768 *
769 * Example:
770 *
771 * { "UUID": "550e8400-e29b-41d4-a716-446655440000" }
772 */
773static void do_info_uuid(Monitor *mon, QObject **ret_data)
774{
775 char uuid[64];
776
777 snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1],
aliguori376253e2009-03-05 23:01:23 +0000778 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
779 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
780 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
781 qemu_uuid[14], qemu_uuid[15]);
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200782 *ret_data = qobject_from_jsonf("{ 'UUID': %s }", uuid);
thsa36e69d2007-12-02 05:18:19 +0000783}
784
bellard6a00d602005-11-21 23:25:50 +0000785/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000786static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000787{
788 CPUState *env;
789
790 for(env = first_cpu; env != NULL; env = env->next_cpu) {
791 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000792 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000793 return 0;
794 }
795 }
796 return -1;
797}
798
pbrook9596ebb2007-11-18 01:44:38 +0000799static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000800{
aliguori731b0362009-03-05 23:01:42 +0000801 if (!cur_mon->mon_cpu) {
bellard6a00d602005-11-21 23:25:50 +0000802 mon_set_cpu(0);
803 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300804 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000805 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000806}
807
aliguori376253e2009-03-05 23:01:23 +0000808static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000809{
bellard6a00d602005-11-21 23:25:50 +0000810 CPUState *env;
811 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +0000812#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000813 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000814 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000815#else
aliguori376253e2009-03-05 23:01:23 +0000816 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000817 0);
bellard9307c4c2004-04-04 12:57:25 +0000818#endif
819}
820
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300821static void print_cpu_iter(QObject *obj, void *opaque)
822{
823 QDict *cpu;
824 int active = ' ';
825 Monitor *mon = opaque;
826
827 assert(qobject_type(obj) == QTYPE_QDICT);
828 cpu = qobject_to_qdict(obj);
829
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200830 if (qdict_get_bool(cpu, "current")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300831 active = '*';
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200832 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300833
834 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
835
836#if defined(TARGET_I386)
837 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
838 (target_ulong) qdict_get_int(cpu, "pc"));
839#elif defined(TARGET_PPC)
840 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
841 (target_long) qdict_get_int(cpu, "nip"));
842#elif defined(TARGET_SPARC)
843 monitor_printf(mon, "pc=0x " TARGET_FMT_lx,
844 (target_long) qdict_get_int(cpu, "pc"));
845 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
846 (target_long) qdict_get_int(cpu, "npc"));
847#elif defined(TARGET_MIPS)
848 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
849 (target_long) qdict_get_int(cpu, "PC"));
850#endif
851
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200852 if (qdict_get_bool(cpu, "halted")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300853 monitor_printf(mon, " (halted)");
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200854 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300855
856 monitor_printf(mon, "\n");
857}
858
859static void monitor_print_cpus(Monitor *mon, const QObject *data)
860{
861 QList *cpu_list;
862
863 assert(qobject_type(data) == QTYPE_QLIST);
864 cpu_list = qobject_to_qlist(data);
865 qlist_iter(cpu_list, print_cpu_iter, mon);
866}
867
868/**
869 * do_info_cpus(): Show CPU information
870 *
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200871 * Return a QList. Each CPU is represented by a QDict, which contains:
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300872 *
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200873 * - "cpu": CPU index
874 * - "current": true if this is the current CPU, false otherwise
875 * - "halted": true if the cpu is halted, false otherwise
876 * - Current program counter. The key's name depends on the architecture:
877 * "pc": i386/x86)64
878 * "nip": PPC
879 * "pc" and "npc": sparc
880 * "PC": mips
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300881 *
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200882 * Example:
883 *
884 * [ { "CPU": 0, "current": true, "halted": false, "pc": 3227107138 },
885 * { "CPU": 1, "current": false, "halted": true, "pc": 7108165 } ]
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300886 */
887static void do_info_cpus(Monitor *mon, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000888{
889 CPUState *env;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300890 QList *cpu_list;
891
892 cpu_list = qlist_new();
bellard6a00d602005-11-21 23:25:50 +0000893
894 /* just to set the default cpu if not already done */
895 mon_get_cpu();
896
897 for(env = first_cpu; env != NULL; env = env->next_cpu) {
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200898 QDict *cpu;
899 QObject *obj;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300900
Avi Kivity4c0960c2009-08-17 23:19:53 +0300901 cpu_synchronize_state(env);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300902
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200903 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
904 env->cpu_index, env == mon->mon_cpu,
905 env->halted);
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200906
907 cpu = qobject_to_qdict(obj);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300908
bellard6a00d602005-11-21 23:25:50 +0000909#if defined(TARGET_I386)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300910 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
bellarde80e1cc2005-11-23 22:05:28 +0000911#elif defined(TARGET_PPC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300912 qdict_put(cpu, "nip", qint_from_int(env->nip));
bellardba3c64f2005-12-05 20:31:52 +0000913#elif defined(TARGET_SPARC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300914 qdict_put(cpu, "pc", qint_from_int(env->pc));
915 qdict_put(cpu, "npc", qint_from_int(env->npc));
thsead93602007-09-06 00:18:15 +0000916#elif defined(TARGET_MIPS)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300917 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
bellardce5232c2008-05-28 17:14:10 +0000918#endif
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300919
920 qlist_append(cpu_list, cpu);
bellard6a00d602005-11-21 23:25:50 +0000921 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300922
923 *ret_data = QOBJECT(cpu_list);
bellard6a00d602005-11-21 23:25:50 +0000924}
925
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200926static int do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000927{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300928 int index = qdict_get_int(qdict, "index");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200929 if (mon_set_cpu(index) < 0) {
Markus Armbrustercc0c4182010-01-29 10:34:00 +0100930 qemu_error_new(QERR_INVALID_PARAMETER, "index");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200931 return -1;
932 }
933 return 0;
bellard6a00d602005-11-21 23:25:50 +0000934}
935
aliguori376253e2009-03-05 23:01:23 +0000936static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000937{
aliguori376253e2009-03-05 23:01:23 +0000938 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000939}
940
aliguori376253e2009-03-05 23:01:23 +0000941static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000942{
943 int i;
bellard7e2515e2004-08-01 21:52:19 +0000944 const char *str;
ths3b46e622007-09-17 08:09:54 +0000945
aliguoricde76ee2009-03-05 23:01:51 +0000946 if (!mon->rs)
947 return;
bellard7e2515e2004-08-01 21:52:19 +0000948 i = 0;
949 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000950 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000951 if (!str)
952 break;
aliguori376253e2009-03-05 23:01:23 +0000953 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000954 i++;
bellardaa455482004-04-04 13:07:25 +0000955 }
956}
957
j_mayer76a66252007-03-07 08:32:30 +0000958#if defined(TARGET_PPC)
959/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000960static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000961{
962 CPUState *env;
963
964 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000965 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000966}
967#endif
968
Luiz Capitulinob223f352009-10-07 13:41:56 -0300969/**
970 * do_quit(): Quit QEMU execution
971 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200972static int do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000973{
974 exit(0);
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200975 return 0;
bellard9dc39cb2004-03-14 21:38:27 +0000976}
977
aliguori376253e2009-03-05 23:01:23 +0000978static int eject_device(Monitor *mon, BlockDriverState *bs, int force)
bellard9dc39cb2004-03-14 21:38:27 +0000979{
980 if (bdrv_is_inserted(bs)) {
981 if (!force) {
982 if (!bdrv_is_removable(bs)) {
Markus Armbruster2c2a6bb2009-12-07 21:37:05 +0100983 qemu_error_new(QERR_DEVICE_NOT_REMOVABLE,
984 bdrv_get_device_name(bs));
bellard9dc39cb2004-03-14 21:38:27 +0000985 return -1;
986 }
987 if (bdrv_is_locked(bs)) {
Markus Armbruster2c2a6bb2009-12-07 21:37:05 +0100988 qemu_error_new(QERR_DEVICE_LOCKED, bdrv_get_device_name(bs));
bellard9dc39cb2004-03-14 21:38:27 +0000989 return -1;
990 }
991 }
992 bdrv_close(bs);
993 }
994 return 0;
995}
996
Luiz Capitulino9b9d4d92010-02-10 23:49:50 -0200997static int do_eject(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000998{
999 BlockDriverState *bs;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001000 int force = qdict_get_int(qdict, "force");
Luiz Capitulino78d714e2009-12-14 18:53:21 -02001001 const char *filename = qdict_get_str(qdict, "device");
bellard9dc39cb2004-03-14 21:38:27 +00001002
bellard9307c4c2004-04-04 12:57:25 +00001003 bs = bdrv_find(filename);
bellard9dc39cb2004-03-14 21:38:27 +00001004 if (!bs) {
Markus Armbruster2c2a6bb2009-12-07 21:37:05 +01001005 qemu_error_new(QERR_DEVICE_NOT_FOUND, filename);
Luiz Capitulino9b9d4d92010-02-10 23:49:50 -02001006 return -1;
bellard9dc39cb2004-03-14 21:38:27 +00001007 }
Luiz Capitulino9b9d4d92010-02-10 23:49:50 -02001008 return eject_device(mon, bs, force);
bellard9dc39cb2004-03-14 21:38:27 +00001009}
1010
Luiz Capitulinoba85d352010-02-10 23:49:52 -02001011static int do_block_set_passwd(Monitor *mon, const QDict *qdict,
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001012 QObject **ret_data)
1013{
1014 BlockDriverState *bs;
1015
1016 bs = bdrv_find(qdict_get_str(qdict, "device"));
1017 if (!bs) {
1018 qemu_error_new(QERR_DEVICE_NOT_FOUND, qdict_get_str(qdict, "device"));
Luiz Capitulinoba85d352010-02-10 23:49:52 -02001019 return -1;
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001020 }
1021
1022 if (bdrv_set_key(bs, qdict_get_str(qdict, "password")) < 0) {
1023 qemu_error_new(QERR_INVALID_PASSWORD);
Luiz Capitulinoba85d352010-02-10 23:49:52 -02001024 return -1;
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001025 }
Luiz Capitulinoba85d352010-02-10 23:49:52 -02001026
1027 return 0;
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001028}
1029
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001030static int do_change_block(Monitor *mon, const char *device,
1031 const char *filename, const char *fmt)
bellard9dc39cb2004-03-14 21:38:27 +00001032{
1033 BlockDriverState *bs;
aurel322ecea9b2008-06-18 22:10:01 +00001034 BlockDriver *drv = NULL;
bellard9dc39cb2004-03-14 21:38:27 +00001035
bellard9307c4c2004-04-04 12:57:25 +00001036 bs = bdrv_find(device);
bellard9dc39cb2004-03-14 21:38:27 +00001037 if (!bs) {
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001038 qemu_error_new(QERR_DEVICE_NOT_FOUND, device);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001039 return -1;
bellard9dc39cb2004-03-14 21:38:27 +00001040 }
aurel322ecea9b2008-06-18 22:10:01 +00001041 if (fmt) {
Markus Armbrustereb852012009-10-27 18:41:44 +01001042 drv = bdrv_find_whitelisted_format(fmt);
aurel322ecea9b2008-06-18 22:10:01 +00001043 if (!drv) {
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001044 qemu_error_new(QERR_INVALID_BLOCK_FORMAT, fmt);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001045 return -1;
aurel322ecea9b2008-06-18 22:10:01 +00001046 }
1047 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001048 if (eject_device(mon, bs, 0) < 0) {
1049 return -1;
1050 }
1051 if (bdrv_open2(bs, filename, BDRV_O_RDWR, drv) < 0) {
1052 return -1;
1053 }
1054 return monitor_read_bdrv_key_start(mon, bs, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001055}
1056
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001057static int change_vnc_password(const char *password)
aliguoribb5fc202009-03-05 23:01:15 +00001058{
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001059 if (vnc_display_password(NULL, password) < 0) {
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001060 qemu_error_new(QERR_SET_PASSWD_FAILED);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001061 return -1;
1062 }
aliguoribb5fc202009-03-05 23:01:15 +00001063
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001064 return 0;
Markus Armbruster2895e072009-12-07 21:37:01 +01001065}
1066
1067static void change_vnc_password_cb(Monitor *mon, const char *password,
1068 void *opaque)
1069{
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001070 change_vnc_password(password);
aliguori731b0362009-03-05 23:01:42 +00001071 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00001072}
1073
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001074static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
thse25a5822007-08-25 01:36:20 +00001075{
ths70848512007-08-25 01:37:05 +00001076 if (strcmp(target, "passwd") == 0 ||
aliguori28a76be2009-03-06 20:27:40 +00001077 strcmp(target, "password") == 0) {
1078 if (arg) {
aliguoribb5fc202009-03-05 23:01:15 +00001079 char password[9];
aliguori28a76be2009-03-06 20:27:40 +00001080 strncpy(password, arg, sizeof(password));
1081 password[sizeof(password) - 1] = '\0';
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001082 return change_vnc_password(password);
aliguoribb5fc202009-03-05 23:01:15 +00001083 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001084 return monitor_read_password(mon, change_vnc_password_cb, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001085 }
ths70848512007-08-25 01:37:05 +00001086 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001087 if (vnc_display_open(NULL, target) < 0) {
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001088 qemu_error_new(QERR_VNC_SERVER_FAILED, target);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001089 return -1;
1090 }
ths70848512007-08-25 01:37:05 +00001091 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001092
1093 return 0;
thse25a5822007-08-25 01:36:20 +00001094}
1095
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001096/**
1097 * do_change(): Change a removable medium, or VNC configuration
1098 */
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001099static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
thse25a5822007-08-25 01:36:20 +00001100{
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001101 const char *device = qdict_get_str(qdict, "device");
1102 const char *target = qdict_get_str(qdict, "target");
1103 const char *arg = qdict_get_try_str(qdict, "arg");
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001104 int ret;
1105
thse25a5822007-08-25 01:36:20 +00001106 if (strcmp(device, "vnc") == 0) {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001107 ret = do_change_vnc(mon, target, arg);
thse25a5822007-08-25 01:36:20 +00001108 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001109 ret = do_change_block(mon, device, target, arg);
thse25a5822007-08-25 01:36:20 +00001110 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001111
1112 return ret;
thse25a5822007-08-25 01:36:20 +00001113}
1114
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001115static void do_screen_dump(Monitor *mon, const QDict *qdict)
bellard59a983b2004-03-17 23:17:16 +00001116{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001117 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
bellard59a983b2004-03-17 23:17:16 +00001118}
1119
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001120static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +00001121{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001122 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +00001123}
1124
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001125static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +00001126{
1127 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001128 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +00001129
bellard9307c4c2004-04-04 12:57:25 +00001130 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +00001131 mask = 0;
1132 } else {
bellard9307c4c2004-04-04 12:57:25 +00001133 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +00001134 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001135 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001136 return;
1137 }
1138 }
1139 cpu_set_log(mask);
1140}
1141
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001142static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001143{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001144 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001145 if (!option || !strcmp(option, "on")) {
1146 singlestep = 1;
1147 } else if (!strcmp(option, "off")) {
1148 singlestep = 0;
1149 } else {
1150 monitor_printf(mon, "unexpected option %s\n", option);
1151 }
1152}
1153
Luiz Capitulinoe0c97bd2009-10-07 13:41:57 -03001154/**
1155 * do_stop(): Stop VM execution
1156 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001157static int do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard8a7ddc32004-03-31 19:00:16 +00001158{
1159 vm_stop(EXCP_INTERRUPT);
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001160 return 0;
bellard8a7ddc32004-03-31 19:00:16 +00001161}
1162
aliguoribb5fc202009-03-05 23:01:15 +00001163static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
aliguoric0f4ce72009-03-05 23:01:01 +00001164
aliguori376253e2009-03-05 23:01:23 +00001165struct bdrv_iterate_context {
1166 Monitor *mon;
1167 int err;
1168};
aliguoric0f4ce72009-03-05 23:01:01 +00001169
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001170/**
1171 * do_cont(): Resume emulation.
1172 */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001173static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
aliguori376253e2009-03-05 23:01:23 +00001174{
1175 struct bdrv_iterate_context context = { mon, 0 };
1176
1177 bdrv_iterate(encrypted_bdrv_it, &context);
aliguoric0f4ce72009-03-05 23:01:01 +00001178 /* only resume the vm if all keys are set and valid */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001179 if (!context.err) {
aliguoric0f4ce72009-03-05 23:01:01 +00001180 vm_start();
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001181 return 0;
1182 } else {
1183 return -1;
1184 }
bellard8a7ddc32004-03-31 19:00:16 +00001185}
1186
aliguoribb5fc202009-03-05 23:01:15 +00001187static void bdrv_key_cb(void *opaque, int err)
1188{
aliguori376253e2009-03-05 23:01:23 +00001189 Monitor *mon = opaque;
1190
aliguoribb5fc202009-03-05 23:01:15 +00001191 /* another key was set successfully, retry to continue */
1192 if (!err)
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001193 do_cont(mon, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001194}
1195
1196static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1197{
aliguori376253e2009-03-05 23:01:23 +00001198 struct bdrv_iterate_context *context = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00001199
aliguori376253e2009-03-05 23:01:23 +00001200 if (!context->err && bdrv_key_required(bs)) {
1201 context->err = -EBUSY;
1202 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1203 context->mon);
aliguoribb5fc202009-03-05 23:01:15 +00001204 }
1205}
1206
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001207static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001208{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001209 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001210 if (!device)
1211 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1212 if (gdbserver_start(device) < 0) {
1213 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1214 device);
1215 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001216 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001217 } else {
aliguori59030a82009-04-05 18:43:41 +00001218 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1219 device);
bellard8a7ddc32004-03-31 19:00:16 +00001220 }
1221}
1222
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001223static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001224{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001225 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001226 if (select_watchdog_action(action) == -1) {
1227 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1228 }
1229}
1230
aliguori376253e2009-03-05 23:01:23 +00001231static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001232{
aliguori376253e2009-03-05 23:01:23 +00001233 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001234 switch(c) {
1235 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001236 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001237 break;
1238 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001239 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001240 break;
1241 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001242 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001243 break;
1244 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001245 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001246 break;
1247 default:
1248 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001249 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001250 } else {
aliguori376253e2009-03-05 23:01:23 +00001251 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001252 }
1253 break;
1254 }
aliguori376253e2009-03-05 23:01:23 +00001255 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001256}
1257
aliguori376253e2009-03-05 23:01:23 +00001258static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -05001259 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001260{
bellard6a00d602005-11-21 23:25:50 +00001261 CPUState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +00001262 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001263 uint8_t buf[16];
1264 uint64_t v;
1265
1266 if (format == 'i') {
1267 int flags;
1268 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001269 env = mon_get_cpu();
Markus Armbruster09b94182010-01-20 13:07:30 +01001270 if (!is_physical)
bellard6a00d602005-11-21 23:25:50 +00001271 return;
bellard9307c4c2004-04-04 12:57:25 +00001272#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001273 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001274 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001275 } else if (wsize == 4) {
1276 flags = 0;
1277 } else {
bellard6a15fd12006-04-12 21:07:07 +00001278 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001279 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001280 if (env) {
1281#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001282 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001283 (env->segs[R_CS].flags & DESC_L_MASK))
1284 flags = 2;
1285 else
1286#endif
1287 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1288 flags = 1;
1289 }
bellard4c27ba22004-04-25 18:05:08 +00001290 }
1291#endif
aliguori376253e2009-03-05 23:01:23 +00001292 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001293 return;
1294 }
1295
1296 len = wsize * count;
1297 if (wsize == 1)
1298 line_size = 8;
1299 else
1300 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001301 max_digits = 0;
1302
1303 switch(format) {
1304 case 'o':
1305 max_digits = (wsize * 8 + 2) / 3;
1306 break;
1307 default:
1308 case 'x':
1309 max_digits = (wsize * 8) / 4;
1310 break;
1311 case 'u':
1312 case 'd':
1313 max_digits = (wsize * 8 * 10 + 32) / 33;
1314 break;
1315 case 'c':
1316 wsize = 1;
1317 break;
1318 }
1319
1320 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001321 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001322 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001323 else
aliguori376253e2009-03-05 23:01:23 +00001324 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001325 l = len;
1326 if (l > line_size)
1327 l = line_size;
1328 if (is_physical) {
1329 cpu_physical_memory_rw(addr, buf, l, 0);
1330 } else {
bellard6a00d602005-11-21 23:25:50 +00001331 env = mon_get_cpu();
aliguoric8f79b62008-08-18 14:00:20 +00001332 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001333 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001334 break;
1335 }
bellard9307c4c2004-04-04 12:57:25 +00001336 }
ths5fafdf22007-09-16 21:08:06 +00001337 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001338 while (i < l) {
1339 switch(wsize) {
1340 default:
1341 case 1:
1342 v = ldub_raw(buf + i);
1343 break;
1344 case 2:
1345 v = lduw_raw(buf + i);
1346 break;
1347 case 4:
bellard92a31b12005-02-10 22:00:52 +00001348 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001349 break;
1350 case 8:
1351 v = ldq_raw(buf + i);
1352 break;
1353 }
aliguori376253e2009-03-05 23:01:23 +00001354 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001355 switch(format) {
1356 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001357 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001358 break;
1359 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001360 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001361 break;
1362 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001363 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001364 break;
1365 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001366 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001367 break;
1368 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001369 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001370 break;
1371 }
1372 i += wsize;
1373 }
aliguori376253e2009-03-05 23:01:23 +00001374 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001375 addr += l;
1376 len -= l;
1377 }
1378}
1379
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001380static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001381{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001382 int count = qdict_get_int(qdict, "count");
1383 int format = qdict_get_int(qdict, "format");
1384 int size = qdict_get_int(qdict, "size");
1385 target_long addr = qdict_get_int(qdict, "addr");
1386
aliguori376253e2009-03-05 23:01:23 +00001387 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001388}
1389
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001390static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001391{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001392 int count = qdict_get_int(qdict, "count");
1393 int format = qdict_get_int(qdict, "format");
1394 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001395 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001396
aliguori376253e2009-03-05 23:01:23 +00001397 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001398}
1399
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001400static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001401{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001402 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001403 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001404
blueswir17743e582007-09-24 18:39:04 +00001405#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +00001406 switch(format) {
1407 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001408 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +00001409 break;
1410 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001411 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +00001412 break;
1413 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001414 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +00001415 break;
1416 default:
1417 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001418 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +00001419 break;
1420 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001421 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001422 break;
1423 }
bellard92a31b12005-02-10 22:00:52 +00001424#else
1425 switch(format) {
1426 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001427 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +00001428 break;
1429 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001430 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +00001431 break;
1432 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001433 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +00001434 break;
1435 default:
1436 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001437 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +00001438 break;
1439 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001440 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +00001441 break;
1442 }
1443#endif
aliguori376253e2009-03-05 23:01:23 +00001444 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001445}
1446
Luiz Capitulino98696222010-02-10 23:49:58 -02001447static int do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellardb371dc52007-01-03 15:20:39 +00001448{
1449 FILE *f;
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001450 uint32_t size = qdict_get_int(qdict, "size");
1451 const char *filename = qdict_get_str(qdict, "filename");
1452 target_long addr = qdict_get_int(qdict, "val");
bellardb371dc52007-01-03 15:20:39 +00001453 uint32_t l;
1454 CPUState *env;
1455 uint8_t buf[1024];
Luiz Capitulino98696222010-02-10 23:49:58 -02001456 int ret = -1;
bellardb371dc52007-01-03 15:20:39 +00001457
1458 env = mon_get_cpu();
bellardb371dc52007-01-03 15:20:39 +00001459
1460 f = fopen(filename, "wb");
1461 if (!f) {
Markus Armbrusterc34ed282010-01-20 13:07:32 +01001462 qemu_error_new(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulino98696222010-02-10 23:49:58 -02001463 return -1;
bellardb371dc52007-01-03 15:20:39 +00001464 }
1465 while (size != 0) {
1466 l = sizeof(buf);
1467 if (l > size)
1468 l = size;
1469 cpu_memory_rw_debug(env, addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001470 if (fwrite(buf, 1, l, f) != l) {
1471 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1472 goto exit;
1473 }
bellardb371dc52007-01-03 15:20:39 +00001474 addr += l;
1475 size -= l;
1476 }
Luiz Capitulino98696222010-02-10 23:49:58 -02001477
1478 ret = 0;
1479
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001480exit:
bellardb371dc52007-01-03 15:20:39 +00001481 fclose(f);
Luiz Capitulino98696222010-02-10 23:49:58 -02001482 return ret;
bellardb371dc52007-01-03 15:20:39 +00001483}
1484
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001485static int do_physical_memory_save(Monitor *mon, const QDict *qdict,
Luiz Capitulino18f5a8b2009-10-16 12:23:44 -03001486 QObject **ret_data)
aurel32a8bdf7a2008-04-11 21:36:14 +00001487{
1488 FILE *f;
1489 uint32_t l;
1490 uint8_t buf[1024];
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001491 uint32_t size = qdict_get_int(qdict, "size");
1492 const char *filename = qdict_get_str(qdict, "filename");
Anthony Liguoric227f092009-10-01 16:12:16 -05001493 target_phys_addr_t addr = qdict_get_int(qdict, "val");
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001494 int ret = -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001495
1496 f = fopen(filename, "wb");
1497 if (!f) {
Markus Armbruster95fada82010-01-20 13:07:33 +01001498 qemu_error_new(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001499 return -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001500 }
1501 while (size != 0) {
1502 l = sizeof(buf);
1503 if (l > size)
1504 l = size;
1505 cpu_physical_memory_rw(addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001506 if (fwrite(buf, 1, l, f) != l) {
1507 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1508 goto exit;
1509 }
aurel32a8bdf7a2008-04-11 21:36:14 +00001510 fflush(f);
1511 addr += l;
1512 size -= l;
1513 }
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001514
1515 ret = 0;
1516
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001517exit:
aurel32a8bdf7a2008-04-11 21:36:14 +00001518 fclose(f);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001519 return ret;
aurel32a8bdf7a2008-04-11 21:36:14 +00001520}
1521
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001522static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001523{
1524 uint32_t addr;
1525 uint8_t buf[1];
1526 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001527 uint32_t start = qdict_get_int(qdict, "start");
1528 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001529
1530 sum = 0;
1531 for(addr = start; addr < (start + size); addr++) {
1532 cpu_physical_memory_rw(addr, buf, 1, 0);
1533 /* BSD sum algorithm ('sum' Unix command) */
1534 sum = (sum >> 1) | (sum << 15);
1535 sum += buf[0];
1536 }
aliguori376253e2009-03-05 23:01:23 +00001537 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001538}
1539
bellarda3a91a32004-06-04 11:06:21 +00001540typedef struct {
1541 int keycode;
1542 const char *name;
1543} KeyDef;
1544
1545static const KeyDef key_defs[] = {
1546 { 0x2a, "shift" },
1547 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +00001548
bellarda3a91a32004-06-04 11:06:21 +00001549 { 0x38, "alt" },
1550 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +00001551 { 0x64, "altgr" },
1552 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +00001553 { 0x1d, "ctrl" },
1554 { 0x9d, "ctrl_r" },
1555
1556 { 0xdd, "menu" },
1557
1558 { 0x01, "esc" },
1559
1560 { 0x02, "1" },
1561 { 0x03, "2" },
1562 { 0x04, "3" },
1563 { 0x05, "4" },
1564 { 0x06, "5" },
1565 { 0x07, "6" },
1566 { 0x08, "7" },
1567 { 0x09, "8" },
1568 { 0x0a, "9" },
1569 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +00001570 { 0x0c, "minus" },
1571 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +00001572 { 0x0e, "backspace" },
1573
1574 { 0x0f, "tab" },
1575 { 0x10, "q" },
1576 { 0x11, "w" },
1577 { 0x12, "e" },
1578 { 0x13, "r" },
1579 { 0x14, "t" },
1580 { 0x15, "y" },
1581 { 0x16, "u" },
1582 { 0x17, "i" },
1583 { 0x18, "o" },
1584 { 0x19, "p" },
1585
1586 { 0x1c, "ret" },
1587
1588 { 0x1e, "a" },
1589 { 0x1f, "s" },
1590 { 0x20, "d" },
1591 { 0x21, "f" },
1592 { 0x22, "g" },
1593 { 0x23, "h" },
1594 { 0x24, "j" },
1595 { 0x25, "k" },
1596 { 0x26, "l" },
1597
1598 { 0x2c, "z" },
1599 { 0x2d, "x" },
1600 { 0x2e, "c" },
1601 { 0x2f, "v" },
1602 { 0x30, "b" },
1603 { 0x31, "n" },
1604 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +00001605 { 0x33, "comma" },
1606 { 0x34, "dot" },
1607 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +00001608
balrog4d3b6f62008-02-10 16:33:14 +00001609 { 0x37, "asterisk" },
1610
bellarda3a91a32004-06-04 11:06:21 +00001611 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +00001612 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001613 { 0x3b, "f1" },
1614 { 0x3c, "f2" },
1615 { 0x3d, "f3" },
1616 { 0x3e, "f4" },
1617 { 0x3f, "f5" },
1618 { 0x40, "f6" },
1619 { 0x41, "f7" },
1620 { 0x42, "f8" },
1621 { 0x43, "f9" },
1622 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +00001623 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001624 { 0x46, "scroll_lock" },
1625
bellard64866c32006-05-07 18:03:31 +00001626 { 0xb5, "kp_divide" },
1627 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +00001628 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +00001629 { 0x4e, "kp_add" },
1630 { 0x9c, "kp_enter" },
1631 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +00001632 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +00001633
1634 { 0x52, "kp_0" },
1635 { 0x4f, "kp_1" },
1636 { 0x50, "kp_2" },
1637 { 0x51, "kp_3" },
1638 { 0x4b, "kp_4" },
1639 { 0x4c, "kp_5" },
1640 { 0x4d, "kp_6" },
1641 { 0x47, "kp_7" },
1642 { 0x48, "kp_8" },
1643 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +00001644
bellarda3a91a32004-06-04 11:06:21 +00001645 { 0x56, "<" },
1646
1647 { 0x57, "f11" },
1648 { 0x58, "f12" },
1649
1650 { 0xb7, "print" },
1651
1652 { 0xc7, "home" },
1653 { 0xc9, "pgup" },
1654 { 0xd1, "pgdn" },
1655 { 0xcf, "end" },
1656
1657 { 0xcb, "left" },
1658 { 0xc8, "up" },
1659 { 0xd0, "down" },
1660 { 0xcd, "right" },
1661
1662 { 0xd2, "insert" },
1663 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001664#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1665 { 0xf0, "stop" },
1666 { 0xf1, "again" },
1667 { 0xf2, "props" },
1668 { 0xf3, "undo" },
1669 { 0xf4, "front" },
1670 { 0xf5, "copy" },
1671 { 0xf6, "open" },
1672 { 0xf7, "paste" },
1673 { 0xf8, "find" },
1674 { 0xf9, "cut" },
1675 { 0xfa, "lf" },
1676 { 0xfb, "help" },
1677 { 0xfc, "meta_l" },
1678 { 0xfd, "meta_r" },
1679 { 0xfe, "compose" },
1680#endif
bellarda3a91a32004-06-04 11:06:21 +00001681 { 0, NULL },
1682};
1683
1684static int get_keycode(const char *key)
1685{
1686 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001687 char *endp;
1688 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001689
1690 for(p = key_defs; p->name != NULL; p++) {
1691 if (!strcmp(key, p->name))
1692 return p->keycode;
1693 }
bellard64866c32006-05-07 18:03:31 +00001694 if (strstart(key, "0x", NULL)) {
1695 ret = strtoul(key, &endp, 0);
1696 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1697 return ret;
1698 }
bellarda3a91a32004-06-04 11:06:21 +00001699 return -1;
1700}
1701
balrogc8256f92008-06-08 22:45:01 +00001702#define MAX_KEYCODES 16
1703static uint8_t keycodes[MAX_KEYCODES];
1704static int nb_pending_keycodes;
1705static QEMUTimer *key_timer;
1706
1707static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001708{
balrogc8256f92008-06-08 22:45:01 +00001709 int keycode;
1710
1711 while (nb_pending_keycodes > 0) {
1712 nb_pending_keycodes--;
1713 keycode = keycodes[nb_pending_keycodes];
1714 if (keycode & 0x80)
1715 kbd_put_keycode(0xe0);
1716 kbd_put_keycode(keycode | 0x80);
1717 }
1718}
1719
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001720static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001721{
balrog3401c0d2008-06-04 10:05:59 +00001722 char keyname_buf[16];
1723 char *separator;
1724 int keyname_len, keycode, i;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001725 const char *string = qdict_get_str(qdict, "string");
1726 int has_hold_time = qdict_haskey(qdict, "hold_time");
1727 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
ths3b46e622007-09-17 08:09:54 +00001728
balrogc8256f92008-06-08 22:45:01 +00001729 if (nb_pending_keycodes > 0) {
1730 qemu_del_timer(key_timer);
1731 release_keys(NULL);
1732 }
1733 if (!has_hold_time)
1734 hold_time = 100;
1735 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001736 while (1) {
1737 separator = strchr(string, '-');
1738 keyname_len = separator ? separator - string : strlen(string);
1739 if (keyname_len > 0) {
1740 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1741 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001742 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001743 return;
bellarda3a91a32004-06-04 11:06:21 +00001744 }
balrogc8256f92008-06-08 22:45:01 +00001745 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001746 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001747 return;
1748 }
1749 keyname_buf[keyname_len] = 0;
1750 keycode = get_keycode(keyname_buf);
1751 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001752 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001753 return;
1754 }
balrogc8256f92008-06-08 22:45:01 +00001755 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001756 }
balrog3401c0d2008-06-04 10:05:59 +00001757 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001758 break;
balrog3401c0d2008-06-04 10:05:59 +00001759 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001760 }
balrogc8256f92008-06-08 22:45:01 +00001761 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001762 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001763 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001764 keycode = keycodes[i];
1765 if (keycode & 0x80)
1766 kbd_put_keycode(0xe0);
1767 kbd_put_keycode(keycode & 0x7f);
1768 }
balrogc8256f92008-06-08 22:45:01 +00001769 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +00001770 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001771 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001772}
1773
bellard13224a82006-07-14 22:03:35 +00001774static int mouse_button_state;
1775
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001776static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001777{
1778 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001779 const char *dx_str = qdict_get_str(qdict, "dx_str");
1780 const char *dy_str = qdict_get_str(qdict, "dy_str");
1781 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001782 dx = strtol(dx_str, NULL, 0);
1783 dy = strtol(dy_str, NULL, 0);
1784 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001785 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001786 dz = strtol(dz_str, NULL, 0);
1787 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1788}
1789
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001790static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001791{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001792 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001793 mouse_button_state = button_state;
1794 kbd_mouse_event(0, 0, 0, mouse_button_state);
1795}
1796
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001797static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001798{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001799 int size = qdict_get_int(qdict, "size");
1800 int addr = qdict_get_int(qdict, "addr");
1801 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001802 uint32_t val;
1803 int suffix;
1804
1805 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001806 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001807 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001808 addr++;
1809 }
1810 addr &= 0xffff;
1811
1812 switch(size) {
1813 default:
1814 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001815 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001816 suffix = 'b';
1817 break;
1818 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001819 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001820 suffix = 'w';
1821 break;
1822 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001823 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001824 suffix = 'l';
1825 break;
1826 }
aliguori376253e2009-03-05 23:01:23 +00001827 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1828 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001829}
bellarda3a91a32004-06-04 11:06:21 +00001830
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001831static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001832{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001833 int size = qdict_get_int(qdict, "size");
1834 int addr = qdict_get_int(qdict, "addr");
1835 int val = qdict_get_int(qdict, "val");
1836
Jan Kiszkaf1147842009-07-14 10:20:11 +02001837 addr &= IOPORTS_MASK;
1838
1839 switch (size) {
1840 default:
1841 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001842 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001843 break;
1844 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001845 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001846 break;
1847 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001848 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001849 break;
1850 }
1851}
1852
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001853static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001854{
1855 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001856 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001857
Jan Kiszka76e30d02009-07-02 00:19:02 +02001858 res = qemu_boot_set(bootdevice);
1859 if (res == 0) {
1860 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1861 } else if (res > 0) {
1862 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001863 } else {
aliguori376253e2009-03-05 23:01:23 +00001864 monitor_printf(mon, "no function defined to set boot device list for "
1865 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001866 }
1867}
1868
Luiz Capitulinoc80d2592009-10-07 13:41:58 -03001869/**
1870 * do_system_reset(): Issue a machine reset
1871 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001872static int do_system_reset(Monitor *mon, const QDict *qdict,
1873 QObject **ret_data)
bellarde4f90822004-06-20 12:35:44 +00001874{
1875 qemu_system_reset_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001876 return 0;
bellarde4f90822004-06-20 12:35:44 +00001877}
1878
Luiz Capitulino43076662009-10-07 13:41:59 -03001879/**
1880 * do_system_powerdown(): Issue a machine powerdown
1881 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001882static int do_system_powerdown(Monitor *mon, const QDict *qdict,
1883 QObject **ret_data)
bellard34751872005-07-02 14:31:34 +00001884{
1885 qemu_system_powerdown_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001886 return 0;
bellard34751872005-07-02 14:31:34 +00001887}
1888
bellardb86bda52004-09-18 19:32:46 +00001889#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +00001890static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
bellardb86bda52004-09-18 19:32:46 +00001891{
aliguori376253e2009-03-05 23:01:23 +00001892 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1893 addr,
1894 pte & mask,
1895 pte & PG_GLOBAL_MASK ? 'G' : '-',
1896 pte & PG_PSE_MASK ? 'P' : '-',
1897 pte & PG_DIRTY_MASK ? 'D' : '-',
1898 pte & PG_ACCESSED_MASK ? 'A' : '-',
1899 pte & PG_PCD_MASK ? 'C' : '-',
1900 pte & PG_PWT_MASK ? 'T' : '-',
1901 pte & PG_USER_MASK ? 'U' : '-',
1902 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001903}
1904
aliguori376253e2009-03-05 23:01:23 +00001905static void tlb_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001906{
bellard6a00d602005-11-21 23:25:50 +00001907 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001908 int l1, l2;
1909 uint32_t pgd, pde, pte;
1910
bellard6a00d602005-11-21 23:25:50 +00001911 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00001912
bellardb86bda52004-09-18 19:32:46 +00001913 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001914 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001915 return;
1916 }
1917 pgd = env->cr[3] & ~0xfff;
1918 for(l1 = 0; l1 < 1024; l1++) {
1919 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1920 pde = le32_to_cpu(pde);
1921 if (pde & PG_PRESENT_MASK) {
1922 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001923 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
bellardb86bda52004-09-18 19:32:46 +00001924 } else {
1925 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001926 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001927 (uint8_t *)&pte, 4);
1928 pte = le32_to_cpu(pte);
1929 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001930 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001931 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001932 ~0xfff);
1933 }
1934 }
1935 }
1936 }
1937 }
1938}
1939
aliguori376253e2009-03-05 23:01:23 +00001940static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001941 uint32_t end, int prot)
1942{
bellard9746b152004-11-11 18:30:24 +00001943 int prot1;
1944 prot1 = *plast_prot;
1945 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001946 if (*pstart != -1) {
aliguori376253e2009-03-05 23:01:23 +00001947 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1948 *pstart, end, end - *pstart,
1949 prot1 & PG_USER_MASK ? 'u' : '-',
1950 'r',
1951 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001952 }
1953 if (prot != 0)
1954 *pstart = end;
1955 else
1956 *pstart = -1;
1957 *plast_prot = prot;
1958 }
1959}
1960
aliguori376253e2009-03-05 23:01:23 +00001961static void mem_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001962{
bellard6a00d602005-11-21 23:25:50 +00001963 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001964 int l1, l2, prot, last_prot;
1965 uint32_t pgd, pde, pte, start, end;
1966
bellard6a00d602005-11-21 23:25:50 +00001967 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00001968
bellardb86bda52004-09-18 19:32:46 +00001969 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001970 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001971 return;
1972 }
1973 pgd = env->cr[3] & ~0xfff;
1974 last_prot = 0;
1975 start = -1;
1976 for(l1 = 0; l1 < 1024; l1++) {
1977 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1978 pde = le32_to_cpu(pde);
1979 end = l1 << 22;
1980 if (pde & PG_PRESENT_MASK) {
1981 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1982 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001983 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001984 } else {
1985 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001986 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001987 (uint8_t *)&pte, 4);
1988 pte = le32_to_cpu(pte);
1989 end = (l1 << 22) + (l2 << 12);
1990 if (pte & PG_PRESENT_MASK) {
1991 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1992 } else {
1993 prot = 0;
1994 }
aliguori376253e2009-03-05 23:01:23 +00001995 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001996 }
1997 }
1998 } else {
1999 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00002000 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00002001 }
2002 }
2003}
2004#endif
2005
aurel327c664e22009-03-03 06:12:22 +00002006#if defined(TARGET_SH4)
2007
aliguori376253e2009-03-05 23:01:23 +00002008static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00002009{
aliguori376253e2009-03-05 23:01:23 +00002010 monitor_printf(mon, " tlb%i:\t"
2011 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
2012 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
2013 "dirty=%hhu writethrough=%hhu\n",
2014 idx,
2015 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
2016 tlb->v, tlb->sh, tlb->c, tlb->pr,
2017 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00002018}
2019
aliguori376253e2009-03-05 23:01:23 +00002020static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00002021{
2022 CPUState *env = mon_get_cpu();
2023 int i;
2024
aliguori376253e2009-03-05 23:01:23 +00002025 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00002026 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00002027 print_tlb (mon, i, &env->itlb[i]);
2028 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00002029 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00002030 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00002031}
2032
2033#endif
2034
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002035static void do_info_kvm_print(Monitor *mon, const QObject *data)
2036{
2037 QDict *qdict;
2038
2039 qdict = qobject_to_qdict(data);
2040
2041 monitor_printf(mon, "kvm support: ");
2042 if (qdict_get_bool(qdict, "present")) {
2043 monitor_printf(mon, "%s\n", qdict_get_bool(qdict, "enabled") ?
2044 "enabled" : "disabled");
2045 } else {
2046 monitor_printf(mon, "not compiled\n");
2047 }
2048}
2049
2050/**
2051 * do_info_kvm(): Show KVM information
2052 *
2053 * Return a QDict with the following information:
2054 *
2055 * - "enabled": true if KVM support is enabled, false otherwise
2056 * - "present": true if QEMU has KVM support, false otherwise
2057 *
2058 * Example:
2059 *
2060 * { "enabled": true, "present": true }
2061 */
2062static void do_info_kvm(Monitor *mon, QObject **ret_data)
aliguori7ba1e612008-11-05 16:04:33 +00002063{
2064#ifdef CONFIG_KVM
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002065 *ret_data = qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
2066 kvm_enabled());
aliguori7ba1e612008-11-05 16:04:33 +00002067#else
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002068 *ret_data = qobject_from_jsonf("{ 'enabled': false, 'present': false }");
aliguori7ba1e612008-11-05 16:04:33 +00002069#endif
2070}
2071
aliguori030ea372009-04-21 22:30:47 +00002072static void do_info_numa(Monitor *mon)
2073{
aliguorib28b6232009-04-22 20:20:29 +00002074 int i;
aliguori030ea372009-04-21 22:30:47 +00002075 CPUState *env;
2076
2077 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2078 for (i = 0; i < nb_numa_nodes; i++) {
2079 monitor_printf(mon, "node %d cpus:", i);
2080 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2081 if (env->numa_node == i) {
2082 monitor_printf(mon, " %d", env->cpu_index);
2083 }
2084 }
2085 monitor_printf(mon, "\n");
2086 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2087 node_mem[i] >> 20);
2088 }
2089}
2090
bellard5f1ce942006-02-08 22:40:15 +00002091#ifdef CONFIG_PROFILER
2092
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02002093int64_t qemu_time;
2094int64_t dev_time;
2095
aliguori376253e2009-03-05 23:01:23 +00002096static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002097{
2098 int64_t total;
2099 total = qemu_time;
2100 if (total == 0)
2101 total = 1;
aliguori376253e2009-03-05 23:01:23 +00002102 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002103 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00002104 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002105 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00002106 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002107 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002108}
2109#else
aliguori376253e2009-03-05 23:01:23 +00002110static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002111{
aliguori376253e2009-03-05 23:01:23 +00002112 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00002113}
2114#endif
2115
bellardec36b692006-07-16 18:57:03 +00002116/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002117static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00002118
aliguori376253e2009-03-05 23:01:23 +00002119static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00002120{
2121 int i;
2122 CaptureState *s;
2123
2124 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00002125 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00002126 s->ops.info (s->opaque);
2127 }
2128}
2129
Blue Swirl23130862009-06-06 08:22:04 +00002130#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002131static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002132{
2133 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002134 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00002135 CaptureState *s;
2136
2137 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2138 if (i == n) {
2139 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002140 QLIST_REMOVE (s, entries);
bellardec36b692006-07-16 18:57:03 +00002141 qemu_free (s);
2142 return;
2143 }
2144 }
2145}
2146
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002147static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002148{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002149 const char *path = qdict_get_str(qdict, "path");
2150 int has_freq = qdict_haskey(qdict, "freq");
2151 int freq = qdict_get_try_int(qdict, "freq", -1);
2152 int has_bits = qdict_haskey(qdict, "bits");
2153 int bits = qdict_get_try_int(qdict, "bits", -1);
2154 int has_channels = qdict_haskey(qdict, "nchannels");
2155 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00002156 CaptureState *s;
2157
2158 s = qemu_mallocz (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002159
2160 freq = has_freq ? freq : 44100;
2161 bits = has_bits ? bits : 16;
2162 nchannels = has_channels ? nchannels : 2;
2163
2164 if (wav_start_capture (s, path, freq, bits, nchannels)) {
aliguori376253e2009-03-05 23:01:23 +00002165 monitor_printf(mon, "Faied to add wave capture\n");
bellardec36b692006-07-16 18:57:03 +00002166 qemu_free (s);
2167 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002168 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002169}
2170#endif
2171
aurel32dc1c0b72008-04-27 23:52:12 +00002172#if defined(TARGET_I386)
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002173static void do_inject_nmi(Monitor *mon, const QDict *qdict)
aurel32dc1c0b72008-04-27 23:52:12 +00002174{
2175 CPUState *env;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002176 int cpu_index = qdict_get_int(qdict, "cpu_index");
aurel32dc1c0b72008-04-27 23:52:12 +00002177
2178 for (env = first_cpu; env != NULL; env = env->next_cpu)
2179 if (env->cpu_index == cpu_index) {
2180 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2181 break;
2182 }
2183}
2184#endif
2185
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002186static void do_info_status_print(Monitor *mon, const QObject *data)
aurel326f9c5ee2008-12-18 22:43:56 +00002187{
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002188 QDict *qdict;
2189
2190 qdict = qobject_to_qdict(data);
2191
2192 monitor_printf(mon, "VM status: ");
2193 if (qdict_get_bool(qdict, "running")) {
2194 monitor_printf(mon, "running");
2195 if (qdict_get_bool(qdict, "singlestep")) {
2196 monitor_printf(mon, " (single step mode)");
aurel321b530a62009-04-05 20:08:59 +00002197 }
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002198 } else {
2199 monitor_printf(mon, "paused");
2200 }
2201
2202 monitor_printf(mon, "\n");
2203}
2204
2205/**
2206 * do_info_status(): VM status
2207 *
2208 * Return a QDict with the following information:
2209 *
2210 * - "running": true if the VM is running, or false if it is paused
2211 * - "singlestep": true if the VM is in single step mode, false otherwise
2212 *
2213 * Example:
2214 *
2215 * { "running": true, "singlestep": false }
2216 */
2217static void do_info_status(Monitor *mon, QObject **ret_data)
2218{
2219 *ret_data = qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2220 vm_running, singlestep);
aurel326f9c5ee2008-12-18 22:43:56 +00002221}
2222
Adam Litke625a5be2010-01-26 14:17:35 -06002223static void print_balloon_stat(const char *key, QObject *obj, void *opaque)
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002224{
Adam Litke625a5be2010-01-26 14:17:35 -06002225 Monitor *mon = opaque;
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002226
Adam Litke625a5be2010-01-26 14:17:35 -06002227 if (strcmp(key, "actual"))
2228 monitor_printf(mon, ",%s=%" PRId64, key,
2229 qint_get_int(qobject_to_qint(obj)));
aliguoridf751fa2008-12-04 20:19:35 +00002230}
2231
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002232static void monitor_print_balloon(Monitor *mon, const QObject *data)
2233{
Luiz Capitulino7f179672009-12-10 17:15:55 -02002234 QDict *qdict;
2235
2236 qdict = qobject_to_qdict(data);
Adam Litke625a5be2010-01-26 14:17:35 -06002237 if (!qdict_haskey(qdict, "actual"))
2238 return;
Luiz Capitulino7f179672009-12-10 17:15:55 -02002239
Adam Litke625a5be2010-01-26 14:17:35 -06002240 monitor_printf(mon, "balloon: actual=%" PRId64,
2241 qdict_get_int(qdict, "actual") >> 20);
2242 qdict_iter(qdict, print_balloon_stat, mon);
2243 monitor_printf(mon, "\n");
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002244}
2245
2246/**
2247 * do_info_balloon(): Balloon information
Luiz Capitulino7f179672009-12-10 17:15:55 -02002248 *
Adam Litke625a5be2010-01-26 14:17:35 -06002249 * Make an asynchronous request for balloon info. When the request completes
2250 * a QDict will be returned according to the following specification:
Luiz Capitulino7f179672009-12-10 17:15:55 -02002251 *
Adam Litke625a5be2010-01-26 14:17:35 -06002252 * - "actual": current balloon value in bytes
2253 * The following fields may or may not be present:
2254 * - "mem_swapped_in": Amount of memory swapped in (bytes)
2255 * - "mem_swapped_out": Amount of memory swapped out (bytes)
2256 * - "major_page_faults": Number of major faults
2257 * - "minor_page_faults": Number of minor faults
2258 * - "free_mem": Total amount of free and unused memory (bytes)
2259 * - "total_mem": Total amount of available memory (bytes)
Luiz Capitulino7f179672009-12-10 17:15:55 -02002260 *
2261 * Example:
2262 *
Adam Litke625a5be2010-01-26 14:17:35 -06002263 * { "actual": 1073741824, "mem_swapped_in": 0, "mem_swapped_out": 0,
2264 * "major_page_faults": 142, "minor_page_faults": 239245,
2265 * "free_mem": 1014185984, "total_mem": 1044668416 }
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002266 */
Adam Litke625a5be2010-01-26 14:17:35 -06002267static int do_info_balloon(Monitor *mon, MonitorCompletion cb, void *opaque)
aliguoridf751fa2008-12-04 20:19:35 +00002268{
Adam Litke625a5be2010-01-26 14:17:35 -06002269 int ret;
aliguoridf751fa2008-12-04 20:19:35 +00002270
Adam Litke625a5be2010-01-26 14:17:35 -06002271 if (kvm_enabled() && !kvm_has_sync_mmu()) {
2272 qemu_error_new(QERR_KVM_MISSING_CAP, "synchronous MMU", "balloon");
2273 return -1;
Luiz Capitulinocfdf2c42009-12-14 18:53:22 -02002274 }
Adam Litke625a5be2010-01-26 14:17:35 -06002275
2276 ret = qemu_balloon_status(cb, opaque);
2277 if (!ret) {
2278 qemu_error_new(QERR_DEVICE_NOT_ACTIVE, "balloon");
2279 return -1;
2280 }
2281
2282 return 0;
2283}
2284
2285/**
2286 * do_balloon(): Request VM to change its memory allocation
2287 */
2288static int do_balloon(Monitor *mon, const QDict *params,
2289 MonitorCompletion cb, void *opaque)
2290{
2291 int ret;
2292
2293 if (kvm_enabled() && !kvm_has_sync_mmu()) {
2294 qemu_error_new(QERR_KVM_MISSING_CAP, "synchronous MMU", "balloon");
2295 return -1;
2296 }
2297
2298 ret = qemu_balloon(qdict_get_int(params, "value"), cb, opaque);
2299 if (ret == 0) {
2300 qemu_error_new(QERR_DEVICE_NOT_ACTIVE, "balloon");
2301 return -1;
2302 }
2303
2304 return 0;
aliguoridf751fa2008-12-04 20:19:35 +00002305}
2306
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002307static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002308{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002309 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002310
aliguori76655d62009-03-06 20:27:37 +00002311 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002312 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002313 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002314 return acl;
2315}
aliguori76655d62009-03-06 20:27:37 +00002316
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002317static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002318{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002319 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002320 qemu_acl *acl = find_acl(mon, aclname);
2321 qemu_acl_entry *entry;
2322 int i = 0;
2323
2324 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002325 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002326 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002327 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002328 i++;
2329 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002330 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002331 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002332 }
2333}
2334
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002335static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002336{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002337 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002338 qemu_acl *acl = find_acl(mon, aclname);
2339
2340 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002341 qemu_acl_reset(acl);
2342 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002343 }
2344}
aliguori76655d62009-03-06 20:27:37 +00002345
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002346static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002347{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002348 const char *aclname = qdict_get_str(qdict, "aclname");
2349 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002350 qemu_acl *acl = find_acl(mon, aclname);
2351
2352 if (acl) {
2353 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002354 acl->defaultDeny = 0;
2355 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002356 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002357 acl->defaultDeny = 1;
2358 monitor_printf(mon, "acl: policy set to 'deny'\n");
2359 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002360 monitor_printf(mon, "acl: unknown policy '%s', "
2361 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002362 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002363 }
2364}
aliguori76655d62009-03-06 20:27:37 +00002365
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002366static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002367{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002368 const char *aclname = qdict_get_str(qdict, "aclname");
2369 const char *match = qdict_get_str(qdict, "match");
2370 const char *policy = qdict_get_str(qdict, "policy");
2371 int has_index = qdict_haskey(qdict, "index");
2372 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002373 qemu_acl *acl = find_acl(mon, aclname);
2374 int deny, ret;
2375
2376 if (acl) {
2377 if (strcmp(policy, "allow") == 0) {
2378 deny = 0;
2379 } else if (strcmp(policy, "deny") == 0) {
2380 deny = 1;
2381 } else {
2382 monitor_printf(mon, "acl: unknown policy '%s', "
2383 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002384 return;
2385 }
aliguori28a76be2009-03-06 20:27:40 +00002386 if (has_index)
2387 ret = qemu_acl_insert(acl, deny, match, index);
2388 else
2389 ret = qemu_acl_append(acl, deny, match);
2390 if (ret < 0)
2391 monitor_printf(mon, "acl: unable to add acl entry\n");
2392 else
2393 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002394 }
2395}
aliguori76655d62009-03-06 20:27:37 +00002396
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002397static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002398{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002399 const char *aclname = qdict_get_str(qdict, "aclname");
2400 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002401 qemu_acl *acl = find_acl(mon, aclname);
2402 int ret;
aliguori76655d62009-03-06 20:27:37 +00002403
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002404 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002405 ret = qemu_acl_remove(acl, match);
2406 if (ret < 0)
2407 monitor_printf(mon, "acl: no matching acl entry\n");
2408 else
2409 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002410 }
2411}
2412
Huang Ying79c4f6b2009-06-23 10:05:14 +08002413#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002414static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002415{
2416 CPUState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002417 int cpu_index = qdict_get_int(qdict, "cpu_index");
2418 int bank = qdict_get_int(qdict, "bank");
2419 uint64_t status = qdict_get_int(qdict, "status");
2420 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2421 uint64_t addr = qdict_get_int(qdict, "addr");
2422 uint64_t misc = qdict_get_int(qdict, "misc");
Huang Ying79c4f6b2009-06-23 10:05:14 +08002423
2424 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
2425 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
2426 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
2427 break;
2428 }
2429}
2430#endif
2431
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002432static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002433{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002434 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002435 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002436 int fd;
2437
2438 fd = qemu_chr_get_msgfd(mon->chr);
2439 if (fd == -1) {
Markus Armbruster7cdfcfe2009-12-07 21:37:15 +01002440 qemu_error_new(QERR_FD_NOT_SUPPLIED);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002441 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002442 }
2443
2444 if (qemu_isdigit(fdname[0])) {
Markus Armbruster7cdfcfe2009-12-07 21:37:15 +01002445 qemu_error_new(QERR_INVALID_PARAMETER, "fdname");
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002446 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002447 }
2448
2449 fd = dup(fd);
2450 if (fd == -1) {
Markus Armbruster7cdfcfe2009-12-07 21:37:15 +01002451 if (errno == EMFILE)
2452 qemu_error_new(QERR_TOO_MANY_FILES);
2453 else
2454 qemu_error_new(QERR_UNDEFINED_ERROR);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002455 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002456 }
2457
Blue Swirl72cf2d42009-09-12 07:36:22 +00002458 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002459 if (strcmp(monfd->name, fdname) != 0) {
2460 continue;
2461 }
2462
2463 close(monfd->fd);
2464 monfd->fd = fd;
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002465 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002466 }
2467
Anthony Liguoric227f092009-10-01 16:12:16 -05002468 monfd = qemu_mallocz(sizeof(mon_fd_t));
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002469 monfd->name = qemu_strdup(fdname);
2470 monfd->fd = fd;
2471
Blue Swirl72cf2d42009-09-12 07:36:22 +00002472 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002473 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002474}
2475
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002476static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002477{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002478 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002479 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002480
Blue Swirl72cf2d42009-09-12 07:36:22 +00002481 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002482 if (strcmp(monfd->name, fdname) != 0) {
2483 continue;
2484 }
2485
Blue Swirl72cf2d42009-09-12 07:36:22 +00002486 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002487 close(monfd->fd);
2488 qemu_free(monfd->name);
2489 qemu_free(monfd);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002490 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002491 }
2492
Markus Armbruster063c1a02009-12-07 21:37:11 +01002493 qemu_error_new(QERR_FD_NOT_FOUND, fdname);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002494 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002495}
2496
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002497static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002498{
2499 int saved_vm_running = vm_running;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002500 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002501
2502 vm_stop(0);
2503
Juan Quintela05f24012009-08-20 19:42:22 +02002504 if (load_vmstate(mon, name) >= 0 && saved_vm_running)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002505 vm_start();
2506}
2507
Mark McLoughlin7768e042009-07-22 09:11:41 +01002508int monitor_get_fd(Monitor *mon, const char *fdname)
2509{
Anthony Liguoric227f092009-10-01 16:12:16 -05002510 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002511
Blue Swirl72cf2d42009-09-12 07:36:22 +00002512 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002513 int fd;
2514
2515 if (strcmp(monfd->name, fdname) != 0) {
2516 continue;
2517 }
2518
2519 fd = monfd->fd;
2520
2521 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002522 QLIST_REMOVE(monfd, next);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002523 qemu_free(monfd->name);
2524 qemu_free(monfd);
2525
2526 return fd;
2527 }
2528
2529 return -1;
2530}
2531
Anthony Liguoric227f092009-10-01 16:12:16 -05002532static const mon_cmd_t mon_cmds[] = {
Blue Swirl23130862009-06-06 08:22:04 +00002533#include "qemu-monitor.h"
ths5fafdf22007-09-16 21:08:06 +00002534 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002535};
2536
Blue Swirl23130862009-06-06 08:22:04 +00002537/* Please update qemu-monitor.hx when adding or changing commands */
Anthony Liguoric227f092009-10-01 16:12:16 -05002538static const mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002539 {
2540 .name = "version",
2541 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002542 .params = "",
2543 .help = "show the version of QEMU",
Luiz Capitulino45e914c2009-12-10 17:15:58 -02002544 .user_print = do_info_version_print,
Luiz Capitulinoab2d3182009-10-07 13:42:02 -03002545 .mhandler.info_new = do_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002546 },
2547 {
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -02002548 .name = "commands",
2549 .args_type = "",
2550 .params = "",
2551 .help = "list QMP available commands",
2552 .user_print = monitor_user_noop,
2553 .mhandler.info_new = do_info_commands,
2554 },
2555 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002556 .name = "network",
2557 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002558 .params = "",
2559 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002560 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002561 },
2562 {
2563 .name = "chardev",
2564 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002565 .params = "",
2566 .help = "show the character devices",
Luiz Capitulino588b3832009-12-10 17:16:08 -02002567 .user_print = qemu_chr_info_print,
2568 .mhandler.info_new = qemu_chr_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002569 },
2570 {
2571 .name = "block",
2572 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002573 .params = "",
2574 .help = "show the block devices",
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002575 .user_print = bdrv_info_print,
2576 .mhandler.info_new = bdrv_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002577 },
2578 {
2579 .name = "blockstats",
2580 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002581 .params = "",
2582 .help = "show block device statistics",
Luiz Capitulino218a5362009-12-10 17:16:07 -02002583 .user_print = bdrv_stats_print,
2584 .mhandler.info_new = bdrv_info_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002585 },
2586 {
2587 .name = "registers",
2588 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002589 .params = "",
2590 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002591 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002592 },
2593 {
2594 .name = "cpus",
2595 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002596 .params = "",
2597 .help = "show infos for each CPU",
Luiz Capitulino8f3cec02009-10-07 13:42:04 -03002598 .user_print = monitor_print_cpus,
2599 .mhandler.info_new = do_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002600 },
2601 {
2602 .name = "history",
2603 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002604 .params = "",
2605 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002606 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002607 },
2608 {
2609 .name = "irq",
2610 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002611 .params = "",
2612 .help = "show the interrupts statistics (if available)",
Luiz Capitulino910df892009-10-07 13:41:51 -03002613 .mhandler.info = irq_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002614 },
2615 {
2616 .name = "pic",
2617 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002618 .params = "",
2619 .help = "show i8259 (PIC) state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002620 .mhandler.info = pic_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002621 },
2622 {
2623 .name = "pci",
2624 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002625 .params = "",
2626 .help = "show PCI info",
Luiz Capitulino163c8a52010-01-21 19:15:40 -02002627 .user_print = do_pci_info_print,
2628 .mhandler.info_new = do_pci_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002629 },
aurel327c664e22009-03-03 06:12:22 +00002630#if defined(TARGET_I386) || defined(TARGET_SH4)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002631 {
2632 .name = "tlb",
2633 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002634 .params = "",
2635 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002636 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002637 },
aurel327c664e22009-03-03 06:12:22 +00002638#endif
2639#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002640 {
2641 .name = "mem",
2642 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002643 .params = "",
2644 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002645 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002646 },
2647 {
2648 .name = "hpet",
2649 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002650 .params = "",
2651 .help = "show state of HPET",
Luiz Capitulino14f07202009-12-10 17:16:02 -02002652 .user_print = do_info_hpet_print,
2653 .mhandler.info_new = do_info_hpet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002654 },
bellardb86bda52004-09-18 19:32:46 +00002655#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002656 {
2657 .name = "jit",
2658 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002659 .params = "",
2660 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002661 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002662 },
2663 {
2664 .name = "kvm",
2665 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002666 .params = "",
2667 .help = "show KVM information",
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002668 .user_print = do_info_kvm_print,
2669 .mhandler.info_new = do_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002670 },
2671 {
2672 .name = "numa",
2673 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002674 .params = "",
2675 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002676 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002677 },
2678 {
2679 .name = "usb",
2680 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002681 .params = "",
2682 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002683 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002684 },
2685 {
2686 .name = "usbhost",
2687 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002688 .params = "",
2689 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002690 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002691 },
2692 {
2693 .name = "profile",
2694 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002695 .params = "",
2696 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002697 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002698 },
2699 {
2700 .name = "capture",
2701 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002702 .params = "",
2703 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002704 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002705 },
2706 {
2707 .name = "snapshots",
2708 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002709 .params = "",
2710 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002711 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002712 },
2713 {
2714 .name = "status",
2715 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002716 .params = "",
2717 .help = "show the current VM status (running|paused)",
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002718 .user_print = do_info_status_print,
2719 .mhandler.info_new = do_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002720 },
2721 {
2722 .name = "pcmcia",
2723 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002724 .params = "",
2725 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002726 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002727 },
2728 {
2729 .name = "mice",
2730 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002731 .params = "",
2732 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe78c48e2009-12-10 17:16:04 -02002733 .user_print = do_info_mice_print,
2734 .mhandler.info_new = do_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002735 },
2736 {
2737 .name = "vnc",
2738 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002739 .params = "",
2740 .help = "show the vnc server status",
Luiz Capitulinod96fd292009-12-10 17:16:10 -02002741 .user_print = do_info_vnc_print,
2742 .mhandler.info_new = do_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002743 },
2744 {
2745 .name = "name",
2746 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002747 .params = "",
2748 .help = "show the current VM name",
Luiz Capitulinoe05486c2009-12-10 17:16:01 -02002749 .user_print = do_info_name_print,
2750 .mhandler.info_new = do_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002751 },
2752 {
2753 .name = "uuid",
2754 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002755 .params = "",
2756 .help = "show the current VM UUID",
Luiz Capitulino9603ceb2009-12-10 17:16:03 -02002757 .user_print = do_info_uuid_print,
2758 .mhandler.info_new = do_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002759 },
j_mayer76a66252007-03-07 08:32:30 +00002760#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002761 {
2762 .name = "cpustats",
2763 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002764 .params = "",
2765 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002766 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002767 },
j_mayer76a66252007-03-07 08:32:30 +00002768#endif
blueswir131a60e22007-10-26 18:42:59 +00002769#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002770 {
2771 .name = "usernet",
2772 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002773 .params = "",
2774 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002775 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002776 },
blueswir131a60e22007-10-26 18:42:59 +00002777#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002778 {
2779 .name = "migrate",
2780 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002781 .params = "",
2782 .help = "show migration status",
Luiz Capitulinoc86a6682009-12-10 17:16:05 -02002783 .user_print = do_info_migrate_print,
2784 .mhandler.info_new = do_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002785 },
2786 {
2787 .name = "balloon",
2788 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002789 .params = "",
2790 .help = "show balloon information",
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002791 .user_print = monitor_print_balloon,
Adam Litke625a5be2010-01-26 14:17:35 -06002792 .mhandler.info_async = do_info_balloon,
2793 .async = 1,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002794 },
2795 {
2796 .name = "qtree",
2797 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002798 .params = "",
2799 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002800 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002801 },
2802 {
2803 .name = "qdm",
2804 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002805 .params = "",
2806 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002807 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002808 },
2809 {
2810 .name = "roms",
2811 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002812 .params = "",
2813 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002814 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002815 },
2816 {
2817 .name = NULL,
2818 },
bellard9dc39cb2004-03-14 21:38:27 +00002819};
2820
bellard9307c4c2004-04-04 12:57:25 +00002821/*******************************************************************/
2822
2823static const char *pch;
2824static jmp_buf expr_env;
2825
bellard92a31b12005-02-10 22:00:52 +00002826#define MD_TLONG 0
2827#define MD_I32 1
2828
bellard9307c4c2004-04-04 12:57:25 +00002829typedef struct MonitorDef {
2830 const char *name;
2831 int offset;
blueswir18662d652008-10-02 18:32:44 +00002832 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002833 int type;
bellard9307c4c2004-04-04 12:57:25 +00002834} MonitorDef;
2835
bellard57206fd2004-04-25 18:54:52 +00002836#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002837static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002838{
bellard6a00d602005-11-21 23:25:50 +00002839 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002840 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002841}
2842#endif
2843
bellarda541f292004-04-12 20:39:29 +00002844#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002845static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002846{
bellard6a00d602005-11-21 23:25:50 +00002847 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002848 unsigned int u;
2849 int i;
2850
2851 u = 0;
2852 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002853 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002854
2855 return u;
2856}
2857
blueswir18662d652008-10-02 18:32:44 +00002858static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002859{
bellard6a00d602005-11-21 23:25:50 +00002860 CPUState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00002861 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002862}
2863
blueswir18662d652008-10-02 18:32:44 +00002864static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002865{
bellard6a00d602005-11-21 23:25:50 +00002866 CPUState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00002867 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002868}
bellard9fddaa02004-05-21 12:59:32 +00002869
blueswir18662d652008-10-02 18:32:44 +00002870static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002871{
bellard6a00d602005-11-21 23:25:50 +00002872 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002873 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002874}
2875
blueswir18662d652008-10-02 18:32:44 +00002876static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002877{
bellard6a00d602005-11-21 23:25:50 +00002878 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002879 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002880}
2881
blueswir18662d652008-10-02 18:32:44 +00002882static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002883{
bellard6a00d602005-11-21 23:25:50 +00002884 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002885 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002886}
bellarda541f292004-04-12 20:39:29 +00002887#endif
2888
bellarde95c8d52004-09-30 22:22:08 +00002889#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002890#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002891static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002892{
bellard6a00d602005-11-21 23:25:50 +00002893 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002894 return GET_PSR(env);
bellarde95c8d52004-09-30 22:22:08 +00002895}
bellard7b936c02005-10-30 17:05:13 +00002896#endif
bellarde95c8d52004-09-30 22:22:08 +00002897
blueswir18662d652008-10-02 18:32:44 +00002898static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002899{
bellard6a00d602005-11-21 23:25:50 +00002900 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002901 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002902}
2903#endif
2904
blueswir18662d652008-10-02 18:32:44 +00002905static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002906#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002907
2908#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00002909 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00002910 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00002911 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002912
bellard9307c4c2004-04-04 12:57:25 +00002913 { "eax", offsetof(CPUState, regs[0]) },
2914 { "ecx", offsetof(CPUState, regs[1]) },
2915 { "edx", offsetof(CPUState, regs[2]) },
2916 { "ebx", offsetof(CPUState, regs[3]) },
2917 { "esp|sp", offsetof(CPUState, regs[4]) },
2918 { "ebp|fp", offsetof(CPUState, regs[5]) },
2919 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00002920 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002921#ifdef TARGET_X86_64
2922 { "r8", offsetof(CPUState, regs[8]) },
2923 { "r9", offsetof(CPUState, regs[9]) },
2924 { "r10", offsetof(CPUState, regs[10]) },
2925 { "r11", offsetof(CPUState, regs[11]) },
2926 { "r12", offsetof(CPUState, regs[12]) },
2927 { "r13", offsetof(CPUState, regs[13]) },
2928 { "r14", offsetof(CPUState, regs[14]) },
2929 { "r15", offsetof(CPUState, regs[15]) },
2930#endif
bellard9307c4c2004-04-04 12:57:25 +00002931 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00002932 { "eip", offsetof(CPUState, eip) },
2933 SEG("cs", R_CS)
2934 SEG("ds", R_DS)
2935 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002936 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002937 SEG("fs", R_FS)
2938 SEG("gs", R_GS)
2939 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002940#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002941 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00002942 { "r0", offsetof(CPUState, gpr[0]) },
2943 { "r1", offsetof(CPUState, gpr[1]) },
2944 { "r2", offsetof(CPUState, gpr[2]) },
2945 { "r3", offsetof(CPUState, gpr[3]) },
2946 { "r4", offsetof(CPUState, gpr[4]) },
2947 { "r5", offsetof(CPUState, gpr[5]) },
2948 { "r6", offsetof(CPUState, gpr[6]) },
2949 { "r7", offsetof(CPUState, gpr[7]) },
2950 { "r8", offsetof(CPUState, gpr[8]) },
2951 { "r9", offsetof(CPUState, gpr[9]) },
2952 { "r10", offsetof(CPUState, gpr[10]) },
2953 { "r11", offsetof(CPUState, gpr[11]) },
2954 { "r12", offsetof(CPUState, gpr[12]) },
2955 { "r13", offsetof(CPUState, gpr[13]) },
2956 { "r14", offsetof(CPUState, gpr[14]) },
2957 { "r15", offsetof(CPUState, gpr[15]) },
2958 { "r16", offsetof(CPUState, gpr[16]) },
2959 { "r17", offsetof(CPUState, gpr[17]) },
2960 { "r18", offsetof(CPUState, gpr[18]) },
2961 { "r19", offsetof(CPUState, gpr[19]) },
2962 { "r20", offsetof(CPUState, gpr[20]) },
2963 { "r21", offsetof(CPUState, gpr[21]) },
2964 { "r22", offsetof(CPUState, gpr[22]) },
2965 { "r23", offsetof(CPUState, gpr[23]) },
2966 { "r24", offsetof(CPUState, gpr[24]) },
2967 { "r25", offsetof(CPUState, gpr[25]) },
2968 { "r26", offsetof(CPUState, gpr[26]) },
2969 { "r27", offsetof(CPUState, gpr[27]) },
2970 { "r28", offsetof(CPUState, gpr[28]) },
2971 { "r29", offsetof(CPUState, gpr[29]) },
2972 { "r30", offsetof(CPUState, gpr[30]) },
2973 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00002974 /* Floating point registers */
2975 { "f0", offsetof(CPUState, fpr[0]) },
2976 { "f1", offsetof(CPUState, fpr[1]) },
2977 { "f2", offsetof(CPUState, fpr[2]) },
2978 { "f3", offsetof(CPUState, fpr[3]) },
2979 { "f4", offsetof(CPUState, fpr[4]) },
2980 { "f5", offsetof(CPUState, fpr[5]) },
2981 { "f6", offsetof(CPUState, fpr[6]) },
2982 { "f7", offsetof(CPUState, fpr[7]) },
2983 { "f8", offsetof(CPUState, fpr[8]) },
2984 { "f9", offsetof(CPUState, fpr[9]) },
2985 { "f10", offsetof(CPUState, fpr[10]) },
2986 { "f11", offsetof(CPUState, fpr[11]) },
2987 { "f12", offsetof(CPUState, fpr[12]) },
2988 { "f13", offsetof(CPUState, fpr[13]) },
2989 { "f14", offsetof(CPUState, fpr[14]) },
2990 { "f15", offsetof(CPUState, fpr[15]) },
2991 { "f16", offsetof(CPUState, fpr[16]) },
2992 { "f17", offsetof(CPUState, fpr[17]) },
2993 { "f18", offsetof(CPUState, fpr[18]) },
2994 { "f19", offsetof(CPUState, fpr[19]) },
2995 { "f20", offsetof(CPUState, fpr[20]) },
2996 { "f21", offsetof(CPUState, fpr[21]) },
2997 { "f22", offsetof(CPUState, fpr[22]) },
2998 { "f23", offsetof(CPUState, fpr[23]) },
2999 { "f24", offsetof(CPUState, fpr[24]) },
3000 { "f25", offsetof(CPUState, fpr[25]) },
3001 { "f26", offsetof(CPUState, fpr[26]) },
3002 { "f27", offsetof(CPUState, fpr[27]) },
3003 { "f28", offsetof(CPUState, fpr[28]) },
3004 { "f29", offsetof(CPUState, fpr[29]) },
3005 { "f30", offsetof(CPUState, fpr[30]) },
3006 { "f31", offsetof(CPUState, fpr[31]) },
3007 { "fpscr", offsetof(CPUState, fpscr) },
3008 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00003009 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00003010 { "lr", offsetof(CPUState, lr) },
3011 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00003012 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00003013 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00003014 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00003015 { "msr", 0, &monitor_get_msr, },
3016 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00003017 { "tbu", 0, &monitor_get_tbu, },
3018 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00003019#if defined(TARGET_PPC64)
3020 /* Address space register */
3021 { "asr", offsetof(CPUState, asr) },
3022#endif
3023 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00003024 { "sdr1", offsetof(CPUState, sdr1) },
3025 { "sr0", offsetof(CPUState, sr[0]) },
3026 { "sr1", offsetof(CPUState, sr[1]) },
3027 { "sr2", offsetof(CPUState, sr[2]) },
3028 { "sr3", offsetof(CPUState, sr[3]) },
3029 { "sr4", offsetof(CPUState, sr[4]) },
3030 { "sr5", offsetof(CPUState, sr[5]) },
3031 { "sr6", offsetof(CPUState, sr[6]) },
3032 { "sr7", offsetof(CPUState, sr[7]) },
3033 { "sr8", offsetof(CPUState, sr[8]) },
3034 { "sr9", offsetof(CPUState, sr[9]) },
3035 { "sr10", offsetof(CPUState, sr[10]) },
3036 { "sr11", offsetof(CPUState, sr[11]) },
3037 { "sr12", offsetof(CPUState, sr[12]) },
3038 { "sr13", offsetof(CPUState, sr[13]) },
3039 { "sr14", offsetof(CPUState, sr[14]) },
3040 { "sr15", offsetof(CPUState, sr[15]) },
3041 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00003042#elif defined(TARGET_SPARC)
3043 { "g0", offsetof(CPUState, gregs[0]) },
3044 { "g1", offsetof(CPUState, gregs[1]) },
3045 { "g2", offsetof(CPUState, gregs[2]) },
3046 { "g3", offsetof(CPUState, gregs[3]) },
3047 { "g4", offsetof(CPUState, gregs[4]) },
3048 { "g5", offsetof(CPUState, gregs[5]) },
3049 { "g6", offsetof(CPUState, gregs[6]) },
3050 { "g7", offsetof(CPUState, gregs[7]) },
3051 { "o0", 0, monitor_get_reg },
3052 { "o1", 1, monitor_get_reg },
3053 { "o2", 2, monitor_get_reg },
3054 { "o3", 3, monitor_get_reg },
3055 { "o4", 4, monitor_get_reg },
3056 { "o5", 5, monitor_get_reg },
3057 { "o6", 6, monitor_get_reg },
3058 { "o7", 7, monitor_get_reg },
3059 { "l0", 8, monitor_get_reg },
3060 { "l1", 9, monitor_get_reg },
3061 { "l2", 10, monitor_get_reg },
3062 { "l3", 11, monitor_get_reg },
3063 { "l4", 12, monitor_get_reg },
3064 { "l5", 13, monitor_get_reg },
3065 { "l6", 14, monitor_get_reg },
3066 { "l7", 15, monitor_get_reg },
3067 { "i0", 16, monitor_get_reg },
3068 { "i1", 17, monitor_get_reg },
3069 { "i2", 18, monitor_get_reg },
3070 { "i3", 19, monitor_get_reg },
3071 { "i4", 20, monitor_get_reg },
3072 { "i5", 21, monitor_get_reg },
3073 { "i6", 22, monitor_get_reg },
3074 { "i7", 23, monitor_get_reg },
3075 { "pc", offsetof(CPUState, pc) },
3076 { "npc", offsetof(CPUState, npc) },
3077 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00003078#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00003079 { "psr", 0, &monitor_get_psr, },
3080 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00003081#endif
bellarde95c8d52004-09-30 22:22:08 +00003082 { "tbr", offsetof(CPUState, tbr) },
3083 { "fsr", offsetof(CPUState, fsr) },
3084 { "f0", offsetof(CPUState, fpr[0]) },
3085 { "f1", offsetof(CPUState, fpr[1]) },
3086 { "f2", offsetof(CPUState, fpr[2]) },
3087 { "f3", offsetof(CPUState, fpr[3]) },
3088 { "f4", offsetof(CPUState, fpr[4]) },
3089 { "f5", offsetof(CPUState, fpr[5]) },
3090 { "f6", offsetof(CPUState, fpr[6]) },
3091 { "f7", offsetof(CPUState, fpr[7]) },
3092 { "f8", offsetof(CPUState, fpr[8]) },
3093 { "f9", offsetof(CPUState, fpr[9]) },
3094 { "f10", offsetof(CPUState, fpr[10]) },
3095 { "f11", offsetof(CPUState, fpr[11]) },
3096 { "f12", offsetof(CPUState, fpr[12]) },
3097 { "f13", offsetof(CPUState, fpr[13]) },
3098 { "f14", offsetof(CPUState, fpr[14]) },
3099 { "f15", offsetof(CPUState, fpr[15]) },
3100 { "f16", offsetof(CPUState, fpr[16]) },
3101 { "f17", offsetof(CPUState, fpr[17]) },
3102 { "f18", offsetof(CPUState, fpr[18]) },
3103 { "f19", offsetof(CPUState, fpr[19]) },
3104 { "f20", offsetof(CPUState, fpr[20]) },
3105 { "f21", offsetof(CPUState, fpr[21]) },
3106 { "f22", offsetof(CPUState, fpr[22]) },
3107 { "f23", offsetof(CPUState, fpr[23]) },
3108 { "f24", offsetof(CPUState, fpr[24]) },
3109 { "f25", offsetof(CPUState, fpr[25]) },
3110 { "f26", offsetof(CPUState, fpr[26]) },
3111 { "f27", offsetof(CPUState, fpr[27]) },
3112 { "f28", offsetof(CPUState, fpr[28]) },
3113 { "f29", offsetof(CPUState, fpr[29]) },
3114 { "f30", offsetof(CPUState, fpr[30]) },
3115 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00003116#ifdef TARGET_SPARC64
3117 { "f32", offsetof(CPUState, fpr[32]) },
3118 { "f34", offsetof(CPUState, fpr[34]) },
3119 { "f36", offsetof(CPUState, fpr[36]) },
3120 { "f38", offsetof(CPUState, fpr[38]) },
3121 { "f40", offsetof(CPUState, fpr[40]) },
3122 { "f42", offsetof(CPUState, fpr[42]) },
3123 { "f44", offsetof(CPUState, fpr[44]) },
3124 { "f46", offsetof(CPUState, fpr[46]) },
3125 { "f48", offsetof(CPUState, fpr[48]) },
3126 { "f50", offsetof(CPUState, fpr[50]) },
3127 { "f52", offsetof(CPUState, fpr[52]) },
3128 { "f54", offsetof(CPUState, fpr[54]) },
3129 { "f56", offsetof(CPUState, fpr[56]) },
3130 { "f58", offsetof(CPUState, fpr[58]) },
3131 { "f60", offsetof(CPUState, fpr[60]) },
3132 { "f62", offsetof(CPUState, fpr[62]) },
3133 { "asi", offsetof(CPUState, asi) },
3134 { "pstate", offsetof(CPUState, pstate) },
3135 { "cansave", offsetof(CPUState, cansave) },
3136 { "canrestore", offsetof(CPUState, canrestore) },
3137 { "otherwin", offsetof(CPUState, otherwin) },
3138 { "wstate", offsetof(CPUState, wstate) },
3139 { "cleanwin", offsetof(CPUState, cleanwin) },
3140 { "fprs", offsetof(CPUState, fprs) },
3141#endif
bellard9307c4c2004-04-04 12:57:25 +00003142#endif
3143 { NULL },
3144};
3145
aliguori376253e2009-03-05 23:01:23 +00003146static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00003147{
aliguori376253e2009-03-05 23:01:23 +00003148 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00003149 longjmp(expr_env, 1);
3150}
3151
Markus Armbruster09b94182010-01-20 13:07:30 +01003152/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00003153static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00003154{
blueswir18662d652008-10-02 18:32:44 +00003155 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00003156 void *ptr;
3157
bellard9307c4c2004-04-04 12:57:25 +00003158 for(md = monitor_defs; md->name != NULL; md++) {
3159 if (compare_cmd(name, md->name)) {
3160 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003161 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003162 } else {
bellard6a00d602005-11-21 23:25:50 +00003163 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003164 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003165 switch(md->type) {
3166 case MD_I32:
3167 *pval = *(int32_t *)ptr;
3168 break;
3169 case MD_TLONG:
3170 *pval = *(target_long *)ptr;
3171 break;
3172 default:
3173 *pval = 0;
3174 break;
3175 }
bellard9307c4c2004-04-04 12:57:25 +00003176 }
3177 return 0;
3178 }
3179 }
3180 return -1;
3181}
3182
3183static void next(void)
3184{
Blue Swirl660f11b2009-07-31 21:16:51 +00003185 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003186 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003187 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003188 pch++;
3189 }
3190}
3191
aliguori376253e2009-03-05 23:01:23 +00003192static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003193
aliguori376253e2009-03-05 23:01:23 +00003194static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003195{
blueswir1c2efc952007-09-25 17:28:42 +00003196 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003197 char *p;
bellard6a00d602005-11-21 23:25:50 +00003198 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003199
3200 switch(*pch) {
3201 case '+':
3202 next();
aliguori376253e2009-03-05 23:01:23 +00003203 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003204 break;
3205 case '-':
3206 next();
aliguori376253e2009-03-05 23:01:23 +00003207 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003208 break;
3209 case '~':
3210 next();
aliguori376253e2009-03-05 23:01:23 +00003211 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003212 break;
3213 case '(':
3214 next();
aliguori376253e2009-03-05 23:01:23 +00003215 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003216 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003217 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003218 }
3219 next();
3220 break;
bellard81d09122004-07-14 17:21:37 +00003221 case '\'':
3222 pch++;
3223 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003224 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003225 n = *pch;
3226 pch++;
3227 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003228 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003229 next();
3230 break;
bellard9307c4c2004-04-04 12:57:25 +00003231 case '$':
3232 {
3233 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003234 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003235
bellard9307c4c2004-04-04 12:57:25 +00003236 pch++;
3237 q = buf;
3238 while ((*pch >= 'a' && *pch <= 'z') ||
3239 (*pch >= 'A' && *pch <= 'Z') ||
3240 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003241 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003242 if ((q - buf) < sizeof(buf) - 1)
3243 *q++ = *pch;
3244 pch++;
3245 }
blueswir1cd390082008-11-16 13:53:32 +00003246 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003247 pch++;
3248 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003249 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003250 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003251 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003252 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003253 }
3254 break;
3255 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003256 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003257 n = 0;
3258 break;
3259 default:
blueswir17743e582007-09-24 18:39:04 +00003260#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003261 n = strtoull(pch, &p, 0);
3262#else
bellard9307c4c2004-04-04 12:57:25 +00003263 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003264#endif
bellard9307c4c2004-04-04 12:57:25 +00003265 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003266 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003267 }
3268 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003269 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003270 pch++;
3271 break;
3272 }
3273 return n;
3274}
3275
3276
aliguori376253e2009-03-05 23:01:23 +00003277static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003278{
blueswir1c2efc952007-09-25 17:28:42 +00003279 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003280 int op;
ths3b46e622007-09-17 08:09:54 +00003281
aliguori376253e2009-03-05 23:01:23 +00003282 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003283 for(;;) {
3284 op = *pch;
3285 if (op != '*' && op != '/' && op != '%')
3286 break;
3287 next();
aliguori376253e2009-03-05 23:01:23 +00003288 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003289 switch(op) {
3290 default:
3291 case '*':
3292 val *= val2;
3293 break;
3294 case '/':
3295 case '%':
ths5fafdf22007-09-16 21:08:06 +00003296 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003297 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003298 if (op == '/')
3299 val /= val2;
3300 else
3301 val %= val2;
3302 break;
3303 }
3304 }
3305 return val;
3306}
3307
aliguori376253e2009-03-05 23:01:23 +00003308static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003309{
blueswir1c2efc952007-09-25 17:28:42 +00003310 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003311 int op;
bellard9307c4c2004-04-04 12:57:25 +00003312
aliguori376253e2009-03-05 23:01:23 +00003313 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003314 for(;;) {
3315 op = *pch;
3316 if (op != '&' && op != '|' && op != '^')
3317 break;
3318 next();
aliguori376253e2009-03-05 23:01:23 +00003319 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003320 switch(op) {
3321 default:
3322 case '&':
3323 val &= val2;
3324 break;
3325 case '|':
3326 val |= val2;
3327 break;
3328 case '^':
3329 val ^= val2;
3330 break;
3331 }
3332 }
3333 return val;
3334}
3335
aliguori376253e2009-03-05 23:01:23 +00003336static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003337{
blueswir1c2efc952007-09-25 17:28:42 +00003338 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003339 int op;
bellard9307c4c2004-04-04 12:57:25 +00003340
aliguori376253e2009-03-05 23:01:23 +00003341 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003342 for(;;) {
3343 op = *pch;
3344 if (op != '+' && op != '-')
3345 break;
3346 next();
aliguori376253e2009-03-05 23:01:23 +00003347 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003348 if (op == '+')
3349 val += val2;
3350 else
3351 val -= val2;
3352 }
3353 return val;
3354}
3355
aliguori376253e2009-03-05 23:01:23 +00003356static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003357{
3358 pch = *pp;
3359 if (setjmp(expr_env)) {
3360 *pp = pch;
3361 return -1;
3362 }
blueswir1cd390082008-11-16 13:53:32 +00003363 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003364 pch++;
aliguori376253e2009-03-05 23:01:23 +00003365 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003366 *pp = pch;
3367 return 0;
3368}
3369
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003370static int get_double(Monitor *mon, double *pval, const char **pp)
3371{
3372 const char *p = *pp;
3373 char *tailp;
3374 double d;
3375
3376 d = strtod(p, &tailp);
3377 if (tailp == p) {
3378 monitor_printf(mon, "Number expected\n");
3379 return -1;
3380 }
3381 if (d != d || d - d != 0) {
3382 /* NaN or infinity */
3383 monitor_printf(mon, "Bad number\n");
3384 return -1;
3385 }
3386 *pval = d;
3387 *pp = tailp;
3388 return 0;
3389}
3390
bellard9307c4c2004-04-04 12:57:25 +00003391static int get_str(char *buf, int buf_size, const char **pp)
3392{
3393 const char *p;
3394 char *q;
3395 int c;
3396
bellard81d09122004-07-14 17:21:37 +00003397 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003398 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003399 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003400 p++;
3401 if (*p == '\0') {
3402 fail:
bellard81d09122004-07-14 17:21:37 +00003403 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003404 *pp = p;
3405 return -1;
3406 }
bellard9307c4c2004-04-04 12:57:25 +00003407 if (*p == '\"') {
3408 p++;
3409 while (*p != '\0' && *p != '\"') {
3410 if (*p == '\\') {
3411 p++;
3412 c = *p++;
3413 switch(c) {
3414 case 'n':
3415 c = '\n';
3416 break;
3417 case 'r':
3418 c = '\r';
3419 break;
3420 case '\\':
3421 case '\'':
3422 case '\"':
3423 break;
3424 default:
3425 qemu_printf("unsupported escape code: '\\%c'\n", c);
3426 goto fail;
3427 }
3428 if ((q - buf) < buf_size - 1) {
3429 *q++ = c;
3430 }
3431 } else {
3432 if ((q - buf) < buf_size - 1) {
3433 *q++ = *p;
3434 }
3435 p++;
3436 }
3437 }
3438 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003439 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003440 goto fail;
3441 }
3442 p++;
3443 } else {
blueswir1cd390082008-11-16 13:53:32 +00003444 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003445 if ((q - buf) < buf_size - 1) {
3446 *q++ = *p;
3447 }
3448 p++;
3449 }
bellard9307c4c2004-04-04 12:57:25 +00003450 }
bellard81d09122004-07-14 17:21:37 +00003451 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003452 *pp = p;
3453 return 0;
3454}
3455
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003456/*
3457 * Store the command-name in cmdname, and return a pointer to
3458 * the remaining of the command string.
3459 */
3460static const char *get_command_name(const char *cmdline,
3461 char *cmdname, size_t nlen)
3462{
3463 size_t len;
3464 const char *p, *pstart;
3465
3466 p = cmdline;
3467 while (qemu_isspace(*p))
3468 p++;
3469 if (*p == '\0')
3470 return NULL;
3471 pstart = p;
3472 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3473 p++;
3474 len = p - pstart;
3475 if (len > nlen - 1)
3476 len = nlen - 1;
3477 memcpy(cmdname, pstart, len);
3478 cmdname[len] = '\0';
3479 return p;
3480}
3481
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003482/**
3483 * Read key of 'type' into 'key' and return the current
3484 * 'type' pointer.
3485 */
3486static char *key_get_info(const char *type, char **key)
3487{
3488 size_t len;
3489 char *p, *str;
3490
3491 if (*type == ',')
3492 type++;
3493
3494 p = strchr(type, ':');
3495 if (!p) {
3496 *key = NULL;
3497 return NULL;
3498 }
3499 len = p - type;
3500
3501 str = qemu_malloc(len + 1);
3502 memcpy(str, type, len);
3503 str[len] = '\0';
3504
3505 *key = str;
3506 return ++p;
3507}
3508
bellard9307c4c2004-04-04 12:57:25 +00003509static int default_fmt_format = 'x';
3510static int default_fmt_size = 4;
3511
3512#define MAX_ARGS 16
3513
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003514static int is_valid_option(const char *c, const char *typestr)
3515{
3516 char option[3];
3517
3518 option[0] = '-';
3519 option[1] = *c;
3520 option[2] = '\0';
3521
3522 typestr = strstr(typestr, option);
3523 return (typestr != NULL);
3524}
3525
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003526static const mon_cmd_t *monitor_find_command(const char *cmdname)
3527{
3528 const mon_cmd_t *cmd;
3529
3530 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
3531 if (compare_cmd(cmdname, cmd->name)) {
3532 return cmd;
3533 }
3534 }
3535
3536 return NULL;
3537}
3538
Anthony Liguoric227f092009-10-01 16:12:16 -05003539static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003540 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003541 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003542{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003543 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003544 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003545 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003546 char cmdname[256];
3547 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003548 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003549
3550#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003551 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003552#endif
ths3b46e622007-09-17 08:09:54 +00003553
bellard9307c4c2004-04-04 12:57:25 +00003554 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003555 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3556 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003557 return NULL;
ths3b46e622007-09-17 08:09:54 +00003558
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003559 cmd = monitor_find_command(cmdname);
3560 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003561 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003562 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003563 }
bellard9307c4c2004-04-04 12:57:25 +00003564
bellard9307c4c2004-04-04 12:57:25 +00003565 /* parse the parameters */
3566 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003567 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003568 typestr = key_get_info(typestr, &key);
3569 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003570 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003571 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003572 typestr++;
3573 switch(c) {
3574 case 'F':
bellard81d09122004-07-14 17:21:37 +00003575 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003576 case 's':
3577 {
3578 int ret;
ths3b46e622007-09-17 08:09:54 +00003579
blueswir1cd390082008-11-16 13:53:32 +00003580 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003581 p++;
3582 if (*typestr == '?') {
3583 typestr++;
3584 if (*p == '\0') {
3585 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003586 break;
bellard9307c4c2004-04-04 12:57:25 +00003587 }
3588 }
3589 ret = get_str(buf, sizeof(buf), &p);
3590 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003591 switch(c) {
3592 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003593 monitor_printf(mon, "%s: filename expected\n",
3594 cmdname);
bellard81d09122004-07-14 17:21:37 +00003595 break;
3596 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003597 monitor_printf(mon, "%s: block device name expected\n",
3598 cmdname);
bellard81d09122004-07-14 17:21:37 +00003599 break;
3600 default:
aliguori376253e2009-03-05 23:01:23 +00003601 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003602 break;
3603 }
bellard9307c4c2004-04-04 12:57:25 +00003604 goto fail;
3605 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003606 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003607 }
3608 break;
3609 case '/':
3610 {
3611 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003612
blueswir1cd390082008-11-16 13:53:32 +00003613 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003614 p++;
3615 if (*p == '/') {
3616 /* format found */
3617 p++;
3618 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003619 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003620 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003621 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003622 count = count * 10 + (*p - '0');
3623 p++;
3624 }
3625 }
3626 size = -1;
3627 format = -1;
3628 for(;;) {
3629 switch(*p) {
3630 case 'o':
3631 case 'd':
3632 case 'u':
3633 case 'x':
3634 case 'i':
3635 case 'c':
3636 format = *p++;
3637 break;
3638 case 'b':
3639 size = 1;
3640 p++;
3641 break;
3642 case 'h':
3643 size = 2;
3644 p++;
3645 break;
3646 case 'w':
3647 size = 4;
3648 p++;
3649 break;
3650 case 'g':
3651 case 'L':
3652 size = 8;
3653 p++;
3654 break;
3655 default:
3656 goto next;
3657 }
3658 }
3659 next:
blueswir1cd390082008-11-16 13:53:32 +00003660 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003661 monitor_printf(mon, "invalid char in format: '%c'\n",
3662 *p);
bellard9307c4c2004-04-04 12:57:25 +00003663 goto fail;
3664 }
bellard9307c4c2004-04-04 12:57:25 +00003665 if (format < 0)
3666 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003667 if (format != 'i') {
3668 /* for 'i', not specifying a size gives -1 as size */
3669 if (size < 0)
3670 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003671 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003672 }
bellard9307c4c2004-04-04 12:57:25 +00003673 default_fmt_format = format;
3674 } else {
3675 count = 1;
3676 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003677 if (format != 'i') {
3678 size = default_fmt_size;
3679 } else {
3680 size = -1;
3681 }
bellard9307c4c2004-04-04 12:57:25 +00003682 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003683 qdict_put(qdict, "count", qint_from_int(count));
3684 qdict_put(qdict, "format", qint_from_int(format));
3685 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003686 }
3687 break;
3688 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003689 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003690 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003691 {
blueswir1c2efc952007-09-25 17:28:42 +00003692 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003693
blueswir1cd390082008-11-16 13:53:32 +00003694 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003695 p++;
bellard34405572004-06-08 00:55:58 +00003696 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003697 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003698 if (*p == '\0') {
3699 typestr++;
3700 break;
3701 }
bellard34405572004-06-08 00:55:58 +00003702 } else {
3703 if (*p == '.') {
3704 p++;
blueswir1cd390082008-11-16 13:53:32 +00003705 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003706 p++;
bellard34405572004-06-08 00:55:58 +00003707 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003708 typestr++;
3709 break;
bellard34405572004-06-08 00:55:58 +00003710 }
3711 }
bellard13224a82006-07-14 22:03:35 +00003712 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003713 }
aliguori376253e2009-03-05 23:01:23 +00003714 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003715 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003716 /* Check if 'i' is greater than 32-bit */
3717 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3718 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3719 monitor_printf(mon, "integer is for 32-bit values\n");
3720 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003721 } else if (c == 'M') {
3722 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003723 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003724 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003725 }
3726 break;
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003727 case 'b':
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003728 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003729 {
3730 double val;
3731
3732 while (qemu_isspace(*p))
3733 p++;
3734 if (*typestr == '?') {
3735 typestr++;
3736 if (*p == '\0') {
3737 break;
3738 }
3739 }
3740 if (get_double(mon, &val, &p) < 0) {
3741 goto fail;
3742 }
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003743 if (c == 'b' && *p) {
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003744 switch (*p) {
3745 case 'K': case 'k':
3746 val *= 1 << 10; p++; break;
3747 case 'M': case 'm':
3748 val *= 1 << 20; p++; break;
3749 case 'G': case 'g':
3750 val *= 1 << 30; p++; break;
3751 }
3752 }
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003753 if (c == 'T' && p[0] && p[1] == 's') {
3754 switch (*p) {
3755 case 'm':
3756 val /= 1e3; p += 2; break;
3757 case 'u':
3758 val /= 1e6; p += 2; break;
3759 case 'n':
3760 val /= 1e9; p += 2; break;
3761 }
3762 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003763 if (*p && !qemu_isspace(*p)) {
3764 monitor_printf(mon, "Unknown unit suffix\n");
3765 goto fail;
3766 }
3767 qdict_put(qdict, key, qfloat_from_double(val));
3768 }
3769 break;
bellard9307c4c2004-04-04 12:57:25 +00003770 case '-':
3771 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003772 const char *tmp = p;
3773 int has_option, skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003774 /* option */
ths3b46e622007-09-17 08:09:54 +00003775
bellard9307c4c2004-04-04 12:57:25 +00003776 c = *typestr++;
3777 if (c == '\0')
3778 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003779 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003780 p++;
3781 has_option = 0;
3782 if (*p == '-') {
3783 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003784 if(c != *p) {
3785 if(!is_valid_option(p, typestr)) {
3786
3787 monitor_printf(mon, "%s: unsupported option -%c\n",
3788 cmdname, *p);
3789 goto fail;
3790 } else {
3791 skip_key = 1;
3792 }
bellard9307c4c2004-04-04 12:57:25 +00003793 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003794 if(skip_key) {
3795 p = tmp;
3796 } else {
3797 p++;
3798 has_option = 1;
3799 }
bellard9307c4c2004-04-04 12:57:25 +00003800 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003801 qdict_put(qdict, key, qint_from_int(has_option));
bellard9307c4c2004-04-04 12:57:25 +00003802 }
3803 break;
3804 default:
3805 bad_type:
aliguori376253e2009-03-05 23:01:23 +00003806 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00003807 goto fail;
3808 }
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003809 qemu_free(key);
3810 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003811 }
3812 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003813 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003814 p++;
3815 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003816 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3817 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00003818 goto fail;
3819 }
3820
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003821 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003822
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003823fail:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003824 qemu_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003825 return NULL;
3826}
3827
Luiz Capitulino8204a912009-11-18 23:05:31 -02003828static void monitor_print_error(Monitor *mon)
3829{
3830 qerror_print(mon->error);
3831 QDECREF(mon->error);
3832 mon->error = NULL;
3833}
3834
Adam Litke940cc302010-01-25 12:18:44 -06003835static int is_async_return(const QObject *data)
3836{
Luiz Capitulino82617d72010-01-27 18:01:17 -02003837 if (data && qobject_type(data) == QTYPE_QDICT) {
3838 return qdict_haskey(qobject_to_qdict(data), "__mon_async");
3839 }
3840
3841 return 0;
Adam Litke940cc302010-01-25 12:18:44 -06003842}
3843
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003844static void monitor_call_handler(Monitor *mon, const mon_cmd_t *cmd,
3845 const QDict *params)
3846{
3847 QObject *data = NULL;
3848
Luiz Capitulino97536cf2010-02-10 23:49:47 -02003849 if (cmd->cmd_new_ret) {
3850 cmd->cmd_new_ret(mon, params, &data);
3851 } else {
3852 cmd->mhandler.cmd_new(mon, params, &data);
3853 }
Luiz Capitulino25b422e2009-11-26 22:58:59 -02003854
Adam Litke940cc302010-01-25 12:18:44 -06003855 if (is_async_return(data)) {
3856 /*
3857 * Asynchronous commands have no initial return data but they can
3858 * generate errors. Data is returned via the async completion handler.
3859 */
3860 if (monitor_ctrl_mode(mon) && monitor_has_error(mon)) {
3861 monitor_protocol_emitter(mon, NULL);
3862 }
3863 } else if (monitor_ctrl_mode(mon)) {
Luiz Capitulino25b422e2009-11-26 22:58:59 -02003864 /* Monitor Protocol */
3865 monitor_protocol_emitter(mon, data);
3866 } else {
3867 /* User Protocol */
3868 if (data)
3869 cmd->user_print(mon, data);
3870 }
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003871
3872 qobject_decref(data);
3873}
3874
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003875static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003876{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003877 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003878 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003879
3880 qdict = qdict_new();
3881
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03003882 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003883 if (!cmd)
3884 goto out;
3885
3886 qemu_errors_to_mon(mon);
3887
Adam Litke940cc302010-01-25 12:18:44 -06003888 if (monitor_handler_is_async(cmd)) {
3889 user_async_cmd_handler(mon, cmd, qdict);
3890 } else if (monitor_handler_ported(cmd)) {
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003891 monitor_call_handler(mon, cmd, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003892 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03003893 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003894 }
3895
Luiz Capitulino8204a912009-11-18 23:05:31 -02003896 if (monitor_has_error(mon))
3897 monitor_print_error(mon);
3898
3899 qemu_errors_to_previous();
Luiz Capitulino13917be2009-10-07 13:41:54 -03003900
3901out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003902 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00003903}
3904
bellard81d09122004-07-14 17:21:37 +00003905static void cmd_completion(const char *name, const char *list)
3906{
3907 const char *p, *pstart;
3908 char cmd[128];
3909 int len;
3910
3911 p = list;
3912 for(;;) {
3913 pstart = p;
3914 p = strchr(p, '|');
3915 if (!p)
3916 p = pstart + strlen(pstart);
3917 len = p - pstart;
3918 if (len > sizeof(cmd) - 2)
3919 len = sizeof(cmd) - 2;
3920 memcpy(cmd, pstart, len);
3921 cmd[len] = '\0';
3922 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00003923 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00003924 }
3925 if (*p == '\0')
3926 break;
3927 p++;
3928 }
3929}
3930
3931static void file_completion(const char *input)
3932{
3933 DIR *ffs;
3934 struct dirent *d;
3935 char path[1024];
3936 char file[1024], file_prefix[1024];
3937 int input_path_len;
3938 const char *p;
3939
ths5fafdf22007-09-16 21:08:06 +00003940 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00003941 if (!p) {
3942 input_path_len = 0;
3943 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00003944 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00003945 } else {
3946 input_path_len = p - input + 1;
3947 memcpy(path, input, input_path_len);
3948 if (input_path_len > sizeof(path) - 1)
3949 input_path_len = sizeof(path) - 1;
3950 path[input_path_len] = '\0';
3951 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3952 }
3953#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00003954 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
3955 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00003956#endif
3957 ffs = opendir(path);
3958 if (!ffs)
3959 return;
3960 for(;;) {
3961 struct stat sb;
3962 d = readdir(ffs);
3963 if (!d)
3964 break;
3965 if (strstart(d->d_name, file_prefix, NULL)) {
3966 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00003967 if (input_path_len < sizeof(file))
3968 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3969 d->d_name);
bellard81d09122004-07-14 17:21:37 +00003970 /* stat the file to find out if it's a directory.
3971 * In that case add a slash to speed up typing long paths
3972 */
3973 stat(file, &sb);
3974 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00003975 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00003976 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00003977 }
3978 }
3979 closedir(ffs);
3980}
3981
aliguori51de9762009-03-05 23:00:43 +00003982static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00003983{
aliguori51de9762009-03-05 23:00:43 +00003984 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00003985 const char *input = opaque;
3986
3987 if (input[0] == '\0' ||
3988 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00003989 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00003990 }
3991}
3992
3993/* NOTE: this parser is an approximate form of the real command parser */
3994static void parse_cmdline(const char *cmdline,
3995 int *pnb_args, char **args)
3996{
3997 const char *p;
3998 int nb_args, ret;
3999 char buf[1024];
4000
4001 p = cmdline;
4002 nb_args = 0;
4003 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00004004 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00004005 p++;
4006 if (*p == '\0')
4007 break;
4008 if (nb_args >= MAX_ARGS)
4009 break;
4010 ret = get_str(buf, sizeof(buf), &p);
4011 args[nb_args] = qemu_strdup(buf);
4012 nb_args++;
4013 if (ret < 0)
4014 break;
4015 }
4016 *pnb_args = nb_args;
4017}
4018
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004019static const char *next_arg_type(const char *typestr)
4020{
4021 const char *p = strchr(typestr, ':');
4022 return (p != NULL ? ++p : typestr);
4023}
4024
aliguori4c36ba32009-03-05 23:01:37 +00004025static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00004026{
4027 const char *cmdname;
4028 char *args[MAX_ARGS];
4029 int nb_args, i, len;
4030 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05004031 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00004032 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00004033
4034 parse_cmdline(cmdline, &nb_args, args);
4035#ifdef DEBUG_COMPLETION
4036 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00004037 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00004038 }
4039#endif
4040
4041 /* if the line ends with a space, it means we want to complete the
4042 next arg */
4043 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00004044 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
bellard81d09122004-07-14 17:21:37 +00004045 if (nb_args >= MAX_ARGS)
4046 return;
4047 args[nb_args++] = qemu_strdup("");
4048 }
4049 if (nb_args <= 1) {
4050 /* command completion */
4051 if (nb_args == 0)
4052 cmdname = "";
4053 else
4054 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00004055 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00004056 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00004057 cmd_completion(cmdname, cmd->name);
4058 }
4059 } else {
4060 /* find the command */
aliguori376253e2009-03-05 23:01:23 +00004061 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00004062 if (compare_cmd(args[0], cmd->name))
4063 goto found;
4064 }
4065 return;
4066 found:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004067 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00004068 for(i = 0; i < nb_args - 2; i++) {
4069 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004070 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004071 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004072 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004073 }
4074 }
4075 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00004076 if (*ptype == '-' && ptype[1] != '\0') {
4077 ptype += 2;
4078 }
bellard81d09122004-07-14 17:21:37 +00004079 switch(*ptype) {
4080 case 'F':
4081 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00004082 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004083 file_completion(str);
4084 break;
4085 case 'B':
4086 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00004087 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004088 bdrv_iterate(block_completion_it, (void *)str);
4089 break;
bellard7fe48482004-10-09 18:08:01 +00004090 case 's':
4091 /* XXX: more generic ? */
4092 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00004093 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00004094 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4095 cmd_completion(str, cmd->name);
4096 }
bellard64866c32006-05-07 18:03:31 +00004097 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00004098 char *sep = strrchr(str, '-');
4099 if (sep)
4100 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00004101 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00004102 for(key = key_defs; key->name != NULL; key++) {
4103 cmd_completion(str, key->name);
4104 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02004105 } else if (!strcmp(cmd->name, "help|?")) {
4106 readline_set_completion_index(cur_mon->rs, strlen(str));
4107 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4108 cmd_completion(str, cmd->name);
4109 }
bellard7fe48482004-10-09 18:08:01 +00004110 }
4111 break;
bellard81d09122004-07-14 17:21:37 +00004112 default:
4113 break;
4114 }
4115 }
4116 for(i = 0; i < nb_args; i++)
4117 qemu_free(args[i]);
4118}
4119
aliguori731b0362009-03-05 23:01:42 +00004120static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004121{
aliguori731b0362009-03-05 23:01:42 +00004122 Monitor *mon = opaque;
4123
Jan Kiszkac62313b2009-12-04 14:05:29 +01004124 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00004125}
4126
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004127typedef struct CmdArgs {
4128 QString *name;
4129 int type;
4130 int flag;
4131 int optional;
4132} CmdArgs;
4133
4134static int check_opt(const CmdArgs *cmd_args, const char *name, QDict *args)
4135{
4136 if (!cmd_args->optional) {
4137 qemu_error_new(QERR_MISSING_PARAMETER, name);
4138 return -1;
4139 }
4140
4141 if (cmd_args->type == '-') {
4142 /* handlers expect a value, they need to be changed */
4143 qdict_put(args, name, qint_from_int(0));
4144 }
4145
4146 return 0;
4147}
4148
4149static int check_arg(const CmdArgs *cmd_args, QDict *args)
4150{
4151 QObject *value;
4152 const char *name;
4153
4154 name = qstring_get_str(cmd_args->name);
4155
4156 if (!args) {
4157 return check_opt(cmd_args, name, args);
4158 }
4159
4160 value = qdict_get(args, name);
4161 if (!value) {
4162 return check_opt(cmd_args, name, args);
4163 }
4164
4165 switch (cmd_args->type) {
4166 case 'F':
4167 case 'B':
4168 case 's':
4169 if (qobject_type(value) != QTYPE_QSTRING) {
4170 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "string");
4171 return -1;
4172 }
4173 break;
4174 case '/': {
4175 int i;
4176 const char *keys[] = { "count", "format", "size", NULL };
4177
4178 for (i = 0; keys[i]; i++) {
4179 QObject *obj = qdict_get(args, keys[i]);
4180 if (!obj) {
4181 qemu_error_new(QERR_MISSING_PARAMETER, name);
4182 return -1;
4183 }
4184 if (qobject_type(obj) != QTYPE_QINT) {
4185 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "int");
4186 return -1;
4187 }
4188 }
4189 break;
4190 }
4191 case 'i':
4192 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02004193 case 'M':
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004194 if (qobject_type(value) != QTYPE_QINT) {
4195 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "int");
4196 return -1;
4197 }
4198 break;
Markus Armbruster3350a4d2010-01-25 14:23:03 +01004199 case 'b':
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01004200 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01004201 if (qobject_type(value) != QTYPE_QINT && qobject_type(value) != QTYPE_QFLOAT) {
4202 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "number");
4203 return -1;
4204 }
4205 break;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004206 case '-':
4207 if (qobject_type(value) != QTYPE_QINT &&
4208 qobject_type(value) != QTYPE_QBOOL) {
4209 qemu_error_new(QERR_INVALID_PARAMETER_TYPE, name, "bool");
4210 return -1;
4211 }
4212 if (qobject_type(value) == QTYPE_QBOOL) {
4213 /* handlers expect a QInt, they need to be changed */
4214 qdict_put(args, name,
4215 qint_from_int(qbool_get_int(qobject_to_qbool(value))));
4216 }
4217 break;
4218 default:
4219 /* impossible */
4220 abort();
4221 }
4222
4223 return 0;
4224}
4225
4226static void cmd_args_init(CmdArgs *cmd_args)
4227{
4228 cmd_args->name = qstring_new();
4229 cmd_args->type = cmd_args->flag = cmd_args->optional = 0;
4230}
4231
4232/*
4233 * This is not trivial, we have to parse Monitor command's argument
4234 * type syntax to be able to check the arguments provided by clients.
4235 *
4236 * In the near future we will be using an array for that and will be
4237 * able to drop all this parsing...
4238 */
4239static int monitor_check_qmp_args(const mon_cmd_t *cmd, QDict *args)
4240{
4241 int err;
4242 const char *p;
4243 CmdArgs cmd_args;
4244
Blue Swirldd5121b2009-12-04 20:52:02 +00004245 if (cmd->args_type == NULL) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004246 return (qdict_size(args) == 0 ? 0 : -1);
4247 }
4248
4249 err = 0;
4250 cmd_args_init(&cmd_args);
4251
4252 for (p = cmd->args_type;; p++) {
4253 if (*p == ':') {
4254 cmd_args.type = *++p;
4255 p++;
4256 if (cmd_args.type == '-') {
4257 cmd_args.flag = *p++;
4258 cmd_args.optional = 1;
4259 } else if (*p == '?') {
4260 cmd_args.optional = 1;
4261 p++;
4262 }
4263
4264 assert(*p == ',' || *p == '\0');
4265 err = check_arg(&cmd_args, args);
4266
4267 QDECREF(cmd_args.name);
4268 cmd_args_init(&cmd_args);
4269
4270 if (err < 0) {
4271 break;
4272 }
4273 } else {
4274 qstring_append_chr(cmd_args.name, *p);
4275 }
4276
4277 if (*p == '\0') {
4278 break;
4279 }
4280 }
4281
4282 QDECREF(cmd_args.name);
4283 return err;
4284}
4285
Luiz Capitulino09069b12010-02-04 18:10:06 -02004286static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4287{
4288 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4289 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4290}
4291
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004292static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4293{
4294 int err;
4295 QObject *obj;
4296 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004297 const mon_cmd_t *cmd;
4298 Monitor *mon = cur_mon;
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004299 const char *cmd_name, *info_item;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004300
4301 args = NULL;
4302 qemu_errors_to_mon(mon);
4303
4304 obj = json_parser_parse(tokens, NULL);
4305 if (!obj) {
4306 // FIXME: should be triggered in json_parser_parse()
4307 qemu_error_new(QERR_JSON_PARSING);
4308 goto err_out;
4309 } else if (qobject_type(obj) != QTYPE_QDICT) {
4310 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "object");
4311 qobject_decref(obj);
4312 goto err_out;
4313 }
4314
4315 input = qobject_to_qdict(obj);
4316
4317 mon->mc->id = qdict_get(input, "id");
4318 qobject_incref(mon->mc->id);
4319
4320 obj = qdict_get(input, "execute");
4321 if (!obj) {
4322 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4323 goto err_input;
4324 } else if (qobject_type(obj) != QTYPE_QSTRING) {
4325 qemu_error_new(QERR_QMP_BAD_INPUT_OBJECT, "string");
4326 goto err_input;
4327 }
4328
4329 cmd_name = qstring_get_str(qobject_to_qstring(obj));
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004330
Luiz Capitulino09069b12010-02-04 18:10:06 -02004331 if (invalid_qmp_mode(mon, cmd_name)) {
4332 qemu_error_new(QERR_COMMAND_NOT_FOUND, cmd_name);
4333 goto err_input;
4334 }
4335
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004336 /*
4337 * XXX: We need this special case until we get info handlers
4338 * converted into 'query-' commands
4339 */
4340 if (compare_cmd(cmd_name, "info")) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004341 qemu_error_new(QERR_COMMAND_NOT_FOUND, cmd_name);
4342 goto err_input;
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004343 } else if (strstart(cmd_name, "query-", &info_item)) {
4344 cmd = monitor_find_command("info");
4345 qdict_put_obj(input, "arguments",
4346 qobject_from_jsonf("{ 'item': %s }", info_item));
4347 } else {
4348 cmd = monitor_find_command(cmd_name);
Luiz Capitulino43e713c2009-12-18 13:24:59 -02004349 if (!cmd || !monitor_handler_ported(cmd)) {
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004350 qemu_error_new(QERR_COMMAND_NOT_FOUND, cmd_name);
4351 goto err_input;
4352 }
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004353 }
4354
4355 obj = qdict_get(input, "arguments");
4356 if (!obj) {
4357 args = qdict_new();
4358 } else {
4359 args = qobject_to_qdict(obj);
4360 QINCREF(args);
4361 }
4362
4363 QDECREF(input);
4364
4365 err = monitor_check_qmp_args(cmd, args);
4366 if (err < 0) {
4367 goto err_out;
4368 }
4369
Adam Litke940cc302010-01-25 12:18:44 -06004370 if (monitor_handler_is_async(cmd)) {
4371 qmp_async_cmd_handler(mon, cmd, args);
4372 } else {
4373 monitor_call_handler(mon, cmd, args);
4374 }
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004375 goto out;
4376
4377err_input:
4378 QDECREF(input);
4379err_out:
4380 monitor_protocol_emitter(mon, NULL);
4381out:
4382 QDECREF(args);
4383 qemu_errors_to_previous();
4384}
4385
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004386/**
4387 * monitor_control_read(): Read and handle QMP input
4388 */
4389static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4390{
4391 Monitor *old_mon = cur_mon;
4392
4393 cur_mon = opaque;
4394
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004395 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004396
4397 cur_mon = old_mon;
4398}
4399
aliguori731b0362009-03-05 23:01:42 +00004400static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004401{
aliguori731b0362009-03-05 23:01:42 +00004402 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004403 int i;
aliguori376253e2009-03-05 23:01:23 +00004404
aliguori731b0362009-03-05 23:01:42 +00004405 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004406
aliguoricde76ee2009-03-05 23:01:51 +00004407 if (cur_mon->rs) {
4408 for (i = 0; i < size; i++)
4409 readline_handle_byte(cur_mon->rs, buf[i]);
4410 } else {
4411 if (size == 0 || buf[size - 1] != 0)
4412 monitor_printf(cur_mon, "corrupted command\n");
4413 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004414 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00004415 }
aliguori731b0362009-03-05 23:01:42 +00004416
4417 cur_mon = old_mon;
4418}
aliguorid8f44602008-10-06 13:52:44 +00004419
aliguori376253e2009-03-05 23:01:23 +00004420static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004421{
aliguori731b0362009-03-05 23:01:42 +00004422 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004423 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00004424 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00004425}
4426
aliguoricde76ee2009-03-05 23:01:51 +00004427int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004428{
aliguoricde76ee2009-03-05 23:01:51 +00004429 if (!mon->rs)
4430 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00004431 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00004432 return 0;
aliguorid8f44602008-10-06 13:52:44 +00004433}
4434
aliguori376253e2009-03-05 23:01:23 +00004435void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004436{
aliguoricde76ee2009-03-05 23:01:51 +00004437 if (!mon->rs)
4438 return;
aliguori731b0362009-03-05 23:01:42 +00004439 if (--mon->suspend_cnt == 0)
4440 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00004441}
4442
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004443static QObject *get_qmp_greeting(void)
4444{
4445 QObject *ver;
4446
4447 do_info_version(NULL, &ver);
4448 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4449}
4450
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004451/**
4452 * monitor_control_event(): Print QMP gretting
4453 */
4454static void monitor_control_event(void *opaque, int event)
4455{
Luiz Capitulino47116d12010-02-08 17:01:30 -02004456 QObject *data;
4457 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004458
Luiz Capitulino47116d12010-02-08 17:01:30 -02004459 switch (event) {
4460 case CHR_EVENT_OPENED:
Luiz Capitulino4a7e1192010-02-04 18:10:05 -02004461 mon->mc->command_mode = 0;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004462 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004463 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004464 monitor_json_emitter(mon, data);
4465 qobject_decref(data);
Luiz Capitulino47116d12010-02-08 17:01:30 -02004466 break;
4467 case CHR_EVENT_CLOSED:
4468 json_message_parser_destroy(&mon->mc->parser);
4469 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004470 }
4471}
4472
aliguori731b0362009-03-05 23:01:42 +00004473static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00004474{
aliguori376253e2009-03-05 23:01:23 +00004475 Monitor *mon = opaque;
4476
aliguori2724b182009-03-05 23:01:47 +00004477 switch (event) {
4478 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004479 mon->mux_out = 0;
4480 if (mon->reset_seen) {
4481 readline_restart(mon->rs);
4482 monitor_resume(mon);
4483 monitor_flush(mon);
4484 } else {
4485 mon->suspend_cnt = 0;
4486 }
aliguori2724b182009-03-05 23:01:47 +00004487 break;
ths86e94de2007-01-05 22:01:59 +00004488
aliguori2724b182009-03-05 23:01:47 +00004489 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004490 if (mon->reset_seen) {
4491 if (mon->suspend_cnt == 0) {
4492 monitor_printf(mon, "\n");
4493 }
4494 monitor_flush(mon);
4495 monitor_suspend(mon);
4496 } else {
4497 mon->suspend_cnt++;
4498 }
4499 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00004500 break;
4501
Amit Shahb6b8df52009-10-07 18:31:16 +05304502 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00004503 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4504 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004505 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00004506 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004507 }
4508 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00004509 break;
4510 }
ths86e94de2007-01-05 22:01:59 +00004511}
4512
aliguori76655d62009-03-06 20:27:37 +00004513
4514/*
4515 * Local variables:
4516 * c-indent-level: 4
4517 * c-basic-offset: 4
4518 * tab-width: 8
4519 * End:
4520 */
4521
aliguori731b0362009-03-05 23:01:42 +00004522void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004523{
aliguori731b0362009-03-05 23:01:42 +00004524 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00004525 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00004526
4527 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00004528 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00004529 is_first_init = 0;
4530 }
aliguori87127162009-03-05 23:01:29 +00004531
4532 mon = qemu_mallocz(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00004533
aliguori87127162009-03-05 23:01:29 +00004534 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00004535 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00004536 if (flags & MONITOR_USE_READLINE) {
4537 mon->rs = readline_init(mon, monitor_find_completion);
4538 monitor_read_command(mon, 0);
4539 }
aliguori87127162009-03-05 23:01:29 +00004540
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004541 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004542 mon->mc = qemu_mallocz(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004543 /* Control mode requires special handlers */
4544 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4545 monitor_control_event, mon);
4546 } else {
4547 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4548 monitor_event, mon);
4549 }
aliguori87127162009-03-05 23:01:29 +00004550
Blue Swirl72cf2d42009-09-12 07:36:22 +00004551 QLIST_INSERT_HEAD(&mon_list, mon, entry);
aliguori731b0362009-03-05 23:01:42 +00004552 if (!cur_mon || (flags & MONITOR_IS_DEFAULT))
aliguori87127162009-03-05 23:01:29 +00004553 cur_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00004554}
4555
aliguori376253e2009-03-05 23:01:23 +00004556static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004557{
aliguoribb5fc202009-03-05 23:01:15 +00004558 BlockDriverState *bs = opaque;
4559 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00004560
aliguoribb5fc202009-03-05 23:01:15 +00004561 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00004562 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00004563 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00004564 }
aliguori731b0362009-03-05 23:01:42 +00004565 if (mon->password_completion_cb)
4566 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00004567
aliguori731b0362009-03-05 23:01:42 +00004568 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00004569}
aliguoric0f4ce72009-03-05 23:01:01 +00004570
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004571int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4572 BlockDriverCompletionFunc *completion_cb,
4573 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00004574{
aliguoricde76ee2009-03-05 23:01:51 +00004575 int err;
4576
aliguoribb5fc202009-03-05 23:01:15 +00004577 if (!bdrv_key_required(bs)) {
4578 if (completion_cb)
4579 completion_cb(opaque, 0);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004580 return 0;
aliguoribb5fc202009-03-05 23:01:15 +00004581 }
aliguoric0f4ce72009-03-05 23:01:01 +00004582
Luiz Capitulino94171e12009-12-07 21:37:00 +01004583 if (monitor_ctrl_mode(mon)) {
4584 qemu_error_new(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004585 return -1;
Luiz Capitulino94171e12009-12-07 21:37:00 +01004586 }
4587
aliguori376253e2009-03-05 23:01:23 +00004588 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4589 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00004590
aliguori731b0362009-03-05 23:01:42 +00004591 mon->password_completion_cb = completion_cb;
4592 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00004593
aliguoricde76ee2009-03-05 23:01:51 +00004594 err = monitor_read_password(mon, bdrv_password_cb, bs);
4595
4596 if (err && completion_cb)
4597 completion_cb(opaque, err);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004598
4599 return err;
aliguoric0f4ce72009-03-05 23:01:01 +00004600}
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02004601
4602typedef struct QemuErrorSink QemuErrorSink;
4603struct QemuErrorSink {
4604 enum {
4605 ERR_SINK_FILE,
4606 ERR_SINK_MONITOR,
4607 } dest;
4608 union {
4609 FILE *fp;
4610 Monitor *mon;
4611 };
4612 QemuErrorSink *previous;
4613};
4614
Blue Swirl528e93a2009-08-31 15:14:40 +00004615static QemuErrorSink *qemu_error_sink;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02004616
4617void qemu_errors_to_file(FILE *fp)
4618{
4619 QemuErrorSink *sink;
4620
4621 sink = qemu_mallocz(sizeof(*sink));
4622 sink->dest = ERR_SINK_FILE;
4623 sink->fp = fp;
4624 sink->previous = qemu_error_sink;
4625 qemu_error_sink = sink;
4626}
4627
4628void qemu_errors_to_mon(Monitor *mon)
4629{
4630 QemuErrorSink *sink;
4631
4632 sink = qemu_mallocz(sizeof(*sink));
4633 sink->dest = ERR_SINK_MONITOR;
4634 sink->mon = mon;
4635 sink->previous = qemu_error_sink;
4636 qemu_error_sink = sink;
4637}
4638
4639void qemu_errors_to_previous(void)
4640{
4641 QemuErrorSink *sink;
4642
4643 assert(qemu_error_sink != NULL);
4644 sink = qemu_error_sink;
4645 qemu_error_sink = sink->previous;
4646 qemu_free(sink);
4647}
4648
4649void qemu_error(const char *fmt, ...)
4650{
4651 va_list args;
4652
4653 assert(qemu_error_sink != NULL);
4654 switch (qemu_error_sink->dest) {
4655 case ERR_SINK_FILE:
4656 va_start(args, fmt);
4657 vfprintf(qemu_error_sink->fp, fmt, args);
4658 va_end(args);
4659 break;
4660 case ERR_SINK_MONITOR:
4661 va_start(args, fmt);
4662 monitor_vprintf(qemu_error_sink->mon, fmt, args);
4663 va_end(args);
4664 break;
4665 }
4666}
Luiz Capitulino8204a912009-11-18 23:05:31 -02004667
4668void qemu_error_internal(const char *file, int linenr, const char *func,
4669 const char *fmt, ...)
4670{
4671 va_list va;
4672 QError *qerror;
4673
4674 assert(qemu_error_sink != NULL);
4675
4676 va_start(va, fmt);
4677 qerror = qerror_from_info(file, linenr, func, fmt, &va);
4678 va_end(va);
4679
4680 switch (qemu_error_sink->dest) {
4681 case ERR_SINK_FILE:
4682 qerror_print(qerror);
4683 QDECREF(qerror);
4684 break;
4685 case ERR_SINK_MONITOR:
Luiz Capitulino27a749f2010-02-08 17:01:29 -02004686 /* report only the first error */
4687 if (!qemu_error_sink->mon->error) {
4688 qemu_error_sink->mon->error = qerror;
4689 } else {
4690 /* XXX: warn the programmer */
4691 QDECREF(qerror);
4692 }
Luiz Capitulino8204a912009-11-18 23:05:31 -02004693 break;
4694 }
4695}