blob: 57f24ff0883afc06d69684c9e54e91be3de26746 [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"
Markus Armbruster666daa62010-06-02 18:48:27 +020041#include "blockdev.h"
pbrook87ecb682007-11-17 17:14:51 +000042#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 Capitulino5fa737a2009-11-26 22:59:01 -020052#include "qbool.h"
Luiz Capitulinof7188bb2009-08-28 15:27:10 -030053#include "qstring.h"
Luiz Capitulino9b57c022009-11-26 22:58:58 -020054#include "qjson.h"
Luiz Capitulino5fa737a2009-11-26 22:59:01 -020055#include "json-streamer.h"
56#include "json-parser.h"
Blue Swirld08d6f02009-12-04 18:06:39 +000057#include "osdep.h"
ths6a5bd302007-12-03 17:05:38 +000058
bellard9dc39cb2004-03-14 21:38:27 +000059//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000060//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000061
bellard9307c4c2004-04-04 12:57:25 +000062/*
63 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000064 *
bellard9307c4c2004-04-04 12:57:25 +000065 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000066 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000067 * 's' string (accept optional quote)
Markus Armbruster361127d2010-02-10 20:24:35 +010068 * 'O' option string of the form NAME=VALUE,...
69 * parsed according to QemuOptsList given by its name
70 * Example: 'device:O' uses qemu_device_opts.
71 * Restriction: only lists with empty desc are supported
72 * TODO lift the restriction
bellard92a31b12005-02-10 22:00:52 +000073 * 'i' 32 bit integer
74 * 'l' target long (32 or 64 bit)
Markus Armbruster9fec5432010-01-25 14:23:01 +010075 * 'M' just like 'l', except in user mode the value is
76 * multiplied by 2^20 (think Mebibyte)
Markus Armbrusteree9545d2010-03-26 09:07:08 +010077 * 'f' double
Markus Armbruster3350a4d2010-01-25 14:23:03 +010078 * user mode accepts an optional G, g, M, m, K, k suffix,
79 * which multiplies the value by 2^30 for suffixes G and
80 * g, 2^20 for M and m, 2^10 for K and k
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +010081 * 'T' double
82 * user mode accepts an optional ms, us, ns suffix,
83 * which divides the value by 1e3, 1e6, 1e9, respectively
bellard9307c4c2004-04-04 12:57:25 +000084 * '/' optional gdb-like print format (like "/10x")
85 *
Luiz Capitulinofb466602009-08-28 15:27:27 -030086 * '?' optional type (for all types, except '/')
87 * '.' other form of optional type (for 'i' and 'l')
Markus Armbruster942cd1f2010-03-26 09:07:09 +010088 * 'b' boolean
89 * user mode accepts "on" or "off"
Luiz Capitulinofb466602009-08-28 15:27:27 -030090 * '-' optional parameter (eg. '-f')
bellard9307c4c2004-04-04 12:57:25 +000091 *
92 */
93
Adam Litke940cc302010-01-25 12:18:44 -060094typedef struct MonitorCompletionData MonitorCompletionData;
95struct MonitorCompletionData {
96 Monitor *mon;
97 void (*user_print)(Monitor *mon, const QObject *data);
98};
99
Anthony Liguoric227f092009-10-01 16:12:16 -0500100typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +0000101 const char *name;
bellard9307c4c2004-04-04 12:57:25 +0000102 const char *args_type;
bellard9dc39cb2004-03-14 21:38:27 +0000103 const char *params;
104 const char *help;
Luiz Capitulinoa2876f52009-10-07 13:41:53 -0300105 void (*user_print)(Monitor *mon, const QObject *data);
Luiz Capitulino910df892009-10-07 13:41:51 -0300106 union {
107 void (*info)(Monitor *mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300108 void (*info_new)(Monitor *mon, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600109 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300110 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino261394d2010-02-10 23:50:02 -0200111 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600112 int (*cmd_async)(Monitor *mon, const QDict *params,
113 MonitorCompletion *cb, void *opaque);
Luiz Capitulino910df892009-10-07 13:41:51 -0300114 } mhandler;
Adam Litke940cc302010-01-25 12:18:44 -0600115 int async;
Anthony Liguoric227f092009-10-01 16:12:16 -0500116} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +0000117
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100118/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -0500119typedef struct mon_fd_t mon_fd_t;
120struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100121 char *name;
122 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -0500123 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100124};
125
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200126typedef struct MonitorControl {
127 QObject *id;
128 JSONMessageParser parser;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200129 int command_mode;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200130} MonitorControl;
131
aliguori87127162009-03-05 23:01:29 +0000132struct Monitor {
133 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200134 int mux_out;
135 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000136 int flags;
137 int suspend_cnt;
138 uint8_t outbuf[1024];
139 int outbuf_index;
140 ReadLineState *rs;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200141 MonitorControl *mc;
aliguori731b0362009-03-05 23:01:42 +0000142 CPUState *mon_cpu;
143 BlockDriverCompletionFunc *password_completion_cb;
144 void *password_opaque;
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200145#ifdef CONFIG_DEBUG_MONITOR
146 int print_calls_nr;
147#endif
Luiz Capitulino8204a912009-11-18 23:05:31 -0200148 QError *error;
Anthony Liguoric227f092009-10-01 16:12:16 -0500149 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000150 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000151};
152
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200153#ifdef CONFIG_DEBUG_MONITOR
154#define MON_DEBUG(fmt, ...) do { \
155 fprintf(stderr, "Monitor: "); \
156 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200157
158static inline void mon_print_count_inc(Monitor *mon)
159{
160 mon->print_calls_nr++;
161}
162
163static inline void mon_print_count_init(Monitor *mon)
164{
165 mon->print_calls_nr = 0;
166}
167
168static inline int mon_print_count_get(const Monitor *mon)
169{
170 return mon->print_calls_nr;
171}
172
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200173#else /* !CONFIG_DEBUG_MONITOR */
174#define MON_DEBUG(fmt, ...) do { } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200175static inline void mon_print_count_inc(Monitor *mon) { }
176static inline void mon_print_count_init(Monitor *mon) { }
177static inline int mon_print_count_get(const Monitor *mon) { return 0; }
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200178#endif /* CONFIG_DEBUG_MONITOR */
179
Blue Swirl72cf2d42009-09-12 07:36:22 +0000180static QLIST_HEAD(mon_list, Monitor) mon_list;
bellard7e2515e2004-08-01 21:52:19 +0000181
Anthony Liguoric227f092009-10-01 16:12:16 -0500182static const mon_cmd_t mon_cmds[];
183static const mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000184
Markus Armbruster8631b602010-02-18 11:41:55 +0100185Monitor *cur_mon;
186Monitor *default_mon;
aliguori376253e2009-03-05 23:01:23 +0000187
aliguori731b0362009-03-05 23:01:42 +0000188static void monitor_command_cb(Monitor *mon, const char *cmdline,
189 void *opaque);
aliguori83ab7952008-08-19 14:44:22 +0000190
Luiz Capitulino09069b12010-02-04 18:10:06 -0200191static inline int qmp_cmd_mode(const Monitor *mon)
192{
193 return (mon->mc ? mon->mc->command_mode : 0);
194}
195
Luiz Capitulino418173c2009-11-26 22:58:51 -0200196/* Return true if in control mode, false otherwise */
197static inline int monitor_ctrl_mode(const Monitor *mon)
198{
199 return (mon->flags & MONITOR_USE_CONTROL);
200}
201
Markus Armbruster6620d3c2010-02-11 17:05:43 +0100202/* Return non-zero iff we have a current monitor, and it is in QMP mode. */
203int monitor_cur_is_qmp(void)
204{
205 return cur_mon && monitor_ctrl_mode(cur_mon);
206}
207
aliguori731b0362009-03-05 23:01:42 +0000208static void monitor_read_command(Monitor *mon, int show_prompt)
209{
Luiz Capitulino183e6e52009-12-14 18:53:23 -0200210 if (!mon->rs)
211 return;
212
aliguori731b0362009-03-05 23:01:42 +0000213 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
214 if (show_prompt)
215 readline_show_prompt(mon->rs);
216}
bellard6a00d602005-11-21 23:25:50 +0000217
aliguoricde76ee2009-03-05 23:01:51 +0000218static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
219 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000220{
Luiz Capitulino94171e12009-12-07 21:37:00 +0100221 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100222 qerror_report(QERR_MISSING_PARAMETER, "password");
Luiz Capitulino94171e12009-12-07 21:37:00 +0100223 return -EINVAL;
224 } else if (mon->rs) {
aliguoricde76ee2009-03-05 23:01:51 +0000225 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
226 /* prompt is printed on return from the command handler */
227 return 0;
228 } else {
229 monitor_printf(mon, "terminal does not support password prompting\n");
230 return -ENOTTY;
231 }
aliguoribb5fc202009-03-05 23:01:15 +0000232}
233
aliguori376253e2009-03-05 23:01:23 +0000234void monitor_flush(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000235{
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200236 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
aliguori731b0362009-03-05 23:01:42 +0000237 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
238 mon->outbuf_index = 0;
bellard7e2515e2004-08-01 21:52:19 +0000239 }
240}
241
242/* flush at every end of line or if the buffer is full */
aliguori376253e2009-03-05 23:01:23 +0000243static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000244{
ths60fe76f2007-12-16 03:02:09 +0000245 char c;
aliguori731b0362009-03-05 23:01:42 +0000246
bellard7e2515e2004-08-01 21:52:19 +0000247 for(;;) {
248 c = *str++;
249 if (c == '\0')
250 break;
bellard7ba12602006-07-14 20:26:42 +0000251 if (c == '\n')
aliguori731b0362009-03-05 23:01:42 +0000252 mon->outbuf[mon->outbuf_index++] = '\r';
253 mon->outbuf[mon->outbuf_index++] = c;
254 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
255 || c == '\n')
aliguori376253e2009-03-05 23:01:23 +0000256 monitor_flush(mon);
bellard7e2515e2004-08-01 21:52:19 +0000257 }
258}
259
aliguori376253e2009-03-05 23:01:23 +0000260void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000261{
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200262 char buf[4096];
263
Luiz Capitulino2daa1192009-12-14 18:53:24 -0200264 if (!mon)
265 return;
266
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200267 mon_print_count_inc(mon);
268
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200269 if (monitor_ctrl_mode(mon)) {
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200270 return;
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200271 }
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200272
273 vsnprintf(buf, sizeof(buf), fmt, ap);
274 monitor_puts(mon, buf);
bellard7e2515e2004-08-01 21:52:19 +0000275}
276
aliguori376253e2009-03-05 23:01:23 +0000277void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000278{
279 va_list ap;
280 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000281 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000282 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000283}
284
aliguori376253e2009-03-05 23:01:23 +0000285void monitor_print_filename(Monitor *mon, const char *filename)
thsfef30742006-12-22 14:11:32 +0000286{
287 int i;
288
289 for (i = 0; filename[i]; i++) {
aliguori28a76be2009-03-06 20:27:40 +0000290 switch (filename[i]) {
291 case ' ':
292 case '"':
293 case '\\':
294 monitor_printf(mon, "\\%c", filename[i]);
295 break;
296 case '\t':
297 monitor_printf(mon, "\\t");
298 break;
299 case '\r':
300 monitor_printf(mon, "\\r");
301 break;
302 case '\n':
303 monitor_printf(mon, "\\n");
304 break;
305 default:
306 monitor_printf(mon, "%c", filename[i]);
307 break;
308 }
thsfef30742006-12-22 14:11:32 +0000309 }
310}
311
bellard7fe48482004-10-09 18:08:01 +0000312static int monitor_fprintf(FILE *stream, const char *fmt, ...)
313{
314 va_list ap;
315 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000316 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000317 va_end(ap);
318 return 0;
319}
320
Luiz Capitulino13c74252009-10-07 13:41:55 -0300321static void monitor_user_noop(Monitor *mon, const QObject *data) { }
322
Luiz Capitulino13917be2009-10-07 13:41:54 -0300323static inline int monitor_handler_ported(const mon_cmd_t *cmd)
324{
325 return cmd->user_print != NULL;
326}
327
Adam Litke940cc302010-01-25 12:18:44 -0600328static inline bool monitor_handler_is_async(const mon_cmd_t *cmd)
329{
330 return cmd->async != 0;
331}
332
Luiz Capitulino8204a912009-11-18 23:05:31 -0200333static inline int monitor_has_error(const Monitor *mon)
334{
335 return mon->error != NULL;
336}
337
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200338static void monitor_json_emitter(Monitor *mon, const QObject *data)
339{
340 QString *json;
341
342 json = qobject_to_json(data);
343 assert(json != NULL);
344
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200345 qstring_append_chr(json, '\n');
346 monitor_puts(mon, qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200347
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200348 QDECREF(json);
349}
350
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200351static void monitor_protocol_emitter(Monitor *mon, QObject *data)
352{
353 QDict *qmp;
354
355 qmp = qdict_new();
356
357 if (!monitor_has_error(mon)) {
358 /* success response */
359 if (data) {
360 qobject_incref(data);
361 qdict_put_obj(qmp, "return", data);
362 } else {
Luiz Capitulino0abc6572009-12-18 13:25:00 -0200363 /* return an empty QDict by default */
364 qdict_put(qmp, "return", qdict_new());
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200365 }
366 } else {
367 /* error response */
Markus Armbruster77e595e2009-12-07 21:37:16 +0100368 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200369 qdict_put(qmp, "error", mon->error->error);
370 QINCREF(mon->error->error);
371 QDECREF(mon->error);
372 mon->error = NULL;
373 }
374
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200375 if (mon->mc->id) {
376 qdict_put_obj(qmp, "id", mon->mc->id);
377 mon->mc->id = NULL;
378 }
379
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200380 monitor_json_emitter(mon, QOBJECT(qmp));
381 QDECREF(qmp);
382}
383
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200384static void timestamp_put(QDict *qdict)
385{
386 int err;
387 QObject *obj;
Blue Swirld08d6f02009-12-04 18:06:39 +0000388 qemu_timeval tv;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200389
Blue Swirld08d6f02009-12-04 18:06:39 +0000390 err = qemu_gettimeofday(&tv);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200391 if (err < 0)
392 return;
393
394 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
395 "'microseconds': %" PRId64 " }",
396 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200397 qdict_put_obj(qdict, "timestamp", obj);
398}
399
400/**
401 * monitor_protocol_event(): Generate a Monitor event
402 *
403 * Event-specific data can be emitted through the (optional) 'data' parameter.
404 */
405void monitor_protocol_event(MonitorEvent event, QObject *data)
406{
407 QDict *qmp;
408 const char *event_name;
Adam Litkef039a562010-01-15 08:34:02 -0600409 Monitor *mon;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200410
Blue Swirl242cd002009-12-04 18:05:45 +0000411 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200412
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200413 switch (event) {
Blue Swirl242cd002009-12-04 18:05:45 +0000414 case QEVENT_SHUTDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200415 event_name = "SHUTDOWN";
416 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000417 case QEVENT_RESET:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200418 event_name = "RESET";
419 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000420 case QEVENT_POWERDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200421 event_name = "POWERDOWN";
422 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000423 case QEVENT_STOP:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200424 event_name = "STOP";
425 break;
Luiz Capitulino6ed2c482010-04-27 20:35:59 -0300426 case QEVENT_RESUME:
427 event_name = "RESUME";
428 break;
Luiz Capitulino586153d2010-01-14 14:50:57 -0200429 case QEVENT_VNC_CONNECTED:
430 event_name = "VNC_CONNECTED";
431 break;
Luiz Capitulino0d2ed462010-01-14 14:50:59 -0200432 case QEVENT_VNC_INITIALIZED:
433 event_name = "VNC_INITIALIZED";
434 break;
Luiz Capitulino0d72f3d2010-01-14 14:50:58 -0200435 case QEVENT_VNC_DISCONNECTED:
436 event_name = "VNC_DISCONNECTED";
437 break;
Luiz Capitulinoaa1db6e2010-02-03 12:41:00 -0200438 case QEVENT_BLOCK_IO_ERROR:
439 event_name = "BLOCK_IO_ERROR";
440 break;
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300441 case QEVENT_RTC_CHANGE:
442 event_name = "RTC_CHANGE";
443 break;
Luiz Capitulino9eedeb32010-02-25 12:13:04 -0300444 case QEVENT_WATCHDOG:
445 event_name = "WATCHDOG";
446 break;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200447 default:
448 abort();
449 break;
450 }
451
452 qmp = qdict_new();
453 timestamp_put(qmp);
454 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200455 if (data) {
456 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200457 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200458 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200459
Adam Litkef039a562010-01-15 08:34:02 -0600460 QLIST_FOREACH(mon, &mon_list, entry) {
Luiz Capitulino09069b12010-02-04 18:10:06 -0200461 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
Luiz Capitulino23fabed2010-01-20 10:37:59 -0200462 monitor_json_emitter(mon, QOBJECT(qmp));
463 }
Adam Litkef039a562010-01-15 08:34:02 -0600464 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200465 QDECREF(qmp);
466}
467
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200468static int do_qmp_capabilities(Monitor *mon, const QDict *params,
469 QObject **ret_data)
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200470{
471 /* Will setup QMP capabilities in the future */
472 if (monitor_ctrl_mode(mon)) {
473 mon->mc->command_mode = 1;
474 }
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200475
476 return 0;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200477}
478
bellard9dc39cb2004-03-14 21:38:27 +0000479static int compare_cmd(const char *name, const char *list)
480{
481 const char *p, *pstart;
482 int len;
483 len = strlen(name);
484 p = list;
485 for(;;) {
486 pstart = p;
487 p = strchr(p, '|');
488 if (!p)
489 p = pstart + strlen(pstart);
490 if ((p - pstart) == len && !memcmp(pstart, name, len))
491 return 1;
492 if (*p == '\0')
493 break;
494 p++;
495 }
496 return 0;
497}
498
Anthony Liguoric227f092009-10-01 16:12:16 -0500499static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000500 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000501{
Anthony Liguoric227f092009-10-01 16:12:16 -0500502 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000503
504 for(cmd = cmds; cmd->name != NULL; cmd++) {
505 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000506 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
507 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000508 }
509}
510
aliguori376253e2009-03-05 23:01:23 +0000511static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000512{
513 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000514 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000515 } else {
aliguori376253e2009-03-05 23:01:23 +0000516 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000517 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000518 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000519 monitor_printf(mon, "Log items (comma separated):\n");
520 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000521 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000522 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000523 }
524 }
bellard9dc39cb2004-03-14 21:38:27 +0000525 }
526}
527
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300528static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300529{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300530 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300531}
532
Adam Litke940cc302010-01-25 12:18:44 -0600533static void user_monitor_complete(void *opaque, QObject *ret_data)
534{
535 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
536
537 if (ret_data) {
538 data->user_print(data->mon, ret_data);
539 }
540 monitor_resume(data->mon);
541 qemu_free(data);
542}
543
544static void qmp_monitor_complete(void *opaque, QObject *ret_data)
545{
546 monitor_protocol_emitter(opaque, ret_data);
547}
548
549static void qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
550 const QDict *params)
551{
552 cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
553}
554
555static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
556{
557 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
558}
559
560static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
561 const QDict *params)
562{
563 int ret;
564
565 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
566 cb_data->mon = mon;
567 cb_data->user_print = cmd->user_print;
568 monitor_suspend(mon);
569 ret = cmd->mhandler.cmd_async(mon, params,
570 user_monitor_complete, cb_data);
571 if (ret < 0) {
572 monitor_resume(mon);
573 qemu_free(cb_data);
574 }
575}
576
577static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
578{
579 int ret;
580
581 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
582 cb_data->mon = mon;
583 cb_data->user_print = cmd->user_print;
584 monitor_suspend(mon);
585 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
586 if (ret < 0) {
587 monitor_resume(mon);
588 qemu_free(cb_data);
589 }
590}
591
Luiz Capitulino4fdc94b2010-02-10 23:50:00 -0200592static int do_info(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000593{
Anthony Liguoric227f092009-10-01 16:12:16 -0500594 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300595 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000596
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200597 if (!item) {
598 assert(monitor_ctrl_mode(mon) == 0);
bellard9dc39cb2004-03-14 21:38:27 +0000599 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200600 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300601
602 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000603 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300604 break;
bellard9dc39cb2004-03-14 21:38:27 +0000605 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300606
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200607 if (cmd->name == NULL) {
608 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100609 qerror_report(QERR_COMMAND_NOT_FOUND, item);
Luiz Capitulino4fdc94b2010-02-10 23:50:00 -0200610 return -1;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200611 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300612 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200613 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300614
Adam Litke940cc302010-01-25 12:18:44 -0600615 if (monitor_handler_is_async(cmd)) {
616 if (monitor_ctrl_mode(mon)) {
617 qmp_async_info_handler(mon, cmd);
618 } else {
619 user_async_info_handler(mon, cmd);
620 }
621 /*
622 * Indicate that this command is asynchronous and will not return any
623 * data (not even empty). Instead, the data will be returned via a
624 * completion callback.
625 */
626 *ret_data = qobject_from_jsonf("{ '__mon_async': 'return' }");
627 } else if (monitor_handler_ported(cmd)) {
Luiz Capitulino13c74252009-10-07 13:41:55 -0300628 cmd->mhandler.info_new(mon, ret_data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200629
630 if (!monitor_ctrl_mode(mon)) {
631 /*
632 * User Protocol function is called here, Monitor Protocol is
633 * handled by monitor_call_handler()
634 */
635 if (*ret_data)
636 cmd->user_print(mon, *ret_data);
637 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300638 } else {
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200639 if (monitor_ctrl_mode(mon)) {
640 /* handler not converted yet */
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100641 qerror_report(QERR_COMMAND_NOT_FOUND, item);
Luiz Capitulino4fdc94b2010-02-10 23:50:00 -0200642 return -1;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200643 } else {
644 cmd->mhandler.info(mon);
645 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300646 }
647
Luiz Capitulino4fdc94b2010-02-10 23:50:00 -0200648 return 0;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300649
650help:
651 help_cmd(mon, "info");
Luiz Capitulino4fdc94b2010-02-10 23:50:00 -0200652 return 0;
bellard9dc39cb2004-03-14 21:38:27 +0000653}
654
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200655static void do_info_version_print(Monitor *mon, const QObject *data)
656{
657 QDict *qdict;
658
659 qdict = qobject_to_qdict(data);
660
661 monitor_printf(mon, "%s%s\n", qdict_get_str(qdict, "qemu"),
662 qdict_get_str(qdict, "package"));
663}
664
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300665static void do_info_version(Monitor *mon, QObject **ret_data)
bellard9bc9d1c2004-10-10 15:15:51 +0000666{
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200667 *ret_data = qobject_from_jsonf("{ 'qemu': %s, 'package': %s }",
668 QEMU_VERSION, QEMU_PKGVERSION);
bellard9bc9d1c2004-10-10 15:15:51 +0000669}
670
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200671static void do_info_name_print(Monitor *mon, const QObject *data)
thsc35734b2007-03-19 15:17:08 +0000672{
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200673 QDict *qdict;
674
675 qdict = qobject_to_qdict(data);
676 if (qdict_size(qdict) == 0) {
677 return;
678 }
679
680 monitor_printf(mon, "%s\n", qdict_get_str(qdict, "name"));
681}
682
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200683static void do_info_name(Monitor *mon, QObject **ret_data)
684{
685 *ret_data = qemu_name ? qobject_from_jsonf("{'name': %s }", qemu_name) :
686 qobject_from_jsonf("{}");
thsc35734b2007-03-19 15:17:08 +0000687}
688
Luiz Capitulino1a728672009-12-10 17:15:56 -0200689static QObject *get_cmd_dict(const char *name)
690{
691 const char *p;
692
693 /* Remove '|' from some commands */
694 p = strchr(name, '|');
695 if (p) {
696 p++;
697 } else {
698 p = name;
699 }
700
701 return qobject_from_jsonf("{ 'name': %s }", p);
702}
703
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200704static void do_info_commands(Monitor *mon, QObject **ret_data)
705{
706 QList *cmd_list;
707 const mon_cmd_t *cmd;
708
709 cmd_list = qlist_new();
710
711 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
712 if (monitor_handler_ported(cmd) && !compare_cmd(cmd->name, "info")) {
Luiz Capitulino1a728672009-12-10 17:15:56 -0200713 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200714 }
715 }
716
717 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
718 if (monitor_handler_ported(cmd)) {
719 char buf[128];
720 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
Luiz Capitulino1a728672009-12-10 17:15:56 -0200721 qlist_append_obj(cmd_list, get_cmd_dict(buf));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200722 }
723 }
724
725 *ret_data = QOBJECT(cmd_list);
726}
727
aurel32bf4f74c2008-12-18 22:42:34 +0000728#if defined(TARGET_I386)
Luiz Capitulino14f07202009-12-10 17:16:02 -0200729static void do_info_hpet_print(Monitor *mon, const QObject *data)
aliguori16b29ae2008-12-17 23:28:44 +0000730{
aliguori376253e2009-03-05 23:01:23 +0000731 monitor_printf(mon, "HPET is %s by QEMU\n",
Luiz Capitulino14f07202009-12-10 17:16:02 -0200732 qdict_get_bool(qobject_to_qdict(data), "enabled") ?
733 "enabled" : "disabled");
734}
735
Luiz Capitulino14f07202009-12-10 17:16:02 -0200736static void do_info_hpet(Monitor *mon, QObject **ret_data)
737{
738 *ret_data = qobject_from_jsonf("{ 'enabled': %i }", !no_hpet);
aliguori16b29ae2008-12-17 23:28:44 +0000739}
aurel32bf4f74c2008-12-18 22:42:34 +0000740#endif
aliguori16b29ae2008-12-17 23:28:44 +0000741
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200742static void do_info_uuid_print(Monitor *mon, const QObject *data)
blueswir1f1f23ad2008-09-18 18:30:20 +0000743{
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200744 monitor_printf(mon, "%s\n", qdict_get_str(qobject_to_qdict(data), "UUID"));
745}
746
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200747static void do_info_uuid(Monitor *mon, QObject **ret_data)
748{
749 char uuid[64];
750
751 snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1],
aliguori376253e2009-03-05 23:01:23 +0000752 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
753 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
754 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
755 qemu_uuid[14], qemu_uuid[15]);
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200756 *ret_data = qobject_from_jsonf("{ 'UUID': %s }", uuid);
thsa36e69d2007-12-02 05:18:19 +0000757}
758
bellard6a00d602005-11-21 23:25:50 +0000759/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000760static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000761{
762 CPUState *env;
763
764 for(env = first_cpu; env != NULL; env = env->next_cpu) {
765 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000766 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000767 return 0;
768 }
769 }
770 return -1;
771}
772
pbrook9596ebb2007-11-18 01:44:38 +0000773static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000774{
aliguori731b0362009-03-05 23:01:42 +0000775 if (!cur_mon->mon_cpu) {
bellard6a00d602005-11-21 23:25:50 +0000776 mon_set_cpu(0);
777 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300778 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000779 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000780}
781
aliguori376253e2009-03-05 23:01:23 +0000782static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000783{
bellard6a00d602005-11-21 23:25:50 +0000784 CPUState *env;
785 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +0000786#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000787 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000788 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000789#else
aliguori376253e2009-03-05 23:01:23 +0000790 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000791 0);
bellard9307c4c2004-04-04 12:57:25 +0000792#endif
793}
794
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300795static void print_cpu_iter(QObject *obj, void *opaque)
796{
797 QDict *cpu;
798 int active = ' ';
799 Monitor *mon = opaque;
800
801 assert(qobject_type(obj) == QTYPE_QDICT);
802 cpu = qobject_to_qdict(obj);
803
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200804 if (qdict_get_bool(cpu, "current")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300805 active = '*';
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200806 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300807
808 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
809
810#if defined(TARGET_I386)
811 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
812 (target_ulong) qdict_get_int(cpu, "pc"));
813#elif defined(TARGET_PPC)
814 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
815 (target_long) qdict_get_int(cpu, "nip"));
816#elif defined(TARGET_SPARC)
817 monitor_printf(mon, "pc=0x " TARGET_FMT_lx,
818 (target_long) qdict_get_int(cpu, "pc"));
819 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
820 (target_long) qdict_get_int(cpu, "npc"));
821#elif defined(TARGET_MIPS)
822 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
823 (target_long) qdict_get_int(cpu, "PC"));
824#endif
825
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200826 if (qdict_get_bool(cpu, "halted")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300827 monitor_printf(mon, " (halted)");
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200828 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300829
830 monitor_printf(mon, "\n");
831}
832
833static void monitor_print_cpus(Monitor *mon, const QObject *data)
834{
835 QList *cpu_list;
836
837 assert(qobject_type(data) == QTYPE_QLIST);
838 cpu_list = qobject_to_qlist(data);
839 qlist_iter(cpu_list, print_cpu_iter, mon);
840}
841
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300842static void do_info_cpus(Monitor *mon, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000843{
844 CPUState *env;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300845 QList *cpu_list;
846
847 cpu_list = qlist_new();
bellard6a00d602005-11-21 23:25:50 +0000848
849 /* just to set the default cpu if not already done */
850 mon_get_cpu();
851
852 for(env = first_cpu; env != NULL; env = env->next_cpu) {
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200853 QDict *cpu;
854 QObject *obj;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300855
Avi Kivity4c0960c2009-08-17 23:19:53 +0300856 cpu_synchronize_state(env);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300857
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200858 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
859 env->cpu_index, env == mon->mon_cpu,
860 env->halted);
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200861
862 cpu = qobject_to_qdict(obj);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300863
bellard6a00d602005-11-21 23:25:50 +0000864#if defined(TARGET_I386)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300865 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
bellarde80e1cc2005-11-23 22:05:28 +0000866#elif defined(TARGET_PPC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300867 qdict_put(cpu, "nip", qint_from_int(env->nip));
bellardba3c64f2005-12-05 20:31:52 +0000868#elif defined(TARGET_SPARC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300869 qdict_put(cpu, "pc", qint_from_int(env->pc));
870 qdict_put(cpu, "npc", qint_from_int(env->npc));
thsead93602007-09-06 00:18:15 +0000871#elif defined(TARGET_MIPS)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300872 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
bellardce5232c2008-05-28 17:14:10 +0000873#endif
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300874
875 qlist_append(cpu_list, cpu);
bellard6a00d602005-11-21 23:25:50 +0000876 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300877
878 *ret_data = QOBJECT(cpu_list);
bellard6a00d602005-11-21 23:25:50 +0000879}
880
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200881static int do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000882{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300883 int index = qdict_get_int(qdict, "index");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200884 if (mon_set_cpu(index) < 0) {
Markus Armbrustere17ba872010-03-25 17:22:36 +0100885 qerror_report(QERR_INVALID_PARAMETER_VALUE, "index",
886 "a CPU number");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200887 return -1;
888 }
889 return 0;
bellard6a00d602005-11-21 23:25:50 +0000890}
891
aliguori376253e2009-03-05 23:01:23 +0000892static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000893{
aliguori376253e2009-03-05 23:01:23 +0000894 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000895}
896
aliguori376253e2009-03-05 23:01:23 +0000897static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000898{
899 int i;
bellard7e2515e2004-08-01 21:52:19 +0000900 const char *str;
ths3b46e622007-09-17 08:09:54 +0000901
aliguoricde76ee2009-03-05 23:01:51 +0000902 if (!mon->rs)
903 return;
bellard7e2515e2004-08-01 21:52:19 +0000904 i = 0;
905 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000906 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000907 if (!str)
908 break;
aliguori376253e2009-03-05 23:01:23 +0000909 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000910 i++;
bellardaa455482004-04-04 13:07:25 +0000911 }
912}
913
j_mayer76a66252007-03-07 08:32:30 +0000914#if defined(TARGET_PPC)
915/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000916static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000917{
918 CPUState *env;
919
920 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000921 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000922}
923#endif
924
Luiz Capitulinob223f352009-10-07 13:41:56 -0300925/**
926 * do_quit(): Quit QEMU execution
927 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200928static int do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000929{
Luiz Capitulino39b59d22010-05-11 18:08:20 -0300930 monitor_suspend(mon);
931 no_shutdown = 0;
932 qemu_system_shutdown_request();
933
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200934 return 0;
bellard9dc39cb2004-03-14 21:38:27 +0000935}
936
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200937static int change_vnc_password(const char *password)
aliguoribb5fc202009-03-05 23:01:15 +0000938{
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200939 if (vnc_display_password(NULL, password) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100940 qerror_report(QERR_SET_PASSWD_FAILED);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200941 return -1;
942 }
aliguoribb5fc202009-03-05 23:01:15 +0000943
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200944 return 0;
Markus Armbruster2895e072009-12-07 21:37:01 +0100945}
946
947static void change_vnc_password_cb(Monitor *mon, const char *password,
948 void *opaque)
949{
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100950 change_vnc_password(password);
aliguori731b0362009-03-05 23:01:42 +0000951 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +0000952}
953
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200954static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
thse25a5822007-08-25 01:36:20 +0000955{
ths70848512007-08-25 01:37:05 +0000956 if (strcmp(target, "passwd") == 0 ||
aliguori28a76be2009-03-06 20:27:40 +0000957 strcmp(target, "password") == 0) {
958 if (arg) {
aliguoribb5fc202009-03-05 23:01:15 +0000959 char password[9];
aliguori28a76be2009-03-06 20:27:40 +0000960 strncpy(password, arg, sizeof(password));
961 password[sizeof(password) - 1] = '\0';
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200962 return change_vnc_password(password);
aliguoribb5fc202009-03-05 23:01:15 +0000963 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200964 return monitor_read_password(mon, change_vnc_password_cb, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000965 }
ths70848512007-08-25 01:37:05 +0000966 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200967 if (vnc_display_open(NULL, target) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100968 qerror_report(QERR_VNC_SERVER_FAILED, target);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200969 return -1;
970 }
ths70848512007-08-25 01:37:05 +0000971 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200972
973 return 0;
thse25a5822007-08-25 01:36:20 +0000974}
975
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100976/**
977 * do_change(): Change a removable medium, or VNC configuration
978 */
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200979static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
thse25a5822007-08-25 01:36:20 +0000980{
Luiz Capitulino1d4daa92009-08-28 15:27:15 -0300981 const char *device = qdict_get_str(qdict, "device");
982 const char *target = qdict_get_str(qdict, "target");
983 const char *arg = qdict_get_try_str(qdict, "arg");
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200984 int ret;
985
thse25a5822007-08-25 01:36:20 +0000986 if (strcmp(device, "vnc") == 0) {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200987 ret = do_change_vnc(mon, target, arg);
thse25a5822007-08-25 01:36:20 +0000988 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200989 ret = do_change_block(mon, device, target, arg);
thse25a5822007-08-25 01:36:20 +0000990 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200991
992 return ret;
thse25a5822007-08-25 01:36:20 +0000993}
994
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -0300995static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard59a983b2004-03-17 23:17:16 +0000996{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300997 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -0300998 return 0;
bellard59a983b2004-03-17 23:17:16 +0000999}
1000
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001001static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +00001002{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001003 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +00001004}
1005
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001006static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +00001007{
1008 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001009 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +00001010
bellard9307c4c2004-04-04 12:57:25 +00001011 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +00001012 mask = 0;
1013 } else {
bellard9307c4c2004-04-04 12:57:25 +00001014 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +00001015 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001016 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001017 return;
1018 }
1019 }
1020 cpu_set_log(mask);
1021}
1022
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001023static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001024{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001025 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001026 if (!option || !strcmp(option, "on")) {
1027 singlestep = 1;
1028 } else if (!strcmp(option, "off")) {
1029 singlestep = 0;
1030 } else {
1031 monitor_printf(mon, "unexpected option %s\n", option);
1032 }
1033}
1034
Luiz Capitulinoe0c97bd2009-10-07 13:41:57 -03001035/**
1036 * do_stop(): Stop VM execution
1037 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001038static int do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard8a7ddc32004-03-31 19:00:16 +00001039{
1040 vm_stop(EXCP_INTERRUPT);
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001041 return 0;
bellard8a7ddc32004-03-31 19:00:16 +00001042}
1043
aliguoribb5fc202009-03-05 23:01:15 +00001044static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
aliguoric0f4ce72009-03-05 23:01:01 +00001045
aliguori376253e2009-03-05 23:01:23 +00001046struct bdrv_iterate_context {
1047 Monitor *mon;
1048 int err;
1049};
aliguoric0f4ce72009-03-05 23:01:01 +00001050
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001051/**
1052 * do_cont(): Resume emulation.
1053 */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001054static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
aliguori376253e2009-03-05 23:01:23 +00001055{
1056 struct bdrv_iterate_context context = { mon, 0 };
1057
1058 bdrv_iterate(encrypted_bdrv_it, &context);
aliguoric0f4ce72009-03-05 23:01:01 +00001059 /* only resume the vm if all keys are set and valid */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001060 if (!context.err) {
aliguoric0f4ce72009-03-05 23:01:01 +00001061 vm_start();
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001062 return 0;
1063 } else {
1064 return -1;
1065 }
bellard8a7ddc32004-03-31 19:00:16 +00001066}
1067
aliguoribb5fc202009-03-05 23:01:15 +00001068static void bdrv_key_cb(void *opaque, int err)
1069{
aliguori376253e2009-03-05 23:01:23 +00001070 Monitor *mon = opaque;
1071
aliguoribb5fc202009-03-05 23:01:15 +00001072 /* another key was set successfully, retry to continue */
1073 if (!err)
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001074 do_cont(mon, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001075}
1076
1077static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1078{
aliguori376253e2009-03-05 23:01:23 +00001079 struct bdrv_iterate_context *context = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00001080
aliguori376253e2009-03-05 23:01:23 +00001081 if (!context->err && bdrv_key_required(bs)) {
1082 context->err = -EBUSY;
1083 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1084 context->mon);
aliguoribb5fc202009-03-05 23:01:15 +00001085 }
1086}
1087
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001088static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001089{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001090 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001091 if (!device)
1092 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1093 if (gdbserver_start(device) < 0) {
1094 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1095 device);
1096 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001097 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001098 } else {
aliguori59030a82009-04-05 18:43:41 +00001099 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1100 device);
bellard8a7ddc32004-03-31 19:00:16 +00001101 }
1102}
1103
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001104static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001105{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001106 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001107 if (select_watchdog_action(action) == -1) {
1108 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1109 }
1110}
1111
aliguori376253e2009-03-05 23:01:23 +00001112static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001113{
aliguori376253e2009-03-05 23:01:23 +00001114 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001115 switch(c) {
1116 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001117 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001118 break;
1119 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001120 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001121 break;
1122 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001123 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001124 break;
1125 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001126 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001127 break;
1128 default:
1129 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001130 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001131 } else {
aliguori376253e2009-03-05 23:01:23 +00001132 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001133 }
1134 break;
1135 }
aliguori376253e2009-03-05 23:01:23 +00001136 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001137}
1138
aliguori376253e2009-03-05 23:01:23 +00001139static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -05001140 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001141{
bellard6a00d602005-11-21 23:25:50 +00001142 CPUState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +00001143 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001144 uint8_t buf[16];
1145 uint64_t v;
1146
1147 if (format == 'i') {
1148 int flags;
1149 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001150 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +00001151#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001152 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001153 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001154 } else if (wsize == 4) {
1155 flags = 0;
1156 } else {
bellard6a15fd12006-04-12 21:07:07 +00001157 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001158 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001159 if (env) {
1160#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001161 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001162 (env->segs[R_CS].flags & DESC_L_MASK))
1163 flags = 2;
1164 else
1165#endif
1166 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1167 flags = 1;
1168 }
bellard4c27ba22004-04-25 18:05:08 +00001169 }
1170#endif
aliguori376253e2009-03-05 23:01:23 +00001171 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001172 return;
1173 }
1174
1175 len = wsize * count;
1176 if (wsize == 1)
1177 line_size = 8;
1178 else
1179 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001180 max_digits = 0;
1181
1182 switch(format) {
1183 case 'o':
1184 max_digits = (wsize * 8 + 2) / 3;
1185 break;
1186 default:
1187 case 'x':
1188 max_digits = (wsize * 8) / 4;
1189 break;
1190 case 'u':
1191 case 'd':
1192 max_digits = (wsize * 8 * 10 + 32) / 33;
1193 break;
1194 case 'c':
1195 wsize = 1;
1196 break;
1197 }
1198
1199 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001200 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001201 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001202 else
aliguori376253e2009-03-05 23:01:23 +00001203 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001204 l = len;
1205 if (l > line_size)
1206 l = line_size;
1207 if (is_physical) {
1208 cpu_physical_memory_rw(addr, buf, l, 0);
1209 } else {
bellard6a00d602005-11-21 23:25:50 +00001210 env = mon_get_cpu();
aliguoric8f79b62008-08-18 14:00:20 +00001211 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001212 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001213 break;
1214 }
bellard9307c4c2004-04-04 12:57:25 +00001215 }
ths5fafdf22007-09-16 21:08:06 +00001216 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001217 while (i < l) {
1218 switch(wsize) {
1219 default:
1220 case 1:
1221 v = ldub_raw(buf + i);
1222 break;
1223 case 2:
1224 v = lduw_raw(buf + i);
1225 break;
1226 case 4:
bellard92a31b12005-02-10 22:00:52 +00001227 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001228 break;
1229 case 8:
1230 v = ldq_raw(buf + i);
1231 break;
1232 }
aliguori376253e2009-03-05 23:01:23 +00001233 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001234 switch(format) {
1235 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001236 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001237 break;
1238 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001239 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001240 break;
1241 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001242 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001243 break;
1244 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001245 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001246 break;
1247 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001248 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001249 break;
1250 }
1251 i += wsize;
1252 }
aliguori376253e2009-03-05 23:01:23 +00001253 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001254 addr += l;
1255 len -= l;
1256 }
1257}
1258
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001259static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001260{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001261 int count = qdict_get_int(qdict, "count");
1262 int format = qdict_get_int(qdict, "format");
1263 int size = qdict_get_int(qdict, "size");
1264 target_long addr = qdict_get_int(qdict, "addr");
1265
aliguori376253e2009-03-05 23:01:23 +00001266 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001267}
1268
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001269static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001270{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001271 int count = qdict_get_int(qdict, "count");
1272 int format = qdict_get_int(qdict, "format");
1273 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001274 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001275
aliguori376253e2009-03-05 23:01:23 +00001276 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001277}
1278
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001279static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001280{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001281 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001282 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001283
blueswir17743e582007-09-24 18:39:04 +00001284#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +00001285 switch(format) {
1286 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001287 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +00001288 break;
1289 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001290 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +00001291 break;
1292 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001293 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +00001294 break;
1295 default:
1296 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001297 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +00001298 break;
1299 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001300 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001301 break;
1302 }
bellard92a31b12005-02-10 22:00:52 +00001303#else
1304 switch(format) {
1305 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001306 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +00001307 break;
1308 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001309 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +00001310 break;
1311 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001312 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +00001313 break;
1314 default:
1315 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001316 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +00001317 break;
1318 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001319 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +00001320 break;
1321 }
1322#endif
aliguori376253e2009-03-05 23:01:23 +00001323 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001324}
1325
Luiz Capitulino98696222010-02-10 23:49:58 -02001326static int do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellardb371dc52007-01-03 15:20:39 +00001327{
1328 FILE *f;
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001329 uint32_t size = qdict_get_int(qdict, "size");
1330 const char *filename = qdict_get_str(qdict, "filename");
1331 target_long addr = qdict_get_int(qdict, "val");
bellardb371dc52007-01-03 15:20:39 +00001332 uint32_t l;
1333 CPUState *env;
1334 uint8_t buf[1024];
Luiz Capitulino98696222010-02-10 23:49:58 -02001335 int ret = -1;
bellardb371dc52007-01-03 15:20:39 +00001336
1337 env = mon_get_cpu();
bellardb371dc52007-01-03 15:20:39 +00001338
1339 f = fopen(filename, "wb");
1340 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001341 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulino98696222010-02-10 23:49:58 -02001342 return -1;
bellardb371dc52007-01-03 15:20:39 +00001343 }
1344 while (size != 0) {
1345 l = sizeof(buf);
1346 if (l > size)
1347 l = size;
1348 cpu_memory_rw_debug(env, addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001349 if (fwrite(buf, 1, l, f) != l) {
1350 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1351 goto exit;
1352 }
bellardb371dc52007-01-03 15:20:39 +00001353 addr += l;
1354 size -= l;
1355 }
Luiz Capitulino98696222010-02-10 23:49:58 -02001356
1357 ret = 0;
1358
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001359exit:
bellardb371dc52007-01-03 15:20:39 +00001360 fclose(f);
Luiz Capitulino98696222010-02-10 23:49:58 -02001361 return ret;
bellardb371dc52007-01-03 15:20:39 +00001362}
1363
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001364static int do_physical_memory_save(Monitor *mon, const QDict *qdict,
Luiz Capitulino18f5a8b2009-10-16 12:23:44 -03001365 QObject **ret_data)
aurel32a8bdf7a2008-04-11 21:36:14 +00001366{
1367 FILE *f;
1368 uint32_t l;
1369 uint8_t buf[1024];
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001370 uint32_t size = qdict_get_int(qdict, "size");
1371 const char *filename = qdict_get_str(qdict, "filename");
Anthony Liguoric227f092009-10-01 16:12:16 -05001372 target_phys_addr_t addr = qdict_get_int(qdict, "val");
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001373 int ret = -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001374
1375 f = fopen(filename, "wb");
1376 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001377 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001378 return -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001379 }
1380 while (size != 0) {
1381 l = sizeof(buf);
1382 if (l > size)
1383 l = size;
1384 cpu_physical_memory_rw(addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001385 if (fwrite(buf, 1, l, f) != l) {
1386 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1387 goto exit;
1388 }
aurel32a8bdf7a2008-04-11 21:36:14 +00001389 fflush(f);
1390 addr += l;
1391 size -= l;
1392 }
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001393
1394 ret = 0;
1395
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001396exit:
aurel32a8bdf7a2008-04-11 21:36:14 +00001397 fclose(f);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001398 return ret;
aurel32a8bdf7a2008-04-11 21:36:14 +00001399}
1400
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001401static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001402{
1403 uint32_t addr;
1404 uint8_t buf[1];
1405 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001406 uint32_t start = qdict_get_int(qdict, "start");
1407 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001408
1409 sum = 0;
1410 for(addr = start; addr < (start + size); addr++) {
1411 cpu_physical_memory_rw(addr, buf, 1, 0);
1412 /* BSD sum algorithm ('sum' Unix command) */
1413 sum = (sum >> 1) | (sum << 15);
1414 sum += buf[0];
1415 }
aliguori376253e2009-03-05 23:01:23 +00001416 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001417}
1418
bellarda3a91a32004-06-04 11:06:21 +00001419typedef struct {
1420 int keycode;
1421 const char *name;
1422} KeyDef;
1423
1424static const KeyDef key_defs[] = {
1425 { 0x2a, "shift" },
1426 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +00001427
bellarda3a91a32004-06-04 11:06:21 +00001428 { 0x38, "alt" },
1429 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +00001430 { 0x64, "altgr" },
1431 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +00001432 { 0x1d, "ctrl" },
1433 { 0x9d, "ctrl_r" },
1434
1435 { 0xdd, "menu" },
1436
1437 { 0x01, "esc" },
1438
1439 { 0x02, "1" },
1440 { 0x03, "2" },
1441 { 0x04, "3" },
1442 { 0x05, "4" },
1443 { 0x06, "5" },
1444 { 0x07, "6" },
1445 { 0x08, "7" },
1446 { 0x09, "8" },
1447 { 0x0a, "9" },
1448 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +00001449 { 0x0c, "minus" },
1450 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +00001451 { 0x0e, "backspace" },
1452
1453 { 0x0f, "tab" },
1454 { 0x10, "q" },
1455 { 0x11, "w" },
1456 { 0x12, "e" },
1457 { 0x13, "r" },
1458 { 0x14, "t" },
1459 { 0x15, "y" },
1460 { 0x16, "u" },
1461 { 0x17, "i" },
1462 { 0x18, "o" },
1463 { 0x19, "p" },
1464
1465 { 0x1c, "ret" },
1466
1467 { 0x1e, "a" },
1468 { 0x1f, "s" },
1469 { 0x20, "d" },
1470 { 0x21, "f" },
1471 { 0x22, "g" },
1472 { 0x23, "h" },
1473 { 0x24, "j" },
1474 { 0x25, "k" },
1475 { 0x26, "l" },
1476
1477 { 0x2c, "z" },
1478 { 0x2d, "x" },
1479 { 0x2e, "c" },
1480 { 0x2f, "v" },
1481 { 0x30, "b" },
1482 { 0x31, "n" },
1483 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +00001484 { 0x33, "comma" },
1485 { 0x34, "dot" },
1486 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +00001487
balrog4d3b6f62008-02-10 16:33:14 +00001488 { 0x37, "asterisk" },
1489
bellarda3a91a32004-06-04 11:06:21 +00001490 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +00001491 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001492 { 0x3b, "f1" },
1493 { 0x3c, "f2" },
1494 { 0x3d, "f3" },
1495 { 0x3e, "f4" },
1496 { 0x3f, "f5" },
1497 { 0x40, "f6" },
1498 { 0x41, "f7" },
1499 { 0x42, "f8" },
1500 { 0x43, "f9" },
1501 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +00001502 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001503 { 0x46, "scroll_lock" },
1504
bellard64866c32006-05-07 18:03:31 +00001505 { 0xb5, "kp_divide" },
1506 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +00001507 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +00001508 { 0x4e, "kp_add" },
1509 { 0x9c, "kp_enter" },
1510 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +00001511 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +00001512
1513 { 0x52, "kp_0" },
1514 { 0x4f, "kp_1" },
1515 { 0x50, "kp_2" },
1516 { 0x51, "kp_3" },
1517 { 0x4b, "kp_4" },
1518 { 0x4c, "kp_5" },
1519 { 0x4d, "kp_6" },
1520 { 0x47, "kp_7" },
1521 { 0x48, "kp_8" },
1522 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +00001523
bellarda3a91a32004-06-04 11:06:21 +00001524 { 0x56, "<" },
1525
1526 { 0x57, "f11" },
1527 { 0x58, "f12" },
1528
1529 { 0xb7, "print" },
1530
1531 { 0xc7, "home" },
1532 { 0xc9, "pgup" },
1533 { 0xd1, "pgdn" },
1534 { 0xcf, "end" },
1535
1536 { 0xcb, "left" },
1537 { 0xc8, "up" },
1538 { 0xd0, "down" },
1539 { 0xcd, "right" },
1540
1541 { 0xd2, "insert" },
1542 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001543#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1544 { 0xf0, "stop" },
1545 { 0xf1, "again" },
1546 { 0xf2, "props" },
1547 { 0xf3, "undo" },
1548 { 0xf4, "front" },
1549 { 0xf5, "copy" },
1550 { 0xf6, "open" },
1551 { 0xf7, "paste" },
1552 { 0xf8, "find" },
1553 { 0xf9, "cut" },
1554 { 0xfa, "lf" },
1555 { 0xfb, "help" },
1556 { 0xfc, "meta_l" },
1557 { 0xfd, "meta_r" },
1558 { 0xfe, "compose" },
1559#endif
bellarda3a91a32004-06-04 11:06:21 +00001560 { 0, NULL },
1561};
1562
1563static int get_keycode(const char *key)
1564{
1565 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001566 char *endp;
1567 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001568
1569 for(p = key_defs; p->name != NULL; p++) {
1570 if (!strcmp(key, p->name))
1571 return p->keycode;
1572 }
bellard64866c32006-05-07 18:03:31 +00001573 if (strstart(key, "0x", NULL)) {
1574 ret = strtoul(key, &endp, 0);
1575 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1576 return ret;
1577 }
bellarda3a91a32004-06-04 11:06:21 +00001578 return -1;
1579}
1580
balrogc8256f92008-06-08 22:45:01 +00001581#define MAX_KEYCODES 16
1582static uint8_t keycodes[MAX_KEYCODES];
1583static int nb_pending_keycodes;
1584static QEMUTimer *key_timer;
1585
1586static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001587{
balrogc8256f92008-06-08 22:45:01 +00001588 int keycode;
1589
1590 while (nb_pending_keycodes > 0) {
1591 nb_pending_keycodes--;
1592 keycode = keycodes[nb_pending_keycodes];
1593 if (keycode & 0x80)
1594 kbd_put_keycode(0xe0);
1595 kbd_put_keycode(keycode | 0x80);
1596 }
1597}
1598
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001599static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001600{
balrog3401c0d2008-06-04 10:05:59 +00001601 char keyname_buf[16];
1602 char *separator;
1603 int keyname_len, keycode, i;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001604 const char *string = qdict_get_str(qdict, "string");
1605 int has_hold_time = qdict_haskey(qdict, "hold_time");
1606 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
ths3b46e622007-09-17 08:09:54 +00001607
balrogc8256f92008-06-08 22:45:01 +00001608 if (nb_pending_keycodes > 0) {
1609 qemu_del_timer(key_timer);
1610 release_keys(NULL);
1611 }
1612 if (!has_hold_time)
1613 hold_time = 100;
1614 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001615 while (1) {
1616 separator = strchr(string, '-');
1617 keyname_len = separator ? separator - string : strlen(string);
1618 if (keyname_len > 0) {
1619 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1620 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001621 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001622 return;
bellarda3a91a32004-06-04 11:06:21 +00001623 }
balrogc8256f92008-06-08 22:45:01 +00001624 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001625 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001626 return;
1627 }
1628 keyname_buf[keyname_len] = 0;
1629 keycode = get_keycode(keyname_buf);
1630 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001631 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001632 return;
1633 }
balrogc8256f92008-06-08 22:45:01 +00001634 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001635 }
balrog3401c0d2008-06-04 10:05:59 +00001636 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001637 break;
balrog3401c0d2008-06-04 10:05:59 +00001638 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001639 }
balrogc8256f92008-06-08 22:45:01 +00001640 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001641 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001642 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001643 keycode = keycodes[i];
1644 if (keycode & 0x80)
1645 kbd_put_keycode(0xe0);
1646 kbd_put_keycode(keycode & 0x7f);
1647 }
balrogc8256f92008-06-08 22:45:01 +00001648 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +00001649 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001650 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001651}
1652
bellard13224a82006-07-14 22:03:35 +00001653static int mouse_button_state;
1654
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001655static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001656{
1657 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001658 const char *dx_str = qdict_get_str(qdict, "dx_str");
1659 const char *dy_str = qdict_get_str(qdict, "dy_str");
1660 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001661 dx = strtol(dx_str, NULL, 0);
1662 dy = strtol(dy_str, NULL, 0);
1663 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001664 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001665 dz = strtol(dz_str, NULL, 0);
1666 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1667}
1668
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001669static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001670{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001671 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001672 mouse_button_state = button_state;
1673 kbd_mouse_event(0, 0, 0, mouse_button_state);
1674}
1675
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001676static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001677{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001678 int size = qdict_get_int(qdict, "size");
1679 int addr = qdict_get_int(qdict, "addr");
1680 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001681 uint32_t val;
1682 int suffix;
1683
1684 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001685 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001686 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001687 addr++;
1688 }
1689 addr &= 0xffff;
1690
1691 switch(size) {
1692 default:
1693 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001694 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001695 suffix = 'b';
1696 break;
1697 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001698 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001699 suffix = 'w';
1700 break;
1701 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001702 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001703 suffix = 'l';
1704 break;
1705 }
aliguori376253e2009-03-05 23:01:23 +00001706 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1707 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001708}
bellarda3a91a32004-06-04 11:06:21 +00001709
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001710static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001711{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001712 int size = qdict_get_int(qdict, "size");
1713 int addr = qdict_get_int(qdict, "addr");
1714 int val = qdict_get_int(qdict, "val");
1715
Jan Kiszkaf1147842009-07-14 10:20:11 +02001716 addr &= IOPORTS_MASK;
1717
1718 switch (size) {
1719 default:
1720 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001721 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001722 break;
1723 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001724 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001725 break;
1726 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001727 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001728 break;
1729 }
1730}
1731
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001732static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001733{
1734 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001735 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001736
Jan Kiszka76e30d02009-07-02 00:19:02 +02001737 res = qemu_boot_set(bootdevice);
1738 if (res == 0) {
1739 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1740 } else if (res > 0) {
1741 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001742 } else {
aliguori376253e2009-03-05 23:01:23 +00001743 monitor_printf(mon, "no function defined to set boot device list for "
1744 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001745 }
1746}
1747
Luiz Capitulinoc80d2592009-10-07 13:41:58 -03001748/**
1749 * do_system_reset(): Issue a machine reset
1750 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001751static int do_system_reset(Monitor *mon, const QDict *qdict,
1752 QObject **ret_data)
bellarde4f90822004-06-20 12:35:44 +00001753{
1754 qemu_system_reset_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001755 return 0;
bellarde4f90822004-06-20 12:35:44 +00001756}
1757
Luiz Capitulino43076662009-10-07 13:41:59 -03001758/**
1759 * do_system_powerdown(): Issue a machine powerdown
1760 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001761static int do_system_powerdown(Monitor *mon, const QDict *qdict,
1762 QObject **ret_data)
bellard34751872005-07-02 14:31:34 +00001763{
1764 qemu_system_powerdown_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001765 return 0;
bellard34751872005-07-02 14:31:34 +00001766}
1767
bellardb86bda52004-09-18 19:32:46 +00001768#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +00001769static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
bellardb86bda52004-09-18 19:32:46 +00001770{
aliguori376253e2009-03-05 23:01:23 +00001771 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1772 addr,
1773 pte & mask,
1774 pte & PG_GLOBAL_MASK ? 'G' : '-',
1775 pte & PG_PSE_MASK ? 'P' : '-',
1776 pte & PG_DIRTY_MASK ? 'D' : '-',
1777 pte & PG_ACCESSED_MASK ? 'A' : '-',
1778 pte & PG_PCD_MASK ? 'C' : '-',
1779 pte & PG_PWT_MASK ? 'T' : '-',
1780 pte & PG_USER_MASK ? 'U' : '-',
1781 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001782}
1783
aliguori376253e2009-03-05 23:01:23 +00001784static void tlb_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001785{
bellard6a00d602005-11-21 23:25:50 +00001786 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001787 int l1, l2;
1788 uint32_t pgd, pde, pte;
1789
bellard6a00d602005-11-21 23:25:50 +00001790 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00001791
bellardb86bda52004-09-18 19:32:46 +00001792 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001793 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001794 return;
1795 }
1796 pgd = env->cr[3] & ~0xfff;
1797 for(l1 = 0; l1 < 1024; l1++) {
1798 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1799 pde = le32_to_cpu(pde);
1800 if (pde & PG_PRESENT_MASK) {
1801 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001802 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
bellardb86bda52004-09-18 19:32:46 +00001803 } else {
1804 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001805 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001806 (uint8_t *)&pte, 4);
1807 pte = le32_to_cpu(pte);
1808 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001809 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001810 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001811 ~0xfff);
1812 }
1813 }
1814 }
1815 }
1816 }
1817}
1818
aliguori376253e2009-03-05 23:01:23 +00001819static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001820 uint32_t end, int prot)
1821{
bellard9746b152004-11-11 18:30:24 +00001822 int prot1;
1823 prot1 = *plast_prot;
1824 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001825 if (*pstart != -1) {
aliguori376253e2009-03-05 23:01:23 +00001826 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1827 *pstart, end, end - *pstart,
1828 prot1 & PG_USER_MASK ? 'u' : '-',
1829 'r',
1830 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001831 }
1832 if (prot != 0)
1833 *pstart = end;
1834 else
1835 *pstart = -1;
1836 *plast_prot = prot;
1837 }
1838}
1839
aliguori376253e2009-03-05 23:01:23 +00001840static void mem_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001841{
bellard6a00d602005-11-21 23:25:50 +00001842 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001843 int l1, l2, prot, last_prot;
1844 uint32_t pgd, pde, pte, start, end;
1845
bellard6a00d602005-11-21 23:25:50 +00001846 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00001847
bellardb86bda52004-09-18 19:32:46 +00001848 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001849 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001850 return;
1851 }
1852 pgd = env->cr[3] & ~0xfff;
1853 last_prot = 0;
1854 start = -1;
1855 for(l1 = 0; l1 < 1024; l1++) {
1856 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1857 pde = le32_to_cpu(pde);
1858 end = l1 << 22;
1859 if (pde & PG_PRESENT_MASK) {
1860 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1861 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001862 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001863 } else {
1864 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001865 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001866 (uint8_t *)&pte, 4);
1867 pte = le32_to_cpu(pte);
1868 end = (l1 << 22) + (l2 << 12);
1869 if (pte & PG_PRESENT_MASK) {
1870 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1871 } else {
1872 prot = 0;
1873 }
aliguori376253e2009-03-05 23:01:23 +00001874 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001875 }
1876 }
1877 } else {
1878 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001879 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001880 }
1881 }
1882}
1883#endif
1884
aurel327c664e22009-03-03 06:12:22 +00001885#if defined(TARGET_SH4)
1886
aliguori376253e2009-03-05 23:01:23 +00001887static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001888{
aliguori376253e2009-03-05 23:01:23 +00001889 monitor_printf(mon, " tlb%i:\t"
1890 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1891 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1892 "dirty=%hhu writethrough=%hhu\n",
1893 idx,
1894 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1895 tlb->v, tlb->sh, tlb->c, tlb->pr,
1896 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001897}
1898
aliguori376253e2009-03-05 23:01:23 +00001899static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00001900{
1901 CPUState *env = mon_get_cpu();
1902 int i;
1903
aliguori376253e2009-03-05 23:01:23 +00001904 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001905 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001906 print_tlb (mon, i, &env->itlb[i]);
1907 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001908 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001909 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00001910}
1911
1912#endif
1913
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001914static void do_info_kvm_print(Monitor *mon, const QObject *data)
1915{
1916 QDict *qdict;
1917
1918 qdict = qobject_to_qdict(data);
1919
1920 monitor_printf(mon, "kvm support: ");
1921 if (qdict_get_bool(qdict, "present")) {
1922 monitor_printf(mon, "%s\n", qdict_get_bool(qdict, "enabled") ?
1923 "enabled" : "disabled");
1924 } else {
1925 monitor_printf(mon, "not compiled\n");
1926 }
1927}
1928
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001929static void do_info_kvm(Monitor *mon, QObject **ret_data)
aliguori7ba1e612008-11-05 16:04:33 +00001930{
1931#ifdef CONFIG_KVM
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001932 *ret_data = qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
1933 kvm_enabled());
aliguori7ba1e612008-11-05 16:04:33 +00001934#else
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001935 *ret_data = qobject_from_jsonf("{ 'enabled': false, 'present': false }");
aliguori7ba1e612008-11-05 16:04:33 +00001936#endif
1937}
1938
aliguori030ea372009-04-21 22:30:47 +00001939static void do_info_numa(Monitor *mon)
1940{
aliguorib28b6232009-04-22 20:20:29 +00001941 int i;
aliguori030ea372009-04-21 22:30:47 +00001942 CPUState *env;
1943
1944 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1945 for (i = 0; i < nb_numa_nodes; i++) {
1946 monitor_printf(mon, "node %d cpus:", i);
1947 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1948 if (env->numa_node == i) {
1949 monitor_printf(mon, " %d", env->cpu_index);
1950 }
1951 }
1952 monitor_printf(mon, "\n");
1953 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1954 node_mem[i] >> 20);
1955 }
1956}
1957
bellard5f1ce942006-02-08 22:40:15 +00001958#ifdef CONFIG_PROFILER
1959
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02001960int64_t qemu_time;
1961int64_t dev_time;
1962
aliguori376253e2009-03-05 23:01:23 +00001963static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001964{
1965 int64_t total;
1966 total = qemu_time;
1967 if (total == 0)
1968 total = 1;
aliguori376253e2009-03-05 23:01:23 +00001969 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02001970 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00001971 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02001972 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00001973 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001974 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00001975}
1976#else
aliguori376253e2009-03-05 23:01:23 +00001977static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00001978{
aliguori376253e2009-03-05 23:01:23 +00001979 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00001980}
1981#endif
1982
bellardec36b692006-07-16 18:57:03 +00001983/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001984static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00001985
aliguori376253e2009-03-05 23:01:23 +00001986static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00001987{
1988 int i;
1989 CaptureState *s;
1990
1991 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00001992 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00001993 s->ops.info (s->opaque);
1994 }
1995}
1996
Blue Swirl23130862009-06-06 08:22:04 +00001997#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001998static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00001999{
2000 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002001 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00002002 CaptureState *s;
2003
2004 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2005 if (i == n) {
2006 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002007 QLIST_REMOVE (s, entries);
bellardec36b692006-07-16 18:57:03 +00002008 qemu_free (s);
2009 return;
2010 }
2011 }
2012}
2013
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002014static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002015{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002016 const char *path = qdict_get_str(qdict, "path");
2017 int has_freq = qdict_haskey(qdict, "freq");
2018 int freq = qdict_get_try_int(qdict, "freq", -1);
2019 int has_bits = qdict_haskey(qdict, "bits");
2020 int bits = qdict_get_try_int(qdict, "bits", -1);
2021 int has_channels = qdict_haskey(qdict, "nchannels");
2022 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00002023 CaptureState *s;
2024
2025 s = qemu_mallocz (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002026
2027 freq = has_freq ? freq : 44100;
2028 bits = has_bits ? bits : 16;
2029 nchannels = has_channels ? nchannels : 2;
2030
2031 if (wav_start_capture (s, path, freq, bits, nchannels)) {
aliguori376253e2009-03-05 23:01:23 +00002032 monitor_printf(mon, "Faied to add wave capture\n");
bellardec36b692006-07-16 18:57:03 +00002033 qemu_free (s);
2034 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002035 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002036}
2037#endif
2038
aurel32dc1c0b72008-04-27 23:52:12 +00002039#if defined(TARGET_I386)
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002040static void do_inject_nmi(Monitor *mon, const QDict *qdict)
aurel32dc1c0b72008-04-27 23:52:12 +00002041{
2042 CPUState *env;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002043 int cpu_index = qdict_get_int(qdict, "cpu_index");
aurel32dc1c0b72008-04-27 23:52:12 +00002044
2045 for (env = first_cpu; env != NULL; env = env->next_cpu)
2046 if (env->cpu_index == cpu_index) {
2047 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2048 break;
2049 }
2050}
2051#endif
2052
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002053static void do_info_status_print(Monitor *mon, const QObject *data)
aurel326f9c5ee2008-12-18 22:43:56 +00002054{
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002055 QDict *qdict;
2056
2057 qdict = qobject_to_qdict(data);
2058
2059 monitor_printf(mon, "VM status: ");
2060 if (qdict_get_bool(qdict, "running")) {
2061 monitor_printf(mon, "running");
2062 if (qdict_get_bool(qdict, "singlestep")) {
2063 monitor_printf(mon, " (single step mode)");
aurel321b530a62009-04-05 20:08:59 +00002064 }
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002065 } else {
2066 monitor_printf(mon, "paused");
2067 }
2068
2069 monitor_printf(mon, "\n");
2070}
2071
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002072static void do_info_status(Monitor *mon, QObject **ret_data)
2073{
2074 *ret_data = qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2075 vm_running, singlestep);
aurel326f9c5ee2008-12-18 22:43:56 +00002076}
2077
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002078static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002079{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002080 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002081
aliguori76655d62009-03-06 20:27:37 +00002082 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002083 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002084 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002085 return acl;
2086}
aliguori76655d62009-03-06 20:27:37 +00002087
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002088static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002089{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002090 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002091 qemu_acl *acl = find_acl(mon, aclname);
2092 qemu_acl_entry *entry;
2093 int i = 0;
2094
2095 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002096 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002097 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002098 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002099 i++;
2100 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002101 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002102 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002103 }
2104}
2105
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002106static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002107{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002108 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002109 qemu_acl *acl = find_acl(mon, aclname);
2110
2111 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002112 qemu_acl_reset(acl);
2113 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002114 }
2115}
aliguori76655d62009-03-06 20:27:37 +00002116
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002117static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002118{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002119 const char *aclname = qdict_get_str(qdict, "aclname");
2120 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002121 qemu_acl *acl = find_acl(mon, aclname);
2122
2123 if (acl) {
2124 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002125 acl->defaultDeny = 0;
2126 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002127 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002128 acl->defaultDeny = 1;
2129 monitor_printf(mon, "acl: policy set to 'deny'\n");
2130 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002131 monitor_printf(mon, "acl: unknown policy '%s', "
2132 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002133 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002134 }
2135}
aliguori76655d62009-03-06 20:27:37 +00002136
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002137static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002138{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002139 const char *aclname = qdict_get_str(qdict, "aclname");
2140 const char *match = qdict_get_str(qdict, "match");
2141 const char *policy = qdict_get_str(qdict, "policy");
2142 int has_index = qdict_haskey(qdict, "index");
2143 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002144 qemu_acl *acl = find_acl(mon, aclname);
2145 int deny, ret;
2146
2147 if (acl) {
2148 if (strcmp(policy, "allow") == 0) {
2149 deny = 0;
2150 } else if (strcmp(policy, "deny") == 0) {
2151 deny = 1;
2152 } else {
2153 monitor_printf(mon, "acl: unknown policy '%s', "
2154 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002155 return;
2156 }
aliguori28a76be2009-03-06 20:27:40 +00002157 if (has_index)
2158 ret = qemu_acl_insert(acl, deny, match, index);
2159 else
2160 ret = qemu_acl_append(acl, deny, match);
2161 if (ret < 0)
2162 monitor_printf(mon, "acl: unable to add acl entry\n");
2163 else
2164 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002165 }
2166}
aliguori76655d62009-03-06 20:27:37 +00002167
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002168static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002169{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002170 const char *aclname = qdict_get_str(qdict, "aclname");
2171 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002172 qemu_acl *acl = find_acl(mon, aclname);
2173 int ret;
aliguori76655d62009-03-06 20:27:37 +00002174
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002175 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002176 ret = qemu_acl_remove(acl, match);
2177 if (ret < 0)
2178 monitor_printf(mon, "acl: no matching acl entry\n");
2179 else
2180 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002181 }
2182}
2183
Huang Ying79c4f6b2009-06-23 10:05:14 +08002184#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002185static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002186{
2187 CPUState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002188 int cpu_index = qdict_get_int(qdict, "cpu_index");
2189 int bank = qdict_get_int(qdict, "bank");
2190 uint64_t status = qdict_get_int(qdict, "status");
2191 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2192 uint64_t addr = qdict_get_int(qdict, "addr");
2193 uint64_t misc = qdict_get_int(qdict, "misc");
Huang Ying79c4f6b2009-06-23 10:05:14 +08002194
2195 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
2196 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
2197 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
2198 break;
2199 }
2200}
2201#endif
2202
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002203static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002204{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002205 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002206 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002207 int fd;
2208
2209 fd = qemu_chr_get_msgfd(mon->chr);
2210 if (fd == -1) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002211 qerror_report(QERR_FD_NOT_SUPPLIED);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002212 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002213 }
2214
2215 if (qemu_isdigit(fdname[0])) {
Markus Armbrustere17ba872010-03-25 17:22:36 +01002216 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2217 "a name not starting with a digit");
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002218 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002219 }
2220
Blue Swirl72cf2d42009-09-12 07:36:22 +00002221 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002222 if (strcmp(monfd->name, fdname) != 0) {
2223 continue;
2224 }
2225
2226 close(monfd->fd);
2227 monfd->fd = fd;
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002228 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002229 }
2230
Anthony Liguoric227f092009-10-01 16:12:16 -05002231 monfd = qemu_mallocz(sizeof(mon_fd_t));
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002232 monfd->name = qemu_strdup(fdname);
2233 monfd->fd = fd;
2234
Blue Swirl72cf2d42009-09-12 07:36:22 +00002235 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002236 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002237}
2238
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002239static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002240{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002241 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002242 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002243
Blue Swirl72cf2d42009-09-12 07:36:22 +00002244 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002245 if (strcmp(monfd->name, fdname) != 0) {
2246 continue;
2247 }
2248
Blue Swirl72cf2d42009-09-12 07:36:22 +00002249 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002250 close(monfd->fd);
2251 qemu_free(monfd->name);
2252 qemu_free(monfd);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002253 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002254 }
2255
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002256 qerror_report(QERR_FD_NOT_FOUND, fdname);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002257 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002258}
2259
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002260static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002261{
2262 int saved_vm_running = vm_running;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002263 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002264
2265 vm_stop(0);
2266
Markus Armbruster03cd4652010-02-17 16:24:10 +01002267 if (load_vmstate(name) >= 0 && saved_vm_running)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002268 vm_start();
2269}
2270
Mark McLoughlin7768e042009-07-22 09:11:41 +01002271int monitor_get_fd(Monitor *mon, const char *fdname)
2272{
Anthony Liguoric227f092009-10-01 16:12:16 -05002273 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002274
Blue Swirl72cf2d42009-09-12 07:36:22 +00002275 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002276 int fd;
2277
2278 if (strcmp(monfd->name, fdname) != 0) {
2279 continue;
2280 }
2281
2282 fd = monfd->fd;
2283
2284 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002285 QLIST_REMOVE(monfd, next);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002286 qemu_free(monfd->name);
2287 qemu_free(monfd);
2288
2289 return fd;
2290 }
2291
2292 return -1;
2293}
2294
Anthony Liguoric227f092009-10-01 16:12:16 -05002295static const mon_cmd_t mon_cmds[] = {
Blue Swirl23130862009-06-06 08:22:04 +00002296#include "qemu-monitor.h"
ths5fafdf22007-09-16 21:08:06 +00002297 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002298};
2299
Blue Swirl23130862009-06-06 08:22:04 +00002300/* Please update qemu-monitor.hx when adding or changing commands */
Anthony Liguoric227f092009-10-01 16:12:16 -05002301static const mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002302 {
2303 .name = "version",
2304 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002305 .params = "",
2306 .help = "show the version of QEMU",
Luiz Capitulino45e914c2009-12-10 17:15:58 -02002307 .user_print = do_info_version_print,
Luiz Capitulinoab2d3182009-10-07 13:42:02 -03002308 .mhandler.info_new = do_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002309 },
2310 {
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -02002311 .name = "commands",
2312 .args_type = "",
2313 .params = "",
2314 .help = "list QMP available commands",
2315 .user_print = monitor_user_noop,
2316 .mhandler.info_new = do_info_commands,
2317 },
2318 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002319 .name = "network",
2320 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002321 .params = "",
2322 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002323 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002324 },
2325 {
2326 .name = "chardev",
2327 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002328 .params = "",
2329 .help = "show the character devices",
Luiz Capitulino588b3832009-12-10 17:16:08 -02002330 .user_print = qemu_chr_info_print,
2331 .mhandler.info_new = qemu_chr_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002332 },
2333 {
2334 .name = "block",
2335 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002336 .params = "",
2337 .help = "show the block devices",
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002338 .user_print = bdrv_info_print,
2339 .mhandler.info_new = bdrv_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002340 },
2341 {
2342 .name = "blockstats",
2343 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002344 .params = "",
2345 .help = "show block device statistics",
Luiz Capitulino218a5362009-12-10 17:16:07 -02002346 .user_print = bdrv_stats_print,
2347 .mhandler.info_new = bdrv_info_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002348 },
2349 {
2350 .name = "registers",
2351 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002352 .params = "",
2353 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002354 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002355 },
2356 {
2357 .name = "cpus",
2358 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002359 .params = "",
2360 .help = "show infos for each CPU",
Luiz Capitulino8f3cec02009-10-07 13:42:04 -03002361 .user_print = monitor_print_cpus,
2362 .mhandler.info_new = do_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002363 },
2364 {
2365 .name = "history",
2366 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002367 .params = "",
2368 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002369 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002370 },
2371 {
2372 .name = "irq",
2373 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002374 .params = "",
2375 .help = "show the interrupts statistics (if available)",
Luiz Capitulino910df892009-10-07 13:41:51 -03002376 .mhandler.info = irq_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002377 },
2378 {
2379 .name = "pic",
2380 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002381 .params = "",
2382 .help = "show i8259 (PIC) state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002383 .mhandler.info = pic_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002384 },
2385 {
2386 .name = "pci",
2387 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002388 .params = "",
2389 .help = "show PCI info",
Luiz Capitulino163c8a52010-01-21 19:15:40 -02002390 .user_print = do_pci_info_print,
2391 .mhandler.info_new = do_pci_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002392 },
aurel327c664e22009-03-03 06:12:22 +00002393#if defined(TARGET_I386) || defined(TARGET_SH4)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002394 {
2395 .name = "tlb",
2396 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002397 .params = "",
2398 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002399 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002400 },
aurel327c664e22009-03-03 06:12:22 +00002401#endif
2402#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002403 {
2404 .name = "mem",
2405 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002406 .params = "",
2407 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002408 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002409 },
2410 {
2411 .name = "hpet",
2412 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002413 .params = "",
2414 .help = "show state of HPET",
Luiz Capitulino14f07202009-12-10 17:16:02 -02002415 .user_print = do_info_hpet_print,
2416 .mhandler.info_new = do_info_hpet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002417 },
bellardb86bda52004-09-18 19:32:46 +00002418#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002419 {
2420 .name = "jit",
2421 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002422 .params = "",
2423 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002424 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002425 },
2426 {
2427 .name = "kvm",
2428 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002429 .params = "",
2430 .help = "show KVM information",
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002431 .user_print = do_info_kvm_print,
2432 .mhandler.info_new = do_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002433 },
2434 {
2435 .name = "numa",
2436 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002437 .params = "",
2438 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002439 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002440 },
2441 {
2442 .name = "usb",
2443 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002444 .params = "",
2445 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002446 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002447 },
2448 {
2449 .name = "usbhost",
2450 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002451 .params = "",
2452 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002453 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002454 },
2455 {
2456 .name = "profile",
2457 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002458 .params = "",
2459 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002460 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002461 },
2462 {
2463 .name = "capture",
2464 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002465 .params = "",
2466 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002467 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002468 },
2469 {
2470 .name = "snapshots",
2471 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002472 .params = "",
2473 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002474 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002475 },
2476 {
2477 .name = "status",
2478 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002479 .params = "",
2480 .help = "show the current VM status (running|paused)",
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002481 .user_print = do_info_status_print,
2482 .mhandler.info_new = do_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002483 },
2484 {
2485 .name = "pcmcia",
2486 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002487 .params = "",
2488 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002489 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002490 },
2491 {
2492 .name = "mice",
2493 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002494 .params = "",
2495 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe78c48e2009-12-10 17:16:04 -02002496 .user_print = do_info_mice_print,
2497 .mhandler.info_new = do_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002498 },
2499 {
2500 .name = "vnc",
2501 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002502 .params = "",
2503 .help = "show the vnc server status",
Luiz Capitulinod96fd292009-12-10 17:16:10 -02002504 .user_print = do_info_vnc_print,
2505 .mhandler.info_new = do_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002506 },
2507 {
2508 .name = "name",
2509 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002510 .params = "",
2511 .help = "show the current VM name",
Luiz Capitulinoe05486c2009-12-10 17:16:01 -02002512 .user_print = do_info_name_print,
2513 .mhandler.info_new = do_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002514 },
2515 {
2516 .name = "uuid",
2517 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002518 .params = "",
2519 .help = "show the current VM UUID",
Luiz Capitulino9603ceb2009-12-10 17:16:03 -02002520 .user_print = do_info_uuid_print,
2521 .mhandler.info_new = do_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002522 },
j_mayer76a66252007-03-07 08:32:30 +00002523#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002524 {
2525 .name = "cpustats",
2526 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002527 .params = "",
2528 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002529 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002530 },
j_mayer76a66252007-03-07 08:32:30 +00002531#endif
blueswir131a60e22007-10-26 18:42:59 +00002532#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002533 {
2534 .name = "usernet",
2535 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002536 .params = "",
2537 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002538 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002539 },
blueswir131a60e22007-10-26 18:42:59 +00002540#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002541 {
2542 .name = "migrate",
2543 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002544 .params = "",
2545 .help = "show migration status",
Luiz Capitulinoc86a6682009-12-10 17:16:05 -02002546 .user_print = do_info_migrate_print,
2547 .mhandler.info_new = do_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002548 },
2549 {
2550 .name = "balloon",
2551 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002552 .params = "",
2553 .help = "show balloon information",
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002554 .user_print = monitor_print_balloon,
Adam Litke625a5be2010-01-26 14:17:35 -06002555 .mhandler.info_async = do_info_balloon,
2556 .async = 1,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002557 },
2558 {
2559 .name = "qtree",
2560 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002561 .params = "",
2562 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002563 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002564 },
2565 {
2566 .name = "qdm",
2567 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002568 .params = "",
2569 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002570 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002571 },
2572 {
2573 .name = "roms",
2574 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002575 .params = "",
2576 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002577 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002578 },
2579 {
2580 .name = NULL,
2581 },
bellard9dc39cb2004-03-14 21:38:27 +00002582};
2583
bellard9307c4c2004-04-04 12:57:25 +00002584/*******************************************************************/
2585
2586static const char *pch;
2587static jmp_buf expr_env;
2588
bellard92a31b12005-02-10 22:00:52 +00002589#define MD_TLONG 0
2590#define MD_I32 1
2591
bellard9307c4c2004-04-04 12:57:25 +00002592typedef struct MonitorDef {
2593 const char *name;
2594 int offset;
blueswir18662d652008-10-02 18:32:44 +00002595 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002596 int type;
bellard9307c4c2004-04-04 12:57:25 +00002597} MonitorDef;
2598
bellard57206fd2004-04-25 18:54:52 +00002599#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002600static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002601{
bellard6a00d602005-11-21 23:25:50 +00002602 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002603 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002604}
2605#endif
2606
bellarda541f292004-04-12 20:39:29 +00002607#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002608static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002609{
bellard6a00d602005-11-21 23:25:50 +00002610 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002611 unsigned int u;
2612 int i;
2613
2614 u = 0;
2615 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002616 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002617
2618 return u;
2619}
2620
blueswir18662d652008-10-02 18:32:44 +00002621static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002622{
bellard6a00d602005-11-21 23:25:50 +00002623 CPUState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00002624 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002625}
2626
blueswir18662d652008-10-02 18:32:44 +00002627static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002628{
bellard6a00d602005-11-21 23:25:50 +00002629 CPUState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00002630 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002631}
bellard9fddaa02004-05-21 12:59:32 +00002632
blueswir18662d652008-10-02 18:32:44 +00002633static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002634{
bellard6a00d602005-11-21 23:25:50 +00002635 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002636 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002637}
2638
blueswir18662d652008-10-02 18:32:44 +00002639static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002640{
bellard6a00d602005-11-21 23:25:50 +00002641 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002642 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002643}
2644
blueswir18662d652008-10-02 18:32:44 +00002645static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002646{
bellard6a00d602005-11-21 23:25:50 +00002647 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002648 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002649}
bellarda541f292004-04-12 20:39:29 +00002650#endif
2651
bellarde95c8d52004-09-30 22:22:08 +00002652#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002653#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002654static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002655{
bellard6a00d602005-11-21 23:25:50 +00002656 CPUState *env = mon_get_cpu();
Blue Swirl5a834bb2010-05-09 20:19:04 +00002657
2658 return cpu_get_psr(env);
bellarde95c8d52004-09-30 22:22:08 +00002659}
bellard7b936c02005-10-30 17:05:13 +00002660#endif
bellarde95c8d52004-09-30 22:22:08 +00002661
blueswir18662d652008-10-02 18:32:44 +00002662static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002663{
bellard6a00d602005-11-21 23:25:50 +00002664 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002665 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002666}
2667#endif
2668
blueswir18662d652008-10-02 18:32:44 +00002669static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002670#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002671
2672#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00002673 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00002674 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00002675 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002676
bellard9307c4c2004-04-04 12:57:25 +00002677 { "eax", offsetof(CPUState, regs[0]) },
2678 { "ecx", offsetof(CPUState, regs[1]) },
2679 { "edx", offsetof(CPUState, regs[2]) },
2680 { "ebx", offsetof(CPUState, regs[3]) },
2681 { "esp|sp", offsetof(CPUState, regs[4]) },
2682 { "ebp|fp", offsetof(CPUState, regs[5]) },
2683 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00002684 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002685#ifdef TARGET_X86_64
2686 { "r8", offsetof(CPUState, regs[8]) },
2687 { "r9", offsetof(CPUState, regs[9]) },
2688 { "r10", offsetof(CPUState, regs[10]) },
2689 { "r11", offsetof(CPUState, regs[11]) },
2690 { "r12", offsetof(CPUState, regs[12]) },
2691 { "r13", offsetof(CPUState, regs[13]) },
2692 { "r14", offsetof(CPUState, regs[14]) },
2693 { "r15", offsetof(CPUState, regs[15]) },
2694#endif
bellard9307c4c2004-04-04 12:57:25 +00002695 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00002696 { "eip", offsetof(CPUState, eip) },
2697 SEG("cs", R_CS)
2698 SEG("ds", R_DS)
2699 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002700 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002701 SEG("fs", R_FS)
2702 SEG("gs", R_GS)
2703 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002704#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002705 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00002706 { "r0", offsetof(CPUState, gpr[0]) },
2707 { "r1", offsetof(CPUState, gpr[1]) },
2708 { "r2", offsetof(CPUState, gpr[2]) },
2709 { "r3", offsetof(CPUState, gpr[3]) },
2710 { "r4", offsetof(CPUState, gpr[4]) },
2711 { "r5", offsetof(CPUState, gpr[5]) },
2712 { "r6", offsetof(CPUState, gpr[6]) },
2713 { "r7", offsetof(CPUState, gpr[7]) },
2714 { "r8", offsetof(CPUState, gpr[8]) },
2715 { "r9", offsetof(CPUState, gpr[9]) },
2716 { "r10", offsetof(CPUState, gpr[10]) },
2717 { "r11", offsetof(CPUState, gpr[11]) },
2718 { "r12", offsetof(CPUState, gpr[12]) },
2719 { "r13", offsetof(CPUState, gpr[13]) },
2720 { "r14", offsetof(CPUState, gpr[14]) },
2721 { "r15", offsetof(CPUState, gpr[15]) },
2722 { "r16", offsetof(CPUState, gpr[16]) },
2723 { "r17", offsetof(CPUState, gpr[17]) },
2724 { "r18", offsetof(CPUState, gpr[18]) },
2725 { "r19", offsetof(CPUState, gpr[19]) },
2726 { "r20", offsetof(CPUState, gpr[20]) },
2727 { "r21", offsetof(CPUState, gpr[21]) },
2728 { "r22", offsetof(CPUState, gpr[22]) },
2729 { "r23", offsetof(CPUState, gpr[23]) },
2730 { "r24", offsetof(CPUState, gpr[24]) },
2731 { "r25", offsetof(CPUState, gpr[25]) },
2732 { "r26", offsetof(CPUState, gpr[26]) },
2733 { "r27", offsetof(CPUState, gpr[27]) },
2734 { "r28", offsetof(CPUState, gpr[28]) },
2735 { "r29", offsetof(CPUState, gpr[29]) },
2736 { "r30", offsetof(CPUState, gpr[30]) },
2737 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00002738 /* Floating point registers */
2739 { "f0", offsetof(CPUState, fpr[0]) },
2740 { "f1", offsetof(CPUState, fpr[1]) },
2741 { "f2", offsetof(CPUState, fpr[2]) },
2742 { "f3", offsetof(CPUState, fpr[3]) },
2743 { "f4", offsetof(CPUState, fpr[4]) },
2744 { "f5", offsetof(CPUState, fpr[5]) },
2745 { "f6", offsetof(CPUState, fpr[6]) },
2746 { "f7", offsetof(CPUState, fpr[7]) },
2747 { "f8", offsetof(CPUState, fpr[8]) },
2748 { "f9", offsetof(CPUState, fpr[9]) },
2749 { "f10", offsetof(CPUState, fpr[10]) },
2750 { "f11", offsetof(CPUState, fpr[11]) },
2751 { "f12", offsetof(CPUState, fpr[12]) },
2752 { "f13", offsetof(CPUState, fpr[13]) },
2753 { "f14", offsetof(CPUState, fpr[14]) },
2754 { "f15", offsetof(CPUState, fpr[15]) },
2755 { "f16", offsetof(CPUState, fpr[16]) },
2756 { "f17", offsetof(CPUState, fpr[17]) },
2757 { "f18", offsetof(CPUState, fpr[18]) },
2758 { "f19", offsetof(CPUState, fpr[19]) },
2759 { "f20", offsetof(CPUState, fpr[20]) },
2760 { "f21", offsetof(CPUState, fpr[21]) },
2761 { "f22", offsetof(CPUState, fpr[22]) },
2762 { "f23", offsetof(CPUState, fpr[23]) },
2763 { "f24", offsetof(CPUState, fpr[24]) },
2764 { "f25", offsetof(CPUState, fpr[25]) },
2765 { "f26", offsetof(CPUState, fpr[26]) },
2766 { "f27", offsetof(CPUState, fpr[27]) },
2767 { "f28", offsetof(CPUState, fpr[28]) },
2768 { "f29", offsetof(CPUState, fpr[29]) },
2769 { "f30", offsetof(CPUState, fpr[30]) },
2770 { "f31", offsetof(CPUState, fpr[31]) },
2771 { "fpscr", offsetof(CPUState, fpscr) },
2772 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00002773 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00002774 { "lr", offsetof(CPUState, lr) },
2775 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00002776 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00002777 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00002778 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00002779 { "msr", 0, &monitor_get_msr, },
2780 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00002781 { "tbu", 0, &monitor_get_tbu, },
2782 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00002783#if defined(TARGET_PPC64)
2784 /* Address space register */
2785 { "asr", offsetof(CPUState, asr) },
2786#endif
2787 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00002788 { "sdr1", offsetof(CPUState, sdr1) },
2789 { "sr0", offsetof(CPUState, sr[0]) },
2790 { "sr1", offsetof(CPUState, sr[1]) },
2791 { "sr2", offsetof(CPUState, sr[2]) },
2792 { "sr3", offsetof(CPUState, sr[3]) },
2793 { "sr4", offsetof(CPUState, sr[4]) },
2794 { "sr5", offsetof(CPUState, sr[5]) },
2795 { "sr6", offsetof(CPUState, sr[6]) },
2796 { "sr7", offsetof(CPUState, sr[7]) },
2797 { "sr8", offsetof(CPUState, sr[8]) },
2798 { "sr9", offsetof(CPUState, sr[9]) },
2799 { "sr10", offsetof(CPUState, sr[10]) },
2800 { "sr11", offsetof(CPUState, sr[11]) },
2801 { "sr12", offsetof(CPUState, sr[12]) },
2802 { "sr13", offsetof(CPUState, sr[13]) },
2803 { "sr14", offsetof(CPUState, sr[14]) },
2804 { "sr15", offsetof(CPUState, sr[15]) },
2805 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00002806#elif defined(TARGET_SPARC)
2807 { "g0", offsetof(CPUState, gregs[0]) },
2808 { "g1", offsetof(CPUState, gregs[1]) },
2809 { "g2", offsetof(CPUState, gregs[2]) },
2810 { "g3", offsetof(CPUState, gregs[3]) },
2811 { "g4", offsetof(CPUState, gregs[4]) },
2812 { "g5", offsetof(CPUState, gregs[5]) },
2813 { "g6", offsetof(CPUState, gregs[6]) },
2814 { "g7", offsetof(CPUState, gregs[7]) },
2815 { "o0", 0, monitor_get_reg },
2816 { "o1", 1, monitor_get_reg },
2817 { "o2", 2, monitor_get_reg },
2818 { "o3", 3, monitor_get_reg },
2819 { "o4", 4, monitor_get_reg },
2820 { "o5", 5, monitor_get_reg },
2821 { "o6", 6, monitor_get_reg },
2822 { "o7", 7, monitor_get_reg },
2823 { "l0", 8, monitor_get_reg },
2824 { "l1", 9, monitor_get_reg },
2825 { "l2", 10, monitor_get_reg },
2826 { "l3", 11, monitor_get_reg },
2827 { "l4", 12, monitor_get_reg },
2828 { "l5", 13, monitor_get_reg },
2829 { "l6", 14, monitor_get_reg },
2830 { "l7", 15, monitor_get_reg },
2831 { "i0", 16, monitor_get_reg },
2832 { "i1", 17, monitor_get_reg },
2833 { "i2", 18, monitor_get_reg },
2834 { "i3", 19, monitor_get_reg },
2835 { "i4", 20, monitor_get_reg },
2836 { "i5", 21, monitor_get_reg },
2837 { "i6", 22, monitor_get_reg },
2838 { "i7", 23, monitor_get_reg },
2839 { "pc", offsetof(CPUState, pc) },
2840 { "npc", offsetof(CPUState, npc) },
2841 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00002842#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00002843 { "psr", 0, &monitor_get_psr, },
2844 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00002845#endif
bellarde95c8d52004-09-30 22:22:08 +00002846 { "tbr", offsetof(CPUState, tbr) },
2847 { "fsr", offsetof(CPUState, fsr) },
2848 { "f0", offsetof(CPUState, fpr[0]) },
2849 { "f1", offsetof(CPUState, fpr[1]) },
2850 { "f2", offsetof(CPUState, fpr[2]) },
2851 { "f3", offsetof(CPUState, fpr[3]) },
2852 { "f4", offsetof(CPUState, fpr[4]) },
2853 { "f5", offsetof(CPUState, fpr[5]) },
2854 { "f6", offsetof(CPUState, fpr[6]) },
2855 { "f7", offsetof(CPUState, fpr[7]) },
2856 { "f8", offsetof(CPUState, fpr[8]) },
2857 { "f9", offsetof(CPUState, fpr[9]) },
2858 { "f10", offsetof(CPUState, fpr[10]) },
2859 { "f11", offsetof(CPUState, fpr[11]) },
2860 { "f12", offsetof(CPUState, fpr[12]) },
2861 { "f13", offsetof(CPUState, fpr[13]) },
2862 { "f14", offsetof(CPUState, fpr[14]) },
2863 { "f15", offsetof(CPUState, fpr[15]) },
2864 { "f16", offsetof(CPUState, fpr[16]) },
2865 { "f17", offsetof(CPUState, fpr[17]) },
2866 { "f18", offsetof(CPUState, fpr[18]) },
2867 { "f19", offsetof(CPUState, fpr[19]) },
2868 { "f20", offsetof(CPUState, fpr[20]) },
2869 { "f21", offsetof(CPUState, fpr[21]) },
2870 { "f22", offsetof(CPUState, fpr[22]) },
2871 { "f23", offsetof(CPUState, fpr[23]) },
2872 { "f24", offsetof(CPUState, fpr[24]) },
2873 { "f25", offsetof(CPUState, fpr[25]) },
2874 { "f26", offsetof(CPUState, fpr[26]) },
2875 { "f27", offsetof(CPUState, fpr[27]) },
2876 { "f28", offsetof(CPUState, fpr[28]) },
2877 { "f29", offsetof(CPUState, fpr[29]) },
2878 { "f30", offsetof(CPUState, fpr[30]) },
2879 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00002880#ifdef TARGET_SPARC64
2881 { "f32", offsetof(CPUState, fpr[32]) },
2882 { "f34", offsetof(CPUState, fpr[34]) },
2883 { "f36", offsetof(CPUState, fpr[36]) },
2884 { "f38", offsetof(CPUState, fpr[38]) },
2885 { "f40", offsetof(CPUState, fpr[40]) },
2886 { "f42", offsetof(CPUState, fpr[42]) },
2887 { "f44", offsetof(CPUState, fpr[44]) },
2888 { "f46", offsetof(CPUState, fpr[46]) },
2889 { "f48", offsetof(CPUState, fpr[48]) },
2890 { "f50", offsetof(CPUState, fpr[50]) },
2891 { "f52", offsetof(CPUState, fpr[52]) },
2892 { "f54", offsetof(CPUState, fpr[54]) },
2893 { "f56", offsetof(CPUState, fpr[56]) },
2894 { "f58", offsetof(CPUState, fpr[58]) },
2895 { "f60", offsetof(CPUState, fpr[60]) },
2896 { "f62", offsetof(CPUState, fpr[62]) },
2897 { "asi", offsetof(CPUState, asi) },
2898 { "pstate", offsetof(CPUState, pstate) },
2899 { "cansave", offsetof(CPUState, cansave) },
2900 { "canrestore", offsetof(CPUState, canrestore) },
2901 { "otherwin", offsetof(CPUState, otherwin) },
2902 { "wstate", offsetof(CPUState, wstate) },
2903 { "cleanwin", offsetof(CPUState, cleanwin) },
2904 { "fprs", offsetof(CPUState, fprs) },
2905#endif
bellard9307c4c2004-04-04 12:57:25 +00002906#endif
2907 { NULL },
2908};
2909
aliguori376253e2009-03-05 23:01:23 +00002910static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00002911{
aliguori376253e2009-03-05 23:01:23 +00002912 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00002913 longjmp(expr_env, 1);
2914}
2915
Markus Armbruster09b94182010-01-20 13:07:30 +01002916/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00002917static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00002918{
blueswir18662d652008-10-02 18:32:44 +00002919 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00002920 void *ptr;
2921
bellard9307c4c2004-04-04 12:57:25 +00002922 for(md = monitor_defs; md->name != NULL; md++) {
2923 if (compare_cmd(name, md->name)) {
2924 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00002925 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00002926 } else {
bellard6a00d602005-11-21 23:25:50 +00002927 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002928 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00002929 switch(md->type) {
2930 case MD_I32:
2931 *pval = *(int32_t *)ptr;
2932 break;
2933 case MD_TLONG:
2934 *pval = *(target_long *)ptr;
2935 break;
2936 default:
2937 *pval = 0;
2938 break;
2939 }
bellard9307c4c2004-04-04 12:57:25 +00002940 }
2941 return 0;
2942 }
2943 }
2944 return -1;
2945}
2946
2947static void next(void)
2948{
Blue Swirl660f11b2009-07-31 21:16:51 +00002949 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00002950 pch++;
blueswir1cd390082008-11-16 13:53:32 +00002951 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00002952 pch++;
2953 }
2954}
2955
aliguori376253e2009-03-05 23:01:23 +00002956static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00002957
aliguori376253e2009-03-05 23:01:23 +00002958static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00002959{
blueswir1c2efc952007-09-25 17:28:42 +00002960 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00002961 char *p;
bellard6a00d602005-11-21 23:25:50 +00002962 int ret;
bellard9307c4c2004-04-04 12:57:25 +00002963
2964 switch(*pch) {
2965 case '+':
2966 next();
aliguori376253e2009-03-05 23:01:23 +00002967 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002968 break;
2969 case '-':
2970 next();
aliguori376253e2009-03-05 23:01:23 +00002971 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002972 break;
2973 case '~':
2974 next();
aliguori376253e2009-03-05 23:01:23 +00002975 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00002976 break;
2977 case '(':
2978 next();
aliguori376253e2009-03-05 23:01:23 +00002979 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00002980 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00002981 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00002982 }
2983 next();
2984 break;
bellard81d09122004-07-14 17:21:37 +00002985 case '\'':
2986 pch++;
2987 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00002988 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00002989 n = *pch;
2990 pch++;
2991 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00002992 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00002993 next();
2994 break;
bellard9307c4c2004-04-04 12:57:25 +00002995 case '$':
2996 {
2997 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00002998 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00002999
bellard9307c4c2004-04-04 12:57:25 +00003000 pch++;
3001 q = buf;
3002 while ((*pch >= 'a' && *pch <= 'z') ||
3003 (*pch >= 'A' && *pch <= 'Z') ||
3004 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003005 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003006 if ((q - buf) < sizeof(buf) - 1)
3007 *q++ = *pch;
3008 pch++;
3009 }
blueswir1cd390082008-11-16 13:53:32 +00003010 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003011 pch++;
3012 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003013 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003014 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003015 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003016 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003017 }
3018 break;
3019 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003020 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003021 n = 0;
3022 break;
3023 default:
blueswir17743e582007-09-24 18:39:04 +00003024#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003025 n = strtoull(pch, &p, 0);
3026#else
bellard9307c4c2004-04-04 12:57:25 +00003027 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003028#endif
bellard9307c4c2004-04-04 12:57:25 +00003029 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003030 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003031 }
3032 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003033 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003034 pch++;
3035 break;
3036 }
3037 return n;
3038}
3039
3040
aliguori376253e2009-03-05 23:01:23 +00003041static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003042{
blueswir1c2efc952007-09-25 17:28:42 +00003043 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003044 int op;
ths3b46e622007-09-17 08:09:54 +00003045
aliguori376253e2009-03-05 23:01:23 +00003046 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003047 for(;;) {
3048 op = *pch;
3049 if (op != '*' && op != '/' && op != '%')
3050 break;
3051 next();
aliguori376253e2009-03-05 23:01:23 +00003052 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003053 switch(op) {
3054 default:
3055 case '*':
3056 val *= val2;
3057 break;
3058 case '/':
3059 case '%':
ths5fafdf22007-09-16 21:08:06 +00003060 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003061 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003062 if (op == '/')
3063 val /= val2;
3064 else
3065 val %= val2;
3066 break;
3067 }
3068 }
3069 return val;
3070}
3071
aliguori376253e2009-03-05 23:01:23 +00003072static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003073{
blueswir1c2efc952007-09-25 17:28:42 +00003074 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003075 int op;
bellard9307c4c2004-04-04 12:57:25 +00003076
aliguori376253e2009-03-05 23:01:23 +00003077 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003078 for(;;) {
3079 op = *pch;
3080 if (op != '&' && op != '|' && op != '^')
3081 break;
3082 next();
aliguori376253e2009-03-05 23:01:23 +00003083 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003084 switch(op) {
3085 default:
3086 case '&':
3087 val &= val2;
3088 break;
3089 case '|':
3090 val |= val2;
3091 break;
3092 case '^':
3093 val ^= val2;
3094 break;
3095 }
3096 }
3097 return val;
3098}
3099
aliguori376253e2009-03-05 23:01:23 +00003100static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003101{
blueswir1c2efc952007-09-25 17:28:42 +00003102 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003103 int op;
bellard9307c4c2004-04-04 12:57:25 +00003104
aliguori376253e2009-03-05 23:01:23 +00003105 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003106 for(;;) {
3107 op = *pch;
3108 if (op != '+' && op != '-')
3109 break;
3110 next();
aliguori376253e2009-03-05 23:01:23 +00003111 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003112 if (op == '+')
3113 val += val2;
3114 else
3115 val -= val2;
3116 }
3117 return val;
3118}
3119
aliguori376253e2009-03-05 23:01:23 +00003120static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003121{
3122 pch = *pp;
3123 if (setjmp(expr_env)) {
3124 *pp = pch;
3125 return -1;
3126 }
blueswir1cd390082008-11-16 13:53:32 +00003127 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003128 pch++;
aliguori376253e2009-03-05 23:01:23 +00003129 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003130 *pp = pch;
3131 return 0;
3132}
3133
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003134static int get_double(Monitor *mon, double *pval, const char **pp)
3135{
3136 const char *p = *pp;
3137 char *tailp;
3138 double d;
3139
3140 d = strtod(p, &tailp);
3141 if (tailp == p) {
3142 monitor_printf(mon, "Number expected\n");
3143 return -1;
3144 }
3145 if (d != d || d - d != 0) {
3146 /* NaN or infinity */
3147 monitor_printf(mon, "Bad number\n");
3148 return -1;
3149 }
3150 *pval = d;
3151 *pp = tailp;
3152 return 0;
3153}
3154
bellard9307c4c2004-04-04 12:57:25 +00003155static int get_str(char *buf, int buf_size, const char **pp)
3156{
3157 const char *p;
3158 char *q;
3159 int c;
3160
bellard81d09122004-07-14 17:21:37 +00003161 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003162 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003163 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003164 p++;
3165 if (*p == '\0') {
3166 fail:
bellard81d09122004-07-14 17:21:37 +00003167 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003168 *pp = p;
3169 return -1;
3170 }
bellard9307c4c2004-04-04 12:57:25 +00003171 if (*p == '\"') {
3172 p++;
3173 while (*p != '\0' && *p != '\"') {
3174 if (*p == '\\') {
3175 p++;
3176 c = *p++;
3177 switch(c) {
3178 case 'n':
3179 c = '\n';
3180 break;
3181 case 'r':
3182 c = '\r';
3183 break;
3184 case '\\':
3185 case '\'':
3186 case '\"':
3187 break;
3188 default:
3189 qemu_printf("unsupported escape code: '\\%c'\n", c);
3190 goto fail;
3191 }
3192 if ((q - buf) < buf_size - 1) {
3193 *q++ = c;
3194 }
3195 } else {
3196 if ((q - buf) < buf_size - 1) {
3197 *q++ = *p;
3198 }
3199 p++;
3200 }
3201 }
3202 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003203 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003204 goto fail;
3205 }
3206 p++;
3207 } else {
blueswir1cd390082008-11-16 13:53:32 +00003208 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003209 if ((q - buf) < buf_size - 1) {
3210 *q++ = *p;
3211 }
3212 p++;
3213 }
bellard9307c4c2004-04-04 12:57:25 +00003214 }
bellard81d09122004-07-14 17:21:37 +00003215 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003216 *pp = p;
3217 return 0;
3218}
3219
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003220/*
3221 * Store the command-name in cmdname, and return a pointer to
3222 * the remaining of the command string.
3223 */
3224static const char *get_command_name(const char *cmdline,
3225 char *cmdname, size_t nlen)
3226{
3227 size_t len;
3228 const char *p, *pstart;
3229
3230 p = cmdline;
3231 while (qemu_isspace(*p))
3232 p++;
3233 if (*p == '\0')
3234 return NULL;
3235 pstart = p;
3236 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3237 p++;
3238 len = p - pstart;
3239 if (len > nlen - 1)
3240 len = nlen - 1;
3241 memcpy(cmdname, pstart, len);
3242 cmdname[len] = '\0';
3243 return p;
3244}
3245
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003246/**
3247 * Read key of 'type' into 'key' and return the current
3248 * 'type' pointer.
3249 */
3250static char *key_get_info(const char *type, char **key)
3251{
3252 size_t len;
3253 char *p, *str;
3254
3255 if (*type == ',')
3256 type++;
3257
3258 p = strchr(type, ':');
3259 if (!p) {
3260 *key = NULL;
3261 return NULL;
3262 }
3263 len = p - type;
3264
3265 str = qemu_malloc(len + 1);
3266 memcpy(str, type, len);
3267 str[len] = '\0';
3268
3269 *key = str;
3270 return ++p;
3271}
3272
bellard9307c4c2004-04-04 12:57:25 +00003273static int default_fmt_format = 'x';
3274static int default_fmt_size = 4;
3275
3276#define MAX_ARGS 16
3277
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003278static int is_valid_option(const char *c, const char *typestr)
3279{
3280 char option[3];
3281
3282 option[0] = '-';
3283 option[1] = *c;
3284 option[2] = '\0';
3285
3286 typestr = strstr(typestr, option);
3287 return (typestr != NULL);
3288}
3289
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003290static const mon_cmd_t *monitor_find_command(const char *cmdname)
3291{
3292 const mon_cmd_t *cmd;
3293
3294 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
3295 if (compare_cmd(cmdname, cmd->name)) {
3296 return cmd;
3297 }
3298 }
3299
3300 return NULL;
3301}
3302
Anthony Liguoric227f092009-10-01 16:12:16 -05003303static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003304 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003305 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003306{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003307 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003308 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003309 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003310 char cmdname[256];
3311 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003312 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003313
3314#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003315 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003316#endif
ths3b46e622007-09-17 08:09:54 +00003317
bellard9307c4c2004-04-04 12:57:25 +00003318 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003319 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3320 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003321 return NULL;
ths3b46e622007-09-17 08:09:54 +00003322
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003323 cmd = monitor_find_command(cmdname);
3324 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003325 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003326 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003327 }
bellard9307c4c2004-04-04 12:57:25 +00003328
bellard9307c4c2004-04-04 12:57:25 +00003329 /* parse the parameters */
3330 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003331 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003332 typestr = key_get_info(typestr, &key);
3333 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003334 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003335 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003336 typestr++;
3337 switch(c) {
3338 case 'F':
bellard81d09122004-07-14 17:21:37 +00003339 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003340 case 's':
3341 {
3342 int ret;
ths3b46e622007-09-17 08:09:54 +00003343
blueswir1cd390082008-11-16 13:53:32 +00003344 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003345 p++;
3346 if (*typestr == '?') {
3347 typestr++;
3348 if (*p == '\0') {
3349 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003350 break;
bellard9307c4c2004-04-04 12:57:25 +00003351 }
3352 }
3353 ret = get_str(buf, sizeof(buf), &p);
3354 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003355 switch(c) {
3356 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003357 monitor_printf(mon, "%s: filename expected\n",
3358 cmdname);
bellard81d09122004-07-14 17:21:37 +00003359 break;
3360 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003361 monitor_printf(mon, "%s: block device name expected\n",
3362 cmdname);
bellard81d09122004-07-14 17:21:37 +00003363 break;
3364 default:
aliguori376253e2009-03-05 23:01:23 +00003365 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003366 break;
3367 }
bellard9307c4c2004-04-04 12:57:25 +00003368 goto fail;
3369 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003370 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003371 }
3372 break;
Markus Armbruster361127d2010-02-10 20:24:35 +01003373 case 'O':
3374 {
3375 QemuOptsList *opts_list;
3376 QemuOpts *opts;
3377
3378 opts_list = qemu_find_opts(key);
3379 if (!opts_list || opts_list->desc->name) {
3380 goto bad_type;
3381 }
3382 while (qemu_isspace(*p)) {
3383 p++;
3384 }
3385 if (!*p)
3386 break;
3387 if (get_str(buf, sizeof(buf), &p) < 0) {
3388 goto fail;
3389 }
3390 opts = qemu_opts_parse(opts_list, buf, 1);
3391 if (!opts) {
3392 goto fail;
3393 }
3394 qemu_opts_to_qdict(opts, qdict);
3395 qemu_opts_del(opts);
3396 }
3397 break;
bellard9307c4c2004-04-04 12:57:25 +00003398 case '/':
3399 {
3400 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003401
blueswir1cd390082008-11-16 13:53:32 +00003402 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003403 p++;
3404 if (*p == '/') {
3405 /* format found */
3406 p++;
3407 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003408 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003409 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003410 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003411 count = count * 10 + (*p - '0');
3412 p++;
3413 }
3414 }
3415 size = -1;
3416 format = -1;
3417 for(;;) {
3418 switch(*p) {
3419 case 'o':
3420 case 'd':
3421 case 'u':
3422 case 'x':
3423 case 'i':
3424 case 'c':
3425 format = *p++;
3426 break;
3427 case 'b':
3428 size = 1;
3429 p++;
3430 break;
3431 case 'h':
3432 size = 2;
3433 p++;
3434 break;
3435 case 'w':
3436 size = 4;
3437 p++;
3438 break;
3439 case 'g':
3440 case 'L':
3441 size = 8;
3442 p++;
3443 break;
3444 default:
3445 goto next;
3446 }
3447 }
3448 next:
blueswir1cd390082008-11-16 13:53:32 +00003449 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003450 monitor_printf(mon, "invalid char in format: '%c'\n",
3451 *p);
bellard9307c4c2004-04-04 12:57:25 +00003452 goto fail;
3453 }
bellard9307c4c2004-04-04 12:57:25 +00003454 if (format < 0)
3455 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003456 if (format != 'i') {
3457 /* for 'i', not specifying a size gives -1 as size */
3458 if (size < 0)
3459 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003460 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003461 }
bellard9307c4c2004-04-04 12:57:25 +00003462 default_fmt_format = format;
3463 } else {
3464 count = 1;
3465 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003466 if (format != 'i') {
3467 size = default_fmt_size;
3468 } else {
3469 size = -1;
3470 }
bellard9307c4c2004-04-04 12:57:25 +00003471 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003472 qdict_put(qdict, "count", qint_from_int(count));
3473 qdict_put(qdict, "format", qint_from_int(format));
3474 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003475 }
3476 break;
3477 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003478 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003479 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003480 {
blueswir1c2efc952007-09-25 17:28:42 +00003481 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003482
blueswir1cd390082008-11-16 13:53:32 +00003483 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003484 p++;
bellard34405572004-06-08 00:55:58 +00003485 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003486 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003487 if (*p == '\0') {
3488 typestr++;
3489 break;
3490 }
bellard34405572004-06-08 00:55:58 +00003491 } else {
3492 if (*p == '.') {
3493 p++;
blueswir1cd390082008-11-16 13:53:32 +00003494 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003495 p++;
bellard34405572004-06-08 00:55:58 +00003496 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003497 typestr++;
3498 break;
bellard34405572004-06-08 00:55:58 +00003499 }
3500 }
bellard13224a82006-07-14 22:03:35 +00003501 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003502 }
aliguori376253e2009-03-05 23:01:23 +00003503 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003504 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003505 /* Check if 'i' is greater than 32-bit */
3506 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3507 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3508 monitor_printf(mon, "integer is for 32-bit values\n");
3509 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003510 } else if (c == 'M') {
3511 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003512 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003513 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003514 }
3515 break;
Markus Armbrusteree9545d2010-03-26 09:07:08 +01003516 case 'f':
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003517 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003518 {
3519 double val;
3520
3521 while (qemu_isspace(*p))
3522 p++;
3523 if (*typestr == '?') {
3524 typestr++;
3525 if (*p == '\0') {
3526 break;
3527 }
3528 }
3529 if (get_double(mon, &val, &p) < 0) {
3530 goto fail;
3531 }
Markus Armbrusteree9545d2010-03-26 09:07:08 +01003532 if (c == 'f' && *p) {
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003533 switch (*p) {
3534 case 'K': case 'k':
3535 val *= 1 << 10; p++; break;
3536 case 'M': case 'm':
3537 val *= 1 << 20; p++; break;
3538 case 'G': case 'g':
3539 val *= 1 << 30; p++; break;
3540 }
3541 }
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003542 if (c == 'T' && p[0] && p[1] == 's') {
3543 switch (*p) {
3544 case 'm':
3545 val /= 1e3; p += 2; break;
3546 case 'u':
3547 val /= 1e6; p += 2; break;
3548 case 'n':
3549 val /= 1e9; p += 2; break;
3550 }
3551 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003552 if (*p && !qemu_isspace(*p)) {
3553 monitor_printf(mon, "Unknown unit suffix\n");
3554 goto fail;
3555 }
3556 qdict_put(qdict, key, qfloat_from_double(val));
3557 }
3558 break;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01003559 case 'b':
3560 {
3561 const char *beg;
3562 int val;
3563
3564 while (qemu_isspace(*p)) {
3565 p++;
3566 }
3567 beg = p;
3568 while (qemu_isgraph(*p)) {
3569 p++;
3570 }
3571 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3572 val = 1;
3573 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3574 val = 0;
3575 } else {
3576 monitor_printf(mon, "Expected 'on' or 'off'\n");
3577 goto fail;
3578 }
3579 qdict_put(qdict, key, qbool_from_int(val));
3580 }
3581 break;
bellard9307c4c2004-04-04 12:57:25 +00003582 case '-':
3583 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003584 const char *tmp = p;
3585 int has_option, skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003586 /* option */
ths3b46e622007-09-17 08:09:54 +00003587
bellard9307c4c2004-04-04 12:57:25 +00003588 c = *typestr++;
3589 if (c == '\0')
3590 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003591 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003592 p++;
3593 has_option = 0;
3594 if (*p == '-') {
3595 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003596 if(c != *p) {
3597 if(!is_valid_option(p, typestr)) {
3598
3599 monitor_printf(mon, "%s: unsupported option -%c\n",
3600 cmdname, *p);
3601 goto fail;
3602 } else {
3603 skip_key = 1;
3604 }
bellard9307c4c2004-04-04 12:57:25 +00003605 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003606 if(skip_key) {
3607 p = tmp;
3608 } else {
3609 p++;
3610 has_option = 1;
3611 }
bellard9307c4c2004-04-04 12:57:25 +00003612 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003613 qdict_put(qdict, key, qint_from_int(has_option));
bellard9307c4c2004-04-04 12:57:25 +00003614 }
3615 break;
3616 default:
3617 bad_type:
aliguori376253e2009-03-05 23:01:23 +00003618 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00003619 goto fail;
3620 }
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003621 qemu_free(key);
3622 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003623 }
3624 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003625 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003626 p++;
3627 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003628 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3629 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00003630 goto fail;
3631 }
3632
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003633 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003634
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003635fail:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003636 qemu_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003637 return NULL;
3638}
3639
Markus Armbrusterd6f46832010-02-17 10:52:26 +01003640void monitor_set_error(Monitor *mon, QError *qerror)
3641{
3642 /* report only the first error */
3643 if (!mon->error) {
3644 mon->error = qerror;
3645 } else {
3646 MON_DEBUG("Additional error report at %s:%d\n",
3647 qerror->file, qerror->linenr);
3648 QDECREF(qerror);
3649 }
3650}
3651
Adam Litke940cc302010-01-25 12:18:44 -06003652static int is_async_return(const QObject *data)
3653{
Luiz Capitulino82617d72010-01-27 18:01:17 -02003654 if (data && qobject_type(data) == QTYPE_QDICT) {
3655 return qdict_haskey(qobject_to_qdict(data), "__mon_async");
3656 }
3657
3658 return 0;
Adam Litke940cc302010-01-25 12:18:44 -06003659}
3660
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003661static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3662{
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003663 if (monitor_ctrl_mode(mon)) {
3664 if (ret && !monitor_has_error(mon)) {
3665 /*
3666 * If it returns failure, it must have passed on error.
3667 *
3668 * Action: Report an internal error to the client if in QMP.
3669 */
Markus Armbrusterab5b0272010-03-02 18:15:09 +01003670 qerror_report(QERR_UNDEFINED_ERROR);
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003671 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
3672 cmd->name);
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003673 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003674
3675#ifdef CONFIG_DEBUG_MONITOR
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003676 if (!ret && monitor_has_error(mon)) {
3677 /*
3678 * If it returns success, it must not have passed an error.
3679 *
3680 * Action: Report the passed error to the client.
3681 */
3682 MON_DEBUG("command '%s' returned success but passed an error\n",
3683 cmd->name);
3684 }
Luiz Capitulino10e4f602010-02-10 23:50:06 -02003685
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003686 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
3687 /*
3688 * Handlers should not call Monitor print functions.
3689 *
3690 * Action: Ignore them in QMP.
3691 *
3692 * (XXX: we don't check any 'info' or 'query' command here
3693 * because the user print function _is_ called by do_info(), hence
3694 * we will trigger this check. This problem will go away when we
3695 * make 'query' commands real and kill do_info())
3696 */
3697 MON_DEBUG("command '%s' called print functions %d time(s)\n",
3698 cmd->name, mon_print_count_get(mon));
3699 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003700#endif
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003701 } else {
3702 assert(!monitor_has_error(mon));
3703 QDECREF(mon->error);
3704 mon->error = NULL;
3705 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003706}
3707
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003708static void monitor_call_handler(Monitor *mon, const mon_cmd_t *cmd,
3709 const QDict *params)
3710{
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003711 int ret;
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003712 QObject *data = NULL;
3713
Luiz Capitulino10e4f602010-02-10 23:50:06 -02003714 mon_print_count_init(mon);
3715
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003716 ret = cmd->mhandler.cmd_new(mon, params, &data);
3717 handler_audit(mon, cmd, ret);
Luiz Capitulino25b422e2009-11-26 22:58:59 -02003718
Adam Litke940cc302010-01-25 12:18:44 -06003719 if (is_async_return(data)) {
3720 /*
3721 * Asynchronous commands have no initial return data but they can
3722 * generate errors. Data is returned via the async completion handler.
3723 */
3724 if (monitor_ctrl_mode(mon) && monitor_has_error(mon)) {
3725 monitor_protocol_emitter(mon, NULL);
3726 }
3727 } else if (monitor_ctrl_mode(mon)) {
Luiz Capitulino25b422e2009-11-26 22:58:59 -02003728 /* Monitor Protocol */
3729 monitor_protocol_emitter(mon, data);
3730 } else {
3731 /* User Protocol */
3732 if (data)
3733 cmd->user_print(mon, data);
3734 }
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003735
3736 qobject_decref(data);
3737}
3738
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003739static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003740{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003741 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003742 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003743
3744 qdict = qdict_new();
3745
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03003746 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003747 if (!cmd)
3748 goto out;
3749
Adam Litke940cc302010-01-25 12:18:44 -06003750 if (monitor_handler_is_async(cmd)) {
3751 user_async_cmd_handler(mon, cmd, qdict);
3752 } else if (monitor_handler_ported(cmd)) {
Luiz Capitulino99e2fc12009-11-26 22:58:53 -02003753 monitor_call_handler(mon, cmd, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003754 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03003755 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003756 }
3757
Luiz Capitulino13917be2009-10-07 13:41:54 -03003758out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003759 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00003760}
3761
bellard81d09122004-07-14 17:21:37 +00003762static void cmd_completion(const char *name, const char *list)
3763{
3764 const char *p, *pstart;
3765 char cmd[128];
3766 int len;
3767
3768 p = list;
3769 for(;;) {
3770 pstart = p;
3771 p = strchr(p, '|');
3772 if (!p)
3773 p = pstart + strlen(pstart);
3774 len = p - pstart;
3775 if (len > sizeof(cmd) - 2)
3776 len = sizeof(cmd) - 2;
3777 memcpy(cmd, pstart, len);
3778 cmd[len] = '\0';
3779 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00003780 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00003781 }
3782 if (*p == '\0')
3783 break;
3784 p++;
3785 }
3786}
3787
3788static void file_completion(const char *input)
3789{
3790 DIR *ffs;
3791 struct dirent *d;
3792 char path[1024];
3793 char file[1024], file_prefix[1024];
3794 int input_path_len;
3795 const char *p;
3796
ths5fafdf22007-09-16 21:08:06 +00003797 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00003798 if (!p) {
3799 input_path_len = 0;
3800 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00003801 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00003802 } else {
3803 input_path_len = p - input + 1;
3804 memcpy(path, input, input_path_len);
3805 if (input_path_len > sizeof(path) - 1)
3806 input_path_len = sizeof(path) - 1;
3807 path[input_path_len] = '\0';
3808 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3809 }
3810#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00003811 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
3812 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00003813#endif
3814 ffs = opendir(path);
3815 if (!ffs)
3816 return;
3817 for(;;) {
3818 struct stat sb;
3819 d = readdir(ffs);
3820 if (!d)
3821 break;
3822 if (strstart(d->d_name, file_prefix, NULL)) {
3823 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00003824 if (input_path_len < sizeof(file))
3825 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3826 d->d_name);
bellard81d09122004-07-14 17:21:37 +00003827 /* stat the file to find out if it's a directory.
3828 * In that case add a slash to speed up typing long paths
3829 */
3830 stat(file, &sb);
3831 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00003832 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00003833 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00003834 }
3835 }
3836 closedir(ffs);
3837}
3838
aliguori51de9762009-03-05 23:00:43 +00003839static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00003840{
aliguori51de9762009-03-05 23:00:43 +00003841 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00003842 const char *input = opaque;
3843
3844 if (input[0] == '\0' ||
3845 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00003846 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00003847 }
3848}
3849
3850/* NOTE: this parser is an approximate form of the real command parser */
3851static void parse_cmdline(const char *cmdline,
3852 int *pnb_args, char **args)
3853{
3854 const char *p;
3855 int nb_args, ret;
3856 char buf[1024];
3857
3858 p = cmdline;
3859 nb_args = 0;
3860 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00003861 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00003862 p++;
3863 if (*p == '\0')
3864 break;
3865 if (nb_args >= MAX_ARGS)
3866 break;
3867 ret = get_str(buf, sizeof(buf), &p);
3868 args[nb_args] = qemu_strdup(buf);
3869 nb_args++;
3870 if (ret < 0)
3871 break;
3872 }
3873 *pnb_args = nb_args;
3874}
3875
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003876static const char *next_arg_type(const char *typestr)
3877{
3878 const char *p = strchr(typestr, ':');
3879 return (p != NULL ? ++p : typestr);
3880}
3881
aliguori4c36ba32009-03-05 23:01:37 +00003882static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00003883{
3884 const char *cmdname;
3885 char *args[MAX_ARGS];
3886 int nb_args, i, len;
3887 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05003888 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00003889 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00003890
3891 parse_cmdline(cmdline, &nb_args, args);
3892#ifdef DEBUG_COMPLETION
3893 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00003894 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00003895 }
3896#endif
3897
3898 /* if the line ends with a space, it means we want to complete the
3899 next arg */
3900 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00003901 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
bellard81d09122004-07-14 17:21:37 +00003902 if (nb_args >= MAX_ARGS)
3903 return;
3904 args[nb_args++] = qemu_strdup("");
3905 }
3906 if (nb_args <= 1) {
3907 /* command completion */
3908 if (nb_args == 0)
3909 cmdname = "";
3910 else
3911 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00003912 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00003913 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00003914 cmd_completion(cmdname, cmd->name);
3915 }
3916 } else {
3917 /* find the command */
aliguori376253e2009-03-05 23:01:23 +00003918 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00003919 if (compare_cmd(args[0], cmd->name))
3920 goto found;
3921 }
3922 return;
3923 found:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003924 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00003925 for(i = 0; i < nb_args - 2; i++) {
3926 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003927 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00003928 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003929 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00003930 }
3931 }
3932 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00003933 if (*ptype == '-' && ptype[1] != '\0') {
3934 ptype += 2;
3935 }
bellard81d09122004-07-14 17:21:37 +00003936 switch(*ptype) {
3937 case 'F':
3938 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00003939 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00003940 file_completion(str);
3941 break;
3942 case 'B':
3943 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00003944 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00003945 bdrv_iterate(block_completion_it, (void *)str);
3946 break;
bellard7fe48482004-10-09 18:08:01 +00003947 case 's':
3948 /* XXX: more generic ? */
3949 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00003950 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00003951 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
3952 cmd_completion(str, cmd->name);
3953 }
bellard64866c32006-05-07 18:03:31 +00003954 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00003955 char *sep = strrchr(str, '-');
3956 if (sep)
3957 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00003958 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00003959 for(key = key_defs; key->name != NULL; key++) {
3960 cmd_completion(str, key->name);
3961 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02003962 } else if (!strcmp(cmd->name, "help|?")) {
3963 readline_set_completion_index(cur_mon->rs, strlen(str));
3964 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
3965 cmd_completion(str, cmd->name);
3966 }
bellard7fe48482004-10-09 18:08:01 +00003967 }
3968 break;
bellard81d09122004-07-14 17:21:37 +00003969 default:
3970 break;
3971 }
3972 }
3973 for(i = 0; i < nb_args; i++)
3974 qemu_free(args[i]);
3975}
3976
aliguori731b0362009-03-05 23:01:42 +00003977static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00003978{
aliguori731b0362009-03-05 23:01:42 +00003979 Monitor *mon = opaque;
3980
Jan Kiszkac62313b2009-12-04 14:05:29 +01003981 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00003982}
3983
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02003984typedef struct CmdArgs {
3985 QString *name;
3986 int type;
3987 int flag;
3988 int optional;
3989} CmdArgs;
3990
3991static int check_opt(const CmdArgs *cmd_args, const char *name, QDict *args)
3992{
3993 if (!cmd_args->optional) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01003994 qerror_report(QERR_MISSING_PARAMETER, name);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02003995 return -1;
3996 }
3997
3998 if (cmd_args->type == '-') {
3999 /* handlers expect a value, they need to be changed */
4000 qdict_put(args, name, qint_from_int(0));
4001 }
4002
4003 return 0;
4004}
4005
4006static int check_arg(const CmdArgs *cmd_args, QDict *args)
4007{
4008 QObject *value;
4009 const char *name;
4010
4011 name = qstring_get_str(cmd_args->name);
4012
4013 if (!args) {
4014 return check_opt(cmd_args, name, args);
4015 }
4016
4017 value = qdict_get(args, name);
4018 if (!value) {
4019 return check_opt(cmd_args, name, args);
4020 }
4021
4022 switch (cmd_args->type) {
4023 case 'F':
4024 case 'B':
4025 case 's':
4026 if (qobject_type(value) != QTYPE_QSTRING) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004027 qerror_report(QERR_INVALID_PARAMETER_TYPE, name, "string");
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004028 return -1;
4029 }
4030 break;
4031 case '/': {
4032 int i;
4033 const char *keys[] = { "count", "format", "size", NULL };
4034
4035 for (i = 0; keys[i]; i++) {
4036 QObject *obj = qdict_get(args, keys[i]);
4037 if (!obj) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004038 qerror_report(QERR_MISSING_PARAMETER, name);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004039 return -1;
4040 }
4041 if (qobject_type(obj) != QTYPE_QINT) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004042 qerror_report(QERR_INVALID_PARAMETER_TYPE, name, "int");
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004043 return -1;
4044 }
4045 }
4046 break;
4047 }
4048 case 'i':
4049 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02004050 case 'M':
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004051 if (qobject_type(value) != QTYPE_QINT) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004052 qerror_report(QERR_INVALID_PARAMETER_TYPE, name, "int");
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004053 return -1;
4054 }
4055 break;
Markus Armbrusteree9545d2010-03-26 09:07:08 +01004056 case 'f':
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01004057 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01004058 if (qobject_type(value) != QTYPE_QINT && qobject_type(value) != QTYPE_QFLOAT) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004059 qerror_report(QERR_INVALID_PARAMETER_TYPE, name, "number");
Markus Armbruster3350a4d2010-01-25 14:23:03 +01004060 return -1;
4061 }
4062 break;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01004063 case 'b':
4064 if (qobject_type(value) != QTYPE_QBOOL) {
4065 qerror_report(QERR_INVALID_PARAMETER_TYPE, name, "bool");
4066 return -1;
4067 }
4068 break;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004069 case '-':
4070 if (qobject_type(value) != QTYPE_QINT &&
4071 qobject_type(value) != QTYPE_QBOOL) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004072 qerror_report(QERR_INVALID_PARAMETER_TYPE, name, "bool");
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004073 return -1;
4074 }
4075 if (qobject_type(value) == QTYPE_QBOOL) {
4076 /* handlers expect a QInt, they need to be changed */
4077 qdict_put(args, name,
4078 qint_from_int(qbool_get_int(qobject_to_qbool(value))));
4079 }
4080 break;
Markus Armbruster361127d2010-02-10 20:24:35 +01004081 case 'O':
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004082 default:
4083 /* impossible */
4084 abort();
4085 }
4086
4087 return 0;
4088}
4089
4090static void cmd_args_init(CmdArgs *cmd_args)
4091{
4092 cmd_args->name = qstring_new();
4093 cmd_args->type = cmd_args->flag = cmd_args->optional = 0;
4094}
4095
Markus Armbruster361127d2010-02-10 20:24:35 +01004096static int check_opts(QemuOptsList *opts_list, QDict *args)
4097{
4098 assert(!opts_list->desc->name);
4099 return 0;
4100}
4101
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004102/*
4103 * This is not trivial, we have to parse Monitor command's argument
4104 * type syntax to be able to check the arguments provided by clients.
4105 *
4106 * In the near future we will be using an array for that and will be
4107 * able to drop all this parsing...
4108 */
4109static int monitor_check_qmp_args(const mon_cmd_t *cmd, QDict *args)
4110{
4111 int err;
4112 const char *p;
4113 CmdArgs cmd_args;
Markus Armbruster361127d2010-02-10 20:24:35 +01004114 QemuOptsList *opts_list;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004115
Blue Swirldd5121b2009-12-04 20:52:02 +00004116 if (cmd->args_type == NULL) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004117 return (qdict_size(args) == 0 ? 0 : -1);
4118 }
4119
4120 err = 0;
4121 cmd_args_init(&cmd_args);
Markus Armbruster361127d2010-02-10 20:24:35 +01004122 opts_list = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004123
4124 for (p = cmd->args_type;; p++) {
4125 if (*p == ':') {
4126 cmd_args.type = *++p;
4127 p++;
4128 if (cmd_args.type == '-') {
4129 cmd_args.flag = *p++;
4130 cmd_args.optional = 1;
Markus Armbruster361127d2010-02-10 20:24:35 +01004131 } else if (cmd_args.type == 'O') {
4132 opts_list = qemu_find_opts(qstring_get_str(cmd_args.name));
4133 assert(opts_list);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004134 } else if (*p == '?') {
4135 cmd_args.optional = 1;
4136 p++;
4137 }
4138
4139 assert(*p == ',' || *p == '\0');
Markus Armbruster361127d2010-02-10 20:24:35 +01004140 if (opts_list) {
4141 err = check_opts(opts_list, args);
4142 opts_list = NULL;
4143 } else {
4144 err = check_arg(&cmd_args, args);
4145 QDECREF(cmd_args.name);
4146 cmd_args_init(&cmd_args);
4147 }
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004148
4149 if (err < 0) {
4150 break;
4151 }
4152 } else {
4153 qstring_append_chr(cmd_args.name, *p);
4154 }
4155
4156 if (*p == '\0') {
4157 break;
4158 }
4159 }
4160
4161 QDECREF(cmd_args.name);
4162 return err;
4163}
4164
Luiz Capitulino09069b12010-02-04 18:10:06 -02004165static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4166{
4167 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4168 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4169}
4170
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004171static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4172{
4173 int err;
4174 QObject *obj;
4175 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004176 const mon_cmd_t *cmd;
4177 Monitor *mon = cur_mon;
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004178 const char *cmd_name, *info_item;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004179
4180 args = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004181
4182 obj = json_parser_parse(tokens, NULL);
4183 if (!obj) {
4184 // FIXME: should be triggered in json_parser_parse()
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004185 qerror_report(QERR_JSON_PARSING);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004186 goto err_out;
4187 } else if (qobject_type(obj) != QTYPE_QDICT) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004188 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004189 qobject_decref(obj);
4190 goto err_out;
4191 }
4192
4193 input = qobject_to_qdict(obj);
4194
4195 mon->mc->id = qdict_get(input, "id");
4196 qobject_incref(mon->mc->id);
4197
4198 obj = qdict_get(input, "execute");
4199 if (!obj) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004200 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004201 goto err_input;
4202 } else if (qobject_type(obj) != QTYPE_QSTRING) {
Luiz Capitulino88f7db82010-04-07 14:49:37 -03004203 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute", "string");
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004204 goto err_input;
4205 }
4206
4207 cmd_name = qstring_get_str(qobject_to_qstring(obj));
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004208
Luiz Capitulino09069b12010-02-04 18:10:06 -02004209 if (invalid_qmp_mode(mon, cmd_name)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004210 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulino09069b12010-02-04 18:10:06 -02004211 goto err_input;
4212 }
4213
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004214 /*
4215 * XXX: We need this special case until we get info handlers
4216 * converted into 'query-' commands
4217 */
4218 if (compare_cmd(cmd_name, "info")) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004219 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004220 goto err_input;
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004221 } else if (strstart(cmd_name, "query-", &info_item)) {
4222 cmd = monitor_find_command("info");
4223 qdict_put_obj(input, "arguments",
4224 qobject_from_jsonf("{ 'item': %s }", info_item));
4225 } else {
4226 cmd = monitor_find_command(cmd_name);
Luiz Capitulino43e713c2009-12-18 13:24:59 -02004227 if (!cmd || !monitor_handler_ported(cmd)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004228 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004229 goto err_input;
4230 }
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004231 }
4232
4233 obj = qdict_get(input, "arguments");
4234 if (!obj) {
4235 args = qdict_new();
Luiz Capitulino04f8c052010-04-06 16:39:42 -03004236 } else if (qobject_type(obj) != QTYPE_QDICT) {
4237 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments", "object");
4238 goto err_input;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004239 } else {
4240 args = qobject_to_qdict(obj);
4241 QINCREF(args);
4242 }
4243
4244 QDECREF(input);
4245
4246 err = monitor_check_qmp_args(cmd, args);
4247 if (err < 0) {
4248 goto err_out;
4249 }
4250
Adam Litke940cc302010-01-25 12:18:44 -06004251 if (monitor_handler_is_async(cmd)) {
4252 qmp_async_cmd_handler(mon, cmd, args);
4253 } else {
4254 monitor_call_handler(mon, cmd, args);
4255 }
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004256 goto out;
4257
4258err_input:
4259 QDECREF(input);
4260err_out:
4261 monitor_protocol_emitter(mon, NULL);
4262out:
4263 QDECREF(args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004264}
4265
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004266/**
4267 * monitor_control_read(): Read and handle QMP input
4268 */
4269static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4270{
4271 Monitor *old_mon = cur_mon;
4272
4273 cur_mon = opaque;
4274
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004275 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004276
4277 cur_mon = old_mon;
4278}
4279
aliguori731b0362009-03-05 23:01:42 +00004280static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004281{
aliguori731b0362009-03-05 23:01:42 +00004282 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004283 int i;
aliguori376253e2009-03-05 23:01:23 +00004284
aliguori731b0362009-03-05 23:01:42 +00004285 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004286
aliguoricde76ee2009-03-05 23:01:51 +00004287 if (cur_mon->rs) {
4288 for (i = 0; i < size; i++)
4289 readline_handle_byte(cur_mon->rs, buf[i]);
4290 } else {
4291 if (size == 0 || buf[size - 1] != 0)
4292 monitor_printf(cur_mon, "corrupted command\n");
4293 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004294 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00004295 }
aliguori731b0362009-03-05 23:01:42 +00004296
4297 cur_mon = old_mon;
4298}
aliguorid8f44602008-10-06 13:52:44 +00004299
aliguori376253e2009-03-05 23:01:23 +00004300static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004301{
aliguori731b0362009-03-05 23:01:42 +00004302 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004303 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00004304 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00004305}
4306
aliguoricde76ee2009-03-05 23:01:51 +00004307int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004308{
aliguoricde76ee2009-03-05 23:01:51 +00004309 if (!mon->rs)
4310 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00004311 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00004312 return 0;
aliguorid8f44602008-10-06 13:52:44 +00004313}
4314
aliguori376253e2009-03-05 23:01:23 +00004315void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004316{
aliguoricde76ee2009-03-05 23:01:51 +00004317 if (!mon->rs)
4318 return;
aliguori731b0362009-03-05 23:01:42 +00004319 if (--mon->suspend_cnt == 0)
4320 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00004321}
4322
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004323static QObject *get_qmp_greeting(void)
4324{
4325 QObject *ver;
4326
4327 do_info_version(NULL, &ver);
4328 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4329}
4330
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004331/**
4332 * monitor_control_event(): Print QMP gretting
4333 */
4334static void monitor_control_event(void *opaque, int event)
4335{
Luiz Capitulino47116d12010-02-08 17:01:30 -02004336 QObject *data;
4337 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004338
Luiz Capitulino47116d12010-02-08 17:01:30 -02004339 switch (event) {
4340 case CHR_EVENT_OPENED:
Luiz Capitulino4a7e1192010-02-04 18:10:05 -02004341 mon->mc->command_mode = 0;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004342 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004343 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004344 monitor_json_emitter(mon, data);
4345 qobject_decref(data);
Luiz Capitulino47116d12010-02-08 17:01:30 -02004346 break;
4347 case CHR_EVENT_CLOSED:
4348 json_message_parser_destroy(&mon->mc->parser);
4349 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004350 }
4351}
4352
aliguori731b0362009-03-05 23:01:42 +00004353static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00004354{
aliguori376253e2009-03-05 23:01:23 +00004355 Monitor *mon = opaque;
4356
aliguori2724b182009-03-05 23:01:47 +00004357 switch (event) {
4358 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004359 mon->mux_out = 0;
4360 if (mon->reset_seen) {
4361 readline_restart(mon->rs);
4362 monitor_resume(mon);
4363 monitor_flush(mon);
4364 } else {
4365 mon->suspend_cnt = 0;
4366 }
aliguori2724b182009-03-05 23:01:47 +00004367 break;
ths86e94de2007-01-05 22:01:59 +00004368
aliguori2724b182009-03-05 23:01:47 +00004369 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004370 if (mon->reset_seen) {
4371 if (mon->suspend_cnt == 0) {
4372 monitor_printf(mon, "\n");
4373 }
4374 monitor_flush(mon);
4375 monitor_suspend(mon);
4376 } else {
4377 mon->suspend_cnt++;
4378 }
4379 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00004380 break;
4381
Amit Shahb6b8df52009-10-07 18:31:16 +05304382 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00004383 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4384 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004385 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00004386 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004387 }
4388 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00004389 break;
4390 }
ths86e94de2007-01-05 22:01:59 +00004391}
4392
aliguori76655d62009-03-06 20:27:37 +00004393
4394/*
4395 * Local variables:
4396 * c-indent-level: 4
4397 * c-basic-offset: 4
4398 * tab-width: 8
4399 * End:
4400 */
4401
aliguori731b0362009-03-05 23:01:42 +00004402void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004403{
aliguori731b0362009-03-05 23:01:42 +00004404 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00004405 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00004406
4407 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00004408 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00004409 is_first_init = 0;
4410 }
aliguori87127162009-03-05 23:01:29 +00004411
4412 mon = qemu_mallocz(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00004413
aliguori87127162009-03-05 23:01:29 +00004414 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00004415 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00004416 if (flags & MONITOR_USE_READLINE) {
4417 mon->rs = readline_init(mon, monitor_find_completion);
4418 monitor_read_command(mon, 0);
4419 }
aliguori87127162009-03-05 23:01:29 +00004420
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004421 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004422 mon->mc = qemu_mallocz(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004423 /* Control mode requires special handlers */
4424 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4425 monitor_control_event, mon);
4426 } else {
4427 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4428 monitor_event, mon);
4429 }
aliguori87127162009-03-05 23:01:29 +00004430
Blue Swirl72cf2d42009-09-12 07:36:22 +00004431 QLIST_INSERT_HEAD(&mon_list, mon, entry);
Markus Armbruster8631b602010-02-18 11:41:55 +01004432 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4433 default_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00004434}
4435
aliguori376253e2009-03-05 23:01:23 +00004436static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004437{
aliguoribb5fc202009-03-05 23:01:15 +00004438 BlockDriverState *bs = opaque;
4439 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00004440
aliguoribb5fc202009-03-05 23:01:15 +00004441 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00004442 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00004443 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00004444 }
aliguori731b0362009-03-05 23:01:42 +00004445 if (mon->password_completion_cb)
4446 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00004447
aliguori731b0362009-03-05 23:01:42 +00004448 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00004449}
aliguoric0f4ce72009-03-05 23:01:01 +00004450
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004451int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4452 BlockDriverCompletionFunc *completion_cb,
4453 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00004454{
aliguoricde76ee2009-03-05 23:01:51 +00004455 int err;
4456
aliguoribb5fc202009-03-05 23:01:15 +00004457 if (!bdrv_key_required(bs)) {
4458 if (completion_cb)
4459 completion_cb(opaque, 0);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004460 return 0;
aliguoribb5fc202009-03-05 23:01:15 +00004461 }
aliguoric0f4ce72009-03-05 23:01:01 +00004462
Luiz Capitulino94171e12009-12-07 21:37:00 +01004463 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004464 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004465 return -1;
Luiz Capitulino94171e12009-12-07 21:37:00 +01004466 }
4467
aliguori376253e2009-03-05 23:01:23 +00004468 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4469 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00004470
aliguori731b0362009-03-05 23:01:42 +00004471 mon->password_completion_cb = completion_cb;
4472 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00004473
aliguoricde76ee2009-03-05 23:01:51 +00004474 err = monitor_read_password(mon, bdrv_password_cb, bs);
4475
4476 if (err && completion_cb)
4477 completion_cb(opaque, err);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004478
4479 return err;
aliguoric0f4ce72009-03-05 23:01:01 +00004480}