blob: fbb678d78978a68312331dd984652ea24946b3c6 [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"
Paolo Bonzinia88790a2010-06-29 09:58:51 +020058#include "exec-all.h"
Prerna Saxena22890ab2010-06-24 17:04:53 +053059#ifdef CONFIG_SIMPLE_TRACE
60#include "trace.h"
61#endif
ths6a5bd302007-12-03 17:05:38 +000062
bellard9dc39cb2004-03-14 21:38:27 +000063//#define DEBUG
bellard81d09122004-07-14 17:21:37 +000064//#define DEBUG_COMPLETION
bellard9dc39cb2004-03-14 21:38:27 +000065
bellard9307c4c2004-04-04 12:57:25 +000066/*
67 * Supported types:
ths5fafdf22007-09-16 21:08:06 +000068 *
bellard9307c4c2004-04-04 12:57:25 +000069 * 'F' filename
bellard81d09122004-07-14 17:21:37 +000070 * 'B' block device name
bellard9307c4c2004-04-04 12:57:25 +000071 * 's' string (accept optional quote)
Markus Armbruster361127d2010-02-10 20:24:35 +010072 * 'O' option string of the form NAME=VALUE,...
73 * parsed according to QemuOptsList given by its name
74 * Example: 'device:O' uses qemu_device_opts.
75 * Restriction: only lists with empty desc are supported
76 * TODO lift the restriction
bellard92a31b12005-02-10 22:00:52 +000077 * 'i' 32 bit integer
78 * 'l' target long (32 or 64 bit)
Markus Armbruster9fec5432010-01-25 14:23:01 +010079 * 'M' just like 'l', except in user mode the value is
80 * multiplied by 2^20 (think Mebibyte)
Markus Armbrusteree9545d2010-03-26 09:07:08 +010081 * 'f' double
Markus Armbruster3350a4d2010-01-25 14:23:03 +010082 * user mode accepts an optional G, g, M, m, K, k suffix,
83 * which multiplies the value by 2^30 for suffixes G and
84 * g, 2^20 for M and m, 2^10 for K and k
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +010085 * 'T' double
86 * user mode accepts an optional ms, us, ns suffix,
87 * which divides the value by 1e3, 1e6, 1e9, respectively
bellard9307c4c2004-04-04 12:57:25 +000088 * '/' optional gdb-like print format (like "/10x")
89 *
Luiz Capitulinofb466602009-08-28 15:27:27 -030090 * '?' optional type (for all types, except '/')
91 * '.' other form of optional type (for 'i' and 'l')
Markus Armbruster942cd1f2010-03-26 09:07:09 +010092 * 'b' boolean
93 * user mode accepts "on" or "off"
Luiz Capitulinofb466602009-08-28 15:27:27 -030094 * '-' optional parameter (eg. '-f')
bellard9307c4c2004-04-04 12:57:25 +000095 *
96 */
97
Adam Litke940cc302010-01-25 12:18:44 -060098typedef struct MonitorCompletionData MonitorCompletionData;
99struct MonitorCompletionData {
100 Monitor *mon;
101 void (*user_print)(Monitor *mon, const QObject *data);
102};
103
Anthony Liguoric227f092009-10-01 16:12:16 -0500104typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +0000105 const char *name;
bellard9307c4c2004-04-04 12:57:25 +0000106 const char *args_type;
bellard9dc39cb2004-03-14 21:38:27 +0000107 const char *params;
108 const char *help;
Luiz Capitulinoa2876f52009-10-07 13:41:53 -0300109 void (*user_print)(Monitor *mon, const QObject *data);
Luiz Capitulino910df892009-10-07 13:41:51 -0300110 union {
111 void (*info)(Monitor *mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300112 void (*info_new)(Monitor *mon, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600113 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300114 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino261394d2010-02-10 23:50:02 -0200115 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600116 int (*cmd_async)(Monitor *mon, const QDict *params,
117 MonitorCompletion *cb, void *opaque);
Luiz Capitulino910df892009-10-07 13:41:51 -0300118 } mhandler;
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200119 int flags;
Anthony Liguoric227f092009-10-01 16:12:16 -0500120} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +0000121
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100122/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -0500123typedef struct mon_fd_t mon_fd_t;
124struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100125 char *name;
126 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -0500127 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100128};
129
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200130typedef struct MonitorControl {
131 QObject *id;
132 JSONMessageParser parser;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200133 int command_mode;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200134} MonitorControl;
135
aliguori87127162009-03-05 23:01:29 +0000136struct Monitor {
137 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200138 int mux_out;
139 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000140 int flags;
141 int suspend_cnt;
142 uint8_t outbuf[1024];
143 int outbuf_index;
144 ReadLineState *rs;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200145 MonitorControl *mc;
aliguori731b0362009-03-05 23:01:42 +0000146 CPUState *mon_cpu;
147 BlockDriverCompletionFunc *password_completion_cb;
148 void *password_opaque;
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200149#ifdef CONFIG_DEBUG_MONITOR
150 int print_calls_nr;
151#endif
Luiz Capitulino8204a912009-11-18 23:05:31 -0200152 QError *error;
Anthony Liguoric227f092009-10-01 16:12:16 -0500153 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000154 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000155};
156
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200157#ifdef CONFIG_DEBUG_MONITOR
158#define MON_DEBUG(fmt, ...) do { \
159 fprintf(stderr, "Monitor: "); \
160 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200161
162static inline void mon_print_count_inc(Monitor *mon)
163{
164 mon->print_calls_nr++;
165}
166
167static inline void mon_print_count_init(Monitor *mon)
168{
169 mon->print_calls_nr = 0;
170}
171
172static inline int mon_print_count_get(const Monitor *mon)
173{
174 return mon->print_calls_nr;
175}
176
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200177#else /* !CONFIG_DEBUG_MONITOR */
178#define MON_DEBUG(fmt, ...) do { } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200179static inline void mon_print_count_inc(Monitor *mon) { }
180static inline void mon_print_count_init(Monitor *mon) { }
181static inline int mon_print_count_get(const Monitor *mon) { return 0; }
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200182#endif /* CONFIG_DEBUG_MONITOR */
183
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -0300184/* QMP checker flags */
185#define QMP_ACCEPT_UNKNOWNS 1
186
Blue Swirl72cf2d42009-09-12 07:36:22 +0000187static QLIST_HEAD(mon_list, Monitor) mon_list;
bellard7e2515e2004-08-01 21:52:19 +0000188
Anthony Liguoric227f092009-10-01 16:12:16 -0500189static const mon_cmd_t mon_cmds[];
190static const mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000191
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300192static const mon_cmd_t qmp_cmds[];
Luiz Capitulino3e12a752010-09-15 17:20:33 -0300193static const mon_cmd_t qmp_query_cmds[];
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300194
Markus Armbruster8631b602010-02-18 11:41:55 +0100195Monitor *cur_mon;
196Monitor *default_mon;
aliguori376253e2009-03-05 23:01:23 +0000197
aliguori731b0362009-03-05 23:01:42 +0000198static void monitor_command_cb(Monitor *mon, const char *cmdline,
199 void *opaque);
aliguori83ab7952008-08-19 14:44:22 +0000200
Luiz Capitulino09069b12010-02-04 18:10:06 -0200201static inline int qmp_cmd_mode(const Monitor *mon)
202{
203 return (mon->mc ? mon->mc->command_mode : 0);
204}
205
Luiz Capitulino418173c2009-11-26 22:58:51 -0200206/* Return true if in control mode, false otherwise */
207static inline int monitor_ctrl_mode(const Monitor *mon)
208{
209 return (mon->flags & MONITOR_USE_CONTROL);
210}
211
Markus Armbruster6620d3c2010-02-11 17:05:43 +0100212/* Return non-zero iff we have a current monitor, and it is in QMP mode. */
213int monitor_cur_is_qmp(void)
214{
215 return cur_mon && monitor_ctrl_mode(cur_mon);
216}
217
aliguori731b0362009-03-05 23:01:42 +0000218static void monitor_read_command(Monitor *mon, int show_prompt)
219{
Luiz Capitulino183e6e52009-12-14 18:53:23 -0200220 if (!mon->rs)
221 return;
222
aliguori731b0362009-03-05 23:01:42 +0000223 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
224 if (show_prompt)
225 readline_show_prompt(mon->rs);
226}
bellard6a00d602005-11-21 23:25:50 +0000227
aliguoricde76ee2009-03-05 23:01:51 +0000228static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
229 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000230{
Luiz Capitulino94171e12009-12-07 21:37:00 +0100231 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100232 qerror_report(QERR_MISSING_PARAMETER, "password");
Luiz Capitulino94171e12009-12-07 21:37:00 +0100233 return -EINVAL;
234 } else if (mon->rs) {
aliguoricde76ee2009-03-05 23:01:51 +0000235 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
236 /* prompt is printed on return from the command handler */
237 return 0;
238 } else {
239 monitor_printf(mon, "terminal does not support password prompting\n");
240 return -ENOTTY;
241 }
aliguoribb5fc202009-03-05 23:01:15 +0000242}
243
aliguori376253e2009-03-05 23:01:23 +0000244void monitor_flush(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000245{
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200246 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
aliguori731b0362009-03-05 23:01:42 +0000247 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
248 mon->outbuf_index = 0;
bellard7e2515e2004-08-01 21:52:19 +0000249 }
250}
251
252/* flush at every end of line or if the buffer is full */
aliguori376253e2009-03-05 23:01:23 +0000253static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000254{
ths60fe76f2007-12-16 03:02:09 +0000255 char c;
aliguori731b0362009-03-05 23:01:42 +0000256
bellard7e2515e2004-08-01 21:52:19 +0000257 for(;;) {
258 c = *str++;
259 if (c == '\0')
260 break;
bellard7ba12602006-07-14 20:26:42 +0000261 if (c == '\n')
aliguori731b0362009-03-05 23:01:42 +0000262 mon->outbuf[mon->outbuf_index++] = '\r';
263 mon->outbuf[mon->outbuf_index++] = c;
264 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
265 || c == '\n')
aliguori376253e2009-03-05 23:01:23 +0000266 monitor_flush(mon);
bellard7e2515e2004-08-01 21:52:19 +0000267 }
268}
269
aliguori376253e2009-03-05 23:01:23 +0000270void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000271{
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200272 char buf[4096];
273
Luiz Capitulino2daa1192009-12-14 18:53:24 -0200274 if (!mon)
275 return;
276
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200277 mon_print_count_inc(mon);
278
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200279 if (monitor_ctrl_mode(mon)) {
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200280 return;
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200281 }
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200282
283 vsnprintf(buf, sizeof(buf), fmt, ap);
284 monitor_puts(mon, buf);
bellard7e2515e2004-08-01 21:52:19 +0000285}
286
aliguori376253e2009-03-05 23:01:23 +0000287void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000288{
289 va_list ap;
290 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000291 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000292 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000293}
294
aliguori376253e2009-03-05 23:01:23 +0000295void monitor_print_filename(Monitor *mon, const char *filename)
thsfef30742006-12-22 14:11:32 +0000296{
297 int i;
298
299 for (i = 0; filename[i]; i++) {
aliguori28a76be2009-03-06 20:27:40 +0000300 switch (filename[i]) {
301 case ' ':
302 case '"':
303 case '\\':
304 monitor_printf(mon, "\\%c", filename[i]);
305 break;
306 case '\t':
307 monitor_printf(mon, "\\t");
308 break;
309 case '\r':
310 monitor_printf(mon, "\\r");
311 break;
312 case '\n':
313 monitor_printf(mon, "\\n");
314 break;
315 default:
316 monitor_printf(mon, "%c", filename[i]);
317 break;
318 }
thsfef30742006-12-22 14:11:32 +0000319 }
320}
321
Stefan Weil8b7968f2010-09-23 21:28:05 +0200322static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
323 const char *fmt, ...)
bellard7fe48482004-10-09 18:08:01 +0000324{
325 va_list ap;
326 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000327 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000328 va_end(ap);
329 return 0;
330}
331
Luiz Capitulino13c74252009-10-07 13:41:55 -0300332static void monitor_user_noop(Monitor *mon, const QObject *data) { }
333
Luiz Capitulino9e807212010-09-16 10:58:59 -0300334static inline int handler_is_qobject(const mon_cmd_t *cmd)
Luiz Capitulino13917be2009-10-07 13:41:54 -0300335{
336 return cmd->user_print != NULL;
337}
338
Luiz Capitulino4903de02010-09-16 11:01:32 -0300339static inline bool handler_is_async(const mon_cmd_t *cmd)
Adam Litke940cc302010-01-25 12:18:44 -0600340{
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200341 return cmd->flags & MONITOR_CMD_ASYNC;
Adam Litke940cc302010-01-25 12:18:44 -0600342}
343
Luiz Capitulino8204a912009-11-18 23:05:31 -0200344static inline int monitor_has_error(const Monitor *mon)
345{
346 return mon->error != NULL;
347}
348
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200349static void monitor_json_emitter(Monitor *mon, const QObject *data)
350{
351 QString *json;
352
Daniel P. Berrange39eaab92010-06-07 15:42:31 +0100353 if (mon->flags & MONITOR_USE_PRETTY)
354 json = qobject_to_json_pretty(data);
355 else
356 json = qobject_to_json(data);
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200357 assert(json != NULL);
358
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200359 qstring_append_chr(json, '\n');
360 monitor_puts(mon, qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200361
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200362 QDECREF(json);
363}
364
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200365static void monitor_protocol_emitter(Monitor *mon, QObject *data)
366{
367 QDict *qmp;
368
369 qmp = qdict_new();
370
371 if (!monitor_has_error(mon)) {
372 /* success response */
373 if (data) {
374 qobject_incref(data);
375 qdict_put_obj(qmp, "return", data);
376 } else {
Luiz Capitulino0abc6572009-12-18 13:25:00 -0200377 /* return an empty QDict by default */
378 qdict_put(qmp, "return", qdict_new());
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200379 }
380 } else {
381 /* error response */
Markus Armbruster77e595e2009-12-07 21:37:16 +0100382 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200383 qdict_put(qmp, "error", mon->error->error);
384 QINCREF(mon->error->error);
385 QDECREF(mon->error);
386 mon->error = NULL;
387 }
388
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200389 if (mon->mc->id) {
390 qdict_put_obj(qmp, "id", mon->mc->id);
391 mon->mc->id = NULL;
392 }
393
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200394 monitor_json_emitter(mon, QOBJECT(qmp));
395 QDECREF(qmp);
396}
397
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200398static void timestamp_put(QDict *qdict)
399{
400 int err;
401 QObject *obj;
Blue Swirld08d6f02009-12-04 18:06:39 +0000402 qemu_timeval tv;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200403
Blue Swirld08d6f02009-12-04 18:06:39 +0000404 err = qemu_gettimeofday(&tv);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200405 if (err < 0)
406 return;
407
408 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
409 "'microseconds': %" PRId64 " }",
410 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200411 qdict_put_obj(qdict, "timestamp", obj);
412}
413
414/**
415 * monitor_protocol_event(): Generate a Monitor event
416 *
417 * Event-specific data can be emitted through the (optional) 'data' parameter.
418 */
419void monitor_protocol_event(MonitorEvent event, QObject *data)
420{
421 QDict *qmp;
422 const char *event_name;
Adam Litkef039a562010-01-15 08:34:02 -0600423 Monitor *mon;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200424
Blue Swirl242cd002009-12-04 18:05:45 +0000425 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200426
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200427 switch (event) {
Blue Swirl242cd002009-12-04 18:05:45 +0000428 case QEVENT_SHUTDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200429 event_name = "SHUTDOWN";
430 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000431 case QEVENT_RESET:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200432 event_name = "RESET";
433 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000434 case QEVENT_POWERDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200435 event_name = "POWERDOWN";
436 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000437 case QEVENT_STOP:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200438 event_name = "STOP";
439 break;
Luiz Capitulino6ed2c482010-04-27 20:35:59 -0300440 case QEVENT_RESUME:
441 event_name = "RESUME";
442 break;
Luiz Capitulino586153d2010-01-14 14:50:57 -0200443 case QEVENT_VNC_CONNECTED:
444 event_name = "VNC_CONNECTED";
445 break;
Luiz Capitulino0d2ed462010-01-14 14:50:59 -0200446 case QEVENT_VNC_INITIALIZED:
447 event_name = "VNC_INITIALIZED";
448 break;
Luiz Capitulino0d72f3d2010-01-14 14:50:58 -0200449 case QEVENT_VNC_DISCONNECTED:
450 event_name = "VNC_DISCONNECTED";
451 break;
Luiz Capitulinoaa1db6e2010-02-03 12:41:00 -0200452 case QEVENT_BLOCK_IO_ERROR:
453 event_name = "BLOCK_IO_ERROR";
454 break;
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300455 case QEVENT_RTC_CHANGE:
456 event_name = "RTC_CHANGE";
457 break;
Luiz Capitulino9eedeb32010-02-25 12:13:04 -0300458 case QEVENT_WATCHDOG:
459 event_name = "WATCHDOG";
460 break;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200461 default:
462 abort();
463 break;
464 }
465
466 qmp = qdict_new();
467 timestamp_put(qmp);
468 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200469 if (data) {
470 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200471 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200472 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200473
Adam Litkef039a562010-01-15 08:34:02 -0600474 QLIST_FOREACH(mon, &mon_list, entry) {
Luiz Capitulino09069b12010-02-04 18:10:06 -0200475 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
Luiz Capitulino23fabed2010-01-20 10:37:59 -0200476 monitor_json_emitter(mon, QOBJECT(qmp));
477 }
Adam Litkef039a562010-01-15 08:34:02 -0600478 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200479 QDECREF(qmp);
480}
481
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200482static int do_qmp_capabilities(Monitor *mon, const QDict *params,
483 QObject **ret_data)
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200484{
485 /* Will setup QMP capabilities in the future */
486 if (monitor_ctrl_mode(mon)) {
487 mon->mc->command_mode = 1;
488 }
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200489
490 return 0;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200491}
492
bellard9dc39cb2004-03-14 21:38:27 +0000493static int compare_cmd(const char *name, const char *list)
494{
495 const char *p, *pstart;
496 int len;
497 len = strlen(name);
498 p = list;
499 for(;;) {
500 pstart = p;
501 p = strchr(p, '|');
502 if (!p)
503 p = pstart + strlen(pstart);
504 if ((p - pstart) == len && !memcmp(pstart, name, len))
505 return 1;
506 if (*p == '\0')
507 break;
508 p++;
509 }
510 return 0;
511}
512
Anthony Liguoric227f092009-10-01 16:12:16 -0500513static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000514 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000515{
Anthony Liguoric227f092009-10-01 16:12:16 -0500516 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000517
518 for(cmd = cmds; cmd->name != NULL; cmd++) {
519 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000520 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
521 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000522 }
523}
524
aliguori376253e2009-03-05 23:01:23 +0000525static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000526{
527 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000528 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000529 } else {
aliguori376253e2009-03-05 23:01:23 +0000530 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000531 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000532 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000533 monitor_printf(mon, "Log items (comma separated):\n");
534 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000535 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000536 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000537 }
538 }
bellard9dc39cb2004-03-14 21:38:27 +0000539 }
540}
541
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300542static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300543{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300544 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300545}
546
Prerna Saxena22890ab2010-06-24 17:04:53 +0530547#ifdef CONFIG_SIMPLE_TRACE
548static void do_change_trace_event_state(Monitor *mon, const QDict *qdict)
549{
550 const char *tp_name = qdict_get_str(qdict, "name");
551 bool new_state = qdict_get_bool(qdict, "option");
552 st_change_trace_event_state(tp_name, new_state);
553}
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100554
555static void do_trace_file(Monitor *mon, const QDict *qdict)
556{
557 const char *op = qdict_get_try_str(qdict, "op");
558 const char *arg = qdict_get_try_str(qdict, "arg");
559
560 if (!op) {
561 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
562 } else if (!strcmp(op, "on")) {
563 st_set_trace_file_enabled(true);
564 } else if (!strcmp(op, "off")) {
565 st_set_trace_file_enabled(false);
566 } else if (!strcmp(op, "flush")) {
567 st_flush_trace_buffer();
568 } else if (!strcmp(op, "set")) {
569 if (arg) {
570 st_set_trace_file(arg);
571 }
572 } else {
573 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
574 help_cmd(mon, "trace-file");
575 }
576}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530577#endif
578
Adam Litke940cc302010-01-25 12:18:44 -0600579static void user_monitor_complete(void *opaque, QObject *ret_data)
580{
581 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
582
583 if (ret_data) {
584 data->user_print(data->mon, ret_data);
585 }
586 monitor_resume(data->mon);
587 qemu_free(data);
588}
589
590static void qmp_monitor_complete(void *opaque, QObject *ret_data)
591{
592 monitor_protocol_emitter(opaque, ret_data);
593}
594
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300595static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
596 const QDict *params)
Adam Litke940cc302010-01-25 12:18:44 -0600597{
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300598 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
Adam Litke940cc302010-01-25 12:18:44 -0600599}
600
601static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
602{
603 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
604}
605
606static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
607 const QDict *params)
608{
609 int ret;
610
611 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
612 cb_data->mon = mon;
613 cb_data->user_print = cmd->user_print;
614 monitor_suspend(mon);
615 ret = cmd->mhandler.cmd_async(mon, params,
616 user_monitor_complete, cb_data);
617 if (ret < 0) {
618 monitor_resume(mon);
619 qemu_free(cb_data);
620 }
621}
622
623static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
624{
625 int ret;
626
627 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
628 cb_data->mon = mon;
629 cb_data->user_print = cmd->user_print;
630 monitor_suspend(mon);
631 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
632 if (ret < 0) {
633 monitor_resume(mon);
634 qemu_free(cb_data);
635 }
636}
637
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300638static void do_info(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000639{
Anthony Liguoric227f092009-10-01 16:12:16 -0500640 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300641 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000642
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200643 if (!item) {
bellard9dc39cb2004-03-14 21:38:27 +0000644 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200645 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300646
647 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000648 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300649 break;
bellard9dc39cb2004-03-14 21:38:27 +0000650 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300651
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200652 if (cmd->name == NULL) {
Luiz Capitulino13c74252009-10-07 13:41:55 -0300653 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200654 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300655
Luiz Capitulino4903de02010-09-16 11:01:32 -0300656 if (handler_is_async(cmd)) {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300657 user_async_info_handler(mon, cmd);
Luiz Capitulino9e807212010-09-16 10:58:59 -0300658 } else if (handler_is_qobject(cmd)) {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300659 QObject *info_data = NULL;
Jan Kiszkaa6c4d362010-06-28 18:27:47 +0200660
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300661 cmd->mhandler.info_new(mon, &info_data);
662 if (info_data) {
663 cmd->user_print(mon, info_data);
664 qobject_decref(info_data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200665 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300666 } else {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300667 cmd->mhandler.info(mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300668 }
669
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300670 return;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300671
672help:
673 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000674}
675
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200676static void do_info_version_print(Monitor *mon, const QObject *data)
677{
678 QDict *qdict;
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300679 QDict *qemu;
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200680
681 qdict = qobject_to_qdict(data);
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300682 qemu = qdict_get_qdict(qdict, "qemu");
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200683
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300684 monitor_printf(mon, "%" PRId64 ".%" PRId64 ".%" PRId64 "%s\n",
685 qdict_get_int(qemu, "major"),
686 qdict_get_int(qemu, "minor"),
687 qdict_get_int(qemu, "micro"),
688 qdict_get_str(qdict, "package"));
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200689}
690
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300691static void do_info_version(Monitor *mon, QObject **ret_data)
bellard9bc9d1c2004-10-10 15:15:51 +0000692{
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300693 const char *version = QEMU_VERSION;
694 int major = 0, minor = 0, micro = 0;
695 char *tmp;
696
697 major = strtol(version, &tmp, 10);
698 tmp++;
699 minor = strtol(tmp, &tmp, 10);
700 tmp++;
701 micro = strtol(tmp, &tmp, 10);
702
703 *ret_data = qobject_from_jsonf("{ 'qemu': { 'major': %d, 'minor': %d, \
704 'micro': %d }, 'package': %s }", major, minor, micro, QEMU_PKGVERSION);
bellard9bc9d1c2004-10-10 15:15:51 +0000705}
706
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200707static void do_info_name_print(Monitor *mon, const QObject *data)
thsc35734b2007-03-19 15:17:08 +0000708{
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200709 QDict *qdict;
710
711 qdict = qobject_to_qdict(data);
712 if (qdict_size(qdict) == 0) {
713 return;
714 }
715
716 monitor_printf(mon, "%s\n", qdict_get_str(qdict, "name"));
717}
718
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200719static void do_info_name(Monitor *mon, QObject **ret_data)
720{
721 *ret_data = qemu_name ? qobject_from_jsonf("{'name': %s }", qemu_name) :
722 qobject_from_jsonf("{}");
thsc35734b2007-03-19 15:17:08 +0000723}
724
Luiz Capitulino1a728672009-12-10 17:15:56 -0200725static QObject *get_cmd_dict(const char *name)
726{
727 const char *p;
728
729 /* Remove '|' from some commands */
730 p = strchr(name, '|');
731 if (p) {
732 p++;
733 } else {
734 p = name;
735 }
736
737 return qobject_from_jsonf("{ 'name': %s }", p);
738}
739
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200740static void do_info_commands(Monitor *mon, QObject **ret_data)
741{
742 QList *cmd_list;
743 const mon_cmd_t *cmd;
744
745 cmd_list = qlist_new();
746
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300747 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino2e061a72010-09-16 10:36:54 -0300748 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200749 }
750
Luiz Capitulino3e12a752010-09-15 17:20:33 -0300751 for (cmd = qmp_query_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino2e061a72010-09-16 10:36:54 -0300752 char buf[128];
753 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
754 qlist_append_obj(cmd_list, get_cmd_dict(buf));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200755 }
756
757 *ret_data = QOBJECT(cmd_list);
758}
759
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200760static void do_info_uuid_print(Monitor *mon, const QObject *data)
blueswir1f1f23ad2008-09-18 18:30:20 +0000761{
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200762 monitor_printf(mon, "%s\n", qdict_get_str(qobject_to_qdict(data), "UUID"));
763}
764
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200765static void do_info_uuid(Monitor *mon, QObject **ret_data)
766{
767 char uuid[64];
768
769 snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1],
aliguori376253e2009-03-05 23:01:23 +0000770 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
771 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
772 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
773 qemu_uuid[14], qemu_uuid[15]);
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200774 *ret_data = qobject_from_jsonf("{ 'UUID': %s }", uuid);
thsa36e69d2007-12-02 05:18:19 +0000775}
776
bellard6a00d602005-11-21 23:25:50 +0000777/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000778static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000779{
780 CPUState *env;
781
782 for(env = first_cpu; env != NULL; env = env->next_cpu) {
783 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000784 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000785 return 0;
786 }
787 }
788 return -1;
789}
790
pbrook9596ebb2007-11-18 01:44:38 +0000791static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000792{
aliguori731b0362009-03-05 23:01:42 +0000793 if (!cur_mon->mon_cpu) {
bellard6a00d602005-11-21 23:25:50 +0000794 mon_set_cpu(0);
795 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300796 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000797 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000798}
799
aliguori376253e2009-03-05 23:01:23 +0000800static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000801{
bellard6a00d602005-11-21 23:25:50 +0000802 CPUState *env;
803 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +0000804#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000805 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000806 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000807#else
aliguori376253e2009-03-05 23:01:23 +0000808 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000809 0);
bellard9307c4c2004-04-04 12:57:25 +0000810#endif
811}
812
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300813static void print_cpu_iter(QObject *obj, void *opaque)
814{
815 QDict *cpu;
816 int active = ' ';
817 Monitor *mon = opaque;
818
819 assert(qobject_type(obj) == QTYPE_QDICT);
820 cpu = qobject_to_qdict(obj);
821
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200822 if (qdict_get_bool(cpu, "current")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300823 active = '*';
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200824 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300825
826 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
827
828#if defined(TARGET_I386)
829 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
830 (target_ulong) qdict_get_int(cpu, "pc"));
831#elif defined(TARGET_PPC)
832 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
833 (target_long) qdict_get_int(cpu, "nip"));
834#elif defined(TARGET_SPARC)
835 monitor_printf(mon, "pc=0x " TARGET_FMT_lx,
836 (target_long) qdict_get_int(cpu, "pc"));
837 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
838 (target_long) qdict_get_int(cpu, "npc"));
839#elif defined(TARGET_MIPS)
840 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
841 (target_long) qdict_get_int(cpu, "PC"));
842#endif
843
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200844 if (qdict_get_bool(cpu, "halted")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300845 monitor_printf(mon, " (halted)");
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200846 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300847
848 monitor_printf(mon, "\n");
849}
850
851static void monitor_print_cpus(Monitor *mon, const QObject *data)
852{
853 QList *cpu_list;
854
855 assert(qobject_type(data) == QTYPE_QLIST);
856 cpu_list = qobject_to_qlist(data);
857 qlist_iter(cpu_list, print_cpu_iter, mon);
858}
859
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300860static void do_info_cpus(Monitor *mon, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000861{
862 CPUState *env;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300863 QList *cpu_list;
864
865 cpu_list = qlist_new();
bellard6a00d602005-11-21 23:25:50 +0000866
867 /* just to set the default cpu if not already done */
868 mon_get_cpu();
869
870 for(env = first_cpu; env != NULL; env = env->next_cpu) {
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200871 QDict *cpu;
872 QObject *obj;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300873
Avi Kivity4c0960c2009-08-17 23:19:53 +0300874 cpu_synchronize_state(env);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300875
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200876 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
877 env->cpu_index, env == mon->mon_cpu,
878 env->halted);
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200879
880 cpu = qobject_to_qdict(obj);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300881
bellard6a00d602005-11-21 23:25:50 +0000882#if defined(TARGET_I386)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300883 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
bellarde80e1cc2005-11-23 22:05:28 +0000884#elif defined(TARGET_PPC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300885 qdict_put(cpu, "nip", qint_from_int(env->nip));
bellardba3c64f2005-12-05 20:31:52 +0000886#elif defined(TARGET_SPARC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300887 qdict_put(cpu, "pc", qint_from_int(env->pc));
888 qdict_put(cpu, "npc", qint_from_int(env->npc));
thsead93602007-09-06 00:18:15 +0000889#elif defined(TARGET_MIPS)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300890 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
bellardce5232c2008-05-28 17:14:10 +0000891#endif
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300892
893 qlist_append(cpu_list, cpu);
bellard6a00d602005-11-21 23:25:50 +0000894 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300895
896 *ret_data = QOBJECT(cpu_list);
bellard6a00d602005-11-21 23:25:50 +0000897}
898
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200899static int do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000900{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300901 int index = qdict_get_int(qdict, "index");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200902 if (mon_set_cpu(index) < 0) {
Markus Armbrustere17ba872010-03-25 17:22:36 +0100903 qerror_report(QERR_INVALID_PARAMETER_VALUE, "index",
904 "a CPU number");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200905 return -1;
906 }
907 return 0;
bellard6a00d602005-11-21 23:25:50 +0000908}
909
aliguori376253e2009-03-05 23:01:23 +0000910static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000911{
aliguori376253e2009-03-05 23:01:23 +0000912 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000913}
914
aliguori376253e2009-03-05 23:01:23 +0000915static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000916{
917 int i;
bellard7e2515e2004-08-01 21:52:19 +0000918 const char *str;
ths3b46e622007-09-17 08:09:54 +0000919
aliguoricde76ee2009-03-05 23:01:51 +0000920 if (!mon->rs)
921 return;
bellard7e2515e2004-08-01 21:52:19 +0000922 i = 0;
923 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000924 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000925 if (!str)
926 break;
aliguori376253e2009-03-05 23:01:23 +0000927 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000928 i++;
bellardaa455482004-04-04 13:07:25 +0000929 }
930}
931
j_mayer76a66252007-03-07 08:32:30 +0000932#if defined(TARGET_PPC)
933/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000934static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000935{
936 CPUState *env;
937
938 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000939 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000940}
941#endif
942
Prerna Saxena22890ab2010-06-24 17:04:53 +0530943#if defined(CONFIG_SIMPLE_TRACE)
944static void do_info_trace(Monitor *mon)
945{
946 st_print_trace((FILE *)mon, &monitor_fprintf);
947}
948
949static void do_info_trace_events(Monitor *mon)
950{
951 st_print_trace_events((FILE *)mon, &monitor_fprintf);
952}
953#endif
954
Luiz Capitulinob223f352009-10-07 13:41:56 -0300955/**
956 * do_quit(): Quit QEMU execution
957 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200958static int do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +0000959{
Luiz Capitulino39b59d22010-05-11 18:08:20 -0300960 monitor_suspend(mon);
961 no_shutdown = 0;
962 qemu_system_shutdown_request();
963
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200964 return 0;
bellard9dc39cb2004-03-14 21:38:27 +0000965}
966
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200967static int change_vnc_password(const char *password)
aliguoribb5fc202009-03-05 23:01:15 +0000968{
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200969 if (vnc_display_password(NULL, password) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100970 qerror_report(QERR_SET_PASSWD_FAILED);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200971 return -1;
972 }
aliguoribb5fc202009-03-05 23:01:15 +0000973
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200974 return 0;
Markus Armbruster2895e072009-12-07 21:37:01 +0100975}
976
977static void change_vnc_password_cb(Monitor *mon, const char *password,
978 void *opaque)
979{
Markus Armbrusterec3b82a2009-12-07 21:37:09 +0100980 change_vnc_password(password);
aliguori731b0362009-03-05 23:01:42 +0000981 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +0000982}
983
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200984static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
thse25a5822007-08-25 01:36:20 +0000985{
ths70848512007-08-25 01:37:05 +0000986 if (strcmp(target, "passwd") == 0 ||
aliguori28a76be2009-03-06 20:27:40 +0000987 strcmp(target, "password") == 0) {
988 if (arg) {
aliguoribb5fc202009-03-05 23:01:15 +0000989 char password[9];
aliguori28a76be2009-03-06 20:27:40 +0000990 strncpy(password, arg, sizeof(password));
991 password[sizeof(password) - 1] = '\0';
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200992 return change_vnc_password(password);
aliguoribb5fc202009-03-05 23:01:15 +0000993 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200994 return monitor_read_password(mon, change_vnc_password_cb, NULL);
aliguoribb5fc202009-03-05 23:01:15 +0000995 }
ths70848512007-08-25 01:37:05 +0000996 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200997 if (vnc_display_open(NULL, target) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100998 qerror_report(QERR_VNC_SERVER_FAILED, target);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -0200999 return -1;
1000 }
ths70848512007-08-25 01:37:05 +00001001 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001002
1003 return 0;
thse25a5822007-08-25 01:36:20 +00001004}
1005
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001006/**
1007 * do_change(): Change a removable medium, or VNC configuration
1008 */
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001009static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
thse25a5822007-08-25 01:36:20 +00001010{
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001011 const char *device = qdict_get_str(qdict, "device");
1012 const char *target = qdict_get_str(qdict, "target");
1013 const char *arg = qdict_get_try_str(qdict, "arg");
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001014 int ret;
1015
thse25a5822007-08-25 01:36:20 +00001016 if (strcmp(device, "vnc") == 0) {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001017 ret = do_change_vnc(mon, target, arg);
thse25a5822007-08-25 01:36:20 +00001018 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001019 ret = do_change_block(mon, device, target, arg);
thse25a5822007-08-25 01:36:20 +00001020 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001021
1022 return ret;
thse25a5822007-08-25 01:36:20 +00001023}
1024
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -03001025static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard59a983b2004-03-17 23:17:16 +00001026{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001027 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -03001028 return 0;
bellard59a983b2004-03-17 23:17:16 +00001029}
1030
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001031static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +00001032{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001033 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +00001034}
1035
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001036static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +00001037{
1038 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001039 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +00001040
bellard9307c4c2004-04-04 12:57:25 +00001041 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +00001042 mask = 0;
1043 } else {
bellard9307c4c2004-04-04 12:57:25 +00001044 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +00001045 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001046 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001047 return;
1048 }
1049 }
1050 cpu_set_log(mask);
1051}
1052
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001053static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001054{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001055 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001056 if (!option || !strcmp(option, "on")) {
1057 singlestep = 1;
1058 } else if (!strcmp(option, "off")) {
1059 singlestep = 0;
1060 } else {
1061 monitor_printf(mon, "unexpected option %s\n", option);
1062 }
1063}
1064
Luiz Capitulinoe0c97bd2009-10-07 13:41:57 -03001065/**
1066 * do_stop(): Stop VM execution
1067 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001068static int do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard8a7ddc32004-03-31 19:00:16 +00001069{
1070 vm_stop(EXCP_INTERRUPT);
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001071 return 0;
bellard8a7ddc32004-03-31 19:00:16 +00001072}
1073
aliguoribb5fc202009-03-05 23:01:15 +00001074static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
aliguoric0f4ce72009-03-05 23:01:01 +00001075
aliguori376253e2009-03-05 23:01:23 +00001076struct bdrv_iterate_context {
1077 Monitor *mon;
1078 int err;
1079};
aliguoric0f4ce72009-03-05 23:01:01 +00001080
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001081/**
1082 * do_cont(): Resume emulation.
1083 */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001084static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
aliguori376253e2009-03-05 23:01:23 +00001085{
1086 struct bdrv_iterate_context context = { mon, 0 };
1087
Amit Shah8e848652010-07-27 15:49:19 +05301088 if (incoming_expected) {
1089 qerror_report(QERR_MIGRATION_EXPECTED);
1090 return -1;
1091 }
aliguori376253e2009-03-05 23:01:23 +00001092 bdrv_iterate(encrypted_bdrv_it, &context);
aliguoric0f4ce72009-03-05 23:01:01 +00001093 /* only resume the vm if all keys are set and valid */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001094 if (!context.err) {
aliguoric0f4ce72009-03-05 23:01:01 +00001095 vm_start();
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001096 return 0;
1097 } else {
1098 return -1;
1099 }
bellard8a7ddc32004-03-31 19:00:16 +00001100}
1101
aliguoribb5fc202009-03-05 23:01:15 +00001102static void bdrv_key_cb(void *opaque, int err)
1103{
aliguori376253e2009-03-05 23:01:23 +00001104 Monitor *mon = opaque;
1105
aliguoribb5fc202009-03-05 23:01:15 +00001106 /* another key was set successfully, retry to continue */
1107 if (!err)
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001108 do_cont(mon, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001109}
1110
1111static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1112{
aliguori376253e2009-03-05 23:01:23 +00001113 struct bdrv_iterate_context *context = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00001114
aliguori376253e2009-03-05 23:01:23 +00001115 if (!context->err && bdrv_key_required(bs)) {
1116 context->err = -EBUSY;
1117 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1118 context->mon);
aliguoribb5fc202009-03-05 23:01:15 +00001119 }
1120}
1121
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001122static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001123{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001124 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001125 if (!device)
1126 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1127 if (gdbserver_start(device) < 0) {
1128 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1129 device);
1130 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001131 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001132 } else {
aliguori59030a82009-04-05 18:43:41 +00001133 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1134 device);
bellard8a7ddc32004-03-31 19:00:16 +00001135 }
1136}
1137
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001138static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001139{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001140 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001141 if (select_watchdog_action(action) == -1) {
1142 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1143 }
1144}
1145
aliguori376253e2009-03-05 23:01:23 +00001146static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001147{
aliguori376253e2009-03-05 23:01:23 +00001148 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001149 switch(c) {
1150 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001151 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001152 break;
1153 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001154 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001155 break;
1156 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001157 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001158 break;
1159 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001160 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001161 break;
1162 default:
1163 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001164 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001165 } else {
aliguori376253e2009-03-05 23:01:23 +00001166 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001167 }
1168 break;
1169 }
aliguori376253e2009-03-05 23:01:23 +00001170 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001171}
1172
aliguori376253e2009-03-05 23:01:23 +00001173static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -05001174 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001175{
bellard6a00d602005-11-21 23:25:50 +00001176 CPUState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +00001177 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001178 uint8_t buf[16];
1179 uint64_t v;
1180
1181 if (format == 'i') {
1182 int flags;
1183 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001184 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +00001185#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001186 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001187 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001188 } else if (wsize == 4) {
1189 flags = 0;
1190 } else {
bellard6a15fd12006-04-12 21:07:07 +00001191 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001192 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001193 if (env) {
1194#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001195 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001196 (env->segs[R_CS].flags & DESC_L_MASK))
1197 flags = 2;
1198 else
1199#endif
1200 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1201 flags = 1;
1202 }
bellard4c27ba22004-04-25 18:05:08 +00001203 }
1204#endif
aliguori376253e2009-03-05 23:01:23 +00001205 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001206 return;
1207 }
1208
1209 len = wsize * count;
1210 if (wsize == 1)
1211 line_size = 8;
1212 else
1213 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001214 max_digits = 0;
1215
1216 switch(format) {
1217 case 'o':
1218 max_digits = (wsize * 8 + 2) / 3;
1219 break;
1220 default:
1221 case 'x':
1222 max_digits = (wsize * 8) / 4;
1223 break;
1224 case 'u':
1225 case 'd':
1226 max_digits = (wsize * 8 * 10 + 32) / 33;
1227 break;
1228 case 'c':
1229 wsize = 1;
1230 break;
1231 }
1232
1233 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001234 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001235 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001236 else
aliguori376253e2009-03-05 23:01:23 +00001237 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001238 l = len;
1239 if (l > line_size)
1240 l = line_size;
1241 if (is_physical) {
1242 cpu_physical_memory_rw(addr, buf, l, 0);
1243 } else {
bellard6a00d602005-11-21 23:25:50 +00001244 env = mon_get_cpu();
aliguoric8f79b62008-08-18 14:00:20 +00001245 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001246 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001247 break;
1248 }
bellard9307c4c2004-04-04 12:57:25 +00001249 }
ths5fafdf22007-09-16 21:08:06 +00001250 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001251 while (i < l) {
1252 switch(wsize) {
1253 default:
1254 case 1:
1255 v = ldub_raw(buf + i);
1256 break;
1257 case 2:
1258 v = lduw_raw(buf + i);
1259 break;
1260 case 4:
bellard92a31b12005-02-10 22:00:52 +00001261 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001262 break;
1263 case 8:
1264 v = ldq_raw(buf + i);
1265 break;
1266 }
aliguori376253e2009-03-05 23:01:23 +00001267 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001268 switch(format) {
1269 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001270 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001271 break;
1272 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001273 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001274 break;
1275 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001276 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001277 break;
1278 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001279 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001280 break;
1281 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001282 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001283 break;
1284 }
1285 i += wsize;
1286 }
aliguori376253e2009-03-05 23:01:23 +00001287 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001288 addr += l;
1289 len -= l;
1290 }
1291}
1292
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001293static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001294{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001295 int count = qdict_get_int(qdict, "count");
1296 int format = qdict_get_int(qdict, "format");
1297 int size = qdict_get_int(qdict, "size");
1298 target_long addr = qdict_get_int(qdict, "addr");
1299
aliguori376253e2009-03-05 23:01:23 +00001300 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001301}
1302
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001303static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001304{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001305 int count = qdict_get_int(qdict, "count");
1306 int format = qdict_get_int(qdict, "format");
1307 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001308 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001309
aliguori376253e2009-03-05 23:01:23 +00001310 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001311}
1312
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001313static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001314{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001315 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001316 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001317
blueswir17743e582007-09-24 18:39:04 +00001318#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +00001319 switch(format) {
1320 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001321 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +00001322 break;
1323 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001324 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +00001325 break;
1326 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001327 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +00001328 break;
1329 default:
1330 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001331 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +00001332 break;
1333 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001334 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001335 break;
1336 }
bellard92a31b12005-02-10 22:00:52 +00001337#else
1338 switch(format) {
1339 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001340 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +00001341 break;
1342 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001343 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +00001344 break;
1345 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001346 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +00001347 break;
1348 default:
1349 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001350 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +00001351 break;
1352 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001353 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +00001354 break;
1355 }
1356#endif
aliguori376253e2009-03-05 23:01:23 +00001357 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001358}
1359
Luiz Capitulino98696222010-02-10 23:49:58 -02001360static int do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellardb371dc52007-01-03 15:20:39 +00001361{
1362 FILE *f;
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001363 uint32_t size = qdict_get_int(qdict, "size");
1364 const char *filename = qdict_get_str(qdict, "filename");
1365 target_long addr = qdict_get_int(qdict, "val");
bellardb371dc52007-01-03 15:20:39 +00001366 uint32_t l;
1367 CPUState *env;
1368 uint8_t buf[1024];
Luiz Capitulino98696222010-02-10 23:49:58 -02001369 int ret = -1;
bellardb371dc52007-01-03 15:20:39 +00001370
1371 env = mon_get_cpu();
bellardb371dc52007-01-03 15:20:39 +00001372
1373 f = fopen(filename, "wb");
1374 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001375 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulino98696222010-02-10 23:49:58 -02001376 return -1;
bellardb371dc52007-01-03 15:20:39 +00001377 }
1378 while (size != 0) {
1379 l = sizeof(buf);
1380 if (l > size)
1381 l = size;
1382 cpu_memory_rw_debug(env, addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001383 if (fwrite(buf, 1, l, f) != l) {
1384 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1385 goto exit;
1386 }
bellardb371dc52007-01-03 15:20:39 +00001387 addr += l;
1388 size -= l;
1389 }
Luiz Capitulino98696222010-02-10 23:49:58 -02001390
1391 ret = 0;
1392
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001393exit:
bellardb371dc52007-01-03 15:20:39 +00001394 fclose(f);
Luiz Capitulino98696222010-02-10 23:49:58 -02001395 return ret;
bellardb371dc52007-01-03 15:20:39 +00001396}
1397
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001398static int do_physical_memory_save(Monitor *mon, const QDict *qdict,
Luiz Capitulino18f5a8b2009-10-16 12:23:44 -03001399 QObject **ret_data)
aurel32a8bdf7a2008-04-11 21:36:14 +00001400{
1401 FILE *f;
1402 uint32_t l;
1403 uint8_t buf[1024];
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001404 uint32_t size = qdict_get_int(qdict, "size");
1405 const char *filename = qdict_get_str(qdict, "filename");
Anthony Liguoric227f092009-10-01 16:12:16 -05001406 target_phys_addr_t addr = qdict_get_int(qdict, "val");
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001407 int ret = -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001408
1409 f = fopen(filename, "wb");
1410 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001411 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001412 return -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001413 }
1414 while (size != 0) {
1415 l = sizeof(buf);
1416 if (l > size)
1417 l = size;
1418 cpu_physical_memory_rw(addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001419 if (fwrite(buf, 1, l, f) != l) {
1420 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1421 goto exit;
1422 }
aurel32a8bdf7a2008-04-11 21:36:14 +00001423 fflush(f);
1424 addr += l;
1425 size -= l;
1426 }
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001427
1428 ret = 0;
1429
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001430exit:
aurel32a8bdf7a2008-04-11 21:36:14 +00001431 fclose(f);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001432 return ret;
aurel32a8bdf7a2008-04-11 21:36:14 +00001433}
1434
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001435static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001436{
1437 uint32_t addr;
1438 uint8_t buf[1];
1439 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001440 uint32_t start = qdict_get_int(qdict, "start");
1441 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001442
1443 sum = 0;
1444 for(addr = start; addr < (start + size); addr++) {
1445 cpu_physical_memory_rw(addr, buf, 1, 0);
1446 /* BSD sum algorithm ('sum' Unix command) */
1447 sum = (sum >> 1) | (sum << 15);
1448 sum += buf[0];
1449 }
aliguori376253e2009-03-05 23:01:23 +00001450 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001451}
1452
bellarda3a91a32004-06-04 11:06:21 +00001453typedef struct {
1454 int keycode;
1455 const char *name;
1456} KeyDef;
1457
1458static const KeyDef key_defs[] = {
1459 { 0x2a, "shift" },
1460 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +00001461
bellarda3a91a32004-06-04 11:06:21 +00001462 { 0x38, "alt" },
1463 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +00001464 { 0x64, "altgr" },
1465 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +00001466 { 0x1d, "ctrl" },
1467 { 0x9d, "ctrl_r" },
1468
1469 { 0xdd, "menu" },
1470
1471 { 0x01, "esc" },
1472
1473 { 0x02, "1" },
1474 { 0x03, "2" },
1475 { 0x04, "3" },
1476 { 0x05, "4" },
1477 { 0x06, "5" },
1478 { 0x07, "6" },
1479 { 0x08, "7" },
1480 { 0x09, "8" },
1481 { 0x0a, "9" },
1482 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +00001483 { 0x0c, "minus" },
1484 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +00001485 { 0x0e, "backspace" },
1486
1487 { 0x0f, "tab" },
1488 { 0x10, "q" },
1489 { 0x11, "w" },
1490 { 0x12, "e" },
1491 { 0x13, "r" },
1492 { 0x14, "t" },
1493 { 0x15, "y" },
1494 { 0x16, "u" },
1495 { 0x17, "i" },
1496 { 0x18, "o" },
1497 { 0x19, "p" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001498 { 0x1a, "bracket_left" },
1499 { 0x1b, "bracket_right" },
bellarda3a91a32004-06-04 11:06:21 +00001500 { 0x1c, "ret" },
1501
1502 { 0x1e, "a" },
1503 { 0x1f, "s" },
1504 { 0x20, "d" },
1505 { 0x21, "f" },
1506 { 0x22, "g" },
1507 { 0x23, "h" },
1508 { 0x24, "j" },
1509 { 0x25, "k" },
1510 { 0x26, "l" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001511 { 0x27, "semicolon" },
1512 { 0x28, "apostrophe" },
1513 { 0x29, "grave_accent" },
bellarda3a91a32004-06-04 11:06:21 +00001514
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001515 { 0x2b, "backslash" },
bellarda3a91a32004-06-04 11:06:21 +00001516 { 0x2c, "z" },
1517 { 0x2d, "x" },
1518 { 0x2e, "c" },
1519 { 0x2f, "v" },
1520 { 0x30, "b" },
1521 { 0x31, "n" },
1522 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +00001523 { 0x33, "comma" },
1524 { 0x34, "dot" },
1525 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +00001526
balrog4d3b6f62008-02-10 16:33:14 +00001527 { 0x37, "asterisk" },
1528
bellarda3a91a32004-06-04 11:06:21 +00001529 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +00001530 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001531 { 0x3b, "f1" },
1532 { 0x3c, "f2" },
1533 { 0x3d, "f3" },
1534 { 0x3e, "f4" },
1535 { 0x3f, "f5" },
1536 { 0x40, "f6" },
1537 { 0x41, "f7" },
1538 { 0x42, "f8" },
1539 { 0x43, "f9" },
1540 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +00001541 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001542 { 0x46, "scroll_lock" },
1543
bellard64866c32006-05-07 18:03:31 +00001544 { 0xb5, "kp_divide" },
1545 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +00001546 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +00001547 { 0x4e, "kp_add" },
1548 { 0x9c, "kp_enter" },
1549 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +00001550 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +00001551
1552 { 0x52, "kp_0" },
1553 { 0x4f, "kp_1" },
1554 { 0x50, "kp_2" },
1555 { 0x51, "kp_3" },
1556 { 0x4b, "kp_4" },
1557 { 0x4c, "kp_5" },
1558 { 0x4d, "kp_6" },
1559 { 0x47, "kp_7" },
1560 { 0x48, "kp_8" },
1561 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +00001562
bellarda3a91a32004-06-04 11:06:21 +00001563 { 0x56, "<" },
1564
1565 { 0x57, "f11" },
1566 { 0x58, "f12" },
1567
1568 { 0xb7, "print" },
1569
1570 { 0xc7, "home" },
1571 { 0xc9, "pgup" },
1572 { 0xd1, "pgdn" },
1573 { 0xcf, "end" },
1574
1575 { 0xcb, "left" },
1576 { 0xc8, "up" },
1577 { 0xd0, "down" },
1578 { 0xcd, "right" },
1579
1580 { 0xd2, "insert" },
1581 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001582#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1583 { 0xf0, "stop" },
1584 { 0xf1, "again" },
1585 { 0xf2, "props" },
1586 { 0xf3, "undo" },
1587 { 0xf4, "front" },
1588 { 0xf5, "copy" },
1589 { 0xf6, "open" },
1590 { 0xf7, "paste" },
1591 { 0xf8, "find" },
1592 { 0xf9, "cut" },
1593 { 0xfa, "lf" },
1594 { 0xfb, "help" },
1595 { 0xfc, "meta_l" },
1596 { 0xfd, "meta_r" },
1597 { 0xfe, "compose" },
1598#endif
bellarda3a91a32004-06-04 11:06:21 +00001599 { 0, NULL },
1600};
1601
1602static int get_keycode(const char *key)
1603{
1604 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001605 char *endp;
1606 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001607
1608 for(p = key_defs; p->name != NULL; p++) {
1609 if (!strcmp(key, p->name))
1610 return p->keycode;
1611 }
bellard64866c32006-05-07 18:03:31 +00001612 if (strstart(key, "0x", NULL)) {
1613 ret = strtoul(key, &endp, 0);
1614 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1615 return ret;
1616 }
bellarda3a91a32004-06-04 11:06:21 +00001617 return -1;
1618}
1619
balrogc8256f92008-06-08 22:45:01 +00001620#define MAX_KEYCODES 16
1621static uint8_t keycodes[MAX_KEYCODES];
1622static int nb_pending_keycodes;
1623static QEMUTimer *key_timer;
1624
1625static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001626{
balrogc8256f92008-06-08 22:45:01 +00001627 int keycode;
1628
1629 while (nb_pending_keycodes > 0) {
1630 nb_pending_keycodes--;
1631 keycode = keycodes[nb_pending_keycodes];
1632 if (keycode & 0x80)
1633 kbd_put_keycode(0xe0);
1634 kbd_put_keycode(keycode | 0x80);
1635 }
1636}
1637
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001638static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001639{
balrog3401c0d2008-06-04 10:05:59 +00001640 char keyname_buf[16];
1641 char *separator;
1642 int keyname_len, keycode, i;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001643 const char *string = qdict_get_str(qdict, "string");
1644 int has_hold_time = qdict_haskey(qdict, "hold_time");
1645 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
ths3b46e622007-09-17 08:09:54 +00001646
balrogc8256f92008-06-08 22:45:01 +00001647 if (nb_pending_keycodes > 0) {
1648 qemu_del_timer(key_timer);
1649 release_keys(NULL);
1650 }
1651 if (!has_hold_time)
1652 hold_time = 100;
1653 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001654 while (1) {
1655 separator = strchr(string, '-');
1656 keyname_len = separator ? separator - string : strlen(string);
1657 if (keyname_len > 0) {
1658 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1659 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001660 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001661 return;
bellarda3a91a32004-06-04 11:06:21 +00001662 }
balrogc8256f92008-06-08 22:45:01 +00001663 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001664 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001665 return;
1666 }
1667 keyname_buf[keyname_len] = 0;
1668 keycode = get_keycode(keyname_buf);
1669 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001670 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001671 return;
1672 }
balrogc8256f92008-06-08 22:45:01 +00001673 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001674 }
balrog3401c0d2008-06-04 10:05:59 +00001675 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001676 break;
balrog3401c0d2008-06-04 10:05:59 +00001677 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001678 }
balrogc8256f92008-06-08 22:45:01 +00001679 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001680 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001681 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001682 keycode = keycodes[i];
1683 if (keycode & 0x80)
1684 kbd_put_keycode(0xe0);
1685 kbd_put_keycode(keycode & 0x7f);
1686 }
balrogc8256f92008-06-08 22:45:01 +00001687 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +00001688 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001689 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001690}
1691
bellard13224a82006-07-14 22:03:35 +00001692static int mouse_button_state;
1693
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001694static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001695{
1696 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001697 const char *dx_str = qdict_get_str(qdict, "dx_str");
1698 const char *dy_str = qdict_get_str(qdict, "dy_str");
1699 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001700 dx = strtol(dx_str, NULL, 0);
1701 dy = strtol(dy_str, NULL, 0);
1702 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001703 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001704 dz = strtol(dz_str, NULL, 0);
1705 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1706}
1707
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001708static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001709{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001710 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001711 mouse_button_state = button_state;
1712 kbd_mouse_event(0, 0, 0, mouse_button_state);
1713}
1714
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001715static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001716{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001717 int size = qdict_get_int(qdict, "size");
1718 int addr = qdict_get_int(qdict, "addr");
1719 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001720 uint32_t val;
1721 int suffix;
1722
1723 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001724 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001725 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001726 addr++;
1727 }
1728 addr &= 0xffff;
1729
1730 switch(size) {
1731 default:
1732 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001733 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001734 suffix = 'b';
1735 break;
1736 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001737 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001738 suffix = 'w';
1739 break;
1740 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001741 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001742 suffix = 'l';
1743 break;
1744 }
aliguori376253e2009-03-05 23:01:23 +00001745 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1746 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001747}
bellarda3a91a32004-06-04 11:06:21 +00001748
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001749static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001750{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001751 int size = qdict_get_int(qdict, "size");
1752 int addr = qdict_get_int(qdict, "addr");
1753 int val = qdict_get_int(qdict, "val");
1754
Jan Kiszkaf1147842009-07-14 10:20:11 +02001755 addr &= IOPORTS_MASK;
1756
1757 switch (size) {
1758 default:
1759 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001760 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001761 break;
1762 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001763 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001764 break;
1765 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001766 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001767 break;
1768 }
1769}
1770
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001771static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001772{
1773 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001774 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001775
Jan Kiszka76e30d02009-07-02 00:19:02 +02001776 res = qemu_boot_set(bootdevice);
1777 if (res == 0) {
1778 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1779 } else if (res > 0) {
1780 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001781 } else {
aliguori376253e2009-03-05 23:01:23 +00001782 monitor_printf(mon, "no function defined to set boot device list for "
1783 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001784 }
1785}
1786
Luiz Capitulinoc80d2592009-10-07 13:41:58 -03001787/**
1788 * do_system_reset(): Issue a machine reset
1789 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001790static int do_system_reset(Monitor *mon, const QDict *qdict,
1791 QObject **ret_data)
bellarde4f90822004-06-20 12:35:44 +00001792{
1793 qemu_system_reset_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001794 return 0;
bellarde4f90822004-06-20 12:35:44 +00001795}
1796
Luiz Capitulino43076662009-10-07 13:41:59 -03001797/**
1798 * do_system_powerdown(): Issue a machine powerdown
1799 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001800static int do_system_powerdown(Monitor *mon, const QDict *qdict,
1801 QObject **ret_data)
bellard34751872005-07-02 14:31:34 +00001802{
1803 qemu_system_powerdown_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001804 return 0;
bellard34751872005-07-02 14:31:34 +00001805}
1806
bellardb86bda52004-09-18 19:32:46 +00001807#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +00001808static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
bellardb86bda52004-09-18 19:32:46 +00001809{
aliguori376253e2009-03-05 23:01:23 +00001810 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1811 addr,
1812 pte & mask,
1813 pte & PG_GLOBAL_MASK ? 'G' : '-',
1814 pte & PG_PSE_MASK ? 'P' : '-',
1815 pte & PG_DIRTY_MASK ? 'D' : '-',
1816 pte & PG_ACCESSED_MASK ? 'A' : '-',
1817 pte & PG_PCD_MASK ? 'C' : '-',
1818 pte & PG_PWT_MASK ? 'T' : '-',
1819 pte & PG_USER_MASK ? 'U' : '-',
1820 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001821}
1822
aliguori376253e2009-03-05 23:01:23 +00001823static void tlb_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001824{
bellard6a00d602005-11-21 23:25:50 +00001825 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001826 int l1, l2;
1827 uint32_t pgd, pde, pte;
1828
bellard6a00d602005-11-21 23:25:50 +00001829 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00001830
bellardb86bda52004-09-18 19:32:46 +00001831 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001832 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001833 return;
1834 }
1835 pgd = env->cr[3] & ~0xfff;
1836 for(l1 = 0; l1 < 1024; l1++) {
1837 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1838 pde = le32_to_cpu(pde);
1839 if (pde & PG_PRESENT_MASK) {
1840 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001841 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
bellardb86bda52004-09-18 19:32:46 +00001842 } else {
1843 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001844 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001845 (uint8_t *)&pte, 4);
1846 pte = le32_to_cpu(pte);
1847 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001848 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001849 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001850 ~0xfff);
1851 }
1852 }
1853 }
1854 }
1855 }
1856}
1857
aliguori376253e2009-03-05 23:01:23 +00001858static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001859 uint32_t end, int prot)
1860{
bellard9746b152004-11-11 18:30:24 +00001861 int prot1;
1862 prot1 = *plast_prot;
1863 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001864 if (*pstart != -1) {
aliguori376253e2009-03-05 23:01:23 +00001865 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1866 *pstart, end, end - *pstart,
1867 prot1 & PG_USER_MASK ? 'u' : '-',
1868 'r',
1869 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001870 }
1871 if (prot != 0)
1872 *pstart = end;
1873 else
1874 *pstart = -1;
1875 *plast_prot = prot;
1876 }
1877}
1878
aliguori376253e2009-03-05 23:01:23 +00001879static void mem_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001880{
bellard6a00d602005-11-21 23:25:50 +00001881 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001882 int l1, l2, prot, last_prot;
1883 uint32_t pgd, pde, pte, start, end;
1884
bellard6a00d602005-11-21 23:25:50 +00001885 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00001886
bellardb86bda52004-09-18 19:32:46 +00001887 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001888 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001889 return;
1890 }
1891 pgd = env->cr[3] & ~0xfff;
1892 last_prot = 0;
1893 start = -1;
1894 for(l1 = 0; l1 < 1024; l1++) {
1895 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1896 pde = le32_to_cpu(pde);
1897 end = l1 << 22;
1898 if (pde & PG_PRESENT_MASK) {
1899 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1900 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001901 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001902 } else {
1903 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001904 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001905 (uint8_t *)&pte, 4);
1906 pte = le32_to_cpu(pte);
1907 end = (l1 << 22) + (l2 << 12);
1908 if (pte & PG_PRESENT_MASK) {
1909 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1910 } else {
1911 prot = 0;
1912 }
aliguori376253e2009-03-05 23:01:23 +00001913 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001914 }
1915 }
1916 } else {
1917 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001918 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001919 }
1920 }
1921}
1922#endif
1923
aurel327c664e22009-03-03 06:12:22 +00001924#if defined(TARGET_SH4)
1925
aliguori376253e2009-03-05 23:01:23 +00001926static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001927{
aliguori376253e2009-03-05 23:01:23 +00001928 monitor_printf(mon, " tlb%i:\t"
1929 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1930 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1931 "dirty=%hhu writethrough=%hhu\n",
1932 idx,
1933 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1934 tlb->v, tlb->sh, tlb->c, tlb->pr,
1935 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001936}
1937
aliguori376253e2009-03-05 23:01:23 +00001938static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00001939{
1940 CPUState *env = mon_get_cpu();
1941 int i;
1942
aliguori376253e2009-03-05 23:01:23 +00001943 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001944 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001945 print_tlb (mon, i, &env->itlb[i]);
1946 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001947 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001948 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00001949}
1950
1951#endif
1952
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001953static void do_info_kvm_print(Monitor *mon, const QObject *data)
1954{
1955 QDict *qdict;
1956
1957 qdict = qobject_to_qdict(data);
1958
1959 monitor_printf(mon, "kvm support: ");
1960 if (qdict_get_bool(qdict, "present")) {
1961 monitor_printf(mon, "%s\n", qdict_get_bool(qdict, "enabled") ?
1962 "enabled" : "disabled");
1963 } else {
1964 monitor_printf(mon, "not compiled\n");
1965 }
1966}
1967
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001968static void do_info_kvm(Monitor *mon, QObject **ret_data)
aliguori7ba1e612008-11-05 16:04:33 +00001969{
1970#ifdef CONFIG_KVM
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001971 *ret_data = qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
1972 kvm_enabled());
aliguori7ba1e612008-11-05 16:04:33 +00001973#else
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001974 *ret_data = qobject_from_jsonf("{ 'enabled': false, 'present': false }");
aliguori7ba1e612008-11-05 16:04:33 +00001975#endif
1976}
1977
aliguori030ea372009-04-21 22:30:47 +00001978static void do_info_numa(Monitor *mon)
1979{
aliguorib28b6232009-04-22 20:20:29 +00001980 int i;
aliguori030ea372009-04-21 22:30:47 +00001981 CPUState *env;
1982
1983 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
1984 for (i = 0; i < nb_numa_nodes; i++) {
1985 monitor_printf(mon, "node %d cpus:", i);
1986 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1987 if (env->numa_node == i) {
1988 monitor_printf(mon, " %d", env->cpu_index);
1989 }
1990 }
1991 monitor_printf(mon, "\n");
1992 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
1993 node_mem[i] >> 20);
1994 }
1995}
1996
bellard5f1ce942006-02-08 22:40:15 +00001997#ifdef CONFIG_PROFILER
1998
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02001999int64_t qemu_time;
2000int64_t dev_time;
2001
aliguori376253e2009-03-05 23:01:23 +00002002static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002003{
2004 int64_t total;
2005 total = qemu_time;
2006 if (total == 0)
2007 total = 1;
aliguori376253e2009-03-05 23:01:23 +00002008 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002009 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00002010 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002011 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00002012 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002013 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002014}
2015#else
aliguori376253e2009-03-05 23:01:23 +00002016static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002017{
aliguori376253e2009-03-05 23:01:23 +00002018 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00002019}
2020#endif
2021
bellardec36b692006-07-16 18:57:03 +00002022/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002023static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00002024
aliguori376253e2009-03-05 23:01:23 +00002025static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00002026{
2027 int i;
2028 CaptureState *s;
2029
2030 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00002031 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00002032 s->ops.info (s->opaque);
2033 }
2034}
2035
Blue Swirl23130862009-06-06 08:22:04 +00002036#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002037static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002038{
2039 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002040 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00002041 CaptureState *s;
2042
2043 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2044 if (i == n) {
2045 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002046 QLIST_REMOVE (s, entries);
bellardec36b692006-07-16 18:57:03 +00002047 qemu_free (s);
2048 return;
2049 }
2050 }
2051}
2052
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002053static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002054{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002055 const char *path = qdict_get_str(qdict, "path");
2056 int has_freq = qdict_haskey(qdict, "freq");
2057 int freq = qdict_get_try_int(qdict, "freq", -1);
2058 int has_bits = qdict_haskey(qdict, "bits");
2059 int bits = qdict_get_try_int(qdict, "bits", -1);
2060 int has_channels = qdict_haskey(qdict, "nchannels");
2061 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00002062 CaptureState *s;
2063
2064 s = qemu_mallocz (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002065
2066 freq = has_freq ? freq : 44100;
2067 bits = has_bits ? bits : 16;
2068 nchannels = has_channels ? nchannels : 2;
2069
2070 if (wav_start_capture (s, path, freq, bits, nchannels)) {
aliguori376253e2009-03-05 23:01:23 +00002071 monitor_printf(mon, "Faied to add wave capture\n");
bellardec36b692006-07-16 18:57:03 +00002072 qemu_free (s);
2073 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002074 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002075}
2076#endif
2077
aurel32dc1c0b72008-04-27 23:52:12 +00002078#if defined(TARGET_I386)
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002079static void do_inject_nmi(Monitor *mon, const QDict *qdict)
aurel32dc1c0b72008-04-27 23:52:12 +00002080{
2081 CPUState *env;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002082 int cpu_index = qdict_get_int(qdict, "cpu_index");
aurel32dc1c0b72008-04-27 23:52:12 +00002083
2084 for (env = first_cpu; env != NULL; env = env->next_cpu)
2085 if (env->cpu_index == cpu_index) {
2086 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2087 break;
2088 }
2089}
2090#endif
2091
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002092static void do_info_status_print(Monitor *mon, const QObject *data)
aurel326f9c5ee2008-12-18 22:43:56 +00002093{
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002094 QDict *qdict;
2095
2096 qdict = qobject_to_qdict(data);
2097
2098 monitor_printf(mon, "VM status: ");
2099 if (qdict_get_bool(qdict, "running")) {
2100 monitor_printf(mon, "running");
2101 if (qdict_get_bool(qdict, "singlestep")) {
2102 monitor_printf(mon, " (single step mode)");
aurel321b530a62009-04-05 20:08:59 +00002103 }
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002104 } else {
2105 monitor_printf(mon, "paused");
2106 }
2107
2108 monitor_printf(mon, "\n");
2109}
2110
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002111static void do_info_status(Monitor *mon, QObject **ret_data)
2112{
2113 *ret_data = qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2114 vm_running, singlestep);
aurel326f9c5ee2008-12-18 22:43:56 +00002115}
2116
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002117static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002118{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002119 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002120
aliguori76655d62009-03-06 20:27:37 +00002121 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002122 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002123 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002124 return acl;
2125}
aliguori76655d62009-03-06 20:27:37 +00002126
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002127static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002128{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002129 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002130 qemu_acl *acl = find_acl(mon, aclname);
2131 qemu_acl_entry *entry;
2132 int i = 0;
2133
2134 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002135 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002136 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002137 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002138 i++;
2139 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002140 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002141 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002142 }
2143}
2144
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002145static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002146{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002147 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002148 qemu_acl *acl = find_acl(mon, aclname);
2149
2150 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002151 qemu_acl_reset(acl);
2152 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002153 }
2154}
aliguori76655d62009-03-06 20:27:37 +00002155
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002156static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002157{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002158 const char *aclname = qdict_get_str(qdict, "aclname");
2159 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002160 qemu_acl *acl = find_acl(mon, aclname);
2161
2162 if (acl) {
2163 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002164 acl->defaultDeny = 0;
2165 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002166 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002167 acl->defaultDeny = 1;
2168 monitor_printf(mon, "acl: policy set to 'deny'\n");
2169 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002170 monitor_printf(mon, "acl: unknown policy '%s', "
2171 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002172 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002173 }
2174}
aliguori76655d62009-03-06 20:27:37 +00002175
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002176static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002177{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002178 const char *aclname = qdict_get_str(qdict, "aclname");
2179 const char *match = qdict_get_str(qdict, "match");
2180 const char *policy = qdict_get_str(qdict, "policy");
2181 int has_index = qdict_haskey(qdict, "index");
2182 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002183 qemu_acl *acl = find_acl(mon, aclname);
2184 int deny, ret;
2185
2186 if (acl) {
2187 if (strcmp(policy, "allow") == 0) {
2188 deny = 0;
2189 } else if (strcmp(policy, "deny") == 0) {
2190 deny = 1;
2191 } else {
2192 monitor_printf(mon, "acl: unknown policy '%s', "
2193 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002194 return;
2195 }
aliguori28a76be2009-03-06 20:27:40 +00002196 if (has_index)
2197 ret = qemu_acl_insert(acl, deny, match, index);
2198 else
2199 ret = qemu_acl_append(acl, deny, match);
2200 if (ret < 0)
2201 monitor_printf(mon, "acl: unable to add acl entry\n");
2202 else
2203 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002204 }
2205}
aliguori76655d62009-03-06 20:27:37 +00002206
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002207static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002208{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002209 const char *aclname = qdict_get_str(qdict, "aclname");
2210 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002211 qemu_acl *acl = find_acl(mon, aclname);
2212 int ret;
aliguori76655d62009-03-06 20:27:37 +00002213
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002214 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002215 ret = qemu_acl_remove(acl, match);
2216 if (ret < 0)
2217 monitor_printf(mon, "acl: no matching acl entry\n");
2218 else
2219 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002220 }
2221}
2222
Huang Ying79c4f6b2009-06-23 10:05:14 +08002223#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002224static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002225{
2226 CPUState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002227 int cpu_index = qdict_get_int(qdict, "cpu_index");
2228 int bank = qdict_get_int(qdict, "bank");
2229 uint64_t status = qdict_get_int(qdict, "status");
2230 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2231 uint64_t addr = qdict_get_int(qdict, "addr");
2232 uint64_t misc = qdict_get_int(qdict, "misc");
Huang Ying79c4f6b2009-06-23 10:05:14 +08002233
2234 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
2235 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
2236 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
2237 break;
2238 }
2239}
2240#endif
2241
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002242static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002243{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002244 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002245 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002246 int fd;
2247
2248 fd = qemu_chr_get_msgfd(mon->chr);
2249 if (fd == -1) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002250 qerror_report(QERR_FD_NOT_SUPPLIED);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002251 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002252 }
2253
2254 if (qemu_isdigit(fdname[0])) {
Markus Armbrustere17ba872010-03-25 17:22:36 +01002255 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2256 "a name not starting with a digit");
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002257 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002258 }
2259
Blue Swirl72cf2d42009-09-12 07:36:22 +00002260 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002261 if (strcmp(monfd->name, fdname) != 0) {
2262 continue;
2263 }
2264
2265 close(monfd->fd);
2266 monfd->fd = fd;
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002267 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002268 }
2269
Anthony Liguoric227f092009-10-01 16:12:16 -05002270 monfd = qemu_mallocz(sizeof(mon_fd_t));
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002271 monfd->name = qemu_strdup(fdname);
2272 monfd->fd = fd;
2273
Blue Swirl72cf2d42009-09-12 07:36:22 +00002274 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002275 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002276}
2277
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002278static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002279{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002280 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002281 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002282
Blue Swirl72cf2d42009-09-12 07:36:22 +00002283 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002284 if (strcmp(monfd->name, fdname) != 0) {
2285 continue;
2286 }
2287
Blue Swirl72cf2d42009-09-12 07:36:22 +00002288 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002289 close(monfd->fd);
2290 qemu_free(monfd->name);
2291 qemu_free(monfd);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002292 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002293 }
2294
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002295 qerror_report(QERR_FD_NOT_FOUND, fdname);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002296 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002297}
2298
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002299static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002300{
2301 int saved_vm_running = vm_running;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002302 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002303
2304 vm_stop(0);
2305
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002306 if (load_vmstate(name) == 0 && saved_vm_running) {
Juan Quintelac8d41b22009-08-20 19:42:21 +02002307 vm_start();
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002308 }
Juan Quintelac8d41b22009-08-20 19:42:21 +02002309}
2310
Mark McLoughlin7768e042009-07-22 09:11:41 +01002311int monitor_get_fd(Monitor *mon, const char *fdname)
2312{
Anthony Liguoric227f092009-10-01 16:12:16 -05002313 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002314
Blue Swirl72cf2d42009-09-12 07:36:22 +00002315 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002316 int fd;
2317
2318 if (strcmp(monfd->name, fdname) != 0) {
2319 continue;
2320 }
2321
2322 fd = monfd->fd;
2323
2324 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002325 QLIST_REMOVE(monfd, next);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002326 qemu_free(monfd->name);
2327 qemu_free(monfd);
2328
2329 return fd;
2330 }
2331
2332 return -1;
2333}
2334
Anthony Liguoric227f092009-10-01 16:12:16 -05002335static const mon_cmd_t mon_cmds[] = {
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002336#include "hmp-commands.h"
ths5fafdf22007-09-16 21:08:06 +00002337 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002338};
2339
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002340/* Please update hmp-commands.hx when adding or changing commands */
Anthony Liguoric227f092009-10-01 16:12:16 -05002341static const mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002342 {
2343 .name = "version",
2344 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002345 .params = "",
2346 .help = "show the version of QEMU",
Luiz Capitulino45e914c2009-12-10 17:15:58 -02002347 .user_print = do_info_version_print,
Luiz Capitulinoab2d3182009-10-07 13:42:02 -03002348 .mhandler.info_new = do_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002349 },
2350 {
2351 .name = "network",
2352 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002353 .params = "",
2354 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002355 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002356 },
2357 {
2358 .name = "chardev",
2359 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002360 .params = "",
2361 .help = "show the character devices",
Luiz Capitulino588b3832009-12-10 17:16:08 -02002362 .user_print = qemu_chr_info_print,
2363 .mhandler.info_new = qemu_chr_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002364 },
2365 {
2366 .name = "block",
2367 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002368 .params = "",
2369 .help = "show the block devices",
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002370 .user_print = bdrv_info_print,
2371 .mhandler.info_new = bdrv_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002372 },
2373 {
2374 .name = "blockstats",
2375 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002376 .params = "",
2377 .help = "show block device statistics",
Luiz Capitulino218a5362009-12-10 17:16:07 -02002378 .user_print = bdrv_stats_print,
2379 .mhandler.info_new = bdrv_info_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002380 },
2381 {
2382 .name = "registers",
2383 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002384 .params = "",
2385 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002386 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002387 },
2388 {
2389 .name = "cpus",
2390 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002391 .params = "",
2392 .help = "show infos for each CPU",
Luiz Capitulino8f3cec02009-10-07 13:42:04 -03002393 .user_print = monitor_print_cpus,
2394 .mhandler.info_new = do_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002395 },
2396 {
2397 .name = "history",
2398 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002399 .params = "",
2400 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002401 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002402 },
2403 {
2404 .name = "irq",
2405 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002406 .params = "",
2407 .help = "show the interrupts statistics (if available)",
Luiz Capitulino910df892009-10-07 13:41:51 -03002408 .mhandler.info = irq_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002409 },
2410 {
2411 .name = "pic",
2412 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002413 .params = "",
2414 .help = "show i8259 (PIC) state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002415 .mhandler.info = pic_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002416 },
2417 {
2418 .name = "pci",
2419 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002420 .params = "",
2421 .help = "show PCI info",
Luiz Capitulino163c8a52010-01-21 19:15:40 -02002422 .user_print = do_pci_info_print,
2423 .mhandler.info_new = do_pci_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002424 },
aurel327c664e22009-03-03 06:12:22 +00002425#if defined(TARGET_I386) || defined(TARGET_SH4)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002426 {
2427 .name = "tlb",
2428 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002429 .params = "",
2430 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002431 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002432 },
aurel327c664e22009-03-03 06:12:22 +00002433#endif
2434#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002435 {
2436 .name = "mem",
2437 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002438 .params = "",
2439 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002440 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002441 },
bellardb86bda52004-09-18 19:32:46 +00002442#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002443 {
2444 .name = "jit",
2445 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002446 .params = "",
2447 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002448 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002449 },
2450 {
2451 .name = "kvm",
2452 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002453 .params = "",
2454 .help = "show KVM information",
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002455 .user_print = do_info_kvm_print,
2456 .mhandler.info_new = do_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002457 },
2458 {
2459 .name = "numa",
2460 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002461 .params = "",
2462 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002463 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002464 },
2465 {
2466 .name = "usb",
2467 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002468 .params = "",
2469 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002470 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002471 },
2472 {
2473 .name = "usbhost",
2474 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002475 .params = "",
2476 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002477 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002478 },
2479 {
2480 .name = "profile",
2481 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002482 .params = "",
2483 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002484 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002485 },
2486 {
2487 .name = "capture",
2488 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002489 .params = "",
2490 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002491 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002492 },
2493 {
2494 .name = "snapshots",
2495 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002496 .params = "",
2497 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002498 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002499 },
2500 {
2501 .name = "status",
2502 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002503 .params = "",
2504 .help = "show the current VM status (running|paused)",
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002505 .user_print = do_info_status_print,
2506 .mhandler.info_new = do_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002507 },
2508 {
2509 .name = "pcmcia",
2510 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002511 .params = "",
2512 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002513 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002514 },
2515 {
2516 .name = "mice",
2517 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002518 .params = "",
2519 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe78c48e2009-12-10 17:16:04 -02002520 .user_print = do_info_mice_print,
2521 .mhandler.info_new = do_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002522 },
2523 {
2524 .name = "vnc",
2525 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002526 .params = "",
2527 .help = "show the vnc server status",
Luiz Capitulinod96fd292009-12-10 17:16:10 -02002528 .user_print = do_info_vnc_print,
2529 .mhandler.info_new = do_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002530 },
2531 {
2532 .name = "name",
2533 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002534 .params = "",
2535 .help = "show the current VM name",
Luiz Capitulinoe05486c2009-12-10 17:16:01 -02002536 .user_print = do_info_name_print,
2537 .mhandler.info_new = do_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002538 },
2539 {
2540 .name = "uuid",
2541 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002542 .params = "",
2543 .help = "show the current VM UUID",
Luiz Capitulino9603ceb2009-12-10 17:16:03 -02002544 .user_print = do_info_uuid_print,
2545 .mhandler.info_new = do_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002546 },
j_mayer76a66252007-03-07 08:32:30 +00002547#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002548 {
2549 .name = "cpustats",
2550 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002551 .params = "",
2552 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002553 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002554 },
j_mayer76a66252007-03-07 08:32:30 +00002555#endif
blueswir131a60e22007-10-26 18:42:59 +00002556#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002557 {
2558 .name = "usernet",
2559 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002560 .params = "",
2561 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002562 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002563 },
blueswir131a60e22007-10-26 18:42:59 +00002564#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002565 {
2566 .name = "migrate",
2567 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002568 .params = "",
2569 .help = "show migration status",
Luiz Capitulinoc86a6682009-12-10 17:16:05 -02002570 .user_print = do_info_migrate_print,
2571 .mhandler.info_new = do_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002572 },
2573 {
2574 .name = "balloon",
2575 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002576 .params = "",
2577 .help = "show balloon information",
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002578 .user_print = monitor_print_balloon,
Adam Litke625a5be2010-01-26 14:17:35 -06002579 .mhandler.info_async = do_info_balloon,
Jan Kiszka8ac470c2010-06-16 00:38:39 +02002580 .flags = MONITOR_CMD_ASYNC,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002581 },
2582 {
2583 .name = "qtree",
2584 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002585 .params = "",
2586 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002587 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002588 },
2589 {
2590 .name = "qdm",
2591 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002592 .params = "",
2593 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002594 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002595 },
2596 {
2597 .name = "roms",
2598 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002599 .params = "",
2600 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002601 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002602 },
Prerna Saxena22890ab2010-06-24 17:04:53 +05302603#if defined(CONFIG_SIMPLE_TRACE)
2604 {
2605 .name = "trace",
2606 .args_type = "",
2607 .params = "",
2608 .help = "show current contents of trace buffer",
2609 .mhandler.info = do_info_trace,
2610 },
2611 {
2612 .name = "trace-events",
2613 .args_type = "",
2614 .params = "",
2615 .help = "show available trace-events & their state",
2616 .mhandler.info = do_info_trace_events,
2617 },
2618#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002619 {
2620 .name = NULL,
2621 },
bellard9dc39cb2004-03-14 21:38:27 +00002622};
2623
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03002624static const mon_cmd_t qmp_cmds[] = {
2625#include "qmp-commands.h"
2626 { /* NULL */ },
2627};
2628
Luiz Capitulino3e12a752010-09-15 17:20:33 -03002629static const mon_cmd_t qmp_query_cmds[] = {
2630 {
2631 .name = "version",
2632 .args_type = "",
2633 .params = "",
2634 .help = "show the version of QEMU",
2635 .user_print = do_info_version_print,
2636 .mhandler.info_new = do_info_version,
2637 },
2638 {
2639 .name = "commands",
2640 .args_type = "",
2641 .params = "",
2642 .help = "list QMP available commands",
2643 .user_print = monitor_user_noop,
2644 .mhandler.info_new = do_info_commands,
2645 },
2646 {
2647 .name = "chardev",
2648 .args_type = "",
2649 .params = "",
2650 .help = "show the character devices",
2651 .user_print = qemu_chr_info_print,
2652 .mhandler.info_new = qemu_chr_info,
2653 },
2654 {
2655 .name = "block",
2656 .args_type = "",
2657 .params = "",
2658 .help = "show the block devices",
2659 .user_print = bdrv_info_print,
2660 .mhandler.info_new = bdrv_info,
2661 },
2662 {
2663 .name = "blockstats",
2664 .args_type = "",
2665 .params = "",
2666 .help = "show block device statistics",
2667 .user_print = bdrv_stats_print,
2668 .mhandler.info_new = bdrv_info_stats,
2669 },
2670 {
2671 .name = "cpus",
2672 .args_type = "",
2673 .params = "",
2674 .help = "show infos for each CPU",
2675 .user_print = monitor_print_cpus,
2676 .mhandler.info_new = do_info_cpus,
2677 },
2678 {
2679 .name = "pci",
2680 .args_type = "",
2681 .params = "",
2682 .help = "show PCI info",
2683 .user_print = do_pci_info_print,
2684 .mhandler.info_new = do_pci_info,
2685 },
2686 {
2687 .name = "kvm",
2688 .args_type = "",
2689 .params = "",
2690 .help = "show KVM information",
2691 .user_print = do_info_kvm_print,
2692 .mhandler.info_new = do_info_kvm,
2693 },
2694 {
2695 .name = "status",
2696 .args_type = "",
2697 .params = "",
2698 .help = "show the current VM status (running|paused)",
2699 .user_print = do_info_status_print,
2700 .mhandler.info_new = do_info_status,
2701 },
2702 {
2703 .name = "mice",
2704 .args_type = "",
2705 .params = "",
2706 .help = "show which guest mouse is receiving events",
2707 .user_print = do_info_mice_print,
2708 .mhandler.info_new = do_info_mice,
2709 },
2710 {
2711 .name = "vnc",
2712 .args_type = "",
2713 .params = "",
2714 .help = "show the vnc server status",
2715 .user_print = do_info_vnc_print,
2716 .mhandler.info_new = do_info_vnc,
2717 },
2718 {
2719 .name = "name",
2720 .args_type = "",
2721 .params = "",
2722 .help = "show the current VM name",
2723 .user_print = do_info_name_print,
2724 .mhandler.info_new = do_info_name,
2725 },
2726 {
2727 .name = "uuid",
2728 .args_type = "",
2729 .params = "",
2730 .help = "show the current VM UUID",
2731 .user_print = do_info_uuid_print,
2732 .mhandler.info_new = do_info_uuid,
2733 },
2734 {
2735 .name = "migrate",
2736 .args_type = "",
2737 .params = "",
2738 .help = "show migration status",
2739 .user_print = do_info_migrate_print,
2740 .mhandler.info_new = do_info_migrate,
2741 },
2742 {
2743 .name = "balloon",
2744 .args_type = "",
2745 .params = "",
2746 .help = "show balloon information",
2747 .user_print = monitor_print_balloon,
2748 .mhandler.info_async = do_info_balloon,
2749 .flags = MONITOR_CMD_ASYNC,
2750 },
2751 { /* NULL */ },
2752};
2753
bellard9307c4c2004-04-04 12:57:25 +00002754/*******************************************************************/
2755
2756static const char *pch;
2757static jmp_buf expr_env;
2758
bellard92a31b12005-02-10 22:00:52 +00002759#define MD_TLONG 0
2760#define MD_I32 1
2761
bellard9307c4c2004-04-04 12:57:25 +00002762typedef struct MonitorDef {
2763 const char *name;
2764 int offset;
blueswir18662d652008-10-02 18:32:44 +00002765 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002766 int type;
bellard9307c4c2004-04-04 12:57:25 +00002767} MonitorDef;
2768
bellard57206fd2004-04-25 18:54:52 +00002769#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002770static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002771{
bellard6a00d602005-11-21 23:25:50 +00002772 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002773 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002774}
2775#endif
2776
bellarda541f292004-04-12 20:39:29 +00002777#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002778static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002779{
bellard6a00d602005-11-21 23:25:50 +00002780 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002781 unsigned int u;
2782 int i;
2783
2784 u = 0;
2785 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002786 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002787
2788 return u;
2789}
2790
blueswir18662d652008-10-02 18:32:44 +00002791static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002792{
bellard6a00d602005-11-21 23:25:50 +00002793 CPUState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00002794 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002795}
2796
blueswir18662d652008-10-02 18:32:44 +00002797static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002798{
bellard6a00d602005-11-21 23:25:50 +00002799 CPUState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00002800 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002801}
bellard9fddaa02004-05-21 12:59:32 +00002802
blueswir18662d652008-10-02 18:32:44 +00002803static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002804{
bellard6a00d602005-11-21 23:25:50 +00002805 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002806 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002807}
2808
blueswir18662d652008-10-02 18:32:44 +00002809static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002810{
bellard6a00d602005-11-21 23:25:50 +00002811 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002812 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002813}
2814
blueswir18662d652008-10-02 18:32:44 +00002815static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002816{
bellard6a00d602005-11-21 23:25:50 +00002817 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002818 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002819}
bellarda541f292004-04-12 20:39:29 +00002820#endif
2821
bellarde95c8d52004-09-30 22:22:08 +00002822#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002823#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002824static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002825{
bellard6a00d602005-11-21 23:25:50 +00002826 CPUState *env = mon_get_cpu();
Blue Swirl5a834bb2010-05-09 20:19:04 +00002827
2828 return cpu_get_psr(env);
bellarde95c8d52004-09-30 22:22:08 +00002829}
bellard7b936c02005-10-30 17:05:13 +00002830#endif
bellarde95c8d52004-09-30 22:22:08 +00002831
blueswir18662d652008-10-02 18:32:44 +00002832static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002833{
bellard6a00d602005-11-21 23:25:50 +00002834 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002835 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002836}
2837#endif
2838
blueswir18662d652008-10-02 18:32:44 +00002839static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002840#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002841
2842#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00002843 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00002844 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00002845 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002846
bellard9307c4c2004-04-04 12:57:25 +00002847 { "eax", offsetof(CPUState, regs[0]) },
2848 { "ecx", offsetof(CPUState, regs[1]) },
2849 { "edx", offsetof(CPUState, regs[2]) },
2850 { "ebx", offsetof(CPUState, regs[3]) },
2851 { "esp|sp", offsetof(CPUState, regs[4]) },
2852 { "ebp|fp", offsetof(CPUState, regs[5]) },
2853 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00002854 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002855#ifdef TARGET_X86_64
2856 { "r8", offsetof(CPUState, regs[8]) },
2857 { "r9", offsetof(CPUState, regs[9]) },
2858 { "r10", offsetof(CPUState, regs[10]) },
2859 { "r11", offsetof(CPUState, regs[11]) },
2860 { "r12", offsetof(CPUState, regs[12]) },
2861 { "r13", offsetof(CPUState, regs[13]) },
2862 { "r14", offsetof(CPUState, regs[14]) },
2863 { "r15", offsetof(CPUState, regs[15]) },
2864#endif
bellard9307c4c2004-04-04 12:57:25 +00002865 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00002866 { "eip", offsetof(CPUState, eip) },
2867 SEG("cs", R_CS)
2868 SEG("ds", R_DS)
2869 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002870 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002871 SEG("fs", R_FS)
2872 SEG("gs", R_GS)
2873 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002874#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002875 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00002876 { "r0", offsetof(CPUState, gpr[0]) },
2877 { "r1", offsetof(CPUState, gpr[1]) },
2878 { "r2", offsetof(CPUState, gpr[2]) },
2879 { "r3", offsetof(CPUState, gpr[3]) },
2880 { "r4", offsetof(CPUState, gpr[4]) },
2881 { "r5", offsetof(CPUState, gpr[5]) },
2882 { "r6", offsetof(CPUState, gpr[6]) },
2883 { "r7", offsetof(CPUState, gpr[7]) },
2884 { "r8", offsetof(CPUState, gpr[8]) },
2885 { "r9", offsetof(CPUState, gpr[9]) },
2886 { "r10", offsetof(CPUState, gpr[10]) },
2887 { "r11", offsetof(CPUState, gpr[11]) },
2888 { "r12", offsetof(CPUState, gpr[12]) },
2889 { "r13", offsetof(CPUState, gpr[13]) },
2890 { "r14", offsetof(CPUState, gpr[14]) },
2891 { "r15", offsetof(CPUState, gpr[15]) },
2892 { "r16", offsetof(CPUState, gpr[16]) },
2893 { "r17", offsetof(CPUState, gpr[17]) },
2894 { "r18", offsetof(CPUState, gpr[18]) },
2895 { "r19", offsetof(CPUState, gpr[19]) },
2896 { "r20", offsetof(CPUState, gpr[20]) },
2897 { "r21", offsetof(CPUState, gpr[21]) },
2898 { "r22", offsetof(CPUState, gpr[22]) },
2899 { "r23", offsetof(CPUState, gpr[23]) },
2900 { "r24", offsetof(CPUState, gpr[24]) },
2901 { "r25", offsetof(CPUState, gpr[25]) },
2902 { "r26", offsetof(CPUState, gpr[26]) },
2903 { "r27", offsetof(CPUState, gpr[27]) },
2904 { "r28", offsetof(CPUState, gpr[28]) },
2905 { "r29", offsetof(CPUState, gpr[29]) },
2906 { "r30", offsetof(CPUState, gpr[30]) },
2907 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00002908 /* Floating point registers */
2909 { "f0", offsetof(CPUState, fpr[0]) },
2910 { "f1", offsetof(CPUState, fpr[1]) },
2911 { "f2", offsetof(CPUState, fpr[2]) },
2912 { "f3", offsetof(CPUState, fpr[3]) },
2913 { "f4", offsetof(CPUState, fpr[4]) },
2914 { "f5", offsetof(CPUState, fpr[5]) },
2915 { "f6", offsetof(CPUState, fpr[6]) },
2916 { "f7", offsetof(CPUState, fpr[7]) },
2917 { "f8", offsetof(CPUState, fpr[8]) },
2918 { "f9", offsetof(CPUState, fpr[9]) },
2919 { "f10", offsetof(CPUState, fpr[10]) },
2920 { "f11", offsetof(CPUState, fpr[11]) },
2921 { "f12", offsetof(CPUState, fpr[12]) },
2922 { "f13", offsetof(CPUState, fpr[13]) },
2923 { "f14", offsetof(CPUState, fpr[14]) },
2924 { "f15", offsetof(CPUState, fpr[15]) },
2925 { "f16", offsetof(CPUState, fpr[16]) },
2926 { "f17", offsetof(CPUState, fpr[17]) },
2927 { "f18", offsetof(CPUState, fpr[18]) },
2928 { "f19", offsetof(CPUState, fpr[19]) },
2929 { "f20", offsetof(CPUState, fpr[20]) },
2930 { "f21", offsetof(CPUState, fpr[21]) },
2931 { "f22", offsetof(CPUState, fpr[22]) },
2932 { "f23", offsetof(CPUState, fpr[23]) },
2933 { "f24", offsetof(CPUState, fpr[24]) },
2934 { "f25", offsetof(CPUState, fpr[25]) },
2935 { "f26", offsetof(CPUState, fpr[26]) },
2936 { "f27", offsetof(CPUState, fpr[27]) },
2937 { "f28", offsetof(CPUState, fpr[28]) },
2938 { "f29", offsetof(CPUState, fpr[29]) },
2939 { "f30", offsetof(CPUState, fpr[30]) },
2940 { "f31", offsetof(CPUState, fpr[31]) },
2941 { "fpscr", offsetof(CPUState, fpscr) },
2942 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00002943 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00002944 { "lr", offsetof(CPUState, lr) },
2945 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00002946 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00002947 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00002948 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00002949 { "msr", 0, &monitor_get_msr, },
2950 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00002951 { "tbu", 0, &monitor_get_tbu, },
2952 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00002953#if defined(TARGET_PPC64)
2954 /* Address space register */
2955 { "asr", offsetof(CPUState, asr) },
2956#endif
2957 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00002958 { "sdr1", offsetof(CPUState, sdr1) },
2959 { "sr0", offsetof(CPUState, sr[0]) },
2960 { "sr1", offsetof(CPUState, sr[1]) },
2961 { "sr2", offsetof(CPUState, sr[2]) },
2962 { "sr3", offsetof(CPUState, sr[3]) },
2963 { "sr4", offsetof(CPUState, sr[4]) },
2964 { "sr5", offsetof(CPUState, sr[5]) },
2965 { "sr6", offsetof(CPUState, sr[6]) },
2966 { "sr7", offsetof(CPUState, sr[7]) },
2967 { "sr8", offsetof(CPUState, sr[8]) },
2968 { "sr9", offsetof(CPUState, sr[9]) },
2969 { "sr10", offsetof(CPUState, sr[10]) },
2970 { "sr11", offsetof(CPUState, sr[11]) },
2971 { "sr12", offsetof(CPUState, sr[12]) },
2972 { "sr13", offsetof(CPUState, sr[13]) },
2973 { "sr14", offsetof(CPUState, sr[14]) },
2974 { "sr15", offsetof(CPUState, sr[15]) },
2975 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00002976#elif defined(TARGET_SPARC)
2977 { "g0", offsetof(CPUState, gregs[0]) },
2978 { "g1", offsetof(CPUState, gregs[1]) },
2979 { "g2", offsetof(CPUState, gregs[2]) },
2980 { "g3", offsetof(CPUState, gregs[3]) },
2981 { "g4", offsetof(CPUState, gregs[4]) },
2982 { "g5", offsetof(CPUState, gregs[5]) },
2983 { "g6", offsetof(CPUState, gregs[6]) },
2984 { "g7", offsetof(CPUState, gregs[7]) },
2985 { "o0", 0, monitor_get_reg },
2986 { "o1", 1, monitor_get_reg },
2987 { "o2", 2, monitor_get_reg },
2988 { "o3", 3, monitor_get_reg },
2989 { "o4", 4, monitor_get_reg },
2990 { "o5", 5, monitor_get_reg },
2991 { "o6", 6, monitor_get_reg },
2992 { "o7", 7, monitor_get_reg },
2993 { "l0", 8, monitor_get_reg },
2994 { "l1", 9, monitor_get_reg },
2995 { "l2", 10, monitor_get_reg },
2996 { "l3", 11, monitor_get_reg },
2997 { "l4", 12, monitor_get_reg },
2998 { "l5", 13, monitor_get_reg },
2999 { "l6", 14, monitor_get_reg },
3000 { "l7", 15, monitor_get_reg },
3001 { "i0", 16, monitor_get_reg },
3002 { "i1", 17, monitor_get_reg },
3003 { "i2", 18, monitor_get_reg },
3004 { "i3", 19, monitor_get_reg },
3005 { "i4", 20, monitor_get_reg },
3006 { "i5", 21, monitor_get_reg },
3007 { "i6", 22, monitor_get_reg },
3008 { "i7", 23, monitor_get_reg },
3009 { "pc", offsetof(CPUState, pc) },
3010 { "npc", offsetof(CPUState, npc) },
3011 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00003012#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00003013 { "psr", 0, &monitor_get_psr, },
3014 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00003015#endif
bellarde95c8d52004-09-30 22:22:08 +00003016 { "tbr", offsetof(CPUState, tbr) },
3017 { "fsr", offsetof(CPUState, fsr) },
3018 { "f0", offsetof(CPUState, fpr[0]) },
3019 { "f1", offsetof(CPUState, fpr[1]) },
3020 { "f2", offsetof(CPUState, fpr[2]) },
3021 { "f3", offsetof(CPUState, fpr[3]) },
3022 { "f4", offsetof(CPUState, fpr[4]) },
3023 { "f5", offsetof(CPUState, fpr[5]) },
3024 { "f6", offsetof(CPUState, fpr[6]) },
3025 { "f7", offsetof(CPUState, fpr[7]) },
3026 { "f8", offsetof(CPUState, fpr[8]) },
3027 { "f9", offsetof(CPUState, fpr[9]) },
3028 { "f10", offsetof(CPUState, fpr[10]) },
3029 { "f11", offsetof(CPUState, fpr[11]) },
3030 { "f12", offsetof(CPUState, fpr[12]) },
3031 { "f13", offsetof(CPUState, fpr[13]) },
3032 { "f14", offsetof(CPUState, fpr[14]) },
3033 { "f15", offsetof(CPUState, fpr[15]) },
3034 { "f16", offsetof(CPUState, fpr[16]) },
3035 { "f17", offsetof(CPUState, fpr[17]) },
3036 { "f18", offsetof(CPUState, fpr[18]) },
3037 { "f19", offsetof(CPUState, fpr[19]) },
3038 { "f20", offsetof(CPUState, fpr[20]) },
3039 { "f21", offsetof(CPUState, fpr[21]) },
3040 { "f22", offsetof(CPUState, fpr[22]) },
3041 { "f23", offsetof(CPUState, fpr[23]) },
3042 { "f24", offsetof(CPUState, fpr[24]) },
3043 { "f25", offsetof(CPUState, fpr[25]) },
3044 { "f26", offsetof(CPUState, fpr[26]) },
3045 { "f27", offsetof(CPUState, fpr[27]) },
3046 { "f28", offsetof(CPUState, fpr[28]) },
3047 { "f29", offsetof(CPUState, fpr[29]) },
3048 { "f30", offsetof(CPUState, fpr[30]) },
3049 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00003050#ifdef TARGET_SPARC64
3051 { "f32", offsetof(CPUState, fpr[32]) },
3052 { "f34", offsetof(CPUState, fpr[34]) },
3053 { "f36", offsetof(CPUState, fpr[36]) },
3054 { "f38", offsetof(CPUState, fpr[38]) },
3055 { "f40", offsetof(CPUState, fpr[40]) },
3056 { "f42", offsetof(CPUState, fpr[42]) },
3057 { "f44", offsetof(CPUState, fpr[44]) },
3058 { "f46", offsetof(CPUState, fpr[46]) },
3059 { "f48", offsetof(CPUState, fpr[48]) },
3060 { "f50", offsetof(CPUState, fpr[50]) },
3061 { "f52", offsetof(CPUState, fpr[52]) },
3062 { "f54", offsetof(CPUState, fpr[54]) },
3063 { "f56", offsetof(CPUState, fpr[56]) },
3064 { "f58", offsetof(CPUState, fpr[58]) },
3065 { "f60", offsetof(CPUState, fpr[60]) },
3066 { "f62", offsetof(CPUState, fpr[62]) },
3067 { "asi", offsetof(CPUState, asi) },
3068 { "pstate", offsetof(CPUState, pstate) },
3069 { "cansave", offsetof(CPUState, cansave) },
3070 { "canrestore", offsetof(CPUState, canrestore) },
3071 { "otherwin", offsetof(CPUState, otherwin) },
3072 { "wstate", offsetof(CPUState, wstate) },
3073 { "cleanwin", offsetof(CPUState, cleanwin) },
3074 { "fprs", offsetof(CPUState, fprs) },
3075#endif
bellard9307c4c2004-04-04 12:57:25 +00003076#endif
3077 { NULL },
3078};
3079
aliguori376253e2009-03-05 23:01:23 +00003080static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00003081{
aliguori376253e2009-03-05 23:01:23 +00003082 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00003083 longjmp(expr_env, 1);
3084}
3085
Markus Armbruster09b94182010-01-20 13:07:30 +01003086/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00003087static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00003088{
blueswir18662d652008-10-02 18:32:44 +00003089 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00003090 void *ptr;
3091
bellard9307c4c2004-04-04 12:57:25 +00003092 for(md = monitor_defs; md->name != NULL; md++) {
3093 if (compare_cmd(name, md->name)) {
3094 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003095 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003096 } else {
bellard6a00d602005-11-21 23:25:50 +00003097 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003098 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003099 switch(md->type) {
3100 case MD_I32:
3101 *pval = *(int32_t *)ptr;
3102 break;
3103 case MD_TLONG:
3104 *pval = *(target_long *)ptr;
3105 break;
3106 default:
3107 *pval = 0;
3108 break;
3109 }
bellard9307c4c2004-04-04 12:57:25 +00003110 }
3111 return 0;
3112 }
3113 }
3114 return -1;
3115}
3116
3117static void next(void)
3118{
Blue Swirl660f11b2009-07-31 21:16:51 +00003119 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003120 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003121 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003122 pch++;
3123 }
3124}
3125
aliguori376253e2009-03-05 23:01:23 +00003126static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003127
aliguori376253e2009-03-05 23:01:23 +00003128static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003129{
blueswir1c2efc952007-09-25 17:28:42 +00003130 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003131 char *p;
bellard6a00d602005-11-21 23:25:50 +00003132 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003133
3134 switch(*pch) {
3135 case '+':
3136 next();
aliguori376253e2009-03-05 23:01:23 +00003137 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003138 break;
3139 case '-':
3140 next();
aliguori376253e2009-03-05 23:01:23 +00003141 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003142 break;
3143 case '~':
3144 next();
aliguori376253e2009-03-05 23:01:23 +00003145 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003146 break;
3147 case '(':
3148 next();
aliguori376253e2009-03-05 23:01:23 +00003149 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003150 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003151 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003152 }
3153 next();
3154 break;
bellard81d09122004-07-14 17:21:37 +00003155 case '\'':
3156 pch++;
3157 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003158 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003159 n = *pch;
3160 pch++;
3161 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003162 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003163 next();
3164 break;
bellard9307c4c2004-04-04 12:57:25 +00003165 case '$':
3166 {
3167 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003168 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003169
bellard9307c4c2004-04-04 12:57:25 +00003170 pch++;
3171 q = buf;
3172 while ((*pch >= 'a' && *pch <= 'z') ||
3173 (*pch >= 'A' && *pch <= 'Z') ||
3174 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003175 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003176 if ((q - buf) < sizeof(buf) - 1)
3177 *q++ = *pch;
3178 pch++;
3179 }
blueswir1cd390082008-11-16 13:53:32 +00003180 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003181 pch++;
3182 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003183 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003184 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003185 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003186 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003187 }
3188 break;
3189 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003190 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003191 n = 0;
3192 break;
3193 default:
blueswir17743e582007-09-24 18:39:04 +00003194#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003195 n = strtoull(pch, &p, 0);
3196#else
bellard9307c4c2004-04-04 12:57:25 +00003197 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003198#endif
bellard9307c4c2004-04-04 12:57:25 +00003199 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003200 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003201 }
3202 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003203 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003204 pch++;
3205 break;
3206 }
3207 return n;
3208}
3209
3210
aliguori376253e2009-03-05 23:01:23 +00003211static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003212{
blueswir1c2efc952007-09-25 17:28:42 +00003213 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003214 int op;
ths3b46e622007-09-17 08:09:54 +00003215
aliguori376253e2009-03-05 23:01:23 +00003216 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003217 for(;;) {
3218 op = *pch;
3219 if (op != '*' && op != '/' && op != '%')
3220 break;
3221 next();
aliguori376253e2009-03-05 23:01:23 +00003222 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003223 switch(op) {
3224 default:
3225 case '*':
3226 val *= val2;
3227 break;
3228 case '/':
3229 case '%':
ths5fafdf22007-09-16 21:08:06 +00003230 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003231 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003232 if (op == '/')
3233 val /= val2;
3234 else
3235 val %= val2;
3236 break;
3237 }
3238 }
3239 return val;
3240}
3241
aliguori376253e2009-03-05 23:01:23 +00003242static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003243{
blueswir1c2efc952007-09-25 17:28:42 +00003244 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003245 int op;
bellard9307c4c2004-04-04 12:57:25 +00003246
aliguori376253e2009-03-05 23:01:23 +00003247 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003248 for(;;) {
3249 op = *pch;
3250 if (op != '&' && op != '|' && op != '^')
3251 break;
3252 next();
aliguori376253e2009-03-05 23:01:23 +00003253 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003254 switch(op) {
3255 default:
3256 case '&':
3257 val &= val2;
3258 break;
3259 case '|':
3260 val |= val2;
3261 break;
3262 case '^':
3263 val ^= val2;
3264 break;
3265 }
3266 }
3267 return val;
3268}
3269
aliguori376253e2009-03-05 23:01:23 +00003270static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003271{
blueswir1c2efc952007-09-25 17:28:42 +00003272 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003273 int op;
bellard9307c4c2004-04-04 12:57:25 +00003274
aliguori376253e2009-03-05 23:01:23 +00003275 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003276 for(;;) {
3277 op = *pch;
3278 if (op != '+' && op != '-')
3279 break;
3280 next();
aliguori376253e2009-03-05 23:01:23 +00003281 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003282 if (op == '+')
3283 val += val2;
3284 else
3285 val -= val2;
3286 }
3287 return val;
3288}
3289
aliguori376253e2009-03-05 23:01:23 +00003290static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003291{
3292 pch = *pp;
3293 if (setjmp(expr_env)) {
3294 *pp = pch;
3295 return -1;
3296 }
blueswir1cd390082008-11-16 13:53:32 +00003297 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003298 pch++;
aliguori376253e2009-03-05 23:01:23 +00003299 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003300 *pp = pch;
3301 return 0;
3302}
3303
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003304static int get_double(Monitor *mon, double *pval, const char **pp)
3305{
3306 const char *p = *pp;
3307 char *tailp;
3308 double d;
3309
3310 d = strtod(p, &tailp);
3311 if (tailp == p) {
3312 monitor_printf(mon, "Number expected\n");
3313 return -1;
3314 }
3315 if (d != d || d - d != 0) {
3316 /* NaN or infinity */
3317 monitor_printf(mon, "Bad number\n");
3318 return -1;
3319 }
3320 *pval = d;
3321 *pp = tailp;
3322 return 0;
3323}
3324
bellard9307c4c2004-04-04 12:57:25 +00003325static int get_str(char *buf, int buf_size, const char **pp)
3326{
3327 const char *p;
3328 char *q;
3329 int c;
3330
bellard81d09122004-07-14 17:21:37 +00003331 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003332 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003333 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003334 p++;
3335 if (*p == '\0') {
3336 fail:
bellard81d09122004-07-14 17:21:37 +00003337 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003338 *pp = p;
3339 return -1;
3340 }
bellard9307c4c2004-04-04 12:57:25 +00003341 if (*p == '\"') {
3342 p++;
3343 while (*p != '\0' && *p != '\"') {
3344 if (*p == '\\') {
3345 p++;
3346 c = *p++;
3347 switch(c) {
3348 case 'n':
3349 c = '\n';
3350 break;
3351 case 'r':
3352 c = '\r';
3353 break;
3354 case '\\':
3355 case '\'':
3356 case '\"':
3357 break;
3358 default:
3359 qemu_printf("unsupported escape code: '\\%c'\n", c);
3360 goto fail;
3361 }
3362 if ((q - buf) < buf_size - 1) {
3363 *q++ = c;
3364 }
3365 } else {
3366 if ((q - buf) < buf_size - 1) {
3367 *q++ = *p;
3368 }
3369 p++;
3370 }
3371 }
3372 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003373 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003374 goto fail;
3375 }
3376 p++;
3377 } else {
blueswir1cd390082008-11-16 13:53:32 +00003378 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003379 if ((q - buf) < buf_size - 1) {
3380 *q++ = *p;
3381 }
3382 p++;
3383 }
bellard9307c4c2004-04-04 12:57:25 +00003384 }
bellard81d09122004-07-14 17:21:37 +00003385 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003386 *pp = p;
3387 return 0;
3388}
3389
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003390/*
3391 * Store the command-name in cmdname, and return a pointer to
3392 * the remaining of the command string.
3393 */
3394static const char *get_command_name(const char *cmdline,
3395 char *cmdname, size_t nlen)
3396{
3397 size_t len;
3398 const char *p, *pstart;
3399
3400 p = cmdline;
3401 while (qemu_isspace(*p))
3402 p++;
3403 if (*p == '\0')
3404 return NULL;
3405 pstart = p;
3406 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3407 p++;
3408 len = p - pstart;
3409 if (len > nlen - 1)
3410 len = nlen - 1;
3411 memcpy(cmdname, pstart, len);
3412 cmdname[len] = '\0';
3413 return p;
3414}
3415
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003416/**
3417 * Read key of 'type' into 'key' and return the current
3418 * 'type' pointer.
3419 */
3420static char *key_get_info(const char *type, char **key)
3421{
3422 size_t len;
3423 char *p, *str;
3424
3425 if (*type == ',')
3426 type++;
3427
3428 p = strchr(type, ':');
3429 if (!p) {
3430 *key = NULL;
3431 return NULL;
3432 }
3433 len = p - type;
3434
3435 str = qemu_malloc(len + 1);
3436 memcpy(str, type, len);
3437 str[len] = '\0';
3438
3439 *key = str;
3440 return ++p;
3441}
3442
bellard9307c4c2004-04-04 12:57:25 +00003443static int default_fmt_format = 'x';
3444static int default_fmt_size = 4;
3445
3446#define MAX_ARGS 16
3447
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003448static int is_valid_option(const char *c, const char *typestr)
3449{
3450 char option[3];
3451
3452 option[0] = '-';
3453 option[1] = *c;
3454 option[2] = '\0';
3455
3456 typestr = strstr(typestr, option);
3457 return (typestr != NULL);
3458}
3459
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003460static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3461 const char *cmdname)
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003462{
3463 const mon_cmd_t *cmd;
3464
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003465 for (cmd = disp_table; cmd->name != NULL; cmd++) {
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003466 if (compare_cmd(cmdname, cmd->name)) {
3467 return cmd;
3468 }
3469 }
3470
3471 return NULL;
3472}
3473
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003474static const mon_cmd_t *monitor_find_command(const char *cmdname)
3475{
3476 return search_dispatch_table(mon_cmds, cmdname);
3477}
3478
Luiz Capitulino030db6e2010-09-10 16:03:38 -03003479static const mon_cmd_t *qmp_find_query_cmd(const char *info_item)
3480{
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003481 return search_dispatch_table(qmp_query_cmds, info_item);
Luiz Capitulino030db6e2010-09-10 16:03:38 -03003482}
3483
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003484static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3485{
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003486 return search_dispatch_table(qmp_cmds, cmdname);
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003487}
3488
Anthony Liguoric227f092009-10-01 16:12:16 -05003489static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003490 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003491 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003492{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003493 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003494 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003495 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003496 char cmdname[256];
3497 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003498 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003499
3500#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003501 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003502#endif
ths3b46e622007-09-17 08:09:54 +00003503
bellard9307c4c2004-04-04 12:57:25 +00003504 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003505 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3506 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003507 return NULL;
ths3b46e622007-09-17 08:09:54 +00003508
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003509 cmd = monitor_find_command(cmdname);
3510 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003511 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003512 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003513 }
bellard9307c4c2004-04-04 12:57:25 +00003514
bellard9307c4c2004-04-04 12:57:25 +00003515 /* parse the parameters */
3516 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003517 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003518 typestr = key_get_info(typestr, &key);
3519 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003520 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003521 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003522 typestr++;
3523 switch(c) {
3524 case 'F':
bellard81d09122004-07-14 17:21:37 +00003525 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003526 case 's':
3527 {
3528 int ret;
ths3b46e622007-09-17 08:09:54 +00003529
blueswir1cd390082008-11-16 13:53:32 +00003530 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003531 p++;
3532 if (*typestr == '?') {
3533 typestr++;
3534 if (*p == '\0') {
3535 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003536 break;
bellard9307c4c2004-04-04 12:57:25 +00003537 }
3538 }
3539 ret = get_str(buf, sizeof(buf), &p);
3540 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003541 switch(c) {
3542 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003543 monitor_printf(mon, "%s: filename expected\n",
3544 cmdname);
bellard81d09122004-07-14 17:21:37 +00003545 break;
3546 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003547 monitor_printf(mon, "%s: block device name expected\n",
3548 cmdname);
bellard81d09122004-07-14 17:21:37 +00003549 break;
3550 default:
aliguori376253e2009-03-05 23:01:23 +00003551 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003552 break;
3553 }
bellard9307c4c2004-04-04 12:57:25 +00003554 goto fail;
3555 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003556 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003557 }
3558 break;
Markus Armbruster361127d2010-02-10 20:24:35 +01003559 case 'O':
3560 {
3561 QemuOptsList *opts_list;
3562 QemuOpts *opts;
3563
3564 opts_list = qemu_find_opts(key);
3565 if (!opts_list || opts_list->desc->name) {
3566 goto bad_type;
3567 }
3568 while (qemu_isspace(*p)) {
3569 p++;
3570 }
3571 if (!*p)
3572 break;
3573 if (get_str(buf, sizeof(buf), &p) < 0) {
3574 goto fail;
3575 }
3576 opts = qemu_opts_parse(opts_list, buf, 1);
3577 if (!opts) {
3578 goto fail;
3579 }
3580 qemu_opts_to_qdict(opts, qdict);
3581 qemu_opts_del(opts);
3582 }
3583 break;
bellard9307c4c2004-04-04 12:57:25 +00003584 case '/':
3585 {
3586 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003587
blueswir1cd390082008-11-16 13:53:32 +00003588 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003589 p++;
3590 if (*p == '/') {
3591 /* format found */
3592 p++;
3593 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003594 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003595 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003596 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003597 count = count * 10 + (*p - '0');
3598 p++;
3599 }
3600 }
3601 size = -1;
3602 format = -1;
3603 for(;;) {
3604 switch(*p) {
3605 case 'o':
3606 case 'd':
3607 case 'u':
3608 case 'x':
3609 case 'i':
3610 case 'c':
3611 format = *p++;
3612 break;
3613 case 'b':
3614 size = 1;
3615 p++;
3616 break;
3617 case 'h':
3618 size = 2;
3619 p++;
3620 break;
3621 case 'w':
3622 size = 4;
3623 p++;
3624 break;
3625 case 'g':
3626 case 'L':
3627 size = 8;
3628 p++;
3629 break;
3630 default:
3631 goto next;
3632 }
3633 }
3634 next:
blueswir1cd390082008-11-16 13:53:32 +00003635 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003636 monitor_printf(mon, "invalid char in format: '%c'\n",
3637 *p);
bellard9307c4c2004-04-04 12:57:25 +00003638 goto fail;
3639 }
bellard9307c4c2004-04-04 12:57:25 +00003640 if (format < 0)
3641 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003642 if (format != 'i') {
3643 /* for 'i', not specifying a size gives -1 as size */
3644 if (size < 0)
3645 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003646 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003647 }
bellard9307c4c2004-04-04 12:57:25 +00003648 default_fmt_format = format;
3649 } else {
3650 count = 1;
3651 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003652 if (format != 'i') {
3653 size = default_fmt_size;
3654 } else {
3655 size = -1;
3656 }
bellard9307c4c2004-04-04 12:57:25 +00003657 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003658 qdict_put(qdict, "count", qint_from_int(count));
3659 qdict_put(qdict, "format", qint_from_int(format));
3660 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003661 }
3662 break;
3663 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003664 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003665 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003666 {
blueswir1c2efc952007-09-25 17:28:42 +00003667 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003668
blueswir1cd390082008-11-16 13:53:32 +00003669 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003670 p++;
bellard34405572004-06-08 00:55:58 +00003671 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003672 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003673 if (*p == '\0') {
3674 typestr++;
3675 break;
3676 }
bellard34405572004-06-08 00:55:58 +00003677 } else {
3678 if (*p == '.') {
3679 p++;
blueswir1cd390082008-11-16 13:53:32 +00003680 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003681 p++;
bellard34405572004-06-08 00:55:58 +00003682 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003683 typestr++;
3684 break;
bellard34405572004-06-08 00:55:58 +00003685 }
3686 }
bellard13224a82006-07-14 22:03:35 +00003687 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003688 }
aliguori376253e2009-03-05 23:01:23 +00003689 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003690 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003691 /* Check if 'i' is greater than 32-bit */
3692 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3693 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3694 monitor_printf(mon, "integer is for 32-bit values\n");
3695 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003696 } else if (c == 'M') {
3697 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003698 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003699 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003700 }
3701 break;
Markus Armbrusteree9545d2010-03-26 09:07:08 +01003702 case 'f':
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003703 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003704 {
3705 double val;
3706
3707 while (qemu_isspace(*p))
3708 p++;
3709 if (*typestr == '?') {
3710 typestr++;
3711 if (*p == '\0') {
3712 break;
3713 }
3714 }
3715 if (get_double(mon, &val, &p) < 0) {
3716 goto fail;
3717 }
Markus Armbrusteree9545d2010-03-26 09:07:08 +01003718 if (c == 'f' && *p) {
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003719 switch (*p) {
3720 case 'K': case 'k':
3721 val *= 1 << 10; p++; break;
3722 case 'M': case 'm':
3723 val *= 1 << 20; p++; break;
3724 case 'G': case 'g':
3725 val *= 1 << 30; p++; break;
3726 }
3727 }
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003728 if (c == 'T' && p[0] && p[1] == 's') {
3729 switch (*p) {
3730 case 'm':
3731 val /= 1e3; p += 2; break;
3732 case 'u':
3733 val /= 1e6; p += 2; break;
3734 case 'n':
3735 val /= 1e9; p += 2; break;
3736 }
3737 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003738 if (*p && !qemu_isspace(*p)) {
3739 monitor_printf(mon, "Unknown unit suffix\n");
3740 goto fail;
3741 }
3742 qdict_put(qdict, key, qfloat_from_double(val));
3743 }
3744 break;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01003745 case 'b':
3746 {
3747 const char *beg;
3748 int val;
3749
3750 while (qemu_isspace(*p)) {
3751 p++;
3752 }
3753 beg = p;
3754 while (qemu_isgraph(*p)) {
3755 p++;
3756 }
3757 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3758 val = 1;
3759 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3760 val = 0;
3761 } else {
3762 monitor_printf(mon, "Expected 'on' or 'off'\n");
3763 goto fail;
3764 }
3765 qdict_put(qdict, key, qbool_from_int(val));
3766 }
3767 break;
bellard9307c4c2004-04-04 12:57:25 +00003768 case '-':
3769 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003770 const char *tmp = p;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003771 int skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003772 /* option */
ths3b46e622007-09-17 08:09:54 +00003773
bellard9307c4c2004-04-04 12:57:25 +00003774 c = *typestr++;
3775 if (c == '\0')
3776 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003777 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003778 p++;
bellard9307c4c2004-04-04 12:57:25 +00003779 if (*p == '-') {
3780 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003781 if(c != *p) {
3782 if(!is_valid_option(p, typestr)) {
3783
3784 monitor_printf(mon, "%s: unsupported option -%c\n",
3785 cmdname, *p);
3786 goto fail;
3787 } else {
3788 skip_key = 1;
3789 }
bellard9307c4c2004-04-04 12:57:25 +00003790 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003791 if(skip_key) {
3792 p = tmp;
3793 } else {
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003794 /* has option */
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003795 p++;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003796 qdict_put(qdict, key, qbool_from_int(1));
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003797 }
bellard9307c4c2004-04-04 12:57:25 +00003798 }
bellard9307c4c2004-04-04 12:57:25 +00003799 }
3800 break;
3801 default:
3802 bad_type:
aliguori376253e2009-03-05 23:01:23 +00003803 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00003804 goto fail;
3805 }
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003806 qemu_free(key);
3807 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003808 }
3809 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003810 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003811 p++;
3812 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003813 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3814 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00003815 goto fail;
3816 }
3817
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003818 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003819
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003820fail:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003821 qemu_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003822 return NULL;
3823}
3824
Markus Armbrusterd6f46832010-02-17 10:52:26 +01003825void monitor_set_error(Monitor *mon, QError *qerror)
3826{
3827 /* report only the first error */
3828 if (!mon->error) {
3829 mon->error = qerror;
3830 } else {
3831 MON_DEBUG("Additional error report at %s:%d\n",
3832 qerror->file, qerror->linenr);
3833 QDECREF(qerror);
3834 }
3835}
3836
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003837static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3838{
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003839 if (monitor_ctrl_mode(mon)) {
3840 if (ret && !monitor_has_error(mon)) {
3841 /*
3842 * If it returns failure, it must have passed on error.
3843 *
3844 * Action: Report an internal error to the client if in QMP.
3845 */
Markus Armbrusterab5b0272010-03-02 18:15:09 +01003846 qerror_report(QERR_UNDEFINED_ERROR);
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003847 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
3848 cmd->name);
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003849 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003850
3851#ifdef CONFIG_DEBUG_MONITOR
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003852 if (!ret && monitor_has_error(mon)) {
3853 /*
3854 * If it returns success, it must not have passed an error.
3855 *
3856 * Action: Report the passed error to the client.
3857 */
3858 MON_DEBUG("command '%s' returned success but passed an error\n",
3859 cmd->name);
3860 }
Luiz Capitulino10e4f602010-02-10 23:50:06 -02003861
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003862 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
3863 /*
3864 * Handlers should not call Monitor print functions.
3865 *
3866 * Action: Ignore them in QMP.
3867 *
3868 * (XXX: we don't check any 'info' or 'query' command here
3869 * because the user print function _is_ called by do_info(), hence
3870 * we will trigger this check. This problem will go away when we
3871 * make 'query' commands real and kill do_info())
3872 */
3873 MON_DEBUG("command '%s' called print functions %d time(s)\n",
3874 cmd->name, mon_print_count_get(mon));
3875 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003876#endif
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003877 } else {
3878 assert(!monitor_has_error(mon));
3879 QDECREF(mon->error);
3880 mon->error = NULL;
3881 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003882}
3883
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003884static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003885{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003886 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003887 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003888
3889 qdict = qdict_new();
3890
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03003891 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003892 if (!cmd)
3893 goto out;
3894
Luiz Capitulino4903de02010-09-16 11:01:32 -03003895 if (handler_is_async(cmd)) {
Adam Litke940cc302010-01-25 12:18:44 -06003896 user_async_cmd_handler(mon, cmd, qdict);
Luiz Capitulino9e807212010-09-16 10:58:59 -03003897 } else if (handler_is_qobject(cmd)) {
Luiz Capitulinode79ba62010-09-16 11:06:11 -03003898 QObject *data = NULL;
3899
3900 /* XXX: ignores the error code */
3901 cmd->mhandler.cmd_new(mon, qdict, &data);
3902 assert(!monitor_has_error(mon));
3903 if (data) {
3904 cmd->user_print(mon, data);
3905 qobject_decref(data);
3906 }
Luiz Capitulino13917be2009-10-07 13:41:54 -03003907 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03003908 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003909 }
3910
Luiz Capitulino13917be2009-10-07 13:41:54 -03003911out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003912 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00003913}
3914
bellard81d09122004-07-14 17:21:37 +00003915static void cmd_completion(const char *name, const char *list)
3916{
3917 const char *p, *pstart;
3918 char cmd[128];
3919 int len;
3920
3921 p = list;
3922 for(;;) {
3923 pstart = p;
3924 p = strchr(p, '|');
3925 if (!p)
3926 p = pstart + strlen(pstart);
3927 len = p - pstart;
3928 if (len > sizeof(cmd) - 2)
3929 len = sizeof(cmd) - 2;
3930 memcpy(cmd, pstart, len);
3931 cmd[len] = '\0';
3932 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00003933 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00003934 }
3935 if (*p == '\0')
3936 break;
3937 p++;
3938 }
3939}
3940
3941static void file_completion(const char *input)
3942{
3943 DIR *ffs;
3944 struct dirent *d;
3945 char path[1024];
3946 char file[1024], file_prefix[1024];
3947 int input_path_len;
3948 const char *p;
3949
ths5fafdf22007-09-16 21:08:06 +00003950 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00003951 if (!p) {
3952 input_path_len = 0;
3953 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00003954 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00003955 } else {
3956 input_path_len = p - input + 1;
3957 memcpy(path, input, input_path_len);
3958 if (input_path_len > sizeof(path) - 1)
3959 input_path_len = sizeof(path) - 1;
3960 path[input_path_len] = '\0';
3961 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
3962 }
3963#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00003964 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
3965 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00003966#endif
3967 ffs = opendir(path);
3968 if (!ffs)
3969 return;
3970 for(;;) {
3971 struct stat sb;
3972 d = readdir(ffs);
3973 if (!d)
3974 break;
3975 if (strstart(d->d_name, file_prefix, NULL)) {
3976 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00003977 if (input_path_len < sizeof(file))
3978 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
3979 d->d_name);
bellard81d09122004-07-14 17:21:37 +00003980 /* stat the file to find out if it's a directory.
3981 * In that case add a slash to speed up typing long paths
3982 */
3983 stat(file, &sb);
3984 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00003985 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00003986 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00003987 }
3988 }
3989 closedir(ffs);
3990}
3991
aliguori51de9762009-03-05 23:00:43 +00003992static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00003993{
aliguori51de9762009-03-05 23:00:43 +00003994 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00003995 const char *input = opaque;
3996
3997 if (input[0] == '\0' ||
3998 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00003999 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00004000 }
4001}
4002
4003/* NOTE: this parser is an approximate form of the real command parser */
4004static void parse_cmdline(const char *cmdline,
4005 int *pnb_args, char **args)
4006{
4007 const char *p;
4008 int nb_args, ret;
4009 char buf[1024];
4010
4011 p = cmdline;
4012 nb_args = 0;
4013 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00004014 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00004015 p++;
4016 if (*p == '\0')
4017 break;
4018 if (nb_args >= MAX_ARGS)
4019 break;
4020 ret = get_str(buf, sizeof(buf), &p);
4021 args[nb_args] = qemu_strdup(buf);
4022 nb_args++;
4023 if (ret < 0)
4024 break;
4025 }
4026 *pnb_args = nb_args;
4027}
4028
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004029static const char *next_arg_type(const char *typestr)
4030{
4031 const char *p = strchr(typestr, ':');
4032 return (p != NULL ? ++p : typestr);
4033}
4034
aliguori4c36ba32009-03-05 23:01:37 +00004035static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00004036{
4037 const char *cmdname;
4038 char *args[MAX_ARGS];
4039 int nb_args, i, len;
4040 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05004041 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00004042 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00004043
4044 parse_cmdline(cmdline, &nb_args, args);
4045#ifdef DEBUG_COMPLETION
4046 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00004047 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00004048 }
4049#endif
4050
4051 /* if the line ends with a space, it means we want to complete the
4052 next arg */
4053 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00004054 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
Jan Kiszka03a63482010-06-16 00:38:33 +02004055 if (nb_args >= MAX_ARGS) {
4056 goto cleanup;
4057 }
bellard81d09122004-07-14 17:21:37 +00004058 args[nb_args++] = qemu_strdup("");
4059 }
4060 if (nb_args <= 1) {
4061 /* command completion */
4062 if (nb_args == 0)
4063 cmdname = "";
4064 else
4065 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00004066 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00004067 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00004068 cmd_completion(cmdname, cmd->name);
4069 }
4070 } else {
4071 /* find the command */
Jan Kiszka03a63482010-06-16 00:38:33 +02004072 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4073 if (compare_cmd(args[0], cmd->name)) {
4074 break;
4075 }
bellard81d09122004-07-14 17:21:37 +00004076 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004077 if (!cmd->name) {
4078 goto cleanup;
4079 }
4080
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004081 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00004082 for(i = 0; i < nb_args - 2; i++) {
4083 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004084 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004085 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004086 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004087 }
4088 }
4089 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00004090 if (*ptype == '-' && ptype[1] != '\0') {
Jan Kiszka3b6dbf22010-06-16 00:38:34 +02004091 ptype = next_arg_type(ptype);
Blue Swirl2a1704a2009-08-23 20:10:28 +00004092 }
bellard81d09122004-07-14 17:21:37 +00004093 switch(*ptype) {
4094 case 'F':
4095 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00004096 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004097 file_completion(str);
4098 break;
4099 case 'B':
4100 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00004101 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004102 bdrv_iterate(block_completion_it, (void *)str);
4103 break;
bellard7fe48482004-10-09 18:08:01 +00004104 case 's':
4105 /* XXX: more generic ? */
4106 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00004107 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00004108 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4109 cmd_completion(str, cmd->name);
4110 }
bellard64866c32006-05-07 18:03:31 +00004111 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00004112 char *sep = strrchr(str, '-');
4113 if (sep)
4114 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00004115 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00004116 for(key = key_defs; key->name != NULL; key++) {
4117 cmd_completion(str, key->name);
4118 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02004119 } else if (!strcmp(cmd->name, "help|?")) {
4120 readline_set_completion_index(cur_mon->rs, strlen(str));
4121 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4122 cmd_completion(str, cmd->name);
4123 }
bellard7fe48482004-10-09 18:08:01 +00004124 }
4125 break;
bellard81d09122004-07-14 17:21:37 +00004126 default:
4127 break;
4128 }
4129 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004130
4131cleanup:
4132 for (i = 0; i < nb_args; i++) {
bellard81d09122004-07-14 17:21:37 +00004133 qemu_free(args[i]);
Jan Kiszka03a63482010-06-16 00:38:33 +02004134 }
bellard81d09122004-07-14 17:21:37 +00004135}
4136
aliguori731b0362009-03-05 23:01:42 +00004137static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004138{
aliguori731b0362009-03-05 23:01:42 +00004139 Monitor *mon = opaque;
4140
Jan Kiszkac62313b2009-12-04 14:05:29 +01004141 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00004142}
4143
Luiz Capitulino09069b12010-02-04 18:10:06 -02004144static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4145{
4146 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4147 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4148}
4149
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004150/*
Luiz Capitulino4af91932010-06-22 11:44:05 -03004151 * Argument validation rules:
4152 *
4153 * 1. The argument must exist in cmd_args qdict
4154 * 2. The argument type must be the expected one
4155 *
4156 * Special case: If the argument doesn't exist in cmd_args and
4157 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4158 * checking is skipped for it.
4159 */
4160static int check_client_args_type(const QDict *client_args,
4161 const QDict *cmd_args, int flags)
4162{
4163 const QDictEntry *ent;
4164
4165 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4166 QObject *obj;
4167 QString *arg_type;
4168 const QObject *client_arg = qdict_entry_value(ent);
4169 const char *client_arg_name = qdict_entry_key(ent);
4170
4171 obj = qdict_get(cmd_args, client_arg_name);
4172 if (!obj) {
4173 if (flags & QMP_ACCEPT_UNKNOWNS) {
4174 /* handler accepts unknowns */
4175 continue;
4176 }
4177 /* client arg doesn't exist */
4178 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4179 return -1;
4180 }
4181
4182 arg_type = qobject_to_qstring(obj);
4183 assert(arg_type != NULL);
4184
4185 /* check if argument's type is correct */
4186 switch (qstring_get_str(arg_type)[0]) {
4187 case 'F':
4188 case 'B':
4189 case 's':
4190 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4191 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4192 "string");
4193 return -1;
4194 }
4195 break;
4196 case 'i':
4197 case 'l':
4198 case 'M':
4199 if (qobject_type(client_arg) != QTYPE_QINT) {
4200 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4201 "int");
4202 return -1;
4203 }
4204 break;
4205 case 'f':
4206 case 'T':
4207 if (qobject_type(client_arg) != QTYPE_QINT &&
4208 qobject_type(client_arg) != QTYPE_QFLOAT) {
4209 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4210 "number");
4211 return -1;
4212 }
4213 break;
4214 case 'b':
4215 case '-':
4216 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4217 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4218 "bool");
4219 return -1;
4220 }
4221 break;
4222 case 'O':
4223 assert(flags & QMP_ACCEPT_UNKNOWNS);
4224 break;
4225 case '/':
4226 case '.':
4227 /*
4228 * These types are not supported by QMP and thus are not
4229 * handled here. Fall through.
4230 */
4231 default:
4232 abort();
4233 }
4234 }
4235
4236 return 0;
4237}
4238
4239/*
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004240 * - Check if the client has passed all mandatory args
4241 * - Set special flags for argument validation
4242 */
4243static int check_mandatory_args(const QDict *cmd_args,
4244 const QDict *client_args, int *flags)
4245{
4246 const QDictEntry *ent;
4247
4248 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4249 const char *cmd_arg_name = qdict_entry_key(ent);
4250 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4251 assert(type != NULL);
4252
4253 if (qstring_get_str(type)[0] == 'O') {
4254 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4255 *flags |= QMP_ACCEPT_UNKNOWNS;
4256 } else if (qstring_get_str(type)[0] != '-' &&
4257 qstring_get_str(type)[1] != '?' &&
4258 !qdict_haskey(client_args, cmd_arg_name)) {
4259 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4260 return -1;
4261 }
4262 }
4263
4264 return 0;
4265}
4266
4267static QDict *qdict_from_args_type(const char *args_type)
4268{
4269 int i;
4270 QDict *qdict;
4271 QString *key, *type, *cur_qs;
4272
4273 assert(args_type != NULL);
4274
4275 qdict = qdict_new();
4276
4277 if (args_type == NULL || args_type[0] == '\0') {
4278 /* no args, empty qdict */
4279 goto out;
4280 }
4281
4282 key = qstring_new();
4283 type = qstring_new();
4284
4285 cur_qs = key;
4286
4287 for (i = 0;; i++) {
4288 switch (args_type[i]) {
4289 case ',':
4290 case '\0':
4291 qdict_put(qdict, qstring_get_str(key), type);
4292 QDECREF(key);
4293 if (args_type[i] == '\0') {
4294 goto out;
4295 }
4296 type = qstring_new(); /* qdict has ref */
4297 cur_qs = key = qstring_new();
4298 break;
4299 case ':':
4300 cur_qs = type;
4301 break;
4302 default:
4303 qstring_append_chr(cur_qs, args_type[i]);
4304 break;
4305 }
4306 }
4307
4308out:
4309 return qdict;
4310}
4311
4312/*
4313 * Client argument checking rules:
4314 *
4315 * 1. Client must provide all mandatory arguments
Luiz Capitulino4af91932010-06-22 11:44:05 -03004316 * 2. Each argument provided by the client must be expected
4317 * 3. Each argument provided by the client must have the type expected
4318 * by the command
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004319 */
4320static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4321{
4322 int flags, err;
4323 QDict *cmd_args;
4324
4325 cmd_args = qdict_from_args_type(cmd->args_type);
4326
4327 flags = 0;
4328 err = check_mandatory_args(cmd_args, client_args, &flags);
4329 if (err) {
4330 goto out;
4331 }
4332
Luiz Capitulino4af91932010-06-22 11:44:05 -03004333 err = check_client_args_type(client_args, cmd_args, flags);
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004334
4335out:
4336 QDECREF(cmd_args);
4337 return err;
4338}
4339
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004340/*
4341 * Input object checking rules
4342 *
4343 * 1. Input object must be a dict
4344 * 2. The "execute" key must exist
4345 * 3. The "execute" key must be a string
4346 * 4. If the "arguments" key exists, it must be a dict
4347 * 5. If the "id" key exists, it can be anything (ie. json-value)
4348 * 6. Any argument not listed above is considered invalid
4349 */
4350static QDict *qmp_check_input_obj(QObject *input_obj)
4351{
4352 const QDictEntry *ent;
4353 int has_exec_key = 0;
4354 QDict *input_dict;
4355
4356 if (qobject_type(input_obj) != QTYPE_QDICT) {
4357 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4358 return NULL;
4359 }
4360
4361 input_dict = qobject_to_qdict(input_obj);
4362
4363 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4364 const char *arg_name = qdict_entry_key(ent);
4365 const QObject *arg_obj = qdict_entry_value(ent);
4366
4367 if (!strcmp(arg_name, "execute")) {
4368 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4369 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4370 "string");
4371 return NULL;
4372 }
4373 has_exec_key = 1;
4374 } else if (!strcmp(arg_name, "arguments")) {
4375 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4376 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4377 "object");
4378 return NULL;
4379 }
4380 } else if (!strcmp(arg_name, "id")) {
4381 /* FIXME: check duplicated IDs for async commands */
4382 } else {
4383 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4384 return NULL;
4385 }
4386 }
4387
4388 if (!has_exec_key) {
4389 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4390 return NULL;
4391 }
4392
4393 return input_dict;
4394}
4395
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004396static void qmp_call_query_cmd(Monitor *mon, const mon_cmd_t *cmd)
4397{
4398 QObject *ret_data = NULL;
4399
Luiz Capitulino4903de02010-09-16 11:01:32 -03004400 if (handler_is_async(cmd)) {
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004401 qmp_async_info_handler(mon, cmd);
4402 if (monitor_has_error(mon)) {
4403 monitor_protocol_emitter(mon, NULL);
4404 }
4405 } else {
4406 cmd->mhandler.info_new(mon, &ret_data);
4407 if (ret_data) {
4408 monitor_protocol_emitter(mon, ret_data);
4409 qobject_decref(ret_data);
4410 }
4411 }
4412}
4413
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004414static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4415 const QDict *params)
4416{
4417 int ret;
4418 QObject *data = NULL;
4419
4420 mon_print_count_init(mon);
4421
4422 ret = cmd->mhandler.cmd_new(mon, params, &data);
4423 handler_audit(mon, cmd, ret);
4424 monitor_protocol_emitter(mon, data);
4425 qobject_decref(data);
4426}
4427
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004428static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4429{
4430 int err;
4431 QObject *obj;
4432 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004433 const mon_cmd_t *cmd;
4434 Monitor *mon = cur_mon;
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004435 const char *cmd_name, *query_cmd;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004436
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004437 query_cmd = NULL;
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004438 args = input = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004439
4440 obj = json_parser_parse(tokens, NULL);
4441 if (!obj) {
4442 // FIXME: should be triggered in json_parser_parse()
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004443 qerror_report(QERR_JSON_PARSING);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004444 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004445 }
4446
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004447 input = qmp_check_input_obj(obj);
4448 if (!input) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004449 qobject_decref(obj);
4450 goto err_out;
4451 }
4452
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004453 mon->mc->id = qdict_get(input, "id");
4454 qobject_incref(mon->mc->id);
4455
Luiz Capitulino0bbab462010-05-31 17:32:50 -03004456 cmd_name = qdict_get_str(input, "execute");
Luiz Capitulino09069b12010-02-04 18:10:06 -02004457 if (invalid_qmp_mode(mon, cmd_name)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004458 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004459 goto err_out;
Luiz Capitulino09069b12010-02-04 18:10:06 -02004460 }
4461
Luiz Capitulinod1249ea2010-09-13 14:44:27 -03004462 if (strstart(cmd_name, "query-", &query_cmd)) {
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004463 cmd = qmp_find_query_cmd(query_cmd);
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004464 } else {
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03004465 cmd = qmp_find_cmd(cmd_name);
Luiz Capitulino0fb88582010-09-15 10:56:17 -03004466 }
4467
Luiz Capitulinod1249ea2010-09-13 14:44:27 -03004468 if (!cmd) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004469 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4470 goto err_out;
4471 }
4472
4473 obj = qdict_get(input, "arguments");
4474 if (!obj) {
4475 args = qdict_new();
4476 } else {
4477 args = qobject_to_qdict(obj);
4478 QINCREF(args);
4479 }
4480
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004481 err = qmp_check_client_args(cmd, args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004482 if (err < 0) {
4483 goto err_out;
4484 }
4485
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004486 if (query_cmd) {
4487 qmp_call_query_cmd(mon, cmd);
Luiz Capitulino4903de02010-09-16 11:01:32 -03004488 } else if (handler_is_async(cmd)) {
Luiz Capitulino5af7bba2010-06-22 19:10:46 -03004489 err = qmp_async_cmd_handler(mon, cmd, args);
4490 if (err) {
4491 /* emit the error response */
4492 goto err_out;
4493 }
Adam Litke940cc302010-01-25 12:18:44 -06004494 } else {
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004495 qmp_call_cmd(mon, cmd, args);
Adam Litke940cc302010-01-25 12:18:44 -06004496 }
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004497
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004498 goto out;
4499
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004500err_out:
4501 monitor_protocol_emitter(mon, NULL);
4502out:
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004503 QDECREF(input);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004504 QDECREF(args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004505}
4506
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004507/**
4508 * monitor_control_read(): Read and handle QMP input
4509 */
4510static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4511{
4512 Monitor *old_mon = cur_mon;
4513
4514 cur_mon = opaque;
4515
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004516 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004517
4518 cur_mon = old_mon;
4519}
4520
aliguori731b0362009-03-05 23:01:42 +00004521static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004522{
aliguori731b0362009-03-05 23:01:42 +00004523 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004524 int i;
aliguori376253e2009-03-05 23:01:23 +00004525
aliguori731b0362009-03-05 23:01:42 +00004526 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004527
aliguoricde76ee2009-03-05 23:01:51 +00004528 if (cur_mon->rs) {
4529 for (i = 0; i < size; i++)
4530 readline_handle_byte(cur_mon->rs, buf[i]);
4531 } else {
4532 if (size == 0 || buf[size - 1] != 0)
4533 monitor_printf(cur_mon, "corrupted command\n");
4534 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004535 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00004536 }
aliguori731b0362009-03-05 23:01:42 +00004537
4538 cur_mon = old_mon;
4539}
aliguorid8f44602008-10-06 13:52:44 +00004540
aliguori376253e2009-03-05 23:01:23 +00004541static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004542{
aliguori731b0362009-03-05 23:01:42 +00004543 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004544 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00004545 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00004546}
4547
aliguoricde76ee2009-03-05 23:01:51 +00004548int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004549{
aliguoricde76ee2009-03-05 23:01:51 +00004550 if (!mon->rs)
4551 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00004552 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00004553 return 0;
aliguorid8f44602008-10-06 13:52:44 +00004554}
4555
aliguori376253e2009-03-05 23:01:23 +00004556void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004557{
aliguoricde76ee2009-03-05 23:01:51 +00004558 if (!mon->rs)
4559 return;
aliguori731b0362009-03-05 23:01:42 +00004560 if (--mon->suspend_cnt == 0)
4561 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00004562}
4563
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004564static QObject *get_qmp_greeting(void)
4565{
4566 QObject *ver;
4567
4568 do_info_version(NULL, &ver);
4569 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4570}
4571
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004572/**
4573 * monitor_control_event(): Print QMP gretting
4574 */
4575static void monitor_control_event(void *opaque, int event)
4576{
Luiz Capitulino47116d12010-02-08 17:01:30 -02004577 QObject *data;
4578 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004579
Luiz Capitulino47116d12010-02-08 17:01:30 -02004580 switch (event) {
4581 case CHR_EVENT_OPENED:
Luiz Capitulino4a7e1192010-02-04 18:10:05 -02004582 mon->mc->command_mode = 0;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004583 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004584 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004585 monitor_json_emitter(mon, data);
4586 qobject_decref(data);
Luiz Capitulino47116d12010-02-08 17:01:30 -02004587 break;
4588 case CHR_EVENT_CLOSED:
4589 json_message_parser_destroy(&mon->mc->parser);
4590 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004591 }
4592}
4593
aliguori731b0362009-03-05 23:01:42 +00004594static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00004595{
aliguori376253e2009-03-05 23:01:23 +00004596 Monitor *mon = opaque;
4597
aliguori2724b182009-03-05 23:01:47 +00004598 switch (event) {
4599 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004600 mon->mux_out = 0;
4601 if (mon->reset_seen) {
4602 readline_restart(mon->rs);
4603 monitor_resume(mon);
4604 monitor_flush(mon);
4605 } else {
4606 mon->suspend_cnt = 0;
4607 }
aliguori2724b182009-03-05 23:01:47 +00004608 break;
ths86e94de2007-01-05 22:01:59 +00004609
aliguori2724b182009-03-05 23:01:47 +00004610 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004611 if (mon->reset_seen) {
4612 if (mon->suspend_cnt == 0) {
4613 monitor_printf(mon, "\n");
4614 }
4615 monitor_flush(mon);
4616 monitor_suspend(mon);
4617 } else {
4618 mon->suspend_cnt++;
4619 }
4620 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00004621 break;
4622
Amit Shahb6b8df52009-10-07 18:31:16 +05304623 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00004624 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4625 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004626 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00004627 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004628 }
4629 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00004630 break;
4631 }
ths86e94de2007-01-05 22:01:59 +00004632}
4633
aliguori76655d62009-03-06 20:27:37 +00004634
4635/*
4636 * Local variables:
4637 * c-indent-level: 4
4638 * c-basic-offset: 4
4639 * tab-width: 8
4640 * End:
4641 */
4642
aliguori731b0362009-03-05 23:01:42 +00004643void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004644{
aliguori731b0362009-03-05 23:01:42 +00004645 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00004646 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00004647
4648 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00004649 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00004650 is_first_init = 0;
4651 }
aliguori87127162009-03-05 23:01:29 +00004652
4653 mon = qemu_mallocz(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00004654
aliguori87127162009-03-05 23:01:29 +00004655 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00004656 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00004657 if (flags & MONITOR_USE_READLINE) {
4658 mon->rs = readline_init(mon, monitor_find_completion);
4659 monitor_read_command(mon, 0);
4660 }
aliguori87127162009-03-05 23:01:29 +00004661
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004662 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004663 mon->mc = qemu_mallocz(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004664 /* Control mode requires special handlers */
4665 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4666 monitor_control_event, mon);
4667 } else {
4668 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4669 monitor_event, mon);
4670 }
aliguori87127162009-03-05 23:01:29 +00004671
Blue Swirl72cf2d42009-09-12 07:36:22 +00004672 QLIST_INSERT_HEAD(&mon_list, mon, entry);
Markus Armbruster8631b602010-02-18 11:41:55 +01004673 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4674 default_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00004675}
4676
aliguori376253e2009-03-05 23:01:23 +00004677static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004678{
aliguoribb5fc202009-03-05 23:01:15 +00004679 BlockDriverState *bs = opaque;
4680 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00004681
aliguoribb5fc202009-03-05 23:01:15 +00004682 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00004683 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00004684 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00004685 }
aliguori731b0362009-03-05 23:01:42 +00004686 if (mon->password_completion_cb)
4687 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00004688
aliguori731b0362009-03-05 23:01:42 +00004689 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00004690}
aliguoric0f4ce72009-03-05 23:01:01 +00004691
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004692int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4693 BlockDriverCompletionFunc *completion_cb,
4694 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00004695{
aliguoricde76ee2009-03-05 23:01:51 +00004696 int err;
4697
aliguoribb5fc202009-03-05 23:01:15 +00004698 if (!bdrv_key_required(bs)) {
4699 if (completion_cb)
4700 completion_cb(opaque, 0);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004701 return 0;
aliguoribb5fc202009-03-05 23:01:15 +00004702 }
aliguoric0f4ce72009-03-05 23:01:01 +00004703
Luiz Capitulino94171e12009-12-07 21:37:00 +01004704 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004705 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004706 return -1;
Luiz Capitulino94171e12009-12-07 21:37:00 +01004707 }
4708
aliguori376253e2009-03-05 23:01:23 +00004709 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4710 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00004711
aliguori731b0362009-03-05 23:01:42 +00004712 mon->password_completion_cb = completion_cb;
4713 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00004714
aliguoricde76ee2009-03-05 23:01:51 +00004715 err = monitor_read_password(mon, bdrv_password_cb, bs);
4716
4717 if (err && completion_cb)
4718 completion_cb(opaque, err);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004719
4720 return err;
aliguoric0f4ce72009-03-05 23:01:01 +00004721}