blob: f1aebc10f1a5c7e95f54b81433d78a3dc149c717 [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
Luiz Capitulino83a27d42010-11-22 17:10:37 -0200354 json = mon->flags & MONITOR_USE_PRETTY ? qobject_to_json_pretty(data) :
355 qobject_to_json(data);
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200356 assert(json != NULL);
357
Luiz Capitulinob8b08262010-02-10 23:50:04 -0200358 qstring_append_chr(json, '\n');
359 monitor_puts(mon, qstring_get_str(json));
Luiz Capitulino4a29a852009-11-26 22:59:05 -0200360
Luiz Capitulino9b57c022009-11-26 22:58:58 -0200361 QDECREF(json);
362}
363
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200364static void monitor_protocol_emitter(Monitor *mon, QObject *data)
365{
366 QDict *qmp;
367
368 qmp = qdict_new();
369
370 if (!monitor_has_error(mon)) {
371 /* success response */
372 if (data) {
373 qobject_incref(data);
374 qdict_put_obj(qmp, "return", data);
375 } else {
Luiz Capitulino0abc6572009-12-18 13:25:00 -0200376 /* return an empty QDict by default */
377 qdict_put(qmp, "return", qdict_new());
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200378 }
379 } else {
380 /* error response */
Markus Armbruster77e595e2009-12-07 21:37:16 +0100381 qdict_put(mon->error->error, "desc", qerror_human(mon->error));
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200382 qdict_put(qmp, "error", mon->error->error);
383 QINCREF(mon->error->error);
384 QDECREF(mon->error);
385 mon->error = NULL;
386 }
387
Luiz Capitulino5fa737a2009-11-26 22:59:01 -0200388 if (mon->mc->id) {
389 qdict_put_obj(qmp, "id", mon->mc->id);
390 mon->mc->id = NULL;
391 }
392
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200393 monitor_json_emitter(mon, QOBJECT(qmp));
394 QDECREF(qmp);
395}
396
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200397static void timestamp_put(QDict *qdict)
398{
399 int err;
400 QObject *obj;
Blue Swirld08d6f02009-12-04 18:06:39 +0000401 qemu_timeval tv;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200402
Blue Swirld08d6f02009-12-04 18:06:39 +0000403 err = qemu_gettimeofday(&tv);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200404 if (err < 0)
405 return;
406
407 obj = qobject_from_jsonf("{ 'seconds': %" PRId64 ", "
408 "'microseconds': %" PRId64 " }",
409 (int64_t) tv.tv_sec, (int64_t) tv.tv_usec);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200410 qdict_put_obj(qdict, "timestamp", obj);
411}
412
413/**
414 * monitor_protocol_event(): Generate a Monitor event
415 *
416 * Event-specific data can be emitted through the (optional) 'data' parameter.
417 */
418void monitor_protocol_event(MonitorEvent event, QObject *data)
419{
420 QDict *qmp;
421 const char *event_name;
Adam Litkef039a562010-01-15 08:34:02 -0600422 Monitor *mon;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200423
Blue Swirl242cd002009-12-04 18:05:45 +0000424 assert(event < QEVENT_MAX);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200425
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200426 switch (event) {
Blue Swirl242cd002009-12-04 18:05:45 +0000427 case QEVENT_SHUTDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200428 event_name = "SHUTDOWN";
429 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000430 case QEVENT_RESET:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200431 event_name = "RESET";
432 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000433 case QEVENT_POWERDOWN:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200434 event_name = "POWERDOWN";
435 break;
Blue Swirl242cd002009-12-04 18:05:45 +0000436 case QEVENT_STOP:
Luiz Capitulinob1a15e72009-11-26 22:59:04 -0200437 event_name = "STOP";
438 break;
Luiz Capitulino6ed2c482010-04-27 20:35:59 -0300439 case QEVENT_RESUME:
440 event_name = "RESUME";
441 break;
Luiz Capitulino586153d2010-01-14 14:50:57 -0200442 case QEVENT_VNC_CONNECTED:
443 event_name = "VNC_CONNECTED";
444 break;
Luiz Capitulino0d2ed462010-01-14 14:50:59 -0200445 case QEVENT_VNC_INITIALIZED:
446 event_name = "VNC_INITIALIZED";
447 break;
Luiz Capitulino0d72f3d2010-01-14 14:50:58 -0200448 case QEVENT_VNC_DISCONNECTED:
449 event_name = "VNC_DISCONNECTED";
450 break;
Luiz Capitulinoaa1db6e2010-02-03 12:41:00 -0200451 case QEVENT_BLOCK_IO_ERROR:
452 event_name = "BLOCK_IO_ERROR";
453 break;
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300454 case QEVENT_RTC_CHANGE:
455 event_name = "RTC_CHANGE";
456 break;
Luiz Capitulino9eedeb32010-02-25 12:13:04 -0300457 case QEVENT_WATCHDOG:
458 event_name = "WATCHDOG";
459 break;
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200460 default:
461 abort();
462 break;
463 }
464
465 qmp = qdict_new();
466 timestamp_put(qmp);
467 qdict_put(qmp, "event", qstring_from_str(event_name));
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200468 if (data) {
469 qobject_incref(data);
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200470 qdict_put_obj(qmp, "data", data);
Luiz Capitulino3d72f9a2010-01-08 16:45:53 -0200471 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200472
Adam Litkef039a562010-01-15 08:34:02 -0600473 QLIST_FOREACH(mon, &mon_list, entry) {
Luiz Capitulino09069b12010-02-04 18:10:06 -0200474 if (monitor_ctrl_mode(mon) && qmp_cmd_mode(mon)) {
Luiz Capitulino23fabed2010-01-20 10:37:59 -0200475 monitor_json_emitter(mon, QOBJECT(qmp));
476 }
Adam Litkef039a562010-01-15 08:34:02 -0600477 }
Luiz Capitulino0d1ea872009-11-26 22:59:03 -0200478 QDECREF(qmp);
479}
480
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200481static int do_qmp_capabilities(Monitor *mon, const QDict *params,
482 QObject **ret_data)
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200483{
484 /* Will setup QMP capabilities in the future */
485 if (monitor_ctrl_mode(mon)) {
486 mon->mc->command_mode = 1;
487 }
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200488
489 return 0;
Luiz Capitulino4a7e1192010-02-04 18:10:05 -0200490}
491
Luiz Capitulino0268d972010-10-22 10:08:02 -0200492static int mon_set_cpu(int cpu_index);
493static void handle_user_command(Monitor *mon, const char *cmdline);
494
495static int do_hmp_passthrough(Monitor *mon, const QDict *params,
496 QObject **ret_data)
497{
498 int ret = 0;
499 Monitor *old_mon, hmp;
500 CharDriverState mchar;
501
502 memset(&hmp, 0, sizeof(hmp));
503 qemu_chr_init_mem(&mchar);
504 hmp.chr = &mchar;
505
506 old_mon = cur_mon;
507 cur_mon = &hmp;
508
509 if (qdict_haskey(params, "cpu-index")) {
510 ret = mon_set_cpu(qdict_get_int(params, "cpu-index"));
511 if (ret < 0) {
512 cur_mon = old_mon;
513 qerror_report(QERR_INVALID_PARAMETER_VALUE, "cpu-index", "a CPU number");
514 goto out;
515 }
516 }
517
518 handle_user_command(&hmp, qdict_get_str(params, "command-line"));
519 cur_mon = old_mon;
520
521 if (qemu_chr_mem_osize(hmp.chr) > 0) {
522 *ret_data = QOBJECT(qemu_chr_mem_to_qs(hmp.chr));
523 }
524
525out:
526 qemu_chr_close_mem(hmp.chr);
527 return ret;
528}
529
bellard9dc39cb2004-03-14 21:38:27 +0000530static int compare_cmd(const char *name, const char *list)
531{
532 const char *p, *pstart;
533 int len;
534 len = strlen(name);
535 p = list;
536 for(;;) {
537 pstart = p;
538 p = strchr(p, '|');
539 if (!p)
540 p = pstart + strlen(pstart);
541 if ((p - pstart) == len && !memcmp(pstart, name, len))
542 return 1;
543 if (*p == '\0')
544 break;
545 p++;
546 }
547 return 0;
548}
549
Anthony Liguoric227f092009-10-01 16:12:16 -0500550static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds,
aliguori376253e2009-03-05 23:01:23 +0000551 const char *prefix, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000552{
Anthony Liguoric227f092009-10-01 16:12:16 -0500553 const mon_cmd_t *cmd;
bellard9dc39cb2004-03-14 21:38:27 +0000554
555 for(cmd = cmds; cmd->name != NULL; cmd++) {
556 if (!name || !strcmp(name, cmd->name))
aliguori376253e2009-03-05 23:01:23 +0000557 monitor_printf(mon, "%s%s %s -- %s\n", prefix, cmd->name,
558 cmd->params, cmd->help);
bellard9dc39cb2004-03-14 21:38:27 +0000559 }
560}
561
aliguori376253e2009-03-05 23:01:23 +0000562static void help_cmd(Monitor *mon, const char *name)
bellard9dc39cb2004-03-14 21:38:27 +0000563{
564 if (name && !strcmp(name, "info")) {
aliguori376253e2009-03-05 23:01:23 +0000565 help_cmd_dump(mon, info_cmds, "info ", NULL);
bellard9dc39cb2004-03-14 21:38:27 +0000566 } else {
aliguori376253e2009-03-05 23:01:23 +0000567 help_cmd_dump(mon, mon_cmds, "", name);
bellardf193c792004-03-21 17:06:25 +0000568 if (name && !strcmp(name, "log")) {
blueswir18662d652008-10-02 18:32:44 +0000569 const CPULogItem *item;
aliguori376253e2009-03-05 23:01:23 +0000570 monitor_printf(mon, "Log items (comma separated):\n");
571 monitor_printf(mon, "%-10s %s\n", "none", "remove all logs");
bellardf193c792004-03-21 17:06:25 +0000572 for(item = cpu_log_items; item->mask != 0; item++) {
aliguori376253e2009-03-05 23:01:23 +0000573 monitor_printf(mon, "%-10s %s\n", item->name, item->help);
bellardf193c792004-03-21 17:06:25 +0000574 }
575 }
bellard9dc39cb2004-03-14 21:38:27 +0000576 }
577}
578
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300579static void do_help_cmd(Monitor *mon, const QDict *qdict)
Luiz Capitulino38183182009-08-28 15:27:08 -0300580{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300581 help_cmd(mon, qdict_get_try_str(qdict, "name"));
Luiz Capitulino38183182009-08-28 15:27:08 -0300582}
583
Prerna Saxena22890ab2010-06-24 17:04:53 +0530584#ifdef CONFIG_SIMPLE_TRACE
585static void do_change_trace_event_state(Monitor *mon, const QDict *qdict)
586{
587 const char *tp_name = qdict_get_str(qdict, "name");
588 bool new_state = qdict_get_bool(qdict, "option");
Blue Swirlf871d682010-10-13 19:14:29 +0000589 int ret = st_change_trace_event_state(tp_name, new_state);
590
591 if (!ret) {
592 monitor_printf(mon, "unknown event name \"%s\"\n", tp_name);
593 }
Prerna Saxena22890ab2010-06-24 17:04:53 +0530594}
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100595
596static void do_trace_file(Monitor *mon, const QDict *qdict)
597{
598 const char *op = qdict_get_try_str(qdict, "op");
599 const char *arg = qdict_get_try_str(qdict, "arg");
600
601 if (!op) {
602 st_print_trace_file_status((FILE *)mon, &monitor_fprintf);
603 } else if (!strcmp(op, "on")) {
604 st_set_trace_file_enabled(true);
605 } else if (!strcmp(op, "off")) {
606 st_set_trace_file_enabled(false);
607 } else if (!strcmp(op, "flush")) {
608 st_flush_trace_buffer();
609 } else if (!strcmp(op, "set")) {
610 if (arg) {
611 st_set_trace_file(arg);
612 }
613 } else {
614 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
615 help_cmd(mon, "trace-file");
616 }
617}
Prerna Saxena22890ab2010-06-24 17:04:53 +0530618#endif
619
Adam Litke940cc302010-01-25 12:18:44 -0600620static void user_monitor_complete(void *opaque, QObject *ret_data)
621{
622 MonitorCompletionData *data = (MonitorCompletionData *)opaque;
623
624 if (ret_data) {
625 data->user_print(data->mon, ret_data);
626 }
627 monitor_resume(data->mon);
628 qemu_free(data);
629}
630
631static void qmp_monitor_complete(void *opaque, QObject *ret_data)
632{
633 monitor_protocol_emitter(opaque, ret_data);
634}
635
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300636static int qmp_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
637 const QDict *params)
Adam Litke940cc302010-01-25 12:18:44 -0600638{
Luiz Capitulino5af7bba2010-06-22 19:10:46 -0300639 return cmd->mhandler.cmd_async(mon, params, qmp_monitor_complete, mon);
Adam Litke940cc302010-01-25 12:18:44 -0600640}
641
642static void qmp_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
643{
644 cmd->mhandler.info_async(mon, qmp_monitor_complete, mon);
645}
646
647static void user_async_cmd_handler(Monitor *mon, const mon_cmd_t *cmd,
648 const QDict *params)
649{
650 int ret;
651
652 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
653 cb_data->mon = mon;
654 cb_data->user_print = cmd->user_print;
655 monitor_suspend(mon);
656 ret = cmd->mhandler.cmd_async(mon, params,
657 user_monitor_complete, cb_data);
658 if (ret < 0) {
659 monitor_resume(mon);
660 qemu_free(cb_data);
661 }
662}
663
664static void user_async_info_handler(Monitor *mon, const mon_cmd_t *cmd)
665{
666 int ret;
667
668 MonitorCompletionData *cb_data = qemu_malloc(sizeof(*cb_data));
669 cb_data->mon = mon;
670 cb_data->user_print = cmd->user_print;
671 monitor_suspend(mon);
672 ret = cmd->mhandler.info_async(mon, user_monitor_complete, cb_data);
673 if (ret < 0) {
674 monitor_resume(mon);
675 qemu_free(cb_data);
676 }
677}
678
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300679static void do_info(Monitor *mon, const QDict *qdict)
bellard9dc39cb2004-03-14 21:38:27 +0000680{
Anthony Liguoric227f092009-10-01 16:12:16 -0500681 const mon_cmd_t *cmd;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300682 const char *item = qdict_get_try_str(qdict, "item");
bellard9dc39cb2004-03-14 21:38:27 +0000683
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200684 if (!item) {
bellard9dc39cb2004-03-14 21:38:27 +0000685 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200686 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300687
688 for (cmd = info_cmds; cmd->name != NULL; cmd++) {
ths5fafdf22007-09-16 21:08:06 +0000689 if (compare_cmd(item, cmd->name))
Luiz Capitulino13c74252009-10-07 13:41:55 -0300690 break;
bellard9dc39cb2004-03-14 21:38:27 +0000691 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300692
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200693 if (cmd->name == NULL) {
Luiz Capitulino13c74252009-10-07 13:41:55 -0300694 goto help;
Luiz Capitulino956f1a02009-11-26 22:59:00 -0200695 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300696
Luiz Capitulino4903de02010-09-16 11:01:32 -0300697 if (handler_is_async(cmd)) {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300698 user_async_info_handler(mon, cmd);
Luiz Capitulino9e807212010-09-16 10:58:59 -0300699 } else if (handler_is_qobject(cmd)) {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300700 QObject *info_data = NULL;
Jan Kiszkaa6c4d362010-06-28 18:27:47 +0200701
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300702 cmd->mhandler.info_new(mon, &info_data);
703 if (info_data) {
704 cmd->user_print(mon, info_data);
705 qobject_decref(info_data);
Luiz Capitulino25b422e2009-11-26 22:58:59 -0200706 }
Luiz Capitulino13c74252009-10-07 13:41:55 -0300707 } else {
Luiz Capitulino1dcbd6f2010-09-10 17:00:16 -0300708 cmd->mhandler.info(mon);
Luiz Capitulino13c74252009-10-07 13:41:55 -0300709 }
710
Luiz Capitulino1162daa2010-09-13 12:15:26 -0300711 return;
Luiz Capitulino13c74252009-10-07 13:41:55 -0300712
713help:
714 help_cmd(mon, "info");
bellard9dc39cb2004-03-14 21:38:27 +0000715}
716
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200717static void do_info_version_print(Monitor *mon, const QObject *data)
718{
719 QDict *qdict;
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300720 QDict *qemu;
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200721
722 qdict = qobject_to_qdict(data);
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300723 qemu = qdict_get_qdict(qdict, "qemu");
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200724
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300725 monitor_printf(mon, "%" PRId64 ".%" PRId64 ".%" PRId64 "%s\n",
726 qdict_get_int(qemu, "major"),
727 qdict_get_int(qemu, "minor"),
728 qdict_get_int(qemu, "micro"),
729 qdict_get_str(qdict, "package"));
Luiz Capitulino45e914c2009-12-10 17:15:58 -0200730}
731
Luiz Capitulinoab2d3182009-10-07 13:42:02 -0300732static void do_info_version(Monitor *mon, QObject **ret_data)
bellard9bc9d1c2004-10-10 15:15:51 +0000733{
Miguel Di Ciurcio Filho0ec02912010-08-20 16:42:30 -0300734 const char *version = QEMU_VERSION;
735 int major = 0, minor = 0, micro = 0;
736 char *tmp;
737
738 major = strtol(version, &tmp, 10);
739 tmp++;
740 minor = strtol(tmp, &tmp, 10);
741 tmp++;
742 micro = strtol(tmp, &tmp, 10);
743
744 *ret_data = qobject_from_jsonf("{ 'qemu': { 'major': %d, 'minor': %d, \
745 'micro': %d }, 'package': %s }", major, minor, micro, QEMU_PKGVERSION);
bellard9bc9d1c2004-10-10 15:15:51 +0000746}
747
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200748static void do_info_name_print(Monitor *mon, const QObject *data)
thsc35734b2007-03-19 15:17:08 +0000749{
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200750 QDict *qdict;
751
752 qdict = qobject_to_qdict(data);
753 if (qdict_size(qdict) == 0) {
754 return;
755 }
756
757 monitor_printf(mon, "%s\n", qdict_get_str(qdict, "name"));
758}
759
Luiz Capitulinoe05486c2009-12-10 17:16:01 -0200760static void do_info_name(Monitor *mon, QObject **ret_data)
761{
762 *ret_data = qemu_name ? qobject_from_jsonf("{'name': %s }", qemu_name) :
763 qobject_from_jsonf("{}");
thsc35734b2007-03-19 15:17:08 +0000764}
765
Luiz Capitulino1a728672009-12-10 17:15:56 -0200766static QObject *get_cmd_dict(const char *name)
767{
768 const char *p;
769
770 /* Remove '|' from some commands */
771 p = strchr(name, '|');
772 if (p) {
773 p++;
774 } else {
775 p = name;
776 }
777
778 return qobject_from_jsonf("{ 'name': %s }", p);
779}
780
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200781static void do_info_commands(Monitor *mon, QObject **ret_data)
782{
783 QList *cmd_list;
784 const mon_cmd_t *cmd;
785
786 cmd_list = qlist_new();
787
Luiz Capitulinof36b4af2010-09-15 17:17:45 -0300788 for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino2e061a72010-09-16 10:36:54 -0300789 qlist_append_obj(cmd_list, get_cmd_dict(cmd->name));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200790 }
791
Luiz Capitulino3e12a752010-09-15 17:20:33 -0300792 for (cmd = qmp_query_cmds; cmd->name != NULL; cmd++) {
Luiz Capitulino2e061a72010-09-16 10:36:54 -0300793 char buf[128];
794 snprintf(buf, sizeof(buf), "query-%s", cmd->name);
795 qlist_append_obj(cmd_list, get_cmd_dict(buf));
Luiz Capitulinoe3bba9d2009-11-26 22:58:56 -0200796 }
797
798 *ret_data = QOBJECT(cmd_list);
799}
800
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200801static void do_info_uuid_print(Monitor *mon, const QObject *data)
blueswir1f1f23ad2008-09-18 18:30:20 +0000802{
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200803 monitor_printf(mon, "%s\n", qdict_get_str(qobject_to_qdict(data), "UUID"));
804}
805
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200806static void do_info_uuid(Monitor *mon, QObject **ret_data)
807{
808 char uuid[64];
809
810 snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1],
aliguori376253e2009-03-05 23:01:23 +0000811 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
812 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
813 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
814 qemu_uuid[14], qemu_uuid[15]);
Luiz Capitulino9603ceb2009-12-10 17:16:03 -0200815 *ret_data = qobject_from_jsonf("{ 'UUID': %s }", uuid);
thsa36e69d2007-12-02 05:18:19 +0000816}
817
bellard6a00d602005-11-21 23:25:50 +0000818/* get the current CPU defined by the user */
pbrook9596ebb2007-11-18 01:44:38 +0000819static int mon_set_cpu(int cpu_index)
bellard6a00d602005-11-21 23:25:50 +0000820{
821 CPUState *env;
822
823 for(env = first_cpu; env != NULL; env = env->next_cpu) {
824 if (env->cpu_index == cpu_index) {
aliguori731b0362009-03-05 23:01:42 +0000825 cur_mon->mon_cpu = env;
bellard6a00d602005-11-21 23:25:50 +0000826 return 0;
827 }
828 }
829 return -1;
830}
831
pbrook9596ebb2007-11-18 01:44:38 +0000832static CPUState *mon_get_cpu(void)
bellard6a00d602005-11-21 23:25:50 +0000833{
aliguori731b0362009-03-05 23:01:42 +0000834 if (!cur_mon->mon_cpu) {
bellard6a00d602005-11-21 23:25:50 +0000835 mon_set_cpu(0);
836 }
Avi Kivity4c0960c2009-08-17 23:19:53 +0300837 cpu_synchronize_state(cur_mon->mon_cpu);
aliguori731b0362009-03-05 23:01:42 +0000838 return cur_mon->mon_cpu;
bellard6a00d602005-11-21 23:25:50 +0000839}
840
aliguori376253e2009-03-05 23:01:23 +0000841static void do_info_registers(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +0000842{
bellard6a00d602005-11-21 23:25:50 +0000843 CPUState *env;
844 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +0000845#ifdef TARGET_I386
aliguori376253e2009-03-05 23:01:23 +0000846 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellardd24b15a2005-07-03 21:28:00 +0000847 X86_DUMP_FPU);
bellard9307c4c2004-04-04 12:57:25 +0000848#else
aliguori376253e2009-03-05 23:01:23 +0000849 cpu_dump_state(env, (FILE *)mon, monitor_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000850 0);
bellard9307c4c2004-04-04 12:57:25 +0000851#endif
852}
853
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300854static void print_cpu_iter(QObject *obj, void *opaque)
855{
856 QDict *cpu;
857 int active = ' ';
858 Monitor *mon = opaque;
859
860 assert(qobject_type(obj) == QTYPE_QDICT);
861 cpu = qobject_to_qdict(obj);
862
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200863 if (qdict_get_bool(cpu, "current")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300864 active = '*';
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200865 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300866
867 monitor_printf(mon, "%c CPU #%d: ", active, (int)qdict_get_int(cpu, "CPU"));
868
869#if defined(TARGET_I386)
870 monitor_printf(mon, "pc=0x" TARGET_FMT_lx,
871 (target_ulong) qdict_get_int(cpu, "pc"));
872#elif defined(TARGET_PPC)
873 monitor_printf(mon, "nip=0x" TARGET_FMT_lx,
874 (target_long) qdict_get_int(cpu, "nip"));
875#elif defined(TARGET_SPARC)
876 monitor_printf(mon, "pc=0x " TARGET_FMT_lx,
877 (target_long) qdict_get_int(cpu, "pc"));
878 monitor_printf(mon, "npc=0x" TARGET_FMT_lx,
879 (target_long) qdict_get_int(cpu, "npc"));
880#elif defined(TARGET_MIPS)
881 monitor_printf(mon, "PC=0x" TARGET_FMT_lx,
882 (target_long) qdict_get_int(cpu, "PC"));
883#endif
884
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200885 if (qdict_get_bool(cpu, "halted")) {
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300886 monitor_printf(mon, " (halted)");
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200887 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300888
889 monitor_printf(mon, "\n");
890}
891
892static void monitor_print_cpus(Monitor *mon, const QObject *data)
893{
894 QList *cpu_list;
895
896 assert(qobject_type(data) == QTYPE_QLIST);
897 cpu_list = qobject_to_qlist(data);
898 qlist_iter(cpu_list, print_cpu_iter, mon);
899}
900
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300901static void do_info_cpus(Monitor *mon, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000902{
903 CPUState *env;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300904 QList *cpu_list;
905
906 cpu_list = qlist_new();
bellard6a00d602005-11-21 23:25:50 +0000907
908 /* just to set the default cpu if not already done */
909 mon_get_cpu();
910
911 for(env = first_cpu; env != NULL; env = env->next_cpu) {
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200912 QDict *cpu;
913 QObject *obj;
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300914
Avi Kivity4c0960c2009-08-17 23:19:53 +0300915 cpu_synchronize_state(env);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300916
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200917 obj = qobject_from_jsonf("{ 'CPU': %d, 'current': %i, 'halted': %i }",
918 env->cpu_index, env == mon->mon_cpu,
919 env->halted);
Luiz Capitulino55483ad2009-12-10 17:15:57 -0200920
921 cpu = qobject_to_qdict(obj);
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300922
bellard6a00d602005-11-21 23:25:50 +0000923#if defined(TARGET_I386)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300924 qdict_put(cpu, "pc", qint_from_int(env->eip + env->segs[R_CS].base));
bellarde80e1cc2005-11-23 22:05:28 +0000925#elif defined(TARGET_PPC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300926 qdict_put(cpu, "nip", qint_from_int(env->nip));
bellardba3c64f2005-12-05 20:31:52 +0000927#elif defined(TARGET_SPARC)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300928 qdict_put(cpu, "pc", qint_from_int(env->pc));
929 qdict_put(cpu, "npc", qint_from_int(env->npc));
thsead93602007-09-06 00:18:15 +0000930#elif defined(TARGET_MIPS)
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300931 qdict_put(cpu, "PC", qint_from_int(env->active_tc.PC));
bellardce5232c2008-05-28 17:14:10 +0000932#endif
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300933
934 qlist_append(cpu_list, cpu);
bellard6a00d602005-11-21 23:25:50 +0000935 }
Luiz Capitulino8f3cec02009-10-07 13:42:04 -0300936
937 *ret_data = QOBJECT(cpu_list);
bellard6a00d602005-11-21 23:25:50 +0000938}
939
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200940static int do_cpu_set(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard6a00d602005-11-21 23:25:50 +0000941{
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300942 int index = qdict_get_int(qdict, "index");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200943 if (mon_set_cpu(index) < 0) {
Markus Armbrustere17ba872010-03-25 17:22:36 +0100944 qerror_report(QERR_INVALID_PARAMETER_VALUE, "index",
945 "a CPU number");
Luiz Capitulino584cbdb2010-02-10 23:49:51 -0200946 return -1;
947 }
948 return 0;
bellard6a00d602005-11-21 23:25:50 +0000949}
950
aliguori376253e2009-03-05 23:01:23 +0000951static void do_info_jit(Monitor *mon)
bellarde3db7222005-01-26 22:00:47 +0000952{
aliguori376253e2009-03-05 23:01:23 +0000953 dump_exec_info((FILE *)mon, monitor_fprintf);
bellarde3db7222005-01-26 22:00:47 +0000954}
955
aliguori376253e2009-03-05 23:01:23 +0000956static void do_info_history(Monitor *mon)
bellardaa455482004-04-04 13:07:25 +0000957{
958 int i;
bellard7e2515e2004-08-01 21:52:19 +0000959 const char *str;
ths3b46e622007-09-17 08:09:54 +0000960
aliguoricde76ee2009-03-05 23:01:51 +0000961 if (!mon->rs)
962 return;
bellard7e2515e2004-08-01 21:52:19 +0000963 i = 0;
964 for(;;) {
aliguori731b0362009-03-05 23:01:42 +0000965 str = readline_get_history(mon->rs, i);
bellard7e2515e2004-08-01 21:52:19 +0000966 if (!str)
967 break;
aliguori376253e2009-03-05 23:01:23 +0000968 monitor_printf(mon, "%d: '%s'\n", i, str);
bellard8e3a9fd2004-10-09 17:32:58 +0000969 i++;
bellardaa455482004-04-04 13:07:25 +0000970 }
971}
972
j_mayer76a66252007-03-07 08:32:30 +0000973#if defined(TARGET_PPC)
974/* XXX: not implemented in other targets */
aliguori376253e2009-03-05 23:01:23 +0000975static void do_info_cpu_stats(Monitor *mon)
j_mayer76a66252007-03-07 08:32:30 +0000976{
977 CPUState *env;
978
979 env = mon_get_cpu();
aliguori376253e2009-03-05 23:01:23 +0000980 cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
j_mayer76a66252007-03-07 08:32:30 +0000981}
982#endif
983
Prerna Saxena22890ab2010-06-24 17:04:53 +0530984#if defined(CONFIG_SIMPLE_TRACE)
985static void do_info_trace(Monitor *mon)
986{
987 st_print_trace((FILE *)mon, &monitor_fprintf);
988}
989
990static void do_info_trace_events(Monitor *mon)
991{
992 st_print_trace_events((FILE *)mon, &monitor_fprintf);
993}
994#endif
995
Luiz Capitulinob223f352009-10-07 13:41:56 -0300996/**
997 * do_quit(): Quit QEMU execution
998 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -0200999static int do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard9dc39cb2004-03-14 21:38:27 +00001000{
Luiz Capitulino39b59d22010-05-11 18:08:20 -03001001 monitor_suspend(mon);
1002 no_shutdown = 0;
1003 qemu_system_shutdown_request();
1004
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001005 return 0;
bellard9dc39cb2004-03-14 21:38:27 +00001006}
1007
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001008static int change_vnc_password(const char *password)
aliguoribb5fc202009-03-05 23:01:15 +00001009{
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001010 if (vnc_display_password(NULL, password) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001011 qerror_report(QERR_SET_PASSWD_FAILED);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001012 return -1;
1013 }
aliguoribb5fc202009-03-05 23:01:15 +00001014
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001015 return 0;
Markus Armbruster2895e072009-12-07 21:37:01 +01001016}
1017
1018static void change_vnc_password_cb(Monitor *mon, const char *password,
1019 void *opaque)
1020{
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001021 change_vnc_password(password);
aliguori731b0362009-03-05 23:01:42 +00001022 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00001023}
1024
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001025static int do_change_vnc(Monitor *mon, const char *target, const char *arg)
thse25a5822007-08-25 01:36:20 +00001026{
ths70848512007-08-25 01:37:05 +00001027 if (strcmp(target, "passwd") == 0 ||
aliguori28a76be2009-03-06 20:27:40 +00001028 strcmp(target, "password") == 0) {
1029 if (arg) {
aliguoribb5fc202009-03-05 23:01:15 +00001030 char password[9];
aliguori28a76be2009-03-06 20:27:40 +00001031 strncpy(password, arg, sizeof(password));
1032 password[sizeof(password) - 1] = '\0';
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001033 return change_vnc_password(password);
aliguoribb5fc202009-03-05 23:01:15 +00001034 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001035 return monitor_read_password(mon, change_vnc_password_cb, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001036 }
ths70848512007-08-25 01:37:05 +00001037 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001038 if (vnc_display_open(NULL, target) < 0) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001039 qerror_report(QERR_VNC_SERVER_FAILED, target);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001040 return -1;
1041 }
ths70848512007-08-25 01:37:05 +00001042 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001043
1044 return 0;
thse25a5822007-08-25 01:36:20 +00001045}
1046
Markus Armbrusterec3b82a2009-12-07 21:37:09 +01001047/**
1048 * do_change(): Change a removable medium, or VNC configuration
1049 */
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001050static int do_change(Monitor *mon, const QDict *qdict, QObject **ret_data)
thse25a5822007-08-25 01:36:20 +00001051{
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001052 const char *device = qdict_get_str(qdict, "device");
1053 const char *target = qdict_get_str(qdict, "target");
1054 const char *arg = qdict_get_try_str(qdict, "arg");
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001055 int ret;
1056
thse25a5822007-08-25 01:36:20 +00001057 if (strcmp(device, "vnc") == 0) {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001058 ret = do_change_vnc(mon, target, arg);
thse25a5822007-08-25 01:36:20 +00001059 } else {
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001060 ret = do_change_block(mon, device, target, arg);
thse25a5822007-08-25 01:36:20 +00001061 }
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02001062
1063 return ret;
thse25a5822007-08-25 01:36:20 +00001064}
1065
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -03001066static int do_screen_dump(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard59a983b2004-03-17 23:17:16 +00001067{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001068 vga_hw_screen_dump(qdict_get_str(qdict, "filename"));
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -03001069 return 0;
bellard59a983b2004-03-17 23:17:16 +00001070}
1071
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001072static void do_logfile(Monitor *mon, const QDict *qdict)
pbrooke735b912007-06-30 13:53:24 +00001073{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001074 cpu_set_log_filename(qdict_get_str(qdict, "filename"));
pbrooke735b912007-06-30 13:53:24 +00001075}
1076
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001077static void do_log(Monitor *mon, const QDict *qdict)
bellardf193c792004-03-21 17:06:25 +00001078{
1079 int mask;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001080 const char *items = qdict_get_str(qdict, "items");
ths3b46e622007-09-17 08:09:54 +00001081
bellard9307c4c2004-04-04 12:57:25 +00001082 if (!strcmp(items, "none")) {
bellardf193c792004-03-21 17:06:25 +00001083 mask = 0;
1084 } else {
bellard9307c4c2004-04-04 12:57:25 +00001085 mask = cpu_str_to_log_mask(items);
bellardf193c792004-03-21 17:06:25 +00001086 if (!mask) {
aliguori376253e2009-03-05 23:01:23 +00001087 help_cmd(mon, "log");
bellardf193c792004-03-21 17:06:25 +00001088 return;
1089 }
1090 }
1091 cpu_set_log(mask);
1092}
1093
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001094static void do_singlestep(Monitor *mon, const QDict *qdict)
aurel321b530a62009-04-05 20:08:59 +00001095{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001096 const char *option = qdict_get_try_str(qdict, "option");
aurel321b530a62009-04-05 20:08:59 +00001097 if (!option || !strcmp(option, "on")) {
1098 singlestep = 1;
1099 } else if (!strcmp(option, "off")) {
1100 singlestep = 0;
1101 } else {
1102 monitor_printf(mon, "unexpected option %s\n", option);
1103 }
1104}
1105
Luiz Capitulinoe0c97bd2009-10-07 13:41:57 -03001106/**
1107 * do_stop(): Stop VM execution
1108 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001109static int do_stop(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellard8a7ddc32004-03-31 19:00:16 +00001110{
1111 vm_stop(EXCP_INTERRUPT);
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001112 return 0;
bellard8a7ddc32004-03-31 19:00:16 +00001113}
1114
aliguoribb5fc202009-03-05 23:01:15 +00001115static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs);
aliguoric0f4ce72009-03-05 23:01:01 +00001116
aliguori376253e2009-03-05 23:01:23 +00001117struct bdrv_iterate_context {
1118 Monitor *mon;
1119 int err;
1120};
aliguoric0f4ce72009-03-05 23:01:01 +00001121
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001122/**
1123 * do_cont(): Resume emulation.
1124 */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001125static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data)
aliguori376253e2009-03-05 23:01:23 +00001126{
1127 struct bdrv_iterate_context context = { mon, 0 };
1128
Amit Shah8e848652010-07-27 15:49:19 +05301129 if (incoming_expected) {
1130 qerror_report(QERR_MIGRATION_EXPECTED);
1131 return -1;
1132 }
aliguori376253e2009-03-05 23:01:23 +00001133 bdrv_iterate(encrypted_bdrv_it, &context);
aliguoric0f4ce72009-03-05 23:01:01 +00001134 /* only resume the vm if all keys are set and valid */
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001135 if (!context.err) {
aliguoric0f4ce72009-03-05 23:01:01 +00001136 vm_start();
Luiz Capitulinod5a7b382010-02-10 23:49:49 -02001137 return 0;
1138 } else {
1139 return -1;
1140 }
bellard8a7ddc32004-03-31 19:00:16 +00001141}
1142
aliguoribb5fc202009-03-05 23:01:15 +00001143static void bdrv_key_cb(void *opaque, int err)
1144{
aliguori376253e2009-03-05 23:01:23 +00001145 Monitor *mon = opaque;
1146
aliguoribb5fc202009-03-05 23:01:15 +00001147 /* another key was set successfully, retry to continue */
1148 if (!err)
Luiz Capitulinoa1f896a2009-10-07 13:42:00 -03001149 do_cont(mon, NULL, NULL);
aliguoribb5fc202009-03-05 23:01:15 +00001150}
1151
1152static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
1153{
aliguori376253e2009-03-05 23:01:23 +00001154 struct bdrv_iterate_context *context = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00001155
aliguori376253e2009-03-05 23:01:23 +00001156 if (!context->err && bdrv_key_required(bs)) {
1157 context->err = -EBUSY;
1158 monitor_read_bdrv_key_start(context->mon, bs, bdrv_key_cb,
1159 context->mon);
aliguoribb5fc202009-03-05 23:01:15 +00001160 }
1161}
1162
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001163static void do_gdbserver(Monitor *mon, const QDict *qdict)
bellard8a7ddc32004-03-31 19:00:16 +00001164{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001165 const char *device = qdict_get_try_str(qdict, "device");
aliguori59030a82009-04-05 18:43:41 +00001166 if (!device)
1167 device = "tcp::" DEFAULT_GDBSTUB_PORT;
1168 if (gdbserver_start(device) < 0) {
1169 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
1170 device);
1171 } else if (strcmp(device, "none") == 0) {
aliguori36556b22009-03-28 18:05:53 +00001172 monitor_printf(mon, "Disabled gdbserver\n");
bellard8a7ddc32004-03-31 19:00:16 +00001173 } else {
aliguori59030a82009-04-05 18:43:41 +00001174 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
1175 device);
bellard8a7ddc32004-03-31 19:00:16 +00001176 }
1177}
1178
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001179static void do_watchdog_action(Monitor *mon, const QDict *qdict)
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001180{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001181 const char *action = qdict_get_str(qdict, "action");
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01001182 if (select_watchdog_action(action) == -1) {
1183 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
1184 }
1185}
1186
aliguori376253e2009-03-05 23:01:23 +00001187static void monitor_printc(Monitor *mon, int c)
bellard9307c4c2004-04-04 12:57:25 +00001188{
aliguori376253e2009-03-05 23:01:23 +00001189 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001190 switch(c) {
1191 case '\'':
aliguori376253e2009-03-05 23:01:23 +00001192 monitor_printf(mon, "\\'");
bellard9307c4c2004-04-04 12:57:25 +00001193 break;
1194 case '\\':
aliguori376253e2009-03-05 23:01:23 +00001195 monitor_printf(mon, "\\\\");
bellard9307c4c2004-04-04 12:57:25 +00001196 break;
1197 case '\n':
aliguori376253e2009-03-05 23:01:23 +00001198 monitor_printf(mon, "\\n");
bellard9307c4c2004-04-04 12:57:25 +00001199 break;
1200 case '\r':
aliguori376253e2009-03-05 23:01:23 +00001201 monitor_printf(mon, "\\r");
bellard9307c4c2004-04-04 12:57:25 +00001202 break;
1203 default:
1204 if (c >= 32 && c <= 126) {
aliguori376253e2009-03-05 23:01:23 +00001205 monitor_printf(mon, "%c", c);
bellard9307c4c2004-04-04 12:57:25 +00001206 } else {
aliguori376253e2009-03-05 23:01:23 +00001207 monitor_printf(mon, "\\x%02x", c);
bellard9307c4c2004-04-04 12:57:25 +00001208 }
1209 break;
1210 }
aliguori376253e2009-03-05 23:01:23 +00001211 monitor_printf(mon, "'");
bellard9307c4c2004-04-04 12:57:25 +00001212}
1213
aliguori376253e2009-03-05 23:01:23 +00001214static void memory_dump(Monitor *mon, int count, int format, int wsize,
Anthony Liguoric227f092009-10-01 16:12:16 -05001215 target_phys_addr_t addr, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +00001216{
bellard6a00d602005-11-21 23:25:50 +00001217 CPUState *env;
Blue Swirl23842aa2010-01-12 20:27:43 +00001218 int l, line_size, i, max_digits, len;
bellard9307c4c2004-04-04 12:57:25 +00001219 uint8_t buf[16];
1220 uint64_t v;
1221
1222 if (format == 'i') {
1223 int flags;
1224 flags = 0;
bellard6a00d602005-11-21 23:25:50 +00001225 env = mon_get_cpu();
bellard9307c4c2004-04-04 12:57:25 +00001226#ifdef TARGET_I386
bellard4c27ba22004-04-25 18:05:08 +00001227 if (wsize == 2) {
bellard9307c4c2004-04-04 12:57:25 +00001228 flags = 1;
bellard4c27ba22004-04-25 18:05:08 +00001229 } else if (wsize == 4) {
1230 flags = 0;
1231 } else {
bellard6a15fd12006-04-12 21:07:07 +00001232 /* as default we use the current CS size */
bellard4c27ba22004-04-25 18:05:08 +00001233 flags = 0;
bellard6a15fd12006-04-12 21:07:07 +00001234 if (env) {
1235#ifdef TARGET_X86_64
ths5fafdf22007-09-16 21:08:06 +00001236 if ((env->efer & MSR_EFER_LMA) &&
bellard6a15fd12006-04-12 21:07:07 +00001237 (env->segs[R_CS].flags & DESC_L_MASK))
1238 flags = 2;
1239 else
1240#endif
1241 if (!(env->segs[R_CS].flags & DESC_B_MASK))
1242 flags = 1;
1243 }
bellard4c27ba22004-04-25 18:05:08 +00001244 }
1245#endif
aliguori376253e2009-03-05 23:01:23 +00001246 monitor_disas(mon, env, addr, count, is_physical, flags);
bellard9307c4c2004-04-04 12:57:25 +00001247 return;
1248 }
1249
1250 len = wsize * count;
1251 if (wsize == 1)
1252 line_size = 8;
1253 else
1254 line_size = 16;
bellard9307c4c2004-04-04 12:57:25 +00001255 max_digits = 0;
1256
1257 switch(format) {
1258 case 'o':
1259 max_digits = (wsize * 8 + 2) / 3;
1260 break;
1261 default:
1262 case 'x':
1263 max_digits = (wsize * 8) / 4;
1264 break;
1265 case 'u':
1266 case 'd':
1267 max_digits = (wsize * 8 * 10 + 32) / 33;
1268 break;
1269 case 'c':
1270 wsize = 1;
1271 break;
1272 }
1273
1274 while (len > 0) {
blueswir17743e582007-09-24 18:39:04 +00001275 if (is_physical)
aliguori376253e2009-03-05 23:01:23 +00001276 monitor_printf(mon, TARGET_FMT_plx ":", addr);
blueswir17743e582007-09-24 18:39:04 +00001277 else
aliguori376253e2009-03-05 23:01:23 +00001278 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
bellard9307c4c2004-04-04 12:57:25 +00001279 l = len;
1280 if (l > line_size)
1281 l = line_size;
1282 if (is_physical) {
1283 cpu_physical_memory_rw(addr, buf, l, 0);
1284 } else {
bellard6a00d602005-11-21 23:25:50 +00001285 env = mon_get_cpu();
aliguoric8f79b62008-08-18 14:00:20 +00001286 if (cpu_memory_rw_debug(env, addr, buf, l, 0) < 0) {
aliguori376253e2009-03-05 23:01:23 +00001287 monitor_printf(mon, " Cannot access memory\n");
aliguoric8f79b62008-08-18 14:00:20 +00001288 break;
1289 }
bellard9307c4c2004-04-04 12:57:25 +00001290 }
ths5fafdf22007-09-16 21:08:06 +00001291 i = 0;
bellard9307c4c2004-04-04 12:57:25 +00001292 while (i < l) {
1293 switch(wsize) {
1294 default:
1295 case 1:
1296 v = ldub_raw(buf + i);
1297 break;
1298 case 2:
1299 v = lduw_raw(buf + i);
1300 break;
1301 case 4:
bellard92a31b12005-02-10 22:00:52 +00001302 v = (uint32_t)ldl_raw(buf + i);
bellard9307c4c2004-04-04 12:57:25 +00001303 break;
1304 case 8:
1305 v = ldq_raw(buf + i);
1306 break;
1307 }
aliguori376253e2009-03-05 23:01:23 +00001308 monitor_printf(mon, " ");
bellard9307c4c2004-04-04 12:57:25 +00001309 switch(format) {
1310 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001311 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001312 break;
1313 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001314 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001315 break;
1316 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001317 monitor_printf(mon, "%*" PRIu64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001318 break;
1319 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001320 monitor_printf(mon, "%*" PRId64, max_digits, v);
bellard9307c4c2004-04-04 12:57:25 +00001321 break;
1322 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001323 monitor_printc(mon, v);
bellard9307c4c2004-04-04 12:57:25 +00001324 break;
1325 }
1326 i += wsize;
1327 }
aliguori376253e2009-03-05 23:01:23 +00001328 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001329 addr += l;
1330 len -= l;
1331 }
1332}
1333
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001334static void do_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001335{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001336 int count = qdict_get_int(qdict, "count");
1337 int format = qdict_get_int(qdict, "format");
1338 int size = qdict_get_int(qdict, "size");
1339 target_long addr = qdict_get_int(qdict, "addr");
1340
aliguori376253e2009-03-05 23:01:23 +00001341 memory_dump(mon, count, format, size, addr, 0);
bellard9307c4c2004-04-04 12:57:25 +00001342}
1343
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001344static void do_physical_memory_dump(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001345{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001346 int count = qdict_get_int(qdict, "count");
1347 int format = qdict_get_int(qdict, "format");
1348 int size = qdict_get_int(qdict, "size");
Anthony Liguoric227f092009-10-01 16:12:16 -05001349 target_phys_addr_t addr = qdict_get_int(qdict, "addr");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001350
aliguori376253e2009-03-05 23:01:23 +00001351 memory_dump(mon, count, format, size, addr, 1);
bellard9307c4c2004-04-04 12:57:25 +00001352}
1353
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001354static void do_print(Monitor *mon, const QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00001355{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001356 int format = qdict_get_int(qdict, "format");
Anthony Liguoric227f092009-10-01 16:12:16 -05001357 target_phys_addr_t val = qdict_get_int(qdict, "val");
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001358
blueswir17743e582007-09-24 18:39:04 +00001359#if TARGET_PHYS_ADDR_BITS == 32
bellard9307c4c2004-04-04 12:57:25 +00001360 switch(format) {
1361 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001362 monitor_printf(mon, "%#o", val);
bellard9307c4c2004-04-04 12:57:25 +00001363 break;
1364 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001365 monitor_printf(mon, "%#x", val);
bellard9307c4c2004-04-04 12:57:25 +00001366 break;
1367 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001368 monitor_printf(mon, "%u", val);
bellard9307c4c2004-04-04 12:57:25 +00001369 break;
1370 default:
1371 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001372 monitor_printf(mon, "%d", val);
bellard9307c4c2004-04-04 12:57:25 +00001373 break;
1374 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001375 monitor_printc(mon, val);
bellard9307c4c2004-04-04 12:57:25 +00001376 break;
1377 }
bellard92a31b12005-02-10 22:00:52 +00001378#else
1379 switch(format) {
1380 case 'o':
aliguori376253e2009-03-05 23:01:23 +00001381 monitor_printf(mon, "%#" PRIo64, val);
bellard92a31b12005-02-10 22:00:52 +00001382 break;
1383 case 'x':
aliguori376253e2009-03-05 23:01:23 +00001384 monitor_printf(mon, "%#" PRIx64, val);
bellard92a31b12005-02-10 22:00:52 +00001385 break;
1386 case 'u':
aliguori376253e2009-03-05 23:01:23 +00001387 monitor_printf(mon, "%" PRIu64, val);
bellard92a31b12005-02-10 22:00:52 +00001388 break;
1389 default:
1390 case 'd':
aliguori376253e2009-03-05 23:01:23 +00001391 monitor_printf(mon, "%" PRId64, val);
bellard92a31b12005-02-10 22:00:52 +00001392 break;
1393 case 'c':
aliguori376253e2009-03-05 23:01:23 +00001394 monitor_printc(mon, val);
bellard92a31b12005-02-10 22:00:52 +00001395 break;
1396 }
1397#endif
aliguori376253e2009-03-05 23:01:23 +00001398 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +00001399}
1400
Luiz Capitulino98696222010-02-10 23:49:58 -02001401static int do_memory_save(Monitor *mon, const QDict *qdict, QObject **ret_data)
bellardb371dc52007-01-03 15:20:39 +00001402{
1403 FILE *f;
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001404 uint32_t size = qdict_get_int(qdict, "size");
1405 const char *filename = qdict_get_str(qdict, "filename");
1406 target_long addr = qdict_get_int(qdict, "val");
bellardb371dc52007-01-03 15:20:39 +00001407 uint32_t l;
1408 CPUState *env;
1409 uint8_t buf[1024];
Luiz Capitulino98696222010-02-10 23:49:58 -02001410 int ret = -1;
bellardb371dc52007-01-03 15:20:39 +00001411
1412 env = mon_get_cpu();
bellardb371dc52007-01-03 15:20:39 +00001413
1414 f = fopen(filename, "wb");
1415 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001416 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulino98696222010-02-10 23:49:58 -02001417 return -1;
bellardb371dc52007-01-03 15:20:39 +00001418 }
1419 while (size != 0) {
1420 l = sizeof(buf);
1421 if (l > size)
1422 l = size;
1423 cpu_memory_rw_debug(env, addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001424 if (fwrite(buf, 1, l, f) != l) {
1425 monitor_printf(mon, "fwrite() error in do_memory_save\n");
1426 goto exit;
1427 }
bellardb371dc52007-01-03 15:20:39 +00001428 addr += l;
1429 size -= l;
1430 }
Luiz Capitulino98696222010-02-10 23:49:58 -02001431
1432 ret = 0;
1433
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001434exit:
bellardb371dc52007-01-03 15:20:39 +00001435 fclose(f);
Luiz Capitulino98696222010-02-10 23:49:58 -02001436 return ret;
bellardb371dc52007-01-03 15:20:39 +00001437}
1438
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001439static int do_physical_memory_save(Monitor *mon, const QDict *qdict,
Luiz Capitulino18f5a8b2009-10-16 12:23:44 -03001440 QObject **ret_data)
aurel32a8bdf7a2008-04-11 21:36:14 +00001441{
1442 FILE *f;
1443 uint32_t l;
1444 uint8_t buf[1024];
Luiz Capitulinoafe67ef2009-08-28 15:27:16 -03001445 uint32_t size = qdict_get_int(qdict, "size");
1446 const char *filename = qdict_get_str(qdict, "filename");
Anthony Liguoric227f092009-10-01 16:12:16 -05001447 target_phys_addr_t addr = qdict_get_int(qdict, "val");
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001448 int ret = -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001449
1450 f = fopen(filename, "wb");
1451 if (!f) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01001452 qerror_report(QERR_OPEN_FILE_FAILED, filename);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001453 return -1;
aurel32a8bdf7a2008-04-11 21:36:14 +00001454 }
1455 while (size != 0) {
1456 l = sizeof(buf);
1457 if (l > size)
1458 l = size;
1459 cpu_physical_memory_rw(addr, buf, l, 0);
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001460 if (fwrite(buf, 1, l, f) != l) {
1461 monitor_printf(mon, "fwrite() error in do_physical_memory_save\n");
1462 goto exit;
1463 }
aurel32a8bdf7a2008-04-11 21:36:14 +00001464 fflush(f);
1465 addr += l;
1466 size -= l;
1467 }
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001468
1469 ret = 0;
1470
Kirill A. Shutemov27e3ddd2010-01-20 00:56:19 +01001471exit:
aurel32a8bdf7a2008-04-11 21:36:14 +00001472 fclose(f);
Luiz Capitulinofe38a322010-02-10 23:49:59 -02001473 return ret;
aurel32a8bdf7a2008-04-11 21:36:14 +00001474}
1475
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001476static void do_sum(Monitor *mon, const QDict *qdict)
bellarde4cf1ad2005-06-04 20:15:57 +00001477{
1478 uint32_t addr;
1479 uint8_t buf[1];
1480 uint16_t sum;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001481 uint32_t start = qdict_get_int(qdict, "start");
1482 uint32_t size = qdict_get_int(qdict, "size");
bellarde4cf1ad2005-06-04 20:15:57 +00001483
1484 sum = 0;
1485 for(addr = start; addr < (start + size); addr++) {
1486 cpu_physical_memory_rw(addr, buf, 1, 0);
1487 /* BSD sum algorithm ('sum' Unix command) */
1488 sum = (sum >> 1) | (sum << 15);
1489 sum += buf[0];
1490 }
aliguori376253e2009-03-05 23:01:23 +00001491 monitor_printf(mon, "%05d\n", sum);
bellarde4cf1ad2005-06-04 20:15:57 +00001492}
1493
bellarda3a91a32004-06-04 11:06:21 +00001494typedef struct {
1495 int keycode;
1496 const char *name;
1497} KeyDef;
1498
1499static const KeyDef key_defs[] = {
1500 { 0x2a, "shift" },
1501 { 0x36, "shift_r" },
ths3b46e622007-09-17 08:09:54 +00001502
bellarda3a91a32004-06-04 11:06:21 +00001503 { 0x38, "alt" },
1504 { 0xb8, "alt_r" },
ths2ba27c72008-08-13 12:54:23 +00001505 { 0x64, "altgr" },
1506 { 0xe4, "altgr_r" },
bellarda3a91a32004-06-04 11:06:21 +00001507 { 0x1d, "ctrl" },
1508 { 0x9d, "ctrl_r" },
1509
1510 { 0xdd, "menu" },
1511
1512 { 0x01, "esc" },
1513
1514 { 0x02, "1" },
1515 { 0x03, "2" },
1516 { 0x04, "3" },
1517 { 0x05, "4" },
1518 { 0x06, "5" },
1519 { 0x07, "6" },
1520 { 0x08, "7" },
1521 { 0x09, "8" },
1522 { 0x0a, "9" },
1523 { 0x0b, "0" },
bellard64866c32006-05-07 18:03:31 +00001524 { 0x0c, "minus" },
1525 { 0x0d, "equal" },
bellarda3a91a32004-06-04 11:06:21 +00001526 { 0x0e, "backspace" },
1527
1528 { 0x0f, "tab" },
1529 { 0x10, "q" },
1530 { 0x11, "w" },
1531 { 0x12, "e" },
1532 { 0x13, "r" },
1533 { 0x14, "t" },
1534 { 0x15, "y" },
1535 { 0x16, "u" },
1536 { 0x17, "i" },
1537 { 0x18, "o" },
1538 { 0x19, "p" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001539 { 0x1a, "bracket_left" },
1540 { 0x1b, "bracket_right" },
bellarda3a91a32004-06-04 11:06:21 +00001541 { 0x1c, "ret" },
1542
1543 { 0x1e, "a" },
1544 { 0x1f, "s" },
1545 { 0x20, "d" },
1546 { 0x21, "f" },
1547 { 0x22, "g" },
1548 { 0x23, "h" },
1549 { 0x24, "j" },
1550 { 0x25, "k" },
1551 { 0x26, "l" },
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001552 { 0x27, "semicolon" },
1553 { 0x28, "apostrophe" },
1554 { 0x29, "grave_accent" },
bellarda3a91a32004-06-04 11:06:21 +00001555
Bernhard M. Wiedemann49b586a2010-06-02 05:32:30 +02001556 { 0x2b, "backslash" },
bellarda3a91a32004-06-04 11:06:21 +00001557 { 0x2c, "z" },
1558 { 0x2d, "x" },
1559 { 0x2e, "c" },
1560 { 0x2f, "v" },
1561 { 0x30, "b" },
1562 { 0x31, "n" },
1563 { 0x32, "m" },
aurel329155fc42008-10-01 21:46:15 +00001564 { 0x33, "comma" },
1565 { 0x34, "dot" },
1566 { 0x35, "slash" },
ths3b46e622007-09-17 08:09:54 +00001567
balrog4d3b6f62008-02-10 16:33:14 +00001568 { 0x37, "asterisk" },
1569
bellarda3a91a32004-06-04 11:06:21 +00001570 { 0x39, "spc" },
bellard00ffa622004-06-04 13:25:15 +00001571 { 0x3a, "caps_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001572 { 0x3b, "f1" },
1573 { 0x3c, "f2" },
1574 { 0x3d, "f3" },
1575 { 0x3e, "f4" },
1576 { 0x3f, "f5" },
1577 { 0x40, "f6" },
1578 { 0x41, "f7" },
1579 { 0x42, "f8" },
1580 { 0x43, "f9" },
1581 { 0x44, "f10" },
bellard00ffa622004-06-04 13:25:15 +00001582 { 0x45, "num_lock" },
bellarda3a91a32004-06-04 11:06:21 +00001583 { 0x46, "scroll_lock" },
1584
bellard64866c32006-05-07 18:03:31 +00001585 { 0xb5, "kp_divide" },
1586 { 0x37, "kp_multiply" },
ths0cfec832007-06-23 16:02:43 +00001587 { 0x4a, "kp_subtract" },
bellard64866c32006-05-07 18:03:31 +00001588 { 0x4e, "kp_add" },
1589 { 0x9c, "kp_enter" },
1590 { 0x53, "kp_decimal" },
balrogf2289cb2008-06-04 10:14:16 +00001591 { 0x54, "sysrq" },
bellard64866c32006-05-07 18:03:31 +00001592
1593 { 0x52, "kp_0" },
1594 { 0x4f, "kp_1" },
1595 { 0x50, "kp_2" },
1596 { 0x51, "kp_3" },
1597 { 0x4b, "kp_4" },
1598 { 0x4c, "kp_5" },
1599 { 0x4d, "kp_6" },
1600 { 0x47, "kp_7" },
1601 { 0x48, "kp_8" },
1602 { 0x49, "kp_9" },
ths3b46e622007-09-17 08:09:54 +00001603
bellarda3a91a32004-06-04 11:06:21 +00001604 { 0x56, "<" },
1605
1606 { 0x57, "f11" },
1607 { 0x58, "f12" },
1608
1609 { 0xb7, "print" },
1610
1611 { 0xc7, "home" },
1612 { 0xc9, "pgup" },
1613 { 0xd1, "pgdn" },
1614 { 0xcf, "end" },
1615
1616 { 0xcb, "left" },
1617 { 0xc8, "up" },
1618 { 0xd0, "down" },
1619 { 0xcd, "right" },
1620
1621 { 0xd2, "insert" },
1622 { 0xd3, "delete" },
blueswir1c0b5b102008-06-22 07:45:42 +00001623#if defined(TARGET_SPARC) && !defined(TARGET_SPARC64)
1624 { 0xf0, "stop" },
1625 { 0xf1, "again" },
1626 { 0xf2, "props" },
1627 { 0xf3, "undo" },
1628 { 0xf4, "front" },
1629 { 0xf5, "copy" },
1630 { 0xf6, "open" },
1631 { 0xf7, "paste" },
1632 { 0xf8, "find" },
1633 { 0xf9, "cut" },
1634 { 0xfa, "lf" },
1635 { 0xfb, "help" },
1636 { 0xfc, "meta_l" },
1637 { 0xfd, "meta_r" },
1638 { 0xfe, "compose" },
1639#endif
bellarda3a91a32004-06-04 11:06:21 +00001640 { 0, NULL },
1641};
1642
1643static int get_keycode(const char *key)
1644{
1645 const KeyDef *p;
bellard64866c32006-05-07 18:03:31 +00001646 char *endp;
1647 int ret;
bellarda3a91a32004-06-04 11:06:21 +00001648
1649 for(p = key_defs; p->name != NULL; p++) {
1650 if (!strcmp(key, p->name))
1651 return p->keycode;
1652 }
bellard64866c32006-05-07 18:03:31 +00001653 if (strstart(key, "0x", NULL)) {
1654 ret = strtoul(key, &endp, 0);
1655 if (*endp == '\0' && ret >= 0x01 && ret <= 0xff)
1656 return ret;
1657 }
bellarda3a91a32004-06-04 11:06:21 +00001658 return -1;
1659}
1660
balrogc8256f92008-06-08 22:45:01 +00001661#define MAX_KEYCODES 16
1662static uint8_t keycodes[MAX_KEYCODES];
1663static int nb_pending_keycodes;
1664static QEMUTimer *key_timer;
1665
1666static void release_keys(void *opaque)
bellarda3a91a32004-06-04 11:06:21 +00001667{
balrogc8256f92008-06-08 22:45:01 +00001668 int keycode;
1669
1670 while (nb_pending_keycodes > 0) {
1671 nb_pending_keycodes--;
1672 keycode = keycodes[nb_pending_keycodes];
1673 if (keycode & 0x80)
1674 kbd_put_keycode(0xe0);
1675 kbd_put_keycode(keycode | 0x80);
1676 }
1677}
1678
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001679static void do_sendkey(Monitor *mon, const QDict *qdict)
balrogc8256f92008-06-08 22:45:01 +00001680{
balrog3401c0d2008-06-04 10:05:59 +00001681 char keyname_buf[16];
1682 char *separator;
1683 int keyname_len, keycode, i;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001684 const char *string = qdict_get_str(qdict, "string");
1685 int has_hold_time = qdict_haskey(qdict, "hold_time");
1686 int hold_time = qdict_get_try_int(qdict, "hold_time", -1);
ths3b46e622007-09-17 08:09:54 +00001687
balrogc8256f92008-06-08 22:45:01 +00001688 if (nb_pending_keycodes > 0) {
1689 qemu_del_timer(key_timer);
1690 release_keys(NULL);
1691 }
1692 if (!has_hold_time)
1693 hold_time = 100;
1694 i = 0;
balrog3401c0d2008-06-04 10:05:59 +00001695 while (1) {
1696 separator = strchr(string, '-');
1697 keyname_len = separator ? separator - string : strlen(string);
1698 if (keyname_len > 0) {
1699 pstrcpy(keyname_buf, sizeof(keyname_buf), string);
1700 if (keyname_len > sizeof(keyname_buf) - 1) {
aliguori376253e2009-03-05 23:01:23 +00001701 monitor_printf(mon, "invalid key: '%s...'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001702 return;
bellarda3a91a32004-06-04 11:06:21 +00001703 }
balrogc8256f92008-06-08 22:45:01 +00001704 if (i == MAX_KEYCODES) {
aliguori376253e2009-03-05 23:01:23 +00001705 monitor_printf(mon, "too many keys\n");
balrog3401c0d2008-06-04 10:05:59 +00001706 return;
1707 }
1708 keyname_buf[keyname_len] = 0;
1709 keycode = get_keycode(keyname_buf);
1710 if (keycode < 0) {
aliguori376253e2009-03-05 23:01:23 +00001711 monitor_printf(mon, "unknown key: '%s'\n", keyname_buf);
balrog3401c0d2008-06-04 10:05:59 +00001712 return;
1713 }
balrogc8256f92008-06-08 22:45:01 +00001714 keycodes[i++] = keycode;
bellarda3a91a32004-06-04 11:06:21 +00001715 }
balrog3401c0d2008-06-04 10:05:59 +00001716 if (!separator)
bellarda3a91a32004-06-04 11:06:21 +00001717 break;
balrog3401c0d2008-06-04 10:05:59 +00001718 string = separator + 1;
bellarda3a91a32004-06-04 11:06:21 +00001719 }
balrogc8256f92008-06-08 22:45:01 +00001720 nb_pending_keycodes = i;
bellarda3a91a32004-06-04 11:06:21 +00001721 /* key down events */
balrogc8256f92008-06-08 22:45:01 +00001722 for (i = 0; i < nb_pending_keycodes; i++) {
bellarda3a91a32004-06-04 11:06:21 +00001723 keycode = keycodes[i];
1724 if (keycode & 0x80)
1725 kbd_put_keycode(0xe0);
1726 kbd_put_keycode(keycode & 0x7f);
1727 }
balrogc8256f92008-06-08 22:45:01 +00001728 /* delayed key up events */
balrogf227f172008-06-09 00:03:47 +00001729 qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) +
Juan Quintela6ee093c2009-09-10 03:04:26 +02001730 muldiv64(get_ticks_per_sec(), hold_time, 1000));
bellarda3a91a32004-06-04 11:06:21 +00001731}
1732
bellard13224a82006-07-14 22:03:35 +00001733static int mouse_button_state;
1734
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001735static void do_mouse_move(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001736{
1737 int dx, dy, dz;
Luiz Capitulino1d4daa92009-08-28 15:27:15 -03001738 const char *dx_str = qdict_get_str(qdict, "dx_str");
1739 const char *dy_str = qdict_get_str(qdict, "dy_str");
1740 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
bellard13224a82006-07-14 22:03:35 +00001741 dx = strtol(dx_str, NULL, 0);
1742 dy = strtol(dy_str, NULL, 0);
1743 dz = 0;
ths5fafdf22007-09-16 21:08:06 +00001744 if (dz_str)
bellard13224a82006-07-14 22:03:35 +00001745 dz = strtol(dz_str, NULL, 0);
1746 kbd_mouse_event(dx, dy, dz, mouse_button_state);
1747}
1748
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001749static void do_mouse_button(Monitor *mon, const QDict *qdict)
bellard13224a82006-07-14 22:03:35 +00001750{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001751 int button_state = qdict_get_int(qdict, "button_state");
bellard13224a82006-07-14 22:03:35 +00001752 mouse_button_state = button_state;
1753 kbd_mouse_event(0, 0, 0, mouse_button_state);
1754}
1755
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001756static void do_ioport_read(Monitor *mon, const QDict *qdict)
bellard34405572004-06-08 00:55:58 +00001757{
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001758 int size = qdict_get_int(qdict, "size");
1759 int addr = qdict_get_int(qdict, "addr");
1760 int has_index = qdict_haskey(qdict, "index");
bellard34405572004-06-08 00:55:58 +00001761 uint32_t val;
1762 int suffix;
1763
1764 if (has_index) {
Luiz Capitulinoaa93e392009-08-28 15:27:18 -03001765 int index = qdict_get_int(qdict, "index");
Blue Swirlafcea8c2009-09-20 16:05:47 +00001766 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
bellard34405572004-06-08 00:55:58 +00001767 addr++;
1768 }
1769 addr &= 0xffff;
1770
1771 switch(size) {
1772 default:
1773 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001774 val = cpu_inb(addr);
bellard34405572004-06-08 00:55:58 +00001775 suffix = 'b';
1776 break;
1777 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001778 val = cpu_inw(addr);
bellard34405572004-06-08 00:55:58 +00001779 suffix = 'w';
1780 break;
1781 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001782 val = cpu_inl(addr);
bellard34405572004-06-08 00:55:58 +00001783 suffix = 'l';
1784 break;
1785 }
aliguori376253e2009-03-05 23:01:23 +00001786 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
1787 suffix, addr, size * 2, val);
bellard34405572004-06-08 00:55:58 +00001788}
bellarda3a91a32004-06-04 11:06:21 +00001789
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001790static void do_ioport_write(Monitor *mon, const QDict *qdict)
Jan Kiszkaf1147842009-07-14 10:20:11 +02001791{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03001792 int size = qdict_get_int(qdict, "size");
1793 int addr = qdict_get_int(qdict, "addr");
1794 int val = qdict_get_int(qdict, "val");
1795
Jan Kiszkaf1147842009-07-14 10:20:11 +02001796 addr &= IOPORTS_MASK;
1797
1798 switch (size) {
1799 default:
1800 case 1:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001801 cpu_outb(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001802 break;
1803 case 2:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001804 cpu_outw(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001805 break;
1806 case 4:
Blue Swirlafcea8c2009-09-20 16:05:47 +00001807 cpu_outl(addr, val);
Jan Kiszkaf1147842009-07-14 10:20:11 +02001808 break;
1809 }
1810}
1811
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001812static void do_boot_set(Monitor *mon, const QDict *qdict)
aurel320ecdffb2008-05-04 20:11:34 +00001813{
1814 int res;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001815 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
aurel320ecdffb2008-05-04 20:11:34 +00001816
Jan Kiszka76e30d02009-07-02 00:19:02 +02001817 res = qemu_boot_set(bootdevice);
1818 if (res == 0) {
1819 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
1820 } else if (res > 0) {
1821 monitor_printf(mon, "setting boot device list failed\n");
aurel320ecdffb2008-05-04 20:11:34 +00001822 } else {
aliguori376253e2009-03-05 23:01:23 +00001823 monitor_printf(mon, "no function defined to set boot device list for "
1824 "this architecture\n");
aurel320ecdffb2008-05-04 20:11:34 +00001825 }
1826}
1827
Luiz Capitulinoc80d2592009-10-07 13:41:58 -03001828/**
1829 * do_system_reset(): Issue a machine reset
1830 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001831static int do_system_reset(Monitor *mon, const QDict *qdict,
1832 QObject **ret_data)
bellarde4f90822004-06-20 12:35:44 +00001833{
1834 qemu_system_reset_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001835 return 0;
bellarde4f90822004-06-20 12:35:44 +00001836}
1837
Luiz Capitulino43076662009-10-07 13:41:59 -03001838/**
1839 * do_system_powerdown(): Issue a machine powerdown
1840 */
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001841static int do_system_powerdown(Monitor *mon, const QDict *qdict,
1842 QObject **ret_data)
bellard34751872005-07-02 14:31:34 +00001843{
1844 qemu_system_powerdown_request();
Luiz Capitulinoef4b7ee2010-02-10 23:49:48 -02001845 return 0;
bellard34751872005-07-02 14:31:34 +00001846}
1847
bellardb86bda52004-09-18 19:32:46 +00001848#if defined(TARGET_I386)
aliguori376253e2009-03-05 23:01:23 +00001849static void print_pte(Monitor *mon, uint32_t addr, uint32_t pte, uint32_t mask)
bellardb86bda52004-09-18 19:32:46 +00001850{
aliguori376253e2009-03-05 23:01:23 +00001851 monitor_printf(mon, "%08x: %08x %c%c%c%c%c%c%c%c\n",
1852 addr,
1853 pte & mask,
1854 pte & PG_GLOBAL_MASK ? 'G' : '-',
1855 pte & PG_PSE_MASK ? 'P' : '-',
1856 pte & PG_DIRTY_MASK ? 'D' : '-',
1857 pte & PG_ACCESSED_MASK ? 'A' : '-',
1858 pte & PG_PCD_MASK ? 'C' : '-',
1859 pte & PG_PWT_MASK ? 'T' : '-',
1860 pte & PG_USER_MASK ? 'U' : '-',
1861 pte & PG_RW_MASK ? 'W' : '-');
bellardb86bda52004-09-18 19:32:46 +00001862}
1863
aliguori376253e2009-03-05 23:01:23 +00001864static void tlb_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001865{
bellard6a00d602005-11-21 23:25:50 +00001866 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001867 int l1, l2;
1868 uint32_t pgd, pde, pte;
1869
bellard6a00d602005-11-21 23:25:50 +00001870 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00001871
bellardb86bda52004-09-18 19:32:46 +00001872 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001873 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001874 return;
1875 }
1876 pgd = env->cr[3] & ~0xfff;
1877 for(l1 = 0; l1 < 1024; l1++) {
1878 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1879 pde = le32_to_cpu(pde);
1880 if (pde & PG_PRESENT_MASK) {
1881 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001882 print_pte(mon, (l1 << 22), pde, ~((1 << 20) - 1));
bellardb86bda52004-09-18 19:32:46 +00001883 } else {
1884 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001885 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001886 (uint8_t *)&pte, 4);
1887 pte = le32_to_cpu(pte);
1888 if (pte & PG_PRESENT_MASK) {
aliguori376253e2009-03-05 23:01:23 +00001889 print_pte(mon, (l1 << 22) + (l2 << 12),
ths5fafdf22007-09-16 21:08:06 +00001890 pte & ~PG_PSE_MASK,
bellardb86bda52004-09-18 19:32:46 +00001891 ~0xfff);
1892 }
1893 }
1894 }
1895 }
1896 }
1897}
1898
aliguori376253e2009-03-05 23:01:23 +00001899static void mem_print(Monitor *mon, uint32_t *pstart, int *plast_prot,
bellardb86bda52004-09-18 19:32:46 +00001900 uint32_t end, int prot)
1901{
bellard9746b152004-11-11 18:30:24 +00001902 int prot1;
1903 prot1 = *plast_prot;
1904 if (prot != prot1) {
bellardb86bda52004-09-18 19:32:46 +00001905 if (*pstart != -1) {
aliguori376253e2009-03-05 23:01:23 +00001906 monitor_printf(mon, "%08x-%08x %08x %c%c%c\n",
1907 *pstart, end, end - *pstart,
1908 prot1 & PG_USER_MASK ? 'u' : '-',
1909 'r',
1910 prot1 & PG_RW_MASK ? 'w' : '-');
bellardb86bda52004-09-18 19:32:46 +00001911 }
1912 if (prot != 0)
1913 *pstart = end;
1914 else
1915 *pstart = -1;
1916 *plast_prot = prot;
1917 }
1918}
1919
aliguori376253e2009-03-05 23:01:23 +00001920static void mem_info(Monitor *mon)
bellardb86bda52004-09-18 19:32:46 +00001921{
bellard6a00d602005-11-21 23:25:50 +00001922 CPUState *env;
bellardb86bda52004-09-18 19:32:46 +00001923 int l1, l2, prot, last_prot;
1924 uint32_t pgd, pde, pte, start, end;
1925
bellard6a00d602005-11-21 23:25:50 +00001926 env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00001927
bellardb86bda52004-09-18 19:32:46 +00001928 if (!(env->cr[0] & CR0_PG_MASK)) {
aliguori376253e2009-03-05 23:01:23 +00001929 monitor_printf(mon, "PG disabled\n");
bellardb86bda52004-09-18 19:32:46 +00001930 return;
1931 }
1932 pgd = env->cr[3] & ~0xfff;
1933 last_prot = 0;
1934 start = -1;
1935 for(l1 = 0; l1 < 1024; l1++) {
1936 cpu_physical_memory_read(pgd + l1 * 4, (uint8_t *)&pde, 4);
1937 pde = le32_to_cpu(pde);
1938 end = l1 << 22;
1939 if (pde & PG_PRESENT_MASK) {
1940 if ((pde & PG_PSE_MASK) && (env->cr[4] & CR4_PSE_MASK)) {
1941 prot = pde & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
aliguori376253e2009-03-05 23:01:23 +00001942 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001943 } else {
1944 for(l2 = 0; l2 < 1024; l2++) {
ths5fafdf22007-09-16 21:08:06 +00001945 cpu_physical_memory_read((pde & ~0xfff) + l2 * 4,
bellardb86bda52004-09-18 19:32:46 +00001946 (uint8_t *)&pte, 4);
1947 pte = le32_to_cpu(pte);
1948 end = (l1 << 22) + (l2 << 12);
1949 if (pte & PG_PRESENT_MASK) {
1950 prot = pte & (PG_USER_MASK | PG_RW_MASK | PG_PRESENT_MASK);
1951 } else {
1952 prot = 0;
1953 }
aliguori376253e2009-03-05 23:01:23 +00001954 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001955 }
1956 }
1957 } else {
1958 prot = 0;
aliguori376253e2009-03-05 23:01:23 +00001959 mem_print(mon, &start, &last_prot, end, prot);
bellardb86bda52004-09-18 19:32:46 +00001960 }
1961 }
1962}
1963#endif
1964
aurel327c664e22009-03-03 06:12:22 +00001965#if defined(TARGET_SH4)
1966
aliguori376253e2009-03-05 23:01:23 +00001967static void print_tlb(Monitor *mon, int idx, tlb_t *tlb)
aurel327c664e22009-03-03 06:12:22 +00001968{
aliguori376253e2009-03-05 23:01:23 +00001969 monitor_printf(mon, " tlb%i:\t"
1970 "asid=%hhu vpn=%x\tppn=%x\tsz=%hhu size=%u\t"
1971 "v=%hhu shared=%hhu cached=%hhu prot=%hhu "
1972 "dirty=%hhu writethrough=%hhu\n",
1973 idx,
1974 tlb->asid, tlb->vpn, tlb->ppn, tlb->sz, tlb->size,
1975 tlb->v, tlb->sh, tlb->c, tlb->pr,
1976 tlb->d, tlb->wt);
aurel327c664e22009-03-03 06:12:22 +00001977}
1978
aliguori376253e2009-03-05 23:01:23 +00001979static void tlb_info(Monitor *mon)
aurel327c664e22009-03-03 06:12:22 +00001980{
1981 CPUState *env = mon_get_cpu();
1982 int i;
1983
aliguori376253e2009-03-05 23:01:23 +00001984 monitor_printf (mon, "ITLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001985 for (i = 0 ; i < ITLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001986 print_tlb (mon, i, &env->itlb[i]);
1987 monitor_printf (mon, "UTLB:\n");
aurel327c664e22009-03-03 06:12:22 +00001988 for (i = 0 ; i < UTLB_SIZE ; i++)
aliguori376253e2009-03-05 23:01:23 +00001989 print_tlb (mon, i, &env->utlb[i]);
aurel327c664e22009-03-03 06:12:22 +00001990}
1991
1992#endif
1993
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02001994static void do_info_kvm_print(Monitor *mon, const QObject *data)
1995{
1996 QDict *qdict;
1997
1998 qdict = qobject_to_qdict(data);
1999
2000 monitor_printf(mon, "kvm support: ");
2001 if (qdict_get_bool(qdict, "present")) {
2002 monitor_printf(mon, "%s\n", qdict_get_bool(qdict, "enabled") ?
2003 "enabled" : "disabled");
2004 } else {
2005 monitor_printf(mon, "not compiled\n");
2006 }
2007}
2008
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002009static void do_info_kvm(Monitor *mon, QObject **ret_data)
aliguori7ba1e612008-11-05 16:04:33 +00002010{
2011#ifdef CONFIG_KVM
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002012 *ret_data = qobject_from_jsonf("{ 'enabled': %i, 'present': true }",
2013 kvm_enabled());
aliguori7ba1e612008-11-05 16:04:33 +00002014#else
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002015 *ret_data = qobject_from_jsonf("{ 'enabled': false, 'present': false }");
aliguori7ba1e612008-11-05 16:04:33 +00002016#endif
2017}
2018
aliguori030ea372009-04-21 22:30:47 +00002019static void do_info_numa(Monitor *mon)
2020{
aliguorib28b6232009-04-22 20:20:29 +00002021 int i;
aliguori030ea372009-04-21 22:30:47 +00002022 CPUState *env;
2023
2024 monitor_printf(mon, "%d nodes\n", nb_numa_nodes);
2025 for (i = 0; i < nb_numa_nodes; i++) {
2026 monitor_printf(mon, "node %d cpus:", i);
2027 for (env = first_cpu; env != NULL; env = env->next_cpu) {
2028 if (env->numa_node == i) {
2029 monitor_printf(mon, " %d", env->cpu_index);
2030 }
2031 }
2032 monitor_printf(mon, "\n");
2033 monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
2034 node_mem[i] >> 20);
2035 }
2036}
2037
bellard5f1ce942006-02-08 22:40:15 +00002038#ifdef CONFIG_PROFILER
2039
Aurelien Jarnoe9a66252009-09-30 14:09:52 +02002040int64_t qemu_time;
2041int64_t dev_time;
2042
aliguori376253e2009-03-05 23:01:23 +00002043static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002044{
2045 int64_t total;
2046 total = qemu_time;
2047 if (total == 0)
2048 total = 1;
aliguori376253e2009-03-05 23:01:23 +00002049 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002050 dev_time, dev_time / (double)get_ticks_per_sec());
aliguori376253e2009-03-05 23:01:23 +00002051 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
Juan Quintela6ee093c2009-09-10 03:04:26 +02002052 qemu_time, qemu_time / (double)get_ticks_per_sec());
bellard5f1ce942006-02-08 22:40:15 +00002053 qemu_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002054 dev_time = 0;
bellard5f1ce942006-02-08 22:40:15 +00002055}
2056#else
aliguori376253e2009-03-05 23:01:23 +00002057static void do_info_profile(Monitor *mon)
bellard5f1ce942006-02-08 22:40:15 +00002058{
aliguori376253e2009-03-05 23:01:23 +00002059 monitor_printf(mon, "Internal profiler not compiled\n");
bellard5f1ce942006-02-08 22:40:15 +00002060}
2061#endif
2062
bellardec36b692006-07-16 18:57:03 +00002063/* Capture support */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002064static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
bellardec36b692006-07-16 18:57:03 +00002065
aliguori376253e2009-03-05 23:01:23 +00002066static void do_info_capture(Monitor *mon)
bellardec36b692006-07-16 18:57:03 +00002067{
2068 int i;
2069 CaptureState *s;
2070
2071 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
aliguori376253e2009-03-05 23:01:23 +00002072 monitor_printf(mon, "[%d]: ", i);
bellardec36b692006-07-16 18:57:03 +00002073 s->ops.info (s->opaque);
2074 }
2075}
2076
Blue Swirl23130862009-06-06 08:22:04 +00002077#ifdef HAS_AUDIO
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002078static void do_stop_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002079{
2080 int i;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002081 int n = qdict_get_int(qdict, "n");
bellardec36b692006-07-16 18:57:03 +00002082 CaptureState *s;
2083
2084 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
2085 if (i == n) {
2086 s->ops.destroy (s->opaque);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002087 QLIST_REMOVE (s, entries);
bellardec36b692006-07-16 18:57:03 +00002088 qemu_free (s);
2089 return;
2090 }
2091 }
2092}
2093
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002094static void do_wav_capture(Monitor *mon, const QDict *qdict)
bellardec36b692006-07-16 18:57:03 +00002095{
Luiz Capitulinoc1925482009-08-28 15:27:19 -03002096 const char *path = qdict_get_str(qdict, "path");
2097 int has_freq = qdict_haskey(qdict, "freq");
2098 int freq = qdict_get_try_int(qdict, "freq", -1);
2099 int has_bits = qdict_haskey(qdict, "bits");
2100 int bits = qdict_get_try_int(qdict, "bits", -1);
2101 int has_channels = qdict_haskey(qdict, "nchannels");
2102 int nchannels = qdict_get_try_int(qdict, "nchannels", -1);
bellardec36b692006-07-16 18:57:03 +00002103 CaptureState *s;
2104
2105 s = qemu_mallocz (sizeof (*s));
bellardec36b692006-07-16 18:57:03 +00002106
2107 freq = has_freq ? freq : 44100;
2108 bits = has_bits ? bits : 16;
2109 nchannels = has_channels ? nchannels : 2;
2110
2111 if (wav_start_capture (s, path, freq, bits, nchannels)) {
aliguori376253e2009-03-05 23:01:23 +00002112 monitor_printf(mon, "Faied to add wave capture\n");
bellardec36b692006-07-16 18:57:03 +00002113 qemu_free (s);
2114 }
Blue Swirl72cf2d42009-09-12 07:36:22 +00002115 QLIST_INSERT_HEAD (&capture_head, s, entries);
bellardec36b692006-07-16 18:57:03 +00002116}
2117#endif
2118
aurel32dc1c0b72008-04-27 23:52:12 +00002119#if defined(TARGET_I386)
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002120static void do_inject_nmi(Monitor *mon, const QDict *qdict)
aurel32dc1c0b72008-04-27 23:52:12 +00002121{
2122 CPUState *env;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002123 int cpu_index = qdict_get_int(qdict, "cpu_index");
aurel32dc1c0b72008-04-27 23:52:12 +00002124
2125 for (env = first_cpu; env != NULL; env = env->next_cpu)
2126 if (env->cpu_index == cpu_index) {
2127 cpu_interrupt(env, CPU_INTERRUPT_NMI);
2128 break;
2129 }
2130}
2131#endif
2132
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002133static void do_info_status_print(Monitor *mon, const QObject *data)
aurel326f9c5ee2008-12-18 22:43:56 +00002134{
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002135 QDict *qdict;
2136
2137 qdict = qobject_to_qdict(data);
2138
2139 monitor_printf(mon, "VM status: ");
2140 if (qdict_get_bool(qdict, "running")) {
2141 monitor_printf(mon, "running");
2142 if (qdict_get_bool(qdict, "singlestep")) {
2143 monitor_printf(mon, " (single step mode)");
aurel321b530a62009-04-05 20:08:59 +00002144 }
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002145 } else {
2146 monitor_printf(mon, "paused");
2147 }
2148
2149 monitor_printf(mon, "\n");
2150}
2151
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002152static void do_info_status(Monitor *mon, QObject **ret_data)
2153{
2154 *ret_data = qobject_from_jsonf("{ 'running': %i, 'singlestep': %i }",
2155 vm_running, singlestep);
aurel326f9c5ee2008-12-18 22:43:56 +00002156}
2157
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002158static qemu_acl *find_acl(Monitor *mon, const char *name)
aliguori76655d62009-03-06 20:27:37 +00002159{
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002160 qemu_acl *acl = qemu_acl_find(name);
aliguori76655d62009-03-06 20:27:37 +00002161
aliguori76655d62009-03-06 20:27:37 +00002162 if (!acl) {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002163 monitor_printf(mon, "acl: unknown list '%s'\n", name);
aliguori76655d62009-03-06 20:27:37 +00002164 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002165 return acl;
2166}
aliguori76655d62009-03-06 20:27:37 +00002167
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002168static void do_acl_show(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002169{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002170 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002171 qemu_acl *acl = find_acl(mon, aclname);
2172 qemu_acl_entry *entry;
2173 int i = 0;
2174
2175 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002176 monitor_printf(mon, "policy: %s\n",
aliguori76655d62009-03-06 20:27:37 +00002177 acl->defaultDeny ? "deny" : "allow");
Blue Swirl72cf2d42009-09-12 07:36:22 +00002178 QTAILQ_FOREACH(entry, &acl->entries, next) {
aliguori28a76be2009-03-06 20:27:40 +00002179 i++;
2180 monitor_printf(mon, "%d: %s %s\n", i,
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002181 entry->deny ? "deny" : "allow", entry->match);
aliguori28a76be2009-03-06 20:27:40 +00002182 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002183 }
2184}
2185
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002186static void do_acl_reset(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002187{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002188 const char *aclname = qdict_get_str(qdict, "aclname");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002189 qemu_acl *acl = find_acl(mon, aclname);
2190
2191 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002192 qemu_acl_reset(acl);
2193 monitor_printf(mon, "acl: removed all rules\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002194 }
2195}
aliguori76655d62009-03-06 20:27:37 +00002196
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002197static void do_acl_policy(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002198{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002199 const char *aclname = qdict_get_str(qdict, "aclname");
2200 const char *policy = qdict_get_str(qdict, "policy");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002201 qemu_acl *acl = find_acl(mon, aclname);
2202
2203 if (acl) {
2204 if (strcmp(policy, "allow") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002205 acl->defaultDeny = 0;
2206 monitor_printf(mon, "acl: policy set to 'allow'\n");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002207 } else if (strcmp(policy, "deny") == 0) {
aliguori28a76be2009-03-06 20:27:40 +00002208 acl->defaultDeny = 1;
2209 monitor_printf(mon, "acl: policy set to 'deny'\n");
2210 } else {
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002211 monitor_printf(mon, "acl: unknown policy '%s', "
2212 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002213 }
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002214 }
2215}
aliguori76655d62009-03-06 20:27:37 +00002216
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002217static void do_acl_add(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002218{
Luiz Capitulino1bd14422009-08-28 15:27:17 -03002219 const char *aclname = qdict_get_str(qdict, "aclname");
2220 const char *match = qdict_get_str(qdict, "match");
2221 const char *policy = qdict_get_str(qdict, "policy");
2222 int has_index = qdict_haskey(qdict, "index");
2223 int index = qdict_get_try_int(qdict, "index", -1);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002224 qemu_acl *acl = find_acl(mon, aclname);
2225 int deny, ret;
2226
2227 if (acl) {
2228 if (strcmp(policy, "allow") == 0) {
2229 deny = 0;
2230 } else if (strcmp(policy, "deny") == 0) {
2231 deny = 1;
2232 } else {
2233 monitor_printf(mon, "acl: unknown policy '%s', "
2234 "expected 'deny' or 'allow'\n", policy);
aliguori28a76be2009-03-06 20:27:40 +00002235 return;
2236 }
aliguori28a76be2009-03-06 20:27:40 +00002237 if (has_index)
2238 ret = qemu_acl_insert(acl, deny, match, index);
2239 else
2240 ret = qemu_acl_append(acl, deny, match);
2241 if (ret < 0)
2242 monitor_printf(mon, "acl: unable to add acl entry\n");
2243 else
2244 monitor_printf(mon, "acl: added rule at position %d\n", ret);
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002245 }
2246}
aliguori76655d62009-03-06 20:27:37 +00002247
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002248static void do_acl_remove(Monitor *mon, const QDict *qdict)
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002249{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03002250 const char *aclname = qdict_get_str(qdict, "aclname");
2251 const char *match = qdict_get_str(qdict, "match");
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002252 qemu_acl *acl = find_acl(mon, aclname);
2253 int ret;
aliguori76655d62009-03-06 20:27:37 +00002254
Jan Kiszka15dfcd42009-06-25 08:22:08 +02002255 if (acl) {
aliguori28a76be2009-03-06 20:27:40 +00002256 ret = qemu_acl_remove(acl, match);
2257 if (ret < 0)
2258 monitor_printf(mon, "acl: no matching acl entry\n");
2259 else
2260 monitor_printf(mon, "acl: removed rule at position %d\n", ret);
aliguori76655d62009-03-06 20:27:37 +00002261 }
2262}
2263
Huang Ying79c4f6b2009-06-23 10:05:14 +08002264#if defined(TARGET_I386)
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002265static void do_inject_mce(Monitor *mon, const QDict *qdict)
Huang Ying79c4f6b2009-06-23 10:05:14 +08002266{
2267 CPUState *cenv;
Luiz Capitulino37b7ad42009-08-28 15:27:21 -03002268 int cpu_index = qdict_get_int(qdict, "cpu_index");
2269 int bank = qdict_get_int(qdict, "bank");
2270 uint64_t status = qdict_get_int(qdict, "status");
2271 uint64_t mcg_status = qdict_get_int(qdict, "mcg_status");
2272 uint64_t addr = qdict_get_int(qdict, "addr");
2273 uint64_t misc = qdict_get_int(qdict, "misc");
Huang Ying79c4f6b2009-06-23 10:05:14 +08002274
2275 for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu)
2276 if (cenv->cpu_index == cpu_index && cenv->mcg_cap) {
2277 cpu_inject_x86_mce(cenv, bank, status, mcg_status, addr, misc);
2278 break;
2279 }
2280}
2281#endif
2282
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002283static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002284{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002285 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002286 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002287 int fd;
2288
2289 fd = qemu_chr_get_msgfd(mon->chr);
2290 if (fd == -1) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002291 qerror_report(QERR_FD_NOT_SUPPLIED);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002292 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002293 }
2294
2295 if (qemu_isdigit(fdname[0])) {
Markus Armbrustere17ba872010-03-25 17:22:36 +01002296 qerror_report(QERR_INVALID_PARAMETER_VALUE, "fdname",
2297 "a name not starting with a digit");
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002298 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002299 }
2300
Blue Swirl72cf2d42009-09-12 07:36:22 +00002301 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002302 if (strcmp(monfd->name, fdname) != 0) {
2303 continue;
2304 }
2305
2306 close(monfd->fd);
2307 monfd->fd = fd;
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002308 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002309 }
2310
Anthony Liguoric227f092009-10-01 16:12:16 -05002311 monfd = qemu_mallocz(sizeof(mon_fd_t));
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002312 monfd->name = qemu_strdup(fdname);
2313 monfd->fd = fd;
2314
Blue Swirl72cf2d42009-09-12 07:36:22 +00002315 QLIST_INSERT_HEAD(&mon->fds, monfd, next);
Luiz Capitulino6ad3ebd2010-02-10 23:49:53 -02002316 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002317}
2318
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002319static int do_closefd(Monitor *mon, const QDict *qdict, QObject **ret_data)
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002320{
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002321 const char *fdname = qdict_get_str(qdict, "fdname");
Anthony Liguoric227f092009-10-01 16:12:16 -05002322 mon_fd_t *monfd;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002323
Blue Swirl72cf2d42009-09-12 07:36:22 +00002324 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002325 if (strcmp(monfd->name, fdname) != 0) {
2326 continue;
2327 }
2328
Blue Swirl72cf2d42009-09-12 07:36:22 +00002329 QLIST_REMOVE(monfd, next);
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002330 close(monfd->fd);
2331 qemu_free(monfd->name);
2332 qemu_free(monfd);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002333 return 0;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002334 }
2335
Markus Armbrusterab5b0272010-03-02 18:15:09 +01002336 qerror_report(QERR_FD_NOT_FOUND, fdname);
Luiz Capitulinoaeb91c12010-02-10 23:49:54 -02002337 return -1;
Mark McLoughlinf07918f2009-07-22 09:11:40 +01002338}
2339
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002340static void do_loadvm(Monitor *mon, const QDict *qdict)
Juan Quintelac8d41b22009-08-20 19:42:21 +02002341{
2342 int saved_vm_running = vm_running;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002343 const char *name = qdict_get_str(qdict, "name");
Juan Quintelac8d41b22009-08-20 19:42:21 +02002344
2345 vm_stop(0);
2346
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002347 if (load_vmstate(name) == 0 && saved_vm_running) {
Juan Quintelac8d41b22009-08-20 19:42:21 +02002348 vm_start();
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002349 }
Juan Quintelac8d41b22009-08-20 19:42:21 +02002350}
2351
Mark McLoughlin7768e042009-07-22 09:11:41 +01002352int monitor_get_fd(Monitor *mon, const char *fdname)
2353{
Anthony Liguoric227f092009-10-01 16:12:16 -05002354 mon_fd_t *monfd;
Mark McLoughlin7768e042009-07-22 09:11:41 +01002355
Blue Swirl72cf2d42009-09-12 07:36:22 +00002356 QLIST_FOREACH(monfd, &mon->fds, next) {
Mark McLoughlin7768e042009-07-22 09:11:41 +01002357 int fd;
2358
2359 if (strcmp(monfd->name, fdname) != 0) {
2360 continue;
2361 }
2362
2363 fd = monfd->fd;
2364
2365 /* caller takes ownership of fd */
Blue Swirl72cf2d42009-09-12 07:36:22 +00002366 QLIST_REMOVE(monfd, next);
Mark McLoughlin7768e042009-07-22 09:11:41 +01002367 qemu_free(monfd->name);
2368 qemu_free(monfd);
2369
2370 return fd;
2371 }
2372
2373 return -1;
2374}
2375
Anthony Liguoric227f092009-10-01 16:12:16 -05002376static const mon_cmd_t mon_cmds[] = {
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002377#include "hmp-commands.h"
ths5fafdf22007-09-16 21:08:06 +00002378 { NULL, NULL, },
bellard9dc39cb2004-03-14 21:38:27 +00002379};
2380
Luiz Capitulinoacd0a092010-09-30 16:00:22 -03002381/* Please update hmp-commands.hx when adding or changing commands */
Anthony Liguoric227f092009-10-01 16:12:16 -05002382static const mon_cmd_t info_cmds[] = {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002383 {
2384 .name = "version",
2385 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002386 .params = "",
2387 .help = "show the version of QEMU",
Luiz Capitulino45e914c2009-12-10 17:15:58 -02002388 .user_print = do_info_version_print,
Luiz Capitulinoab2d3182009-10-07 13:42:02 -03002389 .mhandler.info_new = do_info_version,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002390 },
2391 {
2392 .name = "network",
2393 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002394 .params = "",
2395 .help = "show the network state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002396 .mhandler.info = do_info_network,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002397 },
2398 {
2399 .name = "chardev",
2400 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002401 .params = "",
2402 .help = "show the character devices",
Luiz Capitulino588b3832009-12-10 17:16:08 -02002403 .user_print = qemu_chr_info_print,
2404 .mhandler.info_new = qemu_chr_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002405 },
2406 {
2407 .name = "block",
2408 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002409 .params = "",
2410 .help = "show the block devices",
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002411 .user_print = bdrv_info_print,
2412 .mhandler.info_new = bdrv_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002413 },
2414 {
2415 .name = "blockstats",
2416 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002417 .params = "",
2418 .help = "show block device statistics",
Luiz Capitulino218a5362009-12-10 17:16:07 -02002419 .user_print = bdrv_stats_print,
2420 .mhandler.info_new = bdrv_info_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002421 },
2422 {
2423 .name = "registers",
2424 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002425 .params = "",
2426 .help = "show the cpu registers",
Luiz Capitulino910df892009-10-07 13:41:51 -03002427 .mhandler.info = do_info_registers,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002428 },
2429 {
2430 .name = "cpus",
2431 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002432 .params = "",
2433 .help = "show infos for each CPU",
Luiz Capitulino8f3cec02009-10-07 13:42:04 -03002434 .user_print = monitor_print_cpus,
2435 .mhandler.info_new = do_info_cpus,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002436 },
2437 {
2438 .name = "history",
2439 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002440 .params = "",
2441 .help = "show the command line history",
Luiz Capitulino910df892009-10-07 13:41:51 -03002442 .mhandler.info = do_info_history,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002443 },
2444 {
2445 .name = "irq",
2446 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002447 .params = "",
2448 .help = "show the interrupts statistics (if available)",
Luiz Capitulino910df892009-10-07 13:41:51 -03002449 .mhandler.info = irq_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002450 },
2451 {
2452 .name = "pic",
2453 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002454 .params = "",
2455 .help = "show i8259 (PIC) state",
Luiz Capitulino910df892009-10-07 13:41:51 -03002456 .mhandler.info = pic_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002457 },
2458 {
2459 .name = "pci",
2460 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002461 .params = "",
2462 .help = "show PCI info",
Luiz Capitulino163c8a52010-01-21 19:15:40 -02002463 .user_print = do_pci_info_print,
2464 .mhandler.info_new = do_pci_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002465 },
aurel327c664e22009-03-03 06:12:22 +00002466#if defined(TARGET_I386) || defined(TARGET_SH4)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002467 {
2468 .name = "tlb",
2469 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002470 .params = "",
2471 .help = "show virtual to physical memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002472 .mhandler.info = tlb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002473 },
aurel327c664e22009-03-03 06:12:22 +00002474#endif
2475#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002476 {
2477 .name = "mem",
2478 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002479 .params = "",
2480 .help = "show the active virtual memory mappings",
Luiz Capitulino910df892009-10-07 13:41:51 -03002481 .mhandler.info = mem_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002482 },
bellardb86bda52004-09-18 19:32:46 +00002483#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002484 {
2485 .name = "jit",
2486 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002487 .params = "",
2488 .help = "show dynamic compiler info",
Luiz Capitulino910df892009-10-07 13:41:51 -03002489 .mhandler.info = do_info_jit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002490 },
2491 {
2492 .name = "kvm",
2493 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002494 .params = "",
2495 .help = "show KVM information",
Luiz Capitulino2af5ba72009-12-10 17:16:00 -02002496 .user_print = do_info_kvm_print,
2497 .mhandler.info_new = do_info_kvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002498 },
2499 {
2500 .name = "numa",
2501 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002502 .params = "",
2503 .help = "show NUMA information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002504 .mhandler.info = do_info_numa,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002505 },
2506 {
2507 .name = "usb",
2508 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002509 .params = "",
2510 .help = "show guest USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002511 .mhandler.info = usb_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002512 },
2513 {
2514 .name = "usbhost",
2515 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002516 .params = "",
2517 .help = "show host USB devices",
Luiz Capitulino910df892009-10-07 13:41:51 -03002518 .mhandler.info = usb_host_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002519 },
2520 {
2521 .name = "profile",
2522 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002523 .params = "",
2524 .help = "show profiling information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002525 .mhandler.info = do_info_profile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002526 },
2527 {
2528 .name = "capture",
2529 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002530 .params = "",
2531 .help = "show capture information",
Luiz Capitulino910df892009-10-07 13:41:51 -03002532 .mhandler.info = do_info_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002533 },
2534 {
2535 .name = "snapshots",
2536 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002537 .params = "",
2538 .help = "show the currently saved VM snapshots",
Luiz Capitulino910df892009-10-07 13:41:51 -03002539 .mhandler.info = do_info_snapshots,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002540 },
2541 {
2542 .name = "status",
2543 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002544 .params = "",
2545 .help = "show the current VM status (running|paused)",
Luiz Capitulinoc0e85202009-12-10 17:15:59 -02002546 .user_print = do_info_status_print,
2547 .mhandler.info_new = do_info_status,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002548 },
2549 {
2550 .name = "pcmcia",
2551 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002552 .params = "",
2553 .help = "show guest PCMCIA status",
Luiz Capitulino910df892009-10-07 13:41:51 -03002554 .mhandler.info = pcmcia_info,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002555 },
2556 {
2557 .name = "mice",
2558 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002559 .params = "",
2560 .help = "show which guest mouse is receiving events",
Luiz Capitulinoe78c48e2009-12-10 17:16:04 -02002561 .user_print = do_info_mice_print,
2562 .mhandler.info_new = do_info_mice,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002563 },
2564 {
2565 .name = "vnc",
2566 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002567 .params = "",
2568 .help = "show the vnc server status",
Luiz Capitulinod96fd292009-12-10 17:16:10 -02002569 .user_print = do_info_vnc_print,
2570 .mhandler.info_new = do_info_vnc,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002571 },
2572 {
2573 .name = "name",
2574 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002575 .params = "",
2576 .help = "show the current VM name",
Luiz Capitulinoe05486c2009-12-10 17:16:01 -02002577 .user_print = do_info_name_print,
2578 .mhandler.info_new = do_info_name,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002579 },
2580 {
2581 .name = "uuid",
2582 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002583 .params = "",
2584 .help = "show the current VM UUID",
Luiz Capitulino9603ceb2009-12-10 17:16:03 -02002585 .user_print = do_info_uuid_print,
2586 .mhandler.info_new = do_info_uuid,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002587 },
j_mayer76a66252007-03-07 08:32:30 +00002588#if defined(TARGET_PPC)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002589 {
2590 .name = "cpustats",
2591 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002592 .params = "",
2593 .help = "show CPU statistics",
Luiz Capitulino910df892009-10-07 13:41:51 -03002594 .mhandler.info = do_info_cpu_stats,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002595 },
j_mayer76a66252007-03-07 08:32:30 +00002596#endif
blueswir131a60e22007-10-26 18:42:59 +00002597#if defined(CONFIG_SLIRP)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002598 {
2599 .name = "usernet",
2600 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002601 .params = "",
2602 .help = "show user network stack connection states",
Luiz Capitulino910df892009-10-07 13:41:51 -03002603 .mhandler.info = do_info_usernet,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002604 },
blueswir131a60e22007-10-26 18:42:59 +00002605#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002606 {
2607 .name = "migrate",
2608 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002609 .params = "",
2610 .help = "show migration status",
Luiz Capitulinoc86a6682009-12-10 17:16:05 -02002611 .user_print = do_info_migrate_print,
2612 .mhandler.info_new = do_info_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002613 },
2614 {
2615 .name = "balloon",
2616 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002617 .params = "",
2618 .help = "show balloon information",
Luiz Capitulinocc1d9c72009-10-07 13:42:03 -03002619 .user_print = monitor_print_balloon,
Adam Litke625a5be2010-01-26 14:17:35 -06002620 .mhandler.info_async = do_info_balloon,
Jan Kiszka8ac470c2010-06-16 00:38:39 +02002621 .flags = MONITOR_CMD_ASYNC,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002622 },
2623 {
2624 .name = "qtree",
2625 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002626 .params = "",
2627 .help = "show device tree",
Luiz Capitulino910df892009-10-07 13:41:51 -03002628 .mhandler.info = do_info_qtree,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002629 },
2630 {
2631 .name = "qdm",
2632 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002633 .params = "",
2634 .help = "show qdev device model list",
Luiz Capitulino910df892009-10-07 13:41:51 -03002635 .mhandler.info = do_info_qdm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002636 },
2637 {
2638 .name = "roms",
2639 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002640 .params = "",
2641 .help = "show roms",
Luiz Capitulino910df892009-10-07 13:41:51 -03002642 .mhandler.info = do_info_roms,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002643 },
Prerna Saxena22890ab2010-06-24 17:04:53 +05302644#if defined(CONFIG_SIMPLE_TRACE)
2645 {
2646 .name = "trace",
2647 .args_type = "",
2648 .params = "",
2649 .help = "show current contents of trace buffer",
2650 .mhandler.info = do_info_trace,
2651 },
2652 {
2653 .name = "trace-events",
2654 .args_type = "",
2655 .params = "",
2656 .help = "show available trace-events & their state",
2657 .mhandler.info = do_info_trace_events,
2658 },
2659#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03002660 {
2661 .name = NULL,
2662 },
bellard9dc39cb2004-03-14 21:38:27 +00002663};
2664
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03002665static const mon_cmd_t qmp_cmds[] = {
2666#include "qmp-commands.h"
2667 { /* NULL */ },
2668};
2669
Luiz Capitulino3e12a752010-09-15 17:20:33 -03002670static const mon_cmd_t qmp_query_cmds[] = {
2671 {
2672 .name = "version",
2673 .args_type = "",
2674 .params = "",
2675 .help = "show the version of QEMU",
2676 .user_print = do_info_version_print,
2677 .mhandler.info_new = do_info_version,
2678 },
2679 {
2680 .name = "commands",
2681 .args_type = "",
2682 .params = "",
2683 .help = "list QMP available commands",
2684 .user_print = monitor_user_noop,
2685 .mhandler.info_new = do_info_commands,
2686 },
2687 {
2688 .name = "chardev",
2689 .args_type = "",
2690 .params = "",
2691 .help = "show the character devices",
2692 .user_print = qemu_chr_info_print,
2693 .mhandler.info_new = qemu_chr_info,
2694 },
2695 {
2696 .name = "block",
2697 .args_type = "",
2698 .params = "",
2699 .help = "show the block devices",
2700 .user_print = bdrv_info_print,
2701 .mhandler.info_new = bdrv_info,
2702 },
2703 {
2704 .name = "blockstats",
2705 .args_type = "",
2706 .params = "",
2707 .help = "show block device statistics",
2708 .user_print = bdrv_stats_print,
2709 .mhandler.info_new = bdrv_info_stats,
2710 },
2711 {
2712 .name = "cpus",
2713 .args_type = "",
2714 .params = "",
2715 .help = "show infos for each CPU",
2716 .user_print = monitor_print_cpus,
2717 .mhandler.info_new = do_info_cpus,
2718 },
2719 {
2720 .name = "pci",
2721 .args_type = "",
2722 .params = "",
2723 .help = "show PCI info",
2724 .user_print = do_pci_info_print,
2725 .mhandler.info_new = do_pci_info,
2726 },
2727 {
2728 .name = "kvm",
2729 .args_type = "",
2730 .params = "",
2731 .help = "show KVM information",
2732 .user_print = do_info_kvm_print,
2733 .mhandler.info_new = do_info_kvm,
2734 },
2735 {
2736 .name = "status",
2737 .args_type = "",
2738 .params = "",
2739 .help = "show the current VM status (running|paused)",
2740 .user_print = do_info_status_print,
2741 .mhandler.info_new = do_info_status,
2742 },
2743 {
2744 .name = "mice",
2745 .args_type = "",
2746 .params = "",
2747 .help = "show which guest mouse is receiving events",
2748 .user_print = do_info_mice_print,
2749 .mhandler.info_new = do_info_mice,
2750 },
2751 {
2752 .name = "vnc",
2753 .args_type = "",
2754 .params = "",
2755 .help = "show the vnc server status",
2756 .user_print = do_info_vnc_print,
2757 .mhandler.info_new = do_info_vnc,
2758 },
2759 {
2760 .name = "name",
2761 .args_type = "",
2762 .params = "",
2763 .help = "show the current VM name",
2764 .user_print = do_info_name_print,
2765 .mhandler.info_new = do_info_name,
2766 },
2767 {
2768 .name = "uuid",
2769 .args_type = "",
2770 .params = "",
2771 .help = "show the current VM UUID",
2772 .user_print = do_info_uuid_print,
2773 .mhandler.info_new = do_info_uuid,
2774 },
2775 {
2776 .name = "migrate",
2777 .args_type = "",
2778 .params = "",
2779 .help = "show migration status",
2780 .user_print = do_info_migrate_print,
2781 .mhandler.info_new = do_info_migrate,
2782 },
2783 {
2784 .name = "balloon",
2785 .args_type = "",
2786 .params = "",
2787 .help = "show balloon information",
2788 .user_print = monitor_print_balloon,
2789 .mhandler.info_async = do_info_balloon,
2790 .flags = MONITOR_CMD_ASYNC,
2791 },
2792 { /* NULL */ },
2793};
2794
bellard9307c4c2004-04-04 12:57:25 +00002795/*******************************************************************/
2796
2797static const char *pch;
2798static jmp_buf expr_env;
2799
bellard92a31b12005-02-10 22:00:52 +00002800#define MD_TLONG 0
2801#define MD_I32 1
2802
bellard9307c4c2004-04-04 12:57:25 +00002803typedef struct MonitorDef {
2804 const char *name;
2805 int offset;
blueswir18662d652008-10-02 18:32:44 +00002806 target_long (*get_value)(const struct MonitorDef *md, int val);
bellard92a31b12005-02-10 22:00:52 +00002807 int type;
bellard9307c4c2004-04-04 12:57:25 +00002808} MonitorDef;
2809
bellard57206fd2004-04-25 18:54:52 +00002810#if defined(TARGET_I386)
blueswir18662d652008-10-02 18:32:44 +00002811static target_long monitor_get_pc (const struct MonitorDef *md, int val)
bellard57206fd2004-04-25 18:54:52 +00002812{
bellard6a00d602005-11-21 23:25:50 +00002813 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002814 return env->eip + env->segs[R_CS].base;
bellard57206fd2004-04-25 18:54:52 +00002815}
2816#endif
2817
bellarda541f292004-04-12 20:39:29 +00002818#if defined(TARGET_PPC)
blueswir18662d652008-10-02 18:32:44 +00002819static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002820{
bellard6a00d602005-11-21 23:25:50 +00002821 CPUState *env = mon_get_cpu();
bellarda541f292004-04-12 20:39:29 +00002822 unsigned int u;
2823 int i;
2824
2825 u = 0;
2826 for (i = 0; i < 8; i++)
aliguori28a76be2009-03-06 20:27:40 +00002827 u |= env->crf[i] << (32 - (4 * i));
bellarda541f292004-04-12 20:39:29 +00002828
2829 return u;
2830}
2831
blueswir18662d652008-10-02 18:32:44 +00002832static target_long monitor_get_msr (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002833{
bellard6a00d602005-11-21 23:25:50 +00002834 CPUState *env = mon_get_cpu();
j_mayer0411a972007-10-25 21:35:50 +00002835 return env->msr;
bellarda541f292004-04-12 20:39:29 +00002836}
2837
blueswir18662d652008-10-02 18:32:44 +00002838static target_long monitor_get_xer (const struct MonitorDef *md, int val)
bellarda541f292004-04-12 20:39:29 +00002839{
bellard6a00d602005-11-21 23:25:50 +00002840 CPUState *env = mon_get_cpu();
aurel323d7b4172008-10-21 11:28:46 +00002841 return env->xer;
bellarda541f292004-04-12 20:39:29 +00002842}
bellard9fddaa02004-05-21 12:59:32 +00002843
blueswir18662d652008-10-02 18:32:44 +00002844static target_long monitor_get_decr (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002845{
bellard6a00d602005-11-21 23:25:50 +00002846 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002847 return cpu_ppc_load_decr(env);
bellard9fddaa02004-05-21 12:59:32 +00002848}
2849
blueswir18662d652008-10-02 18:32:44 +00002850static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002851{
bellard6a00d602005-11-21 23:25:50 +00002852 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002853 return cpu_ppc_load_tbu(env);
bellard9fddaa02004-05-21 12:59:32 +00002854}
2855
blueswir18662d652008-10-02 18:32:44 +00002856static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
bellard9fddaa02004-05-21 12:59:32 +00002857{
bellard6a00d602005-11-21 23:25:50 +00002858 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002859 return cpu_ppc_load_tbl(env);
bellard9fddaa02004-05-21 12:59:32 +00002860}
bellarda541f292004-04-12 20:39:29 +00002861#endif
2862
bellarde95c8d52004-09-30 22:22:08 +00002863#if defined(TARGET_SPARC)
bellard7b936c02005-10-30 17:05:13 +00002864#ifndef TARGET_SPARC64
blueswir18662d652008-10-02 18:32:44 +00002865static target_long monitor_get_psr (const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002866{
bellard6a00d602005-11-21 23:25:50 +00002867 CPUState *env = mon_get_cpu();
Blue Swirl5a834bb2010-05-09 20:19:04 +00002868
2869 return cpu_get_psr(env);
bellarde95c8d52004-09-30 22:22:08 +00002870}
bellard7b936c02005-10-30 17:05:13 +00002871#endif
bellarde95c8d52004-09-30 22:22:08 +00002872
blueswir18662d652008-10-02 18:32:44 +00002873static target_long monitor_get_reg(const struct MonitorDef *md, int val)
bellarde95c8d52004-09-30 22:22:08 +00002874{
bellard6a00d602005-11-21 23:25:50 +00002875 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00002876 return env->regwptr[val];
bellarde95c8d52004-09-30 22:22:08 +00002877}
2878#endif
2879
blueswir18662d652008-10-02 18:32:44 +00002880static const MonitorDef monitor_defs[] = {
bellard9307c4c2004-04-04 12:57:25 +00002881#ifdef TARGET_I386
bellard57206fd2004-04-25 18:54:52 +00002882
2883#define SEG(name, seg) \
bellard92a31b12005-02-10 22:00:52 +00002884 { name, offsetof(CPUState, segs[seg].selector), NULL, MD_I32 },\
bellard57206fd2004-04-25 18:54:52 +00002885 { name ".base", offsetof(CPUState, segs[seg].base) },\
bellard92a31b12005-02-10 22:00:52 +00002886 { name ".limit", offsetof(CPUState, segs[seg].limit), NULL, MD_I32 },
bellard57206fd2004-04-25 18:54:52 +00002887
bellard9307c4c2004-04-04 12:57:25 +00002888 { "eax", offsetof(CPUState, regs[0]) },
2889 { "ecx", offsetof(CPUState, regs[1]) },
2890 { "edx", offsetof(CPUState, regs[2]) },
2891 { "ebx", offsetof(CPUState, regs[3]) },
2892 { "esp|sp", offsetof(CPUState, regs[4]) },
2893 { "ebp|fp", offsetof(CPUState, regs[5]) },
2894 { "esi", offsetof(CPUState, regs[6]) },
bellard01038d22004-09-13 21:36:46 +00002895 { "edi", offsetof(CPUState, regs[7]) },
bellard92a31b12005-02-10 22:00:52 +00002896#ifdef TARGET_X86_64
2897 { "r8", offsetof(CPUState, regs[8]) },
2898 { "r9", offsetof(CPUState, regs[9]) },
2899 { "r10", offsetof(CPUState, regs[10]) },
2900 { "r11", offsetof(CPUState, regs[11]) },
2901 { "r12", offsetof(CPUState, regs[12]) },
2902 { "r13", offsetof(CPUState, regs[13]) },
2903 { "r14", offsetof(CPUState, regs[14]) },
2904 { "r15", offsetof(CPUState, regs[15]) },
2905#endif
bellard9307c4c2004-04-04 12:57:25 +00002906 { "eflags", offsetof(CPUState, eflags) },
bellard57206fd2004-04-25 18:54:52 +00002907 { "eip", offsetof(CPUState, eip) },
2908 SEG("cs", R_CS)
2909 SEG("ds", R_DS)
2910 SEG("es", R_ES)
bellard01038d22004-09-13 21:36:46 +00002911 SEG("ss", R_SS)
bellard57206fd2004-04-25 18:54:52 +00002912 SEG("fs", R_FS)
2913 SEG("gs", R_GS)
2914 { "pc", 0, monitor_get_pc, },
bellarda541f292004-04-12 20:39:29 +00002915#elif defined(TARGET_PPC)
j_mayerff937db2007-09-19 05:49:13 +00002916 /* General purpose registers */
bellarda541f292004-04-12 20:39:29 +00002917 { "r0", offsetof(CPUState, gpr[0]) },
2918 { "r1", offsetof(CPUState, gpr[1]) },
2919 { "r2", offsetof(CPUState, gpr[2]) },
2920 { "r3", offsetof(CPUState, gpr[3]) },
2921 { "r4", offsetof(CPUState, gpr[4]) },
2922 { "r5", offsetof(CPUState, gpr[5]) },
2923 { "r6", offsetof(CPUState, gpr[6]) },
2924 { "r7", offsetof(CPUState, gpr[7]) },
2925 { "r8", offsetof(CPUState, gpr[8]) },
2926 { "r9", offsetof(CPUState, gpr[9]) },
2927 { "r10", offsetof(CPUState, gpr[10]) },
2928 { "r11", offsetof(CPUState, gpr[11]) },
2929 { "r12", offsetof(CPUState, gpr[12]) },
2930 { "r13", offsetof(CPUState, gpr[13]) },
2931 { "r14", offsetof(CPUState, gpr[14]) },
2932 { "r15", offsetof(CPUState, gpr[15]) },
2933 { "r16", offsetof(CPUState, gpr[16]) },
2934 { "r17", offsetof(CPUState, gpr[17]) },
2935 { "r18", offsetof(CPUState, gpr[18]) },
2936 { "r19", offsetof(CPUState, gpr[19]) },
2937 { "r20", offsetof(CPUState, gpr[20]) },
2938 { "r21", offsetof(CPUState, gpr[21]) },
2939 { "r22", offsetof(CPUState, gpr[22]) },
2940 { "r23", offsetof(CPUState, gpr[23]) },
2941 { "r24", offsetof(CPUState, gpr[24]) },
2942 { "r25", offsetof(CPUState, gpr[25]) },
2943 { "r26", offsetof(CPUState, gpr[26]) },
2944 { "r27", offsetof(CPUState, gpr[27]) },
2945 { "r28", offsetof(CPUState, gpr[28]) },
2946 { "r29", offsetof(CPUState, gpr[29]) },
2947 { "r30", offsetof(CPUState, gpr[30]) },
2948 { "r31", offsetof(CPUState, gpr[31]) },
j_mayerff937db2007-09-19 05:49:13 +00002949 /* Floating point registers */
2950 { "f0", offsetof(CPUState, fpr[0]) },
2951 { "f1", offsetof(CPUState, fpr[1]) },
2952 { "f2", offsetof(CPUState, fpr[2]) },
2953 { "f3", offsetof(CPUState, fpr[3]) },
2954 { "f4", offsetof(CPUState, fpr[4]) },
2955 { "f5", offsetof(CPUState, fpr[5]) },
2956 { "f6", offsetof(CPUState, fpr[6]) },
2957 { "f7", offsetof(CPUState, fpr[7]) },
2958 { "f8", offsetof(CPUState, fpr[8]) },
2959 { "f9", offsetof(CPUState, fpr[9]) },
2960 { "f10", offsetof(CPUState, fpr[10]) },
2961 { "f11", offsetof(CPUState, fpr[11]) },
2962 { "f12", offsetof(CPUState, fpr[12]) },
2963 { "f13", offsetof(CPUState, fpr[13]) },
2964 { "f14", offsetof(CPUState, fpr[14]) },
2965 { "f15", offsetof(CPUState, fpr[15]) },
2966 { "f16", offsetof(CPUState, fpr[16]) },
2967 { "f17", offsetof(CPUState, fpr[17]) },
2968 { "f18", offsetof(CPUState, fpr[18]) },
2969 { "f19", offsetof(CPUState, fpr[19]) },
2970 { "f20", offsetof(CPUState, fpr[20]) },
2971 { "f21", offsetof(CPUState, fpr[21]) },
2972 { "f22", offsetof(CPUState, fpr[22]) },
2973 { "f23", offsetof(CPUState, fpr[23]) },
2974 { "f24", offsetof(CPUState, fpr[24]) },
2975 { "f25", offsetof(CPUState, fpr[25]) },
2976 { "f26", offsetof(CPUState, fpr[26]) },
2977 { "f27", offsetof(CPUState, fpr[27]) },
2978 { "f28", offsetof(CPUState, fpr[28]) },
2979 { "f29", offsetof(CPUState, fpr[29]) },
2980 { "f30", offsetof(CPUState, fpr[30]) },
2981 { "f31", offsetof(CPUState, fpr[31]) },
2982 { "fpscr", offsetof(CPUState, fpscr) },
2983 /* Next instruction pointer */
bellard57206fd2004-04-25 18:54:52 +00002984 { "nip|pc", offsetof(CPUState, nip) },
bellarda541f292004-04-12 20:39:29 +00002985 { "lr", offsetof(CPUState, lr) },
2986 { "ctr", offsetof(CPUState, ctr) },
bellard9fddaa02004-05-21 12:59:32 +00002987 { "decr", 0, &monitor_get_decr, },
bellarda541f292004-04-12 20:39:29 +00002988 { "ccr", 0, &monitor_get_ccr, },
j_mayerff937db2007-09-19 05:49:13 +00002989 /* Machine state register */
bellarda541f292004-04-12 20:39:29 +00002990 { "msr", 0, &monitor_get_msr, },
2991 { "xer", 0, &monitor_get_xer, },
bellard9fddaa02004-05-21 12:59:32 +00002992 { "tbu", 0, &monitor_get_tbu, },
2993 { "tbl", 0, &monitor_get_tbl, },
j_mayerff937db2007-09-19 05:49:13 +00002994#if defined(TARGET_PPC64)
2995 /* Address space register */
2996 { "asr", offsetof(CPUState, asr) },
2997#endif
2998 /* Segment registers */
bellarda541f292004-04-12 20:39:29 +00002999 { "sdr1", offsetof(CPUState, sdr1) },
3000 { "sr0", offsetof(CPUState, sr[0]) },
3001 { "sr1", offsetof(CPUState, sr[1]) },
3002 { "sr2", offsetof(CPUState, sr[2]) },
3003 { "sr3", offsetof(CPUState, sr[3]) },
3004 { "sr4", offsetof(CPUState, sr[4]) },
3005 { "sr5", offsetof(CPUState, sr[5]) },
3006 { "sr6", offsetof(CPUState, sr[6]) },
3007 { "sr7", offsetof(CPUState, sr[7]) },
3008 { "sr8", offsetof(CPUState, sr[8]) },
3009 { "sr9", offsetof(CPUState, sr[9]) },
3010 { "sr10", offsetof(CPUState, sr[10]) },
3011 { "sr11", offsetof(CPUState, sr[11]) },
3012 { "sr12", offsetof(CPUState, sr[12]) },
3013 { "sr13", offsetof(CPUState, sr[13]) },
3014 { "sr14", offsetof(CPUState, sr[14]) },
3015 { "sr15", offsetof(CPUState, sr[15]) },
3016 /* Too lazy to put BATs and SPRs ... */
bellarde95c8d52004-09-30 22:22:08 +00003017#elif defined(TARGET_SPARC)
3018 { "g0", offsetof(CPUState, gregs[0]) },
3019 { "g1", offsetof(CPUState, gregs[1]) },
3020 { "g2", offsetof(CPUState, gregs[2]) },
3021 { "g3", offsetof(CPUState, gregs[3]) },
3022 { "g4", offsetof(CPUState, gregs[4]) },
3023 { "g5", offsetof(CPUState, gregs[5]) },
3024 { "g6", offsetof(CPUState, gregs[6]) },
3025 { "g7", offsetof(CPUState, gregs[7]) },
3026 { "o0", 0, monitor_get_reg },
3027 { "o1", 1, monitor_get_reg },
3028 { "o2", 2, monitor_get_reg },
3029 { "o3", 3, monitor_get_reg },
3030 { "o4", 4, monitor_get_reg },
3031 { "o5", 5, monitor_get_reg },
3032 { "o6", 6, monitor_get_reg },
3033 { "o7", 7, monitor_get_reg },
3034 { "l0", 8, monitor_get_reg },
3035 { "l1", 9, monitor_get_reg },
3036 { "l2", 10, monitor_get_reg },
3037 { "l3", 11, monitor_get_reg },
3038 { "l4", 12, monitor_get_reg },
3039 { "l5", 13, monitor_get_reg },
3040 { "l6", 14, monitor_get_reg },
3041 { "l7", 15, monitor_get_reg },
3042 { "i0", 16, monitor_get_reg },
3043 { "i1", 17, monitor_get_reg },
3044 { "i2", 18, monitor_get_reg },
3045 { "i3", 19, monitor_get_reg },
3046 { "i4", 20, monitor_get_reg },
3047 { "i5", 21, monitor_get_reg },
3048 { "i6", 22, monitor_get_reg },
3049 { "i7", 23, monitor_get_reg },
3050 { "pc", offsetof(CPUState, pc) },
3051 { "npc", offsetof(CPUState, npc) },
3052 { "y", offsetof(CPUState, y) },
bellard7b936c02005-10-30 17:05:13 +00003053#ifndef TARGET_SPARC64
bellarde95c8d52004-09-30 22:22:08 +00003054 { "psr", 0, &monitor_get_psr, },
3055 { "wim", offsetof(CPUState, wim) },
bellard7b936c02005-10-30 17:05:13 +00003056#endif
bellarde95c8d52004-09-30 22:22:08 +00003057 { "tbr", offsetof(CPUState, tbr) },
3058 { "fsr", offsetof(CPUState, fsr) },
3059 { "f0", offsetof(CPUState, fpr[0]) },
3060 { "f1", offsetof(CPUState, fpr[1]) },
3061 { "f2", offsetof(CPUState, fpr[2]) },
3062 { "f3", offsetof(CPUState, fpr[3]) },
3063 { "f4", offsetof(CPUState, fpr[4]) },
3064 { "f5", offsetof(CPUState, fpr[5]) },
3065 { "f6", offsetof(CPUState, fpr[6]) },
3066 { "f7", offsetof(CPUState, fpr[7]) },
3067 { "f8", offsetof(CPUState, fpr[8]) },
3068 { "f9", offsetof(CPUState, fpr[9]) },
3069 { "f10", offsetof(CPUState, fpr[10]) },
3070 { "f11", offsetof(CPUState, fpr[11]) },
3071 { "f12", offsetof(CPUState, fpr[12]) },
3072 { "f13", offsetof(CPUState, fpr[13]) },
3073 { "f14", offsetof(CPUState, fpr[14]) },
3074 { "f15", offsetof(CPUState, fpr[15]) },
3075 { "f16", offsetof(CPUState, fpr[16]) },
3076 { "f17", offsetof(CPUState, fpr[17]) },
3077 { "f18", offsetof(CPUState, fpr[18]) },
3078 { "f19", offsetof(CPUState, fpr[19]) },
3079 { "f20", offsetof(CPUState, fpr[20]) },
3080 { "f21", offsetof(CPUState, fpr[21]) },
3081 { "f22", offsetof(CPUState, fpr[22]) },
3082 { "f23", offsetof(CPUState, fpr[23]) },
3083 { "f24", offsetof(CPUState, fpr[24]) },
3084 { "f25", offsetof(CPUState, fpr[25]) },
3085 { "f26", offsetof(CPUState, fpr[26]) },
3086 { "f27", offsetof(CPUState, fpr[27]) },
3087 { "f28", offsetof(CPUState, fpr[28]) },
3088 { "f29", offsetof(CPUState, fpr[29]) },
3089 { "f30", offsetof(CPUState, fpr[30]) },
3090 { "f31", offsetof(CPUState, fpr[31]) },
bellard7b936c02005-10-30 17:05:13 +00003091#ifdef TARGET_SPARC64
3092 { "f32", offsetof(CPUState, fpr[32]) },
3093 { "f34", offsetof(CPUState, fpr[34]) },
3094 { "f36", offsetof(CPUState, fpr[36]) },
3095 { "f38", offsetof(CPUState, fpr[38]) },
3096 { "f40", offsetof(CPUState, fpr[40]) },
3097 { "f42", offsetof(CPUState, fpr[42]) },
3098 { "f44", offsetof(CPUState, fpr[44]) },
3099 { "f46", offsetof(CPUState, fpr[46]) },
3100 { "f48", offsetof(CPUState, fpr[48]) },
3101 { "f50", offsetof(CPUState, fpr[50]) },
3102 { "f52", offsetof(CPUState, fpr[52]) },
3103 { "f54", offsetof(CPUState, fpr[54]) },
3104 { "f56", offsetof(CPUState, fpr[56]) },
3105 { "f58", offsetof(CPUState, fpr[58]) },
3106 { "f60", offsetof(CPUState, fpr[60]) },
3107 { "f62", offsetof(CPUState, fpr[62]) },
3108 { "asi", offsetof(CPUState, asi) },
3109 { "pstate", offsetof(CPUState, pstate) },
3110 { "cansave", offsetof(CPUState, cansave) },
3111 { "canrestore", offsetof(CPUState, canrestore) },
3112 { "otherwin", offsetof(CPUState, otherwin) },
3113 { "wstate", offsetof(CPUState, wstate) },
3114 { "cleanwin", offsetof(CPUState, cleanwin) },
3115 { "fprs", offsetof(CPUState, fprs) },
3116#endif
bellard9307c4c2004-04-04 12:57:25 +00003117#endif
3118 { NULL },
3119};
3120
aliguori376253e2009-03-05 23:01:23 +00003121static void expr_error(Monitor *mon, const char *msg)
bellard9dc39cb2004-03-14 21:38:27 +00003122{
aliguori376253e2009-03-05 23:01:23 +00003123 monitor_printf(mon, "%s\n", msg);
bellard9307c4c2004-04-04 12:57:25 +00003124 longjmp(expr_env, 1);
3125}
3126
Markus Armbruster09b94182010-01-20 13:07:30 +01003127/* return 0 if OK, -1 if not found */
bellard92a31b12005-02-10 22:00:52 +00003128static int get_monitor_def(target_long *pval, const char *name)
bellard9307c4c2004-04-04 12:57:25 +00003129{
blueswir18662d652008-10-02 18:32:44 +00003130 const MonitorDef *md;
bellard92a31b12005-02-10 22:00:52 +00003131 void *ptr;
3132
bellard9307c4c2004-04-04 12:57:25 +00003133 for(md = monitor_defs; md->name != NULL; md++) {
3134 if (compare_cmd(name, md->name)) {
3135 if (md->get_value) {
bellarde95c8d52004-09-30 22:22:08 +00003136 *pval = md->get_value(md, md->offset);
bellard9307c4c2004-04-04 12:57:25 +00003137 } else {
bellard6a00d602005-11-21 23:25:50 +00003138 CPUState *env = mon_get_cpu();
bellard6a00d602005-11-21 23:25:50 +00003139 ptr = (uint8_t *)env + md->offset;
bellard92a31b12005-02-10 22:00:52 +00003140 switch(md->type) {
3141 case MD_I32:
3142 *pval = *(int32_t *)ptr;
3143 break;
3144 case MD_TLONG:
3145 *pval = *(target_long *)ptr;
3146 break;
3147 default:
3148 *pval = 0;
3149 break;
3150 }
bellard9307c4c2004-04-04 12:57:25 +00003151 }
3152 return 0;
3153 }
3154 }
3155 return -1;
3156}
3157
3158static void next(void)
3159{
Blue Swirl660f11b2009-07-31 21:16:51 +00003160 if (*pch != '\0') {
bellard9307c4c2004-04-04 12:57:25 +00003161 pch++;
blueswir1cd390082008-11-16 13:53:32 +00003162 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003163 pch++;
3164 }
3165}
3166
aliguori376253e2009-03-05 23:01:23 +00003167static int64_t expr_sum(Monitor *mon);
bellard9307c4c2004-04-04 12:57:25 +00003168
aliguori376253e2009-03-05 23:01:23 +00003169static int64_t expr_unary(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003170{
blueswir1c2efc952007-09-25 17:28:42 +00003171 int64_t n;
bellard9307c4c2004-04-04 12:57:25 +00003172 char *p;
bellard6a00d602005-11-21 23:25:50 +00003173 int ret;
bellard9307c4c2004-04-04 12:57:25 +00003174
3175 switch(*pch) {
3176 case '+':
3177 next();
aliguori376253e2009-03-05 23:01:23 +00003178 n = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003179 break;
3180 case '-':
3181 next();
aliguori376253e2009-03-05 23:01:23 +00003182 n = -expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003183 break;
3184 case '~':
3185 next();
aliguori376253e2009-03-05 23:01:23 +00003186 n = ~expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003187 break;
3188 case '(':
3189 next();
aliguori376253e2009-03-05 23:01:23 +00003190 n = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003191 if (*pch != ')') {
aliguori376253e2009-03-05 23:01:23 +00003192 expr_error(mon, "')' expected");
bellard9307c4c2004-04-04 12:57:25 +00003193 }
3194 next();
3195 break;
bellard81d09122004-07-14 17:21:37 +00003196 case '\'':
3197 pch++;
3198 if (*pch == '\0')
aliguori376253e2009-03-05 23:01:23 +00003199 expr_error(mon, "character constant expected");
bellard81d09122004-07-14 17:21:37 +00003200 n = *pch;
3201 pch++;
3202 if (*pch != '\'')
aliguori376253e2009-03-05 23:01:23 +00003203 expr_error(mon, "missing terminating \' character");
bellard81d09122004-07-14 17:21:37 +00003204 next();
3205 break;
bellard9307c4c2004-04-04 12:57:25 +00003206 case '$':
3207 {
3208 char buf[128], *q;
ths69b34972007-12-17 03:15:52 +00003209 target_long reg=0;
ths3b46e622007-09-17 08:09:54 +00003210
bellard9307c4c2004-04-04 12:57:25 +00003211 pch++;
3212 q = buf;
3213 while ((*pch >= 'a' && *pch <= 'z') ||
3214 (*pch >= 'A' && *pch <= 'Z') ||
3215 (*pch >= '0' && *pch <= '9') ||
bellard57206fd2004-04-25 18:54:52 +00003216 *pch == '_' || *pch == '.') {
bellard9307c4c2004-04-04 12:57:25 +00003217 if ((q - buf) < sizeof(buf) - 1)
3218 *q++ = *pch;
3219 pch++;
3220 }
blueswir1cd390082008-11-16 13:53:32 +00003221 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003222 pch++;
3223 *q = 0;
blueswir17743e582007-09-24 18:39:04 +00003224 ret = get_monitor_def(&reg, buf);
Markus Armbruster09b94182010-01-20 13:07:30 +01003225 if (ret < 0)
aliguori376253e2009-03-05 23:01:23 +00003226 expr_error(mon, "unknown register");
blueswir17743e582007-09-24 18:39:04 +00003227 n = reg;
bellard9307c4c2004-04-04 12:57:25 +00003228 }
3229 break;
3230 case '\0':
aliguori376253e2009-03-05 23:01:23 +00003231 expr_error(mon, "unexpected end of expression");
bellard9307c4c2004-04-04 12:57:25 +00003232 n = 0;
3233 break;
3234 default:
blueswir17743e582007-09-24 18:39:04 +00003235#if TARGET_PHYS_ADDR_BITS > 32
bellard4f4fbf72006-06-25 18:28:12 +00003236 n = strtoull(pch, &p, 0);
3237#else
bellard9307c4c2004-04-04 12:57:25 +00003238 n = strtoul(pch, &p, 0);
bellard4f4fbf72006-06-25 18:28:12 +00003239#endif
bellard9307c4c2004-04-04 12:57:25 +00003240 if (pch == p) {
aliguori376253e2009-03-05 23:01:23 +00003241 expr_error(mon, "invalid char in expression");
bellard9307c4c2004-04-04 12:57:25 +00003242 }
3243 pch = p;
blueswir1cd390082008-11-16 13:53:32 +00003244 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003245 pch++;
3246 break;
3247 }
3248 return n;
3249}
3250
3251
aliguori376253e2009-03-05 23:01:23 +00003252static int64_t expr_prod(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003253{
blueswir1c2efc952007-09-25 17:28:42 +00003254 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003255 int op;
ths3b46e622007-09-17 08:09:54 +00003256
aliguori376253e2009-03-05 23:01:23 +00003257 val = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003258 for(;;) {
3259 op = *pch;
3260 if (op != '*' && op != '/' && op != '%')
3261 break;
3262 next();
aliguori376253e2009-03-05 23:01:23 +00003263 val2 = expr_unary(mon);
bellard9307c4c2004-04-04 12:57:25 +00003264 switch(op) {
3265 default:
3266 case '*':
3267 val *= val2;
3268 break;
3269 case '/':
3270 case '%':
ths5fafdf22007-09-16 21:08:06 +00003271 if (val2 == 0)
aliguori376253e2009-03-05 23:01:23 +00003272 expr_error(mon, "division by zero");
bellard9307c4c2004-04-04 12:57:25 +00003273 if (op == '/')
3274 val /= val2;
3275 else
3276 val %= val2;
3277 break;
3278 }
3279 }
3280 return val;
3281}
3282
aliguori376253e2009-03-05 23:01:23 +00003283static int64_t expr_logic(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003284{
blueswir1c2efc952007-09-25 17:28:42 +00003285 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003286 int op;
bellard9307c4c2004-04-04 12:57:25 +00003287
aliguori376253e2009-03-05 23:01:23 +00003288 val = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003289 for(;;) {
3290 op = *pch;
3291 if (op != '&' && op != '|' && op != '^')
3292 break;
3293 next();
aliguori376253e2009-03-05 23:01:23 +00003294 val2 = expr_prod(mon);
bellard9307c4c2004-04-04 12:57:25 +00003295 switch(op) {
3296 default:
3297 case '&':
3298 val &= val2;
3299 break;
3300 case '|':
3301 val |= val2;
3302 break;
3303 case '^':
3304 val ^= val2;
3305 break;
3306 }
3307 }
3308 return val;
3309}
3310
aliguori376253e2009-03-05 23:01:23 +00003311static int64_t expr_sum(Monitor *mon)
bellard9307c4c2004-04-04 12:57:25 +00003312{
blueswir1c2efc952007-09-25 17:28:42 +00003313 int64_t val, val2;
bellard92a31b12005-02-10 22:00:52 +00003314 int op;
bellard9307c4c2004-04-04 12:57:25 +00003315
aliguori376253e2009-03-05 23:01:23 +00003316 val = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003317 for(;;) {
3318 op = *pch;
3319 if (op != '+' && op != '-')
3320 break;
3321 next();
aliguori376253e2009-03-05 23:01:23 +00003322 val2 = expr_logic(mon);
bellard9307c4c2004-04-04 12:57:25 +00003323 if (op == '+')
3324 val += val2;
3325 else
3326 val -= val2;
3327 }
3328 return val;
3329}
3330
aliguori376253e2009-03-05 23:01:23 +00003331static int get_expr(Monitor *mon, int64_t *pval, const char **pp)
bellard9307c4c2004-04-04 12:57:25 +00003332{
3333 pch = *pp;
3334 if (setjmp(expr_env)) {
3335 *pp = pch;
3336 return -1;
3337 }
blueswir1cd390082008-11-16 13:53:32 +00003338 while (qemu_isspace(*pch))
bellard9307c4c2004-04-04 12:57:25 +00003339 pch++;
aliguori376253e2009-03-05 23:01:23 +00003340 *pval = expr_sum(mon);
bellard9307c4c2004-04-04 12:57:25 +00003341 *pp = pch;
3342 return 0;
3343}
3344
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003345static int get_double(Monitor *mon, double *pval, const char **pp)
3346{
3347 const char *p = *pp;
3348 char *tailp;
3349 double d;
3350
3351 d = strtod(p, &tailp);
3352 if (tailp == p) {
3353 monitor_printf(mon, "Number expected\n");
3354 return -1;
3355 }
3356 if (d != d || d - d != 0) {
3357 /* NaN or infinity */
3358 monitor_printf(mon, "Bad number\n");
3359 return -1;
3360 }
3361 *pval = d;
3362 *pp = tailp;
3363 return 0;
3364}
3365
bellard9307c4c2004-04-04 12:57:25 +00003366static int get_str(char *buf, int buf_size, const char **pp)
3367{
3368 const char *p;
3369 char *q;
3370 int c;
3371
bellard81d09122004-07-14 17:21:37 +00003372 q = buf;
bellard9307c4c2004-04-04 12:57:25 +00003373 p = *pp;
blueswir1cd390082008-11-16 13:53:32 +00003374 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003375 p++;
3376 if (*p == '\0') {
3377 fail:
bellard81d09122004-07-14 17:21:37 +00003378 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003379 *pp = p;
3380 return -1;
3381 }
bellard9307c4c2004-04-04 12:57:25 +00003382 if (*p == '\"') {
3383 p++;
3384 while (*p != '\0' && *p != '\"') {
3385 if (*p == '\\') {
3386 p++;
3387 c = *p++;
3388 switch(c) {
3389 case 'n':
3390 c = '\n';
3391 break;
3392 case 'r':
3393 c = '\r';
3394 break;
3395 case '\\':
3396 case '\'':
3397 case '\"':
3398 break;
3399 default:
3400 qemu_printf("unsupported escape code: '\\%c'\n", c);
3401 goto fail;
3402 }
3403 if ((q - buf) < buf_size - 1) {
3404 *q++ = c;
3405 }
3406 } else {
3407 if ((q - buf) < buf_size - 1) {
3408 *q++ = *p;
3409 }
3410 p++;
3411 }
3412 }
3413 if (*p != '\"') {
bellard5b602122004-05-22 21:41:05 +00003414 qemu_printf("unterminated string\n");
bellard9307c4c2004-04-04 12:57:25 +00003415 goto fail;
3416 }
3417 p++;
3418 } else {
blueswir1cd390082008-11-16 13:53:32 +00003419 while (*p != '\0' && !qemu_isspace(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003420 if ((q - buf) < buf_size - 1) {
3421 *q++ = *p;
3422 }
3423 p++;
3424 }
bellard9307c4c2004-04-04 12:57:25 +00003425 }
bellard81d09122004-07-14 17:21:37 +00003426 *q = '\0';
bellard9307c4c2004-04-04 12:57:25 +00003427 *pp = p;
3428 return 0;
3429}
3430
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003431/*
3432 * Store the command-name in cmdname, and return a pointer to
3433 * the remaining of the command string.
3434 */
3435static const char *get_command_name(const char *cmdline,
3436 char *cmdname, size_t nlen)
3437{
3438 size_t len;
3439 const char *p, *pstart;
3440
3441 p = cmdline;
3442 while (qemu_isspace(*p))
3443 p++;
3444 if (*p == '\0')
3445 return NULL;
3446 pstart = p;
3447 while (*p != '\0' && *p != '/' && !qemu_isspace(*p))
3448 p++;
3449 len = p - pstart;
3450 if (len > nlen - 1)
3451 len = nlen - 1;
3452 memcpy(cmdname, pstart, len);
3453 cmdname[len] = '\0';
3454 return p;
3455}
3456
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003457/**
3458 * Read key of 'type' into 'key' and return the current
3459 * 'type' pointer.
3460 */
3461static char *key_get_info(const char *type, char **key)
3462{
3463 size_t len;
3464 char *p, *str;
3465
3466 if (*type == ',')
3467 type++;
3468
3469 p = strchr(type, ':');
3470 if (!p) {
3471 *key = NULL;
3472 return NULL;
3473 }
3474 len = p - type;
3475
3476 str = qemu_malloc(len + 1);
3477 memcpy(str, type, len);
3478 str[len] = '\0';
3479
3480 *key = str;
3481 return ++p;
3482}
3483
bellard9307c4c2004-04-04 12:57:25 +00003484static int default_fmt_format = 'x';
3485static int default_fmt_size = 4;
3486
3487#define MAX_ARGS 16
3488
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003489static int is_valid_option(const char *c, const char *typestr)
3490{
3491 char option[3];
3492
3493 option[0] = '-';
3494 option[1] = *c;
3495 option[2] = '\0';
3496
3497 typestr = strstr(typestr, option);
3498 return (typestr != NULL);
3499}
3500
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003501static const mon_cmd_t *search_dispatch_table(const mon_cmd_t *disp_table,
3502 const char *cmdname)
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003503{
3504 const mon_cmd_t *cmd;
3505
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003506 for (cmd = disp_table; cmd->name != NULL; cmd++) {
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003507 if (compare_cmd(cmdname, cmd->name)) {
3508 return cmd;
3509 }
3510 }
3511
3512 return NULL;
3513}
3514
Luiz Capitulino945c5ac2010-09-13 13:17:58 -03003515static const mon_cmd_t *monitor_find_command(const char *cmdname)
3516{
3517 return search_dispatch_table(mon_cmds, cmdname);
3518}
3519
Luiz Capitulino030db6e2010-09-10 16:03:38 -03003520static const mon_cmd_t *qmp_find_query_cmd(const char *info_item)
3521{
Luiz Capitulino3e12a752010-09-15 17:20:33 -03003522 return search_dispatch_table(qmp_query_cmds, info_item);
Luiz Capitulino030db6e2010-09-10 16:03:38 -03003523}
3524
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003525static const mon_cmd_t *qmp_find_cmd(const char *cmdname)
3526{
Luiz Capitulinof36b4af2010-09-15 17:17:45 -03003527 return search_dispatch_table(qmp_cmds, cmdname);
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03003528}
3529
Anthony Liguoric227f092009-10-01 16:12:16 -05003530static const mon_cmd_t *monitor_parse_command(Monitor *mon,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003531 const char *cmdline,
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003532 QDict *qdict)
bellard9307c4c2004-04-04 12:57:25 +00003533{
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003534 const char *p, *typestr;
Luiz Capitulino53773582009-08-28 15:27:25 -03003535 int c;
Anthony Liguoric227f092009-10-01 16:12:16 -05003536 const mon_cmd_t *cmd;
bellard9307c4c2004-04-04 12:57:25 +00003537 char cmdname[256];
3538 char buf[1024];
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003539 char *key;
bellard9dc39cb2004-03-14 21:38:27 +00003540
3541#ifdef DEBUG
aliguori376253e2009-03-05 23:01:23 +00003542 monitor_printf(mon, "command='%s'\n", cmdline);
bellard9dc39cb2004-03-14 21:38:27 +00003543#endif
ths3b46e622007-09-17 08:09:54 +00003544
bellard9307c4c2004-04-04 12:57:25 +00003545 /* extract the command name */
Luiz Capitulino4590fd82009-06-09 18:21:30 -03003546 p = get_command_name(cmdline, cmdname, sizeof(cmdname));
3547 if (!p)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003548 return NULL;
ths3b46e622007-09-17 08:09:54 +00003549
Luiz Capitulino7fd669a2009-11-26 22:58:54 -02003550 cmd = monitor_find_command(cmdname);
3551 if (!cmd) {
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003552 monitor_printf(mon, "unknown command: '%s'\n", cmdname);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003553 return NULL;
Luiz Capitulinod91d9bf2009-06-09 18:21:54 -03003554 }
bellard9307c4c2004-04-04 12:57:25 +00003555
bellard9307c4c2004-04-04 12:57:25 +00003556 /* parse the parameters */
3557 typestr = cmd->args_type;
bellard9307c4c2004-04-04 12:57:25 +00003558 for(;;) {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003559 typestr = key_get_info(typestr, &key);
3560 if (!typestr)
bellard9307c4c2004-04-04 12:57:25 +00003561 break;
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003562 c = *typestr;
bellard9307c4c2004-04-04 12:57:25 +00003563 typestr++;
3564 switch(c) {
3565 case 'F':
bellard81d09122004-07-14 17:21:37 +00003566 case 'B':
bellard9307c4c2004-04-04 12:57:25 +00003567 case 's':
3568 {
3569 int ret;
ths3b46e622007-09-17 08:09:54 +00003570
blueswir1cd390082008-11-16 13:53:32 +00003571 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003572 p++;
3573 if (*typestr == '?') {
3574 typestr++;
3575 if (*p == '\0') {
3576 /* no optional string: NULL argument */
Luiz Capitulino53773582009-08-28 15:27:25 -03003577 break;
bellard9307c4c2004-04-04 12:57:25 +00003578 }
3579 }
3580 ret = get_str(buf, sizeof(buf), &p);
3581 if (ret < 0) {
bellard81d09122004-07-14 17:21:37 +00003582 switch(c) {
3583 case 'F':
aliguori376253e2009-03-05 23:01:23 +00003584 monitor_printf(mon, "%s: filename expected\n",
3585 cmdname);
bellard81d09122004-07-14 17:21:37 +00003586 break;
3587 case 'B':
aliguori376253e2009-03-05 23:01:23 +00003588 monitor_printf(mon, "%s: block device name expected\n",
3589 cmdname);
bellard81d09122004-07-14 17:21:37 +00003590 break;
3591 default:
aliguori376253e2009-03-05 23:01:23 +00003592 monitor_printf(mon, "%s: string expected\n", cmdname);
bellard81d09122004-07-14 17:21:37 +00003593 break;
3594 }
bellard9307c4c2004-04-04 12:57:25 +00003595 goto fail;
3596 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003597 qdict_put(qdict, key, qstring_from_str(buf));
bellard9307c4c2004-04-04 12:57:25 +00003598 }
3599 break;
Markus Armbruster361127d2010-02-10 20:24:35 +01003600 case 'O':
3601 {
3602 QemuOptsList *opts_list;
3603 QemuOpts *opts;
3604
3605 opts_list = qemu_find_opts(key);
3606 if (!opts_list || opts_list->desc->name) {
3607 goto bad_type;
3608 }
3609 while (qemu_isspace(*p)) {
3610 p++;
3611 }
3612 if (!*p)
3613 break;
3614 if (get_str(buf, sizeof(buf), &p) < 0) {
3615 goto fail;
3616 }
3617 opts = qemu_opts_parse(opts_list, buf, 1);
3618 if (!opts) {
3619 goto fail;
3620 }
3621 qemu_opts_to_qdict(opts, qdict);
3622 qemu_opts_del(opts);
3623 }
3624 break;
bellard9307c4c2004-04-04 12:57:25 +00003625 case '/':
3626 {
3627 int count, format, size;
ths3b46e622007-09-17 08:09:54 +00003628
blueswir1cd390082008-11-16 13:53:32 +00003629 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003630 p++;
3631 if (*p == '/') {
3632 /* format found */
3633 p++;
3634 count = 1;
blueswir1cd390082008-11-16 13:53:32 +00003635 if (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003636 count = 0;
blueswir1cd390082008-11-16 13:53:32 +00003637 while (qemu_isdigit(*p)) {
bellard9307c4c2004-04-04 12:57:25 +00003638 count = count * 10 + (*p - '0');
3639 p++;
3640 }
3641 }
3642 size = -1;
3643 format = -1;
3644 for(;;) {
3645 switch(*p) {
3646 case 'o':
3647 case 'd':
3648 case 'u':
3649 case 'x':
3650 case 'i':
3651 case 'c':
3652 format = *p++;
3653 break;
3654 case 'b':
3655 size = 1;
3656 p++;
3657 break;
3658 case 'h':
3659 size = 2;
3660 p++;
3661 break;
3662 case 'w':
3663 size = 4;
3664 p++;
3665 break;
3666 case 'g':
3667 case 'L':
3668 size = 8;
3669 p++;
3670 break;
3671 default:
3672 goto next;
3673 }
3674 }
3675 next:
blueswir1cd390082008-11-16 13:53:32 +00003676 if (*p != '\0' && !qemu_isspace(*p)) {
aliguori376253e2009-03-05 23:01:23 +00003677 monitor_printf(mon, "invalid char in format: '%c'\n",
3678 *p);
bellard9307c4c2004-04-04 12:57:25 +00003679 goto fail;
3680 }
bellard9307c4c2004-04-04 12:57:25 +00003681 if (format < 0)
3682 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003683 if (format != 'i') {
3684 /* for 'i', not specifying a size gives -1 as size */
3685 if (size < 0)
3686 size = default_fmt_size;
aurel32e90f0092008-10-01 21:45:51 +00003687 default_fmt_size = size;
bellard4c27ba22004-04-25 18:05:08 +00003688 }
bellard9307c4c2004-04-04 12:57:25 +00003689 default_fmt_format = format;
3690 } else {
3691 count = 1;
3692 format = default_fmt_format;
bellard4c27ba22004-04-25 18:05:08 +00003693 if (format != 'i') {
3694 size = default_fmt_size;
3695 } else {
3696 size = -1;
3697 }
bellard9307c4c2004-04-04 12:57:25 +00003698 }
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003699 qdict_put(qdict, "count", qint_from_int(count));
3700 qdict_put(qdict, "format", qint_from_int(format));
3701 qdict_put(qdict, "size", qint_from_int(size));
bellard9307c4c2004-04-04 12:57:25 +00003702 }
3703 break;
3704 case 'i':
bellard92a31b12005-02-10 22:00:52 +00003705 case 'l':
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003706 case 'M':
bellard9307c4c2004-04-04 12:57:25 +00003707 {
blueswir1c2efc952007-09-25 17:28:42 +00003708 int64_t val;
blueswir17743e582007-09-24 18:39:04 +00003709
blueswir1cd390082008-11-16 13:53:32 +00003710 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003711 p++;
bellard34405572004-06-08 00:55:58 +00003712 if (*typestr == '?' || *typestr == '.') {
bellard34405572004-06-08 00:55:58 +00003713 if (*typestr == '?') {
Luiz Capitulino53773582009-08-28 15:27:25 -03003714 if (*p == '\0') {
3715 typestr++;
3716 break;
3717 }
bellard34405572004-06-08 00:55:58 +00003718 } else {
3719 if (*p == '.') {
3720 p++;
blueswir1cd390082008-11-16 13:53:32 +00003721 while (qemu_isspace(*p))
bellard34405572004-06-08 00:55:58 +00003722 p++;
bellard34405572004-06-08 00:55:58 +00003723 } else {
Luiz Capitulino53773582009-08-28 15:27:25 -03003724 typestr++;
3725 break;
bellard34405572004-06-08 00:55:58 +00003726 }
3727 }
bellard13224a82006-07-14 22:03:35 +00003728 typestr++;
bellard9307c4c2004-04-04 12:57:25 +00003729 }
aliguori376253e2009-03-05 23:01:23 +00003730 if (get_expr(mon, &val, &p))
bellard9307c4c2004-04-04 12:57:25 +00003731 goto fail;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003732 /* Check if 'i' is greater than 32-bit */
3733 if ((c == 'i') && ((val >> 32) & 0xffffffff)) {
3734 monitor_printf(mon, "\'%s\' has failed: ", cmdname);
3735 monitor_printf(mon, "integer is for 32-bit values\n");
3736 goto fail;
Luiz Capitulinob6e098d2009-12-18 13:25:04 -02003737 } else if (c == 'M') {
3738 val <<= 20;
Luiz Capitulino675ebef2009-08-28 15:27:26 -03003739 }
Luiz Capitulino53773582009-08-28 15:27:25 -03003740 qdict_put(qdict, key, qint_from_int(val));
bellard9307c4c2004-04-04 12:57:25 +00003741 }
3742 break;
Jes Sorensendbc0c672010-10-21 17:15:47 +02003743 case 'o':
3744 {
3745 ssize_t val;
3746 char *end;
3747
3748 while (qemu_isspace(*p)) {
3749 p++;
3750 }
3751 if (*typestr == '?') {
3752 typestr++;
3753 if (*p == '\0') {
3754 break;
3755 }
3756 }
3757 val = strtosz(p, &end);
3758 if (val < 0) {
3759 monitor_printf(mon, "invalid size\n");
3760 goto fail;
3761 }
3762 qdict_put(qdict, key, qint_from_int(val));
3763 p = end;
3764 }
3765 break;
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003766 case 'T':
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003767 {
3768 double val;
3769
3770 while (qemu_isspace(*p))
3771 p++;
3772 if (*typestr == '?') {
3773 typestr++;
3774 if (*p == '\0') {
3775 break;
3776 }
3777 }
3778 if (get_double(mon, &val, &p) < 0) {
3779 goto fail;
3780 }
Jes Sorensen07de3e62010-10-21 17:15:49 +02003781 if (p[0] && p[1] == 's') {
Markus Armbrusterfccfb11e2010-01-25 14:23:06 +01003782 switch (*p) {
3783 case 'm':
3784 val /= 1e3; p += 2; break;
3785 case 'u':
3786 val /= 1e6; p += 2; break;
3787 case 'n':
3788 val /= 1e9; p += 2; break;
3789 }
3790 }
Markus Armbruster3350a4d2010-01-25 14:23:03 +01003791 if (*p && !qemu_isspace(*p)) {
3792 monitor_printf(mon, "Unknown unit suffix\n");
3793 goto fail;
3794 }
3795 qdict_put(qdict, key, qfloat_from_double(val));
3796 }
3797 break;
Markus Armbruster942cd1f2010-03-26 09:07:09 +01003798 case 'b':
3799 {
3800 const char *beg;
3801 int val;
3802
3803 while (qemu_isspace(*p)) {
3804 p++;
3805 }
3806 beg = p;
3807 while (qemu_isgraph(*p)) {
3808 p++;
3809 }
3810 if (p - beg == 2 && !memcmp(beg, "on", p - beg)) {
3811 val = 1;
3812 } else if (p - beg == 3 && !memcmp(beg, "off", p - beg)) {
3813 val = 0;
3814 } else {
3815 monitor_printf(mon, "Expected 'on' or 'off'\n");
3816 goto fail;
3817 }
3818 qdict_put(qdict, key, qbool_from_int(val));
3819 }
3820 break;
bellard9307c4c2004-04-04 12:57:25 +00003821 case '-':
3822 {
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003823 const char *tmp = p;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003824 int skip_key = 0;
bellard9307c4c2004-04-04 12:57:25 +00003825 /* option */
ths3b46e622007-09-17 08:09:54 +00003826
bellard9307c4c2004-04-04 12:57:25 +00003827 c = *typestr++;
3828 if (c == '\0')
3829 goto bad_type;
blueswir1cd390082008-11-16 13:53:32 +00003830 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003831 p++;
bellard9307c4c2004-04-04 12:57:25 +00003832 if (*p == '-') {
3833 p++;
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003834 if(c != *p) {
3835 if(!is_valid_option(p, typestr)) {
3836
3837 monitor_printf(mon, "%s: unsupported option -%c\n",
3838 cmdname, *p);
3839 goto fail;
3840 } else {
3841 skip_key = 1;
3842 }
bellard9307c4c2004-04-04 12:57:25 +00003843 }
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003844 if(skip_key) {
3845 p = tmp;
3846 } else {
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003847 /* has option */
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003848 p++;
Luiz Capitulinoeb159d12010-05-28 15:25:24 -03003849 qdict_put(qdict, key, qbool_from_int(1));
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +02003850 }
bellard9307c4c2004-04-04 12:57:25 +00003851 }
bellard9307c4c2004-04-04 12:57:25 +00003852 }
3853 break;
3854 default:
3855 bad_type:
aliguori376253e2009-03-05 23:01:23 +00003856 monitor_printf(mon, "%s: unknown type '%c'\n", cmdname, c);
bellard9307c4c2004-04-04 12:57:25 +00003857 goto fail;
3858 }
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003859 qemu_free(key);
3860 key = NULL;
bellard9307c4c2004-04-04 12:57:25 +00003861 }
3862 /* check that all arguments were parsed */
blueswir1cd390082008-11-16 13:53:32 +00003863 while (qemu_isspace(*p))
bellard9307c4c2004-04-04 12:57:25 +00003864 p++;
3865 if (*p != '\0') {
aliguori376253e2009-03-05 23:01:23 +00003866 monitor_printf(mon, "%s: extraneous characters at the end of line\n",
3867 cmdname);
bellard9307c4c2004-04-04 12:57:25 +00003868 goto fail;
3869 }
3870
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003871 return cmd;
Gerd Hoffmannac7531e2009-08-14 10:36:06 +02003872
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003873fail:
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03003874 qemu_free(key);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003875 return NULL;
3876}
3877
Markus Armbrusterd6f46832010-02-17 10:52:26 +01003878void monitor_set_error(Monitor *mon, QError *qerror)
3879{
3880 /* report only the first error */
3881 if (!mon->error) {
3882 mon->error = qerror;
3883 } else {
3884 MON_DEBUG("Additional error report at %s:%d\n",
3885 qerror->file, qerror->linenr);
3886 QDECREF(qerror);
3887 }
3888}
3889
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003890static void handler_audit(Monitor *mon, const mon_cmd_t *cmd, int ret)
3891{
Luiz Capitulino6d441432010-11-22 16:35:09 -02003892 if (ret && !monitor_has_error(mon)) {
3893 /*
3894 * If it returns failure, it must have passed on error.
3895 *
3896 * Action: Report an internal error to the client if in QMP.
3897 */
3898 qerror_report(QERR_UNDEFINED_ERROR);
3899 MON_DEBUG("command '%s' returned failure but did not pass an error\n",
3900 cmd->name);
3901 }
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003902
3903#ifdef CONFIG_DEBUG_MONITOR
Luiz Capitulino6d441432010-11-22 16:35:09 -02003904 if (!ret && monitor_has_error(mon)) {
3905 /*
3906 * If it returns success, it must not have passed an error.
3907 *
3908 * Action: Report the passed error to the client.
3909 */
3910 MON_DEBUG("command '%s' returned success but passed an error\n",
3911 cmd->name);
Markus Armbrustercde0fc72010-03-02 14:56:34 +01003912 }
Luiz Capitulino6d441432010-11-22 16:35:09 -02003913
3914 if (mon_print_count_get(mon) > 0 && strcmp(cmd->name, "info") != 0) {
3915 /*
3916 * Handlers should not call Monitor print functions.
3917 *
3918 * Action: Ignore them in QMP.
3919 *
3920 * (XXX: we don't check any 'info' or 'query' command here
3921 * because the user print function _is_ called by do_info(), hence
3922 * we will trigger this check. This problem will go away when we
3923 * make 'query' commands real and kill do_info())
3924 */
3925 MON_DEBUG("command '%s' called print functions %d time(s)\n",
3926 cmd->name, mon_print_count_get(mon));
3927 }
3928#endif
Luiz Capitulinobb89c2e2010-02-10 23:50:05 -02003929}
3930
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02003931static void handle_user_command(Monitor *mon, const char *cmdline)
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003932{
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003933 QDict *qdict;
Anthony Liguoric227f092009-10-01 16:12:16 -05003934 const mon_cmd_t *cmd;
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003935
3936 qdict = qdict_new();
3937
Luiz Capitulino590fb3b2009-08-28 15:27:24 -03003938 cmd = monitor_parse_command(mon, cmdline, qdict);
Luiz Capitulino13917be2009-10-07 13:41:54 -03003939 if (!cmd)
3940 goto out;
3941
Luiz Capitulino4903de02010-09-16 11:01:32 -03003942 if (handler_is_async(cmd)) {
Adam Litke940cc302010-01-25 12:18:44 -06003943 user_async_cmd_handler(mon, cmd, qdict);
Luiz Capitulino9e807212010-09-16 10:58:59 -03003944 } else if (handler_is_qobject(cmd)) {
Luiz Capitulinode79ba62010-09-16 11:06:11 -03003945 QObject *data = NULL;
3946
3947 /* XXX: ignores the error code */
3948 cmd->mhandler.cmd_new(mon, qdict, &data);
3949 assert(!monitor_has_error(mon));
3950 if (data) {
3951 cmd->user_print(mon, data);
3952 qobject_decref(data);
3953 }
Luiz Capitulino13917be2009-10-07 13:41:54 -03003954 } else {
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03003955 cmd->mhandler.cmd(mon, qdict);
Luiz Capitulino55f81d92009-08-28 15:27:22 -03003956 }
3957
Luiz Capitulino13917be2009-10-07 13:41:54 -03003958out:
Luiz Capitulinof7188bb2009-08-28 15:27:10 -03003959 QDECREF(qdict);
bellard9dc39cb2004-03-14 21:38:27 +00003960}
3961
bellard81d09122004-07-14 17:21:37 +00003962static void cmd_completion(const char *name, const char *list)
3963{
3964 const char *p, *pstart;
3965 char cmd[128];
3966 int len;
3967
3968 p = list;
3969 for(;;) {
3970 pstart = p;
3971 p = strchr(p, '|');
3972 if (!p)
3973 p = pstart + strlen(pstart);
3974 len = p - pstart;
3975 if (len > sizeof(cmd) - 2)
3976 len = sizeof(cmd) - 2;
3977 memcpy(cmd, pstart, len);
3978 cmd[len] = '\0';
3979 if (name[0] == '\0' || !strncmp(name, cmd, strlen(name))) {
aliguori731b0362009-03-05 23:01:42 +00003980 readline_add_completion(cur_mon->rs, cmd);
bellard81d09122004-07-14 17:21:37 +00003981 }
3982 if (*p == '\0')
3983 break;
3984 p++;
3985 }
3986}
3987
3988static void file_completion(const char *input)
3989{
3990 DIR *ffs;
3991 struct dirent *d;
3992 char path[1024];
3993 char file[1024], file_prefix[1024];
3994 int input_path_len;
3995 const char *p;
3996
ths5fafdf22007-09-16 21:08:06 +00003997 p = strrchr(input, '/');
bellard81d09122004-07-14 17:21:37 +00003998 if (!p) {
3999 input_path_len = 0;
4000 pstrcpy(file_prefix, sizeof(file_prefix), input);
blueswir1363a37d2008-08-21 17:58:08 +00004001 pstrcpy(path, sizeof(path), ".");
bellard81d09122004-07-14 17:21:37 +00004002 } else {
4003 input_path_len = p - input + 1;
4004 memcpy(path, input, input_path_len);
4005 if (input_path_len > sizeof(path) - 1)
4006 input_path_len = sizeof(path) - 1;
4007 path[input_path_len] = '\0';
4008 pstrcpy(file_prefix, sizeof(file_prefix), p + 1);
4009 }
4010#ifdef DEBUG_COMPLETION
aliguori376253e2009-03-05 23:01:23 +00004011 monitor_printf(cur_mon, "input='%s' path='%s' prefix='%s'\n",
4012 input, path, file_prefix);
bellard81d09122004-07-14 17:21:37 +00004013#endif
4014 ffs = opendir(path);
4015 if (!ffs)
4016 return;
4017 for(;;) {
4018 struct stat sb;
4019 d = readdir(ffs);
4020 if (!d)
4021 break;
Kusanagi Kouichi46c7fc12010-10-20 18:00:01 +09004022
4023 if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) {
4024 continue;
4025 }
4026
bellard81d09122004-07-14 17:21:37 +00004027 if (strstart(d->d_name, file_prefix, NULL)) {
4028 memcpy(file, input, input_path_len);
blueswir1363a37d2008-08-21 17:58:08 +00004029 if (input_path_len < sizeof(file))
4030 pstrcpy(file + input_path_len, sizeof(file) - input_path_len,
4031 d->d_name);
bellard81d09122004-07-14 17:21:37 +00004032 /* stat the file to find out if it's a directory.
4033 * In that case add a slash to speed up typing long paths
4034 */
4035 stat(file, &sb);
4036 if(S_ISDIR(sb.st_mode))
blueswir1363a37d2008-08-21 17:58:08 +00004037 pstrcat(file, sizeof(file), "/");
aliguori731b0362009-03-05 23:01:42 +00004038 readline_add_completion(cur_mon->rs, file);
bellard81d09122004-07-14 17:21:37 +00004039 }
4040 }
4041 closedir(ffs);
4042}
4043
aliguori51de9762009-03-05 23:00:43 +00004044static void block_completion_it(void *opaque, BlockDriverState *bs)
bellard81d09122004-07-14 17:21:37 +00004045{
aliguori51de9762009-03-05 23:00:43 +00004046 const char *name = bdrv_get_device_name(bs);
bellard81d09122004-07-14 17:21:37 +00004047 const char *input = opaque;
4048
4049 if (input[0] == '\0' ||
4050 !strncmp(name, (char *)input, strlen(input))) {
aliguori731b0362009-03-05 23:01:42 +00004051 readline_add_completion(cur_mon->rs, name);
bellard81d09122004-07-14 17:21:37 +00004052 }
4053}
4054
4055/* NOTE: this parser is an approximate form of the real command parser */
4056static void parse_cmdline(const char *cmdline,
4057 int *pnb_args, char **args)
4058{
4059 const char *p;
4060 int nb_args, ret;
4061 char buf[1024];
4062
4063 p = cmdline;
4064 nb_args = 0;
4065 for(;;) {
blueswir1cd390082008-11-16 13:53:32 +00004066 while (qemu_isspace(*p))
bellard81d09122004-07-14 17:21:37 +00004067 p++;
4068 if (*p == '\0')
4069 break;
4070 if (nb_args >= MAX_ARGS)
4071 break;
4072 ret = get_str(buf, sizeof(buf), &p);
4073 args[nb_args] = qemu_strdup(buf);
4074 nb_args++;
4075 if (ret < 0)
4076 break;
4077 }
4078 *pnb_args = nb_args;
4079}
4080
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004081static const char *next_arg_type(const char *typestr)
4082{
4083 const char *p = strchr(typestr, ':');
4084 return (p != NULL ? ++p : typestr);
4085}
4086
aliguori4c36ba32009-03-05 23:01:37 +00004087static void monitor_find_completion(const char *cmdline)
bellard81d09122004-07-14 17:21:37 +00004088{
4089 const char *cmdname;
4090 char *args[MAX_ARGS];
4091 int nb_args, i, len;
4092 const char *ptype, *str;
Anthony Liguoric227f092009-10-01 16:12:16 -05004093 const mon_cmd_t *cmd;
bellard64866c32006-05-07 18:03:31 +00004094 const KeyDef *key;
bellard81d09122004-07-14 17:21:37 +00004095
4096 parse_cmdline(cmdline, &nb_args, args);
4097#ifdef DEBUG_COMPLETION
4098 for(i = 0; i < nb_args; i++) {
aliguori376253e2009-03-05 23:01:23 +00004099 monitor_printf(cur_mon, "arg%d = '%s'\n", i, (char *)args[i]);
bellard81d09122004-07-14 17:21:37 +00004100 }
4101#endif
4102
4103 /* if the line ends with a space, it means we want to complete the
4104 next arg */
4105 len = strlen(cmdline);
blueswir1cd390082008-11-16 13:53:32 +00004106 if (len > 0 && qemu_isspace(cmdline[len - 1])) {
Jan Kiszka03a63482010-06-16 00:38:33 +02004107 if (nb_args >= MAX_ARGS) {
4108 goto cleanup;
4109 }
bellard81d09122004-07-14 17:21:37 +00004110 args[nb_args++] = qemu_strdup("");
4111 }
4112 if (nb_args <= 1) {
4113 /* command completion */
4114 if (nb_args == 0)
4115 cmdname = "";
4116 else
4117 cmdname = args[0];
aliguori731b0362009-03-05 23:01:42 +00004118 readline_set_completion_index(cur_mon->rs, strlen(cmdname));
aliguori376253e2009-03-05 23:01:23 +00004119 for(cmd = mon_cmds; cmd->name != NULL; cmd++) {
bellard81d09122004-07-14 17:21:37 +00004120 cmd_completion(cmdname, cmd->name);
4121 }
4122 } else {
4123 /* find the command */
Jan Kiszka03a63482010-06-16 00:38:33 +02004124 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4125 if (compare_cmd(args[0], cmd->name)) {
4126 break;
4127 }
bellard81d09122004-07-14 17:21:37 +00004128 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004129 if (!cmd->name) {
4130 goto cleanup;
4131 }
4132
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004133 ptype = next_arg_type(cmd->args_type);
bellard81d09122004-07-14 17:21:37 +00004134 for(i = 0; i < nb_args - 2; i++) {
4135 if (*ptype != '\0') {
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004136 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004137 while (*ptype == '?')
Luiz Capitulino4d76d2b2009-08-28 15:27:09 -03004138 ptype = next_arg_type(ptype);
bellard81d09122004-07-14 17:21:37 +00004139 }
4140 }
4141 str = args[nb_args - 1];
Blue Swirl2a1704a2009-08-23 20:10:28 +00004142 if (*ptype == '-' && ptype[1] != '\0') {
Jan Kiszka3b6dbf22010-06-16 00:38:34 +02004143 ptype = next_arg_type(ptype);
Blue Swirl2a1704a2009-08-23 20:10:28 +00004144 }
bellard81d09122004-07-14 17:21:37 +00004145 switch(*ptype) {
4146 case 'F':
4147 /* file completion */
aliguori731b0362009-03-05 23:01:42 +00004148 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004149 file_completion(str);
4150 break;
4151 case 'B':
4152 /* block device name completion */
aliguori731b0362009-03-05 23:01:42 +00004153 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard81d09122004-07-14 17:21:37 +00004154 bdrv_iterate(block_completion_it, (void *)str);
4155 break;
bellard7fe48482004-10-09 18:08:01 +00004156 case 's':
4157 /* XXX: more generic ? */
4158 if (!strcmp(cmd->name, "info")) {
aliguori731b0362009-03-05 23:01:42 +00004159 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard7fe48482004-10-09 18:08:01 +00004160 for(cmd = info_cmds; cmd->name != NULL; cmd++) {
4161 cmd_completion(str, cmd->name);
4162 }
bellard64866c32006-05-07 18:03:31 +00004163 } else if (!strcmp(cmd->name, "sendkey")) {
blueswir1e600d1e2009-03-08 17:42:02 +00004164 char *sep = strrchr(str, '-');
4165 if (sep)
4166 str = sep + 1;
aliguori731b0362009-03-05 23:01:42 +00004167 readline_set_completion_index(cur_mon->rs, strlen(str));
bellard64866c32006-05-07 18:03:31 +00004168 for(key = key_defs; key->name != NULL; key++) {
4169 cmd_completion(str, key->name);
4170 }
Jan Kiszkaf3353c62009-06-25 08:22:02 +02004171 } else if (!strcmp(cmd->name, "help|?")) {
4172 readline_set_completion_index(cur_mon->rs, strlen(str));
4173 for (cmd = mon_cmds; cmd->name != NULL; cmd++) {
4174 cmd_completion(str, cmd->name);
4175 }
bellard7fe48482004-10-09 18:08:01 +00004176 }
4177 break;
bellard81d09122004-07-14 17:21:37 +00004178 default:
4179 break;
4180 }
4181 }
Jan Kiszka03a63482010-06-16 00:38:33 +02004182
4183cleanup:
4184 for (i = 0; i < nb_args; i++) {
bellard81d09122004-07-14 17:21:37 +00004185 qemu_free(args[i]);
Jan Kiszka03a63482010-06-16 00:38:33 +02004186 }
bellard81d09122004-07-14 17:21:37 +00004187}
4188
aliguori731b0362009-03-05 23:01:42 +00004189static int monitor_can_read(void *opaque)
bellard9dc39cb2004-03-14 21:38:27 +00004190{
aliguori731b0362009-03-05 23:01:42 +00004191 Monitor *mon = opaque;
4192
Jan Kiszkac62313b2009-12-04 14:05:29 +01004193 return (mon->suspend_cnt == 0) ? 1 : 0;
bellard9dc39cb2004-03-14 21:38:27 +00004194}
4195
Luiz Capitulino09069b12010-02-04 18:10:06 -02004196static int invalid_qmp_mode(const Monitor *mon, const char *cmd_name)
4197{
4198 int is_cap = compare_cmd(cmd_name, "qmp_capabilities");
4199 return (qmp_cmd_mode(mon) ? is_cap : !is_cap);
4200}
4201
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004202/*
Luiz Capitulino4af91932010-06-22 11:44:05 -03004203 * Argument validation rules:
4204 *
4205 * 1. The argument must exist in cmd_args qdict
4206 * 2. The argument type must be the expected one
4207 *
4208 * Special case: If the argument doesn't exist in cmd_args and
4209 * the QMP_ACCEPT_UNKNOWNS flag is set, then the
4210 * checking is skipped for it.
4211 */
4212static int check_client_args_type(const QDict *client_args,
4213 const QDict *cmd_args, int flags)
4214{
4215 const QDictEntry *ent;
4216
4217 for (ent = qdict_first(client_args); ent;ent = qdict_next(client_args,ent)){
4218 QObject *obj;
4219 QString *arg_type;
4220 const QObject *client_arg = qdict_entry_value(ent);
4221 const char *client_arg_name = qdict_entry_key(ent);
4222
4223 obj = qdict_get(cmd_args, client_arg_name);
4224 if (!obj) {
4225 if (flags & QMP_ACCEPT_UNKNOWNS) {
4226 /* handler accepts unknowns */
4227 continue;
4228 }
4229 /* client arg doesn't exist */
4230 qerror_report(QERR_INVALID_PARAMETER, client_arg_name);
4231 return -1;
4232 }
4233
4234 arg_type = qobject_to_qstring(obj);
4235 assert(arg_type != NULL);
4236
4237 /* check if argument's type is correct */
4238 switch (qstring_get_str(arg_type)[0]) {
4239 case 'F':
4240 case 'B':
4241 case 's':
4242 if (qobject_type(client_arg) != QTYPE_QSTRING) {
4243 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4244 "string");
4245 return -1;
4246 }
4247 break;
4248 case 'i':
4249 case 'l':
4250 case 'M':
Jes Sorensendbc0c672010-10-21 17:15:47 +02004251 case 'o':
Luiz Capitulino4af91932010-06-22 11:44:05 -03004252 if (qobject_type(client_arg) != QTYPE_QINT) {
4253 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4254 "int");
4255 return -1;
4256 }
4257 break;
Luiz Capitulino4af91932010-06-22 11:44:05 -03004258 case 'T':
4259 if (qobject_type(client_arg) != QTYPE_QINT &&
4260 qobject_type(client_arg) != QTYPE_QFLOAT) {
4261 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4262 "number");
4263 return -1;
4264 }
4265 break;
4266 case 'b':
4267 case '-':
4268 if (qobject_type(client_arg) != QTYPE_QBOOL) {
4269 qerror_report(QERR_INVALID_PARAMETER_TYPE, client_arg_name,
4270 "bool");
4271 return -1;
4272 }
4273 break;
4274 case 'O':
4275 assert(flags & QMP_ACCEPT_UNKNOWNS);
4276 break;
4277 case '/':
4278 case '.':
4279 /*
4280 * These types are not supported by QMP and thus are not
4281 * handled here. Fall through.
4282 */
4283 default:
4284 abort();
4285 }
4286 }
4287
4288 return 0;
4289}
4290
4291/*
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004292 * - Check if the client has passed all mandatory args
4293 * - Set special flags for argument validation
4294 */
4295static int check_mandatory_args(const QDict *cmd_args,
4296 const QDict *client_args, int *flags)
4297{
4298 const QDictEntry *ent;
4299
4300 for (ent = qdict_first(cmd_args); ent; ent = qdict_next(cmd_args, ent)) {
4301 const char *cmd_arg_name = qdict_entry_key(ent);
4302 QString *type = qobject_to_qstring(qdict_entry_value(ent));
4303 assert(type != NULL);
4304
4305 if (qstring_get_str(type)[0] == 'O') {
4306 assert((*flags & QMP_ACCEPT_UNKNOWNS) == 0);
4307 *flags |= QMP_ACCEPT_UNKNOWNS;
4308 } else if (qstring_get_str(type)[0] != '-' &&
4309 qstring_get_str(type)[1] != '?' &&
4310 !qdict_haskey(client_args, cmd_arg_name)) {
4311 qerror_report(QERR_MISSING_PARAMETER, cmd_arg_name);
4312 return -1;
4313 }
4314 }
4315
4316 return 0;
4317}
4318
4319static QDict *qdict_from_args_type(const char *args_type)
4320{
4321 int i;
4322 QDict *qdict;
4323 QString *key, *type, *cur_qs;
4324
4325 assert(args_type != NULL);
4326
4327 qdict = qdict_new();
4328
4329 if (args_type == NULL || args_type[0] == '\0') {
4330 /* no args, empty qdict */
4331 goto out;
4332 }
4333
4334 key = qstring_new();
4335 type = qstring_new();
4336
4337 cur_qs = key;
4338
4339 for (i = 0;; i++) {
4340 switch (args_type[i]) {
4341 case ',':
4342 case '\0':
4343 qdict_put(qdict, qstring_get_str(key), type);
4344 QDECREF(key);
4345 if (args_type[i] == '\0') {
4346 goto out;
4347 }
4348 type = qstring_new(); /* qdict has ref */
4349 cur_qs = key = qstring_new();
4350 break;
4351 case ':':
4352 cur_qs = type;
4353 break;
4354 default:
4355 qstring_append_chr(cur_qs, args_type[i]);
4356 break;
4357 }
4358 }
4359
4360out:
4361 return qdict;
4362}
4363
4364/*
4365 * Client argument checking rules:
4366 *
4367 * 1. Client must provide all mandatory arguments
Luiz Capitulino4af91932010-06-22 11:44:05 -03004368 * 2. Each argument provided by the client must be expected
4369 * 3. Each argument provided by the client must have the type expected
4370 * by the command
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004371 */
4372static int qmp_check_client_args(const mon_cmd_t *cmd, QDict *client_args)
4373{
4374 int flags, err;
4375 QDict *cmd_args;
4376
4377 cmd_args = qdict_from_args_type(cmd->args_type);
4378
4379 flags = 0;
4380 err = check_mandatory_args(cmd_args, client_args, &flags);
4381 if (err) {
4382 goto out;
4383 }
4384
Luiz Capitulino4af91932010-06-22 11:44:05 -03004385 err = check_client_args_type(client_args, cmd_args, flags);
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004386
4387out:
4388 QDECREF(cmd_args);
4389 return err;
4390}
4391
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004392/*
4393 * Input object checking rules
4394 *
4395 * 1. Input object must be a dict
4396 * 2. The "execute" key must exist
4397 * 3. The "execute" key must be a string
4398 * 4. If the "arguments" key exists, it must be a dict
4399 * 5. If the "id" key exists, it can be anything (ie. json-value)
4400 * 6. Any argument not listed above is considered invalid
4401 */
4402static QDict *qmp_check_input_obj(QObject *input_obj)
4403{
4404 const QDictEntry *ent;
4405 int has_exec_key = 0;
4406 QDict *input_dict;
4407
4408 if (qobject_type(input_obj) != QTYPE_QDICT) {
4409 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "object");
4410 return NULL;
4411 }
4412
4413 input_dict = qobject_to_qdict(input_obj);
4414
4415 for (ent = qdict_first(input_dict); ent; ent = qdict_next(input_dict, ent)){
4416 const char *arg_name = qdict_entry_key(ent);
4417 const QObject *arg_obj = qdict_entry_value(ent);
4418
4419 if (!strcmp(arg_name, "execute")) {
4420 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
4421 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
4422 "string");
4423 return NULL;
4424 }
4425 has_exec_key = 1;
4426 } else if (!strcmp(arg_name, "arguments")) {
4427 if (qobject_type(arg_obj) != QTYPE_QDICT) {
4428 qerror_report(QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "arguments",
4429 "object");
4430 return NULL;
4431 }
4432 } else if (!strcmp(arg_name, "id")) {
4433 /* FIXME: check duplicated IDs for async commands */
4434 } else {
4435 qerror_report(QERR_QMP_EXTRA_MEMBER, arg_name);
4436 return NULL;
4437 }
4438 }
4439
4440 if (!has_exec_key) {
4441 qerror_report(QERR_QMP_BAD_INPUT_OBJECT, "execute");
4442 return NULL;
4443 }
4444
4445 return input_dict;
4446}
4447
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004448static void qmp_call_query_cmd(Monitor *mon, const mon_cmd_t *cmd)
4449{
4450 QObject *ret_data = NULL;
4451
Luiz Capitulino4903de02010-09-16 11:01:32 -03004452 if (handler_is_async(cmd)) {
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004453 qmp_async_info_handler(mon, cmd);
4454 if (monitor_has_error(mon)) {
4455 monitor_protocol_emitter(mon, NULL);
4456 }
4457 } else {
4458 cmd->mhandler.info_new(mon, &ret_data);
Luiz Capitulinoc01e6882010-11-22 16:22:47 -02004459 monitor_protocol_emitter(mon, ret_data);
4460 qobject_decref(ret_data);
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004461 }
4462}
4463
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004464static void qmp_call_cmd(Monitor *mon, const mon_cmd_t *cmd,
4465 const QDict *params)
4466{
4467 int ret;
4468 QObject *data = NULL;
4469
4470 mon_print_count_init(mon);
4471
4472 ret = cmd->mhandler.cmd_new(mon, params, &data);
4473 handler_audit(mon, cmd, ret);
4474 monitor_protocol_emitter(mon, data);
4475 qobject_decref(data);
4476}
4477
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004478static void handle_qmp_command(JSONMessageParser *parser, QList *tokens)
4479{
4480 int err;
4481 QObject *obj;
4482 QDict *input, *args;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004483 const mon_cmd_t *cmd;
4484 Monitor *mon = cur_mon;
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004485 const char *cmd_name, *query_cmd;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004486
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004487 query_cmd = NULL;
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004488 args = input = NULL;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004489
4490 obj = json_parser_parse(tokens, NULL);
4491 if (!obj) {
4492 // FIXME: should be triggered in json_parser_parse()
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004493 qerror_report(QERR_JSON_PARSING);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004494 goto err_out;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004495 }
4496
Luiz Capitulinoc917c8f2010-05-31 17:28:01 -03004497 input = qmp_check_input_obj(obj);
4498 if (!input) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004499 qobject_decref(obj);
4500 goto err_out;
4501 }
4502
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004503 mon->mc->id = qdict_get(input, "id");
4504 qobject_incref(mon->mc->id);
4505
Luiz Capitulino0bbab462010-05-31 17:32:50 -03004506 cmd_name = qdict_get_str(input, "execute");
Luiz Capitulino09069b12010-02-04 18:10:06 -02004507 if (invalid_qmp_mode(mon, cmd_name)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004508 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004509 goto err_out;
Luiz Capitulino09069b12010-02-04 18:10:06 -02004510 }
4511
Luiz Capitulinod1249ea2010-09-13 14:44:27 -03004512 if (strstart(cmd_name, "query-", &query_cmd)) {
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004513 cmd = qmp_find_query_cmd(query_cmd);
Luiz Capitulino5e23f482009-11-26 22:59:02 -02004514 } else {
Luiz Capitulinobead3ce2010-09-15 17:08:39 -03004515 cmd = qmp_find_cmd(cmd_name);
Luiz Capitulino0fb88582010-09-15 10:56:17 -03004516 }
4517
Luiz Capitulinod1249ea2010-09-13 14:44:27 -03004518 if (!cmd) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004519 qerror_report(QERR_COMMAND_NOT_FOUND, cmd_name);
4520 goto err_out;
4521 }
4522
4523 obj = qdict_get(input, "arguments");
4524 if (!obj) {
4525 args = qdict_new();
4526 } else {
4527 args = qobject_to_qdict(obj);
4528 QINCREF(args);
4529 }
4530
Luiz Capitulino2dbc8db2010-05-26 16:13:09 -03004531 err = qmp_check_client_args(cmd, args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004532 if (err < 0) {
4533 goto err_out;
4534 }
4535
Luiz Capitulino030db6e2010-09-10 16:03:38 -03004536 if (query_cmd) {
4537 qmp_call_query_cmd(mon, cmd);
Luiz Capitulino4903de02010-09-16 11:01:32 -03004538 } else if (handler_is_async(cmd)) {
Luiz Capitulino5af7bba2010-06-22 19:10:46 -03004539 err = qmp_async_cmd_handler(mon, cmd, args);
4540 if (err) {
4541 /* emit the error response */
4542 goto err_out;
4543 }
Adam Litke940cc302010-01-25 12:18:44 -06004544 } else {
Luiz Capitulinofc29df72010-09-16 11:11:18 -03004545 qmp_call_cmd(mon, cmd, args);
Adam Litke940cc302010-01-25 12:18:44 -06004546 }
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004547
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004548 goto out;
4549
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004550err_out:
4551 monitor_protocol_emitter(mon, NULL);
4552out:
Luiz Capitulinoe4940c62010-06-24 17:58:20 -03004553 QDECREF(input);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004554 QDECREF(args);
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004555}
4556
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004557/**
4558 * monitor_control_read(): Read and handle QMP input
4559 */
4560static void monitor_control_read(void *opaque, const uint8_t *buf, int size)
4561{
4562 Monitor *old_mon = cur_mon;
4563
4564 cur_mon = opaque;
4565
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004566 json_message_parser_feed(&cur_mon->mc->parser, (const char *) buf, size);
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004567
4568 cur_mon = old_mon;
4569}
4570
aliguori731b0362009-03-05 23:01:42 +00004571static void monitor_read(void *opaque, const uint8_t *buf, int size)
bellard9dc39cb2004-03-14 21:38:27 +00004572{
aliguori731b0362009-03-05 23:01:42 +00004573 Monitor *old_mon = cur_mon;
bellard9dc39cb2004-03-14 21:38:27 +00004574 int i;
aliguori376253e2009-03-05 23:01:23 +00004575
aliguori731b0362009-03-05 23:01:42 +00004576 cur_mon = opaque;
bellard7e2515e2004-08-01 21:52:19 +00004577
aliguoricde76ee2009-03-05 23:01:51 +00004578 if (cur_mon->rs) {
4579 for (i = 0; i < size; i++)
4580 readline_handle_byte(cur_mon->rs, buf[i]);
4581 } else {
4582 if (size == 0 || buf[size - 1] != 0)
4583 monitor_printf(cur_mon, "corrupted command\n");
4584 else
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004585 handle_user_command(cur_mon, (char *)buf);
aliguoricde76ee2009-03-05 23:01:51 +00004586 }
aliguori731b0362009-03-05 23:01:42 +00004587
4588 cur_mon = old_mon;
4589}
aliguorid8f44602008-10-06 13:52:44 +00004590
aliguori376253e2009-03-05 23:01:23 +00004591static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004592{
aliguori731b0362009-03-05 23:01:42 +00004593 monitor_suspend(mon);
Luiz Capitulinof3c157c2009-11-26 22:58:55 -02004594 handle_user_command(mon, cmdline);
aliguori731b0362009-03-05 23:01:42 +00004595 monitor_resume(mon);
aliguorid8f44602008-10-06 13:52:44 +00004596}
4597
aliguoricde76ee2009-03-05 23:01:51 +00004598int monitor_suspend(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004599{
aliguoricde76ee2009-03-05 23:01:51 +00004600 if (!mon->rs)
4601 return -ENOTTY;
aliguori731b0362009-03-05 23:01:42 +00004602 mon->suspend_cnt++;
aliguoricde76ee2009-03-05 23:01:51 +00004603 return 0;
aliguorid8f44602008-10-06 13:52:44 +00004604}
4605
aliguori376253e2009-03-05 23:01:23 +00004606void monitor_resume(Monitor *mon)
aliguorid8f44602008-10-06 13:52:44 +00004607{
aliguoricde76ee2009-03-05 23:01:51 +00004608 if (!mon->rs)
4609 return;
aliguori731b0362009-03-05 23:01:42 +00004610 if (--mon->suspend_cnt == 0)
4611 readline_show_prompt(mon->rs);
bellard7e2515e2004-08-01 21:52:19 +00004612}
4613
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004614static QObject *get_qmp_greeting(void)
4615{
4616 QObject *ver;
4617
4618 do_info_version(NULL, &ver);
4619 return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver);
4620}
4621
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004622/**
4623 * monitor_control_event(): Print QMP gretting
4624 */
4625static void monitor_control_event(void *opaque, int event)
4626{
Luiz Capitulino47116d12010-02-08 17:01:30 -02004627 QObject *data;
4628 Monitor *mon = opaque;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004629
Luiz Capitulino47116d12010-02-08 17:01:30 -02004630 switch (event) {
4631 case CHR_EVENT_OPENED:
Luiz Capitulino4a7e1192010-02-04 18:10:05 -02004632 mon->mc->command_mode = 0;
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004633 json_message_parser_init(&mon->mc->parser, handle_qmp_command);
Luiz Capitulinoca9567e2010-02-04 18:10:04 -02004634 data = get_qmp_greeting();
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004635 monitor_json_emitter(mon, data);
4636 qobject_decref(data);
Luiz Capitulino47116d12010-02-08 17:01:30 -02004637 break;
4638 case CHR_EVENT_CLOSED:
4639 json_message_parser_destroy(&mon->mc->parser);
4640 break;
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004641 }
4642}
4643
aliguori731b0362009-03-05 23:01:42 +00004644static void monitor_event(void *opaque, int event)
ths86e94de2007-01-05 22:01:59 +00004645{
aliguori376253e2009-03-05 23:01:23 +00004646 Monitor *mon = opaque;
4647
aliguori2724b182009-03-05 23:01:47 +00004648 switch (event) {
4649 case CHR_EVENT_MUX_IN:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004650 mon->mux_out = 0;
4651 if (mon->reset_seen) {
4652 readline_restart(mon->rs);
4653 monitor_resume(mon);
4654 monitor_flush(mon);
4655 } else {
4656 mon->suspend_cnt = 0;
4657 }
aliguori2724b182009-03-05 23:01:47 +00004658 break;
ths86e94de2007-01-05 22:01:59 +00004659
aliguori2724b182009-03-05 23:01:47 +00004660 case CHR_EVENT_MUX_OUT:
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004661 if (mon->reset_seen) {
4662 if (mon->suspend_cnt == 0) {
4663 monitor_printf(mon, "\n");
4664 }
4665 monitor_flush(mon);
4666 monitor_suspend(mon);
4667 } else {
4668 mon->suspend_cnt++;
4669 }
4670 mon->mux_out = 1;
aliguori2724b182009-03-05 23:01:47 +00004671 break;
4672
Amit Shahb6b8df52009-10-07 18:31:16 +05304673 case CHR_EVENT_OPENED:
aliguori2724b182009-03-05 23:01:47 +00004674 monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
4675 "information\n", QEMU_VERSION);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004676 if (!mon->mux_out) {
aliguori2724b182009-03-05 23:01:47 +00004677 readline_show_prompt(mon->rs);
Gerd Hoffmanna7aec5d2009-09-10 10:58:54 +02004678 }
4679 mon->reset_seen = 1;
aliguori2724b182009-03-05 23:01:47 +00004680 break;
4681 }
ths86e94de2007-01-05 22:01:59 +00004682}
4683
aliguori76655d62009-03-06 20:27:37 +00004684
4685/*
4686 * Local variables:
4687 * c-indent-level: 4
4688 * c-basic-offset: 4
4689 * tab-width: 8
4690 * End:
4691 */
4692
aliguori731b0362009-03-05 23:01:42 +00004693void monitor_init(CharDriverState *chr, int flags)
bellard9dc39cb2004-03-14 21:38:27 +00004694{
aliguori731b0362009-03-05 23:01:42 +00004695 static int is_first_init = 1;
aliguori87127162009-03-05 23:01:29 +00004696 Monitor *mon;
ths20d8a3e2007-02-18 17:04:49 +00004697
4698 if (is_first_init) {
balrogc8256f92008-06-08 22:45:01 +00004699 key_timer = qemu_new_timer(vm_clock, release_keys, NULL);
ths20d8a3e2007-02-18 17:04:49 +00004700 is_first_init = 0;
4701 }
aliguori87127162009-03-05 23:01:29 +00004702
4703 mon = qemu_mallocz(sizeof(*mon));
ths20d8a3e2007-02-18 17:04:49 +00004704
aliguori87127162009-03-05 23:01:29 +00004705 mon->chr = chr;
aliguori731b0362009-03-05 23:01:42 +00004706 mon->flags = flags;
aliguoricde76ee2009-03-05 23:01:51 +00004707 if (flags & MONITOR_USE_READLINE) {
4708 mon->rs = readline_init(mon, monitor_find_completion);
4709 monitor_read_command(mon, 0);
4710 }
aliguori87127162009-03-05 23:01:29 +00004711
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004712 if (monitor_ctrl_mode(mon)) {
Luiz Capitulino5fa737a2009-11-26 22:59:01 -02004713 mon->mc = qemu_mallocz(sizeof(MonitorControl));
Luiz Capitulino9b57c022009-11-26 22:58:58 -02004714 /* Control mode requires special handlers */
4715 qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read,
4716 monitor_control_event, mon);
4717 } else {
4718 qemu_chr_add_handlers(chr, monitor_can_read, monitor_read,
4719 monitor_event, mon);
4720 }
aliguori87127162009-03-05 23:01:29 +00004721
Blue Swirl72cf2d42009-09-12 07:36:22 +00004722 QLIST_INSERT_HEAD(&mon_list, mon, entry);
Markus Armbruster8631b602010-02-18 11:41:55 +01004723 if (!default_mon || (flags & MONITOR_IS_DEFAULT))
4724 default_mon = mon;
bellard7e2515e2004-08-01 21:52:19 +00004725}
4726
aliguori376253e2009-03-05 23:01:23 +00004727static void bdrv_password_cb(Monitor *mon, const char *password, void *opaque)
bellard7e2515e2004-08-01 21:52:19 +00004728{
aliguoribb5fc202009-03-05 23:01:15 +00004729 BlockDriverState *bs = opaque;
4730 int ret = 0;
bellard7e2515e2004-08-01 21:52:19 +00004731
aliguoribb5fc202009-03-05 23:01:15 +00004732 if (bdrv_set_key(bs, password) != 0) {
aliguori376253e2009-03-05 23:01:23 +00004733 monitor_printf(mon, "invalid password\n");
aliguoribb5fc202009-03-05 23:01:15 +00004734 ret = -EPERM;
bellard7e2515e2004-08-01 21:52:19 +00004735 }
aliguori731b0362009-03-05 23:01:42 +00004736 if (mon->password_completion_cb)
4737 mon->password_completion_cb(mon->password_opaque, ret);
aliguoribb5fc202009-03-05 23:01:15 +00004738
aliguori731b0362009-03-05 23:01:42 +00004739 monitor_read_command(mon, 1);
bellard9dc39cb2004-03-14 21:38:27 +00004740}
aliguoric0f4ce72009-03-05 23:01:01 +00004741
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004742int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
4743 BlockDriverCompletionFunc *completion_cb,
4744 void *opaque)
aliguoric0f4ce72009-03-05 23:01:01 +00004745{
aliguoricde76ee2009-03-05 23:01:51 +00004746 int err;
4747
aliguoribb5fc202009-03-05 23:01:15 +00004748 if (!bdrv_key_required(bs)) {
4749 if (completion_cb)
4750 completion_cb(opaque, 0);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004751 return 0;
aliguoribb5fc202009-03-05 23:01:15 +00004752 }
aliguoric0f4ce72009-03-05 23:01:01 +00004753
Luiz Capitulino94171e12009-12-07 21:37:00 +01004754 if (monitor_ctrl_mode(mon)) {
Markus Armbrusterab5b0272010-03-02 18:15:09 +01004755 qerror_report(QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs));
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004756 return -1;
Luiz Capitulino94171e12009-12-07 21:37:00 +01004757 }
4758
aliguori376253e2009-03-05 23:01:23 +00004759 monitor_printf(mon, "%s (%s) is encrypted.\n", bdrv_get_device_name(bs),
4760 bdrv_get_encrypted_filename(bs));
aliguoribb5fc202009-03-05 23:01:15 +00004761
aliguori731b0362009-03-05 23:01:42 +00004762 mon->password_completion_cb = completion_cb;
4763 mon->password_opaque = opaque;
aliguoribb5fc202009-03-05 23:01:15 +00004764
aliguoricde76ee2009-03-05 23:01:51 +00004765 err = monitor_read_password(mon, bdrv_password_cb, bs);
4766
4767 if (err && completion_cb)
4768 completion_cb(opaque, err);
Luiz Capitulino0bbc47b2010-02-10 23:50:01 -02004769
4770 return err;
aliguoric0f4ce72009-03-05 23:01:01 +00004771}