blob: 1296c40256a3bfdfadcfc7596e6cc06467146c6c [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)
Jes Sorensendbc0c672010-10-21 17:15:47 +020081 * 'o' octets (aka bytes)
82 * user mode accepts an optional T, t, G, g, M, m, K, k
83 * suffix, which multiplies the value by 2^40 for
84 * suffixes T and t, 2^30 for suffixes G and g, 2^20 for
85 * M and m, 2^10 for K and k
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +010086 * 'T' double
87 * user mode accepts an optional ms, us, ns suffix,
88 * which divides the value by 1e3, 1e6, 1e9, respectively
bellard9307c4c2004-04-04 12:57:25 +000089 * '/' optional gdb-like print format (like "/10x")
90 *
Luiz Capitulinofb466602009-08-28 15:27:27 -030091 * '?' optional type (for all types, except '/')
92 * '.' other form of optional type (for 'i' and 'l')
Markus Armbruster942cd1f2010-03-26 09:07:09 +010093 * 'b' boolean
94 * user mode accepts "on" or "off"
Luiz Capitulinofb466602009-08-28 15:27:27 -030095 * '-' optional parameter (eg. '-f')
bellard9307c4c2004-04-04 12:57:25 +000096 *
97 */
98
Adam Litke940cc302010-01-25 12:18:44 -060099typedef struct MonitorCompletionData MonitorCompletionData;
100struct MonitorCompletionData {
101 Monitor *mon;
102 void (*user_print)(Monitor *mon, const QObject *data);
103};
104
Anthony Liguoric227f092009-10-01 16:12:16 -0500105typedef struct mon_cmd_t {
bellard9dc39cb2004-03-14 21:38:27 +0000106 const char *name;
bellard9307c4c2004-04-04 12:57:25 +0000107 const char *args_type;
bellard9dc39cb2004-03-14 21:38:27 +0000108 const char *params;
109 const char *help;
Luiz Capitulinoa2876f52009-10-07 13:41:53 -0300110 void (*user_print)(Monitor *mon, const QObject *data);
Luiz Capitulino910df892009-10-07 13:41:51 -0300111 union {
112 void (*info)(Monitor *mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300113 void (*info_new)(Monitor *mon, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600114 int (*info_async)(Monitor *mon, MonitorCompletion *cb, void *opaque);
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300115 void (*cmd)(Monitor *mon, const QDict *qdict);
Luiz Capitulino261394d2010-02-10 23:50:02 -0200116 int (*cmd_new)(Monitor *mon, const QDict *params, QObject **ret_data);
Adam Litke940cc302010-01-25 12:18:44 -0600117 int (*cmd_async)(Monitor *mon, const QDict *params,
118 MonitorCompletion *cb, void *opaque);
Luiz Capitulino910df892009-10-07 13:41:51 -0300119 } mhandler;
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200120 int flags;
Anthony Liguoric227f092009-10-01 16:12:16 -0500121} mon_cmd_t;
bellard9dc39cb2004-03-14 21:38:27 +0000122
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100123/* file descriptors passed via SCM_RIGHTS */
Anthony Liguoric227f092009-10-01 16:12:16 -0500124typedef struct mon_fd_t mon_fd_t;
125struct mon_fd_t {
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100126 char *name;
127 int fd;
Anthony Liguoric227f092009-10-01 16:12:16 -0500128 QLIST_ENTRY(mon_fd_t) next;
Mark McLoughlinf07918f2009-07-22 09:11:40 +0100129};
130
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200131typedef struct MonitorControl {
132 QObject *id;
133 JSONMessageParser parser;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200134 int command_mode;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200135} MonitorControl;
136
aliguori87127162009-03-05 23:01:29 +0000137struct Monitor {
138 CharDriverState *chr;
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200139 int mux_out;
140 int reset_seen;
aliguori731b0362009-03-05 23:01:42 +0000141 int flags;
142 int suspend_cnt;
143 uint8_t outbuf[1024];
144 int outbuf_index;
145 ReadLineState *rs;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200146 MonitorControl *mc;
aliguori731b0362009-03-05 23:01:42 +0000147 CPUState *mon_cpu;
148 BlockDriverCompletionFunc *password_completion_cb;
149 void *password_opaque;
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200150#ifdef CONFIG_DEBUG_MONITOR
151 int print_calls_nr;
152#endif
Luiz Capitulino8204a912009-11-18 23:05:31 -0200153 QError *error;
Anthony Liguoric227f092009-10-01 16:12:16 -0500154 QLIST_HEAD(,mon_fd_t) fds;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000155 QLIST_ENTRY(Monitor) entry;
aliguori87127162009-03-05 23:01:29 +0000156};
157
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200158#ifdef CONFIG_DEBUG_MONITOR
159#define MON_DEBUG(fmt, ...) do { \
160 fprintf(stderr, "Monitor: "); \
161 fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200162
163static inline void mon_print_count_inc(Monitor *mon)
164{
165 mon->print_calls_nr++;
166}
167
168static inline void mon_print_count_init(Monitor *mon)
169{
170 mon->print_calls_nr = 0;
171}
172
173static inline int mon_print_count_get(const Monitor *mon)
174{
175 return mon->print_calls_nr;
176}
177
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200178#else /* !CONFIG_DEBUG_MONITOR */
179#define MON_DEBUG(fmt, ...) do { } while (0)
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200180static inline void mon_print_count_inc(Monitor *mon) { }
181static inline void mon_print_count_init(Monitor *mon) { }
182static inline int mon_print_count_get(const Monitor *mon) { return 0; }
Luiz Capitulinob4475aa2010-02-10 23:50:03 -0200183#endif /* CONFIG_DEBUG_MONITOR */
184
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -0300185/* QMP checker flags */
186#define QMP_ACCEPT_UNKNOWNS 1
187
Blue Swirl72cf2d42009-09-12 07:36:22 +0000188static QLIST_HEAD(mon_list, Monitor) mon_list;
bellard7e2515e2004-08-01 21:52:19 +0000189
Anthony Liguoric227f092009-10-01 16:12:16 -0500190static const mon_cmd_t mon_cmds[];
191static const mon_cmd_t info_cmds[];
bellard9dc39cb2004-03-14 21:38:27 +0000192
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300193static const mon_cmd_t qmp_cmds[];
Luiz Capitulino3e12a752010-09-15 17:20:33 -0300194static const mon_cmd_t qmp_query_cmds[];
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300195
Markus Armbruster8631b602010-02-18 11:41:55 +0100196Monitor *cur_mon;
197Monitor *default_mon;
aliguori376253e2009-03-05 23:01:23 +0000198
aliguori731b0362009-03-05 23:01:42 +0000199static void monitor_command_cb(Monitor *mon, const char *cmdline,
200 void *opaque);
aliguori83ab7952008-08-19 14:44:22 +0000201
Luiz Capitulino09069b12010-02-04 18:10:06 -0200202static inline int qmp_cmd_mode(const Monitor *mon)
203{
204 return (mon->mc ? mon->mc->command_mode : 0);
205}
206
Luiz Capitulino418173c2009-11-26 22:58:51 -0200207/* Return true if in control mode, false otherwise */
208static inline int monitor_ctrl_mode(const Monitor *mon)
209{
210 return (mon->flags & MONITOR_USE_CONTROL);
211}
212
Markus Armbruster6620d3c2010-02-11 17:05:43 +0100213/* Return non-zero iff we have a current monitor, and it is in QMP mode. */
214int monitor_cur_is_qmp(void)
215{
216 return cur_mon && monitor_ctrl_mode(cur_mon);
217}
218
aliguori731b0362009-03-05 23:01:42 +0000219static void monitor_read_command(Monitor *mon, int show_prompt)
220{
Luiz Capitulino183e6e52009-12-14 18:53:23 -0200221 if (!mon->rs)
222 return;
223
aliguori731b0362009-03-05 23:01:42 +0000224 readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL);
225 if (show_prompt)
226 readline_show_prompt(mon->rs);
227}
bellard6a00d602005-11-21 23:25:50 +0000228
aliguoricde76ee2009-03-05 23:01:51 +0000229static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
230 void *opaque)
aliguoribb5fc202009-03-05 23:01:15 +0000231{
Luiz Capitulino94171e12009-12-07 21:37:00 +0100232 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +0100233 qerror_report(QERR_MISSING_PARAMETER, "password");
Luiz Capitulino94171e12009-12-07 21:37:00 +0100234 return -EINVAL;
235 } else if (mon->rs) {
aliguoricde76ee2009-03-05 23:01:51 +0000236 readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
237 /* prompt is printed on return from the command handler */
238 return 0;
239 } else {
240 monitor_printf(mon, "terminal does not support password prompting\n");
241 return -ENOTTY;
242 }
aliguoribb5fc202009-03-05 23:01:15 +0000243}
244
aliguori376253e2009-03-05 23:01:23 +0000245void monitor_flush(Monitor *mon)
bellard9dc39cb2004-03-14 21:38:27 +0000246{
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +0200247 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
aliguori731b0362009-03-05 23:01:42 +0000248 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
249 mon->outbuf_index = 0;
bellard7e2515e2004-08-01 21:52:19 +0000250 }
251}
252
253/* flush at every end of line or if the buffer is full */
aliguori376253e2009-03-05 23:01:23 +0000254static void monitor_puts(Monitor *mon, const char *str)
bellard7e2515e2004-08-01 21:52:19 +0000255{
ths60fe76f2007-12-16 03:02:09 +0000256 char c;
aliguori731b0362009-03-05 23:01:42 +0000257
bellard7e2515e2004-08-01 21:52:19 +0000258 for(;;) {
259 c = *str++;
260 if (c == '\0')
261 break;
bellard7ba12602006-07-14 20:26:42 +0000262 if (c == '\n')
aliguori731b0362009-03-05 23:01:42 +0000263 mon->outbuf[mon->outbuf_index++] = '\r';
264 mon->outbuf[mon->outbuf_index++] = c;
265 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
266 || c == '\n')
aliguori376253e2009-03-05 23:01:23 +0000267 monitor_flush(mon);
bellard7e2515e2004-08-01 21:52:19 +0000268 }
269}
270
aliguori376253e2009-03-05 23:01:23 +0000271void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
bellard7e2515e2004-08-01 21:52:19 +0000272{
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200273 char buf[4096];
274
Luiz Capitulino2daa1192009-12-14 18:53:24 -0200275 if (!mon)
276 return;
277
Luiz Capitulino10e4f602010-02-10 23:50:06 -0200278 mon_print_count_inc(mon);
279
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200280 if (monitor_ctrl_mode(mon)) {
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200281 return;
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200282 }
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200283
284 vsnprintf(buf, sizeof(buf), fmt, ap);
285 monitor_puts(mon, buf);
bellard7e2515e2004-08-01 21:52:19 +0000286}
287
aliguori376253e2009-03-05 23:01:23 +0000288void monitor_printf(Monitor *mon, const char *fmt, ...)
bellard7e2515e2004-08-01 21:52:19 +0000289{
290 va_list ap;
291 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000292 monitor_vprintf(mon, fmt, ap);
bellard7e2515e2004-08-01 21:52:19 +0000293 va_end(ap);
bellard9dc39cb2004-03-14 21:38:27 +0000294}
295
aliguori376253e2009-03-05 23:01:23 +0000296void monitor_print_filename(Monitor *mon, const char *filename)
thsfef30742006-12-22 14:11:32 +0000297{
298 int i;
299
300 for (i = 0; filename[i]; i++) {
aliguori28a76be2009-03-06 20:27:40 +0000301 switch (filename[i]) {
302 case ' ':
303 case '"':
304 case '\\':
305 monitor_printf(mon, "\\%c", filename[i]);
306 break;
307 case '\t':
308 monitor_printf(mon, "\\t");
309 break;
310 case '\r':
311 monitor_printf(mon, "\\r");
312 break;
313 case '\n':
314 monitor_printf(mon, "\\n");
315 break;
316 default:
317 monitor_printf(mon, "%c", filename[i]);
318 break;
319 }
thsfef30742006-12-22 14:11:32 +0000320 }
321}
322
Stefan Weil8b7968f2010-09-23 21:28:05 +0200323static int GCC_FMT_ATTR(2, 3) monitor_fprintf(FILE *stream,
324 const char *fmt, ...)
bellard7fe48482004-10-09 18:08:01 +0000325{
326 va_list ap;
327 va_start(ap, fmt);
aliguori376253e2009-03-05 23:01:23 +0000328 monitor_vprintf((Monitor *)stream, fmt, ap);
bellard7fe48482004-10-09 18:08:01 +0000329 va_end(ap);
330 return 0;
331}
332
Luiz Capitulino13c74252009-10-07 13:41:55 -0300333static void monitor_user_noop(Monitor *mon, const QObject *data) { }
334
Luiz Capitulino9e807212010-09-16 10:58:59 -0300335static inline int handler_is_qobject(const mon_cmd_t *cmd)
Luiz Capitulino13917be2009-10-07 13:41:54 -0300336{
337 return cmd->user_print != NULL;
338}
339
Luiz Capitulino4903de02010-09-16 11:01:32 -0300340static inline bool handler_is_async(const mon_cmd_t *cmd)
Adam Litke940cc302010-01-25 12:18:44 -0600341{
Jan Kiszka8ac470c2010-06-16 00:38:39 +0200342 return cmd->flags & MONITOR_CMD_ASYNC;
Adam Litke940cc302010-01-25 12:18:44 -0600343}
344
Luiz Capitulino8204a912009-11-18 23:05:31 -0200345static inline int monitor_has_error(const Monitor *mon)
346{
347 return mon->error != NULL;
348}
349
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200350static void monitor_json_emitter(Monitor *mon, const QObject *data)
351{
352 QString *json;
353
Daniel P. Berrange39eaab92010-06-07 15:42:31 +0100354 if (mon->flags & MONITOR_USE_PRETTY)
355 json = qobject_to_json_pretty(data);
356 else
357 json = qobject_to_json(data);
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200358 assert(json != NULL);
359
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200360 qstring_append_chr(json, '\n');
361 monitor_puts(mon, qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200362
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200363 QDECREF(json);
364}
365
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200366static void monitor_protocol_emitter(Monitor *mon, QObject *data)
367{
368 QDict *qmp;
369
370 qmp = qdict_new();
371
372 if (!monitor_has_error(mon)) {
373 /* success response */
374 if (data) {
375 qobject_incref(data);
376 qdict_put_obj(qmp, "return", data);
377 } else {
Luiz Capitulino0abc6572009-12-18 13:25:00 -0200378 /* return an empty QDict by default */
379 qdict_put(qmp, "return", qdict_new());
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200380 }
381 } else {
382 /* error response */
Markus Armbruster77e595e2009-12-07 21:37:16 +0100383 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200384 qdict_put(qmp, "error", mon->error->error);
385 QINCREF(mon->error->error);
386 QDECREF(mon->error);
387 mon->error = NULL;
388 }
389
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200390 if (mon->mc->id) {
391 qdict_put_obj(qmp, "id", mon->mc->id);
392 mon->mc->id = NULL;
393 }
394
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200395 monitor_json_emitter(mon, QOBJECT(qmp));
396 QDECREF(qmp);
397}
398
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200399static void timestamp_put(QDict *qdict)
400{
401 int err;
402 QObject *obj;
Blue Swirld08d6f02009-12-04 18:06:39 +0000403 qemu_timeval tv;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200404
Blue Swirld08d6f02009-12-04 18:06:39 +0000405 err = qemu_gettimeofday(&tv);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200406 if (err < 0)
407 return;
408
409 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
410 "'microseconds': %" PRId64 " }",
411 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200412 qdict_put_obj(qdict, "timestamp", obj);
413}
414
415/**
416 * monitor_protocol_event(): Generate a Monitor event
417 *
418 * Event-specific data can be emitted through the (optional) 'data' parameter.
419 */
420void monitor_protocol_event(MonitorEvent event, QObject *data)
421{
422 QDict *qmp;
423 const char *event_name;
Adam Litkef039a562010-01-15 08:34:02 -0600424 Monitor *mon;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200425
Blue Swirl242cd002009-12-04 18:05:45 +0000426 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200427
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200428 switch (event) {
Blue Swirl242cd002009-12-04 18:05:45 +0000429 case QEVENT_SHUTDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200430 event_name = "SHUTDOWN";
431 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000432 case QEVENT_RESET:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200433 event_name = "RESET";
434 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000435 case QEVENT_POWERDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200436 event_name = "POWERDOWN";
437 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000438 case QEVENT_STOP:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200439 event_name = "STOP";
440 break;
Luiz Capitulino6ed2c482010-04-27 20:35:59 -0300441 case QEVENT_RESUME:
442 event_name = "RESUME";
443 break;
Luiz Capitulino586153d2010-01-14 14:50:57 -0200444 case QEVENT_VNC_CONNECTED:
445 event_name = "VNC_CONNECTED";
446 break;
Luiz Capitulino0d2ed462010-01-14 14:50:59 -0200447 case QEVENT_VNC_INITIALIZED:
448 event_name = "VNC_INITIALIZED";
449 break;
Luiz Capitulino0d72f3d2010-01-14 14:50:58 -0200450 case QEVENT_VNC_DISCONNECTED:
451 event_name = "VNC_DISCONNECTED";
452 break;
Luiz Capitulinoaa1db6e2010-02-03 12:41:00 -0200453 case QEVENT_BLOCK_IO_ERROR:
454 event_name = "BLOCK_IO_ERROR";
455 break;
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300456 case QEVENT_RTC_CHANGE:
457 event_name = "RTC_CHANGE";
458 break;
Luiz Capitulino9eedeb32010-02-25 12:13:04 -0300459 case QEVENT_WATCHDOG:
460 event_name = "WATCHDOG";
461 break;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200462 default:
463 abort();
464 break;
465 }
466
467 qmp = qdict_new();
468 timestamp_put(qmp);
469 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200470 if (data) {
471 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200472 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200473 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200474
Adam Litkef039a562010-01-15 08:34:02 -0600475 QLIST_FOREACH(mon, &mon_list, entry) {
Luiz Capitulino09069b12010-02-04 18:10:06 -0200476 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
Luiz Capitulino23fabed2010-01-20 10:37:59 -0200477 monitor_json_emitter(mon, QOBJECT(qmp));
478 }
Adam Litkef039a562010-01-15 08:34:02 -0600479 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200480 QDECREF(qmp);
481}
482
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200483static int do_qmp_capabilities(Monitor *mon, const QDict *params,
484 QObject **ret_data)
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200485{
486 /* Will setup QMP capabilities in the future */
487 if (monitor_ctrl_mode(mon)) {
488 mon->mc->command_mode = 1;
489 }
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200490
491 return 0;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200492}
493
Luiz Capitulino0268d972010-10-22 10:08:02 -0200494static int mon_set_cpu(int cpu_index);
495static void handle_user_command(Monitor *mon, const char *cmdline);
496
497static int do_hmp_passthrough(Monitor *mon, const QDict *params,
498 QObject **ret_data)
499{
500 int ret = 0;
501 Monitor *old_mon, hmp;
502 CharDriverState mchar;
503
504 memset(&hmp, 0, sizeof(hmp));
505 qemu_chr_init_mem(&mchar);
506 hmp.chr = &mchar;
507
508 old_mon = cur_mon;
509 cur_mon = &hmp;
510
511 if (qdict_haskey(params, "cpu-index")) {
512 ret = mon_set_cpu(qdict_get_int(params, "cpu-index"));
513 if (ret < 0) {
514 cur_mon = old_mon;
515 qerror_report(QERR_INVALID_PARAMETER_VALUE, "cpu-index", "a CPU number");
516 goto out;
517 }
518 }
519
520 handle_user_command(&hmp, qdict_get_str(params, "command-line"));
521 cur_mon = old_mon;
522
523 if (qemu_chr_mem_osize(hmp.chr) > 0) {
524 *ret_data = QOBJECT(qemu_chr_mem_to_qs(hmp.chr));
525 }
526
527out:
528 qemu_chr_close_mem(hmp.chr);
529 return ret;
530}
531
bellard9dc39cb2004-03-14 21:38:27 +0000532static int compare_cmd(const char *name, const char *list)
533{
534 const char *p, *pstart;
535 int len;
536 len = strlen(name);
537 p = list;
538 for(;;) {
539 pstart = p;
540 p = strchr(p, '|');
541 if (!p)
542 p = pstart + strlen(pstart);
543 if ((p - pstart) == len && !memcmp(pstart, name, len))
544 return 1;
545 if (*p == '\0')
546 break;
547 p++;
548 }
549 return 0;
550}
551
Anthony Liguoric227f092009-10-01 16:12:16 -0500552static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000553 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000554{
Anthony Liguoric227f092009-10-01 16:12:16 -0500555 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000556
557 for(cmd = cmds; cmd->name != NULL; cmd++) {
558 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000559 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
560 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000561 }
562}
563
aliguori376253e2009-03-05 23:01:23 +0000564static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000565{
566 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000567 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000568 } else {
aliguori376253e2009-03-05 23:01:23 +0000569 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000570 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000571 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000572 monitor_printf(mon, "Log items (comma separated):\n");
573 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000574 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000575 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000576 }
577 }
bellard9dc39cb2004-03-14 21:38:27 +0000578 }
579}
580
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300581static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300582{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300583 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300584}
585
Prerna Saxena22890ab2010-06-24 17:04:53 +0530586#ifdef CONFIG_SIMPLE_TRACE
587static void do_change_trace_event_state(Monitor *mon, const QDict *qdict)
588{
589 const char *tp_name = qdict_get_str(qdict, "name");
590 bool new_state = qdict_get_bool(qdict, "option");
Blue Swirlf871d682010-10-13 19:14:29 +0000591 int ret = st_change_trace_event_state(tp_name, new_state);
592
593 if (!ret) {
594 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
595 }
Prerna Saxena22890ab2010-06-24 17:04:53 +0530596}
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100597
598static void do_trace_file(Monitor *mon, const QDict *qdict)
599{
600 const char *op = qdict_get_try_str(qdict, "op");
601 const char *arg = qdict_get_try_str(qdict, "arg");
602
603 if (!op) {
604 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
605 } else if (!strcmp(op, "on")) {
606 st_set_trace_file_enabled(true);
607 } else if (!strcmp(op, "off")) {
608 st_set_trace_file_enabled(false);
609 } else if (!strcmp(op, "flush")) {
610 st_flush_trace_buffer();
611 } else if (!strcmp(op, "set")) {
612 if (arg) {
613 st_set_trace_file(arg);
614 }
615 } else {
616 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
617 help_cmd(mon, "trace-file");
618 }
619}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530620#endif
621
Adam Litke940cc302010-01-25 12:18:44 -0600622static void user_monitor_complete(void *opaque, QObject *ret_data)
623{
624 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
625
626 if (ret_data) {
627 data->user_print(data->mon, ret_data);
628 }
629 monitor_resume(data->mon);
630 qemu_free(data);
631}
632
633static void qmp_monitor_complete(void *opaque, QObject *ret_data)
634{
635 monitor_protocol_emitter(opaque, ret_data);
636}
637
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300638static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
639 const QDict *params)
Adam Litke940cc302010-01-25 12:18:44 -0600640{
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300641 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
Adam Litke940cc302010-01-25 12:18:44 -0600642}
643
644static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
645{
646 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
647}
648
649static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
650 const QDict *params)
651{
652 int ret;
653
654 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
655 cb_data->mon = mon;
656 cb_data->user_print = cmd->user_print;
657 monitor_suspend(mon);
658 ret = cmd->mhandler.cmd_async(mon, params,
659 user_monitor_complete, cb_data);
660 if (ret < 0) {
661 monitor_resume(mon);
662 qemu_free(cb_data);
663 }
664}
665
666static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
667{
668 int ret;
669
670 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
671 cb_data->mon = mon;
672 cb_data->user_print = cmd->user_print;
673 monitor_suspend(mon);
674 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
675 if (ret < 0) {
676 monitor_resume(mon);
677 qemu_free(cb_data);
678 }
679}
680
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300681static void do_info(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000682{
Anthony Liguoric227f092009-10-01 16:12:16 -0500683 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300684 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000685
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200686 if (!item) {
bellard9dc39cb2004-03-14 21:38:27 +0000687 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200688 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300689
690 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000691 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300692 break;
bellard9dc39cb2004-03-14 21:38:27 +0000693 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300694
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200695 if (cmd->name == NULL) {
Luiz Capitulino13c74252009-10-07 13:41:55 -0300696 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200697 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300698
Luiz Capitulino4903de02010-09-16 11:01:32 -0300699 if (handler_is_async(cmd)) {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300700 user_async_info_handler(mon, cmd);
Luiz Capitulino9e807212010-09-16 10:58:59 -0300701 } else if (handler_is_qobject(cmd)) {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300702 QObject *info_data = NULL;
Jan Kiszkaa6c4d362010-06-28 18:27:47 +0200703
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300704 cmd->mhandler.info_new(mon, &info_data);
705 if (info_data) {
706 cmd->user_print(mon, info_data);
707 qobject_decref(info_data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200708 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300709 } else {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300710 cmd->mhandler.info(mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300711 }
712
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300713 return;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300714
715help:
716 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000717}
718
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200719static void do_info_version_print(Monitor *mon, const QObject *data)
720{
721 QDict *qdict;
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300722 QDict *qemu;
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200723
724 qdict = qobject_to_qdict(data);
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300725 qemu = qdict_get_qdict(qdict, "qemu");
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200726
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300727 monitor_printf(mon, "%" PRId64 ".%" PRId64 ".%" PRId64 "%s\n",
728 qdict_get_int(qemu, "major"),
729 qdict_get_int(qemu, "minor"),
730 qdict_get_int(qemu, "micro"),
731 qdict_get_str(qdict, "package"));
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200732}
733
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300734static void do_info_version(Monitor *mon, QObject **ret_data)
bellard9bc9d1c2004-10-10 15:15:51 +0000735{
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300736 const char *version = QEMU_VERSION;
737 int major = 0, minor = 0, micro = 0;
738 char *tmp;
739
740 major = strtol(version, &tmp, 10);
741 tmp++;
742 minor = strtol(tmp, &tmp, 10);
743 tmp++;
744 micro = strtol(tmp, &tmp, 10);
745
746 *ret_data = qobject_from_jsonf("{ 'qemu': { 'major': %d, 'minor': %d, \
747 'micro': %d }, 'package': %s }", major, minor, micro, QEMU_PKGVERSION);
bellard9bc9d1c2004-10-10 15:15:51 +0000748}
749
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200750static void do_info_name_print(Monitor *mon, const QObject *data)
thsc35734b2007-03-19 15:17:08 +0000751{
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200752 QDict *qdict;
753
754 qdict = qobject_to_qdict(data);
755 if (qdict_size(qdict) == 0) {
756 return;
757 }
758
759 monitor_printf(mon, "%s\n", qdict_get_str(qdict, "name"));
760}
761
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200762static void do_info_name(Monitor *mon, QObject **ret_data)
763{
764 *ret_data = qemu_name ? qobject_from_jsonf("{'name': %s }", qemu_name) :
765 qobject_from_jsonf("{}");
thsc35734b2007-03-19 15:17:08 +0000766}
767
Luiz Capitulino1a728672009-12-10 17:15:56 -0200768static QObject *get_cmd_dict(const char *name)
769{
770 const char *p;
771
772 /* Remove '|' from some commands */
773 p = strchr(name, '|');
774 if (p) {
775 p++;
776 } else {
777 p = name;
778 }
779
780 return qobject_from_jsonf("{ 'name': %s }", p);
781}
782
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200783static void do_info_commands(Monitor *mon, QObject **ret_data)
784{
785 QList *cmd_list;
786 const mon_cmd_t *cmd;
787
788 cmd_list = qlist_new();
789
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300790 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino2e061a72010-09-16 10:36:54 -0300791 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200792 }
793
Luiz Capitulino3e12a752010-09-15 17:20:33 -0300794 for (cmd = qmp_query_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino2e061a72010-09-16 10:36:54 -0300795 char buf[128];
796 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
797 qlist_append_obj(cmd_list, get_cmd_dict(buf));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200798 }
799
800 *ret_data = QOBJECT(cmd_list);
801}
802
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200803static void do_info_uuid_print(Monitor *mon, const QObject *data)
blueswir1f1f23ad2008-09-18 18:30:20 +0000804{
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200805 monitor_printf(mon, "%s\n", qdict_get_str(qobject_to_qdict(data), "UUID"));
806}
807
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200808static void do_info_uuid(Monitor *mon, QObject **ret_data)
809{
810 char uuid[64];
811
812 snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1],
aliguori376253e2009-03-05 23:01:23 +0000813 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
814 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
815 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
816 qemu_uuid[14], qemu_uuid[15]);
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200817 *ret_data = qobject_from_jsonf("{ 'UUID': %s }", uuid);
thsa36e69d2007-12-02 05:18:19 +0000818}
819
bellard6a00d602005-11-21 23:25:50 +0000820/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000821static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000822{
823 CPUState *env;
824
825 for(env = first_cpu; env != NULL; env = env->next_cpu) {
826 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000827 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000828 return 0;
829 }
830 }
831 return -1;
832}
833
pbrook9596ebb2007-11-18 01:44:38 +0000834static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000835{
aliguori731b0362009-03-05 23:01:42 +0000836 if (!cur_mon->mon_cpu) {
bellard6a00d602005-11-21 23:25:50 +0000837 mon_set_cpu(0);
838 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300839 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000840 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000841}
842
aliguori376253e2009-03-05 23:01:23 +0000843static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000844{
bellard6a00d602005-11-21 23:25:50 +0000845 CPUState *env;
846 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +0000847#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000848 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000849 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000850#else
aliguori376253e2009-03-05 23:01:23 +0000851 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000852 0);
bellard9307c4c2004-04-04 12:57:25 +0000853#endif
854}
855
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300856static void print_cpu_iter(QObject *obj, void *opaque)
857{
858 QDict *cpu;
859 int active = ' ';
860 Monitor *mon = opaque;
861
862 assert(qobject_type(obj) == QTYPE_QDICT);
863 cpu = qobject_to_qdict(obj);
864
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200865 if (qdict_get_bool(cpu, "current")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300866 active = '*';
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200867 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300868
869 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
870
871#if defined(TARGET_I386)
872 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
873 (target_ulong) qdict_get_int(cpu, "pc"));
874#elif defined(TARGET_PPC)
875 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
876 (target_long) qdict_get_int(cpu, "nip"));
877#elif defined(TARGET_SPARC)
878 monitor_printf(mon, "pc=0x " TARGET_FMT_lx,
879 (target_long) qdict_get_int(cpu, "pc"));
880 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
881 (target_long) qdict_get_int(cpu, "npc"));
882#elif defined(TARGET_MIPS)
883 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
884 (target_long) qdict_get_int(cpu, "PC"));
885#endif
886
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200887 if (qdict_get_bool(cpu, "halted")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300888 monitor_printf(mon, " (halted)");
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200889 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300890
891 monitor_printf(mon, "\n");
892}
893
894static void monitor_print_cpus(Monitor *mon, const QObject *data)
895{
896 QList *cpu_list;
897
898 assert(qobject_type(data) == QTYPE_QLIST);
899 cpu_list = qobject_to_qlist(data);
900 qlist_iter(cpu_list, print_cpu_iter, mon);
901}
902
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300903static void do_info_cpus(Monitor *mon, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000904{
905 CPUState *env;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300906 QList *cpu_list;
907
908 cpu_list = qlist_new();
bellard6a00d602005-11-21 23:25:50 +0000909
910 /* just to set the default cpu if not already done */
911 mon_get_cpu();
912
913 for(env = first_cpu; env != NULL; env = env->next_cpu) {
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200914 QDict *cpu;
915 QObject *obj;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300916
Avi Kivity4c0960c2009-08-17 23:19:53 +0300917 cpu_synchronize_state(env);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300918
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200919 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
920 env->cpu_index, env == mon->mon_cpu,
921 env->halted);
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200922
923 cpu = qobject_to_qdict(obj);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300924
bellard6a00d602005-11-21 23:25:50 +0000925#if defined(TARGET_I386)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300926 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
bellarde80e1cc2005-11-23 22:05:28 +0000927#elif defined(TARGET_PPC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300928 qdict_put(cpu, "nip", qint_from_int(env->nip));
bellardba3c64f2005-12-05 20:31:52 +0000929#elif defined(TARGET_SPARC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300930 qdict_put(cpu, "pc", qint_from_int(env->pc));
931 qdict_put(cpu, "npc", qint_from_int(env->npc));
thsead93602007-09-06 00:18:15 +0000932#elif defined(TARGET_MIPS)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300933 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
bellardce5232c2008-05-28 17:14:10 +0000934#endif
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300935
936 qlist_append(cpu_list, cpu);
bellard6a00d602005-11-21 23:25:50 +0000937 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300938
939 *ret_data = QOBJECT(cpu_list);
bellard6a00d602005-11-21 23:25:50 +0000940}
941
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200942static int do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000943{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300944 int index = qdict_get_int(qdict, "index");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200945 if (mon_set_cpu(index) < 0) {
Markus Armbrustere17ba872010-03-25 17:22:36 +0100946 qerror_report(QERR_INVALID_PARAMETER_VALUE, "index",
947 "a CPU number");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200948 return -1;
949 }
950 return 0;
bellard6a00d602005-11-21 23:25:50 +0000951}
952
aliguori376253e2009-03-05 23:01:23 +0000953static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000954{
aliguori376253e2009-03-05 23:01:23 +0000955 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000956}
957
aliguori376253e2009-03-05 23:01:23 +0000958static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000959{
960 int i;
bellard7e2515e2004-08-01 21:52:19 +0000961 const char *str;
ths3b46e622007-09-17 08:09:54 +0000962
aliguoricde76ee2009-03-05 23:01:51 +0000963 if (!mon->rs)
964 return;
bellard7e2515e2004-08-01 21:52:19 +0000965 i = 0;
966 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000967 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000968 if (!str)
969 break;
aliguori376253e2009-03-05 23:01:23 +0000970 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000971 i++;
bellardaa455482004-04-04 13:07:25 +0000972 }
973}
974
j_mayer76a66252007-03-07 08:32:30 +0000975#if defined(TARGET_PPC)
976/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000977static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000978{
979 CPUState *env;
980
981 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000982 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000983}
984#endif
985
Prerna Saxena22890ab2010-06-24 17:04:53 +0530986#if defined(CONFIG_SIMPLE_TRACE)
987static void do_info_trace(Monitor *mon)
988{
989 st_print_trace((FILE *)mon, &monitor_fprintf);
990}
991
992static void do_info_trace_events(Monitor *mon)
993{
994 st_print_trace_events((FILE *)mon, &monitor_fprintf);
995}
996#endif
997
Luiz Capitulinob223f352009-10-07 13:41:56 -0300998/**
999 * do_quit(): Quit QEMU execution
1000 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001001static int do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +00001002{
Luiz Capitulino39b59d22010-05-11 18:08:20 -03001003 monitor_suspend(mon);
1004 no_shutdown = 0;
1005 qemu_system_shutdown_request();
1006
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001007 return 0;
bellard9dc39cb2004-03-14 21:38:27 +00001008}
1009
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001010static int change_vnc_password(const char *password)
aliguoribb5fc202009-03-05 23:01:15 +00001011{
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001012 if (vnc_display_password(NULL, password) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001013 qerror_report(QERR_SET_PASSWD_FAILED);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001014 return -1;
1015 }
aliguoribb5fc202009-03-05 23:01:15 +00001016
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001017 return 0;
Markus Armbruster2895e072009-12-07 21:37:01 +01001018}
1019
1020static void change_vnc_password_cb(Monitor *mon, const char *password,
1021 void *opaque)
1022{
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001023 change_vnc_password(password);
aliguori731b0362009-03-05 23:01:42 +00001024 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00001025}
1026
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001027static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
thse25a5822007-08-25 01:36:20 +00001028{
ths70848512007-08-25 01:37:05 +00001029 if (strcmp(target, "passwd") == 0 ||
aliguori28a76be2009-03-06 20:27:40 +00001030 strcmp(target, "password") == 0) {
1031 if (arg) {
aliguoribb5fc202009-03-05 23:01:15 +00001032 char password[9];
aliguori28a76be2009-03-06 20:27:40 +00001033 strncpy(password, arg, sizeof(password));
1034 password[sizeof(password) - 1] = '\0';
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001035 return change_vnc_password(password);
aliguoribb5fc202009-03-05 23:01:15 +00001036 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001037 return monitor_read_password(mon, change_vnc_password_cb, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001038 }
ths70848512007-08-25 01:37:05 +00001039 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001040 if (vnc_display_open(NULL, target) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001041 qerror_report(QERR_VNC_SERVER_FAILED, target);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001042 return -1;
1043 }
ths70848512007-08-25 01:37:05 +00001044 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001045
1046 return 0;
thse25a5822007-08-25 01:36:20 +00001047}
1048
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001049/**
1050 * do_change(): Change a removable medium, or VNC configuration
1051 */
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001052static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
thse25a5822007-08-25 01:36:20 +00001053{
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001054 const char *device = qdict_get_str(qdict, "device");
1055 const char *target = qdict_get_str(qdict, "target");
1056 const char *arg = qdict_get_try_str(qdict, "arg");
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001057 int ret;
1058
thse25a5822007-08-25 01:36:20 +00001059 if (strcmp(device, "vnc") == 0) {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001060 ret = do_change_vnc(mon, target, arg);
thse25a5822007-08-25 01:36:20 +00001061 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001062 ret = do_change_block(mon, device, target, arg);
thse25a5822007-08-25 01:36:20 +00001063 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001064
1065 return ret;
thse25a5822007-08-25 01:36:20 +00001066}
1067
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -03001068static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard59a983b2004-03-17 23:17:16 +00001069{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001070 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -03001071 return 0;
bellard59a983b2004-03-17 23:17:16 +00001072}
1073
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001074static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +00001075{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001076 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +00001077}
1078
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001079static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +00001080{
1081 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001082 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +00001083
bellard9307c4c2004-04-04 12:57:25 +00001084 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +00001085 mask = 0;
1086 } else {
bellard9307c4c2004-04-04 12:57:25 +00001087 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +00001088 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001089 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001090 return;
1091 }
1092 }
1093 cpu_set_log(mask);
1094}
1095
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001096static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001097{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001098 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001099 if (!option || !strcmp(option, "on")) {
1100 singlestep = 1;
1101 } else if (!strcmp(option, "off")) {
1102 singlestep = 0;
1103 } else {
1104 monitor_printf(mon, "unexpected option %s\n", option);
1105 }
1106}
1107
Luiz Capitulinoe0c97bd2009-10-07 13:41:57 -03001108/**
1109 * do_stop(): Stop VM execution
1110 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001111static int do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard8a7ddc32004-03-31 19:00:16 +00001112{
1113 vm_stop(EXCP_INTERRUPT);
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001114 return 0;
bellard8a7ddc32004-03-31 19:00:16 +00001115}
1116
aliguoribb5fc202009-03-05 23:01:15 +00001117static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
aliguoric0f4ce72009-03-05 23:01:01 +00001118
aliguori376253e2009-03-05 23:01:23 +00001119struct bdrv_iterate_context {
1120 Monitor *mon;
1121 int err;
1122};
aliguoric0f4ce72009-03-05 23:01:01 +00001123
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001124/**
1125 * do_cont(): Resume emulation.
1126 */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001127static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
aliguori376253e2009-03-05 23:01:23 +00001128{
1129 struct bdrv_iterate_context context = { mon, 0 };
1130
Amit Shah8e848652010-07-27 15:49:19 +05301131 if (incoming_expected) {
1132 qerror_report(QERR_MIGRATION_EXPECTED);
1133 return -1;
1134 }
aliguori376253e2009-03-05 23:01:23 +00001135 bdrv_iterate(encrypted_bdrv_it, &context);
aliguoric0f4ce72009-03-05 23:01:01 +00001136 /* only resume the vm if all keys are set and valid */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001137 if (!context.err) {
aliguoric0f4ce72009-03-05 23:01:01 +00001138 vm_start();
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001139 return 0;
1140 } else {
1141 return -1;
1142 }
bellard8a7ddc32004-03-31 19:00:16 +00001143}
1144
aliguoribb5fc202009-03-05 23:01:15 +00001145static void bdrv_key_cb(void *opaque, int err)
1146{
aliguori376253e2009-03-05 23:01:23 +00001147 Monitor *mon = opaque;
1148
aliguoribb5fc202009-03-05 23:01:15 +00001149 /* another key was set successfully, retry to continue */
1150 if (!err)
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001151 do_cont(mon, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001152}
1153
1154static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1155{
aliguori376253e2009-03-05 23:01:23 +00001156 struct bdrv_iterate_context *context = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00001157
aliguori376253e2009-03-05 23:01:23 +00001158 if (!context->err && bdrv_key_required(bs)) {
1159 context->err = -EBUSY;
1160 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1161 context->mon);
aliguoribb5fc202009-03-05 23:01:15 +00001162 }
1163}
1164
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001165static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001166{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001167 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001168 if (!device)
1169 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1170 if (gdbserver_start(device) < 0) {
1171 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1172 device);
1173 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001174 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001175 } else {
aliguori59030a82009-04-05 18:43:41 +00001176 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1177 device);
bellard8a7ddc32004-03-31 19:00:16 +00001178 }
1179}
1180
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001181static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001182{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001183 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001184 if (select_watchdog_action(action) == -1) {
1185 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1186 }
1187}
1188
aliguori376253e2009-03-05 23:01:23 +00001189static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001190{
aliguori376253e2009-03-05 23:01:23 +00001191 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001192 switch(c) {
1193 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001194 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001195 break;
1196 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001197 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001198 break;
1199 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001200 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001201 break;
1202 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001203 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001204 break;
1205 default:
1206 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001207 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001208 } else {
aliguori376253e2009-03-05 23:01:23 +00001209 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001210 }
1211 break;
1212 }
aliguori376253e2009-03-05 23:01:23 +00001213 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001214}
1215
aliguori376253e2009-03-05 23:01:23 +00001216static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -05001217 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001218{
bellard6a00d602005-11-21 23:25:50 +00001219 CPUState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +00001220 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001221 uint8_t buf[16];
1222 uint64_t v;
1223
1224 if (format == 'i') {
1225 int flags;
1226 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001227 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +00001228#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001229 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001230 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001231 } else if (wsize == 4) {
1232 flags = 0;
1233 } else {
bellard6a15fd12006-04-12 21:07:07 +00001234 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001235 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001236 if (env) {
1237#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001238 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001239 (env->segs[R_CS].flags & DESC_L_MASK))
1240 flags = 2;
1241 else
1242#endif
1243 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1244 flags = 1;
1245 }
bellard4c27ba22004-04-25 18:05:08 +00001246 }
1247#endif
aliguori376253e2009-03-05 23:01:23 +00001248 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001249 return;
1250 }
1251
1252 len = wsize * count;
1253 if (wsize == 1)
1254 line_size = 8;
1255 else
1256 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001257 max_digits = 0;
1258
1259 switch(format) {
1260 case 'o':
1261 max_digits = (wsize * 8 + 2) / 3;
1262 break;
1263 default:
1264 case 'x':
1265 max_digits = (wsize * 8) / 4;
1266 break;
1267 case 'u':
1268 case 'd':
1269 max_digits = (wsize * 8 * 10 + 32) / 33;
1270 break;
1271 case 'c':
1272 wsize = 1;
1273 break;
1274 }
1275
1276 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001277 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001278 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001279 else
aliguori376253e2009-03-05 23:01:23 +00001280 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001281 l = len;
1282 if (l > line_size)
1283 l = line_size;
1284 if (is_physical) {
1285 cpu_physical_memory_rw(addr, buf, l, 0);
1286 } else {
bellard6a00d602005-11-21 23:25:50 +00001287 env = mon_get_cpu();
aliguoric8f79b62008-08-18 14:00:20 +00001288 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001289 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001290 break;
1291 }
bellard9307c4c2004-04-04 12:57:25 +00001292 }
ths5fafdf22007-09-16 21:08:06 +00001293 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001294 while (i < l) {
1295 switch(wsize) {
1296 default:
1297 case 1:
1298 v = ldub_raw(buf + i);
1299 break;
1300 case 2:
1301 v = lduw_raw(buf + i);
1302 break;
1303 case 4:
bellard92a31b12005-02-10 22:00:52 +00001304 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001305 break;
1306 case 8:
1307 v = ldq_raw(buf + i);
1308 break;
1309 }
aliguori376253e2009-03-05 23:01:23 +00001310 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001311 switch(format) {
1312 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001313 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001314 break;
1315 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001316 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001317 break;
1318 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001319 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001320 break;
1321 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001322 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001323 break;
1324 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001325 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001326 break;
1327 }
1328 i += wsize;
1329 }
aliguori376253e2009-03-05 23:01:23 +00001330 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001331 addr += l;
1332 len -= l;
1333 }
1334}
1335
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001336static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001337{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001338 int count = qdict_get_int(qdict, "count");
1339 int format = qdict_get_int(qdict, "format");
1340 int size = qdict_get_int(qdict, "size");
1341 target_long addr = qdict_get_int(qdict, "addr");
1342
aliguori376253e2009-03-05 23:01:23 +00001343 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001344}
1345
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001346static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001347{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001348 int count = qdict_get_int(qdict, "count");
1349 int format = qdict_get_int(qdict, "format");
1350 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001351 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001352
aliguori376253e2009-03-05 23:01:23 +00001353 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001354}
1355
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001356static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001357{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001358 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001359 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001360
blueswir17743e582007-09-24 18:39:04 +00001361#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +00001362 switch(format) {
1363 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001364 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +00001365 break;
1366 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001367 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +00001368 break;
1369 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001370 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +00001371 break;
1372 default:
1373 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001374 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +00001375 break;
1376 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001377 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001378 break;
1379 }
bellard92a31b12005-02-10 22:00:52 +00001380#else
1381 switch(format) {
1382 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001383 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +00001384 break;
1385 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001386 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +00001387 break;
1388 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001389 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +00001390 break;
1391 default:
1392 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001393 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +00001394 break;
1395 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001396 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +00001397 break;
1398 }
1399#endif
aliguori376253e2009-03-05 23:01:23 +00001400 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001401}
1402
Luiz Capitulino98696222010-02-10 23:49:58 -02001403static int do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellardb371dc52007-01-03 15:20:39 +00001404{
1405 FILE *f;
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001406 uint32_t size = qdict_get_int(qdict, "size");
1407 const char *filename = qdict_get_str(qdict, "filename");
1408 target_long addr = qdict_get_int(qdict, "val");
bellardb371dc52007-01-03 15:20:39 +00001409 uint32_t l;
1410 CPUState *env;
1411 uint8_t buf[1024];
Luiz Capitulino98696222010-02-10 23:49:58 -02001412 int ret = -1;
bellardb371dc52007-01-03 15:20:39 +00001413
1414 env = mon_get_cpu();
bellardb371dc52007-01-03 15:20:39 +00001415
1416 f = fopen(filename, "wb");
1417 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001418 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulino98696222010-02-10 23:49:58 -02001419 return -1;
bellardb371dc52007-01-03 15:20:39 +00001420 }
1421 while (size != 0) {
1422 l = sizeof(buf);
1423 if (l > size)
1424 l = size;
1425 cpu_memory_rw_debug(env, addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001426 if (fwrite(buf, 1, l, f) != l) {
1427 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1428 goto exit;
1429 }
bellardb371dc52007-01-03 15:20:39 +00001430 addr += l;
1431 size -= l;
1432 }
Luiz Capitulino98696222010-02-10 23:49:58 -02001433
1434 ret = 0;
1435
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001436exit:
bellardb371dc52007-01-03 15:20:39 +00001437 fclose(f);
Luiz Capitulino98696222010-02-10 23:49:58 -02001438 return ret;
bellardb371dc52007-01-03 15:20:39 +00001439}
1440
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001441static int do_physical_memory_save(Monitor *mon, const QDict *qdict,
Luiz Capitulino18f5a8b2009-10-16 12:23:44 -03001442 QObject **ret_data)
aurel32a8bdf7a2008-04-11 21:36:14 +00001443{
1444 FILE *f;
1445 uint32_t l;
1446 uint8_t buf[1024];
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001447 uint32_t size = qdict_get_int(qdict, "size");
1448 const char *filename = qdict_get_str(qdict, "filename");
Anthony Liguoric227f092009-10-01 16:12:16 -05001449 target_phys_addr_t addr = qdict_get_int(qdict, "val");
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001450 int ret = -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001451
1452 f = fopen(filename, "wb");
1453 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001454 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001455 return -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001456 }
1457 while (size != 0) {
1458 l = sizeof(buf);
1459 if (l > size)
1460 l = size;
1461 cpu_physical_memory_rw(addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001462 if (fwrite(buf, 1, l, f) != l) {
1463 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1464 goto exit;
1465 }
aurel32a8bdf7a2008-04-11 21:36:14 +00001466 fflush(f);
1467 addr += l;
1468 size -= l;
1469 }
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001470
1471 ret = 0;
1472
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001473exit:
aurel32a8bdf7a2008-04-11 21:36:14 +00001474 fclose(f);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001475 return ret;
aurel32a8bdf7a2008-04-11 21:36:14 +00001476}
1477
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001478static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001479{
1480 uint32_t addr;
1481 uint8_t buf[1];
1482 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001483 uint32_t start = qdict_get_int(qdict, "start");
1484 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001485
1486 sum = 0;
1487 for(addr = start; addr < (start + size); addr++) {
1488 cpu_physical_memory_rw(addr, buf, 1, 0);
1489 /* BSD sum algorithm ('sum' Unix command) */
1490 sum = (sum >> 1) | (sum << 15);
1491 sum += buf[0];
1492 }
aliguori376253e2009-03-05 23:01:23 +00001493 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001494}
1495
bellarda3a91a32004-06-04 11:06:21 +00001496typedef struct {
1497 int keycode;
1498 const char *name;
1499} KeyDef;
1500
1501static const KeyDef key_defs[] = {
1502 { 0x2a, "shift" },
1503 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +00001504
bellarda3a91a32004-06-04 11:06:21 +00001505 { 0x38, "alt" },
1506 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +00001507 { 0x64, "altgr" },
1508 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +00001509 { 0x1d, "ctrl" },
1510 { 0x9d, "ctrl_r" },
1511
1512 { 0xdd, "menu" },
1513
1514 { 0x01, "esc" },
1515
1516 { 0x02, "1" },
1517 { 0x03, "2" },
1518 { 0x04, "3" },
1519 { 0x05, "4" },
1520 { 0x06, "5" },
1521 { 0x07, "6" },
1522 { 0x08, "7" },
1523 { 0x09, "8" },
1524 { 0x0a, "9" },
1525 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +00001526 { 0x0c, "minus" },
1527 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +00001528 { 0x0e, "backspace" },
1529
1530 { 0x0f, "tab" },
1531 { 0x10, "q" },
1532 { 0x11, "w" },
1533 { 0x12, "e" },
1534 { 0x13, "r" },
1535 { 0x14, "t" },
1536 { 0x15, "y" },
1537 { 0x16, "u" },
1538 { 0x17, "i" },
1539 { 0x18, "o" },
1540 { 0x19, "p" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001541 { 0x1a, "bracket_left" },
1542 { 0x1b, "bracket_right" },
bellarda3a91a32004-06-04 11:06:21 +00001543 { 0x1c, "ret" },
1544
1545 { 0x1e, "a" },
1546 { 0x1f, "s" },
1547 { 0x20, "d" },
1548 { 0x21, "f" },
1549 { 0x22, "g" },
1550 { 0x23, "h" },
1551 { 0x24, "j" },
1552 { 0x25, "k" },
1553 { 0x26, "l" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001554 { 0x27, "semicolon" },
1555 { 0x28, "apostrophe" },
1556 { 0x29, "grave_accent" },
bellarda3a91a32004-06-04 11:06:21 +00001557
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001558 { 0x2b, "backslash" },
bellarda3a91a32004-06-04 11:06:21 +00001559 { 0x2c, "z" },
1560 { 0x2d, "x" },
1561 { 0x2e, "c" },
1562 { 0x2f, "v" },
1563 { 0x30, "b" },
1564 { 0x31, "n" },
1565 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +00001566 { 0x33, "comma" },
1567 { 0x34, "dot" },
1568 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +00001569
balrog4d3b6f62008-02-10 16:33:14 +00001570 { 0x37, "asterisk" },
1571
bellarda3a91a32004-06-04 11:06:21 +00001572 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +00001573 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001574 { 0x3b, "f1" },
1575 { 0x3c, "f2" },
1576 { 0x3d, "f3" },
1577 { 0x3e, "f4" },
1578 { 0x3f, "f5" },
1579 { 0x40, "f6" },
1580 { 0x41, "f7" },
1581 { 0x42, "f8" },
1582 { 0x43, "f9" },
1583 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +00001584 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001585 { 0x46, "scroll_lock" },
1586
bellard64866c32006-05-07 18:03:31 +00001587 { 0xb5, "kp_divide" },
1588 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +00001589 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +00001590 { 0x4e, "kp_add" },
1591 { 0x9c, "kp_enter" },
1592 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +00001593 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +00001594
1595 { 0x52, "kp_0" },
1596 { 0x4f, "kp_1" },
1597 { 0x50, "kp_2" },
1598 { 0x51, "kp_3" },
1599 { 0x4b, "kp_4" },
1600 { 0x4c, "kp_5" },
1601 { 0x4d, "kp_6" },
1602 { 0x47, "kp_7" },
1603 { 0x48, "kp_8" },
1604 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +00001605
bellarda3a91a32004-06-04 11:06:21 +00001606 { 0x56, "<" },
1607
1608 { 0x57, "f11" },
1609 { 0x58, "f12" },
1610
1611 { 0xb7, "print" },
1612
1613 { 0xc7, "home" },
1614 { 0xc9, "pgup" },
1615 { 0xd1, "pgdn" },
1616 { 0xcf, "end" },
1617
1618 { 0xcb, "left" },
1619 { 0xc8, "up" },
1620 { 0xd0, "down" },
1621 { 0xcd, "right" },
1622
1623 { 0xd2, "insert" },
1624 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001625#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1626 { 0xf0, "stop" },
1627 { 0xf1, "again" },
1628 { 0xf2, "props" },
1629 { 0xf3, "undo" },
1630 { 0xf4, "front" },
1631 { 0xf5, "copy" },
1632 { 0xf6, "open" },
1633 { 0xf7, "paste" },
1634 { 0xf8, "find" },
1635 { 0xf9, "cut" },
1636 { 0xfa, "lf" },
1637 { 0xfb, "help" },
1638 { 0xfc, "meta_l" },
1639 { 0xfd, "meta_r" },
1640 { 0xfe, "compose" },
1641#endif
bellarda3a91a32004-06-04 11:06:21 +00001642 { 0, NULL },
1643};
1644
1645static int get_keycode(const char *key)
1646{
1647 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001648 char *endp;
1649 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001650
1651 for(p = key_defs; p->name != NULL; p++) {
1652 if (!strcmp(key, p->name))
1653 return p->keycode;
1654 }
bellard64866c32006-05-07 18:03:31 +00001655 if (strstart(key, "0x", NULL)) {
1656 ret = strtoul(key, &endp, 0);
1657 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1658 return ret;
1659 }
bellarda3a91a32004-06-04 11:06:21 +00001660 return -1;
1661}
1662
balrogc8256f92008-06-08 22:45:01 +00001663#define MAX_KEYCODES 16
1664static uint8_t keycodes[MAX_KEYCODES];
1665static int nb_pending_keycodes;
1666static QEMUTimer *key_timer;
1667
1668static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001669{
balrogc8256f92008-06-08 22:45:01 +00001670 int keycode;
1671
1672 while (nb_pending_keycodes > 0) {
1673 nb_pending_keycodes--;
1674 keycode = keycodes[nb_pending_keycodes];
1675 if (keycode & 0x80)
1676 kbd_put_keycode(0xe0);
1677 kbd_put_keycode(keycode | 0x80);
1678 }
1679}
1680
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001681static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001682{
balrog3401c0d2008-06-04 10:05:59 +00001683 char keyname_buf[16];
1684 char *separator;
1685 int keyname_len, keycode, i;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001686 const char *string = qdict_get_str(qdict, "string");
1687 int has_hold_time = qdict_haskey(qdict, "hold_time");
1688 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
ths3b46e622007-09-17 08:09:54 +00001689
balrogc8256f92008-06-08 22:45:01 +00001690 if (nb_pending_keycodes > 0) {
1691 qemu_del_timer(key_timer);
1692 release_keys(NULL);
1693 }
1694 if (!has_hold_time)
1695 hold_time = 100;
1696 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001697 while (1) {
1698 separator = strchr(string, '-');
1699 keyname_len = separator ? separator - string : strlen(string);
1700 if (keyname_len > 0) {
1701 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1702 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001703 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001704 return;
bellarda3a91a32004-06-04 11:06:21 +00001705 }
balrogc8256f92008-06-08 22:45:01 +00001706 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001707 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001708 return;
1709 }
1710 keyname_buf[keyname_len] = 0;
1711 keycode = get_keycode(keyname_buf);
1712 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001713 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001714 return;
1715 }
balrogc8256f92008-06-08 22:45:01 +00001716 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001717 }
balrog3401c0d2008-06-04 10:05:59 +00001718 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001719 break;
balrog3401c0d2008-06-04 10:05:59 +00001720 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001721 }
balrogc8256f92008-06-08 22:45:01 +00001722 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001723 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001724 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001725 keycode = keycodes[i];
1726 if (keycode & 0x80)
1727 kbd_put_keycode(0xe0);
1728 kbd_put_keycode(keycode & 0x7f);
1729 }
balrogc8256f92008-06-08 22:45:01 +00001730 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +00001731 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001732 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001733}
1734
bellard13224a82006-07-14 22:03:35 +00001735static int mouse_button_state;
1736
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001737static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001738{
1739 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001740 const char *dx_str = qdict_get_str(qdict, "dx_str");
1741 const char *dy_str = qdict_get_str(qdict, "dy_str");
1742 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001743 dx = strtol(dx_str, NULL, 0);
1744 dy = strtol(dy_str, NULL, 0);
1745 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001746 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001747 dz = strtol(dz_str, NULL, 0);
1748 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1749}
1750
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001751static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001752{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001753 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001754 mouse_button_state = button_state;
1755 kbd_mouse_event(0, 0, 0, mouse_button_state);
1756}
1757
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001758static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001759{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001760 int size = qdict_get_int(qdict, "size");
1761 int addr = qdict_get_int(qdict, "addr");
1762 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001763 uint32_t val;
1764 int suffix;
1765
1766 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001767 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001768 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001769 addr++;
1770 }
1771 addr &= 0xffff;
1772
1773 switch(size) {
1774 default:
1775 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001776 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001777 suffix = 'b';
1778 break;
1779 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001780 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001781 suffix = 'w';
1782 break;
1783 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001784 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001785 suffix = 'l';
1786 break;
1787 }
aliguori376253e2009-03-05 23:01:23 +00001788 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1789 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001790}
bellarda3a91a32004-06-04 11:06:21 +00001791
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001792static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001793{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001794 int size = qdict_get_int(qdict, "size");
1795 int addr = qdict_get_int(qdict, "addr");
1796 int val = qdict_get_int(qdict, "val");
1797
Jan Kiszkaf1147842009-07-14 10:20:11 +02001798 addr &= IOPORTS_MASK;
1799
1800 switch (size) {
1801 default:
1802 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001803 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001804 break;
1805 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001806 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001807 break;
1808 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001809 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001810 break;
1811 }
1812}
1813
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001814static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001815{
1816 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001817 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001818
Jan Kiszka76e30d02009-07-02 00:19:02 +02001819 res = qemu_boot_set(bootdevice);
1820 if (res == 0) {
1821 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1822 } else if (res > 0) {
1823 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001824 } else {
aliguori376253e2009-03-05 23:01:23 +00001825 monitor_printf(mon, "no function defined to set boot device list for "
1826 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001827 }
1828}
1829
Luiz Capitulinoc80d2592009-10-07 13:41:58 -03001830/**
1831 * do_system_reset(): Issue a machine reset
1832 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001833static int do_system_reset(Monitor *mon, const QDict *qdict,
1834 QObject **ret_data)
bellarde4f90822004-06-20 12:35:44 +00001835{
1836 qemu_system_reset_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001837 return 0;
bellarde4f90822004-06-20 12:35:44 +00001838}
1839
Luiz Capitulino43076662009-10-07 13:41:59 -03001840/**
1841 * do_system_powerdown(): Issue a machine powerdown
1842 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001843static int do_system_powerdown(Monitor *mon, const QDict *qdict,
1844 QObject **ret_data)
bellard34751872005-07-02 14:31:34 +00001845{
1846 qemu_system_powerdown_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001847 return 0;
bellard34751872005-07-02 14:31:34 +00001848}
1849
bellardb86bda52004-09-18 19:32:46 +00001850#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +00001851static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
bellardb86bda52004-09-18 19:32:46 +00001852{
aliguori376253e2009-03-05 23:01:23 +00001853 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1854 addr,
1855 pte & mask,
1856 pte & PG_GLOBAL_MASK ? 'G' : '-',
1857 pte & PG_PSE_MASK ? 'P' : '-',
1858 pte & PG_DIRTY_MASK ? 'D' : '-',
1859 pte & PG_ACCESSED_MASK ? 'A' : '-',
1860 pte & PG_PCD_MASK ? 'C' : '-',
1861 pte & PG_PWT_MASK ? 'T' : '-',
1862 pte & PG_USER_MASK ? 'U' : '-',
1863 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001864}
1865
aliguori376253e2009-03-05 23:01:23 +00001866static void tlb_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001867{
bellard6a00d602005-11-21 23:25:50 +00001868 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001869 int l1, l2;
1870 uint32_t pgd, pde, pte;
1871
bellard6a00d602005-11-21 23:25:50 +00001872 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00001873
bellardb86bda52004-09-18 19:32:46 +00001874 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001875 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001876 return;
1877 }
1878 pgd = env->cr[3] & ~0xfff;
1879 for(l1 = 0; l1 < 1024; l1++) {
1880 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1881 pde = le32_to_cpu(pde);
1882 if (pde & PG_PRESENT_MASK) {
1883 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001884 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
bellardb86bda52004-09-18 19:32:46 +00001885 } else {
1886 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001887 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001888 (uint8_t *)&pte, 4);
1889 pte = le32_to_cpu(pte);
1890 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001891 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001892 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001893 ~0xfff);
1894 }
1895 }
1896 }
1897 }
1898 }
1899}
1900
aliguori376253e2009-03-05 23:01:23 +00001901static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001902 uint32_t end, int prot)
1903{
bellard9746b152004-11-11 18:30:24 +00001904 int prot1;
1905 prot1 = *plast_prot;
1906 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001907 if (*pstart != -1) {
aliguori376253e2009-03-05 23:01:23 +00001908 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1909 *pstart, end, end - *pstart,
1910 prot1 & PG_USER_MASK ? 'u' : '-',
1911 'r',
1912 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001913 }
1914 if (prot != 0)
1915 *pstart = end;
1916 else
1917 *pstart = -1;
1918 *plast_prot = prot;
1919 }
1920}
1921
aliguori376253e2009-03-05 23:01:23 +00001922static void mem_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001923{
bellard6a00d602005-11-21 23:25:50 +00001924 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001925 int l1, l2, prot, last_prot;
1926 uint32_t pgd, pde, pte, start, end;
1927
bellard6a00d602005-11-21 23:25:50 +00001928 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00001929
bellardb86bda52004-09-18 19:32:46 +00001930 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001931 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001932 return;
1933 }
1934 pgd = env->cr[3] & ~0xfff;
1935 last_prot = 0;
1936 start = -1;
1937 for(l1 = 0; l1 < 1024; l1++) {
1938 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1939 pde = le32_to_cpu(pde);
1940 end = l1 << 22;
1941 if (pde & PG_PRESENT_MASK) {
1942 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1943 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001944 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001945 } else {
1946 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001947 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001948 (uint8_t *)&pte, 4);
1949 pte = le32_to_cpu(pte);
1950 end = (l1 << 22) + (l2 << 12);
1951 if (pte & PG_PRESENT_MASK) {
1952 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1953 } else {
1954 prot = 0;
1955 }
aliguori376253e2009-03-05 23:01:23 +00001956 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001957 }
1958 }
1959 } else {
1960 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001961 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001962 }
1963 }
1964}
1965#endif
1966
aurel327c664e22009-03-03 06:12:22 +00001967#if defined(TARGET_SH4)
1968
aliguori376253e2009-03-05 23:01:23 +00001969static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001970{
aliguori376253e2009-03-05 23:01:23 +00001971 monitor_printf(mon, " tlb%i:\t"
1972 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1973 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1974 "dirty=%hhu writethrough=%hhu\n",
1975 idx,
1976 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1977 tlb->v, tlb->sh, tlb->c, tlb->pr,
1978 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001979}
1980
aliguori376253e2009-03-05 23:01:23 +00001981static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00001982{
1983 CPUState *env = mon_get_cpu();
1984 int i;
1985
aliguori376253e2009-03-05 23:01:23 +00001986 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001987 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001988 print_tlb (mon, i, &env->itlb[i]);
1989 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001990 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001991 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00001992}
1993
1994#endif
1995
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001996static void do_info_kvm_print(Monitor *mon, const QObject *data)
1997{
1998 QDict *qdict;
1999
2000 qdict = qobject_to_qdict(data);
2001
2002 monitor_printf(mon, "kvm support: ");
2003 if (qdict_get_bool(qdict, "present")) {
2004 monitor_printf(mon, "%s\n", qdict_get_bool(qdict, "enabled") ?
2005 "enabled" : "disabled");
2006 } else {
2007 monitor_printf(mon, "not compiled\n");
2008 }
2009}
2010
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002011static void do_info_kvm(Monitor *mon, QObject **ret_data)
aliguori7ba1e612008-11-05 16:04:33 +00002012{
2013#ifdef CONFIG_KVM
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002014 *ret_data = qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
2015 kvm_enabled());
aliguori7ba1e612008-11-05 16:04:33 +00002016#else
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002017 *ret_data = qobject_from_jsonf("{ 'enabled': false, 'present': false }");
aliguori7ba1e612008-11-05 16:04:33 +00002018#endif
2019}
2020
aliguori030ea372009-04-21 22:30:47 +00002021static void do_info_numa(Monitor *mon)
2022{
aliguorib28b6232009-04-22 20:20:29 +00002023 int i;
aliguori030ea372009-04-21 22:30:47 +00002024 CPUState *env;
2025
2026 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2027 for (i = 0; i < nb_numa_nodes; i++) {
2028 monitor_printf(mon, "node %d cpus:", i);
2029 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2030 if (env->numa_node == i) {
2031 monitor_printf(mon, " %d", env->cpu_index);
2032 }
2033 }
2034 monitor_printf(mon, "\n");
2035 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2036 node_mem[i] >> 20);
2037 }
2038}
2039
bellard5f1ce942006-02-08 22:40:15 +00002040#ifdef CONFIG_PROFILER
2041
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02002042int64_t qemu_time;
2043int64_t dev_time;
2044
aliguori376253e2009-03-05 23:01:23 +00002045static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002046{
2047 int64_t total;
2048 total = qemu_time;
2049 if (total == 0)
2050 total = 1;
aliguori376253e2009-03-05 23:01:23 +00002051 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002052 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00002053 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002054 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00002055 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002056 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002057}
2058#else
aliguori376253e2009-03-05 23:01:23 +00002059static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002060{
aliguori376253e2009-03-05 23:01:23 +00002061 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00002062}
2063#endif
2064
bellardec36b692006-07-16 18:57:03 +00002065/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002066static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00002067
aliguori376253e2009-03-05 23:01:23 +00002068static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00002069{
2070 int i;
2071 CaptureState *s;
2072
2073 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00002074 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00002075 s->ops.info (s->opaque);
2076 }
2077}
2078
Blue Swirl23130862009-06-06 08:22:04 +00002079#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002080static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002081{
2082 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002083 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00002084 CaptureState *s;
2085
2086 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2087 if (i == n) {
2088 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002089 QLIST_REMOVE (s, entries);
bellardec36b692006-07-16 18:57:03 +00002090 qemu_free (s);
2091 return;
2092 }
2093 }
2094}
2095
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002096static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002097{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002098 const char *path = qdict_get_str(qdict, "path");
2099 int has_freq = qdict_haskey(qdict, "freq");
2100 int freq = qdict_get_try_int(qdict, "freq", -1);
2101 int has_bits = qdict_haskey(qdict, "bits");
2102 int bits = qdict_get_try_int(qdict, "bits", -1);
2103 int has_channels = qdict_haskey(qdict, "nchannels");
2104 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00002105 CaptureState *s;
2106
2107 s = qemu_mallocz (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002108
2109 freq = has_freq ? freq : 44100;
2110 bits = has_bits ? bits : 16;
2111 nchannels = has_channels ? nchannels : 2;
2112
2113 if (wav_start_capture (s, path, freq, bits, nchannels)) {
aliguori376253e2009-03-05 23:01:23 +00002114 monitor_printf(mon, "Faied to add wave capture\n");
bellardec36b692006-07-16 18:57:03 +00002115 qemu_free (s);
2116 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002117 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002118}
2119#endif
2120
aurel32dc1c0b72008-04-27 23:52:12 +00002121#if defined(TARGET_I386)
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002122static void do_inject_nmi(Monitor *mon, const QDict *qdict)
aurel32dc1c0b72008-04-27 23:52:12 +00002123{
2124 CPUState *env;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002125 int cpu_index = qdict_get_int(qdict, "cpu_index");
aurel32dc1c0b72008-04-27 23:52:12 +00002126
2127 for (env = first_cpu; env != NULL; env = env->next_cpu)
2128 if (env->cpu_index == cpu_index) {
2129 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2130 break;
2131 }
2132}
2133#endif
2134
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002135static void do_info_status_print(Monitor *mon, const QObject *data)
aurel326f9c5ee2008-12-18 22:43:56 +00002136{
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002137 QDict *qdict;
2138
2139 qdict = qobject_to_qdict(data);
2140
2141 monitor_printf(mon, "VM status: ");
2142 if (qdict_get_bool(qdict, "running")) {
2143 monitor_printf(mon, "running");
2144 if (qdict_get_bool(qdict, "singlestep")) {
2145 monitor_printf(mon, " (single step mode)");
aurel321b530a62009-04-05 20:08:59 +00002146 }
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002147 } else {
2148 monitor_printf(mon, "paused");
2149 }
2150
2151 monitor_printf(mon, "\n");
2152}
2153
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002154static void do_info_status(Monitor *mon, QObject **ret_data)
2155{
2156 *ret_data = qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2157 vm_running, singlestep);
aurel326f9c5ee2008-12-18 22:43:56 +00002158}
2159
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002160static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002161{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002162 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002163
aliguori76655d62009-03-06 20:27:37 +00002164 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002165 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002166 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002167 return acl;
2168}
aliguori76655d62009-03-06 20:27:37 +00002169
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002170static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002171{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002172 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002173 qemu_acl *acl = find_acl(mon, aclname);
2174 qemu_acl_entry *entry;
2175 int i = 0;
2176
2177 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002178 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002179 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002180 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002181 i++;
2182 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002183 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002184 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002185 }
2186}
2187
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002188static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002189{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002190 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002191 qemu_acl *acl = find_acl(mon, aclname);
2192
2193 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002194 qemu_acl_reset(acl);
2195 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002196 }
2197}
aliguori76655d62009-03-06 20:27:37 +00002198
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002199static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002200{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002201 const char *aclname = qdict_get_str(qdict, "aclname");
2202 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002203 qemu_acl *acl = find_acl(mon, aclname);
2204
2205 if (acl) {
2206 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002207 acl->defaultDeny = 0;
2208 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002209 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002210 acl->defaultDeny = 1;
2211 monitor_printf(mon, "acl: policy set to 'deny'\n");
2212 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002213 monitor_printf(mon, "acl: unknown policy '%s', "
2214 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002215 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002216 }
2217}
aliguori76655d62009-03-06 20:27:37 +00002218
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002219static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002220{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002221 const char *aclname = qdict_get_str(qdict, "aclname");
2222 const char *match = qdict_get_str(qdict, "match");
2223 const char *policy = qdict_get_str(qdict, "policy");
2224 int has_index = qdict_haskey(qdict, "index");
2225 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002226 qemu_acl *acl = find_acl(mon, aclname);
2227 int deny, ret;
2228
2229 if (acl) {
2230 if (strcmp(policy, "allow") == 0) {
2231 deny = 0;
2232 } else if (strcmp(policy, "deny") == 0) {
2233 deny = 1;
2234 } else {
2235 monitor_printf(mon, "acl: unknown policy '%s', "
2236 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002237 return;
2238 }
aliguori28a76be2009-03-06 20:27:40 +00002239 if (has_index)
2240 ret = qemu_acl_insert(acl, deny, match, index);
2241 else
2242 ret = qemu_acl_append(acl, deny, match);
2243 if (ret < 0)
2244 monitor_printf(mon, "acl: unable to add acl entry\n");
2245 else
2246 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002247 }
2248}
aliguori76655d62009-03-06 20:27:37 +00002249
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002250static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002251{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002252 const char *aclname = qdict_get_str(qdict, "aclname");
2253 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002254 qemu_acl *acl = find_acl(mon, aclname);
2255 int ret;
aliguori76655d62009-03-06 20:27:37 +00002256
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002257 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002258 ret = qemu_acl_remove(acl, match);
2259 if (ret < 0)
2260 monitor_printf(mon, "acl: no matching acl entry\n");
2261 else
2262 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002263 }
2264}
2265
Huang Ying79c4f6b2009-06-23 10:05:14 +08002266#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002267static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002268{
2269 CPUState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002270 int cpu_index = qdict_get_int(qdict, "cpu_index");
2271 int bank = qdict_get_int(qdict, "bank");
2272 uint64_t status = qdict_get_int(qdict, "status");
2273 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2274 uint64_t addr = qdict_get_int(qdict, "addr");
2275 uint64_t misc = qdict_get_int(qdict, "misc");
Huang Ying79c4f6b2009-06-23 10:05:14 +08002276
2277 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
2278 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
2279 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
2280 break;
2281 }
2282}
2283#endif
2284
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002285static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002286{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002287 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002288 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002289 int fd;
2290
2291 fd = qemu_chr_get_msgfd(mon->chr);
2292 if (fd == -1) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002293 qerror_report(QERR_FD_NOT_SUPPLIED);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002294 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002295 }
2296
2297 if (qemu_isdigit(fdname[0])) {
Markus Armbrustere17ba872010-03-25 17:22:36 +01002298 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2299 "a name not starting with a digit");
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002300 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002301 }
2302
Blue Swirl72cf2d42009-09-12 07:36:22 +00002303 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002304 if (strcmp(monfd->name, fdname) != 0) {
2305 continue;
2306 }
2307
2308 close(monfd->fd);
2309 monfd->fd = fd;
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002310 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002311 }
2312
Anthony Liguoric227f092009-10-01 16:12:16 -05002313 monfd = qemu_mallocz(sizeof(mon_fd_t));
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002314 monfd->name = qemu_strdup(fdname);
2315 monfd->fd = fd;
2316
Blue Swirl72cf2d42009-09-12 07:36:22 +00002317 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002318 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002319}
2320
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002321static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002322{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002323 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002324 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002325
Blue Swirl72cf2d42009-09-12 07:36:22 +00002326 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002327 if (strcmp(monfd->name, fdname) != 0) {
2328 continue;
2329 }
2330
Blue Swirl72cf2d42009-09-12 07:36:22 +00002331 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002332 close(monfd->fd);
2333 qemu_free(monfd->name);
2334 qemu_free(monfd);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002335 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002336 }
2337
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002338 qerror_report(QERR_FD_NOT_FOUND, fdname);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002339 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002340}
2341
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002342static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002343{
2344 int saved_vm_running = vm_running;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002345 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002346
2347 vm_stop(0);
2348
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002349 if (load_vmstate(name) == 0 && saved_vm_running) {
Juan Quintelac8d41b22009-08-20 19:42:21 +02002350 vm_start();
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002351 }
Juan Quintelac8d41b22009-08-20 19:42:21 +02002352}
2353
Mark McLoughlin7768e042009-07-22 09:11:41 +01002354int monitor_get_fd(Monitor *mon, const char *fdname)
2355{
Anthony Liguoric227f092009-10-01 16:12:16 -05002356 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002357
Blue Swirl72cf2d42009-09-12 07:36:22 +00002358 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002359 int fd;
2360
2361 if (strcmp(monfd->name, fdname) != 0) {
2362 continue;
2363 }
2364
2365 fd = monfd->fd;
2366
2367 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002368 QLIST_REMOVE(monfd, next);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002369 qemu_free(monfd->name);
2370 qemu_free(monfd);
2371
2372 return fd;
2373 }
2374
2375 return -1;
2376}
2377
Anthony Liguoric227f092009-10-01 16:12:16 -05002378static const mon_cmd_t mon_cmds[] = {
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002379#include "hmp-commands.h"
ths5fafdf22007-09-16 21:08:06 +00002380 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002381};
2382
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002383/* Please update hmp-commands.hx when adding or changing commands */
Anthony Liguoric227f092009-10-01 16:12:16 -05002384static const mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002385 {
2386 .name = "version",
2387 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002388 .params = "",
2389 .help = "show the version of QEMU",
Luiz Capitulino45e914c2009-12-10 17:15:58 -02002390 .user_print = do_info_version_print,
Luiz Capitulinoab2d3182009-10-07 13:42:02 -03002391 .mhandler.info_new = do_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002392 },
2393 {
2394 .name = "network",
2395 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002396 .params = "",
2397 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002398 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002399 },
2400 {
2401 .name = "chardev",
2402 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002403 .params = "",
2404 .help = "show the character devices",
Luiz Capitulino588b3832009-12-10 17:16:08 -02002405 .user_print = qemu_chr_info_print,
2406 .mhandler.info_new = qemu_chr_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002407 },
2408 {
2409 .name = "block",
2410 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002411 .params = "",
2412 .help = "show the block devices",
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002413 .user_print = bdrv_info_print,
2414 .mhandler.info_new = bdrv_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002415 },
2416 {
2417 .name = "blockstats",
2418 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002419 .params = "",
2420 .help = "show block device statistics",
Luiz Capitulino218a5362009-12-10 17:16:07 -02002421 .user_print = bdrv_stats_print,
2422 .mhandler.info_new = bdrv_info_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002423 },
2424 {
2425 .name = "registers",
2426 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002427 .params = "",
2428 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002429 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002430 },
2431 {
2432 .name = "cpus",
2433 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002434 .params = "",
2435 .help = "show infos for each CPU",
Luiz Capitulino8f3cec02009-10-07 13:42:04 -03002436 .user_print = monitor_print_cpus,
2437 .mhandler.info_new = do_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002438 },
2439 {
2440 .name = "history",
2441 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002442 .params = "",
2443 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002444 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002445 },
2446 {
2447 .name = "irq",
2448 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002449 .params = "",
2450 .help = "show the interrupts statistics (if available)",
Luiz Capitulino910df892009-10-07 13:41:51 -03002451 .mhandler.info = irq_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002452 },
2453 {
2454 .name = "pic",
2455 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002456 .params = "",
2457 .help = "show i8259 (PIC) state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002458 .mhandler.info = pic_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002459 },
2460 {
2461 .name = "pci",
2462 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002463 .params = "",
2464 .help = "show PCI info",
Luiz Capitulino163c8a52010-01-21 19:15:40 -02002465 .user_print = do_pci_info_print,
2466 .mhandler.info_new = do_pci_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002467 },
aurel327c664e22009-03-03 06:12:22 +00002468#if defined(TARGET_I386) || defined(TARGET_SH4)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002469 {
2470 .name = "tlb",
2471 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002472 .params = "",
2473 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002474 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002475 },
aurel327c664e22009-03-03 06:12:22 +00002476#endif
2477#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002478 {
2479 .name = "mem",
2480 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002481 .params = "",
2482 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002483 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002484 },
bellardb86bda52004-09-18 19:32:46 +00002485#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002486 {
2487 .name = "jit",
2488 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002489 .params = "",
2490 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002491 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002492 },
2493 {
2494 .name = "kvm",
2495 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002496 .params = "",
2497 .help = "show KVM information",
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002498 .user_print = do_info_kvm_print,
2499 .mhandler.info_new = do_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002500 },
2501 {
2502 .name = "numa",
2503 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002504 .params = "",
2505 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002506 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002507 },
2508 {
2509 .name = "usb",
2510 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002511 .params = "",
2512 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002513 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002514 },
2515 {
2516 .name = "usbhost",
2517 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002518 .params = "",
2519 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002520 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002521 },
2522 {
2523 .name = "profile",
2524 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002525 .params = "",
2526 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002527 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002528 },
2529 {
2530 .name = "capture",
2531 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002532 .params = "",
2533 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002534 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002535 },
2536 {
2537 .name = "snapshots",
2538 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002539 .params = "",
2540 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002541 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002542 },
2543 {
2544 .name = "status",
2545 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002546 .params = "",
2547 .help = "show the current VM status (running|paused)",
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002548 .user_print = do_info_status_print,
2549 .mhandler.info_new = do_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002550 },
2551 {
2552 .name = "pcmcia",
2553 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002554 .params = "",
2555 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002556 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002557 },
2558 {
2559 .name = "mice",
2560 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002561 .params = "",
2562 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe78c48e2009-12-10 17:16:04 -02002563 .user_print = do_info_mice_print,
2564 .mhandler.info_new = do_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002565 },
2566 {
2567 .name = "vnc",
2568 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002569 .params = "",
2570 .help = "show the vnc server status",
Luiz Capitulinod96fd292009-12-10 17:16:10 -02002571 .user_print = do_info_vnc_print,
2572 .mhandler.info_new = do_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002573 },
2574 {
2575 .name = "name",
2576 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002577 .params = "",
2578 .help = "show the current VM name",
Luiz Capitulinoe05486c2009-12-10 17:16:01 -02002579 .user_print = do_info_name_print,
2580 .mhandler.info_new = do_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002581 },
2582 {
2583 .name = "uuid",
2584 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002585 .params = "",
2586 .help = "show the current VM UUID",
Luiz Capitulino9603ceb2009-12-10 17:16:03 -02002587 .user_print = do_info_uuid_print,
2588 .mhandler.info_new = do_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002589 },
j_mayer76a66252007-03-07 08:32:30 +00002590#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002591 {
2592 .name = "cpustats",
2593 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002594 .params = "",
2595 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002596 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002597 },
j_mayer76a66252007-03-07 08:32:30 +00002598#endif
blueswir131a60e22007-10-26 18:42:59 +00002599#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002600 {
2601 .name = "usernet",
2602 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002603 .params = "",
2604 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002605 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002606 },
blueswir131a60e22007-10-26 18:42:59 +00002607#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002608 {
2609 .name = "migrate",
2610 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002611 .params = "",
2612 .help = "show migration status",
Luiz Capitulinoc86a6682009-12-10 17:16:05 -02002613 .user_print = do_info_migrate_print,
2614 .mhandler.info_new = do_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002615 },
2616 {
2617 .name = "balloon",
2618 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002619 .params = "",
2620 .help = "show balloon information",
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002621 .user_print = monitor_print_balloon,
Adam Litke625a5be2010-01-26 14:17:35 -06002622 .mhandler.info_async = do_info_balloon,
Jan Kiszka8ac470c2010-06-16 00:38:39 +02002623 .flags = MONITOR_CMD_ASYNC,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002624 },
2625 {
2626 .name = "qtree",
2627 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002628 .params = "",
2629 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002630 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002631 },
2632 {
2633 .name = "qdm",
2634 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002635 .params = "",
2636 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002637 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002638 },
2639 {
2640 .name = "roms",
2641 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002642 .params = "",
2643 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002644 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002645 },
Prerna Saxena22890ab2010-06-24 17:04:53 +05302646#if defined(CONFIG_SIMPLE_TRACE)
2647 {
2648 .name = "trace",
2649 .args_type = "",
2650 .params = "",
2651 .help = "show current contents of trace buffer",
2652 .mhandler.info = do_info_trace,
2653 },
2654 {
2655 .name = "trace-events",
2656 .args_type = "",
2657 .params = "",
2658 .help = "show available trace-events & their state",
2659 .mhandler.info = do_info_trace_events,
2660 },
2661#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002662 {
2663 .name = NULL,
2664 },
bellard9dc39cb2004-03-14 21:38:27 +00002665};
2666
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03002667static const mon_cmd_t qmp_cmds[] = {
2668#include "qmp-commands.h"
2669 { /* NULL */ },
2670};
2671
Luiz Capitulino3e12a752010-09-15 17:20:33 -03002672static const mon_cmd_t qmp_query_cmds[] = {
2673 {
2674 .name = "version",
2675 .args_type = "",
2676 .params = "",
2677 .help = "show the version of QEMU",
2678 .user_print = do_info_version_print,
2679 .mhandler.info_new = do_info_version,
2680 },
2681 {
2682 .name = "commands",
2683 .args_type = "",
2684 .params = "",
2685 .help = "list QMP available commands",
2686 .user_print = monitor_user_noop,
2687 .mhandler.info_new = do_info_commands,
2688 },
2689 {
2690 .name = "chardev",
2691 .args_type = "",
2692 .params = "",
2693 .help = "show the character devices",
2694 .user_print = qemu_chr_info_print,
2695 .mhandler.info_new = qemu_chr_info,
2696 },
2697 {
2698 .name = "block",
2699 .args_type = "",
2700 .params = "",
2701 .help = "show the block devices",
2702 .user_print = bdrv_info_print,
2703 .mhandler.info_new = bdrv_info,
2704 },
2705 {
2706 .name = "blockstats",
2707 .args_type = "",
2708 .params = "",
2709 .help = "show block device statistics",
2710 .user_print = bdrv_stats_print,
2711 .mhandler.info_new = bdrv_info_stats,
2712 },
2713 {
2714 .name = "cpus",
2715 .args_type = "",
2716 .params = "",
2717 .help = "show infos for each CPU",
2718 .user_print = monitor_print_cpus,
2719 .mhandler.info_new = do_info_cpus,
2720 },
2721 {
2722 .name = "pci",
2723 .args_type = "",
2724 .params = "",
2725 .help = "show PCI info",
2726 .user_print = do_pci_info_print,
2727 .mhandler.info_new = do_pci_info,
2728 },
2729 {
2730 .name = "kvm",
2731 .args_type = "",
2732 .params = "",
2733 .help = "show KVM information",
2734 .user_print = do_info_kvm_print,
2735 .mhandler.info_new = do_info_kvm,
2736 },
2737 {
2738 .name = "status",
2739 .args_type = "",
2740 .params = "",
2741 .help = "show the current VM status (running|paused)",
2742 .user_print = do_info_status_print,
2743 .mhandler.info_new = do_info_status,
2744 },
2745 {
2746 .name = "mice",
2747 .args_type = "",
2748 .params = "",
2749 .help = "show which guest mouse is receiving events",
2750 .user_print = do_info_mice_print,
2751 .mhandler.info_new = do_info_mice,
2752 },
2753 {
2754 .name = "vnc",
2755 .args_type = "",
2756 .params = "",
2757 .help = "show the vnc server status",
2758 .user_print = do_info_vnc_print,
2759 .mhandler.info_new = do_info_vnc,
2760 },
2761 {
2762 .name = "name",
2763 .args_type = "",
2764 .params = "",
2765 .help = "show the current VM name",
2766 .user_print = do_info_name_print,
2767 .mhandler.info_new = do_info_name,
2768 },
2769 {
2770 .name = "uuid",
2771 .args_type = "",
2772 .params = "",
2773 .help = "show the current VM UUID",
2774 .user_print = do_info_uuid_print,
2775 .mhandler.info_new = do_info_uuid,
2776 },
2777 {
2778 .name = "migrate",
2779 .args_type = "",
2780 .params = "",
2781 .help = "show migration status",
2782 .user_print = do_info_migrate_print,
2783 .mhandler.info_new = do_info_migrate,
2784 },
2785 {
2786 .name = "balloon",
2787 .args_type = "",
2788 .params = "",
2789 .help = "show balloon information",
2790 .user_print = monitor_print_balloon,
2791 .mhandler.info_async = do_info_balloon,
2792 .flags = MONITOR_CMD_ASYNC,
2793 },
2794 { /* NULL */ },
2795};
2796
bellard9307c4c2004-04-04 12:57:25 +00002797/*******************************************************************/
2798
2799static const char *pch;
2800static jmp_buf expr_env;
2801
bellard92a31b12005-02-10 22:00:52 +00002802#define MD_TLONG 0
2803#define MD_I32 1
2804
bellard9307c4c2004-04-04 12:57:25 +00002805typedef struct MonitorDef {
2806 const char *name;
2807 int offset;
blueswir18662d652008-10-02 18:32:44 +00002808 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002809 int type;
bellard9307c4c2004-04-04 12:57:25 +00002810} MonitorDef;
2811
bellard57206fd2004-04-25 18:54:52 +00002812#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002813static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002814{
bellard6a00d602005-11-21 23:25:50 +00002815 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002816 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002817}
2818#endif
2819
bellarda541f292004-04-12 20:39:29 +00002820#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002821static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002822{
bellard6a00d602005-11-21 23:25:50 +00002823 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002824 unsigned int u;
2825 int i;
2826
2827 u = 0;
2828 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002829 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002830
2831 return u;
2832}
2833
blueswir18662d652008-10-02 18:32:44 +00002834static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002835{
bellard6a00d602005-11-21 23:25:50 +00002836 CPUState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00002837 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002838}
2839
blueswir18662d652008-10-02 18:32:44 +00002840static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002841{
bellard6a00d602005-11-21 23:25:50 +00002842 CPUState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00002843 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002844}
bellard9fddaa02004-05-21 12:59:32 +00002845
blueswir18662d652008-10-02 18:32:44 +00002846static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002847{
bellard6a00d602005-11-21 23:25:50 +00002848 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002849 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002850}
2851
blueswir18662d652008-10-02 18:32:44 +00002852static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002853{
bellard6a00d602005-11-21 23:25:50 +00002854 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002855 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002856}
2857
blueswir18662d652008-10-02 18:32:44 +00002858static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002859{
bellard6a00d602005-11-21 23:25:50 +00002860 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002861 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002862}
bellarda541f292004-04-12 20:39:29 +00002863#endif
2864
bellarde95c8d52004-09-30 22:22:08 +00002865#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002866#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002867static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002868{
bellard6a00d602005-11-21 23:25:50 +00002869 CPUState *env = mon_get_cpu();
Blue Swirl5a834bb2010-05-09 20:19:04 +00002870
2871 return cpu_get_psr(env);
bellarde95c8d52004-09-30 22:22:08 +00002872}
bellard7b936c02005-10-30 17:05:13 +00002873#endif
bellarde95c8d52004-09-30 22:22:08 +00002874
blueswir18662d652008-10-02 18:32:44 +00002875static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002876{
bellard6a00d602005-11-21 23:25:50 +00002877 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002878 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002879}
2880#endif
2881
blueswir18662d652008-10-02 18:32:44 +00002882static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002883#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002884
2885#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00002886 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00002887 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00002888 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002889
bellard9307c4c2004-04-04 12:57:25 +00002890 { "eax", offsetof(CPUState, regs[0]) },
2891 { "ecx", offsetof(CPUState, regs[1]) },
2892 { "edx", offsetof(CPUState, regs[2]) },
2893 { "ebx", offsetof(CPUState, regs[3]) },
2894 { "esp|sp", offsetof(CPUState, regs[4]) },
2895 { "ebp|fp", offsetof(CPUState, regs[5]) },
2896 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00002897 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002898#ifdef TARGET_X86_64
2899 { "r8", offsetof(CPUState, regs[8]) },
2900 { "r9", offsetof(CPUState, regs[9]) },
2901 { "r10", offsetof(CPUState, regs[10]) },
2902 { "r11", offsetof(CPUState, regs[11]) },
2903 { "r12", offsetof(CPUState, regs[12]) },
2904 { "r13", offsetof(CPUState, regs[13]) },
2905 { "r14", offsetof(CPUState, regs[14]) },
2906 { "r15", offsetof(CPUState, regs[15]) },
2907#endif
bellard9307c4c2004-04-04 12:57:25 +00002908 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00002909 { "eip", offsetof(CPUState, eip) },
2910 SEG("cs", R_CS)
2911 SEG("ds", R_DS)
2912 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002913 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002914 SEG("fs", R_FS)
2915 SEG("gs", R_GS)
2916 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002917#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002918 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00002919 { "r0", offsetof(CPUState, gpr[0]) },
2920 { "r1", offsetof(CPUState, gpr[1]) },
2921 { "r2", offsetof(CPUState, gpr[2]) },
2922 { "r3", offsetof(CPUState, gpr[3]) },
2923 { "r4", offsetof(CPUState, gpr[4]) },
2924 { "r5", offsetof(CPUState, gpr[5]) },
2925 { "r6", offsetof(CPUState, gpr[6]) },
2926 { "r7", offsetof(CPUState, gpr[7]) },
2927 { "r8", offsetof(CPUState, gpr[8]) },
2928 { "r9", offsetof(CPUState, gpr[9]) },
2929 { "r10", offsetof(CPUState, gpr[10]) },
2930 { "r11", offsetof(CPUState, gpr[11]) },
2931 { "r12", offsetof(CPUState, gpr[12]) },
2932 { "r13", offsetof(CPUState, gpr[13]) },
2933 { "r14", offsetof(CPUState, gpr[14]) },
2934 { "r15", offsetof(CPUState, gpr[15]) },
2935 { "r16", offsetof(CPUState, gpr[16]) },
2936 { "r17", offsetof(CPUState, gpr[17]) },
2937 { "r18", offsetof(CPUState, gpr[18]) },
2938 { "r19", offsetof(CPUState, gpr[19]) },
2939 { "r20", offsetof(CPUState, gpr[20]) },
2940 { "r21", offsetof(CPUState, gpr[21]) },
2941 { "r22", offsetof(CPUState, gpr[22]) },
2942 { "r23", offsetof(CPUState, gpr[23]) },
2943 { "r24", offsetof(CPUState, gpr[24]) },
2944 { "r25", offsetof(CPUState, gpr[25]) },
2945 { "r26", offsetof(CPUState, gpr[26]) },
2946 { "r27", offsetof(CPUState, gpr[27]) },
2947 { "r28", offsetof(CPUState, gpr[28]) },
2948 { "r29", offsetof(CPUState, gpr[29]) },
2949 { "r30", offsetof(CPUState, gpr[30]) },
2950 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00002951 /* Floating point registers */
2952 { "f0", offsetof(CPUState, fpr[0]) },
2953 { "f1", offsetof(CPUState, fpr[1]) },
2954 { "f2", offsetof(CPUState, fpr[2]) },
2955 { "f3", offsetof(CPUState, fpr[3]) },
2956 { "f4", offsetof(CPUState, fpr[4]) },
2957 { "f5", offsetof(CPUState, fpr[5]) },
2958 { "f6", offsetof(CPUState, fpr[6]) },
2959 { "f7", offsetof(CPUState, fpr[7]) },
2960 { "f8", offsetof(CPUState, fpr[8]) },
2961 { "f9", offsetof(CPUState, fpr[9]) },
2962 { "f10", offsetof(CPUState, fpr[10]) },
2963 { "f11", offsetof(CPUState, fpr[11]) },
2964 { "f12", offsetof(CPUState, fpr[12]) },
2965 { "f13", offsetof(CPUState, fpr[13]) },
2966 { "f14", offsetof(CPUState, fpr[14]) },
2967 { "f15", offsetof(CPUState, fpr[15]) },
2968 { "f16", offsetof(CPUState, fpr[16]) },
2969 { "f17", offsetof(CPUState, fpr[17]) },
2970 { "f18", offsetof(CPUState, fpr[18]) },
2971 { "f19", offsetof(CPUState, fpr[19]) },
2972 { "f20", offsetof(CPUState, fpr[20]) },
2973 { "f21", offsetof(CPUState, fpr[21]) },
2974 { "f22", offsetof(CPUState, fpr[22]) },
2975 { "f23", offsetof(CPUState, fpr[23]) },
2976 { "f24", offsetof(CPUState, fpr[24]) },
2977 { "f25", offsetof(CPUState, fpr[25]) },
2978 { "f26", offsetof(CPUState, fpr[26]) },
2979 { "f27", offsetof(CPUState, fpr[27]) },
2980 { "f28", offsetof(CPUState, fpr[28]) },
2981 { "f29", offsetof(CPUState, fpr[29]) },
2982 { "f30", offsetof(CPUState, fpr[30]) },
2983 { "f31", offsetof(CPUState, fpr[31]) },
2984 { "fpscr", offsetof(CPUState, fpscr) },
2985 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00002986 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00002987 { "lr", offsetof(CPUState, lr) },
2988 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00002989 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00002990 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00002991 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00002992 { "msr", 0, &monitor_get_msr, },
2993 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00002994 { "tbu", 0, &monitor_get_tbu, },
2995 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00002996#if defined(TARGET_PPC64)
2997 /* Address space register */
2998 { "asr", offsetof(CPUState, asr) },
2999#endif
3000 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00003001 { "sdr1", offsetof(CPUState, sdr1) },
3002 { "sr0", offsetof(CPUState, sr[0]) },
3003 { "sr1", offsetof(CPUState, sr[1]) },
3004 { "sr2", offsetof(CPUState, sr[2]) },
3005 { "sr3", offsetof(CPUState, sr[3]) },
3006 { "sr4", offsetof(CPUState, sr[4]) },
3007 { "sr5", offsetof(CPUState, sr[5]) },
3008 { "sr6", offsetof(CPUState, sr[6]) },
3009 { "sr7", offsetof(CPUState, sr[7]) },
3010 { "sr8", offsetof(CPUState, sr[8]) },
3011 { "sr9", offsetof(CPUState, sr[9]) },
3012 { "sr10", offsetof(CPUState, sr[10]) },
3013 { "sr11", offsetof(CPUState, sr[11]) },
3014 { "sr12", offsetof(CPUState, sr[12]) },
3015 { "sr13", offsetof(CPUState, sr[13]) },
3016 { "sr14", offsetof(CPUState, sr[14]) },
3017 { "sr15", offsetof(CPUState, sr[15]) },
3018 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00003019#elif defined(TARGET_SPARC)
3020 { "g0", offsetof(CPUState, gregs[0]) },
3021 { "g1", offsetof(CPUState, gregs[1]) },
3022 { "g2", offsetof(CPUState, gregs[2]) },
3023 { "g3", offsetof(CPUState, gregs[3]) },
3024 { "g4", offsetof(CPUState, gregs[4]) },
3025 { "g5", offsetof(CPUState, gregs[5]) },
3026 { "g6", offsetof(CPUState, gregs[6]) },
3027 { "g7", offsetof(CPUState, gregs[7]) },
3028 { "o0", 0, monitor_get_reg },
3029 { "o1", 1, monitor_get_reg },
3030 { "o2", 2, monitor_get_reg },
3031 { "o3", 3, monitor_get_reg },
3032 { "o4", 4, monitor_get_reg },
3033 { "o5", 5, monitor_get_reg },
3034 { "o6", 6, monitor_get_reg },
3035 { "o7", 7, monitor_get_reg },
3036 { "l0", 8, monitor_get_reg },
3037 { "l1", 9, monitor_get_reg },
3038 { "l2", 10, monitor_get_reg },
3039 { "l3", 11, monitor_get_reg },
3040 { "l4", 12, monitor_get_reg },
3041 { "l5", 13, monitor_get_reg },
3042 { "l6", 14, monitor_get_reg },
3043 { "l7", 15, monitor_get_reg },
3044 { "i0", 16, monitor_get_reg },
3045 { "i1", 17, monitor_get_reg },
3046 { "i2", 18, monitor_get_reg },
3047 { "i3", 19, monitor_get_reg },
3048 { "i4", 20, monitor_get_reg },
3049 { "i5", 21, monitor_get_reg },
3050 { "i6", 22, monitor_get_reg },
3051 { "i7", 23, monitor_get_reg },
3052 { "pc", offsetof(CPUState, pc) },
3053 { "npc", offsetof(CPUState, npc) },
3054 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00003055#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00003056 { "psr", 0, &monitor_get_psr, },
3057 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00003058#endif
bellarde95c8d52004-09-30 22:22:08 +00003059 { "tbr", offsetof(CPUState, tbr) },
3060 { "fsr", offsetof(CPUState, fsr) },
3061 { "f0", offsetof(CPUState, fpr[0]) },
3062 { "f1", offsetof(CPUState, fpr[1]) },
3063 { "f2", offsetof(CPUState, fpr[2]) },
3064 { "f3", offsetof(CPUState, fpr[3]) },
3065 { "f4", offsetof(CPUState, fpr[4]) },
3066 { "f5", offsetof(CPUState, fpr[5]) },
3067 { "f6", offsetof(CPUState, fpr[6]) },
3068 { "f7", offsetof(CPUState, fpr[7]) },
3069 { "f8", offsetof(CPUState, fpr[8]) },
3070 { "f9", offsetof(CPUState, fpr[9]) },
3071 { "f10", offsetof(CPUState, fpr[10]) },
3072 { "f11", offsetof(CPUState, fpr[11]) },
3073 { "f12", offsetof(CPUState, fpr[12]) },
3074 { "f13", offsetof(CPUState, fpr[13]) },
3075 { "f14", offsetof(CPUState, fpr[14]) },
3076 { "f15", offsetof(CPUState, fpr[15]) },
3077 { "f16", offsetof(CPUState, fpr[16]) },
3078 { "f17", offsetof(CPUState, fpr[17]) },
3079 { "f18", offsetof(CPUState, fpr[18]) },
3080 { "f19", offsetof(CPUState, fpr[19]) },
3081 { "f20", offsetof(CPUState, fpr[20]) },
3082 { "f21", offsetof(CPUState, fpr[21]) },
3083 { "f22", offsetof(CPUState, fpr[22]) },
3084 { "f23", offsetof(CPUState, fpr[23]) },
3085 { "f24", offsetof(CPUState, fpr[24]) },
3086 { "f25", offsetof(CPUState, fpr[25]) },
3087 { "f26", offsetof(CPUState, fpr[26]) },
3088 { "f27", offsetof(CPUState, fpr[27]) },
3089 { "f28", offsetof(CPUState, fpr[28]) },
3090 { "f29", offsetof(CPUState, fpr[29]) },
3091 { "f30", offsetof(CPUState, fpr[30]) },
3092 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00003093#ifdef TARGET_SPARC64
3094 { "f32", offsetof(CPUState, fpr[32]) },
3095 { "f34", offsetof(CPUState, fpr[34]) },
3096 { "f36", offsetof(CPUState, fpr[36]) },
3097 { "f38", offsetof(CPUState, fpr[38]) },
3098 { "f40", offsetof(CPUState, fpr[40]) },
3099 { "f42", offsetof(CPUState, fpr[42]) },
3100 { "f44", offsetof(CPUState, fpr[44]) },
3101 { "f46", offsetof(CPUState, fpr[46]) },
3102 { "f48", offsetof(CPUState, fpr[48]) },
3103 { "f50", offsetof(CPUState, fpr[50]) },
3104 { "f52", offsetof(CPUState, fpr[52]) },
3105 { "f54", offsetof(CPUState, fpr[54]) },
3106 { "f56", offsetof(CPUState, fpr[56]) },
3107 { "f58", offsetof(CPUState, fpr[58]) },
3108 { "f60", offsetof(CPUState, fpr[60]) },
3109 { "f62", offsetof(CPUState, fpr[62]) },
3110 { "asi", offsetof(CPUState, asi) },
3111 { "pstate", offsetof(CPUState, pstate) },
3112 { "cansave", offsetof(CPUState, cansave) },
3113 { "canrestore", offsetof(CPUState, canrestore) },
3114 { "otherwin", offsetof(CPUState, otherwin) },
3115 { "wstate", offsetof(CPUState, wstate) },
3116 { "cleanwin", offsetof(CPUState, cleanwin) },
3117 { "fprs", offsetof(CPUState, fprs) },
3118#endif
bellard9307c4c2004-04-04 12:57:25 +00003119#endif
3120 { NULL },
3121};
3122
aliguori376253e2009-03-05 23:01:23 +00003123static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00003124{
aliguori376253e2009-03-05 23:01:23 +00003125 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00003126 longjmp(expr_env, 1);
3127}
3128
Markus Armbruster09b94182010-01-20 13:07:30 +01003129/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00003130static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00003131{
blueswir18662d652008-10-02 18:32:44 +00003132 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00003133 void *ptr;
3134
bellard9307c4c2004-04-04 12:57:25 +00003135 for(md = monitor_defs; md->name != NULL; md++) {
3136 if (compare_cmd(name, md->name)) {
3137 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003138 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003139 } else {
bellard6a00d602005-11-21 23:25:50 +00003140 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003141 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003142 switch(md->type) {
3143 case MD_I32:
3144 *pval = *(int32_t *)ptr;
3145 break;
3146 case MD_TLONG:
3147 *pval = *(target_long *)ptr;
3148 break;
3149 default:
3150 *pval = 0;
3151 break;
3152 }
bellard9307c4c2004-04-04 12:57:25 +00003153 }
3154 return 0;
3155 }
3156 }
3157 return -1;
3158}
3159
3160static void next(void)
3161{
Blue Swirl660f11b2009-07-31 21:16:51 +00003162 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003163 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003164 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003165 pch++;
3166 }
3167}
3168
aliguori376253e2009-03-05 23:01:23 +00003169static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003170
aliguori376253e2009-03-05 23:01:23 +00003171static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003172{
blueswir1c2efc952007-09-25 17:28:42 +00003173 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003174 char *p;
bellard6a00d602005-11-21 23:25:50 +00003175 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003176
3177 switch(*pch) {
3178 case '+':
3179 next();
aliguori376253e2009-03-05 23:01:23 +00003180 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003181 break;
3182 case '-':
3183 next();
aliguori376253e2009-03-05 23:01:23 +00003184 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003185 break;
3186 case '~':
3187 next();
aliguori376253e2009-03-05 23:01:23 +00003188 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003189 break;
3190 case '(':
3191 next();
aliguori376253e2009-03-05 23:01:23 +00003192 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003193 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003194 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003195 }
3196 next();
3197 break;
bellard81d09122004-07-14 17:21:37 +00003198 case '\'':
3199 pch++;
3200 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003201 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003202 n = *pch;
3203 pch++;
3204 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003205 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003206 next();
3207 break;
bellard9307c4c2004-04-04 12:57:25 +00003208 case '$':
3209 {
3210 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003211 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003212
bellard9307c4c2004-04-04 12:57:25 +00003213 pch++;
3214 q = buf;
3215 while ((*pch >= 'a' && *pch <= 'z') ||
3216 (*pch >= 'A' && *pch <= 'Z') ||
3217 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003218 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003219 if ((q - buf) < sizeof(buf) - 1)
3220 *q++ = *pch;
3221 pch++;
3222 }
blueswir1cd390082008-11-16 13:53:32 +00003223 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003224 pch++;
3225 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003226 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003227 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003228 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003229 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003230 }
3231 break;
3232 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003233 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003234 n = 0;
3235 break;
3236 default:
blueswir17743e582007-09-24 18:39:04 +00003237#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003238 n = strtoull(pch, &p, 0);
3239#else
bellard9307c4c2004-04-04 12:57:25 +00003240 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003241#endif
bellard9307c4c2004-04-04 12:57:25 +00003242 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003243 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003244 }
3245 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003246 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003247 pch++;
3248 break;
3249 }
3250 return n;
3251}
3252
3253
aliguori376253e2009-03-05 23:01:23 +00003254static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003255{
blueswir1c2efc952007-09-25 17:28:42 +00003256 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003257 int op;
ths3b46e622007-09-17 08:09:54 +00003258
aliguori376253e2009-03-05 23:01:23 +00003259 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003260 for(;;) {
3261 op = *pch;
3262 if (op != '*' && op != '/' && op != '%')
3263 break;
3264 next();
aliguori376253e2009-03-05 23:01:23 +00003265 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003266 switch(op) {
3267 default:
3268 case '*':
3269 val *= val2;
3270 break;
3271 case '/':
3272 case '%':
ths5fafdf22007-09-16 21:08:06 +00003273 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003274 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003275 if (op == '/')
3276 val /= val2;
3277 else
3278 val %= val2;
3279 break;
3280 }
3281 }
3282 return val;
3283}
3284
aliguori376253e2009-03-05 23:01:23 +00003285static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003286{
blueswir1c2efc952007-09-25 17:28:42 +00003287 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003288 int op;
bellard9307c4c2004-04-04 12:57:25 +00003289
aliguori376253e2009-03-05 23:01:23 +00003290 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003291 for(;;) {
3292 op = *pch;
3293 if (op != '&' && op != '|' && op != '^')
3294 break;
3295 next();
aliguori376253e2009-03-05 23:01:23 +00003296 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003297 switch(op) {
3298 default:
3299 case '&':
3300 val &= val2;
3301 break;
3302 case '|':
3303 val |= val2;
3304 break;
3305 case '^':
3306 val ^= val2;
3307 break;
3308 }
3309 }
3310 return val;
3311}
3312
aliguori376253e2009-03-05 23:01:23 +00003313static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003314{
blueswir1c2efc952007-09-25 17:28:42 +00003315 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003316 int op;
bellard9307c4c2004-04-04 12:57:25 +00003317
aliguori376253e2009-03-05 23:01:23 +00003318 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003319 for(;;) {
3320 op = *pch;
3321 if (op != '+' && op != '-')
3322 break;
3323 next();
aliguori376253e2009-03-05 23:01:23 +00003324 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003325 if (op == '+')
3326 val += val2;
3327 else
3328 val -= val2;
3329 }
3330 return val;
3331}
3332
aliguori376253e2009-03-05 23:01:23 +00003333static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003334{
3335 pch = *pp;
3336 if (setjmp(expr_env)) {
3337 *pp = pch;
3338 return -1;
3339 }
blueswir1cd390082008-11-16 13:53:32 +00003340 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003341 pch++;
aliguori376253e2009-03-05 23:01:23 +00003342 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003343 *pp = pch;
3344 return 0;
3345}
3346
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003347static int get_double(Monitor *mon, double *pval, const char **pp)
3348{
3349 const char *p = *pp;
3350 char *tailp;
3351 double d;
3352
3353 d = strtod(p, &tailp);
3354 if (tailp == p) {
3355 monitor_printf(mon, "Number expected\n");
3356 return -1;
3357 }
3358 if (d != d || d - d != 0) {
3359 /* NaN or infinity */
3360 monitor_printf(mon, "Bad number\n");
3361 return -1;
3362 }
3363 *pval = d;
3364 *pp = tailp;
3365 return 0;
3366}
3367
bellard9307c4c2004-04-04 12:57:25 +00003368static int get_str(char *buf, int buf_size, const char **pp)
3369{
3370 const char *p;
3371 char *q;
3372 int c;
3373
bellard81d09122004-07-14 17:21:37 +00003374 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003375 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003376 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003377 p++;
3378 if (*p == '\0') {
3379 fail:
bellard81d09122004-07-14 17:21:37 +00003380 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003381 *pp = p;
3382 return -1;
3383 }
bellard9307c4c2004-04-04 12:57:25 +00003384 if (*p == '\"') {
3385 p++;
3386 while (*p != '\0' && *p != '\"') {
3387 if (*p == '\\') {
3388 p++;
3389 c = *p++;
3390 switch(c) {
3391 case 'n':
3392 c = '\n';
3393 break;
3394 case 'r':
3395 c = '\r';
3396 break;
3397 case '\\':
3398 case '\'':
3399 case '\"':
3400 break;
3401 default:
3402 qemu_printf("unsupported escape code: '\\%c'\n", c);
3403 goto fail;
3404 }
3405 if ((q - buf) < buf_size - 1) {
3406 *q++ = c;
3407 }
3408 } else {
3409 if ((q - buf) < buf_size - 1) {
3410 *q++ = *p;
3411 }
3412 p++;
3413 }
3414 }
3415 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003416 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003417 goto fail;
3418 }
3419 p++;
3420 } else {
blueswir1cd390082008-11-16 13:53:32 +00003421 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003422 if ((q - buf) < buf_size - 1) {
3423 *q++ = *p;
3424 }
3425 p++;
3426 }
bellard9307c4c2004-04-04 12:57:25 +00003427 }
bellard81d09122004-07-14 17:21:37 +00003428 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003429 *pp = p;
3430 return 0;
3431}
3432
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003433/*
3434 * Store the command-name in cmdname, and return a pointer to
3435 * the remaining of the command string.
3436 */
3437static const char *get_command_name(const char *cmdline,
3438 char *cmdname, size_t nlen)
3439{
3440 size_t len;
3441 const char *p, *pstart;
3442
3443 p = cmdline;
3444 while (qemu_isspace(*p))
3445 p++;
3446 if (*p == '\0')
3447 return NULL;
3448 pstart = p;
3449 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3450 p++;
3451 len = p - pstart;
3452 if (len > nlen - 1)
3453 len = nlen - 1;
3454 memcpy(cmdname, pstart, len);
3455 cmdname[len] = '\0';
3456 return p;
3457}
3458
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003459/**
3460 * Read key of 'type' into 'key' and return the current
3461 * 'type' pointer.
3462 */
3463static char *key_get_info(const char *type, char **key)
3464{
3465 size_t len;
3466 char *p, *str;
3467
3468 if (*type == ',')
3469 type++;
3470
3471 p = strchr(type, ':');
3472 if (!p) {
3473 *key = NULL;
3474 return NULL;
3475 }
3476 len = p - type;
3477
3478 str = qemu_malloc(len + 1);
3479 memcpy(str, type, len);
3480 str[len] = '\0';
3481
3482 *key = str;
3483 return ++p;
3484}
3485
bellard9307c4c2004-04-04 12:57:25 +00003486static int default_fmt_format = 'x';
3487static int default_fmt_size = 4;
3488
3489#define MAX_ARGS 16
3490
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003491static int is_valid_option(const char *c, const char *typestr)
3492{
3493 char option[3];
3494
3495 option[0] = '-';
3496 option[1] = *c;
3497 option[2] = '\0';
3498
3499 typestr = strstr(typestr, option);
3500 return (typestr != NULL);
3501}
3502
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003503static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3504 const char *cmdname)
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003505{
3506 const mon_cmd_t *cmd;
3507
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003508 for (cmd = disp_table; cmd->name != NULL; cmd++) {
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003509 if (compare_cmd(cmdname, cmd->name)) {
3510 return cmd;
3511 }
3512 }
3513
3514 return NULL;
3515}
3516
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003517static const mon_cmd_t *monitor_find_command(const char *cmdname)
3518{
3519 return search_dispatch_table(mon_cmds, cmdname);
3520}
3521
Luiz Capitulino030db6e2010-09-10 16:03:38 -03003522static const mon_cmd_t *qmp_find_query_cmd(const char *info_item)
3523{
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003524 return search_dispatch_table(qmp_query_cmds, info_item);
Luiz Capitulino030db6e2010-09-10 16:03:38 -03003525}
3526
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003527static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3528{
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003529 return search_dispatch_table(qmp_cmds, cmdname);
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003530}
3531
Anthony Liguoric227f092009-10-01 16:12:16 -05003532static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003533 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003534 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003535{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003536 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003537 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003538 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003539 char cmdname[256];
3540 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003541 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003542
3543#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003544 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003545#endif
ths3b46e622007-09-17 08:09:54 +00003546
bellard9307c4c2004-04-04 12:57:25 +00003547 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003548 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3549 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003550 return NULL;
ths3b46e622007-09-17 08:09:54 +00003551
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003552 cmd = monitor_find_command(cmdname);
3553 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003554 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003555 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003556 }
bellard9307c4c2004-04-04 12:57:25 +00003557
bellard9307c4c2004-04-04 12:57:25 +00003558 /* parse the parameters */
3559 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003560 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003561 typestr = key_get_info(typestr, &key);
3562 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003563 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003564 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003565 typestr++;
3566 switch(c) {
3567 case 'F':
bellard81d09122004-07-14 17:21:37 +00003568 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003569 case 's':
3570 {
3571 int ret;
ths3b46e622007-09-17 08:09:54 +00003572
blueswir1cd390082008-11-16 13:53:32 +00003573 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003574 p++;
3575 if (*typestr == '?') {
3576 typestr++;
3577 if (*p == '\0') {
3578 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003579 break;
bellard9307c4c2004-04-04 12:57:25 +00003580 }
3581 }
3582 ret = get_str(buf, sizeof(buf), &p);
3583 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003584 switch(c) {
3585 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003586 monitor_printf(mon, "%s: filename expected\n",
3587 cmdname);
bellard81d09122004-07-14 17:21:37 +00003588 break;
3589 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003590 monitor_printf(mon, "%s: block device name expected\n",
3591 cmdname);
bellard81d09122004-07-14 17:21:37 +00003592 break;
3593 default:
aliguori376253e2009-03-05 23:01:23 +00003594 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003595 break;
3596 }
bellard9307c4c2004-04-04 12:57:25 +00003597 goto fail;
3598 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003599 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003600 }
3601 break;
Markus Armbruster361127d2010-02-10 20:24:35 +01003602 case 'O':
3603 {
3604 QemuOptsList *opts_list;
3605 QemuOpts *opts;
3606
3607 opts_list = qemu_find_opts(key);
3608 if (!opts_list || opts_list->desc->name) {
3609 goto bad_type;
3610 }
3611 while (qemu_isspace(*p)) {
3612 p++;
3613 }
3614 if (!*p)
3615 break;
3616 if (get_str(buf, sizeof(buf), &p) < 0) {
3617 goto fail;
3618 }
3619 opts = qemu_opts_parse(opts_list, buf, 1);
3620 if (!opts) {
3621 goto fail;
3622 }
3623 qemu_opts_to_qdict(opts, qdict);
3624 qemu_opts_del(opts);
3625 }
3626 break;
bellard9307c4c2004-04-04 12:57:25 +00003627 case '/':
3628 {
3629 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003630
blueswir1cd390082008-11-16 13:53:32 +00003631 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003632 p++;
3633 if (*p == '/') {
3634 /* format found */
3635 p++;
3636 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003637 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003638 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003639 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003640 count = count * 10 + (*p - '0');
3641 p++;
3642 }
3643 }
3644 size = -1;
3645 format = -1;
3646 for(;;) {
3647 switch(*p) {
3648 case 'o':
3649 case 'd':
3650 case 'u':
3651 case 'x':
3652 case 'i':
3653 case 'c':
3654 format = *p++;
3655 break;
3656 case 'b':
3657 size = 1;
3658 p++;
3659 break;
3660 case 'h':
3661 size = 2;
3662 p++;
3663 break;
3664 case 'w':
3665 size = 4;
3666 p++;
3667 break;
3668 case 'g':
3669 case 'L':
3670 size = 8;
3671 p++;
3672 break;
3673 default:
3674 goto next;
3675 }
3676 }
3677 next:
blueswir1cd390082008-11-16 13:53:32 +00003678 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003679 monitor_printf(mon, "invalid char in format: '%c'\n",
3680 *p);
bellard9307c4c2004-04-04 12:57:25 +00003681 goto fail;
3682 }
bellard9307c4c2004-04-04 12:57:25 +00003683 if (format < 0)
3684 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003685 if (format != 'i') {
3686 /* for 'i', not specifying a size gives -1 as size */
3687 if (size < 0)
3688 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003689 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003690 }
bellard9307c4c2004-04-04 12:57:25 +00003691 default_fmt_format = format;
3692 } else {
3693 count = 1;
3694 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003695 if (format != 'i') {
3696 size = default_fmt_size;
3697 } else {
3698 size = -1;
3699 }
bellard9307c4c2004-04-04 12:57:25 +00003700 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003701 qdict_put(qdict, "count", qint_from_int(count));
3702 qdict_put(qdict, "format", qint_from_int(format));
3703 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003704 }
3705 break;
3706 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003707 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003708 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003709 {
blueswir1c2efc952007-09-25 17:28:42 +00003710 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003711
blueswir1cd390082008-11-16 13:53:32 +00003712 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003713 p++;
bellard34405572004-06-08 00:55:58 +00003714 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003715 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003716 if (*p == '\0') {
3717 typestr++;
3718 break;
3719 }
bellard34405572004-06-08 00:55:58 +00003720 } else {
3721 if (*p == '.') {
3722 p++;
blueswir1cd390082008-11-16 13:53:32 +00003723 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003724 p++;
bellard34405572004-06-08 00:55:58 +00003725 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003726 typestr++;
3727 break;
bellard34405572004-06-08 00:55:58 +00003728 }
3729 }
bellard13224a82006-07-14 22:03:35 +00003730 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003731 }
aliguori376253e2009-03-05 23:01:23 +00003732 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003733 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003734 /* Check if 'i' is greater than 32-bit */
3735 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3736 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3737 monitor_printf(mon, "integer is for 32-bit values\n");
3738 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003739 } else if (c == 'M') {
3740 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003741 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003742 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003743 }
3744 break;
Jes Sorensendbc0c672010-10-21 17:15:47 +02003745 case 'o':
3746 {
3747 ssize_t val;
3748 char *end;
3749
3750 while (qemu_isspace(*p)) {
3751 p++;
3752 }
3753 if (*typestr == '?') {
3754 typestr++;
3755 if (*p == '\0') {
3756 break;
3757 }
3758 }
3759 val = strtosz(p, &end);
3760 if (val < 0) {
3761 monitor_printf(mon, "invalid size\n");
3762 goto fail;
3763 }
3764 qdict_put(qdict, key, qint_from_int(val));
3765 p = end;
3766 }
3767 break;
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003768 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003769 {
3770 double val;
3771
3772 while (qemu_isspace(*p))
3773 p++;
3774 if (*typestr == '?') {
3775 typestr++;
3776 if (*p == '\0') {
3777 break;
3778 }
3779 }
3780 if (get_double(mon, &val, &p) < 0) {
3781 goto fail;
3782 }
Jes Sorensen07de3e62010-10-21 17:15:49 +02003783 if (p[0] && p[1] == 's') {
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003784 switch (*p) {
3785 case 'm':
3786 val /= 1e3; p += 2; break;
3787 case 'u':
3788 val /= 1e6; p += 2; break;
3789 case 'n':
3790 val /= 1e9; p += 2; break;
3791 }
3792 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003793 if (*p && !qemu_isspace(*p)) {
3794 monitor_printf(mon, "Unknown unit suffix\n");
3795 goto fail;
3796 }
3797 qdict_put(qdict, key, qfloat_from_double(val));
3798 }
3799 break;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01003800 case 'b':
3801 {
3802 const char *beg;
3803 int val;
3804
3805 while (qemu_isspace(*p)) {
3806 p++;
3807 }
3808 beg = p;
3809 while (qemu_isgraph(*p)) {
3810 p++;
3811 }
3812 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3813 val = 1;
3814 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3815 val = 0;
3816 } else {
3817 monitor_printf(mon, "Expected 'on' or 'off'\n");
3818 goto fail;
3819 }
3820 qdict_put(qdict, key, qbool_from_int(val));
3821 }
3822 break;
bellard9307c4c2004-04-04 12:57:25 +00003823 case '-':
3824 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003825 const char *tmp = p;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003826 int skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003827 /* option */
ths3b46e622007-09-17 08:09:54 +00003828
bellard9307c4c2004-04-04 12:57:25 +00003829 c = *typestr++;
3830 if (c == '\0')
3831 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003832 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003833 p++;
bellard9307c4c2004-04-04 12:57:25 +00003834 if (*p == '-') {
3835 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003836 if(c != *p) {
3837 if(!is_valid_option(p, typestr)) {
3838
3839 monitor_printf(mon, "%s: unsupported option -%c\n",
3840 cmdname, *p);
3841 goto fail;
3842 } else {
3843 skip_key = 1;
3844 }
bellard9307c4c2004-04-04 12:57:25 +00003845 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003846 if(skip_key) {
3847 p = tmp;
3848 } else {
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003849 /* has option */
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003850 p++;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003851 qdict_put(qdict, key, qbool_from_int(1));
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003852 }
bellard9307c4c2004-04-04 12:57:25 +00003853 }
bellard9307c4c2004-04-04 12:57:25 +00003854 }
3855 break;
3856 default:
3857 bad_type:
aliguori376253e2009-03-05 23:01:23 +00003858 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00003859 goto fail;
3860 }
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003861 qemu_free(key);
3862 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003863 }
3864 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003865 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003866 p++;
3867 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003868 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3869 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00003870 goto fail;
3871 }
3872
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003873 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003874
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003875fail:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003876 qemu_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003877 return NULL;
3878}
3879
Markus Armbrusterd6f46832010-02-17 10:52:26 +01003880void monitor_set_error(Monitor *mon, QError *qerror)
3881{
3882 /* report only the first error */
3883 if (!mon->error) {
3884 mon->error = qerror;
3885 } else {
3886 MON_DEBUG("Additional error report at %s:%d\n",
3887 qerror->file, qerror->linenr);
3888 QDECREF(qerror);
3889 }
3890}
3891
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003892static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3893{
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003894 if (monitor_ctrl_mode(mon)) {
3895 if (ret && !monitor_has_error(mon)) {
3896 /*
3897 * If it returns failure, it must have passed on error.
3898 *
3899 * Action: Report an internal error to the client if in QMP.
3900 */
Markus Armbrusterab5b0272010-03-02 18:15:09 +01003901 qerror_report(QERR_UNDEFINED_ERROR);
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003902 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
3903 cmd->name);
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003904 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003905
3906#ifdef CONFIG_DEBUG_MONITOR
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003907 if (!ret && monitor_has_error(mon)) {
3908 /*
3909 * If it returns success, it must not have passed an error.
3910 *
3911 * Action: Report the passed error to the client.
3912 */
3913 MON_DEBUG("command '%s' returned success but passed an error\n",
3914 cmd->name);
3915 }
Luiz Capitulino10e4f602010-02-10 23:50:06 -02003916
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003917 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
3918 /*
3919 * Handlers should not call Monitor print functions.
3920 *
3921 * Action: Ignore them in QMP.
3922 *
3923 * (XXX: we don't check any 'info' or 'query' command here
3924 * because the user print function _is_ called by do_info(), hence
3925 * we will trigger this check. This problem will go away when we
3926 * make 'query' commands real and kill do_info())
3927 */
3928 MON_DEBUG("command '%s' called print functions %d time(s)\n",
3929 cmd->name, mon_print_count_get(mon));
3930 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003931#endif
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003932 } else {
3933 assert(!monitor_has_error(mon));
3934 QDECREF(mon->error);
3935 mon->error = NULL;
3936 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003937}
3938
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003939static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003940{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003941 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003942 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003943
3944 qdict = qdict_new();
3945
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03003946 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003947 if (!cmd)
3948 goto out;
3949
Luiz Capitulino4903de02010-09-16 11:01:32 -03003950 if (handler_is_async(cmd)) {
Adam Litke940cc302010-01-25 12:18:44 -06003951 user_async_cmd_handler(mon, cmd, qdict);
Luiz Capitulino9e807212010-09-16 10:58:59 -03003952 } else if (handler_is_qobject(cmd)) {
Luiz Capitulinode79ba62010-09-16 11:06:11 -03003953 QObject *data = NULL;
3954
3955 /* XXX: ignores the error code */
3956 cmd->mhandler.cmd_new(mon, qdict, &data);
3957 assert(!monitor_has_error(mon));
3958 if (data) {
3959 cmd->user_print(mon, data);
3960 qobject_decref(data);
3961 }
Luiz Capitulino13917be2009-10-07 13:41:54 -03003962 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03003963 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003964 }
3965
Luiz Capitulino13917be2009-10-07 13:41:54 -03003966out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003967 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00003968}
3969
bellard81d09122004-07-14 17:21:37 +00003970static void cmd_completion(const char *name, const char *list)
3971{
3972 const char *p, *pstart;
3973 char cmd[128];
3974 int len;
3975
3976 p = list;
3977 for(;;) {
3978 pstart = p;
3979 p = strchr(p, '|');
3980 if (!p)
3981 p = pstart + strlen(pstart);
3982 len = p - pstart;
3983 if (len > sizeof(cmd) - 2)
3984 len = sizeof(cmd) - 2;
3985 memcpy(cmd, pstart, len);
3986 cmd[len] = '\0';
3987 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00003988 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00003989 }
3990 if (*p == '\0')
3991 break;
3992 p++;
3993 }
3994}
3995
3996static void file_completion(const char *input)
3997{
3998 DIR *ffs;
3999 struct dirent *d;
4000 char path[1024];
4001 char file[1024], file_prefix[1024];
4002 int input_path_len;
4003 const char *p;
4004
ths5fafdf22007-09-16 21:08:06 +00004005 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00004006 if (!p) {
4007 input_path_len = 0;
4008 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00004009 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00004010 } else {
4011 input_path_len = p - input + 1;
4012 memcpy(path, input, input_path_len);
4013 if (input_path_len > sizeof(path) - 1)
4014 input_path_len = sizeof(path) - 1;
4015 path[input_path_len] = '\0';
4016 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4017 }
4018#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00004019 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
4020 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00004021#endif
4022 ffs = opendir(path);
4023 if (!ffs)
4024 return;
4025 for(;;) {
4026 struct stat sb;
4027 d = readdir(ffs);
4028 if (!d)
4029 break;
Kusanagi Kouichi46c7fc12010-10-20 18:00:01 +09004030
4031 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4032 continue;
4033 }
4034
bellard81d09122004-07-14 17:21:37 +00004035 if (strstart(d->d_name, file_prefix, NULL)) {
4036 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00004037 if (input_path_len < sizeof(file))
4038 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4039 d->d_name);
bellard81d09122004-07-14 17:21:37 +00004040 /* stat the file to find out if it's a directory.
4041 * In that case add a slash to speed up typing long paths
4042 */
4043 stat(file, &sb);
4044 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00004045 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00004046 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00004047 }
4048 }
4049 closedir(ffs);
4050}
4051
aliguori51de9762009-03-05 23:00:43 +00004052static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00004053{
aliguori51de9762009-03-05 23:00:43 +00004054 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00004055 const char *input = opaque;
4056
4057 if (input[0] == '\0' ||
4058 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00004059 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00004060 }
4061}
4062
4063/* NOTE: this parser is an approximate form of the real command parser */
4064static void parse_cmdline(const char *cmdline,
4065 int *pnb_args, char **args)
4066{
4067 const char *p;
4068 int nb_args, ret;
4069 char buf[1024];
4070
4071 p = cmdline;
4072 nb_args = 0;
4073 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00004074 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00004075 p++;
4076 if (*p == '\0')
4077 break;
4078 if (nb_args >= MAX_ARGS)
4079 break;
4080 ret = get_str(buf, sizeof(buf), &p);
4081 args[nb_args] = qemu_strdup(buf);
4082 nb_args++;
4083 if (ret < 0)
4084 break;
4085 }
4086 *pnb_args = nb_args;
4087}
4088
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004089static const char *next_arg_type(const char *typestr)
4090{
4091 const char *p = strchr(typestr, ':');
4092 return (p != NULL ? ++p : typestr);
4093}
4094
aliguori4c36ba32009-03-05 23:01:37 +00004095static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00004096{
4097 const char *cmdname;
4098 char *args[MAX_ARGS];
4099 int nb_args, i, len;
4100 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05004101 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00004102 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00004103
4104 parse_cmdline(cmdline, &nb_args, args);
4105#ifdef DEBUG_COMPLETION
4106 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00004107 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00004108 }
4109#endif
4110
4111 /* if the line ends with a space, it means we want to complete the
4112 next arg */
4113 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00004114 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
Jan Kiszka03a63482010-06-16 00:38:33 +02004115 if (nb_args >= MAX_ARGS) {
4116 goto cleanup;
4117 }
bellard81d09122004-07-14 17:21:37 +00004118 args[nb_args++] = qemu_strdup("");
4119 }
4120 if (nb_args <= 1) {
4121 /* command completion */
4122 if (nb_args == 0)
4123 cmdname = "";
4124 else
4125 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00004126 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00004127 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00004128 cmd_completion(cmdname, cmd->name);
4129 }
4130 } else {
4131 /* find the command */
Jan Kiszka03a63482010-06-16 00:38:33 +02004132 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4133 if (compare_cmd(args[0], cmd->name)) {
4134 break;
4135 }
bellard81d09122004-07-14 17:21:37 +00004136 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004137 if (!cmd->name) {
4138 goto cleanup;
4139 }
4140
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004141 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00004142 for(i = 0; i < nb_args - 2; i++) {
4143 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004144 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004145 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004146 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004147 }
4148 }
4149 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00004150 if (*ptype == '-' && ptype[1] != '\0') {
Jan Kiszka3b6dbf22010-06-16 00:38:34 +02004151 ptype = next_arg_type(ptype);
Blue Swirl2a1704a2009-08-23 20:10:28 +00004152 }
bellard81d09122004-07-14 17:21:37 +00004153 switch(*ptype) {
4154 case 'F':
4155 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00004156 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004157 file_completion(str);
4158 break;
4159 case 'B':
4160 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00004161 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004162 bdrv_iterate(block_completion_it, (void *)str);
4163 break;
bellard7fe48482004-10-09 18:08:01 +00004164 case 's':
4165 /* XXX: more generic ? */
4166 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00004167 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00004168 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4169 cmd_completion(str, cmd->name);
4170 }
bellard64866c32006-05-07 18:03:31 +00004171 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00004172 char *sep = strrchr(str, '-');
4173 if (sep)
4174 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00004175 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00004176 for(key = key_defs; key->name != NULL; key++) {
4177 cmd_completion(str, key->name);
4178 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02004179 } else if (!strcmp(cmd->name, "help|?")) {
4180 readline_set_completion_index(cur_mon->rs, strlen(str));
4181 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4182 cmd_completion(str, cmd->name);
4183 }
bellard7fe48482004-10-09 18:08:01 +00004184 }
4185 break;
bellard81d09122004-07-14 17:21:37 +00004186 default:
4187 break;
4188 }
4189 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004190
4191cleanup:
4192 for (i = 0; i < nb_args; i++) {
bellard81d09122004-07-14 17:21:37 +00004193 qemu_free(args[i]);
Jan Kiszka03a63482010-06-16 00:38:33 +02004194 }
bellard81d09122004-07-14 17:21:37 +00004195}
4196
aliguori731b0362009-03-05 23:01:42 +00004197static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004198{
aliguori731b0362009-03-05 23:01:42 +00004199 Monitor *mon = opaque;
4200
Jan Kiszkac62313b2009-12-04 14:05:29 +01004201 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00004202}
4203
Luiz Capitulino09069b12010-02-04 18:10:06 -02004204static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4205{
4206 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4207 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4208}
4209
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004210/*
Luiz Capitulino4af91932010-06-22 11:44:05 -03004211 * Argument validation rules:
4212 *
4213 * 1. The argument must exist in cmd_args qdict
4214 * 2. The argument type must be the expected one
4215 *
4216 * Special case: If the argument doesn't exist in cmd_args and
4217 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4218 * checking is skipped for it.
4219 */
4220static int check_client_args_type(const QDict *client_args,
4221 const QDict *cmd_args, int flags)
4222{
4223 const QDictEntry *ent;
4224
4225 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4226 QObject *obj;
4227 QString *arg_type;
4228 const QObject *client_arg = qdict_entry_value(ent);
4229 const char *client_arg_name = qdict_entry_key(ent);
4230
4231 obj = qdict_get(cmd_args, client_arg_name);
4232 if (!obj) {
4233 if (flags & QMP_ACCEPT_UNKNOWNS) {
4234 /* handler accepts unknowns */
4235 continue;
4236 }
4237 /* client arg doesn't exist */
4238 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4239 return -1;
4240 }
4241
4242 arg_type = qobject_to_qstring(obj);
4243 assert(arg_type != NULL);
4244
4245 /* check if argument's type is correct */
4246 switch (qstring_get_str(arg_type)[0]) {
4247 case 'F':
4248 case 'B':
4249 case 's':
4250 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4251 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4252 "string");
4253 return -1;
4254 }
4255 break;
4256 case 'i':
4257 case 'l':
4258 case 'M':
Jes Sorensendbc0c672010-10-21 17:15:47 +02004259 case 'o':
Luiz Capitulino4af91932010-06-22 11:44:05 -03004260 if (qobject_type(client_arg) != QTYPE_QINT) {
4261 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4262 "int");
4263 return -1;
4264 }
4265 break;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004266 case 'T':
4267 if (qobject_type(client_arg) != QTYPE_QINT &&
4268 qobject_type(client_arg) != QTYPE_QFLOAT) {
4269 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4270 "number");
4271 return -1;
4272 }
4273 break;
4274 case 'b':
4275 case '-':
4276 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4277 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4278 "bool");
4279 return -1;
4280 }
4281 break;
4282 case 'O':
4283 assert(flags & QMP_ACCEPT_UNKNOWNS);
4284 break;
4285 case '/':
4286 case '.':
4287 /*
4288 * These types are not supported by QMP and thus are not
4289 * handled here. Fall through.
4290 */
4291 default:
4292 abort();
4293 }
4294 }
4295
4296 return 0;
4297}
4298
4299/*
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004300 * - Check if the client has passed all mandatory args
4301 * - Set special flags for argument validation
4302 */
4303static int check_mandatory_args(const QDict *cmd_args,
4304 const QDict *client_args, int *flags)
4305{
4306 const QDictEntry *ent;
4307
4308 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4309 const char *cmd_arg_name = qdict_entry_key(ent);
4310 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4311 assert(type != NULL);
4312
4313 if (qstring_get_str(type)[0] == 'O') {
4314 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4315 *flags |= QMP_ACCEPT_UNKNOWNS;
4316 } else if (qstring_get_str(type)[0] != '-' &&
4317 qstring_get_str(type)[1] != '?' &&
4318 !qdict_haskey(client_args, cmd_arg_name)) {
4319 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4320 return -1;
4321 }
4322 }
4323
4324 return 0;
4325}
4326
4327static QDict *qdict_from_args_type(const char *args_type)
4328{
4329 int i;
4330 QDict *qdict;
4331 QString *key, *type, *cur_qs;
4332
4333 assert(args_type != NULL);
4334
4335 qdict = qdict_new();
4336
4337 if (args_type == NULL || args_type[0] == '\0') {
4338 /* no args, empty qdict */
4339 goto out;
4340 }
4341
4342 key = qstring_new();
4343 type = qstring_new();
4344
4345 cur_qs = key;
4346
4347 for (i = 0;; i++) {
4348 switch (args_type[i]) {
4349 case ',':
4350 case '\0':
4351 qdict_put(qdict, qstring_get_str(key), type);
4352 QDECREF(key);
4353 if (args_type[i] == '\0') {
4354 goto out;
4355 }
4356 type = qstring_new(); /* qdict has ref */
4357 cur_qs = key = qstring_new();
4358 break;
4359 case ':':
4360 cur_qs = type;
4361 break;
4362 default:
4363 qstring_append_chr(cur_qs, args_type[i]);
4364 break;
4365 }
4366 }
4367
4368out:
4369 return qdict;
4370}
4371
4372/*
4373 * Client argument checking rules:
4374 *
4375 * 1. Client must provide all mandatory arguments
Luiz Capitulino4af91932010-06-22 11:44:05 -03004376 * 2. Each argument provided by the client must be expected
4377 * 3. Each argument provided by the client must have the type expected
4378 * by the command
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004379 */
4380static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4381{
4382 int flags, err;
4383 QDict *cmd_args;
4384
4385 cmd_args = qdict_from_args_type(cmd->args_type);
4386
4387 flags = 0;
4388 err = check_mandatory_args(cmd_args, client_args, &flags);
4389 if (err) {
4390 goto out;
4391 }
4392
Luiz Capitulino4af91932010-06-22 11:44:05 -03004393 err = check_client_args_type(client_args, cmd_args, flags);
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004394
4395out:
4396 QDECREF(cmd_args);
4397 return err;
4398}
4399
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004400/*
4401 * Input object checking rules
4402 *
4403 * 1. Input object must be a dict
4404 * 2. The "execute" key must exist
4405 * 3. The "execute" key must be a string
4406 * 4. If the "arguments" key exists, it must be a dict
4407 * 5. If the "id" key exists, it can be anything (ie. json-value)
4408 * 6. Any argument not listed above is considered invalid
4409 */
4410static QDict *qmp_check_input_obj(QObject *input_obj)
4411{
4412 const QDictEntry *ent;
4413 int has_exec_key = 0;
4414 QDict *input_dict;
4415
4416 if (qobject_type(input_obj) != QTYPE_QDICT) {
4417 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4418 return NULL;
4419 }
4420
4421 input_dict = qobject_to_qdict(input_obj);
4422
4423 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4424 const char *arg_name = qdict_entry_key(ent);
4425 const QObject *arg_obj = qdict_entry_value(ent);
4426
4427 if (!strcmp(arg_name, "execute")) {
4428 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4429 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4430 "string");
4431 return NULL;
4432 }
4433 has_exec_key = 1;
4434 } else if (!strcmp(arg_name, "arguments")) {
4435 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4436 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4437 "object");
4438 return NULL;
4439 }
4440 } else if (!strcmp(arg_name, "id")) {
4441 /* FIXME: check duplicated IDs for async commands */
4442 } else {
4443 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4444 return NULL;
4445 }
4446 }
4447
4448 if (!has_exec_key) {
4449 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4450 return NULL;
4451 }
4452
4453 return input_dict;
4454}
4455
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004456static void qmp_call_query_cmd(Monitor *mon, const mon_cmd_t *cmd)
4457{
4458 QObject *ret_data = NULL;
4459
Luiz Capitulino4903de02010-09-16 11:01:32 -03004460 if (handler_is_async(cmd)) {
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004461 qmp_async_info_handler(mon, cmd);
4462 if (monitor_has_error(mon)) {
4463 monitor_protocol_emitter(mon, NULL);
4464 }
4465 } else {
4466 cmd->mhandler.info_new(mon, &ret_data);
Luiz Capitulinoc01e6882010-11-22 16:22:47 -02004467 monitor_protocol_emitter(mon, ret_data);
4468 qobject_decref(ret_data);
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004469 }
4470}
4471
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004472static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4473 const QDict *params)
4474{
4475 int ret;
4476 QObject *data = NULL;
4477
4478 mon_print_count_init(mon);
4479
4480 ret = cmd->mhandler.cmd_new(mon, params, &data);
4481 handler_audit(mon, cmd, ret);
4482 monitor_protocol_emitter(mon, data);
4483 qobject_decref(data);
4484}
4485
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004486static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4487{
4488 int err;
4489 QObject *obj;
4490 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004491 const mon_cmd_t *cmd;
4492 Monitor *mon = cur_mon;
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004493 const char *cmd_name, *query_cmd;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004494
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004495 query_cmd = NULL;
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004496 args = input = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004497
4498 obj = json_parser_parse(tokens, NULL);
4499 if (!obj) {
4500 // FIXME: should be triggered in json_parser_parse()
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004501 qerror_report(QERR_JSON_PARSING);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004502 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004503 }
4504
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004505 input = qmp_check_input_obj(obj);
4506 if (!input) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004507 qobject_decref(obj);
4508 goto err_out;
4509 }
4510
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004511 mon->mc->id = qdict_get(input, "id");
4512 qobject_incref(mon->mc->id);
4513
Luiz Capitulino0bbab462010-05-31 17:32:50 -03004514 cmd_name = qdict_get_str(input, "execute");
Luiz Capitulino09069b12010-02-04 18:10:06 -02004515 if (invalid_qmp_mode(mon, cmd_name)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004516 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004517 goto err_out;
Luiz Capitulino09069b12010-02-04 18:10:06 -02004518 }
4519
Luiz Capitulinod1249ea2010-09-13 14:44:27 -03004520 if (strstart(cmd_name, "query-", &query_cmd)) {
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004521 cmd = qmp_find_query_cmd(query_cmd);
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004522 } else {
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03004523 cmd = qmp_find_cmd(cmd_name);
Luiz Capitulino0fb88582010-09-15 10:56:17 -03004524 }
4525
Luiz Capitulinod1249ea2010-09-13 14:44:27 -03004526 if (!cmd) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004527 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4528 goto err_out;
4529 }
4530
4531 obj = qdict_get(input, "arguments");
4532 if (!obj) {
4533 args = qdict_new();
4534 } else {
4535 args = qobject_to_qdict(obj);
4536 QINCREF(args);
4537 }
4538
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004539 err = qmp_check_client_args(cmd, args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004540 if (err < 0) {
4541 goto err_out;
4542 }
4543
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004544 if (query_cmd) {
4545 qmp_call_query_cmd(mon, cmd);
Luiz Capitulino4903de02010-09-16 11:01:32 -03004546 } else if (handler_is_async(cmd)) {
Luiz Capitulino5af7bba2010-06-22 19:10:46 -03004547 err = qmp_async_cmd_handler(mon, cmd, args);
4548 if (err) {
4549 /* emit the error response */
4550 goto err_out;
4551 }
Adam Litke940cc302010-01-25 12:18:44 -06004552 } else {
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004553 qmp_call_cmd(mon, cmd, args);
Adam Litke940cc302010-01-25 12:18:44 -06004554 }
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004555
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004556 goto out;
4557
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004558err_out:
4559 monitor_protocol_emitter(mon, NULL);
4560out:
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004561 QDECREF(input);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004562 QDECREF(args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004563}
4564
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004565/**
4566 * monitor_control_read(): Read and handle QMP input
4567 */
4568static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4569{
4570 Monitor *old_mon = cur_mon;
4571
4572 cur_mon = opaque;
4573
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004574 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004575
4576 cur_mon = old_mon;
4577}
4578
aliguori731b0362009-03-05 23:01:42 +00004579static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004580{
aliguori731b0362009-03-05 23:01:42 +00004581 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004582 int i;
aliguori376253e2009-03-05 23:01:23 +00004583
aliguori731b0362009-03-05 23:01:42 +00004584 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004585
aliguoricde76ee2009-03-05 23:01:51 +00004586 if (cur_mon->rs) {
4587 for (i = 0; i < size; i++)
4588 readline_handle_byte(cur_mon->rs, buf[i]);
4589 } else {
4590 if (size == 0 || buf[size - 1] != 0)
4591 monitor_printf(cur_mon, "corrupted command\n");
4592 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004593 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00004594 }
aliguori731b0362009-03-05 23:01:42 +00004595
4596 cur_mon = old_mon;
4597}
aliguorid8f44602008-10-06 13:52:44 +00004598
aliguori376253e2009-03-05 23:01:23 +00004599static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004600{
aliguori731b0362009-03-05 23:01:42 +00004601 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004602 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00004603 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00004604}
4605
aliguoricde76ee2009-03-05 23:01:51 +00004606int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004607{
aliguoricde76ee2009-03-05 23:01:51 +00004608 if (!mon->rs)
4609 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00004610 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00004611 return 0;
aliguorid8f44602008-10-06 13:52:44 +00004612}
4613
aliguori376253e2009-03-05 23:01:23 +00004614void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004615{
aliguoricde76ee2009-03-05 23:01:51 +00004616 if (!mon->rs)
4617 return;
aliguori731b0362009-03-05 23:01:42 +00004618 if (--mon->suspend_cnt == 0)
4619 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00004620}
4621
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004622static QObject *get_qmp_greeting(void)
4623{
4624 QObject *ver;
4625
4626 do_info_version(NULL, &ver);
4627 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4628}
4629
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004630/**
4631 * monitor_control_event(): Print QMP gretting
4632 */
4633static void monitor_control_event(void *opaque, int event)
4634{
Luiz Capitulino47116d12010-02-08 17:01:30 -02004635 QObject *data;
4636 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004637
Luiz Capitulino47116d12010-02-08 17:01:30 -02004638 switch (event) {
4639 case CHR_EVENT_OPENED:
Luiz Capitulino4a7e1192010-02-04 18:10:05 -02004640 mon->mc->command_mode = 0;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004641 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004642 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004643 monitor_json_emitter(mon, data);
4644 qobject_decref(data);
Luiz Capitulino47116d12010-02-08 17:01:30 -02004645 break;
4646 case CHR_EVENT_CLOSED:
4647 json_message_parser_destroy(&mon->mc->parser);
4648 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004649 }
4650}
4651
aliguori731b0362009-03-05 23:01:42 +00004652static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00004653{
aliguori376253e2009-03-05 23:01:23 +00004654 Monitor *mon = opaque;
4655
aliguori2724b182009-03-05 23:01:47 +00004656 switch (event) {
4657 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004658 mon->mux_out = 0;
4659 if (mon->reset_seen) {
4660 readline_restart(mon->rs);
4661 monitor_resume(mon);
4662 monitor_flush(mon);
4663 } else {
4664 mon->suspend_cnt = 0;
4665 }
aliguori2724b182009-03-05 23:01:47 +00004666 break;
ths86e94de2007-01-05 22:01:59 +00004667
aliguori2724b182009-03-05 23:01:47 +00004668 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004669 if (mon->reset_seen) {
4670 if (mon->suspend_cnt == 0) {
4671 monitor_printf(mon, "\n");
4672 }
4673 monitor_flush(mon);
4674 monitor_suspend(mon);
4675 } else {
4676 mon->suspend_cnt++;
4677 }
4678 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00004679 break;
4680
Amit Shahb6b8df52009-10-07 18:31:16 +05304681 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00004682 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4683 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004684 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00004685 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004686 }
4687 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00004688 break;
4689 }
ths86e94de2007-01-05 22:01:59 +00004690}
4691
aliguori76655d62009-03-06 20:27:37 +00004692
4693/*
4694 * Local variables:
4695 * c-indent-level: 4
4696 * c-basic-offset: 4
4697 * tab-width: 8
4698 * End:
4699 */
4700
aliguori731b0362009-03-05 23:01:42 +00004701void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004702{
aliguori731b0362009-03-05 23:01:42 +00004703 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00004704 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00004705
4706 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00004707 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00004708 is_first_init = 0;
4709 }
aliguori87127162009-03-05 23:01:29 +00004710
4711 mon = qemu_mallocz(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00004712
aliguori87127162009-03-05 23:01:29 +00004713 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00004714 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00004715 if (flags & MONITOR_USE_READLINE) {
4716 mon->rs = readline_init(mon, monitor_find_completion);
4717 monitor_read_command(mon, 0);
4718 }
aliguori87127162009-03-05 23:01:29 +00004719
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004720 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004721 mon->mc = qemu_mallocz(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004722 /* Control mode requires special handlers */
4723 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4724 monitor_control_event, mon);
4725 } else {
4726 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4727 monitor_event, mon);
4728 }
aliguori87127162009-03-05 23:01:29 +00004729
Blue Swirl72cf2d42009-09-12 07:36:22 +00004730 QLIST_INSERT_HEAD(&mon_list, mon, entry);
Markus Armbruster8631b602010-02-18 11:41:55 +01004731 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4732 default_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00004733}
4734
aliguori376253e2009-03-05 23:01:23 +00004735static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004736{
aliguoribb5fc202009-03-05 23:01:15 +00004737 BlockDriverState *bs = opaque;
4738 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00004739
aliguoribb5fc202009-03-05 23:01:15 +00004740 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00004741 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00004742 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00004743 }
aliguori731b0362009-03-05 23:01:42 +00004744 if (mon->password_completion_cb)
4745 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00004746
aliguori731b0362009-03-05 23:01:42 +00004747 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00004748}
aliguoric0f4ce72009-03-05 23:01:01 +00004749
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004750int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4751 BlockDriverCompletionFunc *completion_cb,
4752 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00004753{
aliguoricde76ee2009-03-05 23:01:51 +00004754 int err;
4755
aliguoribb5fc202009-03-05 23:01:15 +00004756 if (!bdrv_key_required(bs)) {
4757 if (completion_cb)
4758 completion_cb(opaque, 0);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004759 return 0;
aliguoribb5fc202009-03-05 23:01:15 +00004760 }
aliguoric0f4ce72009-03-05 23:01:01 +00004761
Luiz Capitulino94171e12009-12-07 21:37:00 +01004762 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004763 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004764 return -1;
Luiz Capitulino94171e12009-12-07 21:37:00 +01004765 }
4766
aliguori376253e2009-03-05 23:01:23 +00004767 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4768 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00004769
aliguori731b0362009-03-05 23:01:42 +00004770 mon->password_completion_cb = completion_cb;
4771 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00004772
aliguoricde76ee2009-03-05 23:01:51 +00004773 err = monitor_read_password(mon, bdrv_password_cb, bs);
4774
4775 if (err && completion_cb)
4776 completion_cb(opaque, err);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004777
4778 return err;
aliguoric0f4ce72009-03-05 23:01:01 +00004779}